@inseefr/lunatic 2.0.0 → 2.0.1-v2

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