Skip to content

Commit 6f7eac4

Browse files
committed
Update docs
1 parent 2819c1d commit 6f7eac4

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

spring-shell-docs/modules/ROOT/nav.adoc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@
4242
** xref:options/naming.adoc[]
4343
* xref:using-shell-completion.adoc[]
4444
* xref:using-shell-building.adoc[]
45-
* xref:using-shell-components.adoc[]
46-
** xref:using-shell-components-flow.adoc[]
47-
** xref:using-shell-components-ui.adoc[]
48-
*** xref:using-shell-components-ui-render.adoc[]
49-
*** xref:using-shell-components-ui-stringinput.adoc[]
50-
*** xref:using-shell-components-ui-pathinput.adoc[]
51-
*** xref:using-shell-components-ui-pathsearch.adoc[]
52-
*** xref:using-shell-components-ui-confirmation.adoc[]
53-
*** xref:using-shell-components-ui-singleselect.adoc[]
54-
*** xref:using-shell-components-ui-multiselect.adoc[]
45+
* xref:components/index.adoc[]
46+
** xref:components/flow/index.adoc[]
47+
** xref:components/ui/index.adoc[]
48+
*** xref:components/ui/render.adoc[]
49+
*** xref:components/ui/stringinput.adoc[]
50+
*** xref:components/ui/pathinput.adoc[]
51+
*** xref:components/ui/pathsearch.adoc[]
52+
*** xref:components/ui/confirmation.adoc[]
53+
*** xref:components/ui/singleselect.adoc[]
54+
*** xref:components/ui/multiselect.adoc[]
5555
* xref:tui/index.adoc[]
5656
** xref:tui/intro/index.adoc[]
5757
** xref:tui/views/index.adoc[]

spring-shell-docs/modules/ROOT/pages/using-shell-components-flow.adoc renamed to spring-shell-docs/modules/ROOT/pages/components/flow/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
ifndef::snippets[:snippets: ../../test/java/org/springframework/shell/docs]
55

6-
When you use xref:using-shell-components-ui.adoc[Flow Components] to build something that involves
6+
When you use xref:components/ui/index.adoc[Flow Components] to build something that involves
77
use of a multiple components, your implementation may become a bit cluttered.
88
To ease these use cases, we added a
99
`ComponentFlow` that can hook multiple component executions together
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ The context object is `ConfirmationInputContext`. The following table describes
2626
|The default value -- either `true` or `false`.
2727

2828
|`model`
29-
|The parent context variables (see xref:using-shell-components-ui-render.adoc#textcomponentcontext-template-variables[TextComponentContext Template Variables]).
29+
|The parent context variables (see xref:components/ui/render.adoc#textcomponentcontext-template-variables[TextComponentContext Template Variables]).
3030
|===

spring-shell-docs/modules/ROOT/pages/using-shell-components-ui.adoc renamed to spring-shell-docs/modules/ROOT/pages/components/ui/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Built-in components generally follow this logic:
1919
. Exit.
2020
. Render the final status of a component state.
2121

22-
NOTE: xref:using-shell-components-flow.adoc[Flow] gives better interface for defining the flow of
22+
NOTE: xref:components/flow/index.adoc[Flow] gives better interface for defining the flow of
2323
components that are better suited for defining interactive command flows.
2424

2525

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ The context object is `MultiItemSelectorContext`. The following table describes
2929
|The visible items, where rows contain maps of name, selected, on-row, and enabled items.
3030

3131
|`model`
32-
|The parent context variables (see xref:using-shell-components-ui-render.adoc#selectorcomponentcontext-template-variables[SelectorComponentContext Template Variables]).
32+
|The parent context variables (see xref:components/ui/render.adoc#selectorcomponentcontext-template-variables[SelectorComponentContext Template Variables]).
3333
|===
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ The context object is `PathInputContext`. The following table describes its cont
2222
|Key |Description
2323

2424
|`model`
25-
|The parent context variables (see xref:using-shell-components-ui-render.adoc#textcomponentcontext-template-variables[TextComponentContext Template Variables]).
25+
|The parent context variables (see xref:components/ui/render.adoc#textcomponentcontext-template-variables[TextComponentContext Template Variables]).
2626
|===
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ The context object is `PathSearchContext`. The following table describes its con
3030
|The items available for rendering search results.
3131

3232
|`model`
33-
|The parent context variables (see xref:using-shell-components-ui-render.adoc#textcomponentcontext-template-variables[TextComponentContext Template Variables]).
33+
|The parent context variables (see xref:/components/ui/render.adoc#textcomponentcontext-template-variables[TextComponentContext Template Variables]).
3434
|===
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The context object is `SingleItemSelectorContext`. The following table describes
2929
|The visible items, where rows contains maps of name and selected items.
3030

3131
|`model`
32-
|The parent context variables (see xref:using-shell-components-ui-render.adoc#selectorcomponentcontext-template-variables[SelectorComponentContext Template Variables]).
32+
|The parent context variables (see xref:/components/ui/render.adoc#selectorcomponentcontext-template-variables[SelectorComponentContext Template Variables]).
3333
|===
3434

3535
You can pre-select an item by defining it to get exposed. This is

0 commit comments

Comments
 (0)