@inseefr/lunatic 3.0.0-rc.1 → 3.0.0-rc.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/CheckboxBoolean/CheckboxBoolean.js +39 -19
- package/lib/components/CheckboxGroup/CheckboxGroup.js +3 -2
- package/lib/components/CheckboxGroup/CustomCheckboxGroup.js +4 -5
- package/lib/components/CheckboxGroup/CustomCheckboxGroup.spec.js +3 -0
- package/lib/components/CheckboxOne/CheckboxOne.js +6 -7
- package/lib/components/Datepicker/Datepicker.js +43 -29
- package/lib/components/Dropdown/Dropdown.js +37 -37
- package/lib/components/Duration/Duration.js +41 -17
- package/lib/components/FilterDescription/FilterDescription.js +2 -3
- package/lib/components/Input/Input.js +39 -22
- package/lib/components/InputNumber/InputNumber.js +45 -35
- package/lib/components/InputNumber/__snapshots__/InputNumber.spec.tsx.snap +0 -2
- package/lib/components/Loop/Loop.js +52 -29
- package/lib/components/LunaticComponents.js +60 -51
- package/lib/components/Question/Question.js +23 -14
- package/lib/components/Radio/Radio.js +2 -2
- package/lib/components/RosterForLoop/RosterForLoop.js +13 -36
- package/lib/components/Roundabout/CustomRoundabout.js +2 -2
- package/lib/components/Roundabout/Roundabout.js +0 -1
- package/lib/components/Roundabout/RoundaboutItButton.js +2 -2
- package/lib/components/Roundabout/extra.js +6 -6
- package/lib/components/Sequence/Sequence.js +2 -3
- package/lib/components/Subsequence/Subsequence.js +2 -2
- package/lib/components/Subsequence/Subsequence.spec.js +1 -1
- package/lib/components/Suggester/CustomSuggester.js +9 -6
- package/lib/components/Suggester/Suggester.js +67 -4
- package/lib/components/Suggester/SuggesterNotification.js +2 -2
- package/lib/components/Summary/Summary.js +3 -3
- package/lib/components/Switch/Switch.js +42 -22
- package/lib/components/Textarea/Textarea.js +43 -24
- package/lib/components/library.js +0 -2
- package/lib/components/shared/Button/Button.js +2 -3
- package/lib/components/shared/Button/IconButton.js +0 -1
- package/lib/components/shared/Checkbox/CheckboxOption.js +2 -3
- package/lib/components/shared/Combobox/Combobox.js +5 -4
- package/lib/components/shared/Combobox/ComboboxContainer.js +2 -2
- package/lib/components/shared/Combobox/ComboboxContentBox.js +2 -2
- package/lib/components/shared/Combobox/Panel/ComboboxOption.js +2 -2
- package/lib/components/shared/Combobox/Panel/ComboboxPanelContainer.js +2 -2
- package/lib/components/shared/Combobox/Selection/ComboboxClearButton.js +2 -2
- package/lib/components/shared/Combobox/Selection/ComboboxInput.js +2 -2
- package/lib/components/shared/Combobox/Selection/ComboboxLabelSelection.js +2 -2
- package/lib/components/shared/ComponentErrors/ComponentErrors.js +0 -1
- package/lib/components/shared/Declarations/Declarations.js +6 -7
- package/lib/components/shared/Declarations/Declarations.spec.js +5 -5
- package/lib/components/shared/Fieldset/Fieldset.js +2 -3
- package/lib/components/shared/HOC/{customizedComponent.js → slottableComponent.js} +35 -13
- package/lib/components/shared/Icons/lunatic-icon.js +0 -1
- package/lib/components/shared/Label/Label.js +2 -3
- package/lib/components/shared/MDLabel/RouterLink.js +2 -2
- package/lib/components/shared/Missing/Missing.js +0 -1
- package/lib/components/shared/ModalControls/ModalControls.js +0 -1
- package/lib/components/shared/Notification.js +2 -2
- package/lib/components/shared/Radio/RadioGroup.js +4 -4
- package/lib/components/shared/Radio/RadioOption.js +2 -2
- package/lib/components/shared/Table/Table.js +2 -3
- package/lib/components/shared/Table/Tbody.js +2 -2
- package/lib/components/shared/Table/Td.js +2 -2
- package/lib/components/shared/Table/Th.js +2 -2
- package/lib/components/shared/Table/Thead.js +2 -2
- package/lib/components/shared/Table/Tr.js +2 -2
- package/lib/components/shared/VariableStatus/VariableStatus.js +0 -1
- package/lib/components/shared/suggester-loader-widget/dragger/dragger.js +0 -1
- package/lib/components/shared/suggester-loader-widget/widget.js +0 -1
- package/lib/css/components/Button.scss +24 -0
- package/lib/css/components/CheckboxGroup.scss +13 -0
- package/lib/css/components/CheckboxOne.scss +19 -0
- package/lib/css/components/CheckboxOption.scss +19 -0
- package/lib/css/components/Combobox.scss +206 -0
- package/lib/css/components/ComponentErrors.scss +5 -0
- package/lib/css/components/Datepicker.scss +19 -0
- package/lib/css/components/Declarations.scss +42 -0
- package/lib/css/components/Dragger.scss +8 -0
- package/lib/css/components/Dropdown.scss +38 -0
- package/lib/css/components/Duration.scss +9 -0
- package/lib/css/components/Fieldset.scss +5 -0
- package/lib/css/components/IconButton.scss +38 -0
- package/lib/css/components/Input.scss +42 -0
- package/lib/css/components/InputNumber.scss +11 -0
- package/lib/css/components/Label.scss +6 -0
- package/lib/css/components/Missing.scss +27 -0
- package/lib/css/components/ModalControls.scss +48 -0
- package/lib/css/components/RadioGroup.scss +21 -0
- package/lib/css/components/RosterForLoop.scss +39 -0
- package/lib/css/components/Roundabout.scss +13 -0
- package/lib/css/components/Sequence.scss +10 -0
- package/lib/css/components/Suggester.scss +170 -0
- package/lib/css/components/SuggesterWidget.scss +176 -0
- package/lib/css/components/Table.scss +27 -0
- package/lib/css/components/Textarea.scss +8 -0
- package/lib/css/components/VariableStatus.scss +36 -0
- package/lib/css/main.scss +181 -0
- package/lib/hooks/useSuggesterInfo.js +14 -12
- package/lib/main.css +1063 -0
- package/lib/main.css.map +1 -0
- package/lib/src/components/CheckboxBoolean/CheckboxBoolean.d.ts +10 -5
- package/lib/src/components/CheckboxGroup/CheckboxGroup.d.ts +1 -1
- package/lib/src/components/CheckboxOne/CheckboxOne.d.ts +5 -12
- package/lib/src/components/Datepicker/Datepicker.d.ts +8 -10
- package/lib/src/components/Dropdown/Dropdown.d.ts +9 -12
- package/lib/src/components/Duration/Duration.d.ts +9 -7
- package/lib/src/components/FilterDescription/FilterDescription.d.ts +1 -1
- package/lib/src/components/Input/Input.d.ts +9 -8
- package/lib/src/components/InputNumber/InputNumber.d.ts +9 -10
- package/lib/src/components/Loop/Loop.d.ts +11 -18
- package/lib/src/components/LunaticComponents.d.ts +4 -2
- package/lib/src/components/Question/Question.d.ts +6 -4
- package/lib/src/components/RosterForLoop/RosterForLoop.d.ts +2 -22
- package/lib/src/components/Roundabout/Roundabout.d.ts +0 -1
- package/lib/src/components/Sequence/Sequence.d.ts +1 -2
- package/lib/src/components/Subsequence/Subsequence.d.ts +1 -1
- package/lib/src/components/Suggester/CustomSuggester.d.ts +7 -3
- package/lib/src/components/Suggester/Suggester.d.ts +1 -2
- package/lib/src/components/Suggester/SuggesterType.d.ts +6 -0
- package/lib/src/components/Suggester/helpers.d.ts +2 -2
- package/lib/src/components/Switch/Switch.d.ts +9 -0
- package/lib/src/components/Textarea/Textarea.d.ts +9 -10
- package/lib/src/components/library.d.ts +26 -93
- package/lib/src/components/shared/Button/Button.d.ts +0 -1
- package/lib/src/components/shared/Button/IconButton.d.ts +0 -1
- package/lib/src/components/shared/Checkbox/CheckboxOption.d.ts +0 -1
- package/lib/src/components/shared/Combobox/Combobox.d.ts +1 -1
- package/lib/src/components/shared/ComponentErrors/ComponentErrors.d.ts +0 -1
- package/lib/src/components/shared/Declarations/Declarations.d.ts +2 -3
- package/lib/src/components/shared/Fieldset/Fieldset.d.ts +0 -1
- package/lib/src/components/shared/HOC/slottableComponent.d.ts +105 -0
- package/lib/src/components/shared/Icons/lunatic-icon.d.ts +0 -1
- package/lib/src/components/shared/Label/Label.d.ts +0 -1
- package/lib/src/components/shared/Missing/Missing.d.ts +0 -1
- package/lib/src/components/shared/ModalControls/ModalControls.d.ts +0 -1
- package/lib/src/components/shared/Radio/RadioGroup.d.ts +1 -1
- package/lib/src/components/shared/Table/Table.d.ts +0 -1
- package/lib/src/components/shared/VariableStatus/VariableStatus.d.ts +0 -1
- package/lib/src/components/shared/suggester-loader-widget/dragger/dragger.d.ts +0 -1
- package/lib/src/components/shared/suggester-loader-widget/widget.d.ts +0 -1
- package/lib/src/components/type.d.ts +7 -7
- package/lib/src/hooks/use-track-changes.d.ts +9 -1
- package/lib/src/hooks/useSuggesterInfo.d.ts +1 -1
- package/lib/src/index.d.ts +1 -1
- package/lib/src/use-lunatic/commons/fill-components/fill-component-required.d.ts +106 -59
- package/lib/src/use-lunatic/commons/fill-components/fill-from-state.d.ts +87 -58
- package/lib/src/use-lunatic/commons/fill-components/fill-iterations.d.ts +47 -38
- package/lib/src/use-lunatic/commons/fill-components/fill-specific-expression.d.ts +159 -87
- package/lib/src/use-lunatic/commons/use-components-from-state.d.ts +1 -1
- package/lib/src/use-lunatic/lunatic-context.d.ts +1 -4
- package/lib/src/use-lunatic/replace-component-sequence.d.ts +23 -5
- package/lib/src/use-lunatic/type-source.d.ts +55 -46
- package/lib/src/use-lunatic/type.d.ts +4 -4
- package/lib/src/use-lunatic/use-lunatic.d.ts +63 -32
- package/lib/src/utils/variables.d.ts +10 -2
- package/lib/stories/{component-set/component-set.stories.js → behaviour/slots.stories.js} +36 -25
- package/lib/stories/checkbox-group/checkbox-group.stories.js +1 -6
- package/lib/stories/disabled/source.json +1 -1
- package/lib/stories/loop/source-roster.json +2 -2
- package/lib/stories/pairwise/pairwise-links.stories.js +1 -9
- package/lib/stories/suggester/fakeReferentiel.json +12 -0
- package/lib/stories/suggester/source-option-responses.json +145 -0
- package/lib/stories/suggester/suggester.stories.js +45 -7
- package/lib/stories/utils/orchestrator.js +4 -4
- package/lib/use-lunatic/commons/fill-components/fill-specific-expression.js +0 -1
- package/lib/use-lunatic/lunatic-context.js +2 -10
- package/lib/use-lunatic/replace-component-sequence.js +2 -3
- package/lib/use-lunatic/use-lunatic.js +1 -4
- package/lib/use-lunatic/use-lunatic.test.js +12 -37
- package/lib/use-lunatic/use-suggesters.js +23 -24
- package/package.json +2 -2
- package/lib/components/ComponentSet/ComponentSet.js +0 -68
- package/lib/components/Dropdown/DropdownWritable.js +0 -58
- package/lib/components/Dropdown/renderer/WritableLabelRenderer.js +0 -38
- package/lib/components/Dropdown/renderer/WritableOptionRenderer.js +0 -140
- package/lib/src/components/ComponentSet/ComponentSet.d.ts +0 -7
- package/lib/src/components/Dropdown/DropdownWritable.d.ts +0 -17
- package/lib/src/components/Dropdown/renderer/WritableLabelRenderer.d.ts +0 -8
- package/lib/src/components/Dropdown/renderer/WritableOptionRenderer.d.ts +0 -8
- package/lib/src/components/shared/HOC/customizedComponent.d.ts +0 -5
- package/lib/src/components/type-custom.d.ts +0 -101
- package/lib/stories/checkbox-group/sourceComponentset.json +0 -424
- package/lib/stories/component-set/data-loop.json +0 -18
- package/lib/stories/component-set/data-roundabout.json +0 -25
- package/lib/stories/component-set/data.json +0 -25
- package/lib/stories/component-set/source-loop.json +0 -308
- package/lib/stories/component-set/source-roundabout.json +0 -434
- package/lib/stories/component-set/source.json +0 -113
- package/lib/stories/pairwise/source-componentset.json +0 -292
- package/lib/stories/suggester/source-component-set.json +0 -113
- /package/lib/components/{type-custom.js → Suggester/SuggesterType.js} +0 -0
|
@@ -7,6 +7,7 @@ import { type DeepTranslateExpression } from './fill-component-expressions';
|
|
|
7
7
|
declare function fillSpecificExpressions(component: DeepTranslateExpression<LunaticComponentDefinition>, state: LunaticState): {
|
|
8
8
|
expressions: {};
|
|
9
9
|
label: import("react").ReactNode;
|
|
10
|
+
description?: import("react").ReactNode;
|
|
10
11
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
11
12
|
conditionFilter?: import("react").ReactNode;
|
|
12
13
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -31,8 +32,9 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
31
32
|
iterations: import("react").ReactNode;
|
|
32
33
|
locked: boolean;
|
|
33
34
|
} | {
|
|
34
|
-
components: import("./fill-components").FilledLunaticComponentProps<"
|
|
35
|
+
components: import("./fill-components").FilledLunaticComponentProps<"Sequence" | "Subsequence" | "RosterForLoop" | "Loop" | "Table" | "InputNumber" | "Datepicker" | "CheckboxGroup" | "CheckboxBoolean" | "Radio" | "FilterDescription" | "Dropdown" | "PairwiseLinks" | "Roundabout" | "Suggester" | "Input" | "Textarea" | "CheckboxOne" | "Question">[];
|
|
35
36
|
label: import("react").ReactNode;
|
|
37
|
+
description: import("react").ReactNode;
|
|
36
38
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
37
39
|
conditionFilter?: import("react").ReactNode;
|
|
38
40
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -52,10 +54,11 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
52
54
|
} | undefined;
|
|
53
55
|
mandatory?: boolean | undefined;
|
|
54
56
|
page: string;
|
|
55
|
-
componentType: "
|
|
57
|
+
componentType: "Question";
|
|
56
58
|
} | {
|
|
57
|
-
|
|
59
|
+
getComponents: (iteration: number) => import("./fill-components").FilledLunaticComponentProps<"Sequence" | "Subsequence" | "RosterForLoop" | "Loop" | "Table" | "InputNumber" | "Datepicker" | "CheckboxGroup" | "CheckboxBoolean" | "Radio" | "FilterDescription" | "Dropdown" | "PairwiseLinks" | "Roundabout" | "Suggester" | "Input" | "Textarea" | "CheckboxOne" | "Question">[];
|
|
58
60
|
label: import("react").ReactNode;
|
|
61
|
+
description?: import("react").ReactNode;
|
|
59
62
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
60
63
|
conditionFilter?: import("react").ReactNode;
|
|
61
64
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -75,11 +78,29 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
75
78
|
} | undefined;
|
|
76
79
|
mandatory?: boolean | undefined;
|
|
77
80
|
page: string;
|
|
78
|
-
componentType: "
|
|
79
|
-
|
|
81
|
+
componentType: "RosterForLoop";
|
|
82
|
+
components: import("../../type-source").ComponentType[];
|
|
83
|
+
lines: {
|
|
84
|
+
min: import("react").ReactNode;
|
|
85
|
+
max: import("react").ReactNode;
|
|
86
|
+
};
|
|
87
|
+
header?: {
|
|
88
|
+
value: string;
|
|
89
|
+
label: string | import("../../type-source").LabelType;
|
|
90
|
+
options: {
|
|
91
|
+
value: string;
|
|
92
|
+
label: import("../../type-source").LabelType;
|
|
93
|
+
description?: import("../../type-source").LabelType | undefined;
|
|
94
|
+
}[];
|
|
95
|
+
colspan?: number | undefined;
|
|
96
|
+
rowspan?: number | undefined;
|
|
97
|
+
}[] | undefined;
|
|
98
|
+
positioning: "HORIZONTAL";
|
|
99
|
+
value?: Record<string, unknown[]> | undefined;
|
|
80
100
|
} | {
|
|
81
|
-
getComponents: (iteration: number) => import("./fill-components").FilledLunaticComponentProps<"
|
|
101
|
+
getComponents: (iteration: number) => import("./fill-components").FilledLunaticComponentProps<"Sequence" | "Subsequence" | "RosterForLoop" | "Loop" | "Table" | "InputNumber" | "Datepicker" | "CheckboxGroup" | "CheckboxBoolean" | "Radio" | "FilterDescription" | "Dropdown" | "PairwiseLinks" | "Roundabout" | "Suggester" | "Input" | "Textarea" | "CheckboxOne" | "Question">[];
|
|
82
102
|
label: import("react").ReactNode;
|
|
103
|
+
description?: import("react").ReactNode;
|
|
83
104
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
84
105
|
conditionFilter?: import("react").ReactNode;
|
|
85
106
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -99,35 +120,18 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
99
120
|
} | undefined;
|
|
100
121
|
mandatory?: boolean | undefined;
|
|
101
122
|
page: string;
|
|
102
|
-
componentType: "
|
|
123
|
+
componentType: "Loop";
|
|
124
|
+
loopDependencies: string[];
|
|
103
125
|
components: import("../../type-source").ComponentType[];
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
header: {
|
|
109
|
-
value: string;
|
|
110
|
-
label: string | import("../../type-source").LabelType;
|
|
111
|
-
options: {
|
|
112
|
-
value: string;
|
|
113
|
-
label: import("../../type-source").LabelType;
|
|
114
|
-
}[];
|
|
115
|
-
colspan?: number | undefined;
|
|
116
|
-
rowspan?: number | undefined;
|
|
117
|
-
}[];
|
|
118
|
-
body: ({
|
|
119
|
-
label: import("../../type-source").LabelType;
|
|
120
|
-
colspan?: number | undefined;
|
|
121
|
-
rowspan?: number | undefined;
|
|
122
|
-
} | (import("../../type-source").ComponentType & {
|
|
123
|
-
colspan?: number | undefined;
|
|
124
|
-
rowspan?: number | undefined;
|
|
125
|
-
}))[][];
|
|
126
|
-
positioning: "HORIZONTAL";
|
|
126
|
+
depth: number;
|
|
127
|
+
paginatedLoop: true;
|
|
128
|
+
maxPage: string;
|
|
129
|
+
iterations: import("react").ReactNode;
|
|
127
130
|
value?: Record<string, unknown[]> | undefined;
|
|
128
131
|
} | {
|
|
129
|
-
getComponents: (iteration: number) => import("./fill-components").FilledLunaticComponentProps<"
|
|
132
|
+
getComponents: (iteration: number) => import("./fill-components").FilledLunaticComponentProps<"Sequence" | "Subsequence" | "RosterForLoop" | "Loop" | "Table" | "InputNumber" | "Datepicker" | "CheckboxGroup" | "CheckboxBoolean" | "Radio" | "FilterDescription" | "Dropdown" | "PairwiseLinks" | "Roundabout" | "Suggester" | "Input" | "Textarea" | "CheckboxOne" | "Question">[];
|
|
130
133
|
label: import("react").ReactNode;
|
|
134
|
+
description?: import("react").ReactNode;
|
|
131
135
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
132
136
|
conditionFilter?: import("react").ReactNode;
|
|
133
137
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -149,19 +153,17 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
149
153
|
page: string;
|
|
150
154
|
componentType: "Loop";
|
|
151
155
|
loopDependencies: string[];
|
|
156
|
+
components: import("../../type-source").ComponentType[];
|
|
157
|
+
depth: number;
|
|
158
|
+
paginatedLoop: false;
|
|
152
159
|
lines: {
|
|
153
160
|
min: import("react").ReactNode;
|
|
154
161
|
max: import("react").ReactNode;
|
|
155
162
|
};
|
|
156
|
-
components: import("../../type-source").ComponentType[];
|
|
157
|
-
iterations: import("react").ReactNode;
|
|
158
|
-
maxPage: string;
|
|
159
|
-
depth: number;
|
|
160
|
-
paginatedLoop: boolean;
|
|
161
163
|
value?: Record<string, unknown[]> | undefined;
|
|
162
164
|
} | {
|
|
163
|
-
getComponents: (x: number, y: number) => import("./fill-components").FilledLunaticComponentProps<"
|
|
164
|
-
|
|
165
|
+
getComponents: (x: number, y: number) => import("./fill-components").FilledLunaticComponentProps<"Sequence" | "Subsequence" | "RosterForLoop" | "Loop" | "Table" | "InputNumber" | "Datepicker" | "CheckboxGroup" | "CheckboxBoolean" | "Radio" | "FilterDescription" | "Dropdown" | "PairwiseLinks" | "Roundabout" | "Suggester" | "Input" | "Textarea" | "CheckboxOne" | "Question">[];
|
|
166
|
+
description?: import("react").ReactNode;
|
|
165
167
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
166
168
|
conditionFilter?: import("react").ReactNode;
|
|
167
169
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -186,13 +188,14 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
186
188
|
yAxisIterations: import("react").ReactNode;
|
|
187
189
|
symLinks: {
|
|
188
190
|
[x: string]: {
|
|
189
|
-
[x: string]: string;
|
|
191
|
+
[x: string]: string | null;
|
|
190
192
|
};
|
|
191
193
|
};
|
|
192
194
|
components: import("../../type-source").ComponentType[];
|
|
193
195
|
} | {
|
|
194
196
|
body: (({
|
|
195
197
|
label: import("react").ReactNode;
|
|
198
|
+
description?: import("react").ReactNode;
|
|
196
199
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
197
200
|
conditionFilter?: import("react").ReactNode;
|
|
198
201
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -213,10 +216,12 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
213
216
|
mandatory?: boolean | undefined;
|
|
214
217
|
page: string;
|
|
215
218
|
componentType: "Sequence";
|
|
219
|
+
gotoPage?: string | undefined;
|
|
216
220
|
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
217
221
|
conditionFilter?: boolean | undefined;
|
|
218
222
|
}) | ({
|
|
219
223
|
label: import("react").ReactNode;
|
|
224
|
+
description?: import("react").ReactNode;
|
|
220
225
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
221
226
|
conditionFilter?: import("react").ReactNode;
|
|
222
227
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -237,11 +242,11 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
237
242
|
mandatory?: boolean | undefined;
|
|
238
243
|
page: string;
|
|
239
244
|
componentType: "Subsequence";
|
|
240
|
-
gotoPage: string;
|
|
241
245
|
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
242
246
|
conditionFilter?: boolean | undefined;
|
|
243
247
|
}) | ({
|
|
244
248
|
label: import("react").ReactNode;
|
|
249
|
+
description?: import("react").ReactNode;
|
|
245
250
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
246
251
|
conditionFilter?: import("react").ReactNode;
|
|
247
252
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -267,29 +272,23 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
267
272
|
min: import("react").ReactNode;
|
|
268
273
|
max: import("react").ReactNode;
|
|
269
274
|
};
|
|
270
|
-
header
|
|
275
|
+
header?: {
|
|
271
276
|
value: string;
|
|
272
277
|
label: string | import("../../type-source").LabelType;
|
|
273
278
|
options: {
|
|
274
279
|
value: string;
|
|
275
280
|
label: import("../../type-source").LabelType;
|
|
281
|
+
description?: import("../../type-source").LabelType | undefined;
|
|
276
282
|
}[];
|
|
277
283
|
colspan?: number | undefined;
|
|
278
284
|
rowspan?: number | undefined;
|
|
279
|
-
}[];
|
|
280
|
-
body: ({
|
|
281
|
-
label: import("../../type-source").LabelType;
|
|
282
|
-
colspan?: number | undefined;
|
|
283
|
-
rowspan?: number | undefined;
|
|
284
|
-
} | (import("../../type-source").ComponentType & {
|
|
285
|
-
colspan?: number | undefined;
|
|
286
|
-
rowspan?: number | undefined;
|
|
287
|
-
}))[][];
|
|
285
|
+
}[] | undefined;
|
|
288
286
|
positioning: "HORIZONTAL";
|
|
289
287
|
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
290
288
|
conditionFilter?: boolean | undefined;
|
|
291
289
|
}) | ({
|
|
292
290
|
label: import("react").ReactNode;
|
|
291
|
+
description?: import("react").ReactNode;
|
|
293
292
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
294
293
|
conditionFilter?: import("react").ReactNode;
|
|
295
294
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -311,19 +310,49 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
311
310
|
page: string;
|
|
312
311
|
componentType: "Loop";
|
|
313
312
|
loopDependencies: string[];
|
|
313
|
+
components: import("../../type-source").ComponentType[];
|
|
314
|
+
depth: number;
|
|
315
|
+
paginatedLoop: true;
|
|
316
|
+
maxPage: string;
|
|
317
|
+
iterations: import("react").ReactNode;
|
|
318
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
319
|
+
conditionFilter?: boolean | undefined;
|
|
320
|
+
}) | ({
|
|
321
|
+
label: import("react").ReactNode;
|
|
322
|
+
description?: import("react").ReactNode;
|
|
323
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
324
|
+
conditionFilter?: import("react").ReactNode;
|
|
325
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
326
|
+
id: string;
|
|
327
|
+
bindingDependencies?: string[] | undefined;
|
|
328
|
+
hierarchy?: {
|
|
329
|
+
sequence: {
|
|
330
|
+
label: import("react").ReactNode;
|
|
331
|
+
id: string;
|
|
332
|
+
page: string;
|
|
333
|
+
};
|
|
334
|
+
subSequence?: {
|
|
335
|
+
label: import("react").ReactNode;
|
|
336
|
+
id: string;
|
|
337
|
+
page: string;
|
|
338
|
+
} | undefined;
|
|
339
|
+
} | undefined;
|
|
340
|
+
mandatory?: boolean | undefined;
|
|
341
|
+
page: string;
|
|
342
|
+
componentType: "Loop";
|
|
343
|
+
loopDependencies: string[];
|
|
344
|
+
components: import("../../type-source").ComponentType[];
|
|
345
|
+
depth: number;
|
|
346
|
+
paginatedLoop: false;
|
|
314
347
|
lines: {
|
|
315
348
|
min: import("react").ReactNode;
|
|
316
349
|
max: import("react").ReactNode;
|
|
317
350
|
};
|
|
318
|
-
components: import("../../type-source").ComponentType[];
|
|
319
|
-
iterations: import("react").ReactNode;
|
|
320
|
-
maxPage: string;
|
|
321
|
-
depth: number;
|
|
322
|
-
paginatedLoop: boolean;
|
|
323
351
|
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
324
352
|
conditionFilter?: boolean | undefined;
|
|
325
353
|
}) | ({
|
|
326
354
|
label: import("react").ReactNode;
|
|
355
|
+
description?: import("react").ReactNode;
|
|
327
356
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
328
357
|
conditionFilter?: import("react").ReactNode;
|
|
329
358
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -350,10 +379,11 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
350
379
|
options: {
|
|
351
380
|
value: string;
|
|
352
381
|
label: import("../../type-source").LabelType;
|
|
382
|
+
description?: import("../../type-source").LabelType | undefined;
|
|
353
383
|
}[];
|
|
354
384
|
colspan?: number | undefined;
|
|
355
385
|
rowspan?: number | undefined;
|
|
356
|
-
}[];
|
|
386
|
+
}[] | undefined;
|
|
357
387
|
body: ({
|
|
358
388
|
label: import("../../type-source").LabelType;
|
|
359
389
|
colspan?: number | undefined;
|
|
@@ -366,6 +396,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
366
396
|
conditionFilter?: boolean | undefined;
|
|
367
397
|
}) | ({
|
|
368
398
|
label: import("react").ReactNode;
|
|
399
|
+
description?: import("react").ReactNode;
|
|
369
400
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
370
401
|
conditionFilter?: import("react").ReactNode;
|
|
371
402
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -386,7 +417,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
386
417
|
mandatory?: boolean | undefined;
|
|
387
418
|
page: string;
|
|
388
419
|
componentType: "InputNumber";
|
|
389
|
-
unit
|
|
420
|
+
unit?: string | undefined;
|
|
390
421
|
response: {
|
|
391
422
|
name: string;
|
|
392
423
|
};
|
|
@@ -397,6 +428,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
397
428
|
conditionFilter?: boolean | undefined;
|
|
398
429
|
}) | ({
|
|
399
430
|
label: import("react").ReactNode;
|
|
431
|
+
description?: import("react").ReactNode;
|
|
400
432
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
401
433
|
conditionFilter?: import("react").ReactNode;
|
|
402
434
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -427,6 +459,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
427
459
|
conditionFilter?: boolean | undefined;
|
|
428
460
|
}) | ({
|
|
429
461
|
label: import("react").ReactNode;
|
|
462
|
+
description?: import("react").ReactNode;
|
|
430
463
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
431
464
|
conditionFilter?: import("react").ReactNode;
|
|
432
465
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -449,6 +482,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
449
482
|
componentType: "CheckboxGroup";
|
|
450
483
|
responses: {
|
|
451
484
|
label: import("../../type-source").LabelType;
|
|
485
|
+
description?: import("../../type-source").LabelType | undefined;
|
|
452
486
|
response: import("../../type-source").ResponseType;
|
|
453
487
|
id: string;
|
|
454
488
|
}[];
|
|
@@ -456,6 +490,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
456
490
|
conditionFilter?: boolean | undefined;
|
|
457
491
|
}) | ({
|
|
458
492
|
label: import("react").ReactNode;
|
|
493
|
+
description?: import("react").ReactNode;
|
|
459
494
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
460
495
|
conditionFilter?: import("react").ReactNode;
|
|
461
496
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -486,6 +521,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
486
521
|
conditionFilter?: boolean | undefined;
|
|
487
522
|
}) | ({
|
|
488
523
|
label: import("react").ReactNode;
|
|
524
|
+
description?: import("react").ReactNode;
|
|
489
525
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
490
526
|
conditionFilter?: import("react").ReactNode;
|
|
491
527
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -509,6 +545,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
509
545
|
options: {
|
|
510
546
|
value: string;
|
|
511
547
|
label: import("../../type-source").LabelType;
|
|
548
|
+
description?: import("../../type-source").LabelType | undefined;
|
|
512
549
|
}[];
|
|
513
550
|
response: {
|
|
514
551
|
name: string;
|
|
@@ -520,6 +557,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
520
557
|
conditionFilter?: boolean | undefined;
|
|
521
558
|
}) | ({
|
|
522
559
|
label: import("react").ReactNode;
|
|
560
|
+
description?: import("react").ReactNode;
|
|
523
561
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
524
562
|
conditionFilter?: import("react").ReactNode;
|
|
525
563
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -545,6 +583,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
545
583
|
conditionFilter?: boolean | undefined;
|
|
546
584
|
}) | ({
|
|
547
585
|
label: import("react").ReactNode;
|
|
586
|
+
description?: import("react").ReactNode;
|
|
548
587
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
549
588
|
conditionFilter?: import("react").ReactNode;
|
|
550
589
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -568,6 +607,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
568
607
|
options: {
|
|
569
608
|
value: string;
|
|
570
609
|
label: import("../../type-source").LabelType;
|
|
610
|
+
description?: import("../../type-source").LabelType | undefined;
|
|
571
611
|
}[];
|
|
572
612
|
response: {
|
|
573
613
|
name: string;
|
|
@@ -578,7 +618,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
578
618
|
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
579
619
|
conditionFilter?: boolean | undefined;
|
|
580
620
|
}) | ({
|
|
581
|
-
|
|
621
|
+
description?: import("react").ReactNode;
|
|
582
622
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
583
623
|
conditionFilter?: import("react").ReactNode;
|
|
584
624
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -603,7 +643,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
603
643
|
yAxisIterations: import("react").ReactNode;
|
|
604
644
|
symLinks: {
|
|
605
645
|
[x: string]: {
|
|
606
|
-
[x: string]: string;
|
|
646
|
+
[x: string]: string | null;
|
|
607
647
|
};
|
|
608
648
|
};
|
|
609
649
|
components: import("../../type-source").ComponentType[];
|
|
@@ -611,6 +651,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
611
651
|
conditionFilter?: boolean | undefined;
|
|
612
652
|
}) | ({
|
|
613
653
|
label: import("react").ReactNode;
|
|
654
|
+
description?: import("react").ReactNode;
|
|
614
655
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
615
656
|
conditionFilter?: import("react").ReactNode;
|
|
616
657
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -641,6 +682,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
641
682
|
conditionFilter?: boolean | undefined;
|
|
642
683
|
}) | ({
|
|
643
684
|
label: import("react").ReactNode;
|
|
685
|
+
description?: import("react").ReactNode;
|
|
644
686
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
645
687
|
conditionFilter?: import("react").ReactNode;
|
|
646
688
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -662,10 +704,18 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
662
704
|
page: string;
|
|
663
705
|
componentType: "Suggester";
|
|
664
706
|
storeName: string;
|
|
707
|
+
response: {
|
|
708
|
+
name: string;
|
|
709
|
+
};
|
|
710
|
+
optionResponses: {
|
|
711
|
+
name: string;
|
|
712
|
+
attribute: string;
|
|
713
|
+
}[];
|
|
665
714
|
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
666
715
|
conditionFilter?: boolean | undefined;
|
|
667
716
|
}) | ({
|
|
668
717
|
label: import("react").ReactNode;
|
|
718
|
+
description?: import("react").ReactNode;
|
|
669
719
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
670
720
|
conditionFilter?: import("react").ReactNode;
|
|
671
721
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -697,6 +747,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
697
747
|
conditionFilter?: boolean | undefined;
|
|
698
748
|
}) | ({
|
|
699
749
|
label: import("react").ReactNode;
|
|
750
|
+
description?: import("react").ReactNode;
|
|
700
751
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
701
752
|
conditionFilter?: import("react").ReactNode;
|
|
702
753
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -717,35 +768,22 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
717
768
|
mandatory?: boolean | undefined;
|
|
718
769
|
page: string;
|
|
719
770
|
componentType: "CheckboxOne";
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
conditionFilter?: import("react").ReactNode;
|
|
726
|
-
controls?: import("../../type-source").ControlType[] | undefined;
|
|
727
|
-
id: string;
|
|
728
|
-
bindingDependencies?: string[] | undefined;
|
|
729
|
-
hierarchy?: {
|
|
730
|
-
sequence: {
|
|
731
|
-
label: import("react").ReactNode;
|
|
732
|
-
id: string;
|
|
733
|
-
page: string;
|
|
734
|
-
};
|
|
735
|
-
subSequence?: {
|
|
736
|
-
label: import("react").ReactNode;
|
|
737
|
-
id: string;
|
|
738
|
-
page: string;
|
|
739
|
-
} | undefined;
|
|
771
|
+
response: {
|
|
772
|
+
name: string;
|
|
773
|
+
};
|
|
774
|
+
missingResponse?: {
|
|
775
|
+
name: string;
|
|
740
776
|
} | undefined;
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
777
|
+
options: {
|
|
778
|
+
value: string;
|
|
779
|
+
label: import("../../type-source").LabelType;
|
|
780
|
+
description?: import("../../type-source").LabelType | undefined;
|
|
781
|
+
}[];
|
|
745
782
|
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
746
783
|
conditionFilter?: boolean | undefined;
|
|
747
784
|
}) | ({
|
|
748
785
|
label: import("react").ReactNode;
|
|
786
|
+
description: import("react").ReactNode;
|
|
749
787
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
750
788
|
conditionFilter?: import("react").ReactNode;
|
|
751
789
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -767,7 +805,6 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
767
805
|
page: string;
|
|
768
806
|
componentType: "Question";
|
|
769
807
|
components: import("../../type-source").ComponentType[];
|
|
770
|
-
description: import("react").ReactNode;
|
|
771
808
|
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
772
809
|
conditionFilter?: boolean | undefined;
|
|
773
810
|
}) | {
|
|
@@ -776,6 +813,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
776
813
|
rowspan?: number | undefined;
|
|
777
814
|
})[][];
|
|
778
815
|
label: import("react").ReactNode;
|
|
816
|
+
description?: import("react").ReactNode;
|
|
779
817
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
780
818
|
conditionFilter?: import("react").ReactNode;
|
|
781
819
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -802,12 +840,14 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
802
840
|
options: {
|
|
803
841
|
value: string;
|
|
804
842
|
label: import("../../type-source").LabelType;
|
|
843
|
+
description?: import("../../type-source").LabelType | undefined;
|
|
805
844
|
}[];
|
|
806
845
|
colspan?: number | undefined;
|
|
807
846
|
rowspan?: number | undefined;
|
|
808
|
-
}[];
|
|
847
|
+
}[] | undefined;
|
|
809
848
|
} | {
|
|
810
849
|
label: import("react").ReactNode;
|
|
850
|
+
description?: import("react").ReactNode;
|
|
811
851
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
812
852
|
conditionFilter?: import("react").ReactNode;
|
|
813
853
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -828,8 +868,10 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
828
868
|
mandatory?: boolean | undefined;
|
|
829
869
|
page: string;
|
|
830
870
|
componentType: "Sequence";
|
|
871
|
+
gotoPage?: string | undefined;
|
|
831
872
|
} | {
|
|
832
873
|
label: import("react").ReactNode;
|
|
874
|
+
description?: import("react").ReactNode;
|
|
833
875
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
834
876
|
conditionFilter?: import("react").ReactNode;
|
|
835
877
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -850,9 +892,9 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
850
892
|
mandatory?: boolean | undefined;
|
|
851
893
|
page: string;
|
|
852
894
|
componentType: "Subsequence";
|
|
853
|
-
gotoPage: string;
|
|
854
895
|
} | {
|
|
855
896
|
label: import("react").ReactNode;
|
|
897
|
+
description?: import("react").ReactNode;
|
|
856
898
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
857
899
|
conditionFilter?: import("react").ReactNode;
|
|
858
900
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -873,7 +915,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
873
915
|
mandatory?: boolean | undefined;
|
|
874
916
|
page: string;
|
|
875
917
|
componentType: "InputNumber";
|
|
876
|
-
unit
|
|
918
|
+
unit?: string | undefined;
|
|
877
919
|
response: {
|
|
878
920
|
name: string;
|
|
879
921
|
};
|
|
@@ -882,6 +924,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
882
924
|
decimals?: number | undefined;
|
|
883
925
|
} | {
|
|
884
926
|
label: import("react").ReactNode;
|
|
927
|
+
description?: import("react").ReactNode;
|
|
885
928
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
886
929
|
conditionFilter?: import("react").ReactNode;
|
|
887
930
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -910,6 +953,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
910
953
|
max?: string | undefined;
|
|
911
954
|
} | {
|
|
912
955
|
label: import("react").ReactNode;
|
|
956
|
+
description?: import("react").ReactNode;
|
|
913
957
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
914
958
|
conditionFilter?: import("react").ReactNode;
|
|
915
959
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -932,11 +976,13 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
932
976
|
componentType: "CheckboxGroup";
|
|
933
977
|
responses: {
|
|
934
978
|
label: import("../../type-source").LabelType;
|
|
979
|
+
description?: import("../../type-source").LabelType | undefined;
|
|
935
980
|
response: import("../../type-source").ResponseType;
|
|
936
981
|
id: string;
|
|
937
982
|
}[];
|
|
938
983
|
} | {
|
|
939
984
|
label: import("react").ReactNode;
|
|
985
|
+
description?: import("react").ReactNode;
|
|
940
986
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
941
987
|
conditionFilter?: import("react").ReactNode;
|
|
942
988
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -965,6 +1011,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
965
1011
|
} | undefined;
|
|
966
1012
|
} | {
|
|
967
1013
|
label: import("react").ReactNode;
|
|
1014
|
+
description?: import("react").ReactNode;
|
|
968
1015
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
969
1016
|
conditionFilter?: import("react").ReactNode;
|
|
970
1017
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -988,6 +1035,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
988
1035
|
options: {
|
|
989
1036
|
value: string;
|
|
990
1037
|
label: import("../../type-source").LabelType;
|
|
1038
|
+
description?: import("../../type-source").LabelType | undefined;
|
|
991
1039
|
}[];
|
|
992
1040
|
response: {
|
|
993
1041
|
name: string;
|
|
@@ -997,6 +1045,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
997
1045
|
} | undefined;
|
|
998
1046
|
} | {
|
|
999
1047
|
label: import("react").ReactNode;
|
|
1048
|
+
description?: import("react").ReactNode;
|
|
1000
1049
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
1001
1050
|
conditionFilter?: import("react").ReactNode;
|
|
1002
1051
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -1020,6 +1069,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
1020
1069
|
filterDescription: boolean;
|
|
1021
1070
|
} | {
|
|
1022
1071
|
label: import("react").ReactNode;
|
|
1072
|
+
description?: import("react").ReactNode;
|
|
1023
1073
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
1024
1074
|
conditionFilter?: import("react").ReactNode;
|
|
1025
1075
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -1043,6 +1093,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
1043
1093
|
options: {
|
|
1044
1094
|
value: string;
|
|
1045
1095
|
label: import("../../type-source").LabelType;
|
|
1096
|
+
description?: import("../../type-source").LabelType | undefined;
|
|
1046
1097
|
}[];
|
|
1047
1098
|
response: {
|
|
1048
1099
|
name: string;
|
|
@@ -1052,6 +1103,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
1052
1103
|
} | undefined;
|
|
1053
1104
|
} | {
|
|
1054
1105
|
label: import("react").ReactNode;
|
|
1106
|
+
description?: import("react").ReactNode;
|
|
1055
1107
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
1056
1108
|
conditionFilter?: import("react").ReactNode;
|
|
1057
1109
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -1073,8 +1125,16 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
1073
1125
|
page: string;
|
|
1074
1126
|
componentType: "Suggester";
|
|
1075
1127
|
storeName: string;
|
|
1128
|
+
response: {
|
|
1129
|
+
name: string;
|
|
1130
|
+
};
|
|
1131
|
+
optionResponses: {
|
|
1132
|
+
name: string;
|
|
1133
|
+
attribute: string;
|
|
1134
|
+
}[];
|
|
1076
1135
|
} | {
|
|
1077
1136
|
label: import("react").ReactNode;
|
|
1137
|
+
description?: import("react").ReactNode;
|
|
1078
1138
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
1079
1139
|
conditionFilter?: import("react").ReactNode;
|
|
1080
1140
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -1104,6 +1164,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
1104
1164
|
};
|
|
1105
1165
|
} | {
|
|
1106
1166
|
label: import("react").ReactNode;
|
|
1167
|
+
description?: import("react").ReactNode;
|
|
1107
1168
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
1108
1169
|
conditionFilter?: import("react").ReactNode;
|
|
1109
1170
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
@@ -1124,5 +1185,16 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
1124
1185
|
mandatory?: boolean | undefined;
|
|
1125
1186
|
page: string;
|
|
1126
1187
|
componentType: "CheckboxOne";
|
|
1188
|
+
response: {
|
|
1189
|
+
name: string;
|
|
1190
|
+
};
|
|
1191
|
+
missingResponse?: {
|
|
1192
|
+
name: string;
|
|
1193
|
+
} | undefined;
|
|
1194
|
+
options: {
|
|
1195
|
+
value: string;
|
|
1196
|
+
label: import("../../type-source").LabelType;
|
|
1197
|
+
description?: import("../../type-source").LabelType | undefined;
|
|
1198
|
+
}[];
|
|
1127
1199
|
};
|
|
1128
1200
|
export default fillSpecificExpressions;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { LunaticState } from '../type';
|
|
2
|
-
declare function useComponentsFromState(state: LunaticState): import("./fill-components/fill-components").FilledLunaticComponentProps<"
|
|
2
|
+
declare function useComponentsFromState(state: LunaticState): import("./fill-components/fill-components").FilledLunaticComponentProps<"Sequence" | "Subsequence" | "RosterForLoop" | "Loop" | "Table" | "InputNumber" | "Datepicker" | "CheckboxGroup" | "CheckboxBoolean" | "Radio" | "FilterDescription" | "Dropdown" | "PairwiseLinks" | "Roundabout" | "Suggester" | "Input" | "Textarea" | "CheckboxOne" | "Question">[];
|
|
3
3
|
export default useComponentsFromState;
|