@inseefr/lunatic 2.7.5 → 2.7.7
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/README.fr.md +1 -1
- package/README.md +6 -1
- package/lib/components/loop/block-for-loop.js +2 -0
- package/lib/components/loop/constant.js +10 -0
- package/lib/components/loop/roster-for-loop/roster-for-loop.js +42 -20
- package/lib/components/lunatic-components.js +45 -7
- package/lib/components/table/lunatic-table.js +5 -1
- package/lib/src/components/datepicker/lunatic-datepicker.d.ts +1 -1
- package/lib/src/components/loop/constant.d.ts +4 -0
- package/lib/src/components/loop/roster-for-loop/roster-for-loop.d.ts +1 -0
- package/lib/src/components/lunatic-components.d.ts +12 -5
- package/lib/src/components/type.d.ts +4 -1
- package/lib/src/use-lunatic/commons/compile-controls.d.ts +4 -3
- package/lib/src/use-lunatic/commons/fill-components/fill-component-required.d.ts +75 -70
- package/lib/src/use-lunatic/commons/fill-components/fill-from-state.d.ts +55 -50
- package/lib/src/use-lunatic/commons/fill-components/fill-iterations.d.ts +31 -26
- package/lib/src/use-lunatic/commons/fill-components/fill-specific-expression.d.ts +680 -73
- package/lib/src/use-lunatic/commons/use-components-from-state.d.ts +1 -1
- package/lib/src/use-lunatic/commons/variables/lunatic-variables-store.d.ts +4 -1
- package/lib/src/use-lunatic/reducer/commons/is-loop-component.d.ts +2 -2
- package/lib/src/use-lunatic/reducer/controls/check-base-control.d.ts +2 -0
- package/lib/src/use-lunatic/reducer/{resolve-component-controls/resolve-roundabout-control.d.ts → controls/check-roundabout-control.d.ts} +2 -2
- package/lib/src/use-lunatic/type-source.d.ts +16 -10
- package/lib/src/use-lunatic/use-lunatic.d.ts +11 -5
- package/lib/stories/behaviour/controls/controls.stories.js +14 -7
- package/lib/stories/behaviour/controls/loop.json +130 -0
- package/lib/stories/behaviour/controls/{V2_ControlesNonNum_horsBoucle_PasPageFin.json → simple.json} +2 -2
- package/lib/stories/date-picker/source.json +22 -67
- package/lib/stories/declaration/source.json +14 -28
- package/lib/stories/dropdown/source.json +11 -28
- package/lib/stories/filter-description/source.json +3 -2
- package/lib/stories/input/input.stories.js +1 -8
- package/lib/stories/input/source.json +1 -63
- package/lib/stories/input-number/input-number.stories.js +2 -22
- package/lib/stories/input-number/source.json +4 -6
- package/lib/stories/loop/{block-for-loop.stories.js → loop.stories.js} +10 -8
- package/lib/stories/loop/roster-for-loop.stories.js +8 -2
- package/lib/stories/loop/source-bloc.json +10 -39
- package/lib/stories/loop/source-paginated.json +65 -78
- package/lib/stories/overview/overview.stories.js +1 -1
- package/lib/stories/pairwise/pairwise-links.stories.js +4 -4
- package/lib/stories/pairwise/{links.json → source.json} +2 -6
- package/lib/stories/{loop/not-paginated-loop.stories.js → question-context/question-context.stories.js} +5 -9
- package/lib/stories/question-context/source.json +13 -0
- package/lib/stories/question-explication/source.json +1 -1
- package/lib/stories/{loop/paginated-loop.stories.js → question-information/question-information.stories.js} +4 -4
- package/lib/stories/question-information/source.json +14 -0
- package/lib/stories/roundabout/source.json +21 -31
- package/lib/stories/sequence/sequence.stories.js +7 -1
- package/lib/stories/sequence/source.json +17 -0
- package/lib/stories/suggester/simple.json +1 -1
- package/lib/stories/table/source-colspan.json +314 -0
- package/lib/stories/table/table.stories.js +7 -1
- package/lib/stories/textarea/source.json +6 -22
- package/lib/use-lunatic/commons/compile-controls.js +135 -34
- package/lib/use-lunatic/commons/fill-components/fill-component-value.js +10 -0
- package/lib/use-lunatic/commons/fill-components/fill-specific-expression.js +4 -1
- package/lib/use-lunatic/commons/variables/lunatic-variables-store.js +39 -15
- package/lib/use-lunatic/commons/variables/lunatic-variables-store.spec.js +16 -6
- package/lib/use-lunatic/hooks/use-page-has-response.js +17 -0
- package/lib/use-lunatic/reducer/{resolve-component-controls/resolve-simple-control.js → controls/check-base-control.js} +5 -7
- package/lib/use-lunatic/reducer/{resolve-component-controls/resolve-roundabout-control.js → controls/check-roundabout-control.js} +2 -3
- package/lib/use-lunatic/reducer/overview/overview-on-init.js +6 -4
- package/lib/use-lunatic/type-source.js +1 -0
- package/package.json +1 -1
- package/lib/src/use-lunatic/commons/get-errors-without-empty-value.d.ts +0 -6
- package/lib/src/use-lunatic/reducer/resolve-component-controls/index.d.ts +0 -1
- package/lib/src/use-lunatic/reducer/resolve-component-controls/resolve-component-control.d.ts +0 -6
- package/lib/src/use-lunatic/reducer/resolve-component-controls/resolve-simple-control.d.ts +0 -3
- package/lib/stories/Introduction.stories.mdx +0 -112
- package/lib/stories/behaviour/controls/V2_Controles_BouclesLiees_PasPageFin.json +0 -533
- package/lib/stories/input/source-with-question.json +0 -80
- package/lib/stories/input-number/source-euros.json +0 -37
- package/lib/stories/input-number/source-thansand.json +0 -34
- package/lib/stories/loop/source-not-paginated.json +0 -138
- package/lib/use-lunatic/commons/get-errors-without-empty-value.js +0 -24
- package/lib/use-lunatic/reducer/resolve-component-controls/index.js +0 -12
- package/lib/use-lunatic/reducer/resolve-component-controls/resolve-component-control.js +0 -38
- /package/lib/stories/behaviour/controls/{V2_ControlesNum_horsBoucle_PasPageFin.json → simple-numeric.json} +0 -0
- /package/lib/stories/pairwise/{links-componentset.json → source-componentset.json} +0 -0
|
@@ -8,11 +8,11 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
8
8
|
expressions: {};
|
|
9
9
|
label: import("react").ReactNode;
|
|
10
10
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
11
|
-
conditionFilter
|
|
11
|
+
conditionFilter?: import("react").ReactNode;
|
|
12
12
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
13
13
|
id: string;
|
|
14
14
|
bindingDependencies?: string[] | undefined;
|
|
15
|
-
hierarchy
|
|
15
|
+
hierarchy?: {
|
|
16
16
|
sequence: {
|
|
17
17
|
label: import("react").ReactNode;
|
|
18
18
|
id: string;
|
|
@@ -23,7 +23,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
23
23
|
id: string;
|
|
24
24
|
page: string;
|
|
25
25
|
} | undefined;
|
|
26
|
-
};
|
|
26
|
+
} | undefined;
|
|
27
27
|
mandatory?: boolean | undefined;
|
|
28
28
|
page: string;
|
|
29
29
|
componentType: "Roundabout";
|
|
@@ -31,14 +31,14 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
31
31
|
iterations: import("react").ReactNode;
|
|
32
32
|
locked: boolean;
|
|
33
33
|
} | {
|
|
34
|
-
components: import("./fill-components").FilledLunaticComponentProps<"
|
|
34
|
+
components: import("./fill-components").FilledLunaticComponentProps<"CheckboxOne" | "ConfirmationModal" | "Sequence" | "Subsequence" | "RosterForLoop" | "Loop" | "Table" | "InputNumber" | "Datepicker" | "CheckboxGroup" | "CheckboxBoolean" | "Radio" | "FilterDescription" | "Dropdown" | "PairwiseLinks" | "Roundabout" | "Suggester" | "Input" | "Textarea" | "ComponentSet" | "QuestionExplication">[];
|
|
35
35
|
label: import("react").ReactNode;
|
|
36
36
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
37
|
-
conditionFilter
|
|
37
|
+
conditionFilter?: import("react").ReactNode;
|
|
38
38
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
39
39
|
id: string;
|
|
40
40
|
bindingDependencies?: string[] | undefined;
|
|
41
|
-
hierarchy
|
|
41
|
+
hierarchy?: {
|
|
42
42
|
sequence: {
|
|
43
43
|
label: import("react").ReactNode;
|
|
44
44
|
id: string;
|
|
@@ -49,19 +49,19 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
49
49
|
id: string;
|
|
50
50
|
page: string;
|
|
51
51
|
} | undefined;
|
|
52
|
-
};
|
|
52
|
+
} | undefined;
|
|
53
53
|
mandatory?: boolean | undefined;
|
|
54
54
|
page: string;
|
|
55
55
|
componentType: "ComponentSet";
|
|
56
56
|
} | {
|
|
57
|
-
getComponents: (iteration: number) => import("./fill-components").FilledLunaticComponentProps<"
|
|
57
|
+
getComponents: (iteration: number) => import("./fill-components").FilledLunaticComponentProps<"CheckboxOne" | "ConfirmationModal" | "Sequence" | "Subsequence" | "RosterForLoop" | "Loop" | "Table" | "InputNumber" | "Datepicker" | "CheckboxGroup" | "CheckboxBoolean" | "Radio" | "FilterDescription" | "Dropdown" | "PairwiseLinks" | "Roundabout" | "Suggester" | "Input" | "Textarea" | "ComponentSet" | "QuestionExplication">[];
|
|
58
58
|
label: import("react").ReactNode;
|
|
59
59
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
60
|
-
conditionFilter
|
|
60
|
+
conditionFilter?: import("react").ReactNode;
|
|
61
61
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
62
62
|
id: string;
|
|
63
63
|
bindingDependencies?: string[] | undefined;
|
|
64
|
-
hierarchy
|
|
64
|
+
hierarchy?: {
|
|
65
65
|
sequence: {
|
|
66
66
|
label: import("react").ReactNode;
|
|
67
67
|
id: string;
|
|
@@ -72,7 +72,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
72
72
|
id: string;
|
|
73
73
|
page: string;
|
|
74
74
|
} | undefined;
|
|
75
|
-
};
|
|
75
|
+
} | undefined;
|
|
76
76
|
mandatory?: boolean | undefined;
|
|
77
77
|
page: string;
|
|
78
78
|
componentType: "RosterForLoop";
|
|
@@ -91,20 +91,25 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
91
91
|
colspan?: number | undefined;
|
|
92
92
|
rowspan?: number | undefined;
|
|
93
93
|
}[];
|
|
94
|
-
body: (
|
|
94
|
+
body: ({
|
|
95
95
|
label: import("../../type-source").LabelType;
|
|
96
|
-
|
|
96
|
+
colspan?: number | undefined;
|
|
97
|
+
rowspan?: number | undefined;
|
|
98
|
+
} | (import("../../type-source").ComponentType & {
|
|
99
|
+
colspan?: number | undefined;
|
|
100
|
+
rowspan?: number | undefined;
|
|
101
|
+
}))[][];
|
|
97
102
|
positioning: "HORIZONTAL";
|
|
98
103
|
value?: Record<string, unknown[]> | undefined;
|
|
99
104
|
} | {
|
|
100
|
-
getComponents: (iteration: number) => import("./fill-components").FilledLunaticComponentProps<"
|
|
105
|
+
getComponents: (iteration: number) => import("./fill-components").FilledLunaticComponentProps<"CheckboxOne" | "ConfirmationModal" | "Sequence" | "Subsequence" | "RosterForLoop" | "Loop" | "Table" | "InputNumber" | "Datepicker" | "CheckboxGroup" | "CheckboxBoolean" | "Radio" | "FilterDescription" | "Dropdown" | "PairwiseLinks" | "Roundabout" | "Suggester" | "Input" | "Textarea" | "ComponentSet" | "QuestionExplication">[];
|
|
101
106
|
label: import("react").ReactNode;
|
|
102
107
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
103
|
-
conditionFilter
|
|
108
|
+
conditionFilter?: import("react").ReactNode;
|
|
104
109
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
105
110
|
id: string;
|
|
106
111
|
bindingDependencies?: string[] | undefined;
|
|
107
|
-
hierarchy
|
|
112
|
+
hierarchy?: {
|
|
108
113
|
sequence: {
|
|
109
114
|
label: import("react").ReactNode;
|
|
110
115
|
id: string;
|
|
@@ -115,7 +120,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
115
120
|
id: string;
|
|
116
121
|
page: string;
|
|
117
122
|
} | undefined;
|
|
118
|
-
};
|
|
123
|
+
} | undefined;
|
|
119
124
|
mandatory?: boolean | undefined;
|
|
120
125
|
page: string;
|
|
121
126
|
componentType: "Loop";
|
|
@@ -131,14 +136,14 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
131
136
|
paginatedLoop: boolean;
|
|
132
137
|
value?: Record<string, unknown[]> | undefined;
|
|
133
138
|
} | {
|
|
134
|
-
getComponents: (x: number, y: number) => import("./fill-components").FilledLunaticComponentProps<"
|
|
139
|
+
getComponents: (x: number, y: number) => import("./fill-components").FilledLunaticComponentProps<"CheckboxOne" | "ConfirmationModal" | "Sequence" | "Subsequence" | "RosterForLoop" | "Loop" | "Table" | "InputNumber" | "Datepicker" | "CheckboxGroup" | "CheckboxBoolean" | "Radio" | "FilterDescription" | "Dropdown" | "PairwiseLinks" | "Roundabout" | "Suggester" | "Input" | "Textarea" | "ComponentSet" | "QuestionExplication">[];
|
|
135
140
|
label: import("react").ReactNode;
|
|
136
141
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
137
|
-
conditionFilter
|
|
142
|
+
conditionFilter?: import("react").ReactNode;
|
|
138
143
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
139
144
|
id: string;
|
|
140
145
|
bindingDependencies?: string[] | undefined;
|
|
141
|
-
hierarchy
|
|
146
|
+
hierarchy?: {
|
|
142
147
|
sequence: {
|
|
143
148
|
label: import("react").ReactNode;
|
|
144
149
|
id: string;
|
|
@@ -149,7 +154,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
149
154
|
id: string;
|
|
150
155
|
page: string;
|
|
151
156
|
} | undefined;
|
|
152
|
-
};
|
|
157
|
+
} | undefined;
|
|
153
158
|
mandatory?: boolean | undefined;
|
|
154
159
|
page: string;
|
|
155
160
|
componentType: "PairwiseLinks";
|
|
@@ -162,14 +167,621 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
162
167
|
};
|
|
163
168
|
components: import("../../type-source").ComponentType[];
|
|
164
169
|
} | {
|
|
165
|
-
body:
|
|
170
|
+
body: (({
|
|
171
|
+
label: import("react").ReactNode;
|
|
172
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
173
|
+
conditionFilter?: import("react").ReactNode;
|
|
174
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
175
|
+
id: string;
|
|
176
|
+
bindingDependencies?: string[] | undefined;
|
|
177
|
+
hierarchy?: {
|
|
178
|
+
sequence: {
|
|
179
|
+
label: import("react").ReactNode;
|
|
180
|
+
id: string;
|
|
181
|
+
page: string;
|
|
182
|
+
};
|
|
183
|
+
subSequence?: {
|
|
184
|
+
label: import("react").ReactNode;
|
|
185
|
+
id: string;
|
|
186
|
+
page: string;
|
|
187
|
+
} | undefined;
|
|
188
|
+
} | undefined;
|
|
189
|
+
mandatory?: boolean | undefined;
|
|
190
|
+
page: string;
|
|
191
|
+
componentType: "Sequence";
|
|
192
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
193
|
+
conditionFilter?: boolean | undefined;
|
|
194
|
+
}) | ({
|
|
195
|
+
label: import("react").ReactNode;
|
|
196
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
197
|
+
conditionFilter?: import("react").ReactNode;
|
|
198
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
199
|
+
id: string;
|
|
200
|
+
bindingDependencies?: string[] | undefined;
|
|
201
|
+
hierarchy?: {
|
|
202
|
+
sequence: {
|
|
203
|
+
label: import("react").ReactNode;
|
|
204
|
+
id: string;
|
|
205
|
+
page: string;
|
|
206
|
+
};
|
|
207
|
+
subSequence?: {
|
|
208
|
+
label: import("react").ReactNode;
|
|
209
|
+
id: string;
|
|
210
|
+
page: string;
|
|
211
|
+
} | undefined;
|
|
212
|
+
} | undefined;
|
|
213
|
+
mandatory?: boolean | undefined;
|
|
214
|
+
page: string;
|
|
215
|
+
componentType: "Subsequence";
|
|
216
|
+
gotoPage: string;
|
|
217
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
218
|
+
conditionFilter?: boolean | undefined;
|
|
219
|
+
}) | ({
|
|
220
|
+
label: import("react").ReactNode;
|
|
221
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
222
|
+
conditionFilter?: import("react").ReactNode;
|
|
223
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
224
|
+
id: string;
|
|
225
|
+
bindingDependencies?: string[] | undefined;
|
|
226
|
+
hierarchy?: {
|
|
227
|
+
sequence: {
|
|
228
|
+
label: import("react").ReactNode;
|
|
229
|
+
id: string;
|
|
230
|
+
page: string;
|
|
231
|
+
};
|
|
232
|
+
subSequence?: {
|
|
233
|
+
label: import("react").ReactNode;
|
|
234
|
+
id: string;
|
|
235
|
+
page: string;
|
|
236
|
+
} | undefined;
|
|
237
|
+
} | undefined;
|
|
238
|
+
mandatory?: boolean | undefined;
|
|
239
|
+
page: string;
|
|
240
|
+
componentType: "RosterForLoop";
|
|
241
|
+
components: import("../../type-source").ComponentType[];
|
|
242
|
+
lines: {
|
|
243
|
+
min: import("react").ReactNode;
|
|
244
|
+
max: import("react").ReactNode;
|
|
245
|
+
};
|
|
246
|
+
header: {
|
|
247
|
+
value: string;
|
|
248
|
+
label: string | import("../../type-source").LabelType;
|
|
249
|
+
options: {
|
|
250
|
+
value: string;
|
|
251
|
+
label: import("../../type-source").LabelType;
|
|
252
|
+
}[];
|
|
253
|
+
colspan?: number | undefined;
|
|
254
|
+
rowspan?: number | undefined;
|
|
255
|
+
}[];
|
|
256
|
+
body: ({
|
|
257
|
+
label: import("../../type-source").LabelType;
|
|
258
|
+
colspan?: number | undefined;
|
|
259
|
+
rowspan?: number | undefined;
|
|
260
|
+
} | (import("../../type-source").ComponentType & {
|
|
261
|
+
colspan?: number | undefined;
|
|
262
|
+
rowspan?: number | undefined;
|
|
263
|
+
}))[][];
|
|
264
|
+
positioning: "HORIZONTAL";
|
|
265
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
266
|
+
conditionFilter?: boolean | undefined;
|
|
267
|
+
}) | ({
|
|
268
|
+
label: import("react").ReactNode;
|
|
269
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
270
|
+
conditionFilter?: import("react").ReactNode;
|
|
271
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
272
|
+
id: string;
|
|
273
|
+
bindingDependencies?: string[] | undefined;
|
|
274
|
+
hierarchy?: {
|
|
275
|
+
sequence: {
|
|
276
|
+
label: import("react").ReactNode;
|
|
277
|
+
id: string;
|
|
278
|
+
page: string;
|
|
279
|
+
};
|
|
280
|
+
subSequence?: {
|
|
281
|
+
label: import("react").ReactNode;
|
|
282
|
+
id: string;
|
|
283
|
+
page: string;
|
|
284
|
+
} | undefined;
|
|
285
|
+
} | undefined;
|
|
286
|
+
mandatory?: boolean | undefined;
|
|
287
|
+
page: string;
|
|
288
|
+
componentType: "Loop";
|
|
289
|
+
loopDependencies: string[];
|
|
290
|
+
lines: {
|
|
291
|
+
min: import("react").ReactNode;
|
|
292
|
+
max: import("react").ReactNode;
|
|
293
|
+
};
|
|
294
|
+
components: import("../../type-source").ComponentType[];
|
|
295
|
+
iterations: import("react").ReactNode;
|
|
296
|
+
maxPage: string;
|
|
297
|
+
depth: number;
|
|
298
|
+
paginatedLoop: boolean;
|
|
299
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
300
|
+
conditionFilter?: boolean | undefined;
|
|
301
|
+
}) | ({
|
|
302
|
+
label: import("react").ReactNode;
|
|
303
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
304
|
+
conditionFilter?: import("react").ReactNode;
|
|
305
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
306
|
+
id: string;
|
|
307
|
+
bindingDependencies?: string[] | undefined;
|
|
308
|
+
hierarchy?: {
|
|
309
|
+
sequence: {
|
|
310
|
+
label: import("react").ReactNode;
|
|
311
|
+
id: string;
|
|
312
|
+
page: string;
|
|
313
|
+
};
|
|
314
|
+
subSequence?: {
|
|
315
|
+
label: import("react").ReactNode;
|
|
316
|
+
id: string;
|
|
317
|
+
page: string;
|
|
318
|
+
} | undefined;
|
|
319
|
+
} | undefined;
|
|
320
|
+
mandatory?: boolean | undefined;
|
|
321
|
+
page: string;
|
|
322
|
+
componentType: "Table";
|
|
323
|
+
header: {
|
|
324
|
+
value: string;
|
|
325
|
+
label: string | import("../../type-source").LabelType;
|
|
326
|
+
options: {
|
|
327
|
+
value: string;
|
|
328
|
+
label: import("../../type-source").LabelType;
|
|
329
|
+
}[];
|
|
330
|
+
colspan?: number | undefined;
|
|
331
|
+
rowspan?: number | undefined;
|
|
332
|
+
}[];
|
|
333
|
+
body: ({
|
|
334
|
+
label: import("../../type-source").LabelType;
|
|
335
|
+
colspan?: number | undefined;
|
|
336
|
+
rowspan?: number | undefined;
|
|
337
|
+
} | (import("../../type-source").ComponentType & {
|
|
338
|
+
colspan?: number | undefined;
|
|
339
|
+
rowspan?: number | undefined;
|
|
340
|
+
}))[][];
|
|
341
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
342
|
+
conditionFilter?: boolean | undefined;
|
|
343
|
+
}) | ({
|
|
344
|
+
label: import("react").ReactNode;
|
|
345
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
346
|
+
conditionFilter?: import("react").ReactNode;
|
|
347
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
348
|
+
id: string;
|
|
349
|
+
bindingDependencies?: string[] | undefined;
|
|
350
|
+
hierarchy?: {
|
|
351
|
+
sequence: {
|
|
352
|
+
label: import("react").ReactNode;
|
|
353
|
+
id: string;
|
|
354
|
+
page: string;
|
|
355
|
+
};
|
|
356
|
+
subSequence?: {
|
|
357
|
+
label: import("react").ReactNode;
|
|
358
|
+
id: string;
|
|
359
|
+
page: string;
|
|
360
|
+
} | undefined;
|
|
361
|
+
} | undefined;
|
|
362
|
+
mandatory?: boolean | undefined;
|
|
363
|
+
page: string;
|
|
364
|
+
componentType: "InputNumber";
|
|
365
|
+
unit: string;
|
|
366
|
+
response: {
|
|
367
|
+
name: string;
|
|
368
|
+
};
|
|
369
|
+
min?: number | undefined;
|
|
370
|
+
max?: number | undefined;
|
|
371
|
+
decimals?: number | undefined;
|
|
372
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
373
|
+
conditionFilter?: boolean | undefined;
|
|
374
|
+
}) | ({
|
|
375
|
+
label: import("react").ReactNode;
|
|
376
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
377
|
+
conditionFilter?: import("react").ReactNode;
|
|
378
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
379
|
+
id: string;
|
|
380
|
+
bindingDependencies?: string[] | undefined;
|
|
381
|
+
hierarchy?: {
|
|
382
|
+
sequence: {
|
|
383
|
+
label: import("react").ReactNode;
|
|
384
|
+
id: string;
|
|
385
|
+
page: string;
|
|
386
|
+
};
|
|
387
|
+
subSequence?: {
|
|
388
|
+
label: import("react").ReactNode;
|
|
389
|
+
id: string;
|
|
390
|
+
page: string;
|
|
391
|
+
} | undefined;
|
|
392
|
+
} | undefined;
|
|
393
|
+
mandatory?: boolean | undefined;
|
|
394
|
+
page: string;
|
|
395
|
+
componentType: "Datepicker";
|
|
396
|
+
dateFormat: "YYYY-MM-DD" | "YYYY" | "YYYY-MM";
|
|
397
|
+
response: {
|
|
398
|
+
name: string;
|
|
399
|
+
};
|
|
400
|
+
min?: string | undefined;
|
|
401
|
+
max?: string | undefined;
|
|
402
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
403
|
+
conditionFilter?: boolean | undefined;
|
|
404
|
+
}) | ({
|
|
405
|
+
label: import("react").ReactNode;
|
|
406
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
407
|
+
conditionFilter?: import("react").ReactNode;
|
|
408
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
409
|
+
id: string;
|
|
410
|
+
bindingDependencies?: string[] | undefined;
|
|
411
|
+
hierarchy?: {
|
|
412
|
+
sequence: {
|
|
413
|
+
label: import("react").ReactNode;
|
|
414
|
+
id: string;
|
|
415
|
+
page: string;
|
|
416
|
+
};
|
|
417
|
+
subSequence?: {
|
|
418
|
+
label: import("react").ReactNode;
|
|
419
|
+
id: string;
|
|
420
|
+
page: string;
|
|
421
|
+
} | undefined;
|
|
422
|
+
} | undefined;
|
|
423
|
+
mandatory?: boolean | undefined;
|
|
424
|
+
page: string;
|
|
425
|
+
componentType: "CheckboxGroup";
|
|
426
|
+
responses: {
|
|
427
|
+
label: import("../../type-source").LabelType;
|
|
428
|
+
response: import("../../type-source").ResponseType;
|
|
429
|
+
id: string;
|
|
430
|
+
}[];
|
|
431
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
432
|
+
conditionFilter?: boolean | undefined;
|
|
433
|
+
}) | ({
|
|
434
|
+
label: import("react").ReactNode;
|
|
435
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
436
|
+
conditionFilter?: import("react").ReactNode;
|
|
437
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
438
|
+
id: string;
|
|
439
|
+
bindingDependencies?: string[] | undefined;
|
|
440
|
+
hierarchy?: {
|
|
441
|
+
sequence: {
|
|
442
|
+
label: import("react").ReactNode;
|
|
443
|
+
id: string;
|
|
444
|
+
page: string;
|
|
445
|
+
};
|
|
446
|
+
subSequence?: {
|
|
447
|
+
label: import("react").ReactNode;
|
|
448
|
+
id: string;
|
|
449
|
+
page: string;
|
|
450
|
+
} | undefined;
|
|
451
|
+
} | undefined;
|
|
452
|
+
mandatory?: boolean | undefined;
|
|
453
|
+
page: string;
|
|
454
|
+
componentType: "CheckboxBoolean";
|
|
455
|
+
response: {
|
|
456
|
+
name: string;
|
|
457
|
+
};
|
|
458
|
+
missingResponse?: {
|
|
459
|
+
name: string;
|
|
460
|
+
} | undefined;
|
|
461
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
462
|
+
conditionFilter?: boolean | undefined;
|
|
463
|
+
}) | ({
|
|
464
|
+
label: import("react").ReactNode;
|
|
465
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
466
|
+
conditionFilter?: import("react").ReactNode;
|
|
467
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
468
|
+
id: string;
|
|
469
|
+
bindingDependencies?: string[] | undefined;
|
|
470
|
+
hierarchy?: {
|
|
471
|
+
sequence: {
|
|
472
|
+
label: import("react").ReactNode;
|
|
473
|
+
id: string;
|
|
474
|
+
page: string;
|
|
475
|
+
};
|
|
476
|
+
subSequence?: {
|
|
477
|
+
label: import("react").ReactNode;
|
|
478
|
+
id: string;
|
|
479
|
+
page: string;
|
|
480
|
+
} | undefined;
|
|
481
|
+
} | undefined;
|
|
482
|
+
mandatory?: boolean | undefined;
|
|
483
|
+
page: string;
|
|
484
|
+
componentType: "Radio";
|
|
485
|
+
options: {
|
|
486
|
+
value: string;
|
|
487
|
+
label: import("../../type-source").LabelType;
|
|
488
|
+
}[];
|
|
489
|
+
response: {
|
|
490
|
+
name: string;
|
|
491
|
+
};
|
|
492
|
+
missingResponse?: {
|
|
493
|
+
name: string;
|
|
494
|
+
} | undefined;
|
|
495
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
496
|
+
conditionFilter?: boolean | undefined;
|
|
497
|
+
}) | ({
|
|
498
|
+
label: import("react").ReactNode;
|
|
499
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
500
|
+
conditionFilter?: import("react").ReactNode;
|
|
501
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
502
|
+
id: string;
|
|
503
|
+
bindingDependencies?: string[] | undefined;
|
|
504
|
+
hierarchy?: {
|
|
505
|
+
sequence: {
|
|
506
|
+
label: import("react").ReactNode;
|
|
507
|
+
id: string;
|
|
508
|
+
page: string;
|
|
509
|
+
};
|
|
510
|
+
subSequence?: {
|
|
511
|
+
label: import("react").ReactNode;
|
|
512
|
+
id: string;
|
|
513
|
+
page: string;
|
|
514
|
+
} | undefined;
|
|
515
|
+
} | undefined;
|
|
516
|
+
mandatory?: boolean | undefined;
|
|
517
|
+
page: string;
|
|
518
|
+
componentType: "FilterDescription";
|
|
519
|
+
filterDescription: boolean;
|
|
520
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
521
|
+
conditionFilter?: boolean | undefined;
|
|
522
|
+
}) | ({
|
|
523
|
+
label: import("react").ReactNode;
|
|
524
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
525
|
+
conditionFilter?: import("react").ReactNode;
|
|
526
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
527
|
+
id: string;
|
|
528
|
+
bindingDependencies?: string[] | undefined;
|
|
529
|
+
hierarchy?: {
|
|
530
|
+
sequence: {
|
|
531
|
+
label: import("react").ReactNode;
|
|
532
|
+
id: string;
|
|
533
|
+
page: string;
|
|
534
|
+
};
|
|
535
|
+
subSequence?: {
|
|
536
|
+
label: import("react").ReactNode;
|
|
537
|
+
id: string;
|
|
538
|
+
page: string;
|
|
539
|
+
} | undefined;
|
|
540
|
+
} | undefined;
|
|
541
|
+
mandatory?: boolean | undefined;
|
|
542
|
+
page: string;
|
|
543
|
+
componentType: "Dropdown";
|
|
544
|
+
options: {
|
|
545
|
+
value: string;
|
|
546
|
+
label: import("../../type-source").LabelType;
|
|
547
|
+
}[];
|
|
548
|
+
response: {
|
|
549
|
+
name: string;
|
|
550
|
+
};
|
|
551
|
+
missingResponse?: {
|
|
552
|
+
name: string;
|
|
553
|
+
} | undefined;
|
|
554
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
555
|
+
conditionFilter?: boolean | undefined;
|
|
556
|
+
}) | ({
|
|
557
|
+
label: import("react").ReactNode;
|
|
558
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
559
|
+
conditionFilter?: import("react").ReactNode;
|
|
560
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
561
|
+
id: string;
|
|
562
|
+
bindingDependencies?: string[] | undefined;
|
|
563
|
+
hierarchy?: {
|
|
564
|
+
sequence: {
|
|
565
|
+
label: import("react").ReactNode;
|
|
566
|
+
id: string;
|
|
567
|
+
page: string;
|
|
568
|
+
};
|
|
569
|
+
subSequence?: {
|
|
570
|
+
label: import("react").ReactNode;
|
|
571
|
+
id: string;
|
|
572
|
+
page: string;
|
|
573
|
+
} | undefined;
|
|
574
|
+
} | undefined;
|
|
575
|
+
mandatory?: boolean | undefined;
|
|
576
|
+
page: string;
|
|
577
|
+
componentType: "PairwiseLinks";
|
|
578
|
+
xAxisIterations: import("react").ReactNode;
|
|
579
|
+
yAxisIterations: import("react").ReactNode;
|
|
580
|
+
symLinks: {
|
|
581
|
+
[x: string]: {
|
|
582
|
+
[x: string]: string;
|
|
583
|
+
};
|
|
584
|
+
};
|
|
585
|
+
components: import("../../type-source").ComponentType[];
|
|
586
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
587
|
+
conditionFilter?: boolean | undefined;
|
|
588
|
+
}) | ({
|
|
589
|
+
label: import("react").ReactNode;
|
|
590
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
591
|
+
conditionFilter?: import("react").ReactNode;
|
|
592
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
593
|
+
id: string;
|
|
594
|
+
bindingDependencies?: string[] | undefined;
|
|
595
|
+
hierarchy?: {
|
|
596
|
+
sequence: {
|
|
597
|
+
label: import("react").ReactNode;
|
|
598
|
+
id: string;
|
|
599
|
+
page: string;
|
|
600
|
+
};
|
|
601
|
+
subSequence?: {
|
|
602
|
+
label: import("react").ReactNode;
|
|
603
|
+
id: string;
|
|
604
|
+
page: string;
|
|
605
|
+
} | undefined;
|
|
606
|
+
} | undefined;
|
|
607
|
+
mandatory?: boolean | undefined;
|
|
608
|
+
page: string;
|
|
609
|
+
componentType: "Roundabout";
|
|
610
|
+
components: import("../../type-source").ComponentType[];
|
|
611
|
+
iterations: import("react").ReactNode;
|
|
612
|
+
locked: boolean;
|
|
613
|
+
expressions: {
|
|
614
|
+
[x: string]: import("react").ReactNode;
|
|
615
|
+
};
|
|
616
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
617
|
+
conditionFilter?: boolean | undefined;
|
|
618
|
+
}) | ({
|
|
619
|
+
label: import("react").ReactNode;
|
|
620
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
621
|
+
conditionFilter?: import("react").ReactNode;
|
|
622
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
623
|
+
id: string;
|
|
624
|
+
bindingDependencies?: string[] | undefined;
|
|
625
|
+
hierarchy?: {
|
|
626
|
+
sequence: {
|
|
627
|
+
label: import("react").ReactNode;
|
|
628
|
+
id: string;
|
|
629
|
+
page: string;
|
|
630
|
+
};
|
|
631
|
+
subSequence?: {
|
|
632
|
+
label: import("react").ReactNode;
|
|
633
|
+
id: string;
|
|
634
|
+
page: string;
|
|
635
|
+
} | undefined;
|
|
636
|
+
} | undefined;
|
|
637
|
+
mandatory?: boolean | undefined;
|
|
638
|
+
page: string;
|
|
639
|
+
componentType: "Suggester";
|
|
640
|
+
storeName: string;
|
|
641
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
642
|
+
conditionFilter?: boolean | undefined;
|
|
643
|
+
}) | ({
|
|
644
|
+
label: import("react").ReactNode;
|
|
645
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
646
|
+
conditionFilter?: import("react").ReactNode;
|
|
647
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
648
|
+
id: string;
|
|
649
|
+
bindingDependencies?: string[] | undefined;
|
|
650
|
+
hierarchy?: {
|
|
651
|
+
sequence: {
|
|
652
|
+
label: import("react").ReactNode;
|
|
653
|
+
id: string;
|
|
654
|
+
page: string;
|
|
655
|
+
};
|
|
656
|
+
subSequence?: {
|
|
657
|
+
label: import("react").ReactNode;
|
|
658
|
+
id: string;
|
|
659
|
+
page: string;
|
|
660
|
+
} | undefined;
|
|
661
|
+
} | undefined;
|
|
662
|
+
mandatory?: boolean | undefined;
|
|
663
|
+
page: string;
|
|
664
|
+
componentType: "Input" | "Textarea";
|
|
665
|
+
maxLength: number;
|
|
666
|
+
missingResponse?: {
|
|
667
|
+
name: string;
|
|
668
|
+
} | undefined;
|
|
669
|
+
response: {
|
|
670
|
+
name: string;
|
|
671
|
+
};
|
|
672
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
673
|
+
conditionFilter?: boolean | undefined;
|
|
674
|
+
}) | ({
|
|
675
|
+
label: import("react").ReactNode;
|
|
676
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
677
|
+
conditionFilter?: import("react").ReactNode;
|
|
678
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
679
|
+
id: string;
|
|
680
|
+
bindingDependencies?: string[] | undefined;
|
|
681
|
+
hierarchy?: {
|
|
682
|
+
sequence: {
|
|
683
|
+
label: import("react").ReactNode;
|
|
684
|
+
id: string;
|
|
685
|
+
page: string;
|
|
686
|
+
};
|
|
687
|
+
subSequence?: {
|
|
688
|
+
label: import("react").ReactNode;
|
|
689
|
+
id: string;
|
|
690
|
+
page: string;
|
|
691
|
+
} | undefined;
|
|
692
|
+
} | undefined;
|
|
693
|
+
mandatory?: boolean | undefined;
|
|
694
|
+
page: string;
|
|
695
|
+
componentType: "CheckboxOne";
|
|
696
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
697
|
+
conditionFilter?: boolean | undefined;
|
|
698
|
+
}) | ({
|
|
699
|
+
label: import("react").ReactNode;
|
|
700
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
701
|
+
conditionFilter?: import("react").ReactNode;
|
|
702
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
703
|
+
id: string;
|
|
704
|
+
bindingDependencies?: string[] | undefined;
|
|
705
|
+
hierarchy?: {
|
|
706
|
+
sequence: {
|
|
707
|
+
label: import("react").ReactNode;
|
|
708
|
+
id: string;
|
|
709
|
+
page: string;
|
|
710
|
+
};
|
|
711
|
+
subSequence?: {
|
|
712
|
+
label: import("react").ReactNode;
|
|
713
|
+
id: string;
|
|
714
|
+
page: string;
|
|
715
|
+
} | undefined;
|
|
716
|
+
} | undefined;
|
|
717
|
+
mandatory?: boolean | undefined;
|
|
718
|
+
page: string;
|
|
719
|
+
componentType: "ConfirmationModal";
|
|
720
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
721
|
+
conditionFilter?: boolean | undefined;
|
|
722
|
+
}) | ({
|
|
723
|
+
label: import("react").ReactNode;
|
|
724
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
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;
|
|
740
|
+
} | undefined;
|
|
741
|
+
mandatory?: boolean | undefined;
|
|
742
|
+
page: string;
|
|
743
|
+
componentType: "ComponentSet";
|
|
744
|
+
components: import("../../type-source").ComponentType[];
|
|
745
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
746
|
+
conditionFilter?: boolean | undefined;
|
|
747
|
+
}) | ({
|
|
748
|
+
label: import("react").ReactNode;
|
|
749
|
+
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
750
|
+
conditionFilter?: import("react").ReactNode;
|
|
751
|
+
controls?: import("../../type-source").ControlType[] | undefined;
|
|
752
|
+
id: string;
|
|
753
|
+
bindingDependencies?: string[] | undefined;
|
|
754
|
+
hierarchy?: {
|
|
755
|
+
sequence: {
|
|
756
|
+
label: import("react").ReactNode;
|
|
757
|
+
id: string;
|
|
758
|
+
page: string;
|
|
759
|
+
};
|
|
760
|
+
subSequence?: {
|
|
761
|
+
label: import("react").ReactNode;
|
|
762
|
+
id: string;
|
|
763
|
+
page: string;
|
|
764
|
+
} | undefined;
|
|
765
|
+
} | undefined;
|
|
766
|
+
mandatory?: boolean | undefined;
|
|
767
|
+
page: string;
|
|
768
|
+
componentType: "QuestionExplication";
|
|
769
|
+
description: string;
|
|
770
|
+
bgColor?: string | undefined;
|
|
771
|
+
} & import("./fill-management").FilledProps & import("./fill-component-value").FilledProps & import("./fill-missing-response").FilledProps & import("./fill-from-state").FilledProps & import("./fill-pagination").FilledProps & {
|
|
772
|
+
conditionFilter?: boolean | undefined;
|
|
773
|
+
}) | {
|
|
774
|
+
label: unknown;
|
|
775
|
+
colspan?: number | undefined;
|
|
776
|
+
rowspan?: number | undefined;
|
|
777
|
+
})[][];
|
|
166
778
|
label: import("react").ReactNode;
|
|
167
779
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
168
|
-
conditionFilter
|
|
780
|
+
conditionFilter?: import("react").ReactNode;
|
|
169
781
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
170
782
|
id: string;
|
|
171
783
|
bindingDependencies?: string[] | undefined;
|
|
172
|
-
hierarchy
|
|
784
|
+
hierarchy?: {
|
|
173
785
|
sequence: {
|
|
174
786
|
label: import("react").ReactNode;
|
|
175
787
|
id: string;
|
|
@@ -180,14 +792,10 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
180
792
|
id: string;
|
|
181
793
|
page: string;
|
|
182
794
|
} | undefined;
|
|
183
|
-
};
|
|
795
|
+
} | undefined;
|
|
184
796
|
mandatory?: boolean | undefined;
|
|
185
797
|
page: string;
|
|
186
798
|
componentType: "Table";
|
|
187
|
-
lines: {
|
|
188
|
-
min: import("react").ReactNode;
|
|
189
|
-
max: import("react").ReactNode;
|
|
190
|
-
};
|
|
191
799
|
header: {
|
|
192
800
|
value: string;
|
|
193
801
|
label: string | import("../../type-source").LabelType;
|
|
@@ -198,15 +806,14 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
198
806
|
colspan?: number | undefined;
|
|
199
807
|
rowspan?: number | undefined;
|
|
200
808
|
}[];
|
|
201
|
-
positioning: "HORIZONTAL";
|
|
202
809
|
} | {
|
|
203
810
|
label: import("react").ReactNode;
|
|
204
811
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
205
|
-
conditionFilter
|
|
812
|
+
conditionFilter?: import("react").ReactNode;
|
|
206
813
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
207
814
|
id: string;
|
|
208
815
|
bindingDependencies?: string[] | undefined;
|
|
209
|
-
hierarchy
|
|
816
|
+
hierarchy?: {
|
|
210
817
|
sequence: {
|
|
211
818
|
label: import("react").ReactNode;
|
|
212
819
|
id: string;
|
|
@@ -217,18 +824,18 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
217
824
|
id: string;
|
|
218
825
|
page: string;
|
|
219
826
|
} | undefined;
|
|
220
|
-
};
|
|
827
|
+
} | undefined;
|
|
221
828
|
mandatory?: boolean | undefined;
|
|
222
829
|
page: string;
|
|
223
830
|
componentType: "Sequence";
|
|
224
831
|
} | {
|
|
225
832
|
label: import("react").ReactNode;
|
|
226
833
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
227
|
-
conditionFilter
|
|
834
|
+
conditionFilter?: import("react").ReactNode;
|
|
228
835
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
229
836
|
id: string;
|
|
230
837
|
bindingDependencies?: string[] | undefined;
|
|
231
|
-
hierarchy
|
|
838
|
+
hierarchy?: {
|
|
232
839
|
sequence: {
|
|
233
840
|
label: import("react").ReactNode;
|
|
234
841
|
id: string;
|
|
@@ -239,7 +846,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
239
846
|
id: string;
|
|
240
847
|
page: string;
|
|
241
848
|
} | undefined;
|
|
242
|
-
};
|
|
849
|
+
} | undefined;
|
|
243
850
|
mandatory?: boolean | undefined;
|
|
244
851
|
page: string;
|
|
245
852
|
componentType: "Subsequence";
|
|
@@ -247,11 +854,11 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
247
854
|
} | {
|
|
248
855
|
label: import("react").ReactNode;
|
|
249
856
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
250
|
-
conditionFilter
|
|
857
|
+
conditionFilter?: import("react").ReactNode;
|
|
251
858
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
252
859
|
id: string;
|
|
253
860
|
bindingDependencies?: string[] | undefined;
|
|
254
|
-
hierarchy
|
|
861
|
+
hierarchy?: {
|
|
255
862
|
sequence: {
|
|
256
863
|
label: import("react").ReactNode;
|
|
257
864
|
id: string;
|
|
@@ -262,7 +869,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
262
869
|
id: string;
|
|
263
870
|
page: string;
|
|
264
871
|
} | undefined;
|
|
265
|
-
};
|
|
872
|
+
} | undefined;
|
|
266
873
|
mandatory?: boolean | undefined;
|
|
267
874
|
page: string;
|
|
268
875
|
componentType: "InputNumber";
|
|
@@ -276,11 +883,11 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
276
883
|
} | {
|
|
277
884
|
label: import("react").ReactNode;
|
|
278
885
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
279
|
-
conditionFilter
|
|
886
|
+
conditionFilter?: import("react").ReactNode;
|
|
280
887
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
281
888
|
id: string;
|
|
282
889
|
bindingDependencies?: string[] | undefined;
|
|
283
|
-
hierarchy
|
|
890
|
+
hierarchy?: {
|
|
284
891
|
sequence: {
|
|
285
892
|
label: import("react").ReactNode;
|
|
286
893
|
id: string;
|
|
@@ -291,11 +898,11 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
291
898
|
id: string;
|
|
292
899
|
page: string;
|
|
293
900
|
} | undefined;
|
|
294
|
-
};
|
|
901
|
+
} | undefined;
|
|
295
902
|
mandatory?: boolean | undefined;
|
|
296
903
|
page: string;
|
|
297
904
|
componentType: "Datepicker";
|
|
298
|
-
dateFormat:
|
|
905
|
+
dateFormat: "YYYY-MM-DD" | "YYYY" | "YYYY-MM";
|
|
299
906
|
response: {
|
|
300
907
|
name: string;
|
|
301
908
|
};
|
|
@@ -304,11 +911,11 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
304
911
|
} | {
|
|
305
912
|
label: import("react").ReactNode;
|
|
306
913
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
307
|
-
conditionFilter
|
|
914
|
+
conditionFilter?: import("react").ReactNode;
|
|
308
915
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
309
916
|
id: string;
|
|
310
917
|
bindingDependencies?: string[] | undefined;
|
|
311
|
-
hierarchy
|
|
918
|
+
hierarchy?: {
|
|
312
919
|
sequence: {
|
|
313
920
|
label: import("react").ReactNode;
|
|
314
921
|
id: string;
|
|
@@ -319,7 +926,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
319
926
|
id: string;
|
|
320
927
|
page: string;
|
|
321
928
|
} | undefined;
|
|
322
|
-
};
|
|
929
|
+
} | undefined;
|
|
323
930
|
mandatory?: boolean | undefined;
|
|
324
931
|
page: string;
|
|
325
932
|
componentType: "CheckboxGroup";
|
|
@@ -331,11 +938,11 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
331
938
|
} | {
|
|
332
939
|
label: import("react").ReactNode;
|
|
333
940
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
334
|
-
conditionFilter
|
|
941
|
+
conditionFilter?: import("react").ReactNode;
|
|
335
942
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
336
943
|
id: string;
|
|
337
944
|
bindingDependencies?: string[] | undefined;
|
|
338
|
-
hierarchy
|
|
945
|
+
hierarchy?: {
|
|
339
946
|
sequence: {
|
|
340
947
|
label: import("react").ReactNode;
|
|
341
948
|
id: string;
|
|
@@ -346,7 +953,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
346
953
|
id: string;
|
|
347
954
|
page: string;
|
|
348
955
|
} | undefined;
|
|
349
|
-
};
|
|
956
|
+
} | undefined;
|
|
350
957
|
mandatory?: boolean | undefined;
|
|
351
958
|
page: string;
|
|
352
959
|
componentType: "CheckboxBoolean";
|
|
@@ -359,11 +966,11 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
359
966
|
} | {
|
|
360
967
|
label: import("react").ReactNode;
|
|
361
968
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
362
|
-
conditionFilter
|
|
969
|
+
conditionFilter?: import("react").ReactNode;
|
|
363
970
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
364
971
|
id: string;
|
|
365
972
|
bindingDependencies?: string[] | undefined;
|
|
366
|
-
hierarchy
|
|
973
|
+
hierarchy?: {
|
|
367
974
|
sequence: {
|
|
368
975
|
label: import("react").ReactNode;
|
|
369
976
|
id: string;
|
|
@@ -374,7 +981,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
374
981
|
id: string;
|
|
375
982
|
page: string;
|
|
376
983
|
} | undefined;
|
|
377
|
-
};
|
|
984
|
+
} | undefined;
|
|
378
985
|
mandatory?: boolean | undefined;
|
|
379
986
|
page: string;
|
|
380
987
|
componentType: "Radio";
|
|
@@ -391,11 +998,11 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
391
998
|
} | {
|
|
392
999
|
label: import("react").ReactNode;
|
|
393
1000
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
394
|
-
conditionFilter
|
|
1001
|
+
conditionFilter?: import("react").ReactNode;
|
|
395
1002
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
396
1003
|
id: string;
|
|
397
1004
|
bindingDependencies?: string[] | undefined;
|
|
398
|
-
hierarchy
|
|
1005
|
+
hierarchy?: {
|
|
399
1006
|
sequence: {
|
|
400
1007
|
label: import("react").ReactNode;
|
|
401
1008
|
id: string;
|
|
@@ -406,7 +1013,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
406
1013
|
id: string;
|
|
407
1014
|
page: string;
|
|
408
1015
|
} | undefined;
|
|
409
|
-
};
|
|
1016
|
+
} | undefined;
|
|
410
1017
|
mandatory?: boolean | undefined;
|
|
411
1018
|
page: string;
|
|
412
1019
|
componentType: "FilterDescription";
|
|
@@ -414,11 +1021,11 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
414
1021
|
} | {
|
|
415
1022
|
label: import("react").ReactNode;
|
|
416
1023
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
417
|
-
conditionFilter
|
|
1024
|
+
conditionFilter?: import("react").ReactNode;
|
|
418
1025
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
419
1026
|
id: string;
|
|
420
1027
|
bindingDependencies?: string[] | undefined;
|
|
421
|
-
hierarchy
|
|
1028
|
+
hierarchy?: {
|
|
422
1029
|
sequence: {
|
|
423
1030
|
label: import("react").ReactNode;
|
|
424
1031
|
id: string;
|
|
@@ -429,7 +1036,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
429
1036
|
id: string;
|
|
430
1037
|
page: string;
|
|
431
1038
|
} | undefined;
|
|
432
|
-
};
|
|
1039
|
+
} | undefined;
|
|
433
1040
|
mandatory?: boolean | undefined;
|
|
434
1041
|
page: string;
|
|
435
1042
|
componentType: "Dropdown";
|
|
@@ -446,11 +1053,11 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
446
1053
|
} | {
|
|
447
1054
|
label: import("react").ReactNode;
|
|
448
1055
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
449
|
-
conditionFilter
|
|
1056
|
+
conditionFilter?: import("react").ReactNode;
|
|
450
1057
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
451
1058
|
id: string;
|
|
452
1059
|
bindingDependencies?: string[] | undefined;
|
|
453
|
-
hierarchy
|
|
1060
|
+
hierarchy?: {
|
|
454
1061
|
sequence: {
|
|
455
1062
|
label: import("react").ReactNode;
|
|
456
1063
|
id: string;
|
|
@@ -461,7 +1068,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
461
1068
|
id: string;
|
|
462
1069
|
page: string;
|
|
463
1070
|
} | undefined;
|
|
464
|
-
};
|
|
1071
|
+
} | undefined;
|
|
465
1072
|
mandatory?: boolean | undefined;
|
|
466
1073
|
page: string;
|
|
467
1074
|
componentType: "Suggester";
|
|
@@ -469,11 +1076,11 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
469
1076
|
} | {
|
|
470
1077
|
label: import("react").ReactNode;
|
|
471
1078
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
472
|
-
conditionFilter
|
|
1079
|
+
conditionFilter?: import("react").ReactNode;
|
|
473
1080
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
474
1081
|
id: string;
|
|
475
1082
|
bindingDependencies?: string[] | undefined;
|
|
476
|
-
hierarchy
|
|
1083
|
+
hierarchy?: {
|
|
477
1084
|
sequence: {
|
|
478
1085
|
label: import("react").ReactNode;
|
|
479
1086
|
id: string;
|
|
@@ -484,7 +1091,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
484
1091
|
id: string;
|
|
485
1092
|
page: string;
|
|
486
1093
|
} | undefined;
|
|
487
|
-
};
|
|
1094
|
+
} | undefined;
|
|
488
1095
|
mandatory?: boolean | undefined;
|
|
489
1096
|
page: string;
|
|
490
1097
|
componentType: "Input" | "Textarea";
|
|
@@ -498,11 +1105,11 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
498
1105
|
} | {
|
|
499
1106
|
label: import("react").ReactNode;
|
|
500
1107
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
501
|
-
conditionFilter
|
|
1108
|
+
conditionFilter?: import("react").ReactNode;
|
|
502
1109
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
503
1110
|
id: string;
|
|
504
1111
|
bindingDependencies?: string[] | undefined;
|
|
505
|
-
hierarchy
|
|
1112
|
+
hierarchy?: {
|
|
506
1113
|
sequence: {
|
|
507
1114
|
label: import("react").ReactNode;
|
|
508
1115
|
id: string;
|
|
@@ -513,18 +1120,18 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
513
1120
|
id: string;
|
|
514
1121
|
page: string;
|
|
515
1122
|
} | undefined;
|
|
516
|
-
};
|
|
1123
|
+
} | undefined;
|
|
517
1124
|
mandatory?: boolean | undefined;
|
|
518
1125
|
page: string;
|
|
519
1126
|
componentType: "CheckboxOne";
|
|
520
1127
|
} | {
|
|
521
1128
|
label: import("react").ReactNode;
|
|
522
1129
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
523
|
-
conditionFilter
|
|
1130
|
+
conditionFilter?: import("react").ReactNode;
|
|
524
1131
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
525
1132
|
id: string;
|
|
526
1133
|
bindingDependencies?: string[] | undefined;
|
|
527
|
-
hierarchy
|
|
1134
|
+
hierarchy?: {
|
|
528
1135
|
sequence: {
|
|
529
1136
|
label: import("react").ReactNode;
|
|
530
1137
|
id: string;
|
|
@@ -535,18 +1142,18 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
535
1142
|
id: string;
|
|
536
1143
|
page: string;
|
|
537
1144
|
} | undefined;
|
|
538
|
-
};
|
|
1145
|
+
} | undefined;
|
|
539
1146
|
mandatory?: boolean | undefined;
|
|
540
1147
|
page: string;
|
|
541
1148
|
componentType: "ConfirmationModal";
|
|
542
1149
|
} | {
|
|
543
1150
|
label: import("react").ReactNode;
|
|
544
1151
|
declarations?: import("../../type-source").DeclarationType[] | undefined;
|
|
545
|
-
conditionFilter
|
|
1152
|
+
conditionFilter?: import("react").ReactNode;
|
|
546
1153
|
controls?: import("../../type-source").ControlType[] | undefined;
|
|
547
1154
|
id: string;
|
|
548
1155
|
bindingDependencies?: string[] | undefined;
|
|
549
|
-
hierarchy
|
|
1156
|
+
hierarchy?: {
|
|
550
1157
|
sequence: {
|
|
551
1158
|
label: import("react").ReactNode;
|
|
552
1159
|
id: string;
|
|
@@ -557,7 +1164,7 @@ declare function fillSpecificExpressions(component: DeepTranslateExpression<Luna
|
|
|
557
1164
|
id: string;
|
|
558
1165
|
page: string;
|
|
559
1166
|
} | undefined;
|
|
560
|
-
};
|
|
1167
|
+
} | undefined;
|
|
561
1168
|
mandatory?: boolean | undefined;
|
|
562
1169
|
page: string;
|
|
563
1170
|
componentType: "QuestionExplication";
|