@inseefr/lunatic 2.3.0 → 2.4.0
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/LICENSE +21 -21
- package/README.md +169 -22
- package/lib/components/button/__snapshots__/lunatic-button.spec.jsx.snap +80 -0
- package/lib/components/button/button.scss +24 -0
- package/lib/components/button/index.js +13 -0
- package/lib/components/button/lunatic-button.js +56 -0
- package/lib/components/button/lunatic-button.spec.js +87 -0
- package/lib/components/checkbox/checkbox-boolean/html/checkbox-boolean.js +55 -0
- package/lib/components/checkbox/checkbox-boolean/html/checkbox-boolean.spec.js +57 -0
- package/lib/components/checkbox/checkbox-boolean/index.js +13 -0
- package/lib/components/checkbox/checkbox-boolean/lunatic-checkbox-boolean.js +58 -0
- package/lib/components/checkbox/checkbox-group/checkbox-group-content.js +41 -0
- package/lib/components/checkbox/checkbox-group/html/checkbox-group-content.js +51 -0
- package/lib/components/checkbox/checkbox-group/html/checkbox-group-content.spec.js +44 -0
- package/lib/components/checkbox/checkbox-group/html/checkbox-group.js +52 -0
- package/lib/components/checkbox/checkbox-group/html/checkbox-group.scss +12 -0
- package/lib/components/checkbox/checkbox-group/index.js +13 -0
- package/lib/components/checkbox/checkbox-group/lunatic-checkbox-group.js +64 -0
- package/lib/components/checkbox/checkbox-one/html/checkbox-one.js +54 -0
- package/lib/components/checkbox/checkbox-one/html/checkbox-one.scss +19 -0
- package/lib/components/checkbox/checkbox-one/html/checkbox-one.spec.js +51 -0
- package/lib/components/checkbox/checkbox-one/index.js +13 -0
- package/lib/components/checkbox/checkbox-one/lunatic-checkbox-one.js +58 -0
- package/lib/components/checkbox/commons/checkbox-option.js +89 -0
- package/lib/components/checkbox/commons/checkbox-option.scss +19 -0
- package/lib/components/checkbox/commons/checkbox-option.spec.js +71 -0
- package/lib/components/checkbox/commons/getShortcutKey.js +11 -0
- package/lib/components/checkbox/commons/index.js +13 -0
- package/lib/components/checkbox/index.js +27 -0
- package/lib/components/commons/build-style-object.js +25 -0
- package/lib/components/commons/components/combo-box/combo-box-container.js +33 -0
- package/lib/components/commons/components/combo-box/combo-box-container.spec.js +45 -0
- package/lib/components/commons/components/combo-box/combo-box-content.js +63 -0
- package/lib/components/commons/components/combo-box/combo-box.js +199 -0
- package/lib/components/commons/components/combo-box/combo-box.scss +206 -0
- package/lib/components/commons/components/combo-box/index.js +13 -0
- package/lib/components/commons/components/combo-box/panel/index.js +13 -0
- package/lib/components/commons/components/combo-box/panel/option-container.js +61 -0
- package/lib/components/commons/components/combo-box/panel/option-container.spec.js +27 -0
- package/lib/components/commons/components/combo-box/panel/panel-container.js +28 -0
- package/lib/components/commons/components/combo-box/panel/panel-container.spec.js +59 -0
- package/lib/components/commons/components/combo-box/panel/panel.js +63 -0
- package/lib/components/commons/components/combo-box/panel/panel.spec.js +93 -0
- package/lib/components/commons/components/combo-box/selection/__snapshots__/selection.spec.jsx.snap +81 -0
- package/lib/components/commons/components/combo-box/selection/delete.js +55 -0
- package/lib/components/commons/components/combo-box/selection/delete.spec.js +88 -0
- package/lib/components/commons/components/combo-box/selection/displayLabelOrInput.js +29 -0
- package/lib/components/commons/components/combo-box/selection/displayLabelOrInput.spec.js +57 -0
- package/lib/components/commons/components/combo-box/selection/index.js +13 -0
- package/lib/components/commons/components/combo-box/selection/input.js +56 -0
- package/lib/components/commons/components/combo-box/selection/label-selection.js +32 -0
- package/lib/components/commons/components/combo-box/selection/label-selection.spec.js +45 -0
- package/lib/components/commons/components/combo-box/selection/selection-container.js +39 -0
- package/lib/components/commons/components/combo-box/selection/selection-container.spec.js +53 -0
- package/lib/components/commons/components/combo-box/selection/selection.js +60 -0
- package/lib/components/commons/components/combo-box/selection/selection.spec.js +104 -0
- package/lib/components/commons/components/combo-box/state-management/actions.js +82 -0
- package/lib/components/commons/components/combo-box/state-management/combo-box-context.js +16 -0
- package/lib/components/commons/components/combo-box/state-management/index.js +33 -0
- package/lib/components/commons/components/combo-box/state-management/initial-state.js +14 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/index.js +13 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-blur.js +20 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-change.js +22 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-delete.js +21 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-focus.js +20 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-init.js +38 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/index.js +13 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/keyboard-key-codes.js +18 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-arrow-down.js +32 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-arrow-up.js +32 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-end.js +25 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-enter.js +21 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-escape.js +20 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-home.js +25 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-tab.js +20 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/reduce-on-keydown.js +40 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-select.js +22 -0
- package/lib/components/commons/components/combo-box/state-management/reducer/reducer.js +41 -0
- package/lib/components/commons/components/default-label-renderer.js +47 -0
- package/lib/components/commons/components/default-label-renderer.spec.js +43 -0
- package/lib/components/commons/components/default-option-renderer.js +44 -0
- package/lib/components/commons/components/default-option-renderer.spec.js +65 -0
- package/lib/components/commons/components/description.js +52 -0
- package/lib/components/commons/components/description.spec.js +45 -0
- package/lib/components/commons/components/dragger/dragger.js +95 -0
- package/lib/components/commons/components/dragger/dragger.scss +8 -0
- package/lib/components/commons/components/dragger/dragger.spec.js +80 -0
- package/lib/components/commons/components/dragger/index.js +13 -0
- package/lib/components/commons/components/errors/errors.js +53 -0
- package/lib/components/commons/components/errors/errors.scss +5 -0
- package/lib/components/commons/components/errors/errors.spec.js +40 -0
- package/lib/components/commons/components/errors/index.js +13 -0
- package/lib/components/commons/components/fab/fab.js +50 -0
- package/lib/components/commons/components/fab/fab.scss +32 -0
- package/lib/components/commons/components/fab/fab.spec.js +76 -0
- package/lib/components/commons/components/fab/index.js +13 -0
- package/lib/components/commons/components/field-container/field-container.js +41 -0
- package/lib/components/commons/components/field-container/filed-container.spec.js +37 -0
- package/lib/components/commons/components/field-container/index.js +13 -0
- package/lib/components/commons/components/fieldset.js +30 -0
- package/lib/components/commons/components/fieldset.scss +5 -0
- package/lib/components/commons/components/fieldset.spec.js +51 -0
- package/lib/components/commons/components/html-table/index.js +48 -0
- package/lib/components/commons/components/html-table/table.js +32 -0
- package/lib/components/commons/components/html-table/table.scss +27 -0
- package/lib/components/commons/components/html-table/table.spec.js +25 -0
- package/lib/components/commons/components/html-table/tbody.js +32 -0
- package/lib/components/commons/components/html-table/tbody.spec.js +34 -0
- package/lib/components/commons/components/html-table/td.js +43 -0
- package/lib/components/commons/components/html-table/td.spec.js +43 -0
- package/lib/components/commons/components/html-table/th.js +41 -0
- package/lib/components/commons/components/html-table/th.spec.js +46 -0
- package/lib/components/commons/components/html-table/thead.js +31 -0
- package/lib/components/commons/components/html-table/thead.spec.js +30 -0
- package/lib/components/commons/components/html-table/tr.js +33 -0
- package/lib/components/commons/components/html-table/tr.spec.js +45 -0
- package/lib/components/commons/components/is-network/index.js +13 -0
- package/lib/components/commons/components/is-network/is-network.js +53 -0
- package/lib/components/commons/components/is-network/is-network.spec.js +34 -0
- package/lib/components/commons/components/is-network/use-online-status.js +46 -0
- package/lib/components/commons/components/is-network/use-online-status.spec.js +45 -0
- package/lib/components/commons/components/label/index.js +13 -0
- package/lib/components/commons/components/label/label.js +35 -0
- package/lib/components/commons/components/label/label.scss +6 -0
- package/lib/components/commons/components/label/label.spec.js +78 -0
- package/lib/components/commons/components/lunatic-component-without-label.js +87 -0
- package/lib/components/commons/components/md-label/index.js +13 -0
- package/lib/components/commons/components/md-label/link.js +54 -0
- package/lib/components/commons/components/md-label/md-label.js +45 -0
- package/lib/components/commons/components/missing/index.js +13 -0
- package/lib/components/commons/components/missing/missing.js +87 -0
- package/lib/components/commons/components/missing/missing.scss +30 -0
- package/lib/components/commons/components/missing/missing.spec.js +81 -0
- package/lib/components/commons/components/nothing-to-display.js +16 -0
- package/lib/components/commons/components/nothing-to-display.spec.js +16 -0
- package/lib/components/commons/components/orchestrated-component.js +62 -0
- package/lib/components/commons/components/variable-status/img/index.js +20 -0
- package/lib/components/commons/components/variable-status/index.js +13 -0
- package/lib/components/commons/components/variable-status/variable-status.js +85 -0
- package/lib/components/commons/components/variable-status/variable-status.scss +39 -0
- package/lib/components/commons/components/variable-status/variable-status.spec.js +24 -0
- package/lib/components/commons/create-customizable-field.js +29 -0
- package/lib/components/commons/create-row-orchestrator.js +51 -0
- package/lib/components/commons/icons/checkbox-checked.icon.js +39 -0
- package/lib/components/commons/icons/checkbox-unchecked.icon.js +39 -0
- package/lib/components/commons/icons/closed.icon.js +36 -0
- package/lib/components/commons/icons/cross.icon.js +36 -0
- package/lib/components/commons/icons/index.js +76 -0
- package/lib/components/commons/icons/load.icon.js +36 -0
- package/lib/components/commons/icons/lunatic-icon.js +21 -0
- package/lib/components/commons/icons/lunatic-icon.scss +3 -0
- package/lib/components/commons/icons/network.icon.js +36 -0
- package/lib/components/commons/icons/on-drag.icon.js +36 -0
- package/lib/components/commons/icons/opened.icon.js +36 -0
- package/lib/components/commons/icons/radio-checked.icon.js +39 -0
- package/lib/components/commons/icons/radio-unchecked.icon.js +39 -0
- package/lib/components/commons/index.js +131 -0
- package/lib/components/commons/prop-types/declarations.js +19 -0
- package/lib/components/commons/prop-types/index.js +41 -0
- package/lib/components/commons/prop-types/lines.js +13 -0
- package/lib/components/commons/prop-types/options.js +13 -0
- package/lib/components/commons/prop-types/response.js +13 -0
- package/lib/components/commons/prop-types/value-type.js +14 -0
- package/lib/components/commons/safety-label.js +26 -0
- package/lib/components/commons/use-document-add-event-listener.js +84 -0
- package/lib/components/commons/use-on-handle-change.js +19 -0
- package/lib/components/commons/use-on-handle-change.spec.js +46 -0
- package/lib/components/commons/use-options-keydown.js +24 -0
- package/lib/components/commons/use-previous.js +16 -0
- package/lib/components/components.js +171 -0
- package/lib/components/datepicker/html/datepicker-container.js +18 -0
- package/lib/components/datepicker/html/datepicker-input.js +37 -0
- package/lib/components/datepicker/html/datepicker.js +69 -0
- package/lib/components/datepicker/html/datepicker.scss +1 -0
- package/lib/components/datepicker/index.js +13 -0
- package/lib/components/datepicker/lunatic-datepicker.js +61 -0
- package/lib/components/declarations/declaration.js +22 -0
- package/lib/components/declarations/declaration.spec.js +30 -0
- package/lib/components/declarations/declarations-after-text.js +25 -0
- package/lib/components/declarations/declarations-before-text.js +25 -0
- package/lib/components/declarations/declarations-detachable.js +25 -0
- package/lib/components/declarations/declarations.js +50 -0
- package/lib/components/declarations/declarations.scss +36 -0
- package/lib/components/declarations/declarations.spec.js +79 -0
- package/lib/components/declarations/index.js +43 -0
- package/lib/components/dropdown/html/dropdown-simple/dropdown-simple.js +39 -0
- package/lib/components/dropdown/html/dropdown-simple/index.js +13 -0
- package/lib/components/dropdown/html/dropdown-simple/simple-label-renderer.js +46 -0
- package/lib/components/dropdown/html/dropdown-simple/simple-option-renderer.js +45 -0
- package/lib/components/dropdown/html/dropdown-writable/dropdown-writable.js +62 -0
- package/lib/components/dropdown/html/dropdown-writable/filter-tools/filter-options.js +37 -0
- package/lib/components/dropdown/html/dropdown-writable/filter-tools/get-label.js +24 -0
- package/lib/components/dropdown/html/dropdown-writable/filter-tools/letters-matching.js +29 -0
- package/lib/components/dropdown/html/dropdown-writable/filter-tools/match.js +22 -0
- package/lib/components/dropdown/html/dropdown-writable/filter-tools/prepare-prefix.js +13 -0
- package/lib/components/dropdown/html/dropdown-writable/index.js +13 -0
- package/lib/components/dropdown/html/dropdown-writable/writable-label-renderer.js +52 -0
- package/lib/components/dropdown/html/dropdown-writable/writable-option-renderer.js +146 -0
- package/lib/components/dropdown/html/dropdown.js +51 -0
- package/lib/components/dropdown/html/dropdown.scss +41 -0
- package/lib/components/dropdown/index.js +13 -0
- package/lib/components/dropdown/lunatic-dropdown.js +75 -0
- package/lib/components/filter-description/component.js +22 -0
- package/lib/components/filter-description/component.spec.js +23 -0
- package/lib/components/filter-description/index.js +13 -0
- package/lib/components/index.js +28 -0
- package/lib/components/index.scss +136 -0
- package/lib/components/input/html/input.js +79 -0
- package/lib/components/input/html/input.scss +42 -0
- package/lib/components/input/index.js +13 -0
- package/lib/components/input/lunatic-input.js +57 -0
- package/lib/components/input-number/html/__snapshots__/inpute-number.spec.jsx.snap +92 -0
- package/lib/components/input-number/html/input-number-default.js +78 -0
- package/lib/components/input-number/html/input-number-thousand.js +54 -0
- package/lib/components/input-number/html/input-number.js +102 -0
- package/lib/components/input-number/html/input-number.scss +11 -0
- package/lib/components/input-number/html/inpute-number.spec.js +110 -0
- package/lib/components/input-number/index.js +13 -0
- package/lib/components/input-number/lunatic-input-number.js +64 -0
- package/lib/components/loop/block-for-loop/block-for-loop-ochestrator.js +12 -0
- package/lib/components/loop/block-for-loop/block-for-loop.js +140 -0
- package/lib/components/loop/block-for-loop/index.js +13 -0
- package/lib/components/loop/block-for-loop/row.js +66 -0
- package/lib/components/loop/commons/get-init-length.js +16 -0
- package/lib/components/loop/commons/handle-row-button.js +22 -0
- package/lib/components/loop/commons/index.js +20 -0
- package/lib/components/loop/commons/row-component.js +70 -0
- package/lib/components/loop/index.js +13 -0
- package/lib/components/loop/loop.js +82 -0
- package/lib/components/loop/roster-for-loop/body.js +56 -0
- package/lib/components/loop/roster-for-loop/header.js +34 -0
- package/lib/components/loop/roster-for-loop/index.js +13 -0
- package/lib/components/loop/roster-for-loop/roster-for-loop-orchestrator.js +12 -0
- package/lib/components/loop/roster-for-loop/roster-for-loop.js +124 -0
- package/lib/components/loop/roster-for-loop/roster-table.js +48 -0
- package/lib/components/loop/roster-for-loop/roster.scss +42 -0
- package/lib/components/loop/roster-for-loop/row.js +73 -0
- package/lib/components/modal-controls/close-or-skip.js +41 -0
- package/lib/components/modal-controls/close-or-skip.spec.js +52 -0
- package/lib/components/modal-controls/index.js +13 -0
- package/lib/components/modal-controls/modal-container.js +22 -0
- package/lib/components/modal-controls/modal-container.spec.js +24 -0
- package/lib/components/modal-controls/modal-controls.js +78 -0
- package/lib/components/modal-controls/modal-controls.scss +48 -0
- package/lib/components/modal-controls/modal-controls.spec.js +77 -0
- package/lib/components/pairwise-links/index.js +13 -0
- package/lib/components/pairwise-links/orchestrator.js +70 -0
- package/lib/components/pairwise-links/pairwise-links.js +65 -0
- package/lib/components/pairwise-links/row.js +78 -0
- package/lib/components/radio/html/dist/radio-group.css +12 -0
- package/lib/components/radio/html/radio-group-content.js +45 -0
- package/lib/components/radio/html/radio-group-content.spec.js +86 -0
- package/lib/components/radio/html/radio-group.js +67 -0
- package/lib/components/radio/html/radio-group.scss +21 -0
- package/lib/components/radio/html/radio-option.js +105 -0
- package/lib/components/radio/html/radio-option.spec.js +80 -0
- package/lib/components/radio/index.js +13 -0
- package/lib/components/radio/lunatic-radio-group.js +64 -0
- package/lib/components/radio/radio-group.js +48 -0
- package/lib/components/radio/radio.scss +19 -0
- package/lib/components/roundabout/components/roundabout-container.js +20 -0
- package/lib/components/roundabout/components/roundabout-container.spec.js +23 -0
- package/lib/components/roundabout/components/roundabout-it-button.js +80 -0
- package/lib/components/roundabout/components/roundabout-it-button.spec.js +102 -0
- package/lib/components/roundabout/components/roundabout-it-container.js +19 -0
- package/lib/components/roundabout/components/roundabout-it-container.spec.js +23 -0
- package/lib/components/roundabout/components/roundabout-it-title.js +19 -0
- package/lib/components/roundabout/components/roundabout-it-title.spec.js +18 -0
- package/lib/components/roundabout/components/roundabout-label.js +19 -0
- package/lib/components/roundabout/components/roundabout-label.spec.js +18 -0
- package/lib/components/roundabout/components/roundabout-pending.js +18 -0
- package/lib/components/roundabout/components/roundabout-pending.spec.js +15 -0
- package/lib/components/roundabout/components/roundabout.scss +16 -0
- package/lib/components/roundabout/index.js +13 -0
- package/lib/components/roundabout/lunatic-roundabout.js +62 -0
- package/lib/components/roundabout/redirect.js +23 -0
- package/lib/components/roundabout/redirect.spec.js +19 -0
- package/lib/components/roundabout/roundabout.js +89 -0
- package/lib/components/roundabout/roundabout.spec.js +71 -0
- package/lib/components/sequence/index.js +13 -0
- package/lib/components/sequence/sequence.js +37 -0
- package/lib/components/sequence/sequence.scss +10 -0
- package/lib/components/sequence/sequence.spec.js +79 -0
- package/lib/components/subsequence/index.js +13 -0
- package/lib/components/subsequence/subsequence.js +35 -0
- package/lib/components/subsequence/subsequence.spec.js +79 -0
- package/lib/components/suggester/find-best-label/find-best-label.js +55 -0
- package/lib/components/suggester/find-best-label/index.js +13 -0
- package/lib/components/suggester/html/alert-icon.svg +2 -0
- package/lib/components/suggester/html/default-style.scss +175 -0
- package/lib/components/suggester/html/notification.js +31 -0
- package/lib/components/suggester/html/suggester.js +142 -0
- package/lib/components/suggester/html/wait-icon.svg +17 -0
- package/lib/components/suggester/html/warn-icon.svg +1 -0
- package/lib/components/suggester/idb-suggester/check-store.js +107 -0
- package/lib/components/suggester/idb-suggester/dist/index.dev.js +12 -0
- package/lib/components/suggester/idb-suggester/idb-suggester.js +90 -0
- package/lib/components/suggester/idb-suggester/index.js +12 -0
- package/lib/components/suggester/idb-suggester/suggester-notification.js +61 -0
- package/lib/components/suggester/idb-suggester/suggester-status.js +52 -0
- package/lib/components/suggester/index.js +13 -0
- package/lib/components/suggester/lunatic-suggester.js +106 -0
- package/lib/components/suggester/searching/create-searching.js +73 -0
- package/lib/components/suggester/searching/index.js +13 -0
- package/lib/components/suggester-loader-widget/index.js +13 -0
- package/lib/components/suggester-loader-widget/loader-row.js +129 -0
- package/lib/components/suggester-loader-widget/loader.js +136 -0
- package/lib/components/suggester-loader-widget/progress.js +41 -0
- package/lib/components/suggester-loader-widget/tools/action-tool.js +30 -0
- package/lib/components/suggester-loader-widget/tools/index.js +20 -0
- package/lib/components/suggester-loader-widget/tools/tools.js +18 -0
- package/lib/components/suggester-loader-widget/widget-container.js +44 -0
- package/lib/components/suggester-loader-widget/widget.js +145 -0
- package/lib/components/suggester-loader-widget/widget.scss +176 -0
- package/lib/components/switch/html/switch.js +95 -0
- package/lib/components/switch/html/switch.scss +47 -0
- package/lib/components/switch/index.js +13 -0
- package/lib/components/switch/lunatic-switch.js +66 -0
- package/lib/components/table/cell.js +102 -0
- package/lib/components/table/header.js +40 -0
- package/lib/components/table/index.js +13 -0
- package/lib/components/table/lunatic-table.js +92 -0
- package/lib/components/table/row.js +43 -0
- package/lib/components/table/table-orchestrator.js +50 -0
- package/lib/components/textarea/html/textarea.js +54 -0
- package/lib/components/textarea/html/textarea.scss +8 -0
- package/lib/components/textarea/index.js +13 -0
- package/lib/components/textarea/lunatic-textarea.js +72 -0
- package/lib/components/type.js +5 -0
- package/lib/constants/component-types.js +8 -0
- package/lib/constants/declarations.js +28 -0
- package/lib/constants/event-types.js +29 -0
- package/lib/constants/index.js +60 -0
- package/lib/constants/supported-preferences.js +13 -0
- package/lib/constants/value-types.js +16 -0
- package/lib/constants/variable-types.js +12 -0
- package/lib/dist/index.dev.js +31 -0
- package/lib/i18n/build-dictionary.js +59 -0
- package/lib/i18n/dictionary.js +34 -0
- package/lib/i18n/index.js +28 -0
- package/lib/i18n/inputNumberProps.js +20 -0
- package/lib/index.js +28 -1767
- package/lib/insee.d.js +1 -0
- package/lib/src/components/commons/components/md-label/index.d.ts +1 -0
- package/lib/src/components/commons/components/md-label/link.d.ts +7 -0
- package/lib/src/components/commons/components/md-label/md-label.d.ts +8 -0
- package/lib/src/components/type.d.ts +195 -0
- package/lib/src/constants/component-types.d.ts +1 -0
- package/lib/src/constants/declarations.d.ts +9 -0
- package/lib/src/constants/event-types.d.ts +10 -0
- package/lib/src/constants/index.d.ts +5 -0
- package/lib/src/constants/supported-preferences.d.ts +1 -0
- package/lib/src/constants/value-types.d.ts +5 -0
- package/lib/src/constants/variable-types.d.ts +2 -0
- package/lib/src/i18n/build-dictionary.d.ts +24 -0
- package/lib/src/i18n/dictionary.d.ts +37 -0
- package/lib/src/i18n/index.d.ts +7 -0
- package/lib/src/i18n/inputNumberProps.d.ts +13 -0
- package/lib/src/index.d.ts +3 -0
- package/lib/src/type.utils.d.ts +1 -0
- package/lib/src/use-lunatic/actions.d.ts +289 -0
- package/lib/src/use-lunatic/commons/calculated-variables.d.ts +8 -0
- package/lib/src/use-lunatic/commons/check-loops.d.ts +3 -0
- package/lib/src/use-lunatic/commons/check-pager.d.ts +5 -0
- package/lib/src/use-lunatic/commons/compile-controls.d.ts +7 -0
- package/lib/src/use-lunatic/commons/compose.d.ts +3 -0
- package/lib/src/use-lunatic/commons/create-map-pages.d.ts +7 -0
- package/lib/src/use-lunatic/commons/execute-condition-filter.d.ts +3 -0
- 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/execute-expression.spec.d.ts +1 -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-expressions.d.ts +9 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-component-expressions.spec.d.ts +1 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-component-value.d.ts +6 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-components.d.ts +12 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-from-state.d.ts +699 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-management.d.ts +6 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-missing-response.d.ts +11 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-pagination.d.ts +9 -0
- package/lib/src/use-lunatic/commons/fill-components/fill-specific-expression.d.ts +571 -0
- package/lib/src/use-lunatic/commons/fill-components/index.d.ts +1 -0
- package/lib/src/use-lunatic/commons/get-compatible-vtl-expression.d.ts +6 -0
- 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-components-from-state.d.ts +7 -0
- package/lib/src/use-lunatic/commons/get-data.d.ts +26 -0
- package/lib/src/use-lunatic/commons/get-errors-without-empty-value.d.ts +6 -0
- package/lib/src/use-lunatic/commons/getOverview.d.ts +19 -0
- package/lib/src/use-lunatic/commons/index.d.ts +13 -0
- package/lib/src/use-lunatic/commons/is-First-last-page.d.ts +6 -0
- package/lib/src/use-lunatic/commons/is-paginated-loop.d.ts +6 -0
- package/lib/src/use-lunatic/commons/is-roundabout.d.ts +2 -0
- package/lib/src/use-lunatic/commons/page-tag.d.ts +12 -0
- package/lib/src/use-lunatic/commons/use-components-from-state.d.ts +4 -0
- package/lib/src/use-lunatic/hooks/use-loop-variables.d.ts +5 -0
- package/lib/src/use-lunatic/index.d.ts +1 -0
- package/lib/src/use-lunatic/initial-state.d.ts +3 -0
- package/lib/src/use-lunatic/lunatic-context.d.ts +31 -0
- package/lib/src/use-lunatic/reducer/commons/index.d.ts +4 -0
- package/lib/src/use-lunatic/reducer/commons/is-empty-on-empty-page.d.ts +3 -0
- package/lib/src/use-lunatic/reducer/commons/is-loop-component.d.ts +12 -0
- package/lib/src/use-lunatic/reducer/commons/resize-array-variable.d.ts +5 -0
- package/lib/src/use-lunatic/reducer/commons/validate-condition-filter.d.ts +6 -0
- package/lib/src/use-lunatic/reducer/index.d.ts +1 -0
- package/lib/src/use-lunatic/reducer/overview/overview-on-change.d.ts +2 -0
- package/lib/src/use-lunatic/reducer/overview/overview-on-init.d.ts +99 -0
- package/lib/src/use-lunatic/reducer/reduce-go-next-page.d.ts +4 -0
- package/lib/src/use-lunatic/reducer/reduce-go-previous-page.d.ts +3 -0
- package/lib/src/use-lunatic/reducer/reduce-go-to-page.d.ts +4 -0
- 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 +15 -0
- package/lib/src/use-lunatic/reducer/reduce-on-set-waiting.d.ts +4 -0
- package/lib/src/use-lunatic/reducer/reduce-roundabout.d.ts +99 -0
- package/lib/src/use-lunatic/reducer/reduce-update-state.d.ts +3 -0
- package/lib/src/use-lunatic/reducer/reducer.d.ts +4 -0
- package/lib/src/use-lunatic/reducer/validate-controls/validation-utils.d.ts +6 -0
- package/lib/src/use-lunatic/type-source.d.ts +281 -0
- package/lib/src/use-lunatic/type.d.ts +143 -0
- package/lib/src/use-lunatic/use-lunatic.d.ts +84 -0
- package/lib/src/use-lunatic/use-lunatic.test.d.ts +1 -0
- package/lib/src/use-lunatic/use-suggesters.d.ts +19 -0
- package/lib/src/utils/constants/features.d.ts +3 -0
- package/lib/src/utils/constants/index.d.ts +5 -0
- package/lib/src/utils/constants/links.d.ts +2 -0
- package/lib/src/utils/constants/missing.d.ts +2 -0
- package/lib/src/utils/constants/variable-status.d.ts +5 -0
- package/lib/src/utils/constants/variable-types.d.ts +1 -0
- package/lib/src/utils/idb-tools/clear-store.d.ts +2 -0
- package/lib/src/utils/idb-tools/get-idb.d.ts +2 -0
- package/lib/src/utils/idb-tools/insert-entity.d.ts +2 -0
- package/lib/src/utils/is-element.d.ts +3 -0
- package/lib/src/utils/is-object.d.ts +4 -0
- package/lib/src/utils/object.d.ts +4 -0
- package/lib/src/utils/store-tools/constantes.d.ts +21 -0
- package/lib/src/utils/store-tools/initStore.d.ts +2 -0
- package/lib/src/utils/store-tools/open-or-create-store.d.ts +2 -0
- package/lib/src/utils/suggester-workers/append-to-index/create-append-task.d.ts +7 -0
- package/lib/src/utils/suggester-workers/create-worker-ts.d.ts +1 -0
- package/lib/src/utils/to-number.d.ts +4 -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/Introduction.stories.mdx +114 -0
- package/lib/stories/checkbox-boolean/checkboxBoolean.stories.js +34 -0
- package/lib/stories/checkbox-boolean/source.json +58 -0
- package/lib/stories/checkbox-group/checkbox-group.stories.js +34 -0
- package/lib/stories/checkbox-group/source.json +86 -0
- package/lib/stories/checkbox-one/checkboxOne.stories.js +43 -0
- package/lib/stories/checkbox-one/source.json +52 -0
- package/lib/stories/checkboxGroup/checkboxGroup.stories.js +43 -0
- package/lib/stories/checkboxGroup/source.json +403 -0
- package/lib/stories/custom-mui/checkbox-boolean-mui.js +32 -0
- package/lib/stories/custom-mui/checkbox-group-mui.js +68 -0
- package/lib/stories/custom-mui/checkbox-one-mui.js +16 -0
- package/lib/stories/custom-mui/index.js +111 -0
- package/lib/stories/custom-mui/input-mui.js +52 -0
- package/lib/stories/custom-mui/input-number-mui.js +40 -0
- package/lib/stories/custom-mui/radio-mui.js +62 -0
- package/lib/stories/custom-mui/suggester-mui/index.js +13 -0
- package/lib/stories/custom-mui/suggester-mui/suggester-mui.js +304 -0
- package/lib/stories/custom-mui/switch-mui.js +47 -0
- package/lib/stories/custom-mui/table-mui.js +28 -0
- package/lib/stories/custom-mui/tbody-mui.js +23 -0
- package/lib/stories/custom-mui/td-mui.js +25 -0
- package/lib/stories/custom-mui/textarea-mui.js +43 -0
- package/lib/stories/custom-mui/th-mui.js +24 -0
- package/lib/stories/custom-mui/thead-mui.js +23 -0
- package/lib/stories/custom-mui/tr-mui.js +33 -0
- package/lib/stories/date-picker/data.json +3 -0
- package/lib/stories/date-picker/datepicker.stories.js +38 -0
- package/lib/stories/date-picker/source.json +110 -0
- package/lib/stories/declaration/data.json +1 -0
- package/lib/stories/declaration/input.stories.js +36 -0
- package/lib/stories/declaration/source.json +74 -0
- package/lib/stories/dropdown/data.json +16 -0
- package/lib/stories/dropdown/dropdown.stories.js +39 -0
- package/lib/stories/dropdown/source.json +158 -0
- package/lib/stories/filter-description/filter-description.stories.js +50 -0
- package/lib/stories/filter-description/source-options.json +81 -0
- package/lib/stories/filter-description/source.json +11 -0
- package/lib/stories/input/data.json +1 -0
- package/lib/stories/input/input.stories.js +36 -0
- package/lib/stories/input/source.json +91 -0
- package/lib/stories/input-number/input-number.stories.js +56 -0
- package/lib/stories/input-number/source-euros.json +37 -0
- package/lib/stories/input-number/source-thansand.json +34 -0
- package/lib/stories/input-number/source.json +33 -0
- package/lib/stories/loop/block-for-loop.stories.js +41 -0
- package/lib/stories/loop/roster-for-loop.stories.js +34 -0
- package/lib/stories/loop/source-bloc.json +114 -0
- package/lib/stories/loop/source-roster.json +114 -0
- package/lib/stories/loop/source-with-header.json +127 -0
- package/lib/stories/overview/data.json +1 -0
- package/lib/stories/overview/overview.stories.js +37 -0
- package/lib/stories/overview/source.json +28 -0
- package/lib/stories/overview/sourceWithHierarchy.json +6290 -0
- package/lib/stories/pairwise/data.json +12 -0
- package/lib/stories/pairwise/links.json +270 -0
- package/lib/stories/pairwise/pairwise-links.stories.js +137 -0
- package/lib/stories/paste-questionnaire/source.json +6290 -0
- package/lib/stories/paste-questionnaire/test.stories.js +84 -0
- package/lib/stories/questionnaires/logement/data.json +2686 -0
- package/lib/stories/questionnaires/logement/logement.stories.js +76 -0
- package/lib/stories/questionnaires/logement/source-sequence.json +34181 -0
- package/lib/stories/questionnaires/logement/source-sum.json +34612 -0
- package/lib/stories/questionnaires/logement/source.json +34191 -0
- package/lib/stories/questionnaires/recensement/data.json +12 -0
- package/lib/stories/questionnaires/recensement/recensement.stories.js +52 -0
- package/lib/stories/questionnaires/recensement/source.json +15190 -0
- package/lib/stories/questionnaires/rp/data.json +5 -0
- package/lib/stories/questionnaires/rp/rp.stories.js +37 -0
- package/lib/stories/questionnaires/rp/source.json +262 -0
- package/lib/stories/questionnaires/simpsons/simpsons.stories.js +553 -0
- package/lib/stories/questionnaires/simpsons/source.json +6296 -0
- package/lib/stories/questionnaires-test/V2_DeclarationsSimples.json +848 -0
- package/lib/stories/questionnaires-test/V2_MinMaxSum_Boucles.json +509 -0
- package/lib/stories/questionnaires-test/V2_QuestSimple_Boucles.json +4091 -0
- package/lib/stories/questionnaires-test/V2_TCMRallyeGames.json +2892 -0
- package/lib/stories/questionnaires-test/controls/V2_ControlesNonNum_horsBoucle_PasPageFin.json +666 -0
- package/lib/stories/questionnaires-test/controls/V2_ControlesNum_horsBoucle_PasPageFin.json +1966 -0
- package/lib/stories/questionnaires-test/controls/V2_Controles_BouclesLiees2_PasPageFin.json +709 -0
- package/lib/stories/questionnaires-test/controls/V2_Controles_BouclesLiees_PasPageFin.json +533 -0
- package/lib/stories/questionnaires-test/controls/boucles-n.json +202 -0
- package/lib/stories/questionnaires-test/controls/controls.stories.js +97 -0
- package/lib/stories/questionnaires-test/test-dylan.json +558 -0
- package/lib/stories/questionnaires-test/test.stories.js +93 -0
- package/lib/stories/radio/radio.stories.js +43 -0
- package/lib/stories/radio/source.json +51 -0
- package/lib/stories/roundabout/data.json +25 -0
- package/lib/stories/roundabout/roundabout.stories.js +36 -0
- package/lib/stories/roundabout/source.json +273 -0
- package/lib/stories/suggester/simple.json +146 -0
- package/lib/stories/suggester/source.json +254 -0
- package/lib/stories/suggester/suggester-workers.stories.js +208 -0
- package/lib/stories/suggester/suggester.stories.js +84 -0
- package/lib/stories/switch/README.md +31 -0
- package/lib/stories/switch/data-forced.json +48 -0
- package/lib/stories/switch/source.json +80 -0
- package/lib/stories/switch/switch.stories.js +39 -0
- package/lib/stories/table/data-roster.json +1 -0
- package/lib/stories/table/data.json +1 -0
- package/lib/stories/table/source-roster.json +513 -0
- package/lib/stories/table/source.json +31 -0
- package/lib/stories/table/table-dynamique.json +67 -0
- package/lib/stories/table/table.stories.js +63 -0
- package/lib/stories/textarea/data.json +1 -0
- package/lib/stories/textarea/source.json +51 -0
- package/lib/stories/textarea/textarea.stories.js +36 -0
- package/lib/stories/utils/custom-lunatic.scss +28 -0
- package/lib/stories/utils/default-arg-types.js +22 -0
- package/lib/stories/utils/options.js +32 -0
- package/lib/stories/utils/orchestrator.js +263 -0
- package/lib/stories/utils/orchestrator.scss +5 -0
- package/lib/stories/utils/overview.js +54 -0
- package/lib/stories/utils/overview.scss +30 -0
- package/lib/stories/utils/waiting/index.js +13 -0
- package/lib/stories/utils/waiting/preloader.svg +1 -0
- package/lib/stories/utils/waiting/waiting.js +33 -0
- package/lib/stories/utils/waiting/waiting.scss +21 -0
- package/lib/tests/utils/lunatic.d.ts +11 -0
- package/lib/type.utils.js +5 -0
- package/lib/use-lunatic/actions.js +60 -0
- package/lib/use-lunatic/commons/calculated-variables.js +104 -0
- package/lib/use-lunatic/commons/check-loops.js +99 -0
- package/lib/use-lunatic/commons/check-pager.js +24 -0
- package/lib/use-lunatic/commons/compile-controls.js +72 -0
- package/lib/use-lunatic/commons/compose.js +20 -0
- package/lib/use-lunatic/commons/create-map-pages.js +81 -0
- package/lib/use-lunatic/commons/execute-condition-filter.js +27 -0
- package/lib/use-lunatic/commons/execute-expression/create-execute-expression.js +268 -0
- package/lib/use-lunatic/commons/execute-expression/create-memoizer.js +63 -0
- package/lib/use-lunatic/commons/execute-expression/create-refresh-calculated.js +148 -0
- package/lib/use-lunatic/commons/execute-expression/execute-expression.js +91 -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/execute-expression/get-safety-expression.js +35 -0
- package/lib/use-lunatic/commons/execute-expression/index.js +13 -0
- package/lib/use-lunatic/commons/fill-components/fill-component-expressions.js +111 -0
- package/lib/use-lunatic/commons/fill-components/fill-component-expressions.spec.js +42 -0
- package/lib/use-lunatic/commons/fill-components/fill-component-value.js +22 -0
- package/lib/use-lunatic/commons/fill-components/fill-components.js +45 -0
- package/lib/use-lunatic/commons/fill-components/fill-from-state.js +30 -0
- package/lib/use-lunatic/commons/fill-components/fill-management.js +23 -0
- package/lib/use-lunatic/commons/fill-components/fill-missing-response.js +35 -0
- package/lib/use-lunatic/commons/fill-components/fill-pagination.js +24 -0
- package/lib/use-lunatic/commons/fill-components/fill-specific-expression.js +46 -0
- package/lib/use-lunatic/commons/fill-components/index.js +13 -0
- package/lib/use-lunatic/commons/get-compatible-vtl-expression.js +28 -0
- package/lib/use-lunatic/commons/get-component-value/get-component-value.js +176 -0
- package/lib/use-lunatic/commons/get-component-value/index.js +13 -0
- package/lib/use-lunatic/commons/get-components-from-state.js +47 -0
- package/lib/use-lunatic/commons/get-data.js +80 -0
- package/lib/use-lunatic/commons/get-errors-without-empty-value.js +25 -0
- package/lib/use-lunatic/commons/getOverview.js +40 -0
- package/lib/use-lunatic/commons/index.js +109 -0
- package/lib/use-lunatic/commons/is-First-last-page.js +18 -0
- package/lib/use-lunatic/commons/is-paginated-loop.js +11 -0
- package/lib/use-lunatic/commons/is-roundabout.js +10 -0
- package/lib/use-lunatic/commons/load-suggesters.js +158 -0
- package/lib/use-lunatic/commons/page-tag.js +72 -0
- package/lib/use-lunatic/commons/use-components-from-state.js +41 -0
- package/lib/use-lunatic/hooks/use-loop-variables.js +26 -0
- package/lib/use-lunatic/index.js +13 -0
- package/lib/use-lunatic/initial-state.js +49 -0
- package/lib/use-lunatic/lunatic-context.js +83 -0
- package/lib/use-lunatic/reducer/commons/index.js +44 -0
- package/lib/use-lunatic/reducer/commons/is-empty-on-empty-page.js +32 -0
- package/lib/use-lunatic/reducer/commons/is-loop-component.js +10 -0
- package/lib/use-lunatic/reducer/commons/resize-array-variable.js +32 -0
- package/lib/use-lunatic/reducer/commons/validate-condition-filter.js +29 -0
- package/lib/use-lunatic/reducer/index.js +13 -0
- package/lib/use-lunatic/reducer/overview/overview-on-change.js +49 -0
- package/lib/use-lunatic/reducer/overview/overview-on-init.js +104 -0
- package/lib/use-lunatic/reducer/reduce-go-next-page.js +181 -0
- package/lib/use-lunatic/reducer/reduce-go-previous-page.js +146 -0
- package/lib/use-lunatic/reducer/reduce-go-to-page.js +79 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/__mocks__/source-cleaning-loop.json +926 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/index.js +13 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.js +72 -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 +113 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-variables-array.js +44 -0
- package/lib/use-lunatic/reducer/reduce-handle-change/reduce-variables-simple.js +28 -0
- package/lib/use-lunatic/reducer/reduce-on-init.js +238 -0
- package/lib/use-lunatic/reducer/reduce-on-set-waiting.js +21 -0
- package/lib/use-lunatic/reducer/reduce-roundabout.js +29 -0
- package/lib/use-lunatic/reducer/reduce-update-state.js +22 -0
- package/lib/use-lunatic/reducer/reducer.js +37 -0
- package/lib/use-lunatic/reducer/validate-controls/validation-utils.js +63 -0
- package/lib/use-lunatic/type-source.js +24 -0
- package/lib/use-lunatic/type.js +5 -0
- package/lib/use-lunatic/use-lunatic.js +189 -0
- package/lib/use-lunatic/use-lunatic.test.js +168 -0
- package/lib/use-lunatic/use-suggesters.js +158 -0
- package/lib/utils/constants/alphabet.js +8 -0
- package/lib/utils/constants/features.js +12 -0
- package/lib/utils/constants/index.js +60 -0
- package/lib/utils/constants/links.js +10 -0
- package/lib/utils/constants/missing.js +10 -0
- package/lib/utils/constants/variable-status.js +16 -0
- package/lib/utils/constants/variable-types.js +8 -0
- package/lib/utils/idb-tools/clear-store.js +40 -0
- package/lib/utils/idb-tools/create-db-opener.js +47 -0
- package/lib/utils/idb-tools/create-open-db.js +29 -0
- package/lib/utils/idb-tools/get-entity.js +21 -0
- package/lib/utils/idb-tools/get-idb.js +13 -0
- package/lib/utils/idb-tools/idb-bulk-insert.js +134 -0
- package/lib/utils/idb-tools/index.js +64 -0
- package/lib/utils/idb-tools/insert-entity.js +21 -0
- package/lib/utils/idb-tools/open-db.js +24 -0
- package/lib/utils/idb-tools/open-or-create-db.js +42 -0
- package/lib/utils/is-element.js +10 -0
- package/lib/utils/is-object.js +13 -0
- package/lib/utils/object.js +31 -0
- package/lib/utils/store-tools/auto-load.js +162 -0
- package/lib/utils/store-tools/clear-store-data.js +33 -0
- package/lib/utils/store-tools/clear-store-info.js +33 -0
- package/lib/utils/store-tools/constantes.js +31 -0
- package/lib/utils/store-tools/create/create.js +51 -0
- package/lib/utils/store-tools/create/index.js +20 -0
- package/lib/utils/store-tools/create/update-store-info.js +27 -0
- package/lib/utils/store-tools/get-store-count.js +24 -0
- package/lib/utils/store-tools/index.js +54 -0
- package/lib/utils/store-tools/initStore.js +56 -0
- package/lib/utils/store-tools/open-or-create-store.js +52 -0
- package/lib/utils/store-tools/use-store-index.js +58 -0
- package/lib/utils/suggester-workers/append-to-index/append.js +78 -0
- package/lib/utils/suggester-workers/append-to-index/append.worker.js +33 -0
- package/lib/utils/suggester-workers/append-to-index/create-append-task.js +66 -0
- package/lib/utils/suggester-workers/append-to-index/dist/append.worker.dev.js +37 -0
- package/lib/utils/suggester-workers/append-to-index/dist/create-append-task.js +69 -0
- package/lib/utils/suggester-workers/append-to-index/dist/index.dev.js +24 -0
- package/lib/utils/suggester-workers/append-to-index/index.js +20 -0
- package/lib/utils/suggester-workers/append-to-index/prepare-entities.js +88 -0
- package/lib/utils/suggester-workers/append-to-index/store-messages.js +45 -0
- package/lib/utils/suggester-workers/commons-tokenizer/create-entity-tokenizer.js +54 -0
- package/lib/utils/suggester-workers/commons-tokenizer/create-fields-tokenizer.js +77 -0
- package/lib/utils/suggester-workers/commons-tokenizer/create-filter-stop-words.js +36 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/compose-filters.js +21 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.js +36 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.spec.js +15 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-accents.js +19 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-accents.spec.js +17 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-double.js +25 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-double.spec.js +24 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-length.js +15 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-length.spec.js +24 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-stemmer.js +23 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-stemmer.spec.js +17 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.js +53 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.spec.js +15 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.js +16 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.spec.js +15 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/index.js +20 -0
- package/lib/utils/suggester-workers/commons-tokenizer/filters/stop-words.js +9 -0
- package/lib/utils/suggester-workers/commons-tokenizer/get-regexp-from-pattern.js +14 -0
- package/lib/utils/suggester-workers/commons-tokenizer/get-stemmer.js +23 -0
- package/lib/utils/suggester-workers/commons-tokenizer/index.js +69 -0
- package/lib/utils/suggester-workers/commons-tokenizer/prepare-string-indexation.js +18 -0
- package/lib/utils/suggester-workers/commons-tokenizer/soft-tokenizer.js +12 -0
- package/lib/utils/suggester-workers/create-worker-ts.js +54 -0
- package/lib/utils/suggester-workers/create-worker.js +54 -0
- package/lib/utils/suggester-workers/find-best-label/find-best-label.js +63 -0
- package/lib/utils/suggester-workers/find-best-label/find-best-label.worker.js +53 -0
- package/lib/utils/suggester-workers/find-best-label/index.js +1 -0
- package/lib/utils/suggester-workers/find-best-label/tokenize.js +45 -0
- package/lib/utils/suggester-workers/find-best-label/tokenize.spec.js +25 -0
- package/lib/utils/suggester-workers/searching/compute-score.js +36 -0
- package/lib/utils/suggester-workers/searching/get-db.js +48 -0
- package/lib/utils/suggester-workers/searching/index.js +13 -0
- package/lib/utils/suggester-workers/searching/order/create-alphanumeric-orderer.js +28 -0
- package/lib/utils/suggester-workers/searching/order/index.js +25 -0
- package/lib/utils/suggester-workers/searching/query-parser/index.js +20 -0
- package/lib/utils/suggester-workers/searching/query-parser/query-parser-soft.js +12 -0
- package/lib/utils/suggester-workers/searching/query-parser/query-parser-soft.spec.js +27 -0
- package/lib/utils/suggester-workers/searching/query-parser/query-parser-tokenized.js +35 -0
- package/lib/utils/suggester-workers/searching/resolve-query-parser.js +57 -0
- package/lib/utils/suggester-workers/searching/search-in-index.js +22 -0
- package/lib/utils/suggester-workers/searching/searching.js +141 -0
- package/lib/utils/suggester-workers/searching/searching.worker.js +20 -0
- package/lib/utils/to-number.js +18 -0
- package/lib/utils/vtl/dataset-builder.js +27 -0
- package/lib/utils/vtl/index.js +13 -0
- package/package.json +164 -142
- package/lib/index.js.map +0 -1
- package/src/components/breadcrumb/breadcrumb.scss +0 -20
- package/src/components/breadcrumb/component.js +0 -29
- package/src/components/breadcrumb/index.js +0 -1
- package/src/components/button/button.scss +0 -24
- package/src/components/button/component.js +0 -25
- package/src/components/button/index.js +0 -1
- package/src/components/checkbox/boolean.js +0 -152
- package/src/components/checkbox/checkbox.scss +0 -71
- package/src/components/checkbox/group.js +0 -187
- package/src/components/checkbox/index.js +0 -3
- package/src/components/checkbox/one.js +0 -10
- package/src/components/components.js +0 -17
- package/src/components/datepicker/component.js +0 -10
- package/src/components/datepicker/datepicker.scss +0 -1
- package/src/components/datepicker/index.js +0 -1
- package/src/components/declarations/component.js +0 -38
- package/src/components/declarations/declarations.scss +0 -38
- package/src/components/declarations/index.js +0 -1
- package/src/components/declarations/wrappers/index.js +0 -3
- package/src/components/declarations/wrappers/input-declarations-wrapper.js +0 -229
- package/src/components/declarations/wrappers/list-declarations-wrapper.js +0 -203
- package/src/components/declarations/wrappers/simple-declarations-wrapper.js +0 -54
- package/src/components/dropdown/commons/actions.js +0 -56
- package/src/components/dropdown/commons/children-to-option.js +0 -9
- package/src/components/dropdown/commons/cleaner-callbacks.js +0 -58
- package/src/components/dropdown/commons/components/closed.icon.js +0 -24
- package/src/components/dropdown/commons/components/dropdown-container.js +0 -29
- package/src/components/dropdown/commons/components/dropdown-field.js +0 -46
- package/src/components/dropdown/commons/components/dropdown.js +0 -183
- package/src/components/dropdown/commons/components/label.js +0 -28
- package/src/components/dropdown/commons/components/opened.icon.js +0 -24
- package/src/components/dropdown/commons/components/panel.js +0 -78
- package/src/components/dropdown/commons/event-callbacks/index.js +0 -5
- package/src/components/dropdown/commons/event-callbacks/on-keydown-callback.js +0 -29
- package/src/components/dropdown/commons/event-callbacks/on-mousedown-callback.js +0 -11
- package/src/components/dropdown/commons/reducer.js +0 -149
- package/src/components/dropdown/commons/tools/index.js +0 -17
- package/src/components/dropdown/component.js +0 -125
- package/src/components/dropdown/dropdown-edit/cross.icon.js +0 -20
- package/src/components/dropdown/dropdown-edit/dropdown-edit.js +0 -190
- package/src/components/dropdown/dropdown-edit/icone.js +0 -33
- package/src/components/dropdown/dropdown-edit/index.js +0 -11
- package/src/components/dropdown/dropdown-edit/option.js +0 -62
- package/src/components/dropdown/dropdown-edit/prefix-tools.js +0 -51
- package/src/components/dropdown/dropdown-simple/dropdown.js +0 -155
- package/src/components/dropdown/dropdown-simple/index.js +0 -20
- package/src/components/dropdown/dropdown-simple/option.js +0 -15
- package/src/components/dropdown/dropdown.scss +0 -175
- package/src/components/dropdown/index.js +0 -1
- package/src/components/filter-description/component.js +0 -41
- package/src/components/filter-description/index.js +0 -1
- package/src/components/icon/assets/checkbox-checked.js +0 -16
- package/src/components/icon/assets/checkbox-unchecked.js +0 -16
- package/src/components/icon/assets/index.js +0 -4
- package/src/components/icon/assets/radio-checked.js +0 -16
- package/src/components/icon/assets/radio-unchecked.js +0 -16
- package/src/components/icon/component.js +0 -33
- package/src/components/icon/icon.scss +0 -13
- package/src/components/icon/index.js +0 -1
- package/src/components/index.js +0 -4
- package/src/components/index.scss +0 -141
- package/src/components/input/index.js +0 -2
- package/src/components/input/input-number.js +0 -44
- package/src/components/input/input.js +0 -10
- package/src/components/input/input.scss +0 -35
- package/src/components/loop/component.js +0 -105
- package/src/components/loop/index.js +0 -1
- package/src/components/loop/loop.scss +0 -11
- package/src/components/loop/paginated-component.js +0 -205
- package/src/components/loop/wrapper.js +0 -15
- package/src/components/loop-constructor/block/block.scss +0 -8
- package/src/components/loop-constructor/block/component.js +0 -8
- package/src/components/loop-constructor/block/index.js +0 -1
- package/src/components/loop-constructor/index.js +0 -1
- package/src/components/loop-constructor/roster/component.js +0 -7
- package/src/components/loop-constructor/roster/index.js +0 -1
- package/src/components/loop-constructor/wrapper/body-component.js +0 -118
- package/src/components/loop-constructor/wrapper/build-components.js +0 -33
- package/src/components/loop-constructor/wrapper/component.js +0 -154
- package/src/components/loop-constructor/wrapper/index.js +0 -1
- package/src/components/progress-bar/component.js +0 -28
- package/src/components/progress-bar/index.js +0 -1
- package/src/components/progress-bar/progress-bar.scss +0 -52
- package/src/components/radio/component.js +0 -8
- package/src/components/radio/index.js +0 -1
- package/src/components/radio/radio.scss +0 -57
- package/src/components/sequence/component.js +0 -41
- package/src/components/sequence/index.js +0 -1
- package/src/components/sequence/sequence.scss +0 -8
- package/src/components/subsequence/component.js +0 -47
- package/src/components/subsequence/index.js +0 -1
- package/src/components/suggester/component.js +0 -103
- package/src/components/suggester/index.js +0 -1
- package/src/components/table/index.js +0 -1
- package/src/components/table/table.js +0 -162
- package/src/components/table/table.scss +0 -24
- package/src/components/textarea/component.js +0 -10
- package/src/components/textarea/index.js +0 -1
- package/src/components/textarea/textarea.scss +0 -6
- package/src/components/tooltip/img/index.js +0 -4
- package/src/components/tooltip/index.js +0 -1
- package/src/components/tooltip/response.js +0 -52
- package/src/components/tooltip/tooltip.scss +0 -27
- package/src/constants/component-types.js +0 -1
- package/src/constants/declarations.js +0 -14
- package/src/constants/index.js +0 -4
- package/src/constants/supported-preferences.js +0 -10
- package/src/constants/value-types.js +0 -5
- package/src/constants/variable-types.js +0 -4
- package/src/stories/breadcrumb/README.md +0 -14
- package/src/stories/breadcrumb/breadcrumb.stories.js +0 -19
- package/src/stories/button/README.md +0 -14
- package/src/stories/button/button.stories.js +0 -27
- package/src/stories/checkbox-boolean/README.md +0 -27
- package/src/stories/checkbox-boolean/checkbox-boolean.stories.js +0 -30
- package/src/stories/checkbox-boolean/data.json +0 -48
- package/src/stories/checkbox-group/README.md +0 -29
- package/src/stories/checkbox-group/checkbox-group.stories.js +0 -35
- package/src/stories/checkbox-group/data-vtl.json +0 -89
- package/src/stories/checkbox-group/data.json +0 -89
- package/src/stories/checkbox-one/README.md +0 -31
- package/src/stories/checkbox-one/checkbox-one.stories.js +0 -32
- package/src/stories/checkbox-one/data-vtl.json +0 -33
- package/src/stories/checkbox-one/data.json +0 -33
- package/src/stories/datepicker/README.md +0 -31
- package/src/stories/datepicker/data.json +0 -28
- package/src/stories/datepicker/datepicker.stories.js +0 -36
- package/src/stories/declarations/README.md +0 -19
- package/src/stories/declarations/declarations.stories.js +0 -112
- package/src/stories/dropdown/README.md +0 -44
- package/src/stories/dropdown/data-naf.json +0 -6963
- package/src/stories/dropdown/data-props.json +0 -81
- package/src/stories/dropdown/data.json +0 -78
- package/src/stories/dropdown/dropdown.stories.js +0 -65
- package/src/stories/filter-description/README.md +0 -15
- package/src/stories/filter-description/filter-description.stories.js +0 -53
- package/src/stories/input/README.md +0 -33
- package/src/stories/input/data.json +0 -28
- package/src/stories/input/input.stories.js +0 -44
- package/src/stories/input-number/README.md +0 -37
- package/src/stories/input-number/data.json +0 -30
- package/src/stories/input-number/input-number.stories.js +0 -53
- package/src/stories/loop/README.md +0 -25
- package/src/stories/loop/loop.stories.js +0 -80
- package/src/stories/loop/with-loop/data-loop-deeper.json +0 -298
- package/src/stories/loop/with-loop/data-loop.json +0 -211
- package/src/stories/loop/with-loop/data-vqs.json +0 -1384
- package/src/stories/loop/with-loop/index.js +0 -3
- package/src/stories/loop/with-roster/data-loop-deeper.json +0 -298
- package/src/stories/loop/with-roster/data-loop.json +0 -213
- package/src/stories/loop/with-roster/data-vqs.json +0 -1383
- package/src/stories/loop/with-roster/index.js +0 -3
- package/src/stories/loop-constructor/README.md +0 -27
- package/src/stories/loop-constructor/data-input.json +0 -64
- package/src/stories/loop-constructor/data-loop.json +0 -66
- package/src/stories/loop-constructor/data-roster.json +0 -68
- package/src/stories/loop-constructor/loop-constructor.stories.js +0 -59
- package/src/stories/pagination/deeper-loop.json +0 -327
- package/src/stories/pagination/pagination.stories.js +0 -57
- package/src/stories/pagination/simple-loop.json +0 -277
- package/src/stories/pagination/simpsons-question.json +0 -4262
- package/src/stories/pagination/simpsons-sequence.json +0 -4362
- package/src/stories/progress-bar/README.md +0 -13
- package/src/stories/progress-bar/progress-bar.stories.js +0 -24
- package/src/stories/questionnaire/fat.json +0 -6558
- package/src/stories/questionnaire/questionnaire.stories.js +0 -25
- package/src/stories/radio/README.md +0 -31
- package/src/stories/radio/data-vtl.json +0 -32
- package/src/stories/radio/data.json +0 -32
- package/src/stories/radio/radio.stories.js +0 -35
- package/src/stories/sequence/README.md +0 -18
- package/src/stories/sequence/sequence.stories.js +0 -28
- package/src/stories/subsequence/README.md +0 -18
- package/src/stories/subsequence/subsequence.stories.js +0 -28
- package/src/stories/suggester/README.md +0 -29
- package/src/stories/suggester/data-vtl.json +0 -28
- package/src/stories/suggester/data.json +0 -28
- package/src/stories/suggester/suggester.stories.js +0 -38
- package/src/stories/table/README.md +0 -29
- package/src/stories/table/data-default.json +0 -19
- package/src/stories/table/data-one-axis-one-measure.json +0 -124
- package/src/stories/table/data-one-axis-two-measures.json +0 -193
- package/src/stories/table/data-one-hierarchical-axis.json +0 -204
- package/src/stories/table/data-roster.json +0 -471
- package/src/stories/table/data-two-axis-one-measure.json +0 -492
- package/src/stories/table/table.stories.js +0 -77
- package/src/stories/textarea/README.md +0 -33
- package/src/stories/textarea/data-forced.json +0 -28
- package/src/stories/textarea/data.json +0 -28
- package/src/stories/textarea/textarea.stories.js +0 -67
- package/src/stories/tooltip-response/README.md +0 -14
- package/src/stories/tooltip-response/md-link.json +0 -31
- package/src/stories/tooltip-response/md-tooltip.json +0 -31
- package/src/stories/tooltip-response/tooltip.stories.js +0 -83
- package/src/stories/utils/custom-lunatic.scss +0 -23
- package/src/stories/utils/img/arrow.png +0 -0
- package/src/stories/utils/img/check_box.svg +0 -1
- package/src/stories/utils/img/check_box_outline.svg +0 -1
- package/src/stories/utils/img/lunatic-logo.png +0 -0
- package/src/stories/utils/img/menu-down.svg +0 -1
- package/src/stories/utils/img/menu-up.svg +0 -1
- package/src/stories/utils/img/radio_button_checked.svg +0 -1
- package/src/stories/utils/img/radio_button_unchecked.svg +0 -1
- package/src/stories/utils/options.js +0 -25
- package/src/stories/utils/orchestrator.js +0 -83
- package/src/tests/components/breadcrumb.spec.js +0 -13
- package/src/tests/components/button.spec.js +0 -11
- package/src/tests/components/checkbox-boolean.spec.js +0 -45
- package/src/tests/components/checkbox-group.spec.js +0 -53
- package/src/tests/components/checkbox-one.spec.js +0 -32
- package/src/tests/components/datepicker.spec.js +0 -22
- package/src/tests/components/declarations-wrappers/input-declarations-wrapper.spec.js +0 -67
- package/src/tests/components/declarations-wrappers/list-declarations-wrapper.spec.js +0 -52
- package/src/tests/components/declarations-wrappers/simple-declarations-wrapper.spec.js +0 -21
- package/src/tests/components/declarations.spec.js +0 -46
- package/src/tests/components/input-number.spec.js +0 -194
- package/src/tests/components/input.spec.js +0 -18
- package/src/tests/components/progress-bar.spec.js +0 -15
- package/src/tests/components/radio.spec.js +0 -27
- package/src/tests/components/sequence.spec.js +0 -9
- package/src/tests/components/subsequence.spec.js +0 -9
- package/src/tests/components/table.spec.js +0 -11
- package/src/tests/components/textarea.spec.js +0 -18
- package/src/tests/components/tooltip.spec.js +0 -25
- package/src/tests/setup/setupTests.js +0 -4
- package/src/tests/utils/lib/alphabet.spec.js +0 -36
- package/src/tests/utils/lib/checkbox/group.spec.js +0 -72
- package/src/tests/utils/lib/decorator/title-decorator.spec.js +0 -12
- package/src/tests/utils/lib/items-positioning.spec.js +0 -17
- package/src/tests/utils/lib/label-position.spec.js +0 -22
- package/src/tests/utils/lib/loops/bindings.spec.js +0 -60
- package/src/tests/utils/lib/loops/shared.spec.js +0 -78
- package/src/tests/utils/lib/pagination/shared.spec.js +0 -42
- package/src/tests/utils/lib/responses.spec.js +0 -64
- package/src/tests/utils/lib/style.spec.js +0 -26
- package/src/tests/utils/lib/table/roster.spec.js +0 -25
- package/src/tests/utils/lib/tooltip/build-response.spec.js +0 -95
- package/src/tests/utils/lib/tooltip/content.spec.js +0 -109
- package/src/tests/utils/to-expose/handler/handler.spec.js +0 -86
- package/src/tests/utils/to-expose/handler/questionnaire.json +0 -154
- package/src/tests/utils/to-expose/handler/results/index.js +0 -6
- package/src/tests/utils/to-expose/handler/results/res-double.json +0 -157
- package/src/tests/utils/to-expose/handler/results/res-input-collected.json +0 -154
- package/src/tests/utils/to-expose/handler/results/res-input-edited.json +0 -157
- package/src/tests/utils/to-expose/handler/results/res-loop.json +0 -157
- package/src/tests/utils/to-expose/handler/results/res-matrix.json +0 -157
- package/src/tests/utils/to-expose/handler/results/res-responses.json +0 -157
- package/src/tests/utils/to-expose/init-questionnaire/data.json +0 -12
- package/src/tests/utils/to-expose/init-questionnaire/init-questionnaire.spec.js +0 -19
- package/src/tests/utils/to-expose/init-questionnaire/questionnaire.json +0 -129
- package/src/tests/utils/to-expose/init-questionnaire/result.json +0 -162
- package/src/tests/utils/to-expose/interpret/interpret.spec.js +0 -66
- package/src/tests/utils/to-expose/state/questionnaire.json +0 -61
- package/src/tests/utils/to-expose/state/results.js +0 -78
- package/src/tests/utils/to-expose/state/state.spec.js +0 -59
- package/src/utils/lib/alphabet.js +0 -1
- package/src/utils/lib/checkbox/group.js +0 -21
- package/src/utils/lib/checkbox/index.js +0 -1
- package/src/utils/lib/decorator/index.js +0 -1
- package/src/utils/lib/decorator/title-decorator.js +0 -16
- package/src/utils/lib/index.js +0 -13
- package/src/utils/lib/label-position.js +0 -12
- package/src/utils/lib/loops/bindings.js +0 -53
- package/src/utils/lib/loops/build-components.js +0 -33
- package/src/utils/lib/loops/index.js +0 -3
- package/src/utils/lib/loops/shared.js +0 -43
- package/src/utils/lib/memo-check.js +0 -24
- package/src/utils/lib/options-positioning.js +0 -9
- package/src/utils/lib/pagination/flow.js +0 -2
- package/src/utils/lib/pagination/index.js +0 -2
- package/src/utils/lib/pagination/navigation/index.js +0 -1
- package/src/utils/lib/pagination/navigation/shared.js +0 -107
- package/src/utils/lib/prop-types/declarations.js +0 -22
- package/src/utils/lib/prop-types/index.js +0 -5
- package/src/utils/lib/prop-types/lines.js +0 -6
- package/src/utils/lib/prop-types/options.js +0 -8
- package/src/utils/lib/prop-types/response.js +0 -6
- package/src/utils/lib/prop-types/value-type.js +0 -9
- package/src/utils/lib/responses.js +0 -9
- package/src/utils/lib/style.js +0 -10
- package/src/utils/lib/table/index.js +0 -1
- package/src/utils/lib/table/roster.js +0 -23
- package/src/utils/lib/tooltip/build-response.js +0 -41
- package/src/utils/lib/tooltip/content.js +0 -55
- package/src/utils/lib/tooltip/index.js +0 -6
- package/src/utils/to-expose/handler.js +0 -99
- package/src/utils/to-expose/hook.js +0 -153
- package/src/utils/to-expose/index.js +0 -11
- package/src/utils/to-expose/init-questionnaire.js +0 -116
- package/src/utils/to-expose/interpret/index.js +0 -1
- package/src/utils/to-expose/interpret/main.js +0 -36
- package/src/utils/to-expose/interpret/md.js +0 -42
- package/src/utils/to-expose/interpret/vtl.js +0 -43
- package/src/utils/to-expose/state.js +0 -58
- /package/{src/components/tooltip → lib/components/commons/components/variable-status}/img/edited.png +0 -0
- /package/{src/components/tooltip → lib/components/commons/components/variable-status}/img/forced.png +0 -0
|
@@ -1,1383 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"id": "kejxez5cqf29",
|
|
3
|
-
"modele": "VQSWEBA",
|
|
4
|
-
"enoCoreVersion": "2.1.0-rc4",
|
|
5
|
-
"lunaticModelVersion": "2.0.0-rc4",
|
|
6
|
-
"label": "VQS Web - test suppression tableau",
|
|
7
|
-
"components": [
|
|
8
|
-
{
|
|
9
|
-
"id": "kejxl9lk",
|
|
10
|
-
"componentType": "Sequence",
|
|
11
|
-
"label": "\"I - Introduction\"",
|
|
12
|
-
"declarations": [
|
|
13
|
-
{
|
|
14
|
-
"id": "kejxl9lk-kejy60t1",
|
|
15
|
-
"declarationType": "INSTRUCTION",
|
|
16
|
-
"position": "AFTER_QUESTION_TEXT",
|
|
17
|
-
"label": "\"L’enquête est très courte, elle comporte une vingtaine de questions et ne devrait pas vous prendre plus de 15 minutes. Cette enquête s’adresse à toutes les personnes vivant habituellement avec \" || cast(cast(NOMCONTACT,string),string) || \"Une personne peut répondre pour les autres.Nous allons commencer par vérifier l'adresse principale de \" || cast(cast(NOMCONTACT,string),string) || \" (ou le/la destinataire de la lettre-avis)\""
|
|
18
|
-
}
|
|
19
|
-
],
|
|
20
|
-
"conditionFilter": "\"normal\"",
|
|
21
|
-
"bindingDependencies": ["NOMCONTACT"]
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"id": "kejxy84t",
|
|
25
|
-
"componentType": "CheckboxOne",
|
|
26
|
-
"mandatory": false,
|
|
27
|
-
"label": "\"➡ 1. \" || cast(cast(NOMCONTACT,string),string) || \" réside-t-il/elle toujours à cette adresse ?\" || cast(cast(ADRESSE,string),string) || \"\"",
|
|
28
|
-
"conditionFilter": "\"normal\"",
|
|
29
|
-
"bindingDependencies": ["NOMCONTACT", "ADRESSE", "OKADRESS"],
|
|
30
|
-
"options": [
|
|
31
|
-
{ "value": "1", "label": "\"Oui\"" },
|
|
32
|
-
{ "value": "2", "label": "\"Non\"" }
|
|
33
|
-
],
|
|
34
|
-
"response": { "name": "OKADRESS" }
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"id": "kfo3wa4a",
|
|
38
|
-
"componentType": "FilterDescription",
|
|
39
|
-
"filterDescription": false,
|
|
40
|
-
"label": "\"Si oui, aller à la question NHAB\""
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"id": "ker5lx5h",
|
|
44
|
-
"componentType": "CheckboxOne",
|
|
45
|
-
"mandatory": false,
|
|
46
|
-
"label": "\"➡ 2. Où \" || cast(cast(NOMCONTACT,string),string) || \" habite-t-il/elle actuellement ? \"",
|
|
47
|
-
"conditionFilter": "if ((not(cast(OKADRESS,string)=1))) then \"normal\" else \"hidden\"",
|
|
48
|
-
"bindingDependencies": ["NOMCONTACT", "RESIDM"],
|
|
49
|
-
"options": [
|
|
50
|
-
{
|
|
51
|
-
"value": "1",
|
|
52
|
-
"label": "\"En France, dans un établissement à destination de personnes en situation de handicap, ou de personnes âgées\""
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"value": "2",
|
|
56
|
-
"label": "\"En France, dans un établissement de l'aide sociale à l'enfance\""
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
"value": "3",
|
|
60
|
-
"label": "\"En France, dans un autre type de logement\""
|
|
61
|
-
},
|
|
62
|
-
{ "value": "4", "label": "\"A l'étranger\"" }
|
|
63
|
-
],
|
|
64
|
-
"response": { "name": "RESIDM" }
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"id": "kfpvw7ot",
|
|
68
|
-
"componentType": "FilterDescription",
|
|
69
|
-
"filterDescription": false,
|
|
70
|
-
"label": "\"Si RESIDM=3, alors demander la nouvelle adresse\""
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"id": "kfpub47i",
|
|
74
|
-
"componentType": "Table",
|
|
75
|
-
"mandatory": false,
|
|
76
|
-
"positioning": "HORIZONTAL",
|
|
77
|
-
"label": "\"➡ 3. Quelle est sa nouvelle adresse ?\"",
|
|
78
|
-
"conditionFilter": "if ((not(cast(OKADRESS,string)=1))) then \"normal\" else \"hidden\"",
|
|
79
|
-
"bindingDependencies": [
|
|
80
|
-
"NVOI",
|
|
81
|
-
"NTYPC",
|
|
82
|
-
"NLIB",
|
|
83
|
-
"NCOMP",
|
|
84
|
-
"NCODPOS",
|
|
85
|
-
"NCOMMU",
|
|
86
|
-
"NVOI_1_1",
|
|
87
|
-
"NTYPC_1_2",
|
|
88
|
-
"NLIB_1_3",
|
|
89
|
-
"NCOMP_1_4",
|
|
90
|
-
"NCODPOS_1_5",
|
|
91
|
-
"NCOMMU_1_6"
|
|
92
|
-
],
|
|
93
|
-
"lines": { "min": 1, "max": 1 },
|
|
94
|
-
"cells": [
|
|
95
|
-
[
|
|
96
|
-
{ "headerCell": true, "label": "\"Numéro de voie\"" },
|
|
97
|
-
{ "headerCell": true, "label": "\"Type de voie\"" },
|
|
98
|
-
{ "headerCell": true, "label": "\"Nom de la voie\"" },
|
|
99
|
-
{ "headerCell": true, "label": "\"Complément d'adresse\"" },
|
|
100
|
-
{ "headerCell": true, "label": "\"Code postal\"" },
|
|
101
|
-
{ "headerCell": true, "label": "\"Commune\"" }
|
|
102
|
-
],
|
|
103
|
-
[
|
|
104
|
-
{
|
|
105
|
-
"componentType": "InputNumber",
|
|
106
|
-
"min": 1,
|
|
107
|
-
"max": 1000,
|
|
108
|
-
"decimals": 0,
|
|
109
|
-
"id": "kfpub47i-QOP-kgs10bwv",
|
|
110
|
-
"response": { "name": "NVOI_1_1" },
|
|
111
|
-
"bindingDependencies": ["NVOI_1_1"]
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"componentType": "Input",
|
|
115
|
-
"maxLength": 15,
|
|
116
|
-
"id": "kfpub47i-QOP-kgs1054c",
|
|
117
|
-
"response": { "name": "NTYPC_1_2" },
|
|
118
|
-
"bindingDependencies": ["NTYPC_1_2"]
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
"componentType": "Input",
|
|
122
|
-
"maxLength": 100,
|
|
123
|
-
"id": "kfpub47i-QOP-kgs0y9jy",
|
|
124
|
-
"response": { "name": "NLIB_1_3" },
|
|
125
|
-
"bindingDependencies": ["NLIB_1_3"]
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
"componentType": "Input",
|
|
129
|
-
"maxLength": 50,
|
|
130
|
-
"id": "kfpub47i-QOP-kgs0wwlh",
|
|
131
|
-
"response": { "name": "NCOMP_1_4" },
|
|
132
|
-
"bindingDependencies": ["NCOMP_1_4"]
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"componentType": "InputNumber",
|
|
136
|
-
"min": 1,
|
|
137
|
-
"max": 99999,
|
|
138
|
-
"decimals": 0,
|
|
139
|
-
"id": "kfpub47i-QOP-kgs11eu9",
|
|
140
|
-
"response": { "name": "NCODPOS_1_5" },
|
|
141
|
-
"bindingDependencies": ["NCODPOS_1_5"]
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
"componentType": "Input",
|
|
145
|
-
"maxLength": 100,
|
|
146
|
-
"id": "kfpub47i-QOP-kgs0h3s6",
|
|
147
|
-
"response": { "name": "NCOMMU_1_6" },
|
|
148
|
-
"bindingDependencies": ["NCOMMU_1_6"]
|
|
149
|
-
}
|
|
150
|
-
]
|
|
151
|
-
]
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
"id": "kejyfwqj",
|
|
155
|
-
"componentType": "Sequence",
|
|
156
|
-
"label": "\"II - Les habitants du logement\"",
|
|
157
|
-
"declarations": [
|
|
158
|
-
{
|
|
159
|
-
"id": "kejyfwqj-kejy4m1u",
|
|
160
|
-
"declarationType": "INSTRUCTION",
|
|
161
|
-
"position": "AFTER_QUESTION_TEXT",
|
|
162
|
-
"label": "\"Nous allons lister les habitants habituels du logement. Ce sont les adultes et les enfants :- qui vivent plus de 6 mois dans ce logement- ou qui vivent 6 mois dans ce logement et 6 mois dans un autre logement (par exemple les enfants en garde alternée), s’ils qui ont dormi dans ce logement la nuit dernière.\""
|
|
163
|
-
}
|
|
164
|
-
],
|
|
165
|
-
"conditionFilter": "\"normal\""
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
"id": "kejymd3m",
|
|
169
|
-
"componentType": "InputNumber",
|
|
170
|
-
"mandatory": false,
|
|
171
|
-
"min": 1,
|
|
172
|
-
"max": 20,
|
|
173
|
-
"decimals": 0,
|
|
174
|
-
"label": "\"➡ 1. Combien de personnes vivent habituellement dans le logement où vit \" || cast(cast(NOMCONTACT,string),string) || \"? \"",
|
|
175
|
-
"declarations": [
|
|
176
|
-
{
|
|
177
|
-
"id": "kejymd3m-kejyqjq5",
|
|
178
|
-
"declarationType": "INSTRUCTION",
|
|
179
|
-
"position": "AFTER_QUESTION_TEXT",
|
|
180
|
-
"label": "\"Compter également \" || cast(cast(NOMCONTACT,string),string) || \".Cas des personnes vivant dans un logements d'une gendarmerie, d'un foyer de travailleurs, d'une cité universitaire, etc. : compter \" || cast(cast(NOMCONTACT,string),string) || \" comme seule personne habitant dans le logement.\""
|
|
181
|
-
}
|
|
182
|
-
],
|
|
183
|
-
"conditionFilter": "\"normal\"",
|
|
184
|
-
"bindingDependencies": ["NOMCONTACT", "NHAB"],
|
|
185
|
-
"response": { "name": "NHAB" }
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
"id": "kgrzwsjx",
|
|
189
|
-
"componentType": "Subsequence",
|
|
190
|
-
"label": "\"Presentation\"",
|
|
191
|
-
"conditionFilter": "\"normal\""
|
|
192
|
-
},
|
|
193
|
-
{
|
|
194
|
-
"id": "kgs0f5oz",
|
|
195
|
-
"componentType": "RosterForLoop",
|
|
196
|
-
"bindingDependencies": ["THL1", "THL2", "THL3", "THL4"],
|
|
197
|
-
"components": [
|
|
198
|
-
{
|
|
199
|
-
"id": "kgrud3by",
|
|
200
|
-
"componentType": "Input",
|
|
201
|
-
"mandatory": false,
|
|
202
|
-
"maxLength": 50,
|
|
203
|
-
"label": "\"➡ 2. Quel est le prénom de l'individu ?\"",
|
|
204
|
-
"conditionFilter": "\"normal\"",
|
|
205
|
-
"bindingDependencies": ["THL1"],
|
|
206
|
-
"response": { "name": "THL1" }
|
|
207
|
-
},
|
|
208
|
-
{
|
|
209
|
-
"id": "kgrue2lv",
|
|
210
|
-
"componentType": "Input",
|
|
211
|
-
"mandatory": false,
|
|
212
|
-
"maxLength": 50,
|
|
213
|
-
"label": "\"➡ 3. Quel est le nom de l'individu ?\"",
|
|
214
|
-
"conditionFilter": "\"normal\"",
|
|
215
|
-
"bindingDependencies": ["THL2"],
|
|
216
|
-
"response": { "name": "THL2" }
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
"id": "kgruqvjq",
|
|
220
|
-
"componentType": "CheckboxOne",
|
|
221
|
-
"mandatory": false,
|
|
222
|
-
"label": "\"➡ 4. Quel est son sexe ?\"",
|
|
223
|
-
"conditionFilter": "\"normal\"",
|
|
224
|
-
"bindingDependencies": ["THL3"],
|
|
225
|
-
"options": [
|
|
226
|
-
{ "value": "1", "label": "\"Homme\"" },
|
|
227
|
-
{ "value": "2", "label": "\"Femme\"" }
|
|
228
|
-
],
|
|
229
|
-
"response": { "name": "THL3" }
|
|
230
|
-
},
|
|
231
|
-
{
|
|
232
|
-
"id": "kgruc0yk",
|
|
233
|
-
"componentType": "Datepicker",
|
|
234
|
-
"mandatory": false,
|
|
235
|
-
"min": "1900-01-01",
|
|
236
|
-
"max": "2021-06-20",
|
|
237
|
-
"label": "\"➡ 5. Quelle est sa date de naissance ?\"",
|
|
238
|
-
"conditionFilter": "\"normal\"",
|
|
239
|
-
"bindingDependencies": ["THL4"],
|
|
240
|
-
"dateFormat": "YYYY-MM-DD",
|
|
241
|
-
"response": { "name": "THL4" }
|
|
242
|
-
}
|
|
243
|
-
]
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"id": "kgs00j0o",
|
|
247
|
-
"componentType": "Loop",
|
|
248
|
-
"min": 0,
|
|
249
|
-
"iterations": "count(THL1)",
|
|
250
|
-
"bindingDependencies": [
|
|
251
|
-
"THL1",
|
|
252
|
-
"AIDEREG4",
|
|
253
|
-
"AIDEREG1",
|
|
254
|
-
"AIDEREG2",
|
|
255
|
-
"AIDEREG3",
|
|
256
|
-
"ETAT_SANT",
|
|
257
|
-
"MAL_CHRO",
|
|
258
|
-
"LIMITAT",
|
|
259
|
-
"VUE",
|
|
260
|
-
"AUDITIF",
|
|
261
|
-
"MARCHE",
|
|
262
|
-
"BRAS",
|
|
263
|
-
"MAIN",
|
|
264
|
-
"CONCENTRA",
|
|
265
|
-
"DECISION",
|
|
266
|
-
"SORTIES",
|
|
267
|
-
"COMPRENDRE",
|
|
268
|
-
"PRNOMATILE",
|
|
269
|
-
"HPSY",
|
|
270
|
-
"AIDPRO",
|
|
271
|
-
"AIDENT",
|
|
272
|
-
"AMENALOG",
|
|
273
|
-
"AIDTECH",
|
|
274
|
-
"HANDICAP",
|
|
275
|
-
"RECONNAI",
|
|
276
|
-
"APPRENT",
|
|
277
|
-
"PRENOMHABI1",
|
|
278
|
-
"PRENOMHABI2",
|
|
279
|
-
"PRENOMHABI3",
|
|
280
|
-
"PRENOMHABI4",
|
|
281
|
-
"AU1ERJANVI"
|
|
282
|
-
],
|
|
283
|
-
"loopDependencies": ["THL1", "THL2", "THL3", "THL4"],
|
|
284
|
-
"components": [
|
|
285
|
-
{
|
|
286
|
-
"id": "kejydb2m",
|
|
287
|
-
"componentType": "Sequence",
|
|
288
|
-
"label": "\"III - État de santé de \" || cast(cast(THL1,string),string) || \" \"",
|
|
289
|
-
"declarations": [
|
|
290
|
-
{
|
|
291
|
-
"id": "kejydb2m-kejy4wmu",
|
|
292
|
-
"declarationType": "INSTRUCTION",
|
|
293
|
-
"position": "AFTER_QUESTION_TEXT",
|
|
294
|
-
"label": "\"Nous allons maintenant parler de l’état de santé de chacune de ces personnes.\""
|
|
295
|
-
}
|
|
296
|
-
],
|
|
297
|
-
"conditionFilter": "\"normal\"",
|
|
298
|
-
"bindingDependencies": ["THL1"]
|
|
299
|
-
},
|
|
300
|
-
{
|
|
301
|
-
"id": "kejyrpog",
|
|
302
|
-
"componentType": "Radio",
|
|
303
|
-
"mandatory": false,
|
|
304
|
-
"label": "\"➡ 1. Comment est l'état de santé général de \" || cast(cast(THL1,string),string) || \" ? \"",
|
|
305
|
-
"conditionFilter": "\"normal\"",
|
|
306
|
-
"bindingDependencies": ["THL1", "ETAT_SANT"],
|
|
307
|
-
"options": [
|
|
308
|
-
{ "value": "1", "label": "\"Très bon\"" },
|
|
309
|
-
{ "value": "2", "label": "\"Bon\"" },
|
|
310
|
-
{ "value": "3", "label": "\"Assez bon\"" },
|
|
311
|
-
{ "value": "4", "label": "\"Mauvais\"" },
|
|
312
|
-
{ "value": "5", "label": "\"Très mauvais\"" }
|
|
313
|
-
],
|
|
314
|
-
"response": { "name": "ETAT_SANT" }
|
|
315
|
-
},
|
|
316
|
-
{
|
|
317
|
-
"id": "kerafhb6",
|
|
318
|
-
"componentType": "CheckboxOne",
|
|
319
|
-
"mandatory": false,
|
|
320
|
-
"label": "\"➡ 2. \" || cast(cast(THL1,string),string) || \" a-t-il/elle une maladie ou un problème de santé qui soit chronique ou de caractère durable ? \"",
|
|
321
|
-
"declarations": [
|
|
322
|
-
{
|
|
323
|
-
"id": "kerafhb6-kerajrim",
|
|
324
|
-
"declarationType": "INSTRUCTION",
|
|
325
|
-
"position": "AFTER_QUESTION_TEXT",
|
|
326
|
-
"label": "\"Une maladie chronique dure pendant au moins 6 mois. Ne pas tenir compte des problèmes de santé passagers ou temporaires (comme la grippe par exemple). \""
|
|
327
|
-
}
|
|
328
|
-
],
|
|
329
|
-
"conditionFilter": "\"normal\"",
|
|
330
|
-
"bindingDependencies": ["THL1", "MAL_CHRO"],
|
|
331
|
-
"options": [
|
|
332
|
-
{ "value": "1", "label": "\"Oui\"" },
|
|
333
|
-
{ "value": "2", "label": "\"Non\"" }
|
|
334
|
-
],
|
|
335
|
-
"response": { "name": "MAL_CHRO" }
|
|
336
|
-
},
|
|
337
|
-
{
|
|
338
|
-
"id": "kerai3vx",
|
|
339
|
-
"componentType": "CheckboxOne",
|
|
340
|
-
"mandatory": false,
|
|
341
|
-
"label": "\"➡ 3. \" || cast(cast(THL1,string),string) || \" est-il/elle limité(e), depuis au moins six mois, à cause d'un problème de santé, dans les activités que les gens font habituellement ? \"",
|
|
342
|
-
"declarations": [
|
|
343
|
-
{
|
|
344
|
-
"id": "kerai3vx-keramper",
|
|
345
|
-
"declarationType": "INSTRUCTION",
|
|
346
|
-
"position": "AFTER_QUESTION_TEXT",
|
|
347
|
-
"label": "\"Ne pas tenir compte des problèmes de santé passagers ou temporaires (comme la grippe par exemple). \""
|
|
348
|
-
}
|
|
349
|
-
],
|
|
350
|
-
"conditionFilter": "\"normal\"",
|
|
351
|
-
"bindingDependencies": ["THL1", "LIMITAT"],
|
|
352
|
-
"options": [
|
|
353
|
-
{ "value": "1", "label": "\"Oui\"" },
|
|
354
|
-
{ "value": "2", "label": "\"Non\"" }
|
|
355
|
-
],
|
|
356
|
-
"response": { "name": "LIMITAT" }
|
|
357
|
-
},
|
|
358
|
-
{
|
|
359
|
-
"id": "kejy3aq4",
|
|
360
|
-
"componentType": "Sequence",
|
|
361
|
-
"label": "\"IV - Difficultés de \" || cast(cast(THL1,string),string) || \" dans les activités de tous les jours \"",
|
|
362
|
-
"declarations": [
|
|
363
|
-
{
|
|
364
|
-
"id": "kejy3aq4-kejy55wk",
|
|
365
|
-
"declarationType": "INSTRUCTION",
|
|
366
|
-
"position": "AFTER_QUESTION_TEXT",
|
|
367
|
-
"label": "\"\""
|
|
368
|
-
}
|
|
369
|
-
],
|
|
370
|
-
"conditionFilter": "\"normal\"",
|
|
371
|
-
"bindingDependencies": ["THL1"]
|
|
372
|
-
},
|
|
373
|
-
{
|
|
374
|
-
"id": "kejyo1dk",
|
|
375
|
-
"componentType": "Radio",
|
|
376
|
-
"mandatory": false,
|
|
377
|
-
"label": "\"➡ 1. \" || cast(cast(THL1,string),string) || \" a-t-il/elle des difficultés pour voir, même avec des lunettes ou des lentilles de contact s'il/elle en porte ? \"",
|
|
378
|
-
"conditionFilter": "\"normal\"",
|
|
379
|
-
"bindingDependencies": ["THL1", "VUE"],
|
|
380
|
-
"options": [
|
|
381
|
-
{ "value": "1", "label": "\"Non, aucune\"" },
|
|
382
|
-
{ "value": "2", "label": "\"Oui, un peu\"" },
|
|
383
|
-
{ "value": "3", "label": "\"Oui, beaucoup\"" },
|
|
384
|
-
{ "value": "4", "label": "\"Ne voit pas du tout\"" }
|
|
385
|
-
],
|
|
386
|
-
"response": { "name": "VUE" }
|
|
387
|
-
},
|
|
388
|
-
{
|
|
389
|
-
"id": "kerbdhdo",
|
|
390
|
-
"componentType": "CheckboxOne",
|
|
391
|
-
"mandatory": false,
|
|
392
|
-
"label": "\"➡ 2. \" || cast(cast(THL1,string),string) || \" a-t-il/elle des difficultés pour entendre, même avec un implant ou un appareil auditif s'il/si elle en porte ? \"",
|
|
393
|
-
"declarations": [
|
|
394
|
-
{
|
|
395
|
-
"id": "kerbdhdo-kerbk6nu",
|
|
396
|
-
"declarationType": "INSTRUCTION",
|
|
397
|
-
"position": "AFTER_QUESTION_TEXT",
|
|
398
|
-
"label": "\"Renseignez la difficulté la plus importante. Par exemple, si la personne n'a pas de difficulté à marcher 500 mètres, mais ne peut pas du tout monter un escalier, cochez 'ne peut pas du tout'. Pour un enfant, indiquez par rapport aux autres enfants du même âge.\""
|
|
399
|
-
}
|
|
400
|
-
],
|
|
401
|
-
"conditionFilter": "\"normal\"",
|
|
402
|
-
"bindingDependencies": ["THL1", "AUDITIF"],
|
|
403
|
-
"options": [
|
|
404
|
-
{ "value": "1", "label": "\"Non, aucune\"" },
|
|
405
|
-
{ "value": "2", "label": "\"Oui, un peu\"" },
|
|
406
|
-
{ "value": "3", "label": "\"Oui, beaucoup\"" },
|
|
407
|
-
{ "value": "4", "label": "\"Ne peut pas du tout\"" }
|
|
408
|
-
],
|
|
409
|
-
"response": { "name": "AUDITIF" }
|
|
410
|
-
},
|
|
411
|
-
{
|
|
412
|
-
"id": "keratll0",
|
|
413
|
-
"componentType": "CheckboxOne",
|
|
414
|
-
"mandatory": false,
|
|
415
|
-
"label": "\"➡ 3. \" || cast(cast(THL1,string),string) || \" a-t-il/elle des difficultés pour monter un étage d'escalier ou marcher sur 500 mètres ? \"",
|
|
416
|
-
"conditionFilter": "\"normal\"",
|
|
417
|
-
"bindingDependencies": ["THL1", "MARCHE"],
|
|
418
|
-
"options": [
|
|
419
|
-
{ "value": "1", "label": "\"Non, aucune\"" },
|
|
420
|
-
{ "value": "2", "label": "\"Oui, un peu\"" },
|
|
421
|
-
{ "value": "3", "label": "\"Oui, beaucoup\"" },
|
|
422
|
-
{ "value": "4", "label": "\"Ne peut pas du tout\"" }
|
|
423
|
-
],
|
|
424
|
-
"response": { "name": "MARCHE" }
|
|
425
|
-
},
|
|
426
|
-
{
|
|
427
|
-
"id": "kerbmp96",
|
|
428
|
-
"componentType": "CheckboxOne",
|
|
429
|
-
"mandatory": false,
|
|
430
|
-
"label": "\"➡ 4. \" || cast(cast(THL1,string),string) || \" a-t-il/elle des difficultés pour lever un bras au-dessus de la tête ? \"",
|
|
431
|
-
"conditionFilter": "\"normal\"",
|
|
432
|
-
"bindingDependencies": ["THL1", "BRAS"],
|
|
433
|
-
"options": [
|
|
434
|
-
{ "value": "1", "label": "\"Non, aucune\"" },
|
|
435
|
-
{ "value": "2", "label": "\"Oui, un peu\"" },
|
|
436
|
-
{ "value": "3", "label": "\"Oui, beaucoup\"" },
|
|
437
|
-
{ "value": "4", "label": "\"Ne peut pas du tout\"" }
|
|
438
|
-
],
|
|
439
|
-
"response": { "name": "BRAS" }
|
|
440
|
-
},
|
|
441
|
-
{
|
|
442
|
-
"id": "kerbgriu",
|
|
443
|
-
"componentType": "CheckboxOne",
|
|
444
|
-
"mandatory": false,
|
|
445
|
-
"label": "\"➡ 5. \" || cast(cast(THL1,string),string) || \" a-t-il/elle des difficultés pour se servir de ses mains ou de ses doigts (par exemple pour saisir un crayon ou utiliser des ciseaux) ? \"",
|
|
446
|
-
"declarations": [
|
|
447
|
-
{
|
|
448
|
-
"id": "kerbgriu-kerbebji",
|
|
449
|
-
"declarationType": "INSTRUCTION",
|
|
450
|
-
"position": "AFTER_QUESTION_TEXT",
|
|
451
|
-
"label": "\"Renseignez la difficulté la plus importante. Pour un enfant, indiquez par rapport aux autres enfants du même âge.\""
|
|
452
|
-
}
|
|
453
|
-
],
|
|
454
|
-
"conditionFilter": "\"normal\"",
|
|
455
|
-
"bindingDependencies": ["THL1", "MAIN"],
|
|
456
|
-
"options": [
|
|
457
|
-
{ "value": "1", "label": "\"Non, aucune\"" },
|
|
458
|
-
{ "value": "2", "label": "\"Oui, un peu\"" },
|
|
459
|
-
{ "value": "3", "label": "\"Oui, beaucoup\"" },
|
|
460
|
-
{ "value": "4", "label": "\"Ne peut pas du tout\"" }
|
|
461
|
-
],
|
|
462
|
-
"response": { "name": "MAIN" }
|
|
463
|
-
},
|
|
464
|
-
{
|
|
465
|
-
"id": "kerbvsyb",
|
|
466
|
-
"componentType": "CheckboxOne",
|
|
467
|
-
"mandatory": false,
|
|
468
|
-
"label": "\"➡ 6. \" || cast(cast(THL1,string),string) || \" a-t-il/elle des difficultés pour se concentrer plus de 10 minutes ? \"",
|
|
469
|
-
"declarations": [
|
|
470
|
-
{
|
|
471
|
-
"id": "kerbvsyb-kerbnmj3",
|
|
472
|
-
"declarationType": "INSTRUCTION",
|
|
473
|
-
"position": "AFTER_QUESTION_TEXT",
|
|
474
|
-
"label": "\"Pour un enfant, indiquez par rapport aux autres enfants du même âge.\""
|
|
475
|
-
}
|
|
476
|
-
],
|
|
477
|
-
"conditionFilter": "\"normal\"",
|
|
478
|
-
"bindingDependencies": ["THL1", "CONCENTRA"],
|
|
479
|
-
"options": [
|
|
480
|
-
{ "value": "1", "label": "\"Non, aucune\"" },
|
|
481
|
-
{ "value": "2", "label": "\"Oui, un peu\"" },
|
|
482
|
-
{ "value": "3", "label": "\"Oui, beaucoup\"" },
|
|
483
|
-
{ "value": "4", "label": "\"Ne peut pas du tout\"" }
|
|
484
|
-
],
|
|
485
|
-
"response": { "name": "CONCENTRA" }
|
|
486
|
-
},
|
|
487
|
-
{
|
|
488
|
-
"id": "kerc3cf4",
|
|
489
|
-
"componentType": "CheckboxOne",
|
|
490
|
-
"mandatory": false,
|
|
491
|
-
"label": "\"➡ 7. \" || cast(cast(THL1,string),string) || \" a-t-il/elle des difficultés pour prendre des décisions adaptées dans la vie de tous les jours ? \"",
|
|
492
|
-
"declarations": [
|
|
493
|
-
{
|
|
494
|
-
"id": "kerc3cf4-kerc3flo",
|
|
495
|
-
"declarationType": "INSTRUCTION",
|
|
496
|
-
"position": "AFTER_QUESTION_TEXT",
|
|
497
|
-
"label": "\"Pour un enfant, indiquez par rapport aux autres enfants du même âge.\""
|
|
498
|
-
}
|
|
499
|
-
],
|
|
500
|
-
"conditionFilter": "\"normal\"",
|
|
501
|
-
"bindingDependencies": ["THL1", "DECISION"],
|
|
502
|
-
"options": [
|
|
503
|
-
{ "value": "1", "label": "\"Non, aucune\"" },
|
|
504
|
-
{ "value": "2", "label": "\"Oui, un peu\"" },
|
|
505
|
-
{ "value": "3", "label": "\"Oui, beaucoup\"" },
|
|
506
|
-
{ "value": "4", "label": "\"Ne peut pas du tout\"" }
|
|
507
|
-
],
|
|
508
|
-
"response": { "name": "DECISION" }
|
|
509
|
-
},
|
|
510
|
-
{
|
|
511
|
-
"id": "kerbtdqa",
|
|
512
|
-
"componentType": "CheckboxOne",
|
|
513
|
-
"mandatory": false,
|
|
514
|
-
"label": "\"➡ 8. \" || cast(cast(THL1,string),string) || \" a-t-il/elle des difficultés pour sortir de son logement ? \"",
|
|
515
|
-
"declarations": [
|
|
516
|
-
{
|
|
517
|
-
"id": "kerbtdqa-kerbxwk2",
|
|
518
|
-
"declarationType": "INSTRUCTION",
|
|
519
|
-
"position": "AFTER_QUESTION_TEXT",
|
|
520
|
-
"label": "\"Pour un enfant, indiquez par rapport aux autres enfants du même âge.\""
|
|
521
|
-
}
|
|
522
|
-
],
|
|
523
|
-
"conditionFilter": "\"normal\"",
|
|
524
|
-
"bindingDependencies": ["THL1", "SORTIES"],
|
|
525
|
-
"options": [
|
|
526
|
-
{ "value": "1", "label": "\"Non, aucune\"" },
|
|
527
|
-
{ "value": "2", "label": "\"Oui, un peu\"" },
|
|
528
|
-
{ "value": "3", "label": "\"Oui, beaucoup\"" },
|
|
529
|
-
{ "value": "4", "label": "\"Ne peut pas du tout\"" }
|
|
530
|
-
],
|
|
531
|
-
"response": { "name": "SORTIES" }
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
"id": "kerbtgyo",
|
|
535
|
-
"componentType": "CheckboxOne",
|
|
536
|
-
"mandatory": false,
|
|
537
|
-
"label": "\"➡ 9. \" || cast(cast(THL1,string),string) || \" a-t-il/elle des difficultés pour comprendre les autres ou se faire comprendre des autres ? \"",
|
|
538
|
-
"conditionFilter": "\"normal\"",
|
|
539
|
-
"bindingDependencies": ["THL1", "COMPRENDRE"],
|
|
540
|
-
"options": [
|
|
541
|
-
{ "value": "1", "label": "\"Non, aucune\"" },
|
|
542
|
-
{ "value": "2", "label": "\"Oui, un peu\"" },
|
|
543
|
-
{ "value": "3", "label": "\"Oui, beaucoup\"" },
|
|
544
|
-
{ "value": "4", "label": "\"Ne peut pas du tout\"" }
|
|
545
|
-
],
|
|
546
|
-
"response": { "name": "COMPRENDRE" }
|
|
547
|
-
},
|
|
548
|
-
{
|
|
549
|
-
"id": "kercar5k",
|
|
550
|
-
"componentType": "CheckboxOne",
|
|
551
|
-
"mandatory": false,
|
|
552
|
-
"label": "\"➡ 10. \" || cast(cast(THL1,string),string) || \" a-t-il/elle des difficultés psychiques ou psychologiques qui perturbent sa vie quotidienne ? \"",
|
|
553
|
-
"conditionFilter": "\"normal\"",
|
|
554
|
-
"bindingDependencies": ["THL1", "PRNOMATILE"],
|
|
555
|
-
"options": [
|
|
556
|
-
{ "value": "1", "label": "\"Non, aucune\"" },
|
|
557
|
-
{ "value": "2", "label": "\"Oui, un peu\"" },
|
|
558
|
-
{ "value": "3", "label": "\"Oui, beaucoup\"" }
|
|
559
|
-
],
|
|
560
|
-
"response": { "name": "PRNOMATILE" }
|
|
561
|
-
},
|
|
562
|
-
{
|
|
563
|
-
"id": "kerc3trw",
|
|
564
|
-
"componentType": "CheckboxOne",
|
|
565
|
-
"mandatory": false,
|
|
566
|
-
"label": "\"➡ 11. \" || cast(cast(THL1,string),string) || \" a-t-il/elle déjà été hospitalisé(e) dans un service de psychiatrie (ou de pédopsychiatrie) depuis moins de 10 ans ? \"",
|
|
567
|
-
"conditionFilter": "\"normal\"",
|
|
568
|
-
"bindingDependencies": ["THL1", "HPSY"],
|
|
569
|
-
"options": [
|
|
570
|
-
{ "value": "1", "label": "\"Oui\"" },
|
|
571
|
-
{ "value": "2", "label": "\"Non\"" }
|
|
572
|
-
],
|
|
573
|
-
"response": { "name": "HPSY" }
|
|
574
|
-
},
|
|
575
|
-
{
|
|
576
|
-
"id": "kejyhnd2",
|
|
577
|
-
"componentType": "Radio",
|
|
578
|
-
"mandatory": false,
|
|
579
|
-
"label": "\"➡ 12. En raison d’un problème de santé, d’un handicap ou d’une perte d’autonomie, \" || cast(cast(THL1,string),string) || \" reçoit-il/elle l’aide de professionnels dans la vie quotidienne ? \"",
|
|
580
|
-
"conditionFilter": "\"normal\"",
|
|
581
|
-
"bindingDependencies": ["THL1", "AIDPRO"],
|
|
582
|
-
"options": [
|
|
583
|
-
{ "value": "1", "label": "\"Oui\"" },
|
|
584
|
-
{ "value": "2", "label": "\"Non\"" }
|
|
585
|
-
],
|
|
586
|
-
"response": { "name": "AIDPRO" }
|
|
587
|
-
},
|
|
588
|
-
{
|
|
589
|
-
"id": "kercbo8b",
|
|
590
|
-
"componentType": "CheckboxOne",
|
|
591
|
-
"mandatory": false,
|
|
592
|
-
"label": "\"➡ 13. En raison d'un problème de santé, d'un handicap ou d'une perte d'autonomie, \" || cast(cast(THL1,string),string) || \" reçoit-t-il/elle l'aide de proches (conjoint, parent, enfant, ami, etc.) dans la vie quotidienne ? \"",
|
|
593
|
-
"declarations": [
|
|
594
|
-
{
|
|
595
|
-
"id": "kercbo8b-kerc32v8",
|
|
596
|
-
"declarationType": "INSTRUCTION",
|
|
597
|
-
"position": "AFTER_QUESTION_TEXT",
|
|
598
|
-
"label": "\"Ces proches peuvent être payés pour cette aide.\""
|
|
599
|
-
}
|
|
600
|
-
],
|
|
601
|
-
"conditionFilter": "\"normal\"",
|
|
602
|
-
"bindingDependencies": ["THL1", "AIDENT"],
|
|
603
|
-
"options": [
|
|
604
|
-
{ "value": "1", "label": "\"Oui\"" },
|
|
605
|
-
{ "value": "2", "label": "\"Non\"" }
|
|
606
|
-
],
|
|
607
|
-
"response": { "name": "AIDENT" }
|
|
608
|
-
},
|
|
609
|
-
{
|
|
610
|
-
"id": "kerirz24",
|
|
611
|
-
"componentType": "CheckboxOne",
|
|
612
|
-
"mandatory": false,
|
|
613
|
-
"label": "\"➡ 14. En raison d'un problème de santé, d'un handicap ou d'une perte d'autonomie, \" || cast(cast(THL1,string),string) || \" utilise-t-il/elle des équipements ou aménagements de son logement (douche adaptée, élargissement des portes...) ? \"",
|
|
614
|
-
"declarations": [
|
|
615
|
-
{
|
|
616
|
-
"id": "kerirz24-kerimwmw",
|
|
617
|
-
"declarationType": "INSTRUCTION",
|
|
618
|
-
"position": "AFTER_QUESTION_TEXT",
|
|
619
|
-
"label": "\"Les aménagements du logement sont des transformations ou adaptations du logement qui ne sont pas déplaçables. \""
|
|
620
|
-
}
|
|
621
|
-
],
|
|
622
|
-
"conditionFilter": "\"normal\"",
|
|
623
|
-
"bindingDependencies": ["THL1", "AMENALOG"],
|
|
624
|
-
"options": [
|
|
625
|
-
{ "value": "1", "label": "\"Oui\"" },
|
|
626
|
-
{ "value": "2", "label": "\"Non\"" }
|
|
627
|
-
],
|
|
628
|
-
"response": { "name": "AMENALOG" }
|
|
629
|
-
},
|
|
630
|
-
{
|
|
631
|
-
"id": "kerimtev",
|
|
632
|
-
"componentType": "CheckboxOne",
|
|
633
|
-
"mandatory": false,
|
|
634
|
-
"label": "\"➡ 15. En raison d'un problème de santé, d'un handicap, ou de son âge, \" || cast(cast(THL1,string),string) || \" utilise-t-il/elle régulièrement un appareillage, une prothèse ou une aide technique ? \"",
|
|
635
|
-
"declarations": [
|
|
636
|
-
{
|
|
637
|
-
"id": "kerimtev-kerizys4",
|
|
638
|
-
"declarationType": "INSTRUCTION",
|
|
639
|
-
"position": "AFTER_QUESTION_TEXT",
|
|
640
|
-
"label": "\"Ne tenez pas compte des lunettes, lentilles, dentiers ou prothèses dentaires.\""
|
|
641
|
-
}
|
|
642
|
-
],
|
|
643
|
-
"conditionFilter": "\"normal\"",
|
|
644
|
-
"bindingDependencies": ["THL1", "AIDTECH"],
|
|
645
|
-
"options": [
|
|
646
|
-
{ "value": "1", "label": "\"Oui\"" },
|
|
647
|
-
{ "value": "2", "label": "\"Non\"" }
|
|
648
|
-
],
|
|
649
|
-
"response": { "name": "AIDTECH" }
|
|
650
|
-
},
|
|
651
|
-
{
|
|
652
|
-
"id": "keriy3hi",
|
|
653
|
-
"componentType": "CheckboxOne",
|
|
654
|
-
"mandatory": false,
|
|
655
|
-
"label": "\"➡ 16. \" || cast(cast(THL1,string),string) || \" considère-t-il/elle avoir un handicap ? \"",
|
|
656
|
-
"conditionFilter": "\"normal\"",
|
|
657
|
-
"bindingDependencies": ["THL1", "HANDICAP"],
|
|
658
|
-
"options": [
|
|
659
|
-
{ "value": "1", "label": "\"Oui\"" },
|
|
660
|
-
{ "value": "2", "label": "\"Non\"" }
|
|
661
|
-
],
|
|
662
|
-
"response": { "name": "HANDICAP" }
|
|
663
|
-
},
|
|
664
|
-
{
|
|
665
|
-
"id": "keriygan",
|
|
666
|
-
"componentType": "CheckboxOne",
|
|
667
|
-
"mandatory": false,
|
|
668
|
-
"label": "\"➡ 17. \" || cast(cast(THL1,string),string) || \" a-t-il/elle une reconnaissance administrative d'un handicap ou d'une perte d'autonomie ? (pension d'invalidité, carte mobilité inclusion, accord MDPH, allocations : APA, AAH, AEEH, PCH, etc., orientation vers un établissement spécialisé, etc.) \"",
|
|
669
|
-
"conditionFilter": "\"normal\"",
|
|
670
|
-
"bindingDependencies": ["THL1", "RECONNAI"],
|
|
671
|
-
"options": [
|
|
672
|
-
{ "value": "1", "label": "\"Oui\"" },
|
|
673
|
-
{ "value": "2", "label": "\"Non\"" }
|
|
674
|
-
],
|
|
675
|
-
"response": { "name": "RECONNAI" }
|
|
676
|
-
},
|
|
677
|
-
{
|
|
678
|
-
"id": "kerj7jca",
|
|
679
|
-
"componentType": "CheckboxOne",
|
|
680
|
-
"mandatory": false,
|
|
681
|
-
"label": "\"➡ 18. En raison d'un handicap ou d'un problème de santé, \" || cast(cast(THL1,string),string) || \" a-t-il/elle des difficultés d'apprentissage et/ou des difficultés à accomplir des activités quotidiennes que font habituellement les enfants de son âge ? \"",
|
|
682
|
-
"conditionFilter": "\"normal\"",
|
|
683
|
-
"bindingDependencies": ["THL1", "APPRENT"],
|
|
684
|
-
"options": [
|
|
685
|
-
{ "value": "1", "label": "\"Non, aucune\"" },
|
|
686
|
-
{ "value": "2", "label": "\"Oui, un peu\"" },
|
|
687
|
-
{ "value": "3", "label": "\"Oui, beaucoup\"" }
|
|
688
|
-
],
|
|
689
|
-
"response": { "name": "APPRENT" }
|
|
690
|
-
},
|
|
691
|
-
{
|
|
692
|
-
"id": "kejysu8y",
|
|
693
|
-
"componentType": "CheckboxGroup",
|
|
694
|
-
"label": "\"➡ 19. \" || cast(cast(THL1,string),string) || \" apporte-t-il/elle une aide régulière à un proche en situation de handicap ou de perte d'autonomie vivant dans ce logement ou ailleurs ? \"",
|
|
695
|
-
"conditionFilter": "\"normal\"",
|
|
696
|
-
"bindingDependencies": [
|
|
697
|
-
"THL1",
|
|
698
|
-
"AIDEREG1",
|
|
699
|
-
"AIDEREG2",
|
|
700
|
-
"AIDEREG3",
|
|
701
|
-
"AIDEREG4"
|
|
702
|
-
],
|
|
703
|
-
"responses": [
|
|
704
|
-
{
|
|
705
|
-
"id": "kejysu8y-QOP-kgs0t5ak",
|
|
706
|
-
"label": "\"Oui, une aide aux activités de la vie quotidienne\"",
|
|
707
|
-
"response": { "name": "AIDEREG1" }
|
|
708
|
-
},
|
|
709
|
-
{
|
|
710
|
-
"id": "kejysu8y-QOP-kgs0wayb",
|
|
711
|
-
"label": "\"Oui, un soutien moral\"",
|
|
712
|
-
"response": { "name": "AIDEREG2" }
|
|
713
|
-
},
|
|
714
|
-
{
|
|
715
|
-
"id": "kejysu8y-QOP-kgs0k28v",
|
|
716
|
-
"label": "\"Oui, une aide financière\"",
|
|
717
|
-
"response": { "name": "AIDEREG3" }
|
|
718
|
-
},
|
|
719
|
-
{
|
|
720
|
-
"id": "kejysu8y-QOP-kgs0xqrf",
|
|
721
|
-
"label": "\"Non\"",
|
|
722
|
-
"response": { "name": "AIDEREG4" }
|
|
723
|
-
}
|
|
724
|
-
]
|
|
725
|
-
},
|
|
726
|
-
{
|
|
727
|
-
"id": "kerjiih4",
|
|
728
|
-
"componentType": "CheckboxGroup",
|
|
729
|
-
"label": "\"➡ 20. Avec qui \" || cast(cast(THL1,string),string) || \" habite-t-il/elle ? \"",
|
|
730
|
-
"conditionFilter": "\"normal\"",
|
|
731
|
-
"bindingDependencies": [
|
|
732
|
-
"THL1",
|
|
733
|
-
"PRENOMHABI1",
|
|
734
|
-
"PRENOMHABI2",
|
|
735
|
-
"PRENOMHABI3",
|
|
736
|
-
"PRENOMHABI4"
|
|
737
|
-
],
|
|
738
|
-
"responses": [
|
|
739
|
-
{
|
|
740
|
-
"id": "kerjiih4-QOP-kgs0mb84",
|
|
741
|
-
"label": "\"Son/sa conjoint(e)\"",
|
|
742
|
-
"response": { "name": "PRENOMHABI1" }
|
|
743
|
-
},
|
|
744
|
-
{
|
|
745
|
-
"id": "kerjiih4-QOP-kgs101dd",
|
|
746
|
-
"label": "\"Un enfant ou bel-enfant\"",
|
|
747
|
-
"response": { "name": "PRENOMHABI2" }
|
|
748
|
-
},
|
|
749
|
-
{
|
|
750
|
-
"id": "kerjiih4-QOP-kgs0wn4o",
|
|
751
|
-
"label": "\"Un parent ou un beau-parent\"",
|
|
752
|
-
"response": { "name": "PRENOMHABI3" }
|
|
753
|
-
},
|
|
754
|
-
{
|
|
755
|
-
"id": "kerjiih4-QOP-kgs0n8ie",
|
|
756
|
-
"label": "\"D'autres personnes ou seul(e)\"",
|
|
757
|
-
"response": { "name": "PRENOMHABI4" }
|
|
758
|
-
}
|
|
759
|
-
]
|
|
760
|
-
},
|
|
761
|
-
{
|
|
762
|
-
"id": "kerj5ll8",
|
|
763
|
-
"componentType": "CheckboxOne",
|
|
764
|
-
"mandatory": false,
|
|
765
|
-
"label": "\"➡ 21. Au 1er janvier 2020, \" || cast(cast(THL1,string),string) || \" habitait-il/elle en France ? \"",
|
|
766
|
-
"conditionFilter": "\"normal\"",
|
|
767
|
-
"bindingDependencies": ["THL1", "AU1ERJANVI"],
|
|
768
|
-
"options": [
|
|
769
|
-
{ "value": "1", "label": "\"Oui\"" },
|
|
770
|
-
{ "value": "2", "label": "\"Non\"" }
|
|
771
|
-
],
|
|
772
|
-
"response": { "name": "AU1ERJANVI" }
|
|
773
|
-
}
|
|
774
|
-
]
|
|
775
|
-
},
|
|
776
|
-
{
|
|
777
|
-
"id": "kfmqhl12",
|
|
778
|
-
"componentType": "Sequence",
|
|
779
|
-
"label": "\"V - Fin\"",
|
|
780
|
-
"declarations": [
|
|
781
|
-
{
|
|
782
|
-
"id": "kfmqhl12-kfmqi33j",
|
|
783
|
-
"declarationType": "INSTRUCTION",
|
|
784
|
-
"position": "AFTER_QUESTION_TEXT",
|
|
785
|
-
"label": "\"Merci d'avoir accepté de répondre\""
|
|
786
|
-
}
|
|
787
|
-
],
|
|
788
|
-
"conditionFilter": "\"normal\""
|
|
789
|
-
}
|
|
790
|
-
],
|
|
791
|
-
"variables": [
|
|
792
|
-
{
|
|
793
|
-
"variableType": "COLLECTED",
|
|
794
|
-
"name": "NVOI_1_1",
|
|
795
|
-
"componentRef": "kfpub47i",
|
|
796
|
-
"values": {
|
|
797
|
-
"PREVIOUS": null,
|
|
798
|
-
"COLLECTED": null,
|
|
799
|
-
"FORCED": null,
|
|
800
|
-
"EDITED": null,
|
|
801
|
-
"INPUTED": null
|
|
802
|
-
}
|
|
803
|
-
},
|
|
804
|
-
{
|
|
805
|
-
"variableType": "COLLECTED",
|
|
806
|
-
"name": "NTYPC_1_2",
|
|
807
|
-
"componentRef": "kfpub47i",
|
|
808
|
-
"values": {
|
|
809
|
-
"PREVIOUS": null,
|
|
810
|
-
"COLLECTED": null,
|
|
811
|
-
"FORCED": null,
|
|
812
|
-
"EDITED": null,
|
|
813
|
-
"INPUTED": null
|
|
814
|
-
}
|
|
815
|
-
},
|
|
816
|
-
{
|
|
817
|
-
"variableType": "COLLECTED",
|
|
818
|
-
"name": "NLIB_1_3",
|
|
819
|
-
"componentRef": "kfpub47i",
|
|
820
|
-
"values": {
|
|
821
|
-
"PREVIOUS": null,
|
|
822
|
-
"COLLECTED": null,
|
|
823
|
-
"FORCED": null,
|
|
824
|
-
"EDITED": null,
|
|
825
|
-
"INPUTED": null
|
|
826
|
-
}
|
|
827
|
-
},
|
|
828
|
-
{
|
|
829
|
-
"variableType": "COLLECTED",
|
|
830
|
-
"name": "NCOMP_1_4",
|
|
831
|
-
"componentRef": "kfpub47i",
|
|
832
|
-
"values": {
|
|
833
|
-
"PREVIOUS": null,
|
|
834
|
-
"COLLECTED": null,
|
|
835
|
-
"FORCED": null,
|
|
836
|
-
"EDITED": null,
|
|
837
|
-
"INPUTED": null
|
|
838
|
-
}
|
|
839
|
-
},
|
|
840
|
-
{
|
|
841
|
-
"variableType": "COLLECTED",
|
|
842
|
-
"name": "NCODPOS_1_5",
|
|
843
|
-
"componentRef": "kfpub47i",
|
|
844
|
-
"values": {
|
|
845
|
-
"PREVIOUS": null,
|
|
846
|
-
"COLLECTED": null,
|
|
847
|
-
"FORCED": null,
|
|
848
|
-
"EDITED": null,
|
|
849
|
-
"INPUTED": null
|
|
850
|
-
}
|
|
851
|
-
},
|
|
852
|
-
{
|
|
853
|
-
"variableType": "COLLECTED",
|
|
854
|
-
"name": "NCOMMU_1_6",
|
|
855
|
-
"componentRef": "kfpub47i",
|
|
856
|
-
"values": {
|
|
857
|
-
"PREVIOUS": null,
|
|
858
|
-
"COLLECTED": null,
|
|
859
|
-
"FORCED": null,
|
|
860
|
-
"EDITED": null,
|
|
861
|
-
"INPUTED": null
|
|
862
|
-
}
|
|
863
|
-
},
|
|
864
|
-
{ "variableType": "EXTERNAL", "name": "ADRESSE", "value": null },
|
|
865
|
-
{ "variableType": "EXTERNAL", "name": "NOMCONTACT", "value": null },
|
|
866
|
-
{
|
|
867
|
-
"variableType": "COLLECTED",
|
|
868
|
-
"name": "OKADRESS",
|
|
869
|
-
"componentRef": "kejxy84t",
|
|
870
|
-
"values": {
|
|
871
|
-
"PREVIOUS": null,
|
|
872
|
-
"COLLECTED": null,
|
|
873
|
-
"FORCED": null,
|
|
874
|
-
"EDITED": null,
|
|
875
|
-
"INPUTED": null
|
|
876
|
-
}
|
|
877
|
-
},
|
|
878
|
-
{
|
|
879
|
-
"variableType": "COLLECTED",
|
|
880
|
-
"name": "RESIDM",
|
|
881
|
-
"componentRef": "ker5lx5h",
|
|
882
|
-
"values": {
|
|
883
|
-
"PREVIOUS": null,
|
|
884
|
-
"COLLECTED": null,
|
|
885
|
-
"FORCED": null,
|
|
886
|
-
"EDITED": null,
|
|
887
|
-
"INPUTED": null
|
|
888
|
-
}
|
|
889
|
-
},
|
|
890
|
-
{
|
|
891
|
-
"variableType": "COLLECTED",
|
|
892
|
-
"name": "NVOI",
|
|
893
|
-
"componentRef": "kfpub47i",
|
|
894
|
-
"values": {
|
|
895
|
-
"PREVIOUS": null,
|
|
896
|
-
"COLLECTED": null,
|
|
897
|
-
"FORCED": null,
|
|
898
|
-
"EDITED": null,
|
|
899
|
-
"INPUTED": null
|
|
900
|
-
}
|
|
901
|
-
},
|
|
902
|
-
{
|
|
903
|
-
"variableType": "COLLECTED",
|
|
904
|
-
"name": "NTYPC",
|
|
905
|
-
"componentRef": "kfpub47i",
|
|
906
|
-
"values": {
|
|
907
|
-
"PREVIOUS": null,
|
|
908
|
-
"COLLECTED": null,
|
|
909
|
-
"FORCED": null,
|
|
910
|
-
"EDITED": null,
|
|
911
|
-
"INPUTED": null
|
|
912
|
-
}
|
|
913
|
-
},
|
|
914
|
-
{
|
|
915
|
-
"variableType": "COLLECTED",
|
|
916
|
-
"name": "NLIB",
|
|
917
|
-
"componentRef": "kfpub47i",
|
|
918
|
-
"values": {
|
|
919
|
-
"PREVIOUS": null,
|
|
920
|
-
"COLLECTED": null,
|
|
921
|
-
"FORCED": null,
|
|
922
|
-
"EDITED": null,
|
|
923
|
-
"INPUTED": null
|
|
924
|
-
}
|
|
925
|
-
},
|
|
926
|
-
{
|
|
927
|
-
"variableType": "COLLECTED",
|
|
928
|
-
"name": "NCOMP",
|
|
929
|
-
"componentRef": "kfpub47i",
|
|
930
|
-
"values": {
|
|
931
|
-
"PREVIOUS": null,
|
|
932
|
-
"COLLECTED": null,
|
|
933
|
-
"FORCED": null,
|
|
934
|
-
"EDITED": null,
|
|
935
|
-
"INPUTED": null
|
|
936
|
-
}
|
|
937
|
-
},
|
|
938
|
-
{
|
|
939
|
-
"variableType": "COLLECTED",
|
|
940
|
-
"name": "NCODPOS",
|
|
941
|
-
"componentRef": "kfpub47i",
|
|
942
|
-
"values": {
|
|
943
|
-
"PREVIOUS": null,
|
|
944
|
-
"COLLECTED": null,
|
|
945
|
-
"FORCED": null,
|
|
946
|
-
"EDITED": null,
|
|
947
|
-
"INPUTED": null
|
|
948
|
-
}
|
|
949
|
-
},
|
|
950
|
-
{
|
|
951
|
-
"variableType": "COLLECTED",
|
|
952
|
-
"name": "NCOMMU",
|
|
953
|
-
"componentRef": "kfpub47i",
|
|
954
|
-
"values": {
|
|
955
|
-
"PREVIOUS": null,
|
|
956
|
-
"COLLECTED": null,
|
|
957
|
-
"FORCED": null,
|
|
958
|
-
"EDITED": null,
|
|
959
|
-
"INPUTED": null
|
|
960
|
-
}
|
|
961
|
-
},
|
|
962
|
-
{
|
|
963
|
-
"variableType": "COLLECTED",
|
|
964
|
-
"name": "NHAB",
|
|
965
|
-
"componentRef": "kejymd3m",
|
|
966
|
-
"values": {
|
|
967
|
-
"PREVIOUS": null,
|
|
968
|
-
"COLLECTED": null,
|
|
969
|
-
"FORCED": null,
|
|
970
|
-
"EDITED": null,
|
|
971
|
-
"INPUTED": null
|
|
972
|
-
}
|
|
973
|
-
},
|
|
974
|
-
{
|
|
975
|
-
"variableType": "COLLECTED",
|
|
976
|
-
"name": "THL1",
|
|
977
|
-
"componentRef": "kgs0f5oz",
|
|
978
|
-
"values": {
|
|
979
|
-
"PREVIOUS": [null],
|
|
980
|
-
"COLLECTED": [null],
|
|
981
|
-
"FORCED": [null],
|
|
982
|
-
"EDITED": [null],
|
|
983
|
-
"INPUTED": [null]
|
|
984
|
-
}
|
|
985
|
-
},
|
|
986
|
-
{
|
|
987
|
-
"variableType": "COLLECTED",
|
|
988
|
-
"name": "THL2",
|
|
989
|
-
"componentRef": "kgs0f5oz",
|
|
990
|
-
"values": {
|
|
991
|
-
"PREVIOUS": [null],
|
|
992
|
-
"COLLECTED": [null],
|
|
993
|
-
"FORCED": [null],
|
|
994
|
-
"EDITED": [null],
|
|
995
|
-
"INPUTED": [null]
|
|
996
|
-
}
|
|
997
|
-
},
|
|
998
|
-
{
|
|
999
|
-
"variableType": "COLLECTED",
|
|
1000
|
-
"name": "THL3",
|
|
1001
|
-
"componentRef": "kgs0f5oz",
|
|
1002
|
-
"values": {
|
|
1003
|
-
"PREVIOUS": [null],
|
|
1004
|
-
"COLLECTED": [null],
|
|
1005
|
-
"FORCED": [null],
|
|
1006
|
-
"EDITED": [null],
|
|
1007
|
-
"INPUTED": [null]
|
|
1008
|
-
}
|
|
1009
|
-
},
|
|
1010
|
-
{
|
|
1011
|
-
"variableType": "COLLECTED",
|
|
1012
|
-
"name": "THL4",
|
|
1013
|
-
"componentRef": "kgs0f5oz",
|
|
1014
|
-
"values": {
|
|
1015
|
-
"PREVIOUS": [null],
|
|
1016
|
-
"COLLECTED": [null],
|
|
1017
|
-
"FORCED": [null],
|
|
1018
|
-
"EDITED": [null],
|
|
1019
|
-
"INPUTED": [null]
|
|
1020
|
-
}
|
|
1021
|
-
},
|
|
1022
|
-
{
|
|
1023
|
-
"variableType": "COLLECTED",
|
|
1024
|
-
"name": "ETAT_SANT",
|
|
1025
|
-
"componentRef": "kgs00j0o",
|
|
1026
|
-
"values": {
|
|
1027
|
-
"PREVIOUS": [null],
|
|
1028
|
-
"COLLECTED": [null],
|
|
1029
|
-
"FORCED": [null],
|
|
1030
|
-
"EDITED": [null],
|
|
1031
|
-
"INPUTED": [null]
|
|
1032
|
-
}
|
|
1033
|
-
},
|
|
1034
|
-
{
|
|
1035
|
-
"variableType": "COLLECTED",
|
|
1036
|
-
"name": "MAL_CHRO",
|
|
1037
|
-
"componentRef": "kgs00j0o",
|
|
1038
|
-
"values": {
|
|
1039
|
-
"PREVIOUS": [null],
|
|
1040
|
-
"COLLECTED": [null],
|
|
1041
|
-
"FORCED": [null],
|
|
1042
|
-
"EDITED": [null],
|
|
1043
|
-
"INPUTED": [null]
|
|
1044
|
-
}
|
|
1045
|
-
},
|
|
1046
|
-
{
|
|
1047
|
-
"variableType": "COLLECTED",
|
|
1048
|
-
"name": "LIMITAT",
|
|
1049
|
-
"componentRef": "kgs00j0o",
|
|
1050
|
-
"values": {
|
|
1051
|
-
"PREVIOUS": [null],
|
|
1052
|
-
"COLLECTED": [null],
|
|
1053
|
-
"FORCED": [null],
|
|
1054
|
-
"EDITED": [null],
|
|
1055
|
-
"INPUTED": [null]
|
|
1056
|
-
}
|
|
1057
|
-
},
|
|
1058
|
-
{
|
|
1059
|
-
"variableType": "COLLECTED",
|
|
1060
|
-
"name": "VUE",
|
|
1061
|
-
"componentRef": "kgs00j0o",
|
|
1062
|
-
"values": {
|
|
1063
|
-
"PREVIOUS": [null],
|
|
1064
|
-
"COLLECTED": [null],
|
|
1065
|
-
"FORCED": [null],
|
|
1066
|
-
"EDITED": [null],
|
|
1067
|
-
"INPUTED": [null]
|
|
1068
|
-
}
|
|
1069
|
-
},
|
|
1070
|
-
{
|
|
1071
|
-
"variableType": "COLLECTED",
|
|
1072
|
-
"name": "AUDITIF",
|
|
1073
|
-
"componentRef": "kgs00j0o",
|
|
1074
|
-
"values": {
|
|
1075
|
-
"PREVIOUS": [null],
|
|
1076
|
-
"COLLECTED": [null],
|
|
1077
|
-
"FORCED": [null],
|
|
1078
|
-
"EDITED": [null],
|
|
1079
|
-
"INPUTED": [null]
|
|
1080
|
-
}
|
|
1081
|
-
},
|
|
1082
|
-
{
|
|
1083
|
-
"variableType": "COLLECTED",
|
|
1084
|
-
"name": "MARCHE",
|
|
1085
|
-
"componentRef": "kgs00j0o",
|
|
1086
|
-
"values": {
|
|
1087
|
-
"PREVIOUS": [null],
|
|
1088
|
-
"COLLECTED": [null],
|
|
1089
|
-
"FORCED": [null],
|
|
1090
|
-
"EDITED": [null],
|
|
1091
|
-
"INPUTED": [null]
|
|
1092
|
-
}
|
|
1093
|
-
},
|
|
1094
|
-
{
|
|
1095
|
-
"variableType": "COLLECTED",
|
|
1096
|
-
"name": "BRAS",
|
|
1097
|
-
"componentRef": "kgs00j0o",
|
|
1098
|
-
"values": {
|
|
1099
|
-
"PREVIOUS": [null],
|
|
1100
|
-
"COLLECTED": [null],
|
|
1101
|
-
"FORCED": [null],
|
|
1102
|
-
"EDITED": [null],
|
|
1103
|
-
"INPUTED": [null]
|
|
1104
|
-
}
|
|
1105
|
-
},
|
|
1106
|
-
{
|
|
1107
|
-
"variableType": "COLLECTED",
|
|
1108
|
-
"name": "MAIN",
|
|
1109
|
-
"componentRef": "kgs00j0o",
|
|
1110
|
-
"values": {
|
|
1111
|
-
"PREVIOUS": [null],
|
|
1112
|
-
"COLLECTED": [null],
|
|
1113
|
-
"FORCED": [null],
|
|
1114
|
-
"EDITED": [null],
|
|
1115
|
-
"INPUTED": [null]
|
|
1116
|
-
}
|
|
1117
|
-
},
|
|
1118
|
-
{
|
|
1119
|
-
"variableType": "COLLECTED",
|
|
1120
|
-
"name": "CONCENTRA",
|
|
1121
|
-
"componentRef": "kgs00j0o",
|
|
1122
|
-
"values": {
|
|
1123
|
-
"PREVIOUS": [null],
|
|
1124
|
-
"COLLECTED": [null],
|
|
1125
|
-
"FORCED": [null],
|
|
1126
|
-
"EDITED": [null],
|
|
1127
|
-
"INPUTED": [null]
|
|
1128
|
-
}
|
|
1129
|
-
},
|
|
1130
|
-
{
|
|
1131
|
-
"variableType": "COLLECTED",
|
|
1132
|
-
"name": "DECISION",
|
|
1133
|
-
"componentRef": "kgs00j0o",
|
|
1134
|
-
"values": {
|
|
1135
|
-
"PREVIOUS": [null],
|
|
1136
|
-
"COLLECTED": [null],
|
|
1137
|
-
"FORCED": [null],
|
|
1138
|
-
"EDITED": [null],
|
|
1139
|
-
"INPUTED": [null]
|
|
1140
|
-
}
|
|
1141
|
-
},
|
|
1142
|
-
{
|
|
1143
|
-
"variableType": "COLLECTED",
|
|
1144
|
-
"name": "SORTIES",
|
|
1145
|
-
"componentRef": "kgs00j0o",
|
|
1146
|
-
"values": {
|
|
1147
|
-
"PREVIOUS": [null],
|
|
1148
|
-
"COLLECTED": [null],
|
|
1149
|
-
"FORCED": [null],
|
|
1150
|
-
"EDITED": [null],
|
|
1151
|
-
"INPUTED": [null]
|
|
1152
|
-
}
|
|
1153
|
-
},
|
|
1154
|
-
{
|
|
1155
|
-
"variableType": "COLLECTED",
|
|
1156
|
-
"name": "COMPRENDRE",
|
|
1157
|
-
"componentRef": "kgs00j0o",
|
|
1158
|
-
"values": {
|
|
1159
|
-
"PREVIOUS": [null],
|
|
1160
|
-
"COLLECTED": [null],
|
|
1161
|
-
"FORCED": [null],
|
|
1162
|
-
"EDITED": [null],
|
|
1163
|
-
"INPUTED": [null]
|
|
1164
|
-
}
|
|
1165
|
-
},
|
|
1166
|
-
{
|
|
1167
|
-
"variableType": "COLLECTED",
|
|
1168
|
-
"name": "PRNOMATILE",
|
|
1169
|
-
"componentRef": "kgs00j0o",
|
|
1170
|
-
"values": {
|
|
1171
|
-
"PREVIOUS": [null],
|
|
1172
|
-
"COLLECTED": [null],
|
|
1173
|
-
"FORCED": [null],
|
|
1174
|
-
"EDITED": [null],
|
|
1175
|
-
"INPUTED": [null]
|
|
1176
|
-
}
|
|
1177
|
-
},
|
|
1178
|
-
{
|
|
1179
|
-
"variableType": "COLLECTED",
|
|
1180
|
-
"name": "HPSY",
|
|
1181
|
-
"componentRef": "kgs00j0o",
|
|
1182
|
-
"values": {
|
|
1183
|
-
"PREVIOUS": [null],
|
|
1184
|
-
"COLLECTED": [null],
|
|
1185
|
-
"FORCED": [null],
|
|
1186
|
-
"EDITED": [null],
|
|
1187
|
-
"INPUTED": [null]
|
|
1188
|
-
}
|
|
1189
|
-
},
|
|
1190
|
-
{
|
|
1191
|
-
"variableType": "COLLECTED",
|
|
1192
|
-
"name": "AIDPRO",
|
|
1193
|
-
"componentRef": "kgs00j0o",
|
|
1194
|
-
"values": {
|
|
1195
|
-
"PREVIOUS": [null],
|
|
1196
|
-
"COLLECTED": [null],
|
|
1197
|
-
"FORCED": [null],
|
|
1198
|
-
"EDITED": [null],
|
|
1199
|
-
"INPUTED": [null]
|
|
1200
|
-
}
|
|
1201
|
-
},
|
|
1202
|
-
{
|
|
1203
|
-
"variableType": "COLLECTED",
|
|
1204
|
-
"name": "AIDENT",
|
|
1205
|
-
"componentRef": "kgs00j0o",
|
|
1206
|
-
"values": {
|
|
1207
|
-
"PREVIOUS": [null],
|
|
1208
|
-
"COLLECTED": [null],
|
|
1209
|
-
"FORCED": [null],
|
|
1210
|
-
"EDITED": [null],
|
|
1211
|
-
"INPUTED": [null]
|
|
1212
|
-
}
|
|
1213
|
-
},
|
|
1214
|
-
{
|
|
1215
|
-
"variableType": "COLLECTED",
|
|
1216
|
-
"name": "AMENALOG",
|
|
1217
|
-
"componentRef": "kgs00j0o",
|
|
1218
|
-
"values": {
|
|
1219
|
-
"PREVIOUS": [null],
|
|
1220
|
-
"COLLECTED": [null],
|
|
1221
|
-
"FORCED": [null],
|
|
1222
|
-
"EDITED": [null],
|
|
1223
|
-
"INPUTED": [null]
|
|
1224
|
-
}
|
|
1225
|
-
},
|
|
1226
|
-
{
|
|
1227
|
-
"variableType": "COLLECTED",
|
|
1228
|
-
"name": "AIDTECH",
|
|
1229
|
-
"componentRef": "kgs00j0o",
|
|
1230
|
-
"values": {
|
|
1231
|
-
"PREVIOUS": [null],
|
|
1232
|
-
"COLLECTED": [null],
|
|
1233
|
-
"FORCED": [null],
|
|
1234
|
-
"EDITED": [null],
|
|
1235
|
-
"INPUTED": [null]
|
|
1236
|
-
}
|
|
1237
|
-
},
|
|
1238
|
-
{
|
|
1239
|
-
"variableType": "COLLECTED",
|
|
1240
|
-
"name": "HANDICAP",
|
|
1241
|
-
"componentRef": "kgs00j0o",
|
|
1242
|
-
"values": {
|
|
1243
|
-
"PREVIOUS": [null],
|
|
1244
|
-
"COLLECTED": [null],
|
|
1245
|
-
"FORCED": [null],
|
|
1246
|
-
"EDITED": [null],
|
|
1247
|
-
"INPUTED": [null]
|
|
1248
|
-
}
|
|
1249
|
-
},
|
|
1250
|
-
{
|
|
1251
|
-
"variableType": "COLLECTED",
|
|
1252
|
-
"name": "RECONNAI",
|
|
1253
|
-
"componentRef": "kgs00j0o",
|
|
1254
|
-
"values": {
|
|
1255
|
-
"PREVIOUS": [null],
|
|
1256
|
-
"COLLECTED": [null],
|
|
1257
|
-
"FORCED": [null],
|
|
1258
|
-
"EDITED": [null],
|
|
1259
|
-
"INPUTED": [null]
|
|
1260
|
-
}
|
|
1261
|
-
},
|
|
1262
|
-
{
|
|
1263
|
-
"variableType": "COLLECTED",
|
|
1264
|
-
"name": "APPRENT",
|
|
1265
|
-
"componentRef": "kgs00j0o",
|
|
1266
|
-
"values": {
|
|
1267
|
-
"PREVIOUS": [null],
|
|
1268
|
-
"COLLECTED": [null],
|
|
1269
|
-
"FORCED": [null],
|
|
1270
|
-
"EDITED": [null],
|
|
1271
|
-
"INPUTED": [null]
|
|
1272
|
-
}
|
|
1273
|
-
},
|
|
1274
|
-
{
|
|
1275
|
-
"variableType": "COLLECTED",
|
|
1276
|
-
"name": "AIDEREG1",
|
|
1277
|
-
"componentRef": "kgs00j0o",
|
|
1278
|
-
"values": {
|
|
1279
|
-
"PREVIOUS": [null],
|
|
1280
|
-
"COLLECTED": [null],
|
|
1281
|
-
"FORCED": [null],
|
|
1282
|
-
"EDITED": [null],
|
|
1283
|
-
"INPUTED": [null]
|
|
1284
|
-
}
|
|
1285
|
-
},
|
|
1286
|
-
{
|
|
1287
|
-
"variableType": "COLLECTED",
|
|
1288
|
-
"name": "AIDEREG2",
|
|
1289
|
-
"componentRef": "kgs00j0o",
|
|
1290
|
-
"values": {
|
|
1291
|
-
"PREVIOUS": [null],
|
|
1292
|
-
"COLLECTED": [null],
|
|
1293
|
-
"FORCED": [null],
|
|
1294
|
-
"EDITED": [null],
|
|
1295
|
-
"INPUTED": [null]
|
|
1296
|
-
}
|
|
1297
|
-
},
|
|
1298
|
-
{
|
|
1299
|
-
"variableType": "COLLECTED",
|
|
1300
|
-
"name": "AIDEREG3",
|
|
1301
|
-
"componentRef": "kgs00j0o",
|
|
1302
|
-
"values": {
|
|
1303
|
-
"PREVIOUS": [null],
|
|
1304
|
-
"COLLECTED": [null],
|
|
1305
|
-
"FORCED": [null],
|
|
1306
|
-
"EDITED": [null],
|
|
1307
|
-
"INPUTED": [null]
|
|
1308
|
-
}
|
|
1309
|
-
},
|
|
1310
|
-
{
|
|
1311
|
-
"variableType": "COLLECTED",
|
|
1312
|
-
"name": "AIDEREG4",
|
|
1313
|
-
"componentRef": "kgs00j0o",
|
|
1314
|
-
"values": {
|
|
1315
|
-
"PREVIOUS": [null],
|
|
1316
|
-
"COLLECTED": [null],
|
|
1317
|
-
"FORCED": [null],
|
|
1318
|
-
"EDITED": [null],
|
|
1319
|
-
"INPUTED": [null]
|
|
1320
|
-
}
|
|
1321
|
-
},
|
|
1322
|
-
{
|
|
1323
|
-
"variableType": "COLLECTED",
|
|
1324
|
-
"name": "PRENOMHABI1",
|
|
1325
|
-
"componentRef": "kgs00j0o",
|
|
1326
|
-
"values": {
|
|
1327
|
-
"PREVIOUS": [null],
|
|
1328
|
-
"COLLECTED": [null],
|
|
1329
|
-
"FORCED": [null],
|
|
1330
|
-
"EDITED": [null],
|
|
1331
|
-
"INPUTED": [null]
|
|
1332
|
-
}
|
|
1333
|
-
},
|
|
1334
|
-
{
|
|
1335
|
-
"variableType": "COLLECTED",
|
|
1336
|
-
"name": "PRENOMHABI2",
|
|
1337
|
-
"componentRef": "kgs00j0o",
|
|
1338
|
-
"values": {
|
|
1339
|
-
"PREVIOUS": [null],
|
|
1340
|
-
"COLLECTED": [null],
|
|
1341
|
-
"FORCED": [null],
|
|
1342
|
-
"EDITED": [null],
|
|
1343
|
-
"INPUTED": [null]
|
|
1344
|
-
}
|
|
1345
|
-
},
|
|
1346
|
-
{
|
|
1347
|
-
"variableType": "COLLECTED",
|
|
1348
|
-
"name": "PRENOMHABI3",
|
|
1349
|
-
"componentRef": "kgs00j0o",
|
|
1350
|
-
"values": {
|
|
1351
|
-
"PREVIOUS": [null],
|
|
1352
|
-
"COLLECTED": [null],
|
|
1353
|
-
"FORCED": [null],
|
|
1354
|
-
"EDITED": [null],
|
|
1355
|
-
"INPUTED": [null]
|
|
1356
|
-
}
|
|
1357
|
-
},
|
|
1358
|
-
{
|
|
1359
|
-
"variableType": "COLLECTED",
|
|
1360
|
-
"name": "PRENOMHABI4",
|
|
1361
|
-
"componentRef": "kgs00j0o",
|
|
1362
|
-
"values": {
|
|
1363
|
-
"PREVIOUS": [null],
|
|
1364
|
-
"COLLECTED": [null],
|
|
1365
|
-
"FORCED": [null],
|
|
1366
|
-
"EDITED": [null],
|
|
1367
|
-
"INPUTED": [null]
|
|
1368
|
-
}
|
|
1369
|
-
},
|
|
1370
|
-
{
|
|
1371
|
-
"variableType": "COLLECTED",
|
|
1372
|
-
"name": "AU1ERJANVI",
|
|
1373
|
-
"componentRef": "kgs00j0o",
|
|
1374
|
-
"values": {
|
|
1375
|
-
"PREVIOUS": [null],
|
|
1376
|
-
"COLLECTED": [null],
|
|
1377
|
-
"FORCED": [null],
|
|
1378
|
-
"EDITED": [null],
|
|
1379
|
-
"INPUTED": [null]
|
|
1380
|
-
}
|
|
1381
|
-
}
|
|
1382
|
-
]
|
|
1383
|
-
}
|