Update documentation

This commit is contained in:
Mahmoud Ben Hassine
2025-04-25 10:13:56 +02:00
parent d909f79d7b
commit e3cb93791d
49 changed files with 182 additions and 189 deletions

View File

@@ -21,9 +21,10 @@ include::{snippets}/FlowComponentSnippets.java[tag=snippet1]
include::example$component-flow-showcase-1.cast[]
----
Normal execution order of a components is same as defined with a builder. It's
possible to conditionally choose where to jump in a flow by using a `next`
function and returning target _component id_. If this returned id is aither _null_
NOTE: Normal execution order of a components is same as defined with a builder.
It's possible to conditionally choose where to jump in a flow by using a `next`
function and returning target _component id_. If this returned id is either _null_
or doesn't exist flow is essentially stopped right there.
[source, java, indent=0]

View File

@@ -2,7 +2,7 @@
= Components
:page-section-summary-toc: 1
Components are a set of features which are either build-in or something
Components are a set of features which are either built-in or something
you can re-use or extend for your own needs. Components in question are
either built-in _commands_ or UI side components providing higher level
features within commands itself.