@inseefr/lunatic 2.6.3-rc.1 → 2.6.3
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.md +49 -3
- package/lib/components/checkbox/checkbox-boolean/html/checkbox-boolean.js +3 -3
- package/lib/components/checkbox/checkbox-boolean/lunatic-checkbox-boolean.js +7 -1
- package/lib/components/checkbox/checkbox-group/checkbox-group-content.js +0 -2
- package/lib/components/checkbox/checkbox-group/html/checkbox-group-content.js +4 -2
- package/lib/components/checkbox/checkbox-group/html/checkbox-group.js +3 -3
- package/lib/components/checkbox/checkbox-group/lunatic-checkbox-group.js +2 -1
- package/lib/components/checkbox/checkbox-one/lunatic-checkbox-one.js +2 -1
- package/lib/components/checkbox/commons/checkbox-option.js +3 -1
- package/lib/components/commons/components/combo-box/combo-box-container.js +1 -2
- package/lib/components/commons/components/combo-box/combo-box.js +2 -2
- package/lib/components/commons/components/combo-box/selection/LabelOrInput.js +3 -1
- package/lib/components/commons/components/combo-box/selection/input.js +3 -1
- package/lib/components/commons/components/combo-box/selection/selection.js +3 -1
- package/lib/components/commons/components/errors/errors.js +12 -10
- package/lib/components/commons/components/errors/errors.spec.js +6 -6
- package/lib/components/component-set/html/__snapshots__/component-set.spec.tsx.snap +2 -0
- package/lib/components/component-set/html/component-set.js +2 -2
- package/lib/components/datepicker/html/__snapshots__/datepicker.spec.tsx.snap +2 -0
- package/lib/components/datepicker/html/datepicker-input.js +4 -2
- package/lib/components/datepicker/html/datepicker.js +3 -3
- package/lib/components/datepicker/lunatic-datepicker.js +2 -1
- package/lib/components/dropdown/lunatic-dropdown.js +2 -1
- package/lib/components/index.js +4 -4
- package/lib/components/input/html/__snapshots__/input.spec.tsx.snap +2 -0
- package/lib/components/input/html/input.js +3 -3
- package/lib/components/input/lunatic-input.js +2 -1
- package/lib/components/input-number/html/__snapshots__/input-number.spec.tsx.snap +2 -2
- package/lib/components/input-number/html/input-number-thousand.js +4 -17
- package/lib/components/input-number/html/input-number.js +3 -5
- package/lib/components/input-number/lunatic-input-number.js +2 -3
- package/lib/components/loop/block-for-loop.js +10 -6
- package/lib/components/loop/roster-for-loop/roster-for-loop.js +35 -27
- package/lib/components/loop/utils/get-initial-nb-rows.js +17 -0
- package/lib/components/lunatic-components.js +7 -27
- package/lib/components/pairwise-links/index.js +13 -0
- package/lib/components/pairwise-links/orchestrator.js +71 -0
- package/lib/components/pairwise-links/pairwise-links.js +30 -27
- package/lib/components/pairwise-links/row.js +74 -0
- package/lib/components/radio/html/radio-group-content.js +4 -2
- package/lib/components/radio/html/radio-group.js +3 -3
- package/lib/components/radio/html/radio-option.js +3 -1
- package/lib/components/radio/lunatic-radio-group.js +2 -1
- package/lib/components/suggester/find-best-label/find-best-label.js +6 -6
- package/lib/components/suggester/idb-suggester/idb-suggester.js +4 -3
- package/lib/components/suggester/lunatic-suggester.js +7 -4
- package/lib/components/suggester/searching/create-searching.js +20 -39
- package/lib/components/switch/html/switch.js +2 -2
- package/lib/components/switch/lunatic-switch.js +2 -1
- package/lib/components/table/cell.js +89 -0
- package/lib/components/table/{table-header.js → header.js} +5 -3
- package/lib/components/table/index.js +13 -0
- package/lib/components/table/lunatic-table.js +15 -24
- package/lib/components/table/row.js +40 -0
- package/lib/components/table/table-orchestrator.js +35 -0
- package/lib/components/textarea/html/__snapshots__/textarea.spec.tsx.snap +2 -0
- package/lib/components/textarea/html/textarea.js +6 -4
- package/lib/components/textarea/lunatic-textarea.js +6 -3
- package/lib/hooks/use-auto-focus.js +26 -0
- package/lib/src/components/checkbox/checkbox-boolean/html/checkbox-boolean.d.ts +1 -1
- package/lib/src/components/checkbox/checkbox-group/html/checkbox-group-content.d.ts +2 -1
- package/lib/src/components/checkbox/checkbox-group/html/checkbox-group.d.ts +1 -1
- package/lib/src/components/checkbox/commons/checkbox-option.d.ts +1 -0
- package/lib/src/components/commons/components/combo-box/combo-box-container.d.ts +2 -2
- package/lib/src/components/commons/components/combo-box/combo-box.d.ts +2 -2
- package/lib/src/components/commons/components/combo-box/combo-box.stories.d.ts +4 -6
- package/lib/src/components/commons/components/combo-box/selection/LabelOrInput.d.ts +1 -0
- package/lib/src/components/commons/components/combo-box/selection/input.d.ts +1 -0
- package/lib/src/components/commons/components/combo-box/selection/selection.d.ts +2 -1
- package/lib/src/components/commons/components/errors/errors.d.ts +6 -3
- package/lib/src/components/datepicker/html/datepicker-input.d.ts +2 -1
- package/lib/src/components/datepicker/html/datepicker.d.ts +1 -1
- package/lib/src/components/dropdown/html/dropdown-writable/dropdown-writable.d.ts +1 -1
- package/lib/src/components/dropdown/html/dropdown.d.ts +3 -1
- package/lib/src/components/index.d.ts +2 -2
- package/lib/src/components/input/html/input.d.ts +2 -2
- package/lib/src/components/input-number/html/input-number-thousand.d.ts +2 -2
- package/lib/src/components/input-number/html/input-number.d.ts +2 -3
- package/lib/src/components/loop/block-for-loop.d.ts +4 -3
- package/lib/src/components/loop/roster-for-loop/roster-for-loop.d.ts +4 -3
- package/lib/src/components/loop/utils/get-initial-nb-rows.d.ts +4 -0
- package/lib/src/components/lunatic-components.d.ts +3 -5
- package/lib/src/components/pairwise-links/index.d.ts +1 -0
- package/lib/src/components/pairwise-links/orchestrator.d.ts +6 -0
- package/lib/src/components/pairwise-links/pairwise-links.d.ts +2 -1
- package/lib/src/components/pairwise-links/row.d.ts +7 -0
- package/lib/src/components/radio/html/radio-group-content.d.ts +2 -1
- package/lib/src/components/radio/html/radio-group.d.ts +1 -1
- package/lib/src/components/radio/html/radio-option.d.ts +1 -0
- package/lib/src/components/suggester/find-best-label/find-best-label.d.ts +1 -1
- package/lib/src/components/suggester/html/suggester.d.ts +1 -1
- package/lib/src/components/suggester/idb-suggester/idb-suggester.d.ts +5 -2
- package/lib/src/components/suggester/lunatic-suggester.d.ts +1 -1
- package/lib/src/components/suggester/searching/create-searching.d.ts +1 -1
- package/lib/src/components/switch/html/switch.d.ts +1 -1
- package/lib/src/components/table/cell.d.ts +19 -0
- package/lib/src/components/table/{table-header.d.ts → header.d.ts} +2 -2
- package/lib/src/components/table/index.d.ts +1 -0
- package/lib/src/components/table/lunatic-table.d.ts +1 -1
- package/lib/src/components/table/row.d.ts +18 -0
- package/lib/src/components/table/table-orchestrator.d.ts +4 -0
- package/lib/src/components/textarea/html/textarea.d.ts +3 -2
- package/lib/src/components/type.d.ts +9 -7
- package/lib/src/hooks/use-auto-focus.d.ts +6 -0
- package/lib/src/use-lunatic/actions.d.ts +19 -3
- package/lib/src/use-lunatic/commons/calculated-variables.d.ts +8 -0
- package/lib/src/use-lunatic/commons/compile-controls.d.ts +2 -3
- package/lib/src/use-lunatic/commons/execute-expression/create-execute-expression.d.ts +9 -0
- package/lib/src/use-lunatic/commons/execute-expression/create-memoizer.d.ts +8 -0
- package/lib/src/use-lunatic/commons/execute-expression/create-refresh-calculated.d.ts +24 -0
- package/lib/src/use-lunatic/commons/execute-expression/execute-expression.d.ts +11 -0
- package/lib/src/use-lunatic/commons/execute-expression/get-expressions-variables.d.ts +7 -0
- package/lib/src/use-lunatic/commons/execute-expression/get-expressions-variables.spec.d.ts +1 -0
- package/lib/src/use-lunatic/commons/execute-expression/get-safety-expression.d.ts +6 -0
- package/lib/src/use-lunatic/commons/execute-expression/index.d.ts +1 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-component-required.d.ts +418 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-component-value.d.ts +3 -2
- package/lib/src/use-lunatic/commons/fill-components/fill-components.d.ts +0 -6
- package/lib/src/use-lunatic/commons/fill-components/fill-from-state.d.ts +142 -107
- package/lib/src/use-lunatic/commons/fill-components/fill-specific-expression.d.ts +89 -53
- package/lib/src/use-lunatic/commons/get-compatible-vtl-expression.d.ts +0 -1
- package/lib/src/use-lunatic/commons/get-component-value/get-component-value.d.ts +6 -0
- package/lib/src/use-lunatic/commons/get-component-value/index.d.ts +1 -0
- package/lib/src/use-lunatic/commons/get-data.d.ts +26 -0
- package/lib/src/use-lunatic/commons/index.d.ts +3 -0
- package/lib/src/use-lunatic/reducer/overview/overview-on-init.d.ts +9 -10
- package/lib/src/use-lunatic/reducer/reduce-handle-change/index.d.ts +1 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.d.ts +7 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.spec.d.ts +1 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-handle-change.d.ts +4 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-links-variable.d.ts +15 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-missing.d.ts +7 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-resizing.d.ts +4 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-variables-array.d.ts +14 -0
- package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-variables-simple.d.ts +9 -0
- package/lib/src/use-lunatic/reducer/reduce-on-init.d.ts +12 -1
- package/lib/src/use-lunatic/reducer/reduce-on-init.spec.d.ts +1 -0
- package/lib/src/use-lunatic/type-source.d.ts +21 -7
- package/lib/src/use-lunatic/type.d.ts +12 -13
- package/lib/src/use-lunatic/use-lunatic.d.ts +62 -36
- package/lib/src/use-lunatic/use-suggesters.d.ts +2 -1
- package/lib/src/utils/array.d.ts +1 -6
- package/lib/src/utils/number.d.ts +0 -4
- package/lib/src/utils/suggester-workers/append-to-index/create-append-task.d.ts +1 -1
- package/lib/src/utils/suggester-workers/worker-path.d.ts +6 -0
- package/lib/src/utils/vtl/dataset-builder.d.ts +5 -0
- package/lib/src/utils/vtl/index.d.ts +1 -0
- package/lib/stories/behaviour/cleaning/source.json +151 -0
- package/lib/stories/behaviour/cleaning/test.stories.js +84 -0
- package/lib/stories/{questionnaires-test → behaviour}/controls/controls.stories.js +5 -5
- package/lib/stories/{questionnaires-test → behaviour/others}/test.stories.js +7 -7
- package/lib/stories/{paste-questionnaire → behaviour/paste}/test.stories.js +3 -3
- package/lib/stories/{resizing-questionnaire → behaviour/resizing}/test.stories.js +3 -3
- package/lib/use-lunatic/actions.js +3 -3
- package/lib/use-lunatic/commons/calculated-variables.js +104 -0
- package/lib/use-lunatic/commons/compile-controls.js +5 -3
- package/lib/use-lunatic/commons/execute-condition-filter.js +9 -1
- package/lib/use-lunatic/commons/execute-expression/create-execute-expression.js +233 -0
- package/lib/use-lunatic/commons/execute-expression/create-execute-expression.spec.js +155 -0
- package/lib/use-lunatic/commons/execute-expression/create-memoizer.js +63 -0
- package/lib/use-lunatic/commons/execute-expression/create-refresh-calculated.js +149 -0
- package/lib/use-lunatic/commons/execute-expression/create-refresh-calculated.spec.js +130 -0
- package/lib/use-lunatic/commons/execute-expression/execute-expression.js +90 -0
- package/lib/use-lunatic/commons/execute-expression/execute-expression.spec.js +38 -0
- package/lib/use-lunatic/commons/execute-expression/get-expressions-variables.js +40 -0
- package/lib/use-lunatic/commons/execute-expression/get-expressions-variables.spec.js +31 -0
- package/lib/use-lunatic/commons/{fill-components/fill-iterations.js → execute-expression/get-safety-expression.js} +20 -30
- package/lib/use-lunatic/commons/execute-expression/index.js +13 -0
- package/lib/use-lunatic/commons/fill-components/fill-component-expressions.js +3 -2
- package/lib/use-lunatic/{reducer/reduce-handle-change.js → commons/fill-components/fill-component-required.js} +8 -14
- package/lib/use-lunatic/commons/fill-components/fill-component-value.js +7 -21
- package/lib/use-lunatic/commons/fill-components/fill-components.js +4 -5
- package/lib/use-lunatic/commons/fill-components/fill-from-state.js +2 -0
- package/lib/use-lunatic/commons/fill-components/fill-missing-response.js +13 -6
- package/lib/use-lunatic/commons/fill-components/fill-specific-expression.js +5 -58
- package/lib/use-lunatic/commons/get-compatible-vtl-expression.js +0 -1
- package/lib/use-lunatic/commons/get-component-value/get-component-value.js +174 -0
- package/lib/use-lunatic/commons/get-component-value/index.js +13 -0
- package/lib/use-lunatic/commons/get-data.js +80 -0
- package/lib/use-lunatic/commons/index.js +21 -0
- package/lib/use-lunatic/initial-state.js +4 -6
- package/lib/use-lunatic/reducer/overview/overview-on-change.js +1 -1
- package/lib/use-lunatic/reducer/reduce-handle-change/__mocks__/source-cleaning-loop.json +792 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/index.js +13 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.js +78 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.spec.js +46 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-handle-change.js +115 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-links-variable.js +89 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-missing.js +88 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-resizing.js +119 -0
- package/lib/use-lunatic/{commons/variables/get-questionnaire-data.js → reducer/reduce-handle-change/reduce-variables-array.js} +32 -53
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-variables-simple.js +28 -0
- package/lib/use-lunatic/reducer/reduce-on-init.js +184 -90
- package/lib/use-lunatic/reducer/reduce-on-init.spec.js +17 -0
- package/lib/use-lunatic/reducer/reducer.js +2 -2
- package/lib/use-lunatic/reducer/resolve-component-controls/resolve-simple-control.js +4 -2
- package/lib/use-lunatic/use-lunatic.js +29 -22
- package/lib/use-lunatic/use-lunatic.test.js +36 -133
- package/lib/use-lunatic/use-suggesters.js +4 -3
- package/lib/utils/array.js +6 -57
- package/lib/utils/get-component-value.js +9 -3
- package/lib/utils/number.js +1 -13
- package/lib/utils/suggester-workers/append-to-index/create-append-task.js +4 -3
- package/lib/utils/suggester-workers/worker-path.js +29 -0
- package/lib/utils/vtl/dataset-builder.js +27 -0
- package/lib/utils/vtl/index.js +13 -0
- package/package.json +15 -10
- package/scripts/build/add-workers-to-public.js +44 -0
- package/scripts/build/workers-paths.js +44 -0
- package/workers-release/lunatic-append-worker-0.3.0-experimental.js +2 -0
- package/workers-release/lunatic-append-worker-0.3.0-experimental.js.LICENSE.txt +34 -0
- package/workers-release/lunatic-label-worker-0.3.0-experimental.js +2 -0
- package/workers-release/lunatic-label-worker-0.3.0-experimental.js.LICENSE.txt +13 -0
- package/workers-release/lunatic-searching-worker-0.3.0-experimental.js +2 -0
- package/workers-release/lunatic-searching-worker-0.3.0-experimental.js.LICENSE.txt +34 -0
- package/lib/hooks/use-track-changes.js +0 -50
- package/lib/src/hooks/use-track-changes.d.ts +0 -9
- package/lib/src/use-lunatic/commons/component.d.ts +0 -22
- package/lib/src/use-lunatic/commons/fill-components/fill-iterations.d.ts +0 -112
- package/lib/src/use-lunatic/commons/variables/behaviours/cleaning-behaviour.d.ts +0 -7
- package/lib/src/use-lunatic/commons/variables/behaviours/missing-behaviour.d.ts +0 -7
- package/lib/src/use-lunatic/commons/variables/behaviours/resizing-behaviour.d.ts +0 -7
- package/lib/src/use-lunatic/commons/variables/get-questionnaire-data.d.ts +0 -4
- package/lib/src/use-lunatic/commons/variables/lunatic-variables-store.d.ts +0 -77
- package/lib/src/use-lunatic/reducer/reduce-handle-change.d.ts +0 -6
- package/lib/src/utils/env.d.ts +0 -1
- package/lib/src/utils/store-tools/worker-path.d.ts +0 -1
- package/lib/src/utils/variables.d.ts +0 -5
- package/lib/src/utils/vtl.d.ts +0 -14
- package/lib/use-lunatic/commons/component.js +0 -22
- package/lib/use-lunatic/commons/variables/behaviours/cleaning-behaviour.js +0 -39
- package/lib/use-lunatic/commons/variables/behaviours/missing-behaviour.js +0 -47
- package/lib/use-lunatic/commons/variables/behaviours/resizing-behaviour.js +0 -78
- package/lib/use-lunatic/commons/variables/lunatic-variables-store.js +0 -330
- package/lib/use-lunatic/commons/variables/lunatic-variables-store.spec.js +0 -216
- package/lib/utils/array.spec.js +0 -30
- package/lib/utils/env.js +0 -10
- package/lib/utils/store-tools/worker-path.js +0 -13
- package/lib/utils/suggester-workers/create-worker.js +0 -55
- package/lib/utils/variables.js +0 -37
- package/lib/utils/vtl.js +0 -100
- /package/lib/src/use-lunatic/commons/{variables/lunatic-variables-store.spec.d.ts → execute-expression/create-refresh-calculated.spec.d.ts} +0 -0
- /package/lib/src/{utils/array.spec.d.ts → use-lunatic/commons/execute-expression/execute-expression.spec.d.ts} +0 -0
- /package/lib/stories/{questionnaires-test → behaviour}/controls/V2_ControlesNonNum_horsBoucle_PasPageFin.json +0 -0
- /package/lib/stories/{questionnaires-test → behaviour}/controls/V2_ControlesNum_horsBoucle_PasPageFin.json +0 -0
- /package/lib/stories/{questionnaires-test → behaviour}/controls/V2_Controles_BouclesLiees2_PasPageFin.json +0 -0
- /package/lib/stories/{questionnaires-test → behaviour}/controls/V2_Controles_BouclesLiees_PasPageFin.json +0 -0
- /package/lib/stories/{questionnaires-test → behaviour}/controls/boucles-n.json +0 -0
- /package/lib/stories/{questionnaires-test → behaviour}/controls/controls-externes.json +0 -0
- /package/lib/stories/{questionnaires-test → behaviour}/controls/controls-externes.stories.js +0 -0
- /package/lib/stories/{questionnaires-test → behaviour/others}/V2_DeclarationsSimples.json +0 -0
- /package/lib/stories/{questionnaires-test → behaviour/others}/V2_MinMaxSum_Boucles.json +0 -0
- /package/lib/stories/{questionnaires-test → behaviour/others}/V2_QuestSimple_Boucles.json +0 -0
- /package/lib/stories/{questionnaires-test → behaviour/others}/V2_TCMRallyeGames.json +0 -0
- /package/lib/stories/{questionnaires-test → behaviour/others}/test-dylan.json +0 -0
- /package/lib/stories/{paste-questionnaire → behaviour/paste}/source.json +0 -0
- /package/lib/stories/{resizing-questionnaire → behaviour/resizing}/source.json +0 -0
|
@@ -14,13 +14,12 @@ export type FilledProps = {
|
|
|
14
14
|
declare function fillFromState(component: LunaticComponentDefinition, state: LunaticState): {
|
|
15
15
|
handleChange: (response: {
|
|
16
16
|
name: string;
|
|
17
|
-
}, value: any, args?:
|
|
18
|
-
iteration?: number[] | undefined;
|
|
19
|
-
} | undefined) => void;
|
|
17
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
20
18
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
21
|
-
iteration?: number |
|
|
19
|
+
iteration?: number | undefined;
|
|
20
|
+
linksIterations?: number[] | undefined;
|
|
21
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
22
22
|
bindingDependencies?: string[] | undefined;
|
|
23
|
-
deps?: string[] | undefined;
|
|
24
23
|
} | undefined) => T;
|
|
25
24
|
preferences: ["COLLECTED"];
|
|
26
25
|
goToPage: (page: {
|
|
@@ -34,6 +33,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
34
33
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
35
34
|
timestamp: number;
|
|
36
35
|
};
|
|
36
|
+
workersBasePath: string | undefined;
|
|
37
37
|
goNextPage: () => void;
|
|
38
38
|
goPreviousPage: () => void;
|
|
39
39
|
label: import("../../type-source").LabelType;
|
|
@@ -49,13 +49,12 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
49
49
|
} | {
|
|
50
50
|
handleChange: (response: {
|
|
51
51
|
name: string;
|
|
52
|
-
}, value: any, args?:
|
|
53
|
-
iteration?: number[] | undefined;
|
|
54
|
-
} | undefined) => void;
|
|
52
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
55
53
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
56
|
-
iteration?: number |
|
|
54
|
+
iteration?: number | undefined;
|
|
55
|
+
linksIterations?: number[] | undefined;
|
|
56
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
57
57
|
bindingDependencies?: string[] | undefined;
|
|
58
|
-
deps?: string[] | undefined;
|
|
59
58
|
} | undefined) => T;
|
|
60
59
|
preferences: ["COLLECTED"];
|
|
61
60
|
goToPage: (page: {
|
|
@@ -69,6 +68,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
69
68
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
70
69
|
timestamp: number;
|
|
71
70
|
};
|
|
71
|
+
workersBasePath: string | undefined;
|
|
72
72
|
goNextPage: () => void;
|
|
73
73
|
goPreviousPage: () => void;
|
|
74
74
|
label: import("../../type-source").LabelType;
|
|
@@ -85,13 +85,12 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
85
85
|
} | {
|
|
86
86
|
handleChange: (response: {
|
|
87
87
|
name: string;
|
|
88
|
-
}, value: any, args?:
|
|
89
|
-
iteration?: number[] | undefined;
|
|
90
|
-
} | undefined) => void;
|
|
88
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
91
89
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
92
|
-
iteration?: number |
|
|
90
|
+
iteration?: number | undefined;
|
|
91
|
+
linksIterations?: number[] | undefined;
|
|
92
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
93
93
|
bindingDependencies?: string[] | undefined;
|
|
94
|
-
deps?: string[] | undefined;
|
|
95
94
|
} | undefined) => T;
|
|
96
95
|
preferences: ["COLLECTED"];
|
|
97
96
|
goToPage: (page: {
|
|
@@ -105,6 +104,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
105
104
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
106
105
|
timestamp: number;
|
|
107
106
|
};
|
|
107
|
+
workersBasePath: string | undefined;
|
|
108
108
|
goNextPage: () => void;
|
|
109
109
|
goPreviousPage: () => void;
|
|
110
110
|
label: import("../../type-source").LabelType;
|
|
@@ -132,20 +132,37 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
132
132
|
colspan?: number | undefined;
|
|
133
133
|
rowspan?: number | undefined;
|
|
134
134
|
}[];
|
|
135
|
-
body:
|
|
136
|
-
label
|
|
137
|
-
|
|
135
|
+
body: {
|
|
136
|
+
label?: import("../../type-source").LabelType | undefined;
|
|
137
|
+
value?: string | undefined;
|
|
138
|
+
format?: string | undefined;
|
|
139
|
+
dateFormat?: string | undefined;
|
|
140
|
+
unit?: string | undefined;
|
|
141
|
+
options: {
|
|
142
|
+
value: string;
|
|
143
|
+
label: import("../../type-source").LabelType;
|
|
144
|
+
}[];
|
|
145
|
+
response: import("../../type-source").ResponseType;
|
|
146
|
+
bindingDependencies: string[];
|
|
147
|
+
componentType?: import("../../type-source").ComponentTypeEnum | undefined;
|
|
148
|
+
maxLength?: number | undefined;
|
|
149
|
+
min?: number | undefined;
|
|
150
|
+
max?: number | undefined;
|
|
151
|
+
decimals?: number | undefined;
|
|
152
|
+
colspan?: number | undefined;
|
|
153
|
+
rowspan?: number | undefined;
|
|
154
|
+
id?: string | undefined;
|
|
155
|
+
}[];
|
|
138
156
|
positioning: "HORIZONTAL";
|
|
139
157
|
} | {
|
|
140
158
|
handleChange: (response: {
|
|
141
159
|
name: string;
|
|
142
|
-
}, value: any, args?:
|
|
143
|
-
iteration?: number[] | undefined;
|
|
144
|
-
} | undefined) => void;
|
|
160
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
145
161
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
146
|
-
iteration?: number |
|
|
162
|
+
iteration?: number | undefined;
|
|
163
|
+
linksIterations?: number[] | undefined;
|
|
164
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
147
165
|
bindingDependencies?: string[] | undefined;
|
|
148
|
-
deps?: string[] | undefined;
|
|
149
166
|
} | undefined) => T;
|
|
150
167
|
preferences: ["COLLECTED"];
|
|
151
168
|
goToPage: (page: {
|
|
@@ -159,6 +176,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
159
176
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
160
177
|
timestamp: number;
|
|
161
178
|
};
|
|
179
|
+
workersBasePath: string | undefined;
|
|
162
180
|
goNextPage: () => void;
|
|
163
181
|
goPreviousPage: () => void;
|
|
164
182
|
label: import("../../type-source").LabelType;
|
|
@@ -184,13 +202,12 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
184
202
|
} | {
|
|
185
203
|
handleChange: (response: {
|
|
186
204
|
name: string;
|
|
187
|
-
}, value: any, args?:
|
|
188
|
-
iteration?: number[] | undefined;
|
|
189
|
-
} | undefined) => void;
|
|
205
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
190
206
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
191
|
-
iteration?: number |
|
|
207
|
+
iteration?: number | undefined;
|
|
208
|
+
linksIterations?: number[] | undefined;
|
|
209
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
192
210
|
bindingDependencies?: string[] | undefined;
|
|
193
|
-
deps?: string[] | undefined;
|
|
194
211
|
} | undefined) => T;
|
|
195
212
|
preferences: ["COLLECTED"];
|
|
196
213
|
goToPage: (page: {
|
|
@@ -204,6 +221,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
204
221
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
205
222
|
timestamp: number;
|
|
206
223
|
};
|
|
224
|
+
workersBasePath: string | undefined;
|
|
207
225
|
goNextPage: () => void;
|
|
208
226
|
goPreviousPage: () => void;
|
|
209
227
|
label: import("../../type-source").LabelType;
|
|
@@ -230,20 +248,37 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
230
248
|
colspan?: number | undefined;
|
|
231
249
|
rowspan?: number | undefined;
|
|
232
250
|
}[];
|
|
233
|
-
body:
|
|
234
|
-
label
|
|
235
|
-
|
|
251
|
+
body: {
|
|
252
|
+
label?: import("../../type-source").LabelType | undefined;
|
|
253
|
+
value?: string | undefined;
|
|
254
|
+
format?: string | undefined;
|
|
255
|
+
dateFormat?: string | undefined;
|
|
256
|
+
unit?: string | undefined;
|
|
257
|
+
options: {
|
|
258
|
+
value: string;
|
|
259
|
+
label: import("../../type-source").LabelType;
|
|
260
|
+
}[];
|
|
261
|
+
response: import("../../type-source").ResponseType;
|
|
262
|
+
bindingDependencies: string[];
|
|
263
|
+
componentType?: import("../../type-source").ComponentTypeEnum | undefined;
|
|
264
|
+
maxLength?: number | undefined;
|
|
265
|
+
min?: number | undefined;
|
|
266
|
+
max?: number | undefined;
|
|
267
|
+
decimals?: number | undefined;
|
|
268
|
+
colspan?: number | undefined;
|
|
269
|
+
rowspan?: number | undefined;
|
|
270
|
+
id?: string | undefined;
|
|
271
|
+
}[];
|
|
236
272
|
positioning: "HORIZONTAL";
|
|
237
273
|
} | {
|
|
238
274
|
handleChange: (response: {
|
|
239
275
|
name: string;
|
|
240
|
-
}, value: any, args?:
|
|
241
|
-
iteration?: number[] | undefined;
|
|
242
|
-
} | undefined) => void;
|
|
276
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
243
277
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
244
|
-
iteration?: number |
|
|
278
|
+
iteration?: number | undefined;
|
|
279
|
+
linksIterations?: number[] | undefined;
|
|
280
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
245
281
|
bindingDependencies?: string[] | undefined;
|
|
246
|
-
deps?: string[] | undefined;
|
|
247
282
|
} | undefined) => T;
|
|
248
283
|
preferences: ["COLLECTED"];
|
|
249
284
|
goToPage: (page: {
|
|
@@ -257,6 +292,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
257
292
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
258
293
|
timestamp: number;
|
|
259
294
|
};
|
|
295
|
+
workersBasePath: string | undefined;
|
|
260
296
|
goNextPage: () => void;
|
|
261
297
|
goPreviousPage: () => void;
|
|
262
298
|
label: import("../../type-source").LabelType;
|
|
@@ -277,13 +313,12 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
277
313
|
} | {
|
|
278
314
|
handleChange: (response: {
|
|
279
315
|
name: string;
|
|
280
|
-
}, value: any, args?:
|
|
281
|
-
iteration?: number[] | undefined;
|
|
282
|
-
} | undefined) => void;
|
|
316
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
283
317
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
284
|
-
iteration?: number |
|
|
318
|
+
iteration?: number | undefined;
|
|
319
|
+
linksIterations?: number[] | undefined;
|
|
320
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
285
321
|
bindingDependencies?: string[] | undefined;
|
|
286
|
-
deps?: string[] | undefined;
|
|
287
322
|
} | undefined) => T;
|
|
288
323
|
preferences: ["COLLECTED"];
|
|
289
324
|
goToPage: (page: {
|
|
@@ -297,6 +332,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
297
332
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
298
333
|
timestamp: number;
|
|
299
334
|
};
|
|
335
|
+
workersBasePath: string | undefined;
|
|
300
336
|
goNextPage: () => void;
|
|
301
337
|
goPreviousPage: () => void;
|
|
302
338
|
label: import("../../type-source").LabelType;
|
|
@@ -316,13 +352,12 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
316
352
|
} | {
|
|
317
353
|
handleChange: (response: {
|
|
318
354
|
name: string;
|
|
319
|
-
}, value: any, args?:
|
|
320
|
-
iteration?: number[] | undefined;
|
|
321
|
-
} | undefined) => void;
|
|
355
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
322
356
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
323
|
-
iteration?: number |
|
|
357
|
+
iteration?: number | undefined;
|
|
358
|
+
linksIterations?: number[] | undefined;
|
|
359
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
324
360
|
bindingDependencies?: string[] | undefined;
|
|
325
|
-
deps?: string[] | undefined;
|
|
326
361
|
} | undefined) => T;
|
|
327
362
|
preferences: ["COLLECTED"];
|
|
328
363
|
goToPage: (page: {
|
|
@@ -336,6 +371,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
336
371
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
337
372
|
timestamp: number;
|
|
338
373
|
};
|
|
374
|
+
workersBasePath: string | undefined;
|
|
339
375
|
goNextPage: () => void;
|
|
340
376
|
goPreviousPage: () => void;
|
|
341
377
|
label: import("../../type-source").LabelType;
|
|
@@ -356,13 +392,12 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
356
392
|
} | {
|
|
357
393
|
handleChange: (response: {
|
|
358
394
|
name: string;
|
|
359
|
-
}, value: any, args?:
|
|
360
|
-
iteration?: number[] | undefined;
|
|
361
|
-
} | undefined) => void;
|
|
395
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
362
396
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
363
|
-
iteration?: number |
|
|
397
|
+
iteration?: number | undefined;
|
|
398
|
+
linksIterations?: number[] | undefined;
|
|
399
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
364
400
|
bindingDependencies?: string[] | undefined;
|
|
365
|
-
deps?: string[] | undefined;
|
|
366
401
|
} | undefined) => T;
|
|
367
402
|
preferences: ["COLLECTED"];
|
|
368
403
|
goToPage: (page: {
|
|
@@ -376,6 +411,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
376
411
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
377
412
|
timestamp: number;
|
|
378
413
|
};
|
|
414
|
+
workersBasePath: string | undefined;
|
|
379
415
|
goNextPage: () => void;
|
|
380
416
|
goPreviousPage: () => void;
|
|
381
417
|
label: import("../../type-source").LabelType;
|
|
@@ -393,13 +429,12 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
393
429
|
} | {
|
|
394
430
|
handleChange: (response: {
|
|
395
431
|
name: string;
|
|
396
|
-
}, value: any, args?:
|
|
397
|
-
iteration?: number[] | undefined;
|
|
398
|
-
} | undefined) => void;
|
|
432
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
399
433
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
400
|
-
iteration?: number |
|
|
434
|
+
iteration?: number | undefined;
|
|
435
|
+
linksIterations?: number[] | undefined;
|
|
436
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
401
437
|
bindingDependencies?: string[] | undefined;
|
|
402
|
-
deps?: string[] | undefined;
|
|
403
438
|
} | undefined) => T;
|
|
404
439
|
preferences: ["COLLECTED"];
|
|
405
440
|
goToPage: (page: {
|
|
@@ -413,6 +448,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
413
448
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
414
449
|
timestamp: number;
|
|
415
450
|
};
|
|
451
|
+
workersBasePath: string | undefined;
|
|
416
452
|
goNextPage: () => void;
|
|
417
453
|
goPreviousPage: () => void;
|
|
418
454
|
label: import("../../type-source").LabelType;
|
|
@@ -434,13 +470,12 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
434
470
|
} | {
|
|
435
471
|
handleChange: (response: {
|
|
436
472
|
name: string;
|
|
437
|
-
}, value: any, args?:
|
|
438
|
-
iteration?: number[] | undefined;
|
|
439
|
-
} | undefined) => void;
|
|
473
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
440
474
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
441
|
-
iteration?: number |
|
|
475
|
+
iteration?: number | undefined;
|
|
476
|
+
linksIterations?: number[] | undefined;
|
|
477
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
442
478
|
bindingDependencies?: string[] | undefined;
|
|
443
|
-
deps?: string[] | undefined;
|
|
444
479
|
} | undefined) => T;
|
|
445
480
|
preferences: ["COLLECTED"];
|
|
446
481
|
goToPage: (page: {
|
|
@@ -454,6 +489,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
454
489
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
455
490
|
timestamp: number;
|
|
456
491
|
};
|
|
492
|
+
workersBasePath: string | undefined;
|
|
457
493
|
goNextPage: () => void;
|
|
458
494
|
goPreviousPage: () => void;
|
|
459
495
|
label: import("../../type-source").LabelType;
|
|
@@ -470,13 +506,12 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
470
506
|
} | {
|
|
471
507
|
handleChange: (response: {
|
|
472
508
|
name: string;
|
|
473
|
-
}, value: any, args?:
|
|
474
|
-
iteration?: number[] | undefined;
|
|
475
|
-
} | undefined) => void;
|
|
509
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
476
510
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
477
|
-
iteration?: number |
|
|
511
|
+
iteration?: number | undefined;
|
|
512
|
+
linksIterations?: number[] | undefined;
|
|
513
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
478
514
|
bindingDependencies?: string[] | undefined;
|
|
479
|
-
deps?: string[] | undefined;
|
|
480
515
|
} | undefined) => T;
|
|
481
516
|
preferences: ["COLLECTED"];
|
|
482
517
|
goToPage: (page: {
|
|
@@ -490,6 +525,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
490
525
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
491
526
|
timestamp: number;
|
|
492
527
|
};
|
|
528
|
+
workersBasePath: string | undefined;
|
|
493
529
|
goNextPage: () => void;
|
|
494
530
|
goPreviousPage: () => void;
|
|
495
531
|
label: import("../../type-source").LabelType;
|
|
@@ -511,13 +547,12 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
511
547
|
} | {
|
|
512
548
|
handleChange: (response: {
|
|
513
549
|
name: string;
|
|
514
|
-
}, value: any, args?:
|
|
515
|
-
iteration?: number[] | undefined;
|
|
516
|
-
} | undefined) => void;
|
|
550
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
517
551
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
518
|
-
iteration?: number |
|
|
552
|
+
iteration?: number | undefined;
|
|
553
|
+
linksIterations?: number[] | undefined;
|
|
554
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
519
555
|
bindingDependencies?: string[] | undefined;
|
|
520
|
-
deps?: string[] | undefined;
|
|
521
556
|
} | undefined) => T;
|
|
522
557
|
preferences: ["COLLECTED"];
|
|
523
558
|
goToPage: (page: {
|
|
@@ -531,6 +566,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
531
566
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
532
567
|
timestamp: number;
|
|
533
568
|
};
|
|
569
|
+
workersBasePath: string | undefined;
|
|
534
570
|
goNextPage: () => void;
|
|
535
571
|
goPreviousPage: () => void;
|
|
536
572
|
label: import("../../type-source").LabelType;
|
|
@@ -548,17 +584,15 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
548
584
|
symLinks: {
|
|
549
585
|
[variableName: string]: Record<string, string>;
|
|
550
586
|
};
|
|
551
|
-
components: import("../../type-source").ComponentType[];
|
|
552
587
|
} | {
|
|
553
588
|
handleChange: (response: {
|
|
554
589
|
name: string;
|
|
555
|
-
}, value: any, args?:
|
|
556
|
-
iteration?: number[] | undefined;
|
|
557
|
-
} | undefined) => void;
|
|
590
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
558
591
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
559
|
-
iteration?: number |
|
|
592
|
+
iteration?: number | undefined;
|
|
593
|
+
linksIterations?: number[] | undefined;
|
|
594
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
560
595
|
bindingDependencies?: string[] | undefined;
|
|
561
|
-
deps?: string[] | undefined;
|
|
562
596
|
} | undefined) => T;
|
|
563
597
|
preferences: ["COLLECTED"];
|
|
564
598
|
goToPage: (page: {
|
|
@@ -572,6 +606,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
572
606
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
573
607
|
timestamp: number;
|
|
574
608
|
};
|
|
609
|
+
workersBasePath: string | undefined;
|
|
575
610
|
goNextPage: () => void;
|
|
576
611
|
goPreviousPage: () => void;
|
|
577
612
|
label: import("../../type-source").LabelType;
|
|
@@ -591,13 +626,12 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
591
626
|
} | {
|
|
592
627
|
handleChange: (response: {
|
|
593
628
|
name: string;
|
|
594
|
-
}, value: any, args?:
|
|
595
|
-
iteration?: number[] | undefined;
|
|
596
|
-
} | undefined) => void;
|
|
629
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
597
630
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
598
|
-
iteration?: number |
|
|
631
|
+
iteration?: number | undefined;
|
|
632
|
+
linksIterations?: number[] | undefined;
|
|
633
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
599
634
|
bindingDependencies?: string[] | undefined;
|
|
600
|
-
deps?: string[] | undefined;
|
|
601
635
|
} | undefined) => T;
|
|
602
636
|
preferences: ["COLLECTED"];
|
|
603
637
|
goToPage: (page: {
|
|
@@ -611,6 +645,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
611
645
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
612
646
|
timestamp: number;
|
|
613
647
|
};
|
|
648
|
+
workersBasePath: string | undefined;
|
|
614
649
|
goNextPage: () => void;
|
|
615
650
|
goPreviousPage: () => void;
|
|
616
651
|
label: import("../../type-source").LabelType;
|
|
@@ -627,13 +662,12 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
627
662
|
} | {
|
|
628
663
|
handleChange: (response: {
|
|
629
664
|
name: string;
|
|
630
|
-
}, value: any, args?:
|
|
631
|
-
iteration?: number[] | undefined;
|
|
632
|
-
} | undefined) => void;
|
|
665
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
633
666
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
634
|
-
iteration?: number |
|
|
667
|
+
iteration?: number | undefined;
|
|
668
|
+
linksIterations?: number[] | undefined;
|
|
669
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
635
670
|
bindingDependencies?: string[] | undefined;
|
|
636
|
-
deps?: string[] | undefined;
|
|
637
671
|
} | undefined) => T;
|
|
638
672
|
preferences: ["COLLECTED"];
|
|
639
673
|
goToPage: (page: {
|
|
@@ -647,6 +681,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
647
681
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
648
682
|
timestamp: number;
|
|
649
683
|
};
|
|
684
|
+
workersBasePath: string | undefined;
|
|
650
685
|
goNextPage: () => void;
|
|
651
686
|
goPreviousPage: () => void;
|
|
652
687
|
label: import("../../type-source").LabelType;
|
|
@@ -665,13 +700,12 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
665
700
|
} | {
|
|
666
701
|
handleChange: (response: {
|
|
667
702
|
name: string;
|
|
668
|
-
}, value: any, args?:
|
|
669
|
-
iteration?: number[] | undefined;
|
|
670
|
-
} | undefined) => void;
|
|
703
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
671
704
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
672
|
-
iteration?: number |
|
|
705
|
+
iteration?: number | undefined;
|
|
706
|
+
linksIterations?: number[] | undefined;
|
|
707
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
673
708
|
bindingDependencies?: string[] | undefined;
|
|
674
|
-
deps?: string[] | undefined;
|
|
675
709
|
} | undefined) => T;
|
|
676
710
|
preferences: ["COLLECTED"];
|
|
677
711
|
goToPage: (page: {
|
|
@@ -685,6 +719,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
685
719
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
686
720
|
timestamp: number;
|
|
687
721
|
};
|
|
722
|
+
workersBasePath: string | undefined;
|
|
688
723
|
goNextPage: () => void;
|
|
689
724
|
goPreviousPage: () => void;
|
|
690
725
|
label: import("../../type-source").LabelType;
|
|
@@ -700,13 +735,12 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
700
735
|
} | {
|
|
701
736
|
handleChange: (response: {
|
|
702
737
|
name: string;
|
|
703
|
-
}, value: any, args?:
|
|
704
|
-
iteration?: number[] | undefined;
|
|
705
|
-
} | undefined) => void;
|
|
738
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
706
739
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
707
|
-
iteration?: number |
|
|
740
|
+
iteration?: number | undefined;
|
|
741
|
+
linksIterations?: number[] | undefined;
|
|
742
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
708
743
|
bindingDependencies?: string[] | undefined;
|
|
709
|
-
deps?: string[] | undefined;
|
|
710
744
|
} | undefined) => T;
|
|
711
745
|
preferences: ["COLLECTED"];
|
|
712
746
|
goToPage: (page: {
|
|
@@ -720,6 +754,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
720
754
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
721
755
|
timestamp: number;
|
|
722
756
|
};
|
|
757
|
+
workersBasePath: string | undefined;
|
|
723
758
|
goNextPage: () => void;
|
|
724
759
|
goPreviousPage: () => void;
|
|
725
760
|
label: import("../../type-source").LabelType;
|
|
@@ -735,13 +770,12 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
735
770
|
} | {
|
|
736
771
|
handleChange: (response: {
|
|
737
772
|
name: string;
|
|
738
|
-
}, value: any, args?:
|
|
739
|
-
iteration?: number[] | undefined;
|
|
740
|
-
} | undefined) => void;
|
|
773
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
741
774
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
742
|
-
iteration?: number |
|
|
775
|
+
iteration?: number | undefined;
|
|
776
|
+
linksIterations?: number[] | undefined;
|
|
777
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
743
778
|
bindingDependencies?: string[] | undefined;
|
|
744
|
-
deps?: string[] | undefined;
|
|
745
779
|
} | undefined) => T;
|
|
746
780
|
preferences: ["COLLECTED"];
|
|
747
781
|
goToPage: (page: {
|
|
@@ -755,6 +789,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
755
789
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
756
790
|
timestamp: number;
|
|
757
791
|
};
|
|
792
|
+
workersBasePath: string | undefined;
|
|
758
793
|
goNextPage: () => void;
|
|
759
794
|
goPreviousPage: () => void;
|
|
760
795
|
label: import("../../type-source").LabelType;
|
|
@@ -771,13 +806,12 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
771
806
|
} | {
|
|
772
807
|
handleChange: (response: {
|
|
773
808
|
name: string;
|
|
774
|
-
}, value: any, args?:
|
|
775
|
-
iteration?: number[] | undefined;
|
|
776
|
-
} | undefined) => void;
|
|
809
|
+
}, value: any, args?: Record<string, unknown> | undefined) => void;
|
|
777
810
|
executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
|
|
778
|
-
iteration?: number |
|
|
811
|
+
iteration?: number | undefined;
|
|
812
|
+
linksIterations?: number[] | undefined;
|
|
813
|
+
logging?: import("../execute-expression/create-execute-expression").ExpressionLogger | undefined;
|
|
779
814
|
bindingDependencies?: string[] | undefined;
|
|
780
|
-
deps?: string[] | undefined;
|
|
781
815
|
} | undefined) => T;
|
|
782
816
|
preferences: ["COLLECTED"];
|
|
783
817
|
goToPage: (page: {
|
|
@@ -791,6 +825,7 @@ declare function fillFromState(component: LunaticComponentDefinition, state: Lun
|
|
|
791
825
|
status: import("../../use-suggesters").SuggesterStatus;
|
|
792
826
|
timestamp: number;
|
|
793
827
|
};
|
|
828
|
+
workersBasePath: string | undefined;
|
|
794
829
|
goNextPage: () => void;
|
|
795
830
|
goPreviousPage: () => void;
|
|
796
831
|
label: import("../../type-source").LabelType;
|