@inseefr/lunatic 2.3.1 → 2.4.1-beta

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 (1039) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +169 -22
  3. package/lib/components/button/__snapshots__/lunatic-button.spec.jsx.snap +80 -0
  4. package/lib/components/button/button.scss +24 -0
  5. package/lib/components/button/index.js +13 -0
  6. package/lib/components/button/lunatic-button.js +56 -0
  7. package/lib/components/button/lunatic-button.spec.js +87 -0
  8. package/lib/components/checkbox/checkbox-boolean/html/checkbox-boolean.js +55 -0
  9. package/lib/components/checkbox/checkbox-boolean/html/checkbox-boolean.spec.js +57 -0
  10. package/lib/components/checkbox/checkbox-boolean/index.js +13 -0
  11. package/lib/components/checkbox/checkbox-boolean/lunatic-checkbox-boolean.js +58 -0
  12. package/lib/components/checkbox/checkbox-group/checkbox-group-content.js +41 -0
  13. package/lib/components/checkbox/checkbox-group/html/checkbox-group-content.js +51 -0
  14. package/lib/components/checkbox/checkbox-group/html/checkbox-group-content.spec.js +44 -0
  15. package/lib/components/checkbox/checkbox-group/html/checkbox-group.js +52 -0
  16. package/lib/components/checkbox/checkbox-group/html/checkbox-group.scss +12 -0
  17. package/lib/components/checkbox/checkbox-group/index.js +13 -0
  18. package/lib/components/checkbox/checkbox-group/lunatic-checkbox-group.js +64 -0
  19. package/lib/components/checkbox/checkbox-one/html/checkbox-one.js +54 -0
  20. package/lib/components/checkbox/checkbox-one/html/checkbox-one.scss +19 -0
  21. package/lib/components/checkbox/checkbox-one/html/checkbox-one.spec.js +51 -0
  22. package/lib/components/checkbox/checkbox-one/index.js +13 -0
  23. package/lib/components/checkbox/checkbox-one/lunatic-checkbox-one.js +58 -0
  24. package/lib/components/checkbox/commons/checkbox-option.js +89 -0
  25. package/lib/components/checkbox/commons/checkbox-option.scss +19 -0
  26. package/lib/components/checkbox/commons/checkbox-option.spec.js +71 -0
  27. package/lib/components/checkbox/commons/getShortcutKey.js +11 -0
  28. package/lib/components/checkbox/commons/index.js +13 -0
  29. package/lib/components/checkbox/index.js +27 -0
  30. package/lib/components/commons/build-style-object.js +25 -0
  31. package/lib/components/commons/components/combo-box/combo-box-container.js +33 -0
  32. package/lib/components/commons/components/combo-box/combo-box-container.spec.js +45 -0
  33. package/lib/components/commons/components/combo-box/combo-box-content.js +63 -0
  34. package/lib/components/commons/components/combo-box/combo-box.js +199 -0
  35. package/lib/components/commons/components/combo-box/combo-box.scss +206 -0
  36. package/lib/components/commons/components/combo-box/index.js +13 -0
  37. package/lib/components/commons/components/combo-box/panel/index.js +13 -0
  38. package/lib/components/commons/components/combo-box/panel/option-container.js +61 -0
  39. package/lib/components/commons/components/combo-box/panel/option-container.spec.js +27 -0
  40. package/lib/components/commons/components/combo-box/panel/panel-container.js +28 -0
  41. package/lib/components/commons/components/combo-box/panel/panel-container.spec.js +59 -0
  42. package/lib/components/commons/components/combo-box/panel/panel.js +63 -0
  43. package/lib/components/commons/components/combo-box/panel/panel.spec.js +93 -0
  44. package/lib/components/commons/components/combo-box/selection/__snapshots__/selection.spec.jsx.snap +81 -0
  45. package/lib/components/commons/components/combo-box/selection/delete.js +55 -0
  46. package/lib/components/commons/components/combo-box/selection/delete.spec.js +88 -0
  47. package/lib/components/commons/components/combo-box/selection/displayLabelOrInput.js +29 -0
  48. package/lib/components/commons/components/combo-box/selection/displayLabelOrInput.spec.js +57 -0
  49. package/lib/components/commons/components/combo-box/selection/index.js +13 -0
  50. package/lib/components/commons/components/combo-box/selection/input.js +56 -0
  51. package/lib/components/commons/components/combo-box/selection/label-selection.js +32 -0
  52. package/lib/components/commons/components/combo-box/selection/label-selection.spec.js +45 -0
  53. package/lib/components/commons/components/combo-box/selection/selection-container.js +39 -0
  54. package/lib/components/commons/components/combo-box/selection/selection-container.spec.js +53 -0
  55. package/lib/components/commons/components/combo-box/selection/selection.js +60 -0
  56. package/lib/components/commons/components/combo-box/selection/selection.spec.js +104 -0
  57. package/lib/components/commons/components/combo-box/state-management/actions.js +82 -0
  58. package/lib/components/commons/components/combo-box/state-management/combo-box-context.js +16 -0
  59. package/lib/components/commons/components/combo-box/state-management/index.js +33 -0
  60. package/lib/components/commons/components/combo-box/state-management/initial-state.js +14 -0
  61. package/lib/components/commons/components/combo-box/state-management/reducer/index.js +13 -0
  62. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-blur.js +20 -0
  63. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-change.js +22 -0
  64. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-delete.js +21 -0
  65. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-focus.js +20 -0
  66. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-init.js +38 -0
  67. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/index.js +13 -0
  68. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/keyboard-key-codes.js +18 -0
  69. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-arrow-down.js +32 -0
  70. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-arrow-up.js +32 -0
  71. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-end.js +25 -0
  72. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-enter.js +21 -0
  73. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-escape.js +20 -0
  74. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-home.js +25 -0
  75. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-tab.js +20 -0
  76. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/reduce-on-keydown.js +40 -0
  77. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-select.js +22 -0
  78. package/lib/components/commons/components/combo-box/state-management/reducer/reducer.js +41 -0
  79. package/lib/components/commons/components/default-label-renderer.js +47 -0
  80. package/lib/components/commons/components/default-label-renderer.spec.js +43 -0
  81. package/lib/components/commons/components/default-option-renderer.js +44 -0
  82. package/lib/components/commons/components/default-option-renderer.spec.js +65 -0
  83. package/lib/components/commons/components/description.js +52 -0
  84. package/lib/components/commons/components/description.spec.js +45 -0
  85. package/lib/components/commons/components/dragger/dragger.js +95 -0
  86. package/lib/components/commons/components/dragger/dragger.scss +8 -0
  87. package/lib/components/commons/components/dragger/dragger.spec.js +80 -0
  88. package/lib/components/commons/components/dragger/index.js +13 -0
  89. package/lib/components/commons/components/errors/errors.js +53 -0
  90. package/lib/components/commons/components/errors/errors.scss +5 -0
  91. package/lib/components/commons/components/errors/errors.spec.js +40 -0
  92. package/lib/components/commons/components/errors/index.js +13 -0
  93. package/lib/components/commons/components/fab/fab.js +50 -0
  94. package/lib/components/commons/components/fab/fab.scss +32 -0
  95. package/lib/components/commons/components/fab/fab.spec.js +76 -0
  96. package/lib/components/commons/components/fab/index.js +13 -0
  97. package/lib/components/commons/components/field-container/field-container.js +41 -0
  98. package/lib/components/commons/components/field-container/filed-container.spec.js +37 -0
  99. package/lib/components/commons/components/field-container/index.js +13 -0
  100. package/lib/components/commons/components/fieldset.js +30 -0
  101. package/lib/components/commons/components/fieldset.scss +5 -0
  102. package/lib/components/commons/components/fieldset.spec.js +51 -0
  103. package/lib/components/commons/components/html-table/index.js +48 -0
  104. package/lib/components/commons/components/html-table/table.js +32 -0
  105. package/lib/components/commons/components/html-table/table.scss +27 -0
  106. package/lib/components/commons/components/html-table/table.spec.js +25 -0
  107. package/lib/components/commons/components/html-table/tbody.js +32 -0
  108. package/lib/components/commons/components/html-table/tbody.spec.js +34 -0
  109. package/lib/components/commons/components/html-table/td.js +43 -0
  110. package/lib/components/commons/components/html-table/td.spec.js +43 -0
  111. package/lib/components/commons/components/html-table/th.js +41 -0
  112. package/lib/components/commons/components/html-table/th.spec.js +46 -0
  113. package/lib/components/commons/components/html-table/thead.js +31 -0
  114. package/lib/components/commons/components/html-table/thead.spec.js +30 -0
  115. package/lib/components/commons/components/html-table/tr.js +33 -0
  116. package/lib/components/commons/components/html-table/tr.spec.js +45 -0
  117. package/lib/components/commons/components/is-network/index.js +13 -0
  118. package/lib/components/commons/components/is-network/is-network.js +53 -0
  119. package/lib/components/commons/components/is-network/is-network.spec.js +34 -0
  120. package/lib/components/commons/components/is-network/use-online-status.js +46 -0
  121. package/lib/components/commons/components/is-network/use-online-status.spec.js +45 -0
  122. package/lib/components/commons/components/label/index.js +13 -0
  123. package/lib/components/commons/components/label/label.js +35 -0
  124. package/lib/components/commons/components/label/label.scss +6 -0
  125. package/lib/components/commons/components/label/label.spec.js +78 -0
  126. package/lib/components/commons/components/lunatic-component-with-label.js +88 -0
  127. package/lib/components/commons/components/lunatic-component-without-label.js +87 -0
  128. package/lib/components/commons/components/md-label/index.js +13 -0
  129. package/lib/components/commons/components/md-label/link.js +54 -0
  130. package/lib/components/commons/components/md-label/md-label.js +45 -0
  131. package/lib/components/commons/components/missing/index.js +13 -0
  132. package/lib/components/commons/components/missing/missing.js +87 -0
  133. package/lib/components/commons/components/missing/missing.scss +30 -0
  134. package/lib/components/commons/components/missing/missing.spec.js +81 -0
  135. package/lib/components/commons/components/nothing-to-display.js +16 -0
  136. package/lib/components/commons/components/nothing-to-display.spec.js +16 -0
  137. package/lib/components/commons/components/orchestrated-component.js +62 -0
  138. package/lib/components/commons/components/variable-status/img/index.js +20 -0
  139. package/lib/components/commons/components/variable-status/index.js +13 -0
  140. package/lib/components/commons/components/variable-status/variable-status.js +85 -0
  141. package/lib/components/commons/components/variable-status/variable-status.scss +39 -0
  142. package/lib/components/commons/components/variable-status/variable-status.spec.js +24 -0
  143. package/lib/components/commons/create-customizable-field.js +29 -0
  144. package/lib/components/commons/create-row-orchestrator.js +51 -0
  145. package/lib/components/commons/icons/checkbox-checked.icon.js +39 -0
  146. package/lib/components/commons/icons/checkbox-unchecked.icon.js +39 -0
  147. package/lib/components/commons/icons/closed.icon.js +36 -0
  148. package/lib/components/commons/icons/cross.icon.js +36 -0
  149. package/lib/components/commons/icons/index.js +76 -0
  150. package/lib/components/commons/icons/load.icon.js +36 -0
  151. package/lib/components/commons/icons/lunatic-icon.js +21 -0
  152. package/lib/components/commons/icons/lunatic-icon.scss +3 -0
  153. package/lib/components/commons/icons/network.icon.js +36 -0
  154. package/lib/components/commons/icons/on-drag.icon.js +36 -0
  155. package/lib/components/commons/icons/opened.icon.js +36 -0
  156. package/lib/components/commons/icons/radio-checked.icon.js +39 -0
  157. package/lib/components/commons/icons/radio-unchecked.icon.js +39 -0
  158. package/lib/components/commons/index.js +131 -0
  159. package/lib/components/commons/prop-types/declarations.js +19 -0
  160. package/lib/components/commons/prop-types/index.js +41 -0
  161. package/lib/components/commons/prop-types/lines.js +13 -0
  162. package/lib/components/commons/prop-types/options.js +13 -0
  163. package/lib/components/commons/prop-types/response.js +13 -0
  164. package/lib/components/commons/prop-types/value-type.js +14 -0
  165. package/lib/components/commons/safety-label.js +26 -0
  166. package/lib/components/commons/use-document-add-event-listener.js +84 -0
  167. package/lib/components/commons/use-on-handle-change.js +19 -0
  168. package/lib/components/commons/use-on-handle-change.spec.js +46 -0
  169. package/lib/components/commons/use-options-keydown.js +24 -0
  170. package/lib/components/commons/use-previous.js +16 -0
  171. package/lib/components/components.js +171 -0
  172. package/lib/components/datepicker/html/datepicker-container.js +18 -0
  173. package/lib/components/datepicker/html/datepicker-input.js +37 -0
  174. package/lib/components/datepicker/html/datepicker.js +69 -0
  175. package/lib/components/datepicker/html/datepicker.scss +1 -0
  176. package/lib/components/datepicker/index.js +13 -0
  177. package/lib/components/datepicker/lunatic-datepicker.js +61 -0
  178. package/lib/components/declarations/declaration.js +22 -0
  179. package/lib/components/declarations/declaration.spec.js +30 -0
  180. package/lib/components/declarations/declarations-after-text.js +25 -0
  181. package/lib/components/declarations/declarations-before-text.js +25 -0
  182. package/lib/components/declarations/declarations-detachable.js +25 -0
  183. package/lib/components/declarations/declarations.js +50 -0
  184. package/lib/components/declarations/declarations.scss +36 -0
  185. package/lib/components/declarations/declarations.spec.js +79 -0
  186. package/lib/components/declarations/index.js +43 -0
  187. package/lib/components/dropdown/html/dropdown-simple/dropdown-simple.js +39 -0
  188. package/lib/components/dropdown/html/dropdown-simple/index.js +13 -0
  189. package/lib/components/dropdown/html/dropdown-simple/simple-label-renderer.js +46 -0
  190. package/lib/components/dropdown/html/dropdown-simple/simple-option-renderer.js +45 -0
  191. package/lib/components/dropdown/html/dropdown-writable/dropdown-writable.js +62 -0
  192. package/lib/components/dropdown/html/dropdown-writable/filter-tools/filter-options.js +37 -0
  193. package/lib/components/dropdown/html/dropdown-writable/filter-tools/get-label.js +24 -0
  194. package/lib/components/dropdown/html/dropdown-writable/filter-tools/letters-matching.js +29 -0
  195. package/lib/components/dropdown/html/dropdown-writable/filter-tools/match.js +22 -0
  196. package/lib/components/dropdown/html/dropdown-writable/filter-tools/prepare-prefix.js +13 -0
  197. package/lib/components/dropdown/html/dropdown-writable/index.js +13 -0
  198. package/lib/components/dropdown/html/dropdown-writable/writable-label-renderer.js +52 -0
  199. package/lib/components/dropdown/html/dropdown-writable/writable-option-renderer.js +146 -0
  200. package/lib/components/dropdown/html/dropdown.js +51 -0
  201. package/lib/components/dropdown/html/dropdown.scss +41 -0
  202. package/lib/components/dropdown/index.js +13 -0
  203. package/lib/components/dropdown/lunatic-dropdown.js +75 -0
  204. package/lib/components/filter-description/component.js +22 -0
  205. package/lib/components/filter-description/component.spec.js +23 -0
  206. package/lib/components/filter-description/index.js +13 -0
  207. package/lib/components/index.js +28 -0
  208. package/lib/components/index.scss +136 -0
  209. package/lib/components/input/html/input.js +79 -0
  210. package/lib/components/input/html/input.scss +42 -0
  211. package/lib/components/input/index.js +13 -0
  212. package/lib/components/input/lunatic-input.js +57 -0
  213. package/lib/components/input-number/html/__snapshots__/inpute-number.spec.jsx.snap +92 -0
  214. package/lib/components/input-number/html/input-number-default.js +78 -0
  215. package/lib/components/input-number/html/input-number-thousand.js +54 -0
  216. package/lib/components/input-number/html/input-number.js +102 -0
  217. package/lib/components/input-number/html/input-number.scss +11 -0
  218. package/lib/components/input-number/html/inpute-number.spec.js +110 -0
  219. package/lib/components/input-number/index.js +13 -0
  220. package/lib/components/input-number/lunatic-input-number.js +64 -0
  221. package/lib/components/loop/block-for-loop/block-for-loop-ochestrator.js +12 -0
  222. package/lib/components/loop/block-for-loop/block-for-loop.js +140 -0
  223. package/lib/components/loop/block-for-loop/index.js +13 -0
  224. package/lib/components/loop/block-for-loop/row.js +66 -0
  225. package/lib/components/loop/commons/get-init-length.js +16 -0
  226. package/lib/components/loop/commons/handle-row-button.js +22 -0
  227. package/lib/components/loop/commons/index.js +20 -0
  228. package/lib/components/loop/commons/row-component.js +70 -0
  229. package/lib/components/loop/index.js +13 -0
  230. package/lib/components/loop/loop.js +82 -0
  231. package/lib/components/loop/roster-for-loop/body.js +56 -0
  232. package/lib/components/loop/roster-for-loop/header.js +34 -0
  233. package/lib/components/loop/roster-for-loop/index.js +13 -0
  234. package/lib/components/loop/roster-for-loop/roster-for-loop-orchestrator.js +12 -0
  235. package/lib/components/loop/roster-for-loop/roster-for-loop.js +124 -0
  236. package/lib/components/loop/roster-for-loop/roster-table.js +48 -0
  237. package/lib/components/loop/roster-for-loop/roster.scss +42 -0
  238. package/lib/components/loop/roster-for-loop/row.js +73 -0
  239. package/lib/components/modal-controls/close-or-skip.js +41 -0
  240. package/lib/components/modal-controls/close-or-skip.spec.js +52 -0
  241. package/lib/components/modal-controls/index.js +13 -0
  242. package/lib/components/modal-controls/modal-container.js +22 -0
  243. package/lib/components/modal-controls/modal-container.spec.js +24 -0
  244. package/lib/components/modal-controls/modal-controls.js +78 -0
  245. package/lib/components/modal-controls/modal-controls.scss +48 -0
  246. package/lib/components/modal-controls/modal-controls.spec.js +77 -0
  247. package/lib/components/pairwise-links/index.js +13 -0
  248. package/lib/components/pairwise-links/orchestrator.js +70 -0
  249. package/lib/components/pairwise-links/pairwise-links.js +65 -0
  250. package/lib/components/pairwise-links/row.js +78 -0
  251. package/lib/components/radio/html/dist/radio-group.css +12 -0
  252. package/lib/components/radio/html/radio-group-content.js +45 -0
  253. package/lib/components/radio/html/radio-group-content.spec.js +86 -0
  254. package/lib/components/radio/html/radio-group.js +67 -0
  255. package/lib/components/radio/html/radio-group.scss +21 -0
  256. package/lib/components/radio/html/radio-option.js +105 -0
  257. package/lib/components/radio/html/radio-option.spec.js +80 -0
  258. package/lib/components/radio/index.js +13 -0
  259. package/lib/components/radio/lunatic-radio-group.js +64 -0
  260. package/lib/components/radio/radio-group.js +48 -0
  261. package/lib/components/radio/radio.scss +19 -0
  262. package/lib/components/roundabout/components/roundabout-container.js +20 -0
  263. package/lib/components/roundabout/components/roundabout-container.spec.js +23 -0
  264. package/lib/components/roundabout/components/roundabout-it-button.js +80 -0
  265. package/lib/components/roundabout/components/roundabout-it-button.spec.js +102 -0
  266. package/lib/components/roundabout/components/roundabout-it-container.js +19 -0
  267. package/lib/components/roundabout/components/roundabout-it-container.spec.js +23 -0
  268. package/lib/components/roundabout/components/roundabout-it-title.js +19 -0
  269. package/lib/components/roundabout/components/roundabout-it-title.spec.js +18 -0
  270. package/lib/components/roundabout/components/roundabout-label.js +19 -0
  271. package/lib/components/roundabout/components/roundabout-label.spec.js +18 -0
  272. package/lib/components/roundabout/components/roundabout-pending.js +18 -0
  273. package/lib/components/roundabout/components/roundabout-pending.spec.js +15 -0
  274. package/lib/components/roundabout/components/roundabout.scss +16 -0
  275. package/lib/components/roundabout/index.js +13 -0
  276. package/lib/components/roundabout/lunatic-roundabout.js +62 -0
  277. package/lib/components/roundabout/redirect.js +23 -0
  278. package/lib/components/roundabout/redirect.spec.js +19 -0
  279. package/lib/components/roundabout/roundabout.js +89 -0
  280. package/lib/components/roundabout/roundabout.spec.js +71 -0
  281. package/lib/components/sequence/index.js +13 -0
  282. package/lib/components/sequence/sequence.js +37 -0
  283. package/lib/components/sequence/sequence.scss +10 -0
  284. package/lib/components/sequence/sequence.spec.js +79 -0
  285. package/lib/components/subsequence/index.js +13 -0
  286. package/lib/components/subsequence/subsequence.js +35 -0
  287. package/lib/components/subsequence/subsequence.spec.js +79 -0
  288. package/lib/components/suggester/find-best-label/find-best-label.js +55 -0
  289. package/lib/components/suggester/find-best-label/index.js +13 -0
  290. package/lib/components/suggester/html/alert-icon.svg +2 -0
  291. package/lib/components/suggester/html/default-style.scss +175 -0
  292. package/lib/components/suggester/html/notification.js +31 -0
  293. package/lib/components/suggester/html/suggester.js +142 -0
  294. package/lib/components/suggester/html/wait-icon.svg +17 -0
  295. package/lib/components/suggester/html/warn-icon.svg +1 -0
  296. package/lib/components/suggester/idb-suggester/check-store.js +107 -0
  297. package/lib/components/suggester/idb-suggester/dist/index.dev.js +12 -0
  298. package/lib/components/suggester/idb-suggester/idb-suggester.js +90 -0
  299. package/lib/components/suggester/idb-suggester/index.js +12 -0
  300. package/lib/components/suggester/idb-suggester/suggester-notification.js +61 -0
  301. package/lib/components/suggester/idb-suggester/suggester-status.js +52 -0
  302. package/lib/components/suggester/index.js +13 -0
  303. package/lib/components/suggester/lunatic-suggester.js +106 -0
  304. package/lib/components/suggester/searching/create-searching.js +73 -0
  305. package/lib/components/suggester/searching/index.js +13 -0
  306. package/lib/components/suggester-loader-widget/index.js +13 -0
  307. package/lib/components/suggester-loader-widget/loader-row.js +129 -0
  308. package/lib/components/suggester-loader-widget/loader.js +136 -0
  309. package/lib/components/suggester-loader-widget/progress.js +41 -0
  310. package/lib/components/suggester-loader-widget/tools/action-tool.js +30 -0
  311. package/lib/components/suggester-loader-widget/tools/index.js +20 -0
  312. package/lib/components/suggester-loader-widget/tools/tools.js +18 -0
  313. package/lib/components/suggester-loader-widget/widget-container.js +44 -0
  314. package/lib/components/suggester-loader-widget/widget.js +145 -0
  315. package/lib/components/suggester-loader-widget/widget.scss +176 -0
  316. package/lib/components/switch/html/switch.js +95 -0
  317. package/lib/components/switch/html/switch.scss +47 -0
  318. package/lib/components/switch/index.js +13 -0
  319. package/lib/components/switch/lunatic-switch.js +66 -0
  320. package/lib/components/table/cell.js +102 -0
  321. package/lib/components/table/header.js +40 -0
  322. package/lib/components/table/index.js +13 -0
  323. package/lib/components/table/lunatic-table.js +97 -0
  324. package/lib/components/table/row.js +43 -0
  325. package/lib/components/table/table-orchestrator.js +48 -0
  326. package/lib/components/textarea/html/textarea.js +54 -0
  327. package/lib/components/textarea/html/textarea.scss +8 -0
  328. package/lib/components/textarea/index.js +13 -0
  329. package/lib/components/textarea/lunatic-textarea.js +72 -0
  330. package/lib/components/type.js +5 -0
  331. package/lib/constants/component-types.js +8 -0
  332. package/lib/constants/declarations.js +28 -0
  333. package/lib/constants/event-types.js +29 -0
  334. package/lib/constants/index.js +60 -0
  335. package/lib/constants/supported-preferences.js +13 -0
  336. package/lib/constants/value-types.js +16 -0
  337. package/lib/constants/variable-types.js +12 -0
  338. package/lib/dist/index.dev.js +31 -0
  339. package/lib/i18n/build-dictionary.js +59 -0
  340. package/lib/i18n/dictionary.js +34 -0
  341. package/lib/i18n/index.js +28 -0
  342. package/lib/i18n/inputNumberProps.js +20 -0
  343. package/lib/index.js +28 -33
  344. package/lib/insee.d.js +1 -0
  345. package/lib/src/components/commons/components/md-label/index.d.ts +1 -0
  346. package/lib/src/components/commons/components/md-label/link.d.ts +7 -0
  347. package/lib/src/components/commons/components/md-label/md-label.d.ts +8 -0
  348. package/lib/src/components/type.d.ts +195 -0
  349. package/lib/src/constants/component-types.d.ts +1 -0
  350. package/lib/src/constants/declarations.d.ts +9 -0
  351. package/lib/src/constants/event-types.d.ts +10 -0
  352. package/lib/src/constants/index.d.ts +5 -0
  353. package/lib/src/constants/supported-preferences.d.ts +1 -0
  354. package/lib/src/constants/value-types.d.ts +5 -0
  355. package/lib/src/constants/variable-types.d.ts +2 -0
  356. package/lib/src/i18n/build-dictionary.d.ts +24 -0
  357. package/lib/src/i18n/dictionary.d.ts +37 -0
  358. package/lib/src/i18n/index.d.ts +7 -0
  359. package/lib/src/i18n/inputNumberProps.d.ts +13 -0
  360. package/lib/src/index.d.ts +3 -0
  361. package/lib/src/type.utils.d.ts +1 -0
  362. package/lib/src/use-lunatic/actions.d.ts +289 -0
  363. package/lib/src/use-lunatic/commons/calculated-variables.d.ts +8 -0
  364. package/lib/src/use-lunatic/commons/check-loops.d.ts +3 -0
  365. package/lib/src/use-lunatic/commons/check-pager.d.ts +5 -0
  366. package/lib/src/use-lunatic/commons/compile-controls.d.ts +7 -0
  367. package/lib/src/use-lunatic/commons/compose.d.ts +3 -0
  368. package/lib/src/use-lunatic/commons/create-map-pages.d.ts +7 -0
  369. package/lib/src/use-lunatic/commons/execute-condition-filter.d.ts +3 -0
  370. package/lib/src/use-lunatic/commons/execute-expression/create-execute-expression.d.ts +9 -0
  371. package/lib/src/use-lunatic/commons/execute-expression/create-memoizer.d.ts +8 -0
  372. package/lib/src/use-lunatic/commons/execute-expression/create-refresh-calculated.d.ts +24 -0
  373. package/lib/src/use-lunatic/commons/execute-expression/execute-expression.d.ts +11 -0
  374. package/lib/src/use-lunatic/commons/execute-expression/execute-expression.spec.d.ts +1 -0
  375. package/lib/src/use-lunatic/commons/execute-expression/get-expressions-variables.d.ts +7 -0
  376. package/lib/src/use-lunatic/commons/execute-expression/get-expressions-variables.spec.d.ts +1 -0
  377. package/lib/src/use-lunatic/commons/execute-expression/get-safety-expression.d.ts +6 -0
  378. package/lib/src/use-lunatic/commons/execute-expression/index.d.ts +1 -0
  379. package/lib/src/use-lunatic/commons/fill-components/fill-component-expressions.d.ts +9 -0
  380. package/lib/src/use-lunatic/commons/fill-components/fill-component-expressions.spec.d.ts +1 -0
  381. package/lib/src/use-lunatic/commons/fill-components/fill-component-value.d.ts +6 -0
  382. package/lib/src/use-lunatic/commons/fill-components/fill-components.d.ts +12 -0
  383. package/lib/src/use-lunatic/commons/fill-components/fill-from-state.d.ts +699 -0
  384. package/lib/src/use-lunatic/commons/fill-components/fill-management.d.ts +6 -0
  385. package/lib/src/use-lunatic/commons/fill-components/fill-missing-response.d.ts +11 -0
  386. package/lib/src/use-lunatic/commons/fill-components/fill-pagination.d.ts +9 -0
  387. package/lib/src/use-lunatic/commons/fill-components/fill-specific-expression.d.ts +571 -0
  388. package/lib/src/use-lunatic/commons/fill-components/index.d.ts +1 -0
  389. package/lib/src/use-lunatic/commons/get-compatible-vtl-expression.d.ts +6 -0
  390. package/lib/src/use-lunatic/commons/get-component-value/get-component-value.d.ts +6 -0
  391. package/lib/src/use-lunatic/commons/get-component-value/index.d.ts +1 -0
  392. package/lib/src/use-lunatic/commons/get-components-from-state.d.ts +7 -0
  393. package/lib/src/use-lunatic/commons/get-data.d.ts +26 -0
  394. package/lib/src/use-lunatic/commons/get-errors-without-empty-value.d.ts +6 -0
  395. package/lib/src/use-lunatic/commons/getOverview.d.ts +19 -0
  396. package/lib/src/use-lunatic/commons/index.d.ts +13 -0
  397. package/lib/src/use-lunatic/commons/is-First-last-page.d.ts +6 -0
  398. package/lib/src/use-lunatic/commons/is-paginated-loop.d.ts +6 -0
  399. package/lib/src/use-lunatic/commons/is-roundabout.d.ts +2 -0
  400. package/lib/src/use-lunatic/commons/page-tag.d.ts +12 -0
  401. package/lib/src/use-lunatic/commons/use-components-from-state.d.ts +4 -0
  402. package/lib/src/use-lunatic/hooks/use-loop-variables.d.ts +5 -0
  403. package/lib/src/use-lunatic/index.d.ts +1 -0
  404. package/lib/src/use-lunatic/initial-state.d.ts +3 -0
  405. package/lib/src/use-lunatic/lunatic-context.d.ts +31 -0
  406. package/lib/src/use-lunatic/reducer/commons/index.d.ts +4 -0
  407. package/lib/src/use-lunatic/reducer/commons/is-empty-on-empty-page.d.ts +3 -0
  408. package/lib/src/use-lunatic/reducer/commons/is-loop-component.d.ts +12 -0
  409. package/lib/src/use-lunatic/reducer/commons/resize-array-variable.d.ts +5 -0
  410. package/lib/src/use-lunatic/reducer/commons/validate-condition-filter.d.ts +6 -0
  411. package/lib/src/use-lunatic/reducer/index.d.ts +1 -0
  412. package/lib/src/use-lunatic/reducer/overview/overview-on-change.d.ts +2 -0
  413. package/lib/src/use-lunatic/reducer/overview/overview-on-init.d.ts +99 -0
  414. package/lib/src/use-lunatic/reducer/reduce-go-next-page.d.ts +4 -0
  415. package/lib/src/use-lunatic/reducer/reduce-go-previous-page.d.ts +3 -0
  416. package/lib/src/use-lunatic/reducer/reduce-go-to-page.d.ts +4 -0
  417. package/lib/src/use-lunatic/reducer/reduce-handle-change/index.d.ts +1 -0
  418. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.d.ts +7 -0
  419. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.spec.d.ts +1 -0
  420. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-handle-change.d.ts +4 -0
  421. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-links-variable.d.ts +15 -0
  422. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-missing.d.ts +7 -0
  423. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-resizing.d.ts +4 -0
  424. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-variables-array.d.ts +14 -0
  425. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-variables-simple.d.ts +9 -0
  426. package/lib/src/use-lunatic/reducer/reduce-on-init.d.ts +15 -0
  427. package/lib/src/use-lunatic/reducer/reduce-on-set-waiting.d.ts +4 -0
  428. package/lib/src/use-lunatic/reducer/reduce-roundabout.d.ts +99 -0
  429. package/lib/src/use-lunatic/reducer/reduce-update-state.d.ts +3 -0
  430. package/lib/src/use-lunatic/reducer/reducer.d.ts +4 -0
  431. package/lib/src/use-lunatic/reducer/validate-controls/validation-utils.d.ts +6 -0
  432. package/lib/src/use-lunatic/type-source.d.ts +281 -0
  433. package/lib/src/use-lunatic/type.d.ts +143 -0
  434. package/lib/src/use-lunatic/use-lunatic.d.ts +84 -0
  435. package/lib/src/use-lunatic/use-lunatic.test.d.ts +1 -0
  436. package/lib/src/use-lunatic/use-suggesters.d.ts +19 -0
  437. package/lib/src/utils/constants/features.d.ts +3 -0
  438. package/lib/src/utils/constants/index.d.ts +5 -0
  439. package/lib/src/utils/constants/links.d.ts +2 -0
  440. package/lib/src/utils/constants/missing.d.ts +2 -0
  441. package/lib/src/utils/constants/variable-status.d.ts +5 -0
  442. package/lib/src/utils/constants/variable-types.d.ts +1 -0
  443. package/lib/src/utils/idb-tools/clear-store.d.ts +2 -0
  444. package/lib/src/utils/idb-tools/get-idb.d.ts +2 -0
  445. package/lib/src/utils/idb-tools/insert-entity.d.ts +2 -0
  446. package/lib/src/utils/is-element.d.ts +3 -0
  447. package/lib/src/utils/is-object.d.ts +4 -0
  448. package/lib/src/utils/object.d.ts +4 -0
  449. package/lib/src/utils/store-tools/constantes.d.ts +21 -0
  450. package/lib/src/utils/store-tools/initStore.d.ts +2 -0
  451. package/lib/src/utils/store-tools/open-or-create-store.d.ts +2 -0
  452. package/lib/src/utils/suggester-workers/append-to-index/create-append-task.d.ts +7 -0
  453. package/lib/src/utils/suggester-workers/create-worker-ts.d.ts +1 -0
  454. package/lib/src/utils/to-number.d.ts +4 -0
  455. package/lib/src/utils/vtl/dataset-builder.d.ts +5 -0
  456. package/lib/src/utils/vtl/index.d.ts +1 -0
  457. package/lib/stories/Introduction.stories.mdx +114 -0
  458. package/lib/stories/checkbox-boolean/checkboxBoolean.stories.js +34 -0
  459. package/lib/stories/checkbox-boolean/source.json +58 -0
  460. package/lib/stories/checkbox-group/checkbox-group.stories.js +34 -0
  461. package/lib/stories/checkbox-group/source.json +86 -0
  462. package/lib/stories/checkbox-one/checkboxOne.stories.js +43 -0
  463. package/lib/stories/checkbox-one/source.json +52 -0
  464. package/lib/stories/checkboxGroup/checkboxGroup.stories.js +43 -0
  465. package/lib/stories/checkboxGroup/source.json +403 -0
  466. package/lib/stories/custom-mui/checkbox-boolean-mui.js +32 -0
  467. package/lib/stories/custom-mui/checkbox-group-mui.js +68 -0
  468. package/lib/stories/custom-mui/checkbox-one-mui.js +16 -0
  469. package/lib/stories/custom-mui/index.js +111 -0
  470. package/lib/stories/custom-mui/input-mui.js +52 -0
  471. package/lib/stories/custom-mui/input-number-mui.js +40 -0
  472. package/lib/stories/custom-mui/radio-mui.js +62 -0
  473. package/lib/stories/custom-mui/suggester-mui/index.js +13 -0
  474. package/lib/stories/custom-mui/suggester-mui/suggester-mui.js +304 -0
  475. package/lib/stories/custom-mui/switch-mui.js +47 -0
  476. package/lib/stories/custom-mui/table-mui.js +28 -0
  477. package/lib/stories/custom-mui/tbody-mui.js +23 -0
  478. package/lib/stories/custom-mui/td-mui.js +25 -0
  479. package/lib/stories/custom-mui/textarea-mui.js +43 -0
  480. package/lib/stories/custom-mui/th-mui.js +24 -0
  481. package/lib/stories/custom-mui/thead-mui.js +23 -0
  482. package/lib/stories/custom-mui/tr-mui.js +33 -0
  483. package/lib/stories/date-picker/data.json +3 -0
  484. package/lib/stories/date-picker/datepicker.stories.js +38 -0
  485. package/lib/stories/date-picker/source.json +110 -0
  486. package/lib/stories/declaration/data.json +1 -0
  487. package/lib/stories/declaration/input.stories.js +36 -0
  488. package/lib/stories/declaration/source.json +74 -0
  489. package/lib/stories/dropdown/data.json +16 -0
  490. package/lib/stories/dropdown/dropdown.stories.js +39 -0
  491. package/lib/stories/dropdown/source.json +158 -0
  492. package/lib/stories/filter-description/filter-description.stories.js +50 -0
  493. package/lib/stories/filter-description/source-options.json +81 -0
  494. package/lib/stories/filter-description/source.json +11 -0
  495. package/lib/stories/input/data.json +1 -0
  496. package/lib/stories/input/input.stories.js +36 -0
  497. package/lib/stories/input/source.json +91 -0
  498. package/lib/stories/input-number/input-number.stories.js +56 -0
  499. package/lib/stories/input-number/source-euros.json +37 -0
  500. package/lib/stories/input-number/source-thansand.json +34 -0
  501. package/lib/stories/input-number/source.json +33 -0
  502. package/lib/stories/loop/block-for-loop.stories.js +41 -0
  503. package/lib/stories/loop/roster-for-loop.stories.js +34 -0
  504. package/lib/stories/loop/source-bloc.json +114 -0
  505. package/lib/stories/loop/source-roster.json +114 -0
  506. package/lib/stories/loop/source-with-header.json +127 -0
  507. package/lib/stories/overview/data.json +1 -0
  508. package/lib/stories/overview/overview.stories.js +37 -0
  509. package/lib/stories/overview/source.json +28 -0
  510. package/lib/stories/overview/sourceWithHierarchy.json +6290 -0
  511. package/lib/stories/pairwise/data.json +12 -0
  512. package/lib/stories/pairwise/links.json +270 -0
  513. package/lib/stories/pairwise/pairwise-links.stories.js +137 -0
  514. package/lib/stories/paste-questionnaire/source.json +6290 -0
  515. package/lib/stories/paste-questionnaire/test.stories.js +84 -0
  516. package/lib/stories/questionnaires/logement/data.json +2686 -0
  517. package/lib/stories/questionnaires/logement/logement.stories.js +76 -0
  518. package/lib/stories/questionnaires/logement/source-sequence.json +34181 -0
  519. package/lib/stories/questionnaires/logement/source-sum.json +34612 -0
  520. package/lib/stories/questionnaires/logement/source.json +34191 -0
  521. package/lib/stories/questionnaires/recensement/data.json +12 -0
  522. package/lib/stories/questionnaires/recensement/recensement.stories.js +52 -0
  523. package/lib/stories/questionnaires/recensement/source.json +15190 -0
  524. package/lib/stories/questionnaires/rp/data.json +5 -0
  525. package/lib/stories/questionnaires/rp/rp.stories.js +37 -0
  526. package/lib/stories/questionnaires/rp/source.json +262 -0
  527. package/lib/stories/questionnaires/simpsons/simpsons.stories.js +553 -0
  528. package/lib/stories/questionnaires/simpsons/source.json +6296 -0
  529. package/lib/stories/questionnaires-test/V2_DeclarationsSimples.json +848 -0
  530. package/lib/stories/questionnaires-test/V2_MinMaxSum_Boucles.json +509 -0
  531. package/lib/stories/questionnaires-test/V2_QuestSimple_Boucles.json +4091 -0
  532. package/lib/stories/questionnaires-test/V2_TCMRallyeGames.json +2892 -0
  533. package/lib/stories/questionnaires-test/controls/V2_ControlesNonNum_horsBoucle_PasPageFin.json +666 -0
  534. package/lib/stories/questionnaires-test/controls/V2_ControlesNum_horsBoucle_PasPageFin.json +1966 -0
  535. package/lib/stories/questionnaires-test/controls/V2_Controles_BouclesLiees2_PasPageFin.json +709 -0
  536. package/lib/stories/questionnaires-test/controls/V2_Controles_BouclesLiees_PasPageFin.json +533 -0
  537. package/lib/stories/questionnaires-test/controls/boucles-n.json +202 -0
  538. package/lib/stories/questionnaires-test/controls/controls.stories.js +97 -0
  539. package/lib/stories/questionnaires-test/test-dylan.json +558 -0
  540. package/lib/stories/questionnaires-test/test.stories.js +93 -0
  541. package/lib/stories/radio/radio.stories.js +43 -0
  542. package/lib/stories/radio/source.json +51 -0
  543. package/lib/stories/roundabout/data.json +25 -0
  544. package/lib/stories/roundabout/roundabout.stories.js +36 -0
  545. package/lib/stories/roundabout/source.json +273 -0
  546. package/lib/stories/suggester/simple.json +146 -0
  547. package/lib/stories/suggester/source.json +254 -0
  548. package/lib/stories/suggester/suggester-workers.stories.js +208 -0
  549. package/lib/stories/suggester/suggester.stories.js +84 -0
  550. package/lib/stories/switch/README.md +31 -0
  551. package/lib/stories/switch/data-forced.json +48 -0
  552. package/lib/stories/switch/source.json +80 -0
  553. package/lib/stories/switch/switch.stories.js +39 -0
  554. package/lib/stories/table/data-roster.json +1 -0
  555. package/lib/stories/table/data.json +1 -0
  556. package/lib/stories/table/source-roster.json +513 -0
  557. package/lib/stories/table/source.json +31 -0
  558. package/lib/stories/table/table-dynamique.json +67 -0
  559. package/lib/stories/table/table.stories.js +63 -0
  560. package/lib/stories/textarea/data.json +1 -0
  561. package/lib/stories/textarea/source.json +51 -0
  562. package/lib/stories/textarea/textarea.stories.js +36 -0
  563. package/lib/stories/utils/custom-lunatic.scss +28 -0
  564. package/lib/stories/utils/default-arg-types.js +22 -0
  565. package/lib/stories/utils/options.js +32 -0
  566. package/lib/stories/utils/orchestrator.js +263 -0
  567. package/lib/stories/utils/orchestrator.scss +5 -0
  568. package/lib/stories/utils/overview.js +54 -0
  569. package/lib/stories/utils/overview.scss +30 -0
  570. package/lib/stories/utils/waiting/index.js +13 -0
  571. package/lib/stories/utils/waiting/preloader.svg +1 -0
  572. package/lib/stories/utils/waiting/waiting.js +33 -0
  573. package/lib/stories/utils/waiting/waiting.scss +21 -0
  574. package/lib/tests/utils/lunatic.d.ts +11 -0
  575. package/lib/type.utils.js +5 -0
  576. package/lib/use-lunatic/actions.js +60 -0
  577. package/lib/use-lunatic/commons/calculated-variables.js +104 -0
  578. package/lib/use-lunatic/commons/check-loops.js +99 -0
  579. package/lib/use-lunatic/commons/check-pager.js +24 -0
  580. package/lib/use-lunatic/commons/compile-controls.js +72 -0
  581. package/lib/use-lunatic/commons/compose.js +20 -0
  582. package/lib/use-lunatic/commons/create-map-pages.js +81 -0
  583. package/lib/use-lunatic/commons/execute-condition-filter.js +27 -0
  584. package/lib/use-lunatic/commons/execute-expression/create-execute-expression.js +268 -0
  585. package/lib/use-lunatic/commons/execute-expression/create-memoizer.js +63 -0
  586. package/lib/use-lunatic/commons/execute-expression/create-refresh-calculated.js +148 -0
  587. package/lib/use-lunatic/commons/execute-expression/execute-expression.js +91 -0
  588. package/lib/use-lunatic/commons/execute-expression/execute-expression.spec.js +38 -0
  589. package/lib/use-lunatic/commons/execute-expression/get-expressions-variables.js +40 -0
  590. package/lib/use-lunatic/commons/execute-expression/get-expressions-variables.spec.js +31 -0
  591. package/lib/use-lunatic/commons/execute-expression/get-safety-expression.js +35 -0
  592. package/lib/use-lunatic/commons/execute-expression/index.js +13 -0
  593. package/lib/use-lunatic/commons/fill-components/fill-component-expressions.js +111 -0
  594. package/lib/use-lunatic/commons/fill-components/fill-component-expressions.spec.js +42 -0
  595. package/lib/use-lunatic/commons/fill-components/fill-component-value.js +22 -0
  596. package/lib/use-lunatic/commons/fill-components/fill-components.js +45 -0
  597. package/lib/use-lunatic/commons/fill-components/fill-from-state.js +30 -0
  598. package/lib/use-lunatic/commons/fill-components/fill-management.js +23 -0
  599. package/lib/use-lunatic/commons/fill-components/fill-missing-response.js +35 -0
  600. package/lib/use-lunatic/commons/fill-components/fill-pagination.js +24 -0
  601. package/lib/use-lunatic/commons/fill-components/fill-specific-expression.js +46 -0
  602. package/lib/use-lunatic/commons/fill-components/index.js +13 -0
  603. package/lib/use-lunatic/commons/get-compatible-vtl-expression.js +28 -0
  604. package/lib/use-lunatic/commons/get-component-value/get-component-value.js +176 -0
  605. package/lib/use-lunatic/commons/get-component-value/index.js +13 -0
  606. package/lib/use-lunatic/commons/get-components-from-state.js +47 -0
  607. package/lib/use-lunatic/commons/get-data.js +80 -0
  608. package/lib/use-lunatic/commons/get-errors-without-empty-value.js +25 -0
  609. package/lib/use-lunatic/commons/getOverview.js +40 -0
  610. package/lib/use-lunatic/commons/index.js +109 -0
  611. package/lib/use-lunatic/commons/is-First-last-page.js +18 -0
  612. package/lib/use-lunatic/commons/is-paginated-loop.js +11 -0
  613. package/lib/use-lunatic/commons/is-roundabout.js +10 -0
  614. package/lib/use-lunatic/commons/load-suggesters.js +158 -0
  615. package/lib/use-lunatic/commons/page-tag.js +72 -0
  616. package/lib/use-lunatic/commons/use-components-from-state.js +41 -0
  617. package/lib/use-lunatic/hooks/use-loop-variables.js +26 -0
  618. package/lib/use-lunatic/index.js +13 -0
  619. package/lib/use-lunatic/initial-state.js +49 -0
  620. package/lib/use-lunatic/lunatic-context.js +83 -0
  621. package/lib/use-lunatic/reducer/commons/index.js +44 -0
  622. package/lib/use-lunatic/reducer/commons/is-empty-on-empty-page.js +32 -0
  623. package/lib/use-lunatic/reducer/commons/is-loop-component.js +10 -0
  624. package/lib/use-lunatic/reducer/commons/resize-array-variable.js +32 -0
  625. package/lib/use-lunatic/reducer/commons/validate-condition-filter.js +29 -0
  626. package/lib/use-lunatic/reducer/index.js +13 -0
  627. package/lib/use-lunatic/reducer/overview/overview-on-change.js +49 -0
  628. package/lib/use-lunatic/reducer/overview/overview-on-init.js +104 -0
  629. package/lib/use-lunatic/reducer/reduce-go-next-page.js +181 -0
  630. package/lib/use-lunatic/reducer/reduce-go-previous-page.js +146 -0
  631. package/lib/use-lunatic/reducer/reduce-go-to-page.js +79 -0
  632. package/lib/use-lunatic/reducer/reduce-handle-change/__mocks__/source-cleaning-loop.json +926 -0
  633. package/lib/use-lunatic/reducer/reduce-handle-change/index.js +13 -0
  634. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.js +72 -0
  635. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.spec.js +46 -0
  636. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-handle-change.js +115 -0
  637. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-links-variable.js +89 -0
  638. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-missing.js +88 -0
  639. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-resizing.js +113 -0
  640. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-variables-array.js +44 -0
  641. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-variables-simple.js +28 -0
  642. package/lib/use-lunatic/reducer/reduce-on-init.js +238 -0
  643. package/lib/use-lunatic/reducer/reduce-on-set-waiting.js +21 -0
  644. package/lib/use-lunatic/reducer/reduce-roundabout.js +29 -0
  645. package/lib/use-lunatic/reducer/reduce-update-state.js +22 -0
  646. package/lib/use-lunatic/reducer/reducer.js +37 -0
  647. package/lib/use-lunatic/reducer/validate-controls/validation-utils.js +62 -0
  648. package/lib/use-lunatic/type-source.js +24 -0
  649. package/lib/use-lunatic/type.js +5 -0
  650. package/lib/use-lunatic/use-lunatic.js +189 -0
  651. package/lib/use-lunatic/use-lunatic.test.js +168 -0
  652. package/lib/use-lunatic/use-suggesters.js +158 -0
  653. package/lib/utils/constants/alphabet.js +8 -0
  654. package/lib/utils/constants/features.js +12 -0
  655. package/lib/utils/constants/index.js +60 -0
  656. package/lib/utils/constants/links.js +10 -0
  657. package/lib/utils/constants/missing.js +10 -0
  658. package/lib/utils/constants/variable-status.js +16 -0
  659. package/lib/utils/constants/variable-types.js +8 -0
  660. package/lib/utils/idb-tools/clear-store.js +40 -0
  661. package/lib/utils/idb-tools/create-db-opener.js +47 -0
  662. package/lib/utils/idb-tools/create-open-db.js +29 -0
  663. package/lib/utils/idb-tools/get-entity.js +21 -0
  664. package/lib/utils/idb-tools/get-idb.js +13 -0
  665. package/lib/utils/idb-tools/idb-bulk-insert.js +134 -0
  666. package/lib/utils/idb-tools/index.js +64 -0
  667. package/lib/utils/idb-tools/insert-entity.js +21 -0
  668. package/lib/utils/idb-tools/open-db.js +24 -0
  669. package/lib/utils/idb-tools/open-or-create-db.js +42 -0
  670. package/lib/utils/is-element.js +10 -0
  671. package/lib/utils/is-object.js +13 -0
  672. package/lib/utils/object.js +31 -0
  673. package/lib/utils/store-tools/auto-load.js +162 -0
  674. package/lib/utils/store-tools/clear-store-data.js +33 -0
  675. package/lib/utils/store-tools/clear-store-info.js +33 -0
  676. package/lib/utils/store-tools/constantes.js +31 -0
  677. package/lib/utils/store-tools/create/create.js +51 -0
  678. package/lib/utils/store-tools/create/index.js +20 -0
  679. package/lib/utils/store-tools/create/update-store-info.js +27 -0
  680. package/lib/utils/store-tools/get-store-count.js +24 -0
  681. package/lib/utils/store-tools/index.js +54 -0
  682. package/lib/utils/store-tools/initStore.js +56 -0
  683. package/lib/utils/store-tools/open-or-create-store.js +52 -0
  684. package/lib/utils/store-tools/use-store-index.js +58 -0
  685. package/lib/utils/suggester-workers/append-to-index/append.js +78 -0
  686. package/lib/utils/suggester-workers/append-to-index/append.worker.js +33 -0
  687. package/lib/utils/suggester-workers/append-to-index/create-append-task.js +66 -0
  688. package/lib/utils/suggester-workers/append-to-index/dist/append.worker.dev.js +37 -0
  689. package/lib/utils/suggester-workers/append-to-index/dist/create-append-task.js +69 -0
  690. package/lib/utils/suggester-workers/append-to-index/dist/index.dev.js +24 -0
  691. package/lib/utils/suggester-workers/append-to-index/index.js +20 -0
  692. package/lib/utils/suggester-workers/append-to-index/prepare-entities.js +88 -0
  693. package/lib/utils/suggester-workers/append-to-index/store-messages.js +45 -0
  694. package/lib/utils/suggester-workers/commons-tokenizer/create-entity-tokenizer.js +54 -0
  695. package/lib/utils/suggester-workers/commons-tokenizer/create-fields-tokenizer.js +77 -0
  696. package/lib/utils/suggester-workers/commons-tokenizer/create-filter-stop-words.js +36 -0
  697. package/lib/utils/suggester-workers/commons-tokenizer/filters/compose-filters.js +21 -0
  698. package/lib/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.js +36 -0
  699. package/lib/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.spec.js +15 -0
  700. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-accents.js +19 -0
  701. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-accents.spec.js +17 -0
  702. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-double.js +25 -0
  703. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-double.spec.js +24 -0
  704. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-length.js +15 -0
  705. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-length.spec.js +24 -0
  706. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-stemmer.js +23 -0
  707. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-stemmer.spec.js +17 -0
  708. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.js +53 -0
  709. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.spec.js +15 -0
  710. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.js +16 -0
  711. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.spec.js +15 -0
  712. package/lib/utils/suggester-workers/commons-tokenizer/filters/index.js +20 -0
  713. package/lib/utils/suggester-workers/commons-tokenizer/filters/stop-words.js +9 -0
  714. package/lib/utils/suggester-workers/commons-tokenizer/get-regexp-from-pattern.js +14 -0
  715. package/lib/utils/suggester-workers/commons-tokenizer/get-stemmer.js +23 -0
  716. package/lib/utils/suggester-workers/commons-tokenizer/index.js +69 -0
  717. package/lib/utils/suggester-workers/commons-tokenizer/prepare-string-indexation.js +18 -0
  718. package/lib/utils/suggester-workers/commons-tokenizer/soft-tokenizer.js +12 -0
  719. package/lib/utils/suggester-workers/create-worker-ts.js +54 -0
  720. package/lib/utils/suggester-workers/create-worker.js +54 -0
  721. package/lib/utils/suggester-workers/find-best-label/find-best-label.js +63 -0
  722. package/lib/utils/suggester-workers/find-best-label/find-best-label.worker.js +53 -0
  723. package/lib/utils/suggester-workers/find-best-label/index.js +1 -0
  724. package/lib/utils/suggester-workers/find-best-label/tokenize.js +45 -0
  725. package/lib/utils/suggester-workers/find-best-label/tokenize.spec.js +25 -0
  726. package/lib/utils/suggester-workers/searching/compute-score.js +36 -0
  727. package/lib/utils/suggester-workers/searching/get-db.js +48 -0
  728. package/lib/utils/suggester-workers/searching/index.js +13 -0
  729. package/lib/utils/suggester-workers/searching/order/create-alphanumeric-orderer.js +28 -0
  730. package/lib/utils/suggester-workers/searching/order/index.js +25 -0
  731. package/lib/utils/suggester-workers/searching/query-parser/index.js +20 -0
  732. package/lib/utils/suggester-workers/searching/query-parser/query-parser-soft.js +12 -0
  733. package/lib/utils/suggester-workers/searching/query-parser/query-parser-soft.spec.js +27 -0
  734. package/lib/utils/suggester-workers/searching/query-parser/query-parser-tokenized.js +35 -0
  735. package/lib/utils/suggester-workers/searching/resolve-query-parser.js +57 -0
  736. package/lib/utils/suggester-workers/searching/search-in-index.js +22 -0
  737. package/lib/utils/suggester-workers/searching/searching.js +141 -0
  738. package/lib/utils/suggester-workers/searching/searching.worker.js +20 -0
  739. package/lib/utils/to-number.js +18 -0
  740. package/lib/utils/vtl/dataset-builder.js +27 -0
  741. package/lib/utils/vtl/index.js +13 -0
  742. package/package.json +164 -143
  743. package/lib/index.js.map +0 -1
  744. package/src/components/breadcrumb/breadcrumb.scss +0 -20
  745. package/src/components/breadcrumb/component.js +0 -29
  746. package/src/components/breadcrumb/index.js +0 -1
  747. package/src/components/button/button.scss +0 -24
  748. package/src/components/button/component.js +0 -25
  749. package/src/components/button/index.js +0 -1
  750. package/src/components/checkbox/boolean.js +0 -152
  751. package/src/components/checkbox/checkbox.scss +0 -71
  752. package/src/components/checkbox/group.js +0 -187
  753. package/src/components/checkbox/index.js +0 -3
  754. package/src/components/checkbox/one.js +0 -10
  755. package/src/components/components.js +0 -17
  756. package/src/components/datepicker/component.js +0 -10
  757. package/src/components/datepicker/datepicker.scss +0 -1
  758. package/src/components/datepicker/index.js +0 -1
  759. package/src/components/declarations/component.js +0 -38
  760. package/src/components/declarations/declarations.scss +0 -38
  761. package/src/components/declarations/index.js +0 -1
  762. package/src/components/declarations/wrappers/index.js +0 -3
  763. package/src/components/declarations/wrappers/input-declarations-wrapper.js +0 -229
  764. package/src/components/declarations/wrappers/list-declarations-wrapper.js +0 -203
  765. package/src/components/declarations/wrappers/simple-declarations-wrapper.js +0 -54
  766. package/src/components/dropdown/commons/actions.js +0 -56
  767. package/src/components/dropdown/commons/children-to-option.js +0 -9
  768. package/src/components/dropdown/commons/cleaner-callbacks.js +0 -58
  769. package/src/components/dropdown/commons/components/closed.icon.js +0 -24
  770. package/src/components/dropdown/commons/components/dropdown-container.js +0 -29
  771. package/src/components/dropdown/commons/components/dropdown-field.js +0 -46
  772. package/src/components/dropdown/commons/components/dropdown.js +0 -183
  773. package/src/components/dropdown/commons/components/label.js +0 -28
  774. package/src/components/dropdown/commons/components/opened.icon.js +0 -24
  775. package/src/components/dropdown/commons/components/panel.js +0 -78
  776. package/src/components/dropdown/commons/event-callbacks/index.js +0 -5
  777. package/src/components/dropdown/commons/event-callbacks/on-keydown-callback.js +0 -29
  778. package/src/components/dropdown/commons/event-callbacks/on-mousedown-callback.js +0 -11
  779. package/src/components/dropdown/commons/reducer.js +0 -149
  780. package/src/components/dropdown/commons/tools/index.js +0 -17
  781. package/src/components/dropdown/component.js +0 -125
  782. package/src/components/dropdown/dropdown-edit/cross.icon.js +0 -20
  783. package/src/components/dropdown/dropdown-edit/dropdown-edit.js +0 -190
  784. package/src/components/dropdown/dropdown-edit/icone.js +0 -33
  785. package/src/components/dropdown/dropdown-edit/index.js +0 -11
  786. package/src/components/dropdown/dropdown-edit/option.js +0 -62
  787. package/src/components/dropdown/dropdown-edit/prefix-tools.js +0 -51
  788. package/src/components/dropdown/dropdown-simple/dropdown.js +0 -155
  789. package/src/components/dropdown/dropdown-simple/index.js +0 -20
  790. package/src/components/dropdown/dropdown-simple/option.js +0 -15
  791. package/src/components/dropdown/dropdown.scss +0 -175
  792. package/src/components/dropdown/index.js +0 -1
  793. package/src/components/filter-description/component.js +0 -41
  794. package/src/components/filter-description/index.js +0 -1
  795. package/src/components/icon/assets/checkbox-checked.js +0 -16
  796. package/src/components/icon/assets/checkbox-unchecked.js +0 -16
  797. package/src/components/icon/assets/index.js +0 -4
  798. package/src/components/icon/assets/radio-checked.js +0 -16
  799. package/src/components/icon/assets/radio-unchecked.js +0 -16
  800. package/src/components/icon/component.js +0 -33
  801. package/src/components/icon/icon.scss +0 -13
  802. package/src/components/icon/index.js +0 -1
  803. package/src/components/index.js +0 -4
  804. package/src/components/index.scss +0 -141
  805. package/src/components/input/index.js +0 -2
  806. package/src/components/input/input-number.js +0 -44
  807. package/src/components/input/input.js +0 -10
  808. package/src/components/input/input.scss +0 -35
  809. package/src/components/loop/component.js +0 -105
  810. package/src/components/loop/index.js +0 -1
  811. package/src/components/loop/loop.scss +0 -11
  812. package/src/components/loop/paginated-component.js +0 -205
  813. package/src/components/loop/wrapper.js +0 -15
  814. package/src/components/loop-constructor/block/block.scss +0 -8
  815. package/src/components/loop-constructor/block/component.js +0 -8
  816. package/src/components/loop-constructor/block/index.js +0 -1
  817. package/src/components/loop-constructor/index.js +0 -1
  818. package/src/components/loop-constructor/roster/component.js +0 -7
  819. package/src/components/loop-constructor/roster/index.js +0 -1
  820. package/src/components/loop-constructor/wrapper/body-component.js +0 -118
  821. package/src/components/loop-constructor/wrapper/build-components.js +0 -33
  822. package/src/components/loop-constructor/wrapper/component.js +0 -154
  823. package/src/components/loop-constructor/wrapper/index.js +0 -1
  824. package/src/components/progress-bar/component.js +0 -28
  825. package/src/components/progress-bar/index.js +0 -1
  826. package/src/components/progress-bar/progress-bar.scss +0 -52
  827. package/src/components/radio/component.js +0 -8
  828. package/src/components/radio/index.js +0 -1
  829. package/src/components/radio/radio.scss +0 -57
  830. package/src/components/sequence/component.js +0 -41
  831. package/src/components/sequence/index.js +0 -1
  832. package/src/components/sequence/sequence.scss +0 -8
  833. package/src/components/subsequence/component.js +0 -47
  834. package/src/components/subsequence/index.js +0 -1
  835. package/src/components/suggester/component.js +0 -103
  836. package/src/components/suggester/index.js +0 -1
  837. package/src/components/table/index.js +0 -1
  838. package/src/components/table/table.js +0 -162
  839. package/src/components/table/table.scss +0 -24
  840. package/src/components/textarea/component.js +0 -10
  841. package/src/components/textarea/index.js +0 -1
  842. package/src/components/textarea/textarea.scss +0 -6
  843. package/src/components/tooltip/img/index.js +0 -4
  844. package/src/components/tooltip/index.js +0 -1
  845. package/src/components/tooltip/response.js +0 -52
  846. package/src/components/tooltip/tooltip.scss +0 -27
  847. package/src/constants/component-types.js +0 -1
  848. package/src/constants/declarations.js +0 -14
  849. package/src/constants/index.js +0 -4
  850. package/src/constants/supported-preferences.js +0 -10
  851. package/src/constants/value-types.js +0 -5
  852. package/src/constants/variable-types.js +0 -4
  853. package/src/stories/breadcrumb/README.md +0 -14
  854. package/src/stories/breadcrumb/breadcrumb.stories.js +0 -19
  855. package/src/stories/button/README.md +0 -14
  856. package/src/stories/button/button.stories.js +0 -27
  857. package/src/stories/checkbox-boolean/README.md +0 -27
  858. package/src/stories/checkbox-boolean/checkbox-boolean.stories.js +0 -30
  859. package/src/stories/checkbox-boolean/data.json +0 -48
  860. package/src/stories/checkbox-group/README.md +0 -29
  861. package/src/stories/checkbox-group/checkbox-group.stories.js +0 -35
  862. package/src/stories/checkbox-group/data-vtl.json +0 -89
  863. package/src/stories/checkbox-group/data.json +0 -89
  864. package/src/stories/checkbox-one/README.md +0 -31
  865. package/src/stories/checkbox-one/checkbox-one.stories.js +0 -32
  866. package/src/stories/checkbox-one/data-vtl.json +0 -33
  867. package/src/stories/checkbox-one/data.json +0 -33
  868. package/src/stories/datepicker/README.md +0 -31
  869. package/src/stories/datepicker/data.json +0 -28
  870. package/src/stories/datepicker/datepicker.stories.js +0 -36
  871. package/src/stories/declarations/README.md +0 -19
  872. package/src/stories/declarations/declarations.stories.js +0 -112
  873. package/src/stories/dropdown/README.md +0 -44
  874. package/src/stories/dropdown/data-naf.json +0 -6963
  875. package/src/stories/dropdown/data-props.json +0 -81
  876. package/src/stories/dropdown/data.json +0 -78
  877. package/src/stories/dropdown/dropdown.stories.js +0 -65
  878. package/src/stories/filter-description/README.md +0 -15
  879. package/src/stories/filter-description/filter-description.stories.js +0 -53
  880. package/src/stories/input/README.md +0 -33
  881. package/src/stories/input/data.json +0 -28
  882. package/src/stories/input/input.stories.js +0 -44
  883. package/src/stories/input-number/README.md +0 -37
  884. package/src/stories/input-number/data.json +0 -30
  885. package/src/stories/input-number/input-number.stories.js +0 -53
  886. package/src/stories/loop/README.md +0 -25
  887. package/src/stories/loop/loop.stories.js +0 -80
  888. package/src/stories/loop/with-loop/data-loop-deeper.json +0 -298
  889. package/src/stories/loop/with-loop/data-loop.json +0 -211
  890. package/src/stories/loop/with-loop/data-vqs.json +0 -1384
  891. package/src/stories/loop/with-loop/index.js +0 -3
  892. package/src/stories/loop/with-roster/data-loop-deeper.json +0 -298
  893. package/src/stories/loop/with-roster/data-loop.json +0 -213
  894. package/src/stories/loop/with-roster/data-vqs.json +0 -1383
  895. package/src/stories/loop/with-roster/index.js +0 -3
  896. package/src/stories/loop-constructor/README.md +0 -27
  897. package/src/stories/loop-constructor/data-input.json +0 -64
  898. package/src/stories/loop-constructor/data-loop.json +0 -66
  899. package/src/stories/loop-constructor/data-roster.json +0 -68
  900. package/src/stories/loop-constructor/loop-constructor.stories.js +0 -59
  901. package/src/stories/pagination/deeper-loop.json +0 -327
  902. package/src/stories/pagination/pagination.stories.js +0 -57
  903. package/src/stories/pagination/simple-loop.json +0 -277
  904. package/src/stories/pagination/simpsons-question.json +0 -4262
  905. package/src/stories/pagination/simpsons-sequence.json +0 -4362
  906. package/src/stories/progress-bar/README.md +0 -13
  907. package/src/stories/progress-bar/progress-bar.stories.js +0 -24
  908. package/src/stories/questionnaire/fat.json +0 -6558
  909. package/src/stories/questionnaire/questionnaire.stories.js +0 -25
  910. package/src/stories/radio/README.md +0 -31
  911. package/src/stories/radio/data-vtl.json +0 -32
  912. package/src/stories/radio/data.json +0 -32
  913. package/src/stories/radio/radio.stories.js +0 -35
  914. package/src/stories/sequence/README.md +0 -18
  915. package/src/stories/sequence/sequence.stories.js +0 -28
  916. package/src/stories/subsequence/README.md +0 -18
  917. package/src/stories/subsequence/subsequence.stories.js +0 -28
  918. package/src/stories/suggester/README.md +0 -29
  919. package/src/stories/suggester/data-vtl.json +0 -28
  920. package/src/stories/suggester/data.json +0 -28
  921. package/src/stories/suggester/suggester.stories.js +0 -38
  922. package/src/stories/table/README.md +0 -29
  923. package/src/stories/table/data-default.json +0 -19
  924. package/src/stories/table/data-one-axis-one-measure.json +0 -124
  925. package/src/stories/table/data-one-axis-two-measures.json +0 -193
  926. package/src/stories/table/data-one-hierarchical-axis.json +0 -204
  927. package/src/stories/table/data-roster.json +0 -471
  928. package/src/stories/table/data-two-axis-one-measure.json +0 -492
  929. package/src/stories/table/table.stories.js +0 -77
  930. package/src/stories/textarea/README.md +0 -33
  931. package/src/stories/textarea/data-forced.json +0 -28
  932. package/src/stories/textarea/data.json +0 -28
  933. package/src/stories/textarea/textarea.stories.js +0 -67
  934. package/src/stories/tooltip-response/README.md +0 -14
  935. package/src/stories/tooltip-response/md-link.json +0 -31
  936. package/src/stories/tooltip-response/md-tooltip.json +0 -31
  937. package/src/stories/tooltip-response/tooltip.stories.js +0 -83
  938. package/src/stories/utils/custom-lunatic.scss +0 -23
  939. package/src/stories/utils/img/arrow.png +0 -0
  940. package/src/stories/utils/img/check_box.svg +0 -1
  941. package/src/stories/utils/img/check_box_outline.svg +0 -1
  942. package/src/stories/utils/img/lunatic-logo.png +0 -0
  943. package/src/stories/utils/img/menu-down.svg +0 -1
  944. package/src/stories/utils/img/menu-up.svg +0 -1
  945. package/src/stories/utils/img/radio_button_checked.svg +0 -1
  946. package/src/stories/utils/img/radio_button_unchecked.svg +0 -1
  947. package/src/stories/utils/options.js +0 -25
  948. package/src/stories/utils/orchestrator.js +0 -83
  949. package/src/tests/components/breadcrumb.spec.js +0 -13
  950. package/src/tests/components/button.spec.js +0 -11
  951. package/src/tests/components/checkbox-boolean.spec.js +0 -45
  952. package/src/tests/components/checkbox-group.spec.js +0 -53
  953. package/src/tests/components/checkbox-one.spec.js +0 -32
  954. package/src/tests/components/datepicker.spec.js +0 -22
  955. package/src/tests/components/declarations-wrappers/input-declarations-wrapper.spec.js +0 -67
  956. package/src/tests/components/declarations-wrappers/list-declarations-wrapper.spec.js +0 -52
  957. package/src/tests/components/declarations-wrappers/simple-declarations-wrapper.spec.js +0 -21
  958. package/src/tests/components/declarations.spec.js +0 -46
  959. package/src/tests/components/input-number.spec.js +0 -194
  960. package/src/tests/components/input.spec.js +0 -18
  961. package/src/tests/components/progress-bar.spec.js +0 -15
  962. package/src/tests/components/radio.spec.js +0 -27
  963. package/src/tests/components/sequence.spec.js +0 -9
  964. package/src/tests/components/subsequence.spec.js +0 -9
  965. package/src/tests/components/table.spec.js +0 -11
  966. package/src/tests/components/textarea.spec.js +0 -18
  967. package/src/tests/components/tooltip.spec.js +0 -25
  968. package/src/tests/setup/setupTests.js +0 -4
  969. package/src/tests/utils/lib/alphabet.spec.js +0 -36
  970. package/src/tests/utils/lib/checkbox/group.spec.js +0 -72
  971. package/src/tests/utils/lib/decorator/title-decorator.spec.js +0 -12
  972. package/src/tests/utils/lib/items-positioning.spec.js +0 -17
  973. package/src/tests/utils/lib/label-position.spec.js +0 -22
  974. package/src/tests/utils/lib/loops/bindings.spec.js +0 -60
  975. package/src/tests/utils/lib/loops/shared.spec.js +0 -78
  976. package/src/tests/utils/lib/pagination/shared.spec.js +0 -42
  977. package/src/tests/utils/lib/responses.spec.js +0 -64
  978. package/src/tests/utils/lib/style.spec.js +0 -26
  979. package/src/tests/utils/lib/table/roster.spec.js +0 -25
  980. package/src/tests/utils/lib/tooltip/build-response.spec.js +0 -95
  981. package/src/tests/utils/lib/tooltip/content.spec.js +0 -109
  982. package/src/tests/utils/to-expose/handler/handler.spec.js +0 -86
  983. package/src/tests/utils/to-expose/handler/questionnaire.json +0 -154
  984. package/src/tests/utils/to-expose/handler/results/index.js +0 -6
  985. package/src/tests/utils/to-expose/handler/results/res-double.json +0 -157
  986. package/src/tests/utils/to-expose/handler/results/res-input-collected.json +0 -154
  987. package/src/tests/utils/to-expose/handler/results/res-input-edited.json +0 -157
  988. package/src/tests/utils/to-expose/handler/results/res-loop.json +0 -157
  989. package/src/tests/utils/to-expose/handler/results/res-matrix.json +0 -157
  990. package/src/tests/utils/to-expose/handler/results/res-responses.json +0 -157
  991. package/src/tests/utils/to-expose/init-questionnaire/data.json +0 -12
  992. package/src/tests/utils/to-expose/init-questionnaire/init-questionnaire.spec.js +0 -19
  993. package/src/tests/utils/to-expose/init-questionnaire/questionnaire.json +0 -129
  994. package/src/tests/utils/to-expose/init-questionnaire/result.json +0 -162
  995. package/src/tests/utils/to-expose/interpret/interpret.spec.js +0 -66
  996. package/src/tests/utils/to-expose/state/questionnaire.json +0 -61
  997. package/src/tests/utils/to-expose/state/results.js +0 -78
  998. package/src/tests/utils/to-expose/state/state.spec.js +0 -59
  999. package/src/utils/lib/alphabet.js +0 -1
  1000. package/src/utils/lib/checkbox/group.js +0 -21
  1001. package/src/utils/lib/checkbox/index.js +0 -1
  1002. package/src/utils/lib/decorator/index.js +0 -1
  1003. package/src/utils/lib/decorator/title-decorator.js +0 -16
  1004. package/src/utils/lib/index.js +0 -13
  1005. package/src/utils/lib/label-position.js +0 -12
  1006. package/src/utils/lib/loops/bindings.js +0 -53
  1007. package/src/utils/lib/loops/build-components.js +0 -33
  1008. package/src/utils/lib/loops/index.js +0 -3
  1009. package/src/utils/lib/loops/shared.js +0 -43
  1010. package/src/utils/lib/memo-check.js +0 -24
  1011. package/src/utils/lib/options-positioning.js +0 -9
  1012. package/src/utils/lib/pagination/flow.js +0 -2
  1013. package/src/utils/lib/pagination/index.js +0 -2
  1014. package/src/utils/lib/pagination/navigation/index.js +0 -1
  1015. package/src/utils/lib/pagination/navigation/shared.js +0 -107
  1016. package/src/utils/lib/prop-types/declarations.js +0 -22
  1017. package/src/utils/lib/prop-types/index.js +0 -5
  1018. package/src/utils/lib/prop-types/lines.js +0 -6
  1019. package/src/utils/lib/prop-types/options.js +0 -8
  1020. package/src/utils/lib/prop-types/response.js +0 -6
  1021. package/src/utils/lib/prop-types/value-type.js +0 -9
  1022. package/src/utils/lib/responses.js +0 -9
  1023. package/src/utils/lib/style.js +0 -10
  1024. package/src/utils/lib/table/index.js +0 -1
  1025. package/src/utils/lib/table/roster.js +0 -23
  1026. package/src/utils/lib/tooltip/build-response.js +0 -41
  1027. package/src/utils/lib/tooltip/content.js +0 -55
  1028. package/src/utils/lib/tooltip/index.js +0 -6
  1029. package/src/utils/to-expose/handler.js +0 -99
  1030. package/src/utils/to-expose/hook.js +0 -153
  1031. package/src/utils/to-expose/index.js +0 -11
  1032. package/src/utils/to-expose/init-questionnaire.js +0 -116
  1033. package/src/utils/to-expose/interpret/index.js +0 -1
  1034. package/src/utils/to-expose/interpret/main.js +0 -36
  1035. package/src/utils/to-expose/interpret/md.js +0 -42
  1036. package/src/utils/to-expose/interpret/vtl.js +0 -43
  1037. package/src/utils/to-expose/state.js +0 -58
  1038. /package/{src/components/tooltip → lib/components/commons/components/variable-status}/img/edited.png +0 -0
  1039. /package/{src/components/tooltip → lib/components/commons/components/variable-status}/img/forced.png +0 -0
@@ -1,4362 +0,0 @@
1
- {
2
- "id": "i6vwi2506qf2mms",
3
- "modele": "SIMPSONS",
4
- "enoCoreVersion": "2.2.3",
5
- "lunaticModelVersion": "2.1.0",
6
- "pagination": "sequence",
7
- "maxPage": "8",
8
- "label": "Questionnaire SIMPSONS 20201215",
9
- "components": [
10
- {
11
- "id": "j6p0ti5h",
12
- "componentType": "Sequence",
13
- "page": "1",
14
- "label": "\"I - Introduction\"",
15
- "declarations": [
16
- {
17
- "id": "j6p0ti5h-d1",
18
- "declarationType": "COMMENT",
19
- "position": "AFTER_QUESTION_TEXT",
20
- "label": "\"We’re going to test your knowledge about the simpsons series.Welcome in the simpsons world!\""
21
- }
22
- ],
23
- "conditionFilter": "\"normal\"",
24
- "hierarchy": {
25
- "sequence": {
26
- "id": "j6p0ti5h",
27
- "page": "1",
28
- "label": "\"I - Introduction\""
29
- }
30
- }
31
- },
32
-
33
- {
34
- "id": "j6p3dkx6",
35
- "componentType": "Textarea",
36
- "mandatory": true,
37
- "page": "1",
38
- "maxLength": 500,
39
- "label": "\"➡ 1. Before starting, do you have any comments about the Simpsons family?\"",
40
- "conditionFilter": "\"normal\"",
41
- "hierarchy": {
42
- "sequence": {
43
- "id": "j6p0ti5h",
44
- "page": "1",
45
- "label": "\"I - Introduction\""
46
- }
47
- },
48
- "bindingDependencies": ["COMMENT"],
49
- "response": { "name": "COMMENT" }
50
- },
51
-
52
- {
53
- "id": "j6p0np9q",
54
- "componentType": "CheckboxBoolean",
55
- "mandatory": false,
56
- "page": "1",
57
- "label": "\"➡ 2. If you agree to answer this questionnaire, please check the box\"",
58
- "declarations": [
59
- {
60
- "id": "j6p0np9q-kir6xl1e",
61
- "declarationType": "COMMENT",
62
- "position": "AFTER_QUESTION_TEXT",
63
- "label": "\"If not, this is unfortunately the end of this questionnaire.\""
64
- }
65
- ],
66
- "conditionFilter": "\"normal\"",
67
- "hierarchy": {
68
- "sequence": {
69
- "id": "j6p0ti5h",
70
- "page": "1",
71
- "label": "\"I - Introduction\""
72
- }
73
- },
74
- "bindingDependencies": ["READY"],
75
- "response": { "name": "READY" }
76
- },
77
-
78
- {
79
- "id": "j6p6my1d",
80
- "componentType": "FilterDescription",
81
- "page": "1",
82
- "filterDescription": false,
83
- "label": "\"If you are not ready, please go to the end of the questionnaire\"",
84
- "conditionFilter": "\"normal\"",
85
- "hierarchy": {
86
- "sequence": {
87
- "id": "j6p0ti5h",
88
- "page": "1",
89
- "label": "\"I - Introduction\""
90
- }
91
- }
92
- },
93
-
94
- {
95
- "id": "j6p0s7o5",
96
- "componentType": "Subsequence",
97
- "page": "1",
98
- "label": "\"General knowledge of the series\"",
99
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
100
- "hierarchy": {
101
- "sequence": {
102
- "id": "j6p0ti5h",
103
- "page": "1",
104
- "label": "\"I - Introduction\""
105
- },
106
- "subSequence": {
107
- "id": "j6p0s7o5",
108
- "page": "1",
109
- "label": "\"General knowledge of the series\""
110
- }
111
- }
112
- },
113
-
114
- {
115
- "id": "j3343qhx",
116
- "componentType": "Input",
117
- "mandatory": false,
118
- "page": "1",
119
- "maxLength": 30,
120
- "label": "\"➡ 3. Who is the producer?\"",
121
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
122
- "hierarchy": {
123
- "sequence": {
124
- "id": "j6p0ti5h",
125
- "page": "1",
126
- "label": "\"I - Introduction\""
127
- },
128
- "subSequence": {
129
- "id": "j6p0s7o5",
130
- "page": "1",
131
- "label": "\"General knowledge of the series\""
132
- }
133
- },
134
- "bindingDependencies": ["PRODUCER"],
135
- "response": { "name": "PRODUCER" }
136
- },
137
-
138
- {
139
- "id": "j6q9h8tj",
140
- "componentType": "InputNumber",
141
- "mandatory": true,
142
- "page": "1",
143
- "min": 0,
144
- "max": 99,
145
- "decimals": 0,
146
- "label": "\"➡ 4. What is the current season number?\"",
147
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
148
- "hierarchy": {
149
- "sequence": {
150
- "id": "j6p0ti5h",
151
- "page": "1",
152
- "label": "\"I - Introduction\""
153
- },
154
- "subSequence": {
155
- "id": "j6p0s7o5",
156
- "page": "1",
157
- "label": "\"General knowledge of the series\""
158
- }
159
- },
160
- "bindingDependencies": ["SEASON_NUMBER"],
161
- "response": { "name": "SEASON_NUMBER" }
162
- },
163
-
164
- {
165
- "id": "kiq71eoi",
166
- "componentType": "Datepicker",
167
- "mandatory": false,
168
- "page": "1",
169
- "min": "1900-01-01",
170
- "max": "format-date(current-date(),'[Y0001]-[M01]-[D01]')",
171
- "label": "\"➡ 5. When was the first episode of Simpsons? (format YYYY-MM-DD)\"",
172
- "declarations": [
173
- {
174
- "id": "kiq71eoi-kiq7dsy2",
175
- "declarationType": "INSTRUCTION",
176
- "position": "AFTER_QUESTION_TEXT",
177
- "label": "\"Please answer with YYYY-MM-DD format\""
178
- }
179
- ],
180
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
181
- "hierarchy": {
182
- "sequence": {
183
- "id": "j6p0ti5h",
184
- "page": "1",
185
- "label": "\"I - Introduction\""
186
- },
187
- "subSequence": {
188
- "id": "j6p0s7o5",
189
- "page": "1",
190
- "label": "\"General knowledge of the series\""
191
- }
192
- },
193
- "bindingDependencies": ["DATEFIRST"],
194
- "dateFormat": "YYYY-MM-DD",
195
- "response": { "name": "DATEFIRST" }
196
- },
197
-
198
- {
199
- "id": "k5nvty2o",
200
- "componentType": "Datepicker",
201
- "mandatory": false,
202
- "page": "1",
203
- "min": "1980-05",
204
- "label": "\"➡ 6. When was the first episode of the Simpsons? (format YYYY-MM)\"",
205
- "declarations": [
206
- {
207
- "id": "k5nvty2o-k5nvxld8",
208
- "declarationType": "COMMENT",
209
- "position": "AFTER_QUESTION_TEXT",
210
- "label": "\"Please answer with YYYY-MM format\""
211
- }
212
- ],
213
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
214
- "hierarchy": {
215
- "sequence": {
216
- "id": "j6p0ti5h",
217
- "page": "1",
218
- "label": "\"I - Introduction\""
219
- },
220
- "subSequence": {
221
- "id": "j6p0s7o5",
222
- "page": "1",
223
- "label": "\"General knowledge of the series\""
224
- }
225
- },
226
- "bindingDependencies": ["DATEYYYYMM"],
227
- "dateFormat": "YYYY-MM",
228
- "response": { "name": "DATEYYYYMM" }
229
- },
230
-
231
- {
232
- "id": "k5nw1fir",
233
- "componentType": "Datepicker",
234
- "mandatory": false,
235
- "page": "1",
236
- "min": "1900",
237
- "max": "year-from-date(current-date())",
238
- "label": "\"➡ 7. When was the first episode of the Simpsons? (format YYYY)\"",
239
- "declarations": [
240
- {
241
- "id": "k5nw1fir-k5nvmx3n",
242
- "declarationType": "COMMENT",
243
- "position": "AFTER_QUESTION_TEXT",
244
- "label": "\"Please answer with YYYY format\""
245
- }
246
- ],
247
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
248
- "hierarchy": {
249
- "sequence": {
250
- "id": "j6p0ti5h",
251
- "page": "1",
252
- "label": "\"I - Introduction\""
253
- },
254
- "subSequence": {
255
- "id": "j6p0s7o5",
256
- "page": "1",
257
- "label": "\"General knowledge of the series\""
258
- }
259
- },
260
- "bindingDependencies": ["DATEYYYY"],
261
- "dateFormat": "YYYY",
262
- "response": { "name": "DATEYYYY" }
263
- },
264
-
265
- {
266
- "id": "k5nw0w05",
267
- "componentType": "InputNumber",
268
- "mandatory": false,
269
- "page": "1",
270
- "min": 0,
271
- "max": 70,
272
- "decimals": 2,
273
- "label": "\"➡ 8. How long does an episode last?\"",
274
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
275
- "hierarchy": {
276
- "sequence": {
277
- "id": "j6p0ti5h",
278
- "page": "1",
279
- "label": "\"I - Introduction\""
280
- },
281
- "subSequence": {
282
- "id": "j6p0s7o5",
283
- "page": "1",
284
- "label": "\"General knowledge of the series\""
285
- }
286
- },
287
- "bindingDependencies": ["DURATIONH"],
288
- "unit": "heures",
289
- "response": { "name": "DURATIONH" }
290
- },
291
-
292
- {
293
- "id": "k5nvu98z",
294
- "componentType": "InputNumber",
295
- "mandatory": false,
296
- "page": "1",
297
- "min": 0,
298
- "max": 366,
299
- "decimals": 1,
300
- "label": "\"➡ 9. How long does it take to write a new episode?\"",
301
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
302
- "hierarchy": {
303
- "sequence": {
304
- "id": "j6p0ti5h",
305
- "page": "1",
306
- "label": "\"I - Introduction\""
307
- },
308
- "subSequence": {
309
- "id": "j6p0s7o5",
310
- "page": "1",
311
- "label": "\"General knowledge of the series\""
312
- }
313
- },
314
- "bindingDependencies": ["DURATIOND"],
315
- "unit": "jours",
316
- "response": { "name": "DURATIOND" }
317
- },
318
-
319
- {
320
- "id": "k5nw8ei1",
321
- "componentType": "InputNumber",
322
- "mandatory": false,
323
- "page": "1",
324
- "min": 0,
325
- "max": 12,
326
- "decimals": 0,
327
- "label": "\"➡ 10. How long will it take you to watch all the existing episodes?\"",
328
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
329
- "hierarchy": {
330
- "sequence": {
331
- "id": "j6p0ti5h",
332
- "page": "1",
333
- "label": "\"I - Introduction\""
334
- },
335
- "subSequence": {
336
- "id": "j6p0s7o5",
337
- "page": "1",
338
- "label": "\"General knowledge of the series\""
339
- }
340
- },
341
- "bindingDependencies": ["DURATIONM"],
342
- "unit": "mois",
343
- "response": { "name": "DURATIONM" }
344
- },
345
-
346
- {
347
- "id": "k5nw9dk4",
348
- "componentType": "InputNumber",
349
- "mandatory": false,
350
- "page": "1",
351
- "min": 0,
352
- "max": 100,
353
- "decimals": 0,
354
- "label": "\"➡ 11. For how long have you known the Simpsons family?\"",
355
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
356
- "hierarchy": {
357
- "sequence": {
358
- "id": "j6p0ti5h",
359
- "page": "1",
360
- "label": "\"I - Introduction\""
361
- },
362
- "subSequence": {
363
- "id": "j6p0s7o5",
364
- "page": "1",
365
- "label": "\"General knowledge of the series\""
366
- }
367
- },
368
- "bindingDependencies": ["DURATIONY"],
369
- "unit": "années",
370
- "response": { "name": "DURATIONY" }
371
- },
372
-
373
- {
374
- "id": "j6z06z1e",
375
- "componentType": "InputNumber",
376
- "mandatory": false,
377
- "page": "1",
378
- "min": 0,
379
- "max": 99,
380
- "decimals": 1,
381
- "label": "\"➡ 15. In your opinion, how much is the part of audience share in US for the 2016 season?\"",
382
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
383
- "hierarchy": {
384
- "sequence": {
385
- "id": "j6p0ti5h",
386
- "page": "1",
387
- "label": "\"I - Introduction\""
388
- },
389
- "subSequence": {
390
- "id": "j6p0s7o5",
391
- "page": "1",
392
- "label": "\"General knowledge of the series\""
393
- }
394
- },
395
- "bindingDependencies": ["AUDIENCE_SHARE"],
396
- "unit": "%",
397
- "response": { "name": "AUDIENCE_SHARE" }
398
- },
399
-
400
- {
401
- "id": "j3341528",
402
- "componentType": "Sequence",
403
- "page": "2",
404
- "label": "\"II - Simpsons’ city\"",
405
- "declarations": [
406
- {
407
- "id": "j3341528-d2",
408
- "declarationType": "COMMENT",
409
- "position": "AFTER_QUESTION_TEXT",
410
- "label": "\"This module asks about your general knowledge of the Simpsons city\""
411
- }
412
- ],
413
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
414
- "hierarchy": {
415
- "sequence": {
416
- "id": "j3341528",
417
- "page": "2",
418
- "label": "\"II - Simpsons’ city\""
419
- }
420
- }
421
- },
422
-
423
- {
424
- "id": "j3343clt",
425
- "componentType": "Radio",
426
- "mandatory": true,
427
- "page": "2",
428
- "label": "\"➡ 1. In which city do the Simpsons reside?\"",
429
- "declarations": [
430
- {
431
- "id": "j3343clt-d3",
432
- "declarationType": "INSTRUCTION",
433
- "position": "AFTER_QUESTION_TEXT",
434
- "label": "\"One possible answer\""
435
- }
436
- ],
437
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
438
- "hierarchy": {
439
- "sequence": {
440
- "id": "j3341528",
441
- "page": "2",
442
- "label": "\"II - Simpsons’ city\""
443
- }
444
- },
445
- "bindingDependencies": ["CITY"],
446
- "options": [
447
- { "value": "00001", "label": "\"Springfield\"" },
448
-
449
- { "value": "00002", "label": "\"Shelbyville\"" },
450
-
451
- { "value": "03", "label": "\"Seinfeld\"" }
452
- ],
453
- "response": { "name": "CITY" }
454
- },
455
-
456
- {
457
- "id": "j6qdfhvw",
458
- "componentType": "CheckboxOne",
459
- "mandatory": false,
460
- "page": "2",
461
- "label": "\"➡ 2. Who is the Simpsons city mayor?\"",
462
- "declarations": [
463
- {
464
- "id": "j6qdfhvw-d4",
465
- "declarationType": "INSTRUCTION",
466
- "position": "AFTER_QUESTION_TEXT",
467
- "label": "\"Only one possible answer\""
468
- }
469
- ],
470
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
471
- "hierarchy": {
472
- "sequence": {
473
- "id": "j3341528",
474
- "page": "2",
475
- "label": "\"II - Simpsons’ city\""
476
- }
477
- },
478
- "bindingDependencies": ["MAYOR"],
479
- "options": [
480
- { "value": "1", "label": "\"Constance Harm\"" },
481
-
482
- { "value": "2", "label": "\"Timothy Lovejoy\"" },
483
-
484
- { "value": "3", "label": "\"Joe Quimby\"" },
485
-
486
- { "value": "OT", "label": "\"Other name\"" }
487
- ],
488
- "response": { "name": "MAYOR" }
489
- },
490
-
491
- {
492
- "id": "j4nw5cqz",
493
- "componentType": "Dropdown",
494
- "mandatory": false,
495
- "page": "2",
496
- "label": "\"➡ 3. In which state do The Simpsons reside?\"",
497
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
498
- "hierarchy": {
499
- "sequence": {
500
- "id": "j3341528",
501
- "page": "2",
502
- "label": "\"II - Simpsons’ city\""
503
- }
504
- },
505
- "bindingDependencies": ["STATE"],
506
- "options": [
507
- { "value": "1", "label": "\"Washington\"" },
508
-
509
- { "value": "2", "label": "\"Kentucky\"" },
510
-
511
- { "value": "3", "label": "\"Ohio\"" },
512
-
513
- { "value": "4", "label": "\"Maine\"" },
514
-
515
- { "value": "5", "label": "\"North Dakota\"" },
516
-
517
- { "value": "6", "label": "\"Florida\"" },
518
-
519
- { "value": "7", "label": "\"North Takoma\"" },
520
-
521
- { "value": "8", "label": "\"California\"" },
522
-
523
- { "value": "9", "label": "\"Texas\"" },
524
-
525
- { "value": "10", "label": "\"Massachusetts\"" },
526
-
527
- { "value": "11", "label": "\"Nevada\"" },
528
-
529
- { "value": "12", "label": "\"Illinois\"" },
530
-
531
- { "value": "13", "label": "\"Not in any state, you fool!\"" }
532
- ],
533
- "response": { "name": "STATE" }
534
- },
535
-
536
- {
537
- "id": "j6qe0h9q",
538
- "componentType": "Sequence",
539
- "page": "3",
540
- "label": "\"III - Characters\"",
541
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
542
- "hierarchy": {
543
- "sequence": {
544
- "id": "j6qe0h9q",
545
- "page": "3",
546
- "label": "\"III - Characters\""
547
- }
548
- }
549
- },
550
-
551
- {
552
- "id": "j334akov",
553
- "componentType": "CheckboxGroup",
554
- "page": "3",
555
- "label": "\"➡ 1. What are the pet names that the Simpsons family had?\"",
556
- "declarations": [
557
- {
558
- "id": "j334akov-d5",
559
- "declarationType": "INSTRUCTION",
560
- "position": "AFTER_QUESTION_TEXT",
561
- "label": "\"Several possible answers\""
562
- }
563
- ],
564
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
565
- "hierarchy": {
566
- "sequence": {
567
- "id": "j6qe0h9q",
568
- "page": "3",
569
- "label": "\"III - Characters\""
570
- }
571
- },
572
- "bindingDependencies": ["PET1", "PET2", "PET3", "PET4"],
573
- "responses": [
574
- {
575
- "id": "j334akov-QOP-khokqjtw",
576
- "label": "\"Santa’s Little Helper\"",
577
- "response": { "name": "PET1" }
578
- },
579
-
580
- {
581
- "id": "j334akov-QOP-khokur7a",
582
- "label": "\"Snowball I\"",
583
- "response": { "name": "PET2" }
584
- },
585
-
586
- {
587
- "id": "j334akov-QOP-khol82ux",
588
- "label": "\"Coltrane\"",
589
- "response": { "name": "PET3" }
590
- },
591
-
592
- {
593
- "id": "j334akov-QOP-khokqee5",
594
- "label": "\"Other name\"",
595
- "response": { "name": "PET4" }
596
- }
597
- ]
598
- },
599
-
600
- {
601
- "id": "j6p29i81",
602
- "componentType": "Table",
603
- "mandatory": false,
604
- "page": "3",
605
- "positioning": "HORIZONTAL",
606
- "label": "\"➡ 2. Does Jay like the following ice cream flavours?\"",
607
- "declarations": [
608
- {
609
- "id": "d12-SI",
610
- "declarationType": "STATEMENT",
611
- "position": "BEFORE_QUESTION_TEXT",
612
- "label": "\"Now we are going to know if you think that Jay is a gluton.\""
613
- }
614
- ],
615
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
616
- "hierarchy": {
617
- "sequence": {
618
- "id": "j6qe0h9q",
619
- "page": "3",
620
- "label": "\"III - Characters\""
621
- }
622
- },
623
- "bindingDependencies": [
624
- "ICE_FLAVOUR1",
625
- "ICE_FLAVOUR2",
626
- "ICE_FLAVOUR3",
627
- "ICE_FLAVOUR4"
628
- ],
629
- "cells": [
630
- [
631
- { "value": "1", "label": "\"Vanilla\"" },
632
-
633
- {
634
- "componentType": "Radio",
635
- "id": "j6p29i81-QOP-kiq5w99y",
636
- "options": [
637
- { "value": "1", "label": "\"Yes\"" },
638
-
639
- { "value": "0", "label": "\"No\"" }
640
- ],
641
- "response": { "name": "ICE_FLAVOUR1" },
642
- "bindingDependencies": ["ICE_FLAVOUR1"]
643
- }
644
- ],
645
-
646
- [
647
- { "value": "2", "label": "\"Strawberry\"" },
648
-
649
- {
650
- "componentType": "Radio",
651
- "id": "j6p29i81-QOP-kiq5ummf",
652
- "options": [
653
- { "value": "1", "label": "\"Yes\"" },
654
-
655
- { "value": "0", "label": "\"No\"" }
656
- ],
657
- "response": { "name": "ICE_FLAVOUR2" },
658
- "bindingDependencies": ["ICE_FLAVOUR2"]
659
- }
660
- ],
661
-
662
- [
663
- { "value": "3", "label": "\"Apple\"" },
664
-
665
- {
666
- "componentType": "Radio",
667
- "id": "j6p29i81-QOP-kiq5mry5",
668
- "options": [
669
- { "value": "1", "label": "\"Yes\"" },
670
-
671
- { "value": "0", "label": "\"No\"" }
672
- ],
673
- "response": { "name": "ICE_FLAVOUR3" },
674
- "bindingDependencies": ["ICE_FLAVOUR3"]
675
- }
676
- ],
677
-
678
- [
679
- { "value": "OT", "label": "\"Other flavour\"" },
680
-
681
- {
682
- "componentType": "Radio",
683
- "id": "j6p29i81-QOP-kiq5lkr8",
684
- "options": [
685
- { "value": "1", "label": "\"Yes\"" },
686
-
687
- { "value": "0", "label": "\"No\"" }
688
- ],
689
- "response": { "name": "ICE_FLAVOUR4" },
690
- "bindingDependencies": ["ICE_FLAVOUR4"]
691
- }
692
- ]
693
- ]
694
- },
695
-
696
- {
697
- "id": "j6qefnga",
698
- "componentType": "Table",
699
- "mandatory": false,
700
- "page": "3",
701
- "positioning": "HORIZONTAL",
702
- "label": "\"➡ 3. Which character works in the nuclear power plant?\"",
703
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
704
- "hierarchy": {
705
- "sequence": {
706
- "id": "j6qe0h9q",
707
- "page": "3",
708
- "label": "\"III - Characters\""
709
- }
710
- },
711
- "bindingDependencies": [
712
- "NUCLEAR_CHARACTER1",
713
- "NUCLEAR_CHARACTER2",
714
- "NUCLEAR_CHARACTER3",
715
- "NUCLEAR_CHARACTER4"
716
- ],
717
- "cells": [
718
- [
719
- { "value": "1", "label": "\"Charles Montgomery Burns\"" },
720
-
721
- {
722
- "componentType": "Dropdown",
723
- "id": "j6qefnga-QOP-kewva8xg",
724
- "options": [
725
- { "value": "1", "label": "\"Yes\"" },
726
-
727
- { "value": "0", "label": "\"No\"" }
728
- ],
729
- "response": { "name": "NUCLEAR_CHARACTER1" },
730
- "bindingDependencies": ["NUCLEAR_CHARACTER1"]
731
- }
732
- ],
733
-
734
- [
735
- { "value": "2", "label": "\"Carl Carlson\"" },
736
-
737
- {
738
- "componentType": "Dropdown",
739
- "id": "j6qefnga-QOP-kewvj0ad",
740
- "options": [
741
- { "value": "1", "label": "\"Yes\"" },
742
-
743
- { "value": "0", "label": "\"No\"" }
744
- ],
745
- "response": { "name": "NUCLEAR_CHARACTER2" },
746
- "bindingDependencies": ["NUCLEAR_CHARACTER2"]
747
- }
748
- ],
749
-
750
- [
751
- { "value": "3", "label": "\"Otto Mann\"" },
752
-
753
- {
754
- "componentType": "Dropdown",
755
- "id": "j6qefnga-QOP-kewveltm",
756
- "options": [
757
- { "value": "1", "label": "\"Yes\"" },
758
-
759
- { "value": "0", "label": "\"No\"" }
760
- ],
761
- "response": { "name": "NUCLEAR_CHARACTER3" },
762
- "bindingDependencies": ["NUCLEAR_CHARACTER3"]
763
- }
764
- ],
765
-
766
- [
767
- { "value": "4", "label": "\"Lenny Leonard\"" },
768
-
769
- {
770
- "componentType": "Dropdown",
771
- "id": "j6qefnga-QOP-kewvgax4",
772
- "options": [
773
- { "value": "1", "label": "\"Yes\"" },
774
-
775
- { "value": "0", "label": "\"No\"" }
776
- ],
777
- "response": { "name": "NUCLEAR_CHARACTER4" },
778
- "bindingDependencies": ["NUCLEAR_CHARACTER4"]
779
- }
780
- ]
781
- ]
782
- },
783
-
784
- {
785
- "id": "j6yzoc6g",
786
- "componentType": "Table",
787
- "mandatory": false,
788
- "page": "3",
789
- "positioning": "HORIZONTAL",
790
- "label": "\"➡ 4. In which city each character was born?\"",
791
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
792
- "hierarchy": {
793
- "sequence": {
794
- "id": "j6qe0h9q",
795
- "page": "3",
796
- "label": "\"III - Characters\""
797
- }
798
- },
799
- "bindingDependencies": [
800
- "BIRTH_CHARACTER1",
801
- "BIRTH_CHARACTER2",
802
- "BIRTH_CHARACTER3",
803
- "BIRTH_CHARACTER4",
804
- "BIRTH_CHARACTER5"
805
- ],
806
- "cells": [
807
- [
808
- { "value": "1", "label": "\"Selma Bouvier\"" },
809
-
810
- {
811
- "componentType": "CheckboxOne",
812
- "id": "j6yzoc6g-QOP-kewvjvcs",
813
- "options": [
814
- { "value": "1", "label": "\"Albuquerque\"" },
815
-
816
- { "value": "2", "label": "\"Springfield\"" },
817
-
818
- { "value": "3", "label": "\"Portland\"" },
819
-
820
- { "value": "4", "label": "\"Shelbyville\"" },
821
-
822
- { "value": "5", "label": "\"Dagstuhl\"" }
823
- ],
824
- "response": { "name": "BIRTH_CHARACTER1" },
825
- "bindingDependencies": ["BIRTH_CHARACTER1"]
826
- }
827
- ],
828
-
829
- [
830
- { "value": "2", "label": "\"Kent Brockman\"" },
831
-
832
- {
833
- "componentType": "CheckboxOne",
834
- "id": "j6yzoc6g-QOP-kewvhoda",
835
- "options": [
836
- { "value": "1", "label": "\"Albuquerque\"" },
837
-
838
- { "value": "2", "label": "\"Springfield\"" },
839
-
840
- { "value": "3", "label": "\"Portland\"" },
841
-
842
- { "value": "4", "label": "\"Shelbyville\"" },
843
-
844
- { "value": "5", "label": "\"Dagstuhl\"" }
845
- ],
846
- "response": { "name": "BIRTH_CHARACTER2" },
847
- "bindingDependencies": ["BIRTH_CHARACTER2"]
848
- }
849
- ],
850
-
851
- [
852
- { "value": "3", "label": "\"Milhouse Van Houten\"" },
853
-
854
- {
855
- "componentType": "CheckboxOne",
856
- "id": "j6yzoc6g-QOP-kewv64s5",
857
- "options": [
858
- { "value": "1", "label": "\"Albuquerque\"" },
859
-
860
- { "value": "2", "label": "\"Springfield\"" },
861
-
862
- { "value": "3", "label": "\"Portland\"" },
863
-
864
- { "value": "4", "label": "\"Shelbyville\"" },
865
-
866
- { "value": "5", "label": "\"Dagstuhl\"" }
867
- ],
868
- "response": { "name": "BIRTH_CHARACTER3" },
869
- "bindingDependencies": ["BIRTH_CHARACTER3"]
870
- }
871
- ],
872
-
873
- [
874
- { "value": "4", "label": "\"Nelson Muntz\"" },
875
-
876
- {
877
- "componentType": "CheckboxOne",
878
- "id": "j6yzoc6g-QOP-kewvj21j",
879
- "options": [
880
- { "value": "1", "label": "\"Albuquerque\"" },
881
-
882
- { "value": "2", "label": "\"Springfield\"" },
883
-
884
- { "value": "3", "label": "\"Portland\"" },
885
-
886
- { "value": "4", "label": "\"Shelbyville\"" },
887
-
888
- { "value": "5", "label": "\"Dagstuhl\"" }
889
- ],
890
- "response": { "name": "BIRTH_CHARACTER4" },
891
- "bindingDependencies": ["BIRTH_CHARACTER4"]
892
- }
893
- ],
894
-
895
- [
896
- { "value": "5", "label": "\"Crazy Cat Lady\"" },
897
-
898
- {
899
- "componentType": "CheckboxOne",
900
- "id": "j6yzoc6g-QOP-kewva5uf",
901
- "options": [
902
- { "value": "1", "label": "\"Albuquerque\"" },
903
-
904
- { "value": "2", "label": "\"Springfield\"" },
905
-
906
- { "value": "3", "label": "\"Portland\"" },
907
-
908
- { "value": "4", "label": "\"Shelbyville\"" },
909
-
910
- { "value": "5", "label": "\"Dagstuhl\"" }
911
- ],
912
- "response": { "name": "BIRTH_CHARACTER5" },
913
- "bindingDependencies": ["BIRTH_CHARACTER5"]
914
- }
915
- ]
916
- ]
917
- },
918
-
919
- {
920
- "id": "j4nw88h2",
921
- "componentType": "Sequence",
922
- "page": "4",
923
- "label": "\"IV - General questions\"",
924
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
925
- "hierarchy": {
926
- "sequence": {
927
- "id": "j4nw88h2",
928
- "page": "4",
929
- "label": "\"IV - General questions\""
930
- }
931
- }
932
- },
933
-
934
- {
935
- "id": "j6qe237q",
936
- "componentType": "Subsequence",
937
- "page": "4",
938
- "label": "\"Kwik-E-Mart\"",
939
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
940
- "hierarchy": {
941
- "sequence": {
942
- "id": "j4nw88h2",
943
- "page": "4",
944
- "label": "\"IV - General questions\""
945
- },
946
- "subSequence": {
947
- "id": "j6qe237q",
948
- "page": "4",
949
- "label": "\"Kwik-E-Mart\""
950
- }
951
- }
952
- },
953
-
954
- {
955
- "id": "j4nwc63q",
956
- "componentType": "Table",
957
- "mandatory": false,
958
- "page": "4",
959
- "positioning": "HORIZONTAL",
960
- "label": "\"➡ 1. Please, specify the percentage of Jay’s expenses in the Kwik-E-Mart for each product?\"",
961
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
962
- "hierarchy": {
963
- "sequence": {
964
- "id": "j4nw88h2",
965
- "page": "4",
966
- "label": "\"IV - General questions\""
967
- },
968
- "subSequence": {
969
- "id": "j6qe237q",
970
- "page": "4",
971
- "label": "\"Kwik-E-Mart\""
972
- }
973
- },
974
- "bindingDependencies": [
975
- "PERCENTAGE_EXPENSES11",
976
- "PERCENTAGE_EXPENSES21",
977
- "PERCENTAGE_EXPENSES31",
978
- "PERCENTAGE_EXPENSES41",
979
- "PERCENTAGE_EXPENSES51",
980
- "PERCENTAGE_EXPENSES61",
981
- "PERCENTAGE_EXPENSES71"
982
- ],
983
- "cells": [
984
- [
985
- { "headerCell": true, "colspan": 2, "label": "" },
986
-
987
- { "headerCell": true, "label": "\"Percentage\"" }
988
- ],
989
-
990
- [
991
- { "rowspan": 2, "value": "A", "label": "\"Frozen products\"" },
992
-
993
- { "value": "A1", "label": "\"Ice creams\"" },
994
-
995
- {
996
- "componentType": "InputNumber",
997
- "min": 0,
998
- "max": 100,
999
- "decimals": 1,
1000
- "id": "j4nwc63q-QOP-kewv2h3o",
1001
- "unit": "%",
1002
- "response": { "name": "PERCENTAGE_EXPENSES11" },
1003
- "bindingDependencies": ["PERCENTAGE_EXPENSES11"]
1004
- }
1005
- ],
1006
-
1007
- [
1008
- { "value": "A2", "label": "\"Jasper Beardly\"" },
1009
-
1010
- {
1011
- "componentType": "InputNumber",
1012
- "min": 0,
1013
- "max": 100,
1014
- "decimals": 1,
1015
- "id": "j4nwc63q-QOP-kewvka2j",
1016
- "unit": "%",
1017
- "response": { "name": "PERCENTAGE_EXPENSES21" },
1018
- "bindingDependencies": ["PERCENTAGE_EXPENSES21"]
1019
- }
1020
- ],
1021
-
1022
- [
1023
- { "rowspan": 3, "value": "B", "label": "\"Meat\"" },
1024
-
1025
- { "value": "B1", "label": "\"Bacon\"" },
1026
-
1027
- {
1028
- "componentType": "InputNumber",
1029
- "min": 0,
1030
- "max": 100,
1031
- "decimals": 1,
1032
- "id": "j4nwc63q-QOP-kewv1f2a",
1033
- "unit": "%",
1034
- "response": { "name": "PERCENTAGE_EXPENSES31" },
1035
- "bindingDependencies": ["PERCENTAGE_EXPENSES31"]
1036
- }
1037
- ],
1038
-
1039
- [
1040
- { "value": "B2", "label": "\"Pork chop\"" },
1041
-
1042
- {
1043
- "componentType": "InputNumber",
1044
- "min": 0,
1045
- "max": 100,
1046
- "decimals": 1,
1047
- "id": "j4nwc63q-QOP-kewvb2ql",
1048
- "unit": "%",
1049
- "response": { "name": "PERCENTAGE_EXPENSES41" },
1050
- "bindingDependencies": ["PERCENTAGE_EXPENSES41"]
1051
- }
1052
- ],
1053
-
1054
- [
1055
- { "value": "B3", "label": "\"Chicken\"" },
1056
-
1057
- {
1058
- "componentType": "InputNumber",
1059
- "min": 0,
1060
- "max": 100,
1061
- "decimals": 1,
1062
- "id": "j4nwc63q-QOP-kewvbxla",
1063
- "unit": "%",
1064
- "response": { "name": "PERCENTAGE_EXPENSES51" },
1065
- "bindingDependencies": ["PERCENTAGE_EXPENSES51"]
1066
- }
1067
- ],
1068
-
1069
- [
1070
- { "value": "C", "label": "\"Compote\"" },
1071
-
1072
- { "value": "C1", "label": "\"Powersauce\"" },
1073
-
1074
- {
1075
- "componentType": "InputNumber",
1076
- "min": 0,
1077
- "max": 100,
1078
- "decimals": 1,
1079
- "id": "j4nwc63q-QOP-kewvkjp0",
1080
- "unit": "%",
1081
- "response": { "name": "PERCENTAGE_EXPENSES61" },
1082
- "bindingDependencies": ["PERCENTAGE_EXPENSES61"]
1083
- }
1084
- ],
1085
-
1086
- [
1087
- { "colspan": 2, "value": "D", "label": "\"Other\"" },
1088
-
1089
- {
1090
- "componentType": "InputNumber",
1091
- "min": 0,
1092
- "max": 100,
1093
- "decimals": 1,
1094
- "id": "j4nwc63q-QOP-kewv2cyx",
1095
- "unit": "%",
1096
- "response": { "name": "PERCENTAGE_EXPENSES71" },
1097
- "bindingDependencies": ["PERCENTAGE_EXPENSES71"]
1098
- }
1099
- ],
1100
-
1101
- [
1102
- { "colspan": 2, "value": "E", "label": "\"Total\"" },
1103
-
1104
- { "headerCell": false }
1105
- ]
1106
- ]
1107
- },
1108
-
1109
- {
1110
- "id": "k9cg2q5t",
1111
- "componentType": "Table",
1112
- "mandatory": false,
1113
- "page": "4",
1114
- "positioning": "HORIZONTAL",
1115
- "label": "\"➡ 2. Please specify if Jay has bought each product in his last food shopping\"",
1116
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
1117
- "hierarchy": {
1118
- "sequence": {
1119
- "id": "j4nw88h2",
1120
- "page": "4",
1121
- "label": "\"IV - General questions\""
1122
- },
1123
- "subSequence": {
1124
- "id": "j6qe237q",
1125
- "page": "4",
1126
- "label": "\"Kwik-E-Mart\""
1127
- }
1128
- },
1129
- "bindingDependencies": [
1130
- "LAST_FOOD_SHOPPING11",
1131
- "LAST_FOOD_SHOPPING21",
1132
- "LAST_FOOD_SHOPPING31",
1133
- "LAST_FOOD_SHOPPING41",
1134
- "LAST_FOOD_SHOPPING51",
1135
- "LAST_FOOD_SHOPPING61",
1136
- "LAST_FOOD_SHOPPING71",
1137
- "LAST_FOOD_SHOPPING81"
1138
- ],
1139
- "cells": [
1140
- [
1141
- { "headerCell": true, "colspan": 2, "label": "" },
1142
-
1143
- { "headerCell": true, "label": "\"In his last food shopping\"" }
1144
- ],
1145
-
1146
- [
1147
- { "rowspan": 2, "value": "A", "label": "\"Frozen products\"" },
1148
-
1149
- { "value": "A1", "label": "\"Ice creams\"" },
1150
-
1151
- {
1152
- "componentType": "CheckboxOne",
1153
- "id": "k9cg2q5t-QOP-kiq6pljq",
1154
- "options": [
1155
- { "value": "1", "label": "\"Yes\"" },
1156
-
1157
- { "value": "2", "label": "\"No\"" },
1158
-
1159
- { "value": "3", "label": "\"Other\"" }
1160
- ],
1161
- "response": { "name": "LAST_FOOD_SHOPPING11" },
1162
- "bindingDependencies": ["LAST_FOOD_SHOPPING11"]
1163
- }
1164
- ],
1165
-
1166
- [
1167
- { "value": "A2", "label": "\"Jasper Beardly\"" },
1168
-
1169
- {
1170
- "componentType": "CheckboxOne",
1171
- "id": "k9cg2q5t-QOP-kiq6mgpv",
1172
- "options": [
1173
- { "value": "1", "label": "\"Yes\"" },
1174
-
1175
- { "value": "2", "label": "\"No\"" },
1176
-
1177
- { "value": "3", "label": "\"Other\"" }
1178
- ],
1179
- "response": { "name": "LAST_FOOD_SHOPPING21" },
1180
- "bindingDependencies": ["LAST_FOOD_SHOPPING21"]
1181
- }
1182
- ],
1183
-
1184
- [
1185
- { "rowspan": 3, "value": "B", "label": "\"Meat\"" },
1186
-
1187
- { "value": "B1", "label": "\"Bacon\"" },
1188
-
1189
- {
1190
- "componentType": "CheckboxOne",
1191
- "id": "k9cg2q5t-QOP-kiq6pmtz",
1192
- "options": [
1193
- { "value": "1", "label": "\"Yes\"" },
1194
-
1195
- { "value": "2", "label": "\"No\"" },
1196
-
1197
- { "value": "3", "label": "\"Other\"" }
1198
- ],
1199
- "response": { "name": "LAST_FOOD_SHOPPING31" },
1200
- "bindingDependencies": ["LAST_FOOD_SHOPPING31"]
1201
- }
1202
- ],
1203
-
1204
- [
1205
- { "value": "B2", "label": "\"Pork chop\"" },
1206
-
1207
- {
1208
- "componentType": "CheckboxOne",
1209
- "id": "k9cg2q5t-QOP-kiq6k4lf",
1210
- "options": [
1211
- { "value": "1", "label": "\"Yes\"" },
1212
-
1213
- { "value": "2", "label": "\"No\"" },
1214
-
1215
- { "value": "3", "label": "\"Other\"" }
1216
- ],
1217
- "response": { "name": "LAST_FOOD_SHOPPING41" },
1218
- "bindingDependencies": ["LAST_FOOD_SHOPPING41"]
1219
- }
1220
- ],
1221
-
1222
- [
1223
- { "value": "B3", "label": "\"Chicken\"" },
1224
-
1225
- {
1226
- "componentType": "CheckboxOne",
1227
- "id": "k9cg2q5t-QOP-kiq6p70n",
1228
- "options": [
1229
- { "value": "1", "label": "\"Yes\"" },
1230
-
1231
- { "value": "2", "label": "\"No\"" },
1232
-
1233
- { "value": "3", "label": "\"Other\"" }
1234
- ],
1235
- "response": { "name": "LAST_FOOD_SHOPPING51" },
1236
- "bindingDependencies": ["LAST_FOOD_SHOPPING51"]
1237
- }
1238
- ],
1239
-
1240
- [
1241
- { "value": "C", "label": "\"Compote\"" },
1242
-
1243
- { "value": "C1", "label": "\"Powersauce\"" },
1244
-
1245
- {
1246
- "componentType": "CheckboxOne",
1247
- "id": "k9cg2q5t-QOP-kiq6lh5v",
1248
- "options": [
1249
- { "value": "1", "label": "\"Yes\"" },
1250
-
1251
- { "value": "2", "label": "\"No\"" },
1252
-
1253
- { "value": "3", "label": "\"Other\"" }
1254
- ],
1255
- "response": { "name": "LAST_FOOD_SHOPPING61" },
1256
- "bindingDependencies": ["LAST_FOOD_SHOPPING61"]
1257
- }
1258
- ],
1259
-
1260
- [
1261
- { "colspan": 2, "value": "D", "label": "\"Other\"" },
1262
-
1263
- {
1264
- "componentType": "CheckboxOne",
1265
- "id": "k9cg2q5t-QOP-kiq703te",
1266
- "options": [
1267
- { "value": "1", "label": "\"Yes\"" },
1268
-
1269
- { "value": "2", "label": "\"No\"" },
1270
-
1271
- { "value": "3", "label": "\"Other\"" }
1272
- ],
1273
- "response": { "name": "LAST_FOOD_SHOPPING71" },
1274
- "bindingDependencies": ["LAST_FOOD_SHOPPING71"]
1275
- }
1276
- ],
1277
-
1278
- [
1279
- { "colspan": 2, "value": "E", "label": "\"Total\"" },
1280
-
1281
- {
1282
- "componentType": "CheckboxOne",
1283
- "id": "k9cg2q5t-QOP-kiq6zpd3",
1284
- "options": [
1285
- { "value": "1", "label": "\"Yes\"" },
1286
-
1287
- { "value": "2", "label": "\"No\"" },
1288
-
1289
- { "value": "3", "label": "\"Other\"" }
1290
- ],
1291
- "response": { "name": "LAST_FOOD_SHOPPING81" },
1292
- "bindingDependencies": ["LAST_FOOD_SHOPPING81"]
1293
- }
1294
- ]
1295
- ]
1296
- },
1297
-
1298
- {
1299
- "id": "j6qejudb",
1300
- "componentType": "Subsequence",
1301
- "page": "4",
1302
- "label": "\"Clowning\"",
1303
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
1304
- "hierarchy": {
1305
- "sequence": {
1306
- "id": "j4nw88h2",
1307
- "page": "4",
1308
- "label": "\"IV - General questions\""
1309
- },
1310
- "subSequence": {
1311
- "id": "j6qejudb",
1312
- "page": "4",
1313
- "label": "\"Clowning\""
1314
- }
1315
- }
1316
- },
1317
-
1318
- {
1319
- "id": "kbkjvgel",
1320
- "componentType": "Table",
1321
- "mandatory": false,
1322
- "page": "4",
1323
- "positioning": "HORIZONTAL",
1324
- "label": "\"➡ 3. Who did these clownings and tell us what you remember?\"",
1325
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
1326
- "hierarchy": {
1327
- "sequence": {
1328
- "id": "j4nw88h2",
1329
- "page": "4",
1330
- "label": "\"IV - General questions\""
1331
- },
1332
- "subSequence": {
1333
- "id": "j6qejudb",
1334
- "page": "4",
1335
- "label": "\"Clowning\""
1336
- }
1337
- },
1338
- "bindingDependencies": [
1339
- "CLOWNING11",
1340
- "CLOWNING12",
1341
- "CLOWNING21",
1342
- "CLOWNING22",
1343
- "CLOWNING31",
1344
- "CLOWNING32",
1345
- "CLOWNING41",
1346
- "CLOWNING42"
1347
- ],
1348
- "cells": [
1349
- [
1350
- { "headerCell": true, "label": "" },
1351
-
1352
- { "headerCell": true, "label": "\"Clowning\"" },
1353
-
1354
- { "headerCell": true, "label": "\"Remember?\"" }
1355
- ],
1356
-
1357
- [
1358
- { "value": "1", "label": "\"Break the windows of the whole city\"" },
1359
-
1360
- {
1361
- "componentType": "Dropdown",
1362
- "id": "kbkjvgel-QOP-kiq6m5n0",
1363
- "options": [
1364
- { "value": "1", "label": "\"Jay\"" },
1365
-
1366
- { "value": "2", "label": "\"Bart\"" },
1367
-
1368
- { "value": "3", "label": "\"Krusty the clown\"" },
1369
-
1370
- { "value": "O", "label": "\"Other\"" }
1371
- ],
1372
- "response": { "name": "CLOWNING11" },
1373
- "bindingDependencies": ["CLOWNING11"]
1374
- },
1375
-
1376
- {
1377
- "componentType": "Textarea",
1378
- "maxLength": 255,
1379
- "id": "kbkjvgel-QOP-kiq6qatu",
1380
- "response": { "name": "CLOWNING12" },
1381
- "bindingDependencies": ["CLOWNING12"]
1382
- }
1383
- ],
1384
-
1385
- [
1386
- {
1387
- "value": "2",
1388
- "label": "\"Loose the violin of his daughter playing poker\""
1389
- },
1390
-
1391
- {
1392
- "componentType": "Dropdown",
1393
- "id": "kbkjvgel-QOP-kiq6l29o",
1394
- "options": [
1395
- { "value": "1", "label": "\"Jay\"" },
1396
-
1397
- { "value": "2", "label": "\"Bart\"" },
1398
-
1399
- { "value": "3", "label": "\"Krusty the clown\"" },
1400
-
1401
- { "value": "O", "label": "\"Other\"" }
1402
- ],
1403
- "response": { "name": "CLOWNING21" },
1404
- "bindingDependencies": ["CLOWNING21"]
1405
- },
1406
-
1407
- {
1408
- "componentType": "Textarea",
1409
- "maxLength": 255,
1410
- "id": "kbkjvgel-QOP-kiq6v4oe",
1411
- "response": { "name": "CLOWNING22" },
1412
- "bindingDependencies": ["CLOWNING22"]
1413
- }
1414
- ],
1415
-
1416
- [
1417
- { "value": "3", "label": "\"Kill Mr Burns\"" },
1418
-
1419
- {
1420
- "componentType": "Dropdown",
1421
- "id": "kbkjvgel-QOP-kiq72biw",
1422
- "options": [
1423
- { "value": "1", "label": "\"Jay\"" },
1424
-
1425
- { "value": "2", "label": "\"Bart\"" },
1426
-
1427
- { "value": "3", "label": "\"Krusty the clown\"" },
1428
-
1429
- { "value": "O", "label": "\"Other\"" }
1430
- ],
1431
- "response": { "name": "CLOWNING31" },
1432
- "bindingDependencies": ["CLOWNING31"]
1433
- },
1434
-
1435
- {
1436
- "componentType": "Textarea",
1437
- "maxLength": 255,
1438
- "id": "kbkjvgel-QOP-kiq6q4zm",
1439
- "response": { "name": "CLOWNING32" },
1440
- "bindingDependencies": ["CLOWNING32"]
1441
- }
1442
- ],
1443
-
1444
- [
1445
- {
1446
- "value": "4",
1447
- "label": "\"Leaving a mechanical object to control the nuclear power plant\""
1448
- },
1449
-
1450
- {
1451
- "componentType": "Dropdown",
1452
- "id": "kbkjvgel-QOP-kiq6mlan",
1453
- "options": [
1454
- { "value": "1", "label": "\"Jay\"" },
1455
-
1456
- { "value": "2", "label": "\"Bart\"" },
1457
-
1458
- { "value": "3", "label": "\"Krusty the clown\"" },
1459
-
1460
- { "value": "O", "label": "\"Other\"" }
1461
- ],
1462
- "response": { "name": "CLOWNING41" },
1463
- "bindingDependencies": ["CLOWNING41"]
1464
- },
1465
-
1466
- {
1467
- "componentType": "Textarea",
1468
- "maxLength": 255,
1469
- "id": "kbkjvgel-QOP-kiq6vtud",
1470
- "response": { "name": "CLOWNING42" },
1471
- "bindingDependencies": ["CLOWNING42"]
1472
- }
1473
- ]
1474
- ]
1475
- },
1476
-
1477
- {
1478
- "id": "j6qeh91y",
1479
- "componentType": "Subsequence",
1480
- "page": "4",
1481
- "label": "\"Transport\"",
1482
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
1483
- "hierarchy": {
1484
- "sequence": {
1485
- "id": "j4nw88h2",
1486
- "page": "4",
1487
- "label": "\"IV - General questions\""
1488
- },
1489
- "subSequence": {
1490
- "id": "j6qeh91y",
1491
- "page": "4",
1492
- "label": "\"Transport\""
1493
- }
1494
- }
1495
- },
1496
-
1497
- {
1498
- "id": "j6p2lwuj",
1499
- "componentType": "Table",
1500
- "mandatory": false,
1501
- "page": "4",
1502
- "positioning": "HORIZONTAL",
1503
- "label": "\"➡ 4. Which of the following means of transport were used by the hero and in which country?\"",
1504
- "declarations": [
1505
- {
1506
- "id": "j6p2lwuj-d10",
1507
- "declarationType": "INSTRUCTION",
1508
- "position": "AFTER_QUESTION_TEXT",
1509
- "label": "\"Several answers possible: check off all the relevant boxes\""
1510
- }
1511
- ],
1512
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
1513
- "hierarchy": {
1514
- "sequence": {
1515
- "id": "j4nw88h2",
1516
- "page": "4",
1517
- "label": "\"IV - General questions\""
1518
- },
1519
- "subSequence": {
1520
- "id": "j6qeh91y",
1521
- "page": "4",
1522
- "label": "\"Transport\""
1523
- }
1524
- },
1525
- "bindingDependencies": [
1526
- "TRAVEL11",
1527
- "TRAVEL12",
1528
- "TRAVEL13",
1529
- "TRAVEL14",
1530
- "TRAVEL15",
1531
- "TRAVEL16",
1532
- "TRAVEL21",
1533
- "TRAVEL22",
1534
- "TRAVEL23",
1535
- "TRAVEL24",
1536
- "TRAVEL25",
1537
- "TRAVEL26",
1538
- "TRAVEL31",
1539
- "TRAVEL32",
1540
- "TRAVEL33",
1541
- "TRAVEL34",
1542
- "TRAVEL35",
1543
- "TRAVEL36",
1544
- "TRAVEL41",
1545
- "TRAVEL42",
1546
- "TRAVEL43",
1547
- "TRAVEL44",
1548
- "TRAVEL45",
1549
- "TRAVEL46"
1550
- ],
1551
- "cells": [
1552
- [
1553
- { "headerCell": true, "label": "" },
1554
-
1555
- { "headerCell": true, "label": "\"Brazil\"" },
1556
-
1557
- { "headerCell": true, "label": "\"Canada\"" },
1558
-
1559
- { "headerCell": true, "label": "\"Japan\"" },
1560
-
1561
- { "headerCell": true, "label": "\"France\"" },
1562
-
1563
- { "headerCell": true, "label": "\"Other country\"" },
1564
-
1565
- { "headerCell": true, "label": "\"Other planet\"" }
1566
- ],
1567
-
1568
- [
1569
- { "value": "1", "label": "\"Car\"" },
1570
-
1571
- {
1572
- "componentType": "CheckboxBoolean",
1573
- "id": "j6p2lwuj-QOP-kewvm4qg",
1574
- "response": { "name": "TRAVEL11" },
1575
- "bindingDependencies": ["TRAVEL11"]
1576
- },
1577
-
1578
- {
1579
- "componentType": "CheckboxBoolean",
1580
- "id": "j6p2lwuj-QOP-kewv8wxl",
1581
- "response": { "name": "TRAVEL12" },
1582
- "bindingDependencies": ["TRAVEL12"]
1583
- },
1584
-
1585
- {
1586
- "componentType": "CheckboxBoolean",
1587
- "id": "j6p2lwuj-QOP-kewvcjrn",
1588
- "response": { "name": "TRAVEL13" },
1589
- "bindingDependencies": ["TRAVEL13"]
1590
- },
1591
-
1592
- {
1593
- "componentType": "CheckboxBoolean",
1594
- "id": "j6p2lwuj-QOP-kewvdrv7",
1595
- "response": { "name": "TRAVEL14" },
1596
- "bindingDependencies": ["TRAVEL14"]
1597
- },
1598
-
1599
- {
1600
- "componentType": "CheckboxBoolean",
1601
- "id": "j6p2lwuj-QOP-kewv226h",
1602
- "response": { "name": "TRAVEL15" },
1603
- "bindingDependencies": ["TRAVEL15"]
1604
- },
1605
-
1606
- {
1607
- "componentType": "CheckboxBoolean",
1608
- "id": "j6p2lwuj-QOP-kewvlchm",
1609
- "response": { "name": "TRAVEL16" },
1610
- "bindingDependencies": ["TRAVEL16"]
1611
- }
1612
- ],
1613
-
1614
- [
1615
- { "value": "2", "label": "\"Bike\"" },
1616
-
1617
- {
1618
- "componentType": "CheckboxBoolean",
1619
- "id": "j6p2lwuj-QOP-kewvebem",
1620
- "response": { "name": "TRAVEL21" },
1621
- "bindingDependencies": ["TRAVEL21"]
1622
- },
1623
-
1624
- {
1625
- "componentType": "CheckboxBoolean",
1626
- "id": "j6p2lwuj-QOP-kewv5u0v",
1627
- "response": { "name": "TRAVEL22" },
1628
- "bindingDependencies": ["TRAVEL22"]
1629
- },
1630
-
1631
- {
1632
- "componentType": "CheckboxBoolean",
1633
- "id": "j6p2lwuj-QOP-kewvdarq",
1634
- "response": { "name": "TRAVEL23" },
1635
- "bindingDependencies": ["TRAVEL23"]
1636
- },
1637
-
1638
- {
1639
- "componentType": "CheckboxBoolean",
1640
- "id": "j6p2lwuj-QOP-kewvc8ft",
1641
- "response": { "name": "TRAVEL24" },
1642
- "bindingDependencies": ["TRAVEL24"]
1643
- },
1644
-
1645
- {
1646
- "componentType": "CheckboxBoolean",
1647
- "id": "j6p2lwuj-QOP-kewvc2li",
1648
- "response": { "name": "TRAVEL25" },
1649
- "bindingDependencies": ["TRAVEL25"]
1650
- },
1651
-
1652
- {
1653
- "componentType": "CheckboxBoolean",
1654
- "id": "j6p2lwuj-QOP-kewvh5fm",
1655
- "response": { "name": "TRAVEL26" },
1656
- "bindingDependencies": ["TRAVEL26"]
1657
- }
1658
- ],
1659
-
1660
- [
1661
- { "value": "3", "label": "\"Skateboard\"" },
1662
-
1663
- {
1664
- "componentType": "CheckboxBoolean",
1665
- "id": "j6p2lwuj-QOP-kewv62xx",
1666
- "response": { "name": "TRAVEL31" },
1667
- "bindingDependencies": ["TRAVEL31"]
1668
- },
1669
-
1670
- {
1671
- "componentType": "CheckboxBoolean",
1672
- "id": "j6p2lwuj-QOP-kewvbiyv",
1673
- "response": { "name": "TRAVEL32" },
1674
- "bindingDependencies": ["TRAVEL32"]
1675
- },
1676
-
1677
- {
1678
- "componentType": "CheckboxBoolean",
1679
- "id": "j6p2lwuj-QOP-kewvcmjn",
1680
- "response": { "name": "TRAVEL33" },
1681
- "bindingDependencies": ["TRAVEL33"]
1682
- },
1683
-
1684
- {
1685
- "componentType": "CheckboxBoolean",
1686
- "id": "j6p2lwuj-QOP-kewvkci5",
1687
- "response": { "name": "TRAVEL34" },
1688
- "bindingDependencies": ["TRAVEL34"]
1689
- },
1690
-
1691
- {
1692
- "componentType": "CheckboxBoolean",
1693
- "id": "j6p2lwuj-QOP-kewveam7",
1694
- "response": { "name": "TRAVEL35" },
1695
- "bindingDependencies": ["TRAVEL35"]
1696
- },
1697
-
1698
- {
1699
- "componentType": "CheckboxBoolean",
1700
- "id": "j6p2lwuj-QOP-kewva2r8",
1701
- "response": { "name": "TRAVEL36" },
1702
- "bindingDependencies": ["TRAVEL36"]
1703
- }
1704
- ],
1705
-
1706
- [
1707
- { "value": "4", "label": "\"Plane\"" },
1708
-
1709
- {
1710
- "componentType": "CheckboxBoolean",
1711
- "id": "j6p2lwuj-QOP-kewvjcck",
1712
- "response": { "name": "TRAVEL41" },
1713
- "bindingDependencies": ["TRAVEL41"]
1714
- },
1715
-
1716
- {
1717
- "componentType": "CheckboxBoolean",
1718
- "id": "j6p2lwuj-QOP-kewv91bq",
1719
- "response": { "name": "TRAVEL42" },
1720
- "bindingDependencies": ["TRAVEL42"]
1721
- },
1722
-
1723
- {
1724
- "componentType": "CheckboxBoolean",
1725
- "id": "j6p2lwuj-QOP-kewvf47u",
1726
- "response": { "name": "TRAVEL43" },
1727
- "bindingDependencies": ["TRAVEL43"]
1728
- },
1729
-
1730
- {
1731
- "componentType": "CheckboxBoolean",
1732
- "id": "j6p2lwuj-QOP-kewv5hsr",
1733
- "response": { "name": "TRAVEL44" },
1734
- "bindingDependencies": ["TRAVEL44"]
1735
- },
1736
-
1737
- {
1738
- "componentType": "CheckboxBoolean",
1739
- "id": "j6p2lwuj-QOP-kewva3p8",
1740
- "response": { "name": "TRAVEL45" },
1741
- "bindingDependencies": ["TRAVEL45"]
1742
- },
1743
-
1744
- {
1745
- "componentType": "CheckboxBoolean",
1746
- "id": "j6p2lwuj-QOP-kewve0rb",
1747
- "response": { "name": "TRAVEL46" },
1748
- "bindingDependencies": ["TRAVEL46"]
1749
- }
1750
- ]
1751
- ]
1752
- },
1753
-
1754
- {
1755
- "id": "j6qfx9qe",
1756
- "componentType": "Sequence",
1757
- "page": "5",
1758
- "label": "\"V - Favourite characters (dynamic table)\"",
1759
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
1760
- "hierarchy": {
1761
- "sequence": {
1762
- "id": "j6qfx9qe",
1763
- "page": "5",
1764
- "label": "\"V - Favourite characters (dynamic table)\""
1765
- }
1766
- }
1767
- },
1768
-
1769
- {
1770
- "id": "j6qg8rc6",
1771
- "componentType": "Table",
1772
- "mandatory": false,
1773
- "page": "5",
1774
- "positioning": "HORIZONTAL",
1775
- "label": "\"➡ 1. Please, complete the following grid with your favourite characters\"",
1776
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
1777
- "hierarchy": {
1778
- "sequence": {
1779
- "id": "j6qfx9qe",
1780
- "page": "5",
1781
- "label": "\"V - Favourite characters (dynamic table)\""
1782
- }
1783
- },
1784
- "bindingDependencies": [
1785
- "FAVOURITE_CHAR1",
1786
- "FAVOURITE_CHAR2",
1787
- "FAVOURITE_CHAR3",
1788
- "FAVOURITE_CHAR1_1_1",
1789
- "FAVOURITE_CHAR2_1_2",
1790
- "FAVOURITE_CHAR3_1_3",
1791
- "FAVOURITE_CHAR1_2_1",
1792
- "FAVOURITE_CHAR2_2_2",
1793
- "FAVOURITE_CHAR3_2_3",
1794
- "FAVOURITE_CHAR1_3_1",
1795
- "FAVOURITE_CHAR2_3_2",
1796
- "FAVOURITE_CHAR3_3_3",
1797
- "FAVOURITE_CHAR1_4_1",
1798
- "FAVOURITE_CHAR2_4_2",
1799
- "FAVOURITE_CHAR3_4_3",
1800
- "FAVOURITE_CHAR1_5_1",
1801
- "FAVOURITE_CHAR2_5_2",
1802
- "FAVOURITE_CHAR3_5_3",
1803
- "FAVOURITE_CHAR1_6_1",
1804
- "FAVOURITE_CHAR2_6_2",
1805
- "FAVOURITE_CHAR3_6_3",
1806
- "FAVOURITE_CHAR1_7_1",
1807
- "FAVOURITE_CHAR2_7_2",
1808
- "FAVOURITE_CHAR3_7_3",
1809
- "FAVOURITE_CHAR1_8_1",
1810
- "FAVOURITE_CHAR2_8_2",
1811
- "FAVOURITE_CHAR3_8_3",
1812
- "FAVOURITE_CHAR1_9_1",
1813
- "FAVOURITE_CHAR2_9_2",
1814
- "FAVOURITE_CHAR3_9_3",
1815
- "FAVOURITE_CHAR1_10_1",
1816
- "FAVOURITE_CHAR2_10_2",
1817
- "FAVOURITE_CHAR3_10_3"
1818
- ],
1819
- "lines": { "min": 1, "max": 10 },
1820
- "cells": [
1821
- [
1822
- { "headerCell": true, "label": "\"Name\"" },
1823
-
1824
- { "headerCell": true, "label": "\"Age\"" },
1825
-
1826
- { "headerCell": true, "label": "\"Member of the Simpsons family\"" }
1827
- ],
1828
-
1829
- [
1830
- {
1831
- "componentType": "Textarea",
1832
- "maxLength": 255,
1833
- "id": "j6qg8rc6-QOP-kiq7p16z_1_1",
1834
- "response": { "name": "FAVOURITE_CHAR1_1_1" },
1835
- "bindingDependencies": ["FAVOURITE_CHAR1_1_1"]
1836
- },
1837
-
1838
- {
1839
- "componentType": "Textarea",
1840
- "maxLength": 255,
1841
- "id": "j6qg8rc6-QOP-kiq7kny3_1_2",
1842
- "response": { "name": "FAVOURITE_CHAR2_1_2" },
1843
- "bindingDependencies": ["FAVOURITE_CHAR2_1_2"]
1844
- },
1845
-
1846
- {
1847
- "componentType": "CheckboxOne",
1848
- "id": "j6qg8rc6-QOP-kiq7lffy_1_3",
1849
- "options": [
1850
- { "value": "1", "label": "\"Yes\"" },
1851
-
1852
- { "value": "2", "label": "\"No\"" },
1853
-
1854
- { "value": "3", "label": "\"Other\"" }
1855
- ],
1856
- "response": { "name": "FAVOURITE_CHAR3_1_3" },
1857
- "bindingDependencies": ["FAVOURITE_CHAR3_1_3"]
1858
- }
1859
- ],
1860
-
1861
- [
1862
- {
1863
- "componentType": "Textarea",
1864
- "maxLength": 255,
1865
- "id": "j6qg8rc6-QOP-kiq7p16z_2_1",
1866
- "response": { "name": "FAVOURITE_CHAR1_2_1" },
1867
- "bindingDependencies": ["FAVOURITE_CHAR1_2_1"]
1868
- },
1869
-
1870
- {
1871
- "componentType": "Textarea",
1872
- "maxLength": 255,
1873
- "id": "j6qg8rc6-QOP-kiq7kny3_2_2",
1874
- "response": { "name": "FAVOURITE_CHAR2_2_2" },
1875
- "bindingDependencies": ["FAVOURITE_CHAR2_2_2"]
1876
- },
1877
-
1878
- {
1879
- "componentType": "CheckboxOne",
1880
- "id": "j6qg8rc6-QOP-kiq7lffy_2_3",
1881
- "options": [
1882
- { "value": "1", "label": "\"Yes\"" },
1883
-
1884
- { "value": "2", "label": "\"No\"" },
1885
-
1886
- { "value": "3", "label": "\"Other\"" }
1887
- ],
1888
- "response": { "name": "FAVOURITE_CHAR3_2_3" },
1889
- "bindingDependencies": ["FAVOURITE_CHAR3_2_3"]
1890
- }
1891
- ],
1892
-
1893
- [
1894
- {
1895
- "componentType": "Textarea",
1896
- "maxLength": 255,
1897
- "id": "j6qg8rc6-QOP-kiq7p16z_3_1",
1898
- "response": { "name": "FAVOURITE_CHAR1_3_1" },
1899
- "bindingDependencies": ["FAVOURITE_CHAR1_3_1"]
1900
- },
1901
-
1902
- {
1903
- "componentType": "Textarea",
1904
- "maxLength": 255,
1905
- "id": "j6qg8rc6-QOP-kiq7kny3_3_2",
1906
- "response": { "name": "FAVOURITE_CHAR2_3_2" },
1907
- "bindingDependencies": ["FAVOURITE_CHAR2_3_2"]
1908
- },
1909
-
1910
- {
1911
- "componentType": "CheckboxOne",
1912
- "id": "j6qg8rc6-QOP-kiq7lffy_3_3",
1913
- "options": [
1914
- { "value": "1", "label": "\"Yes\"" },
1915
-
1916
- { "value": "2", "label": "\"No\"" },
1917
-
1918
- { "value": "3", "label": "\"Other\"" }
1919
- ],
1920
- "response": { "name": "FAVOURITE_CHAR3_3_3" },
1921
- "bindingDependencies": ["FAVOURITE_CHAR3_3_3"]
1922
- }
1923
- ],
1924
-
1925
- [
1926
- {
1927
- "componentType": "Textarea",
1928
- "maxLength": 255,
1929
- "id": "j6qg8rc6-QOP-kiq7p16z_4_1",
1930
- "response": { "name": "FAVOURITE_CHAR1_4_1" },
1931
- "bindingDependencies": ["FAVOURITE_CHAR1_4_1"]
1932
- },
1933
-
1934
- {
1935
- "componentType": "Textarea",
1936
- "maxLength": 255,
1937
- "id": "j6qg8rc6-QOP-kiq7kny3_4_2",
1938
- "response": { "name": "FAVOURITE_CHAR2_4_2" },
1939
- "bindingDependencies": ["FAVOURITE_CHAR2_4_2"]
1940
- },
1941
-
1942
- {
1943
- "componentType": "CheckboxOne",
1944
- "id": "j6qg8rc6-QOP-kiq7lffy_4_3",
1945
- "options": [
1946
- { "value": "1", "label": "\"Yes\"" },
1947
-
1948
- { "value": "2", "label": "\"No\"" },
1949
-
1950
- { "value": "3", "label": "\"Other\"" }
1951
- ],
1952
- "response": { "name": "FAVOURITE_CHAR3_4_3" },
1953
- "bindingDependencies": ["FAVOURITE_CHAR3_4_3"]
1954
- }
1955
- ],
1956
-
1957
- [
1958
- {
1959
- "componentType": "Textarea",
1960
- "maxLength": 255,
1961
- "id": "j6qg8rc6-QOP-kiq7p16z_5_1",
1962
- "response": { "name": "FAVOURITE_CHAR1_5_1" },
1963
- "bindingDependencies": ["FAVOURITE_CHAR1_5_1"]
1964
- },
1965
-
1966
- {
1967
- "componentType": "Textarea",
1968
- "maxLength": 255,
1969
- "id": "j6qg8rc6-QOP-kiq7kny3_5_2",
1970
- "response": { "name": "FAVOURITE_CHAR2_5_2" },
1971
- "bindingDependencies": ["FAVOURITE_CHAR2_5_2"]
1972
- },
1973
-
1974
- {
1975
- "componentType": "CheckboxOne",
1976
- "id": "j6qg8rc6-QOP-kiq7lffy_5_3",
1977
- "options": [
1978
- { "value": "1", "label": "\"Yes\"" },
1979
-
1980
- { "value": "2", "label": "\"No\"" },
1981
-
1982
- { "value": "3", "label": "\"Other\"" }
1983
- ],
1984
- "response": { "name": "FAVOURITE_CHAR3_5_3" },
1985
- "bindingDependencies": ["FAVOURITE_CHAR3_5_3"]
1986
- }
1987
- ],
1988
-
1989
- [
1990
- {
1991
- "componentType": "Textarea",
1992
- "maxLength": 255,
1993
- "id": "j6qg8rc6-QOP-kiq7p16z_6_1",
1994
- "response": { "name": "FAVOURITE_CHAR1_6_1" },
1995
- "bindingDependencies": ["FAVOURITE_CHAR1_6_1"]
1996
- },
1997
-
1998
- {
1999
- "componentType": "Textarea",
2000
- "maxLength": 255,
2001
- "id": "j6qg8rc6-QOP-kiq7kny3_6_2",
2002
- "response": { "name": "FAVOURITE_CHAR2_6_2" },
2003
- "bindingDependencies": ["FAVOURITE_CHAR2_6_2"]
2004
- },
2005
-
2006
- {
2007
- "componentType": "CheckboxOne",
2008
- "id": "j6qg8rc6-QOP-kiq7lffy_6_3",
2009
- "options": [
2010
- { "value": "1", "label": "\"Yes\"" },
2011
-
2012
- { "value": "2", "label": "\"No\"" },
2013
-
2014
- { "value": "3", "label": "\"Other\"" }
2015
- ],
2016
- "response": { "name": "FAVOURITE_CHAR3_6_3" },
2017
- "bindingDependencies": ["FAVOURITE_CHAR3_6_3"]
2018
- }
2019
- ],
2020
-
2021
- [
2022
- {
2023
- "componentType": "Textarea",
2024
- "maxLength": 255,
2025
- "id": "j6qg8rc6-QOP-kiq7p16z_7_1",
2026
- "response": { "name": "FAVOURITE_CHAR1_7_1" },
2027
- "bindingDependencies": ["FAVOURITE_CHAR1_7_1"]
2028
- },
2029
-
2030
- {
2031
- "componentType": "Textarea",
2032
- "maxLength": 255,
2033
- "id": "j6qg8rc6-QOP-kiq7kny3_7_2",
2034
- "response": { "name": "FAVOURITE_CHAR2_7_2" },
2035
- "bindingDependencies": ["FAVOURITE_CHAR2_7_2"]
2036
- },
2037
-
2038
- {
2039
- "componentType": "CheckboxOne",
2040
- "id": "j6qg8rc6-QOP-kiq7lffy_7_3",
2041
- "options": [
2042
- { "value": "1", "label": "\"Yes\"" },
2043
-
2044
- { "value": "2", "label": "\"No\"" },
2045
-
2046
- { "value": "3", "label": "\"Other\"" }
2047
- ],
2048
- "response": { "name": "FAVOURITE_CHAR3_7_3" },
2049
- "bindingDependencies": ["FAVOURITE_CHAR3_7_3"]
2050
- }
2051
- ],
2052
-
2053
- [
2054
- {
2055
- "componentType": "Textarea",
2056
- "maxLength": 255,
2057
- "id": "j6qg8rc6-QOP-kiq7p16z_8_1",
2058
- "response": { "name": "FAVOURITE_CHAR1_8_1" },
2059
- "bindingDependencies": ["FAVOURITE_CHAR1_8_1"]
2060
- },
2061
-
2062
- {
2063
- "componentType": "Textarea",
2064
- "maxLength": 255,
2065
- "id": "j6qg8rc6-QOP-kiq7kny3_8_2",
2066
- "response": { "name": "FAVOURITE_CHAR2_8_2" },
2067
- "bindingDependencies": ["FAVOURITE_CHAR2_8_2"]
2068
- },
2069
-
2070
- {
2071
- "componentType": "CheckboxOne",
2072
- "id": "j6qg8rc6-QOP-kiq7lffy_8_3",
2073
- "options": [
2074
- { "value": "1", "label": "\"Yes\"" },
2075
-
2076
- { "value": "2", "label": "\"No\"" },
2077
-
2078
- { "value": "3", "label": "\"Other\"" }
2079
- ],
2080
- "response": { "name": "FAVOURITE_CHAR3_8_3" },
2081
- "bindingDependencies": ["FAVOURITE_CHAR3_8_3"]
2082
- }
2083
- ],
2084
-
2085
- [
2086
- {
2087
- "componentType": "Textarea",
2088
- "maxLength": 255,
2089
- "id": "j6qg8rc6-QOP-kiq7p16z_9_1",
2090
- "response": { "name": "FAVOURITE_CHAR1_9_1" },
2091
- "bindingDependencies": ["FAVOURITE_CHAR1_9_1"]
2092
- },
2093
-
2094
- {
2095
- "componentType": "Textarea",
2096
- "maxLength": 255,
2097
- "id": "j6qg8rc6-QOP-kiq7kny3_9_2",
2098
- "response": { "name": "FAVOURITE_CHAR2_9_2" },
2099
- "bindingDependencies": ["FAVOURITE_CHAR2_9_2"]
2100
- },
2101
-
2102
- {
2103
- "componentType": "CheckboxOne",
2104
- "id": "j6qg8rc6-QOP-kiq7lffy_9_3",
2105
- "options": [
2106
- { "value": "1", "label": "\"Yes\"" },
2107
-
2108
- { "value": "2", "label": "\"No\"" },
2109
-
2110
- { "value": "3", "label": "\"Other\"" }
2111
- ],
2112
- "response": { "name": "FAVOURITE_CHAR3_9_3" },
2113
- "bindingDependencies": ["FAVOURITE_CHAR3_9_3"]
2114
- }
2115
- ],
2116
-
2117
- [
2118
- {
2119
- "componentType": "Textarea",
2120
- "maxLength": 255,
2121
- "id": "j6qg8rc6-QOP-kiq7p16z_10_1",
2122
- "response": { "name": "FAVOURITE_CHAR1_10_1" },
2123
- "bindingDependencies": ["FAVOURITE_CHAR1_10_1"]
2124
- },
2125
-
2126
- {
2127
- "componentType": "Textarea",
2128
- "maxLength": 255,
2129
- "id": "j6qg8rc6-QOP-kiq7kny3_10_2",
2130
- "response": { "name": "FAVOURITE_CHAR2_10_2" },
2131
- "bindingDependencies": ["FAVOURITE_CHAR2_10_2"]
2132
- },
2133
-
2134
- {
2135
- "componentType": "CheckboxOne",
2136
- "id": "j6qg8rc6-QOP-kiq7lffy_10_3",
2137
- "options": [
2138
- { "value": "1", "label": "\"Yes\"" },
2139
-
2140
- { "value": "2", "label": "\"No\"" },
2141
-
2142
- { "value": "3", "label": "\"Other\"" }
2143
- ],
2144
- "response": { "name": "FAVOURITE_CHAR3_10_3" },
2145
- "bindingDependencies": ["FAVOURITE_CHAR3_10_3"]
2146
- }
2147
- ]
2148
- ]
2149
- },
2150
-
2151
- {
2152
- "id": "jvxux0mi",
2153
- "componentType": "Table",
2154
- "mandatory": false,
2155
- "page": "5",
2156
- "positioning": "HORIZONTAL",
2157
- "label": "\"➡ 2. How has your feeling about the following characters evolved over time?\"",
2158
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
2159
- "hierarchy": {
2160
- "sequence": {
2161
- "id": "j6qfx9qe",
2162
- "page": "5",
2163
- "label": "\"V - Favourite characters (dynamic table)\""
2164
- }
2165
- },
2166
- "bindingDependencies": [
2167
- "FEELCHAREV1",
2168
- "FEELCHAREV2",
2169
- "FEELCHAREV3",
2170
- "FEELCHAREV4"
2171
- ],
2172
- "cells": [
2173
- [
2174
- { "value": "1", "label": "\"Jay\"" },
2175
-
2176
- {
2177
- "componentType": "CheckboxOne",
2178
- "id": "jvxux0mi-QOP-kiq76emy",
2179
- "options": [
2180
- { "value": "1", "label": "\"Up\"" },
2181
-
2182
- { "value": "2", "label": "\"Down\"" },
2183
-
2184
- { "value": "3", "label": "\"Steady\"" }
2185
- ],
2186
- "response": { "name": "FEELCHAREV1" },
2187
- "bindingDependencies": ["FEELCHAREV1"]
2188
- }
2189
- ],
2190
-
2191
- [
2192
- { "value": "2", "label": "\"Bart\"" },
2193
-
2194
- {
2195
- "componentType": "CheckboxOne",
2196
- "id": "jvxux0mi-QOP-kiq6zv60",
2197
- "options": [
2198
- { "value": "1", "label": "\"Up\"" },
2199
-
2200
- { "value": "2", "label": "\"Down\"" },
2201
-
2202
- { "value": "3", "label": "\"Steady\"" }
2203
- ],
2204
- "response": { "name": "FEELCHAREV2" },
2205
- "bindingDependencies": ["FEELCHAREV2"]
2206
- }
2207
- ],
2208
-
2209
- [
2210
- { "value": "3", "label": "\"Krusty the clown\"" },
2211
-
2212
- {
2213
- "componentType": "CheckboxOne",
2214
- "id": "jvxux0mi-QOP-kiq7bgk3",
2215
- "options": [
2216
- { "value": "1", "label": "\"Up\"" },
2217
-
2218
- { "value": "2", "label": "\"Down\"" },
2219
-
2220
- { "value": "3", "label": "\"Steady\"" }
2221
- ],
2222
- "response": { "name": "FEELCHAREV3" },
2223
- "bindingDependencies": ["FEELCHAREV3"]
2224
- }
2225
- ],
2226
-
2227
- [
2228
- { "value": "O", "label": "\"Other\"" },
2229
-
2230
- {
2231
- "componentType": "CheckboxOne",
2232
- "id": "jvxux0mi-QOP-kiq6ync3",
2233
- "options": [
2234
- { "value": "1", "label": "\"Up\"" },
2235
-
2236
- { "value": "2", "label": "\"Down\"" },
2237
-
2238
- { "value": "3", "label": "\"Steady\"" }
2239
- ],
2240
- "response": { "name": "FEELCHAREV4" },
2241
- "bindingDependencies": ["FEELCHAREV4"]
2242
- }
2243
- ]
2244
- ]
2245
- },
2246
-
2247
- {
2248
- "id": "jvxwy68n",
2249
- "componentType": "Table",
2250
- "mandatory": false,
2251
- "page": "5",
2252
- "positioning": "HORIZONTAL",
2253
- "label": "\"➡ 3. Can you tell how long Bart Simpson has been on leave for each type and whether there has been another type?\"",
2254
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
2255
- "hierarchy": {
2256
- "sequence": {
2257
- "id": "j6qfx9qe",
2258
- "page": "5",
2259
- "label": "\"V - Favourite characters (dynamic table)\""
2260
- }
2261
- },
2262
- "bindingDependencies": [
2263
- "LEAVDURATION11",
2264
- "LEAVDURATION12",
2265
- "LEAVDURATION21",
2266
- "LEAVDURATION22",
2267
- "LEAVDURATION31",
2268
- "LEAVDURATION32",
2269
- "LEAVDURATION41",
2270
- "LEAVDURATION42",
2271
- "LEAVDURATION51",
2272
- "LEAVDURATION52"
2273
- ],
2274
- "cells": [
2275
- [
2276
- { "headerCell": true, "label": "" },
2277
-
2278
- { "headerCell": true, "label": "\"Days\"" },
2279
-
2280
- { "headerCell": true, "label": "\"Unit\"" }
2281
- ],
2282
-
2283
- [
2284
- { "value": "1", "label": "\"Leave with pay\"" },
2285
-
2286
- {
2287
- "componentType": "InputNumber",
2288
- "min": 0,
2289
- "max": 365,
2290
- "decimals": 0,
2291
- "id": "jvxwy68n-QOP-kewv511d",
2292
- "response": { "name": "LEAVDURATION11" },
2293
- "bindingDependencies": ["LEAVDURATION11"]
2294
- },
2295
-
2296
- {
2297
- "componentType": "Dropdown",
2298
- "id": "jvxwy68n-QOP-kewv20qg",
2299
- "options": [
2300
- { "value": "1", "label": "\"Working Days\"" },
2301
-
2302
- { "value": "2", "label": "\"Calendar days\"" }
2303
- ],
2304
- "response": { "name": "LEAVDURATION12" },
2305
- "bindingDependencies": ["LEAVDURATION12"]
2306
- }
2307
- ],
2308
-
2309
- [
2310
- { "value": "2", "label": "\"Public holiday\"" },
2311
-
2312
- {
2313
- "componentType": "InputNumber",
2314
- "min": 0,
2315
- "max": 365,
2316
- "decimals": 0,
2317
- "id": "jvxwy68n-QOP-kewv67nj",
2318
- "response": { "name": "LEAVDURATION21" },
2319
- "bindingDependencies": ["LEAVDURATION21"]
2320
- },
2321
-
2322
- {
2323
- "componentType": "Dropdown",
2324
- "id": "jvxwy68n-QOP-kewvizdm",
2325
- "options": [
2326
- { "value": "1", "label": "\"Working Days\"" },
2327
-
2328
- { "value": "2", "label": "\"Calendar days\"" }
2329
- ],
2330
- "response": { "name": "LEAVDURATION22" },
2331
- "bindingDependencies": ["LEAVDURATION22"]
2332
- }
2333
- ],
2334
-
2335
- [
2336
- { "value": "3", "label": "\"Sick leave\"" },
2337
-
2338
- {
2339
- "componentType": "InputNumber",
2340
- "min": 0,
2341
- "max": 365,
2342
- "decimals": 0,
2343
- "id": "jvxwy68n-QOP-kewv23wm",
2344
- "response": { "name": "LEAVDURATION31" },
2345
- "bindingDependencies": ["LEAVDURATION31"]
2346
- },
2347
-
2348
- {
2349
- "componentType": "Dropdown",
2350
- "id": "jvxwy68n-QOP-kewv9jcl",
2351
- "options": [
2352
- { "value": "1", "label": "\"Working Days\"" },
2353
-
2354
- { "value": "2", "label": "\"Calendar days\"" }
2355
- ],
2356
- "response": { "name": "LEAVDURATION32" },
2357
- "bindingDependencies": ["LEAVDURATION32"]
2358
- }
2359
- ],
2360
-
2361
- [
2362
- { "value": "4", "label": "\"Maternity/paternity leave\"" },
2363
-
2364
- {
2365
- "componentType": "InputNumber",
2366
- "min": 0,
2367
- "max": 365,
2368
- "decimals": 0,
2369
- "id": "jvxwy68n-QOP-kewv2jks",
2370
- "response": { "name": "LEAVDURATION41" },
2371
- "bindingDependencies": ["LEAVDURATION41"]
2372
- },
2373
-
2374
- {
2375
- "componentType": "Dropdown",
2376
- "id": "jvxwy68n-QOP-kewvf0gf",
2377
- "options": [
2378
- { "value": "1", "label": "\"Working Days\"" },
2379
-
2380
- { "value": "2", "label": "\"Calendar days\"" }
2381
- ],
2382
- "response": { "name": "LEAVDURATION42" },
2383
- "bindingDependencies": ["LEAVDURATION42"]
2384
- }
2385
- ],
2386
-
2387
- [
2388
- { "value": "5", "label": "\"Other type\"" },
2389
-
2390
- {
2391
- "componentType": "InputNumber",
2392
- "min": 0,
2393
- "max": 365,
2394
- "decimals": 0,
2395
- "id": "jvxwy68n-QOP-kewvl896",
2396
- "response": { "name": "LEAVDURATION51" },
2397
- "bindingDependencies": ["LEAVDURATION51"]
2398
- },
2399
-
2400
- {
2401
- "componentType": "Dropdown",
2402
- "id": "jvxwy68n-QOP-kewvalmd",
2403
- "options": [
2404
- { "value": "1", "label": "\"Working Days\"" },
2405
-
2406
- { "value": "2", "label": "\"Calendar days\"" }
2407
- ],
2408
- "response": { "name": "LEAVDURATION52" },
2409
- "bindingDependencies": ["LEAVDURATION52"]
2410
- }
2411
- ]
2412
- ]
2413
- },
2414
-
2415
- {
2416
- "id": "kiq5mr0b",
2417
- "componentType": "Sequence",
2418
- "page": "6",
2419
- "label": "\"VI - Favourite characters (Loop)\"",
2420
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
2421
- "hierarchy": {
2422
- "sequence": {
2423
- "id": "kiq5mr0b",
2424
- "page": "6",
2425
- "label": "\"VI - Favourite characters (Loop)\""
2426
- }
2427
- }
2428
- },
2429
-
2430
- {
2431
- "id": "kiq612ky",
2432
- "componentType": "InputNumber",
2433
- "mandatory": false,
2434
- "page": "6",
2435
- "min": 0,
2436
- "max": 20,
2437
- "decimals": 0,
2438
- "label": "\"➡ 1. How many characters from the Simpsons family could you precisely describe?\"",
2439
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
2440
- "hierarchy": {
2441
- "sequence": {
2442
- "id": "kiq5mr0b",
2443
- "page": "6",
2444
- "label": "\"VI - Favourite characters (Loop)\""
2445
- }
2446
- },
2447
- "bindingDependencies": ["NB_CHAR"],
2448
- "response": { "name": "NB_CHAR" }
2449
- },
2450
-
2451
- {
2452
- "id": "kiq7bjam",
2453
- "componentType": "Loop",
2454
- "page": "6",
2455
- "label": "\"Add a character\"",
2456
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
2457
- "hierarchy": {
2458
- "sequence": {
2459
- "id": "kiq5mr0b",
2460
- "page": "6",
2461
- "label": "\"VI - Favourite characters (Loop)\""
2462
- }
2463
- },
2464
- "bindingDependencies": ["NAME_CHAR", "AGE_CHAR"],
2465
- "components": [
2466
- {
2467
- "id": "kiq5u8d5",
2468
- "componentType": "Subsequence",
2469
- "page": "6",
2470
- "label": "\"Description of each character\"",
2471
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
2472
- "hierarchy": {
2473
- "sequence": {
2474
- "id": "kiq5mr0b",
2475
- "page": "6",
2476
- "label": "\"VI - Favourite characters (Loop)\""
2477
- },
2478
- "subSequence": {
2479
- "id": "kiq5u8d5",
2480
- "page": "6",
2481
- "label": "\"Description of each character\""
2482
- }
2483
- }
2484
- },
2485
-
2486
- {
2487
- "id": "kiq66gtw",
2488
- "componentType": "Input",
2489
- "mandatory": false,
2490
- "page": "6",
2491
- "maxLength": 30,
2492
- "label": "\"➡ 2. What is the first name of this character?\"",
2493
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
2494
- "hierarchy": {
2495
- "sequence": {
2496
- "id": "kiq5mr0b",
2497
- "page": "6",
2498
- "label": "\"VI - Favourite characters (Loop)\""
2499
- },
2500
- "subSequence": {
2501
- "id": "kiq5u8d5",
2502
- "page": "6",
2503
- "label": "\"Description of each character\""
2504
- }
2505
- },
2506
- "bindingDependencies": ["NAME_CHAR"],
2507
- "response": { "name": "NAME_CHAR" }
2508
- },
2509
-
2510
- {
2511
- "id": "kiq5r8wu",
2512
- "componentType": "InputNumber",
2513
- "mandatory": false,
2514
- "page": "6",
2515
- "min": 0,
2516
- "max": 120,
2517
- "decimals": 0,
2518
- "label": "\"➡ 3. How old is this character in the first episode of the Simpsons family?\"",
2519
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
2520
- "hierarchy": {
2521
- "sequence": {
2522
- "id": "kiq5mr0b",
2523
- "page": "6",
2524
- "label": "\"VI - Favourite characters (Loop)\""
2525
- },
2526
- "subSequence": {
2527
- "id": "kiq5u8d5",
2528
- "page": "6",
2529
- "label": "\"Description of each character\""
2530
- }
2531
- },
2532
- "bindingDependencies": ["AGE_CHAR"],
2533
- "response": { "name": "AGE_CHAR" }
2534
- }
2535
- ]
2536
- },
2537
-
2538
- {
2539
- "id": "kiq7cbgo",
2540
- "componentType": "Loop",
2541
- "page": "7",
2542
- "maxPage": "1",
2543
- "min": 0,
2544
- "iterations": "count(NAME_CHAR)",
2545
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
2546
- "bindingDependencies": ["NAME_CHAR", "FAVCHAR", "MEMORY_CHAR"],
2547
- "loopDependencies": ["NAME_CHAR", "AGE_CHAR"],
2548
- "paginatedLoop": true,
2549
- "components": [
2550
- {
2551
- "id": "kiq5xw5p",
2552
- "componentType": "Sequence",
2553
- "page": "7.1",
2554
- "label": "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"",
2555
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
2556
- "hierarchy": {
2557
- "sequence": {
2558
- "id": "kiq5xw5p",
2559
- "page": "7.1",
2560
- "label": "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \""
2561
- }
2562
- }
2563
- },
2564
-
2565
- {
2566
- "id": "kiq65x3c",
2567
- "componentType": "CheckboxOne",
2568
- "mandatory": false,
2569
- "page": "7.1",
2570
- "label": "\"➡ 1. Is character named \" || cast(cast(NAME_CHAR,string),string) || \" your favourite one ? \"",
2571
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
2572
- "hierarchy": {
2573
- "sequence": {
2574
- "id": "kiq5xw5p",
2575
- "page": "7.1",
2576
- "label": "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \""
2577
- }
2578
- },
2579
- "bindingDependencies": ["NAME_CHAR", "FAVCHAR"],
2580
- "options": [
2581
- { "value": "1", "label": "\"Yes\"" },
2582
-
2583
- { "value": "0", "label": "\"No\"" }
2584
- ],
2585
- "response": { "name": "FAVCHAR" }
2586
- },
2587
-
2588
- {
2589
- "id": "kiq651zv",
2590
- "componentType": "Textarea",
2591
- "mandatory": false,
2592
- "page": "7.1",
2593
- "maxLength": 255,
2594
- "label": "\"➡ 2. What is your best memory about character named \" || cast(cast(NAME_CHAR,string),string) || \" ? \"",
2595
- "conditionFilter": "if ((not(cast(READY,integer) <> 1))) then \"normal\" else \"hidden\"",
2596
- "hierarchy": {
2597
- "sequence": {
2598
- "id": "kiq5xw5p",
2599
- "page": "7.1",
2600
- "label": "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \""
2601
- }
2602
- },
2603
- "bindingDependencies": ["NAME_CHAR", "MEMORY_CHAR"],
2604
- "response": { "name": "MEMORY_CHAR" }
2605
- }
2606
- ]
2607
- },
2608
-
2609
- {
2610
- "id": "j6z12s2d",
2611
- "componentType": "Sequence",
2612
- "page": "8",
2613
- "label": "\"VIII - Comment\"",
2614
- "conditionFilter": "\"normal\"",
2615
- "hierarchy": {
2616
- "sequence": {
2617
- "id": "j6z12s2d",
2618
- "page": "8",
2619
- "label": "\"VIII - Comment\""
2620
- }
2621
- }
2622
- },
2623
-
2624
- {
2625
- "id": "j6z0z3us",
2626
- "componentType": "Textarea",
2627
- "mandatory": false,
2628
- "page": "8",
2629
- "maxLength": 255,
2630
- "label": "\"➡ 1. Do you have any comment about the survey?\"",
2631
- "conditionFilter": "\"normal\"",
2632
- "hierarchy": {
2633
- "sequence": {
2634
- "id": "j6z12s2d",
2635
- "page": "8",
2636
- "label": "\"VIII - Comment\""
2637
- }
2638
- },
2639
- "bindingDependencies": ["SURVEY_COMMENT"],
2640
- "response": { "name": "SURVEY_COMMENT" }
2641
- }
2642
- ],
2643
- "variables": [
2644
- {
2645
- "variableType": "COLLECTED",
2646
- "name": "FAVOURITE_CHAR1_1_1",
2647
- "componentRef": "j6qg8rc6",
2648
- "values": {
2649
- "PREVIOUS": null,
2650
- "COLLECTED": null,
2651
- "FORCED": null,
2652
- "EDITED": null,
2653
- "INPUTED": null
2654
- }
2655
- },
2656
-
2657
- {
2658
- "variableType": "COLLECTED",
2659
- "name": "FAVOURITE_CHAR2_1_2",
2660
- "componentRef": "j6qg8rc6",
2661
- "values": {
2662
- "PREVIOUS": null,
2663
- "COLLECTED": null,
2664
- "FORCED": null,
2665
- "EDITED": null,
2666
- "INPUTED": null
2667
- }
2668
- },
2669
-
2670
- {
2671
- "variableType": "COLLECTED",
2672
- "name": "FAVOURITE_CHAR3_1_3",
2673
- "componentRef": "j6qg8rc6",
2674
- "values": {
2675
- "PREVIOUS": null,
2676
- "COLLECTED": null,
2677
- "FORCED": null,
2678
- "EDITED": null,
2679
- "INPUTED": null
2680
- }
2681
- },
2682
-
2683
- {
2684
- "variableType": "COLLECTED",
2685
- "name": "FAVOURITE_CHAR1_2_1",
2686
- "componentRef": "j6qg8rc6",
2687
- "values": {
2688
- "PREVIOUS": null,
2689
- "COLLECTED": null,
2690
- "FORCED": null,
2691
- "EDITED": null,
2692
- "INPUTED": null
2693
- }
2694
- },
2695
-
2696
- {
2697
- "variableType": "COLLECTED",
2698
- "name": "FAVOURITE_CHAR2_2_2",
2699
- "componentRef": "j6qg8rc6",
2700
- "values": {
2701
- "PREVIOUS": null,
2702
- "COLLECTED": null,
2703
- "FORCED": null,
2704
- "EDITED": null,
2705
- "INPUTED": null
2706
- }
2707
- },
2708
-
2709
- {
2710
- "variableType": "COLLECTED",
2711
- "name": "FAVOURITE_CHAR3_2_3",
2712
- "componentRef": "j6qg8rc6",
2713
- "values": {
2714
- "PREVIOUS": null,
2715
- "COLLECTED": null,
2716
- "FORCED": null,
2717
- "EDITED": null,
2718
- "INPUTED": null
2719
- }
2720
- },
2721
-
2722
- {
2723
- "variableType": "COLLECTED",
2724
- "name": "FAVOURITE_CHAR1_3_1",
2725
- "componentRef": "j6qg8rc6",
2726
- "values": {
2727
- "PREVIOUS": null,
2728
- "COLLECTED": null,
2729
- "FORCED": null,
2730
- "EDITED": null,
2731
- "INPUTED": null
2732
- }
2733
- },
2734
-
2735
- {
2736
- "variableType": "COLLECTED",
2737
- "name": "FAVOURITE_CHAR2_3_2",
2738
- "componentRef": "j6qg8rc6",
2739
- "values": {
2740
- "PREVIOUS": null,
2741
- "COLLECTED": null,
2742
- "FORCED": null,
2743
- "EDITED": null,
2744
- "INPUTED": null
2745
- }
2746
- },
2747
-
2748
- {
2749
- "variableType": "COLLECTED",
2750
- "name": "FAVOURITE_CHAR3_3_3",
2751
- "componentRef": "j6qg8rc6",
2752
- "values": {
2753
- "PREVIOUS": null,
2754
- "COLLECTED": null,
2755
- "FORCED": null,
2756
- "EDITED": null,
2757
- "INPUTED": null
2758
- }
2759
- },
2760
-
2761
- {
2762
- "variableType": "COLLECTED",
2763
- "name": "FAVOURITE_CHAR1_4_1",
2764
- "componentRef": "j6qg8rc6",
2765
- "values": {
2766
- "PREVIOUS": null,
2767
- "COLLECTED": null,
2768
- "FORCED": null,
2769
- "EDITED": null,
2770
- "INPUTED": null
2771
- }
2772
- },
2773
-
2774
- {
2775
- "variableType": "COLLECTED",
2776
- "name": "FAVOURITE_CHAR2_4_2",
2777
- "componentRef": "j6qg8rc6",
2778
- "values": {
2779
- "PREVIOUS": null,
2780
- "COLLECTED": null,
2781
- "FORCED": null,
2782
- "EDITED": null,
2783
- "INPUTED": null
2784
- }
2785
- },
2786
-
2787
- {
2788
- "variableType": "COLLECTED",
2789
- "name": "FAVOURITE_CHAR3_4_3",
2790
- "componentRef": "j6qg8rc6",
2791
- "values": {
2792
- "PREVIOUS": null,
2793
- "COLLECTED": null,
2794
- "FORCED": null,
2795
- "EDITED": null,
2796
- "INPUTED": null
2797
- }
2798
- },
2799
-
2800
- {
2801
- "variableType": "COLLECTED",
2802
- "name": "FAVOURITE_CHAR1_5_1",
2803
- "componentRef": "j6qg8rc6",
2804
- "values": {
2805
- "PREVIOUS": null,
2806
- "COLLECTED": null,
2807
- "FORCED": null,
2808
- "EDITED": null,
2809
- "INPUTED": null
2810
- }
2811
- },
2812
-
2813
- {
2814
- "variableType": "COLLECTED",
2815
- "name": "FAVOURITE_CHAR2_5_2",
2816
- "componentRef": "j6qg8rc6",
2817
- "values": {
2818
- "PREVIOUS": null,
2819
- "COLLECTED": null,
2820
- "FORCED": null,
2821
- "EDITED": null,
2822
- "INPUTED": null
2823
- }
2824
- },
2825
-
2826
- {
2827
- "variableType": "COLLECTED",
2828
- "name": "FAVOURITE_CHAR3_5_3",
2829
- "componentRef": "j6qg8rc6",
2830
- "values": {
2831
- "PREVIOUS": null,
2832
- "COLLECTED": null,
2833
- "FORCED": null,
2834
- "EDITED": null,
2835
- "INPUTED": null
2836
- }
2837
- },
2838
-
2839
- {
2840
- "variableType": "COLLECTED",
2841
- "name": "FAVOURITE_CHAR1_6_1",
2842
- "componentRef": "j6qg8rc6",
2843
- "values": {
2844
- "PREVIOUS": null,
2845
- "COLLECTED": null,
2846
- "FORCED": null,
2847
- "EDITED": null,
2848
- "INPUTED": null
2849
- }
2850
- },
2851
-
2852
- {
2853
- "variableType": "COLLECTED",
2854
- "name": "FAVOURITE_CHAR2_6_2",
2855
- "componentRef": "j6qg8rc6",
2856
- "values": {
2857
- "PREVIOUS": null,
2858
- "COLLECTED": null,
2859
- "FORCED": null,
2860
- "EDITED": null,
2861
- "INPUTED": null
2862
- }
2863
- },
2864
-
2865
- {
2866
- "variableType": "COLLECTED",
2867
- "name": "FAVOURITE_CHAR3_6_3",
2868
- "componentRef": "j6qg8rc6",
2869
- "values": {
2870
- "PREVIOUS": null,
2871
- "COLLECTED": null,
2872
- "FORCED": null,
2873
- "EDITED": null,
2874
- "INPUTED": null
2875
- }
2876
- },
2877
-
2878
- {
2879
- "variableType": "COLLECTED",
2880
- "name": "FAVOURITE_CHAR1_7_1",
2881
- "componentRef": "j6qg8rc6",
2882
- "values": {
2883
- "PREVIOUS": null,
2884
- "COLLECTED": null,
2885
- "FORCED": null,
2886
- "EDITED": null,
2887
- "INPUTED": null
2888
- }
2889
- },
2890
-
2891
- {
2892
- "variableType": "COLLECTED",
2893
- "name": "FAVOURITE_CHAR2_7_2",
2894
- "componentRef": "j6qg8rc6",
2895
- "values": {
2896
- "PREVIOUS": null,
2897
- "COLLECTED": null,
2898
- "FORCED": null,
2899
- "EDITED": null,
2900
- "INPUTED": null
2901
- }
2902
- },
2903
-
2904
- {
2905
- "variableType": "COLLECTED",
2906
- "name": "FAVOURITE_CHAR3_7_3",
2907
- "componentRef": "j6qg8rc6",
2908
- "values": {
2909
- "PREVIOUS": null,
2910
- "COLLECTED": null,
2911
- "FORCED": null,
2912
- "EDITED": null,
2913
- "INPUTED": null
2914
- }
2915
- },
2916
-
2917
- {
2918
- "variableType": "COLLECTED",
2919
- "name": "FAVOURITE_CHAR1_8_1",
2920
- "componentRef": "j6qg8rc6",
2921
- "values": {
2922
- "PREVIOUS": null,
2923
- "COLLECTED": null,
2924
- "FORCED": null,
2925
- "EDITED": null,
2926
- "INPUTED": null
2927
- }
2928
- },
2929
-
2930
- {
2931
- "variableType": "COLLECTED",
2932
- "name": "FAVOURITE_CHAR2_8_2",
2933
- "componentRef": "j6qg8rc6",
2934
- "values": {
2935
- "PREVIOUS": null,
2936
- "COLLECTED": null,
2937
- "FORCED": null,
2938
- "EDITED": null,
2939
- "INPUTED": null
2940
- }
2941
- },
2942
-
2943
- {
2944
- "variableType": "COLLECTED",
2945
- "name": "FAVOURITE_CHAR3_8_3",
2946
- "componentRef": "j6qg8rc6",
2947
- "values": {
2948
- "PREVIOUS": null,
2949
- "COLLECTED": null,
2950
- "FORCED": null,
2951
- "EDITED": null,
2952
- "INPUTED": null
2953
- }
2954
- },
2955
-
2956
- {
2957
- "variableType": "COLLECTED",
2958
- "name": "FAVOURITE_CHAR1_9_1",
2959
- "componentRef": "j6qg8rc6",
2960
- "values": {
2961
- "PREVIOUS": null,
2962
- "COLLECTED": null,
2963
- "FORCED": null,
2964
- "EDITED": null,
2965
- "INPUTED": null
2966
- }
2967
- },
2968
-
2969
- {
2970
- "variableType": "COLLECTED",
2971
- "name": "FAVOURITE_CHAR2_9_2",
2972
- "componentRef": "j6qg8rc6",
2973
- "values": {
2974
- "PREVIOUS": null,
2975
- "COLLECTED": null,
2976
- "FORCED": null,
2977
- "EDITED": null,
2978
- "INPUTED": null
2979
- }
2980
- },
2981
-
2982
- {
2983
- "variableType": "COLLECTED",
2984
- "name": "FAVOURITE_CHAR3_9_3",
2985
- "componentRef": "j6qg8rc6",
2986
- "values": {
2987
- "PREVIOUS": null,
2988
- "COLLECTED": null,
2989
- "FORCED": null,
2990
- "EDITED": null,
2991
- "INPUTED": null
2992
- }
2993
- },
2994
-
2995
- {
2996
- "variableType": "COLLECTED",
2997
- "name": "FAVOURITE_CHAR1_10_1",
2998
- "componentRef": "j6qg8rc6",
2999
- "values": {
3000
- "PREVIOUS": null,
3001
- "COLLECTED": null,
3002
- "FORCED": null,
3003
- "EDITED": null,
3004
- "INPUTED": null
3005
- }
3006
- },
3007
-
3008
- {
3009
- "variableType": "COLLECTED",
3010
- "name": "FAVOURITE_CHAR2_10_2",
3011
- "componentRef": "j6qg8rc6",
3012
- "values": {
3013
- "PREVIOUS": null,
3014
- "COLLECTED": null,
3015
- "FORCED": null,
3016
- "EDITED": null,
3017
- "INPUTED": null
3018
- }
3019
- },
3020
-
3021
- {
3022
- "variableType": "COLLECTED",
3023
- "name": "FAVOURITE_CHAR3_10_3",
3024
- "componentRef": "j6qg8rc6",
3025
- "values": {
3026
- "PREVIOUS": null,
3027
- "COLLECTED": null,
3028
- "FORCED": null,
3029
- "EDITED": null,
3030
- "INPUTED": null
3031
- }
3032
- },
3033
-
3034
- { "variableType": "EXTERNAL", "name": "LAST_BROADCAST", "value": null },
3035
-
3036
- {
3037
- "variableType": "COLLECTED",
3038
- "name": "COMMENT",
3039
- "componentRef": "j6p3dkx6",
3040
- "values": {
3041
- "PREVIOUS": null,
3042
- "COLLECTED": null,
3043
- "FORCED": null,
3044
- "EDITED": null,
3045
- "INPUTED": null
3046
- }
3047
- },
3048
-
3049
- {
3050
- "variableType": "COLLECTED",
3051
- "name": "READY",
3052
- "componentRef": "j6p0np9q",
3053
- "values": {
3054
- "PREVIOUS": null,
3055
- "COLLECTED": null,
3056
- "FORCED": null,
3057
- "EDITED": null,
3058
- "INPUTED": null
3059
- }
3060
- },
3061
-
3062
- {
3063
- "variableType": "COLLECTED",
3064
- "name": "PRODUCER",
3065
- "componentRef": "j3343qhx",
3066
- "values": {
3067
- "PREVIOUS": null,
3068
- "COLLECTED": null,
3069
- "FORCED": null,
3070
- "EDITED": null,
3071
- "INPUTED": null
3072
- }
3073
- },
3074
-
3075
- {
3076
- "variableType": "COLLECTED",
3077
- "name": "SEASON_NUMBER",
3078
- "componentRef": "j6q9h8tj",
3079
- "values": {
3080
- "PREVIOUS": null,
3081
- "COLLECTED": null,
3082
- "FORCED": null,
3083
- "EDITED": null,
3084
- "INPUTED": null
3085
- }
3086
- },
3087
-
3088
- {
3089
- "variableType": "COLLECTED",
3090
- "name": "DATEFIRST",
3091
- "componentRef": "kiq71eoi",
3092
- "values": {
3093
- "PREVIOUS": null,
3094
- "COLLECTED": null,
3095
- "FORCED": null,
3096
- "EDITED": null,
3097
- "INPUTED": null
3098
- }
3099
- },
3100
-
3101
- {
3102
- "variableType": "COLLECTED",
3103
- "name": "DATEYYYYMM",
3104
- "componentRef": "k5nvty2o",
3105
- "values": {
3106
- "PREVIOUS": null,
3107
- "COLLECTED": null,
3108
- "FORCED": null,
3109
- "EDITED": null,
3110
- "INPUTED": null
3111
- }
3112
- },
3113
-
3114
- {
3115
- "variableType": "COLLECTED",
3116
- "name": "DATEYYYY",
3117
- "componentRef": "k5nw1fir",
3118
- "values": {
3119
- "PREVIOUS": null,
3120
- "COLLECTED": null,
3121
- "FORCED": null,
3122
- "EDITED": null,
3123
- "INPUTED": null
3124
- }
3125
- },
3126
-
3127
- {
3128
- "variableType": "COLLECTED",
3129
- "name": "DURATIONH",
3130
- "componentRef": "k5nw0w05",
3131
- "values": {
3132
- "PREVIOUS": null,
3133
- "COLLECTED": null,
3134
- "FORCED": null,
3135
- "EDITED": null,
3136
- "INPUTED": null
3137
- }
3138
- },
3139
-
3140
- {
3141
- "variableType": "COLLECTED",
3142
- "name": "DURATIOND",
3143
- "componentRef": "k5nvu98z",
3144
- "values": {
3145
- "PREVIOUS": null,
3146
- "COLLECTED": null,
3147
- "FORCED": null,
3148
- "EDITED": null,
3149
- "INPUTED": null
3150
- }
3151
- },
3152
-
3153
- {
3154
- "variableType": "COLLECTED",
3155
- "name": "DURATIONM",
3156
- "componentRef": "k5nw8ei1",
3157
- "values": {
3158
- "PREVIOUS": null,
3159
- "COLLECTED": null,
3160
- "FORCED": null,
3161
- "EDITED": null,
3162
- "INPUTED": null
3163
- }
3164
- },
3165
-
3166
- {
3167
- "variableType": "COLLECTED",
3168
- "name": "DURATIONY",
3169
- "componentRef": "k5nw9dk4",
3170
- "values": {
3171
- "PREVIOUS": null,
3172
- "COLLECTED": null,
3173
- "FORCED": null,
3174
- "EDITED": null,
3175
- "INPUTED": null
3176
- }
3177
- },
3178
-
3179
- {
3180
- "variableType": "COLLECTED",
3181
- "name": "AUDIENCE_SHARE",
3182
- "componentRef": "j6z06z1e",
3183
- "values": {
3184
- "PREVIOUS": null,
3185
- "COLLECTED": null,
3186
- "FORCED": null,
3187
- "EDITED": null,
3188
- "INPUTED": null
3189
- }
3190
- },
3191
-
3192
- {
3193
- "variableType": "COLLECTED",
3194
- "name": "CITY",
3195
- "componentRef": "j3343clt",
3196
- "values": {
3197
- "PREVIOUS": null,
3198
- "COLLECTED": null,
3199
- "FORCED": null,
3200
- "EDITED": null,
3201
- "INPUTED": null
3202
- }
3203
- },
3204
-
3205
- {
3206
- "variableType": "COLLECTED",
3207
- "name": "MAYOR",
3208
- "componentRef": "j6qdfhvw",
3209
- "values": {
3210
- "PREVIOUS": null,
3211
- "COLLECTED": null,
3212
- "FORCED": null,
3213
- "EDITED": null,
3214
- "INPUTED": null
3215
- }
3216
- },
3217
-
3218
- {
3219
- "variableType": "COLLECTED",
3220
- "name": "STATE",
3221
- "componentRef": "j4nw5cqz",
3222
- "values": {
3223
- "PREVIOUS": null,
3224
- "COLLECTED": null,
3225
- "FORCED": null,
3226
- "EDITED": null,
3227
- "INPUTED": null
3228
- }
3229
- },
3230
-
3231
- {
3232
- "variableType": "COLLECTED",
3233
- "name": "PET1",
3234
- "componentRef": "j334akov",
3235
- "values": {
3236
- "PREVIOUS": null,
3237
- "COLLECTED": null,
3238
- "FORCED": null,
3239
- "EDITED": null,
3240
- "INPUTED": null
3241
- }
3242
- },
3243
-
3244
- {
3245
- "variableType": "COLLECTED",
3246
- "name": "PET2",
3247
- "componentRef": "j334akov",
3248
- "values": {
3249
- "PREVIOUS": null,
3250
- "COLLECTED": null,
3251
- "FORCED": null,
3252
- "EDITED": null,
3253
- "INPUTED": null
3254
- }
3255
- },
3256
-
3257
- {
3258
- "variableType": "COLLECTED",
3259
- "name": "PET3",
3260
- "componentRef": "j334akov",
3261
- "values": {
3262
- "PREVIOUS": null,
3263
- "COLLECTED": null,
3264
- "FORCED": null,
3265
- "EDITED": null,
3266
- "INPUTED": null
3267
- }
3268
- },
3269
-
3270
- {
3271
- "variableType": "COLLECTED",
3272
- "name": "PET4",
3273
- "componentRef": "j334akov",
3274
- "values": {
3275
- "PREVIOUS": null,
3276
- "COLLECTED": null,
3277
- "FORCED": null,
3278
- "EDITED": null,
3279
- "INPUTED": null
3280
- }
3281
- },
3282
-
3283
- {
3284
- "variableType": "COLLECTED",
3285
- "name": "ICE_FLAVOUR1",
3286
- "componentRef": "j6p29i81",
3287
- "values": {
3288
- "PREVIOUS": null,
3289
- "COLLECTED": null,
3290
- "FORCED": null,
3291
- "EDITED": null,
3292
- "INPUTED": null
3293
- }
3294
- },
3295
-
3296
- {
3297
- "variableType": "COLLECTED",
3298
- "name": "ICE_FLAVOUR2",
3299
- "componentRef": "j6p29i81",
3300
- "values": {
3301
- "PREVIOUS": null,
3302
- "COLLECTED": null,
3303
- "FORCED": null,
3304
- "EDITED": null,
3305
- "INPUTED": null
3306
- }
3307
- },
3308
-
3309
- {
3310
- "variableType": "COLLECTED",
3311
- "name": "ICE_FLAVOUR3",
3312
- "componentRef": "j6p29i81",
3313
- "values": {
3314
- "PREVIOUS": null,
3315
- "COLLECTED": null,
3316
- "FORCED": null,
3317
- "EDITED": null,
3318
- "INPUTED": null
3319
- }
3320
- },
3321
-
3322
- {
3323
- "variableType": "COLLECTED",
3324
- "name": "ICE_FLAVOUR4",
3325
- "componentRef": "j6p29i81",
3326
- "values": {
3327
- "PREVIOUS": null,
3328
- "COLLECTED": null,
3329
- "FORCED": null,
3330
- "EDITED": null,
3331
- "INPUTED": null
3332
- }
3333
- },
3334
-
3335
- {
3336
- "variableType": "COLLECTED",
3337
- "name": "NUCLEAR_CHARACTER1",
3338
- "componentRef": "j6qefnga",
3339
- "values": {
3340
- "PREVIOUS": null,
3341
- "COLLECTED": null,
3342
- "FORCED": null,
3343
- "EDITED": null,
3344
- "INPUTED": null
3345
- }
3346
- },
3347
-
3348
- {
3349
- "variableType": "COLLECTED",
3350
- "name": "NUCLEAR_CHARACTER2",
3351
- "componentRef": "j6qefnga",
3352
- "values": {
3353
- "PREVIOUS": null,
3354
- "COLLECTED": null,
3355
- "FORCED": null,
3356
- "EDITED": null,
3357
- "INPUTED": null
3358
- }
3359
- },
3360
-
3361
- {
3362
- "variableType": "COLLECTED",
3363
- "name": "NUCLEAR_CHARACTER3",
3364
- "componentRef": "j6qefnga",
3365
- "values": {
3366
- "PREVIOUS": null,
3367
- "COLLECTED": null,
3368
- "FORCED": null,
3369
- "EDITED": null,
3370
- "INPUTED": null
3371
- }
3372
- },
3373
-
3374
- {
3375
- "variableType": "COLLECTED",
3376
- "name": "NUCLEAR_CHARACTER4",
3377
- "componentRef": "j6qefnga",
3378
- "values": {
3379
- "PREVIOUS": null,
3380
- "COLLECTED": null,
3381
- "FORCED": null,
3382
- "EDITED": null,
3383
- "INPUTED": null
3384
- }
3385
- },
3386
-
3387
- {
3388
- "variableType": "COLLECTED",
3389
- "name": "BIRTH_CHARACTER1",
3390
- "componentRef": "j6yzoc6g",
3391
- "values": {
3392
- "PREVIOUS": null,
3393
- "COLLECTED": null,
3394
- "FORCED": null,
3395
- "EDITED": null,
3396
- "INPUTED": null
3397
- }
3398
- },
3399
-
3400
- {
3401
- "variableType": "COLLECTED",
3402
- "name": "BIRTH_CHARACTER2",
3403
- "componentRef": "j6yzoc6g",
3404
- "values": {
3405
- "PREVIOUS": null,
3406
- "COLLECTED": null,
3407
- "FORCED": null,
3408
- "EDITED": null,
3409
- "INPUTED": null
3410
- }
3411
- },
3412
-
3413
- {
3414
- "variableType": "COLLECTED",
3415
- "name": "BIRTH_CHARACTER3",
3416
- "componentRef": "j6yzoc6g",
3417
- "values": {
3418
- "PREVIOUS": null,
3419
- "COLLECTED": null,
3420
- "FORCED": null,
3421
- "EDITED": null,
3422
- "INPUTED": null
3423
- }
3424
- },
3425
-
3426
- {
3427
- "variableType": "COLLECTED",
3428
- "name": "BIRTH_CHARACTER4",
3429
- "componentRef": "j6yzoc6g",
3430
- "values": {
3431
- "PREVIOUS": null,
3432
- "COLLECTED": null,
3433
- "FORCED": null,
3434
- "EDITED": null,
3435
- "INPUTED": null
3436
- }
3437
- },
3438
-
3439
- {
3440
- "variableType": "COLLECTED",
3441
- "name": "BIRTH_CHARACTER5",
3442
- "componentRef": "j6yzoc6g",
3443
- "values": {
3444
- "PREVIOUS": null,
3445
- "COLLECTED": null,
3446
- "FORCED": null,
3447
- "EDITED": null,
3448
- "INPUTED": null
3449
- }
3450
- },
3451
-
3452
- {
3453
- "variableType": "COLLECTED",
3454
- "name": "PERCENTAGE_EXPENSES11",
3455
- "componentRef": "j4nwc63q",
3456
- "values": {
3457
- "PREVIOUS": null,
3458
- "COLLECTED": null,
3459
- "FORCED": null,
3460
- "EDITED": null,
3461
- "INPUTED": null
3462
- }
3463
- },
3464
-
3465
- {
3466
- "variableType": "COLLECTED",
3467
- "name": "PERCENTAGE_EXPENSES21",
3468
- "componentRef": "j4nwc63q",
3469
- "values": {
3470
- "PREVIOUS": null,
3471
- "COLLECTED": null,
3472
- "FORCED": null,
3473
- "EDITED": null,
3474
- "INPUTED": null
3475
- }
3476
- },
3477
-
3478
- {
3479
- "variableType": "COLLECTED",
3480
- "name": "PERCENTAGE_EXPENSES31",
3481
- "componentRef": "j4nwc63q",
3482
- "values": {
3483
- "PREVIOUS": null,
3484
- "COLLECTED": null,
3485
- "FORCED": null,
3486
- "EDITED": null,
3487
- "INPUTED": null
3488
- }
3489
- },
3490
-
3491
- {
3492
- "variableType": "COLLECTED",
3493
- "name": "PERCENTAGE_EXPENSES41",
3494
- "componentRef": "j4nwc63q",
3495
- "values": {
3496
- "PREVIOUS": null,
3497
- "COLLECTED": null,
3498
- "FORCED": null,
3499
- "EDITED": null,
3500
- "INPUTED": null
3501
- }
3502
- },
3503
-
3504
- {
3505
- "variableType": "COLLECTED",
3506
- "name": "PERCENTAGE_EXPENSES51",
3507
- "componentRef": "j4nwc63q",
3508
- "values": {
3509
- "PREVIOUS": null,
3510
- "COLLECTED": null,
3511
- "FORCED": null,
3512
- "EDITED": null,
3513
- "INPUTED": null
3514
- }
3515
- },
3516
-
3517
- {
3518
- "variableType": "COLLECTED",
3519
- "name": "PERCENTAGE_EXPENSES61",
3520
- "componentRef": "j4nwc63q",
3521
- "values": {
3522
- "PREVIOUS": null,
3523
- "COLLECTED": null,
3524
- "FORCED": null,
3525
- "EDITED": null,
3526
- "INPUTED": null
3527
- }
3528
- },
3529
-
3530
- {
3531
- "variableType": "COLLECTED",
3532
- "name": "PERCENTAGE_EXPENSES71",
3533
- "componentRef": "j4nwc63q",
3534
- "values": {
3535
- "PREVIOUS": null,
3536
- "COLLECTED": null,
3537
- "FORCED": null,
3538
- "EDITED": null,
3539
- "INPUTED": null
3540
- }
3541
- },
3542
-
3543
- {
3544
- "variableType": "COLLECTED",
3545
- "name": "LAST_FOOD_SHOPPING11",
3546
- "componentRef": "k9cg2q5t",
3547
- "values": {
3548
- "PREVIOUS": null,
3549
- "COLLECTED": null,
3550
- "FORCED": null,
3551
- "EDITED": null,
3552
- "INPUTED": null
3553
- }
3554
- },
3555
-
3556
- {
3557
- "variableType": "COLLECTED",
3558
- "name": "LAST_FOOD_SHOPPING21",
3559
- "componentRef": "k9cg2q5t",
3560
- "values": {
3561
- "PREVIOUS": null,
3562
- "COLLECTED": null,
3563
- "FORCED": null,
3564
- "EDITED": null,
3565
- "INPUTED": null
3566
- }
3567
- },
3568
-
3569
- {
3570
- "variableType": "COLLECTED",
3571
- "name": "LAST_FOOD_SHOPPING31",
3572
- "componentRef": "k9cg2q5t",
3573
- "values": {
3574
- "PREVIOUS": null,
3575
- "COLLECTED": null,
3576
- "FORCED": null,
3577
- "EDITED": null,
3578
- "INPUTED": null
3579
- }
3580
- },
3581
-
3582
- {
3583
- "variableType": "COLLECTED",
3584
- "name": "LAST_FOOD_SHOPPING41",
3585
- "componentRef": "k9cg2q5t",
3586
- "values": {
3587
- "PREVIOUS": null,
3588
- "COLLECTED": null,
3589
- "FORCED": null,
3590
- "EDITED": null,
3591
- "INPUTED": null
3592
- }
3593
- },
3594
-
3595
- {
3596
- "variableType": "COLLECTED",
3597
- "name": "LAST_FOOD_SHOPPING51",
3598
- "componentRef": "k9cg2q5t",
3599
- "values": {
3600
- "PREVIOUS": null,
3601
- "COLLECTED": null,
3602
- "FORCED": null,
3603
- "EDITED": null,
3604
- "INPUTED": null
3605
- }
3606
- },
3607
-
3608
- {
3609
- "variableType": "COLLECTED",
3610
- "name": "LAST_FOOD_SHOPPING61",
3611
- "componentRef": "k9cg2q5t",
3612
- "values": {
3613
- "PREVIOUS": null,
3614
- "COLLECTED": null,
3615
- "FORCED": null,
3616
- "EDITED": null,
3617
- "INPUTED": null
3618
- }
3619
- },
3620
-
3621
- {
3622
- "variableType": "COLLECTED",
3623
- "name": "LAST_FOOD_SHOPPING71",
3624
- "componentRef": "k9cg2q5t",
3625
- "values": {
3626
- "PREVIOUS": null,
3627
- "COLLECTED": null,
3628
- "FORCED": null,
3629
- "EDITED": null,
3630
- "INPUTED": null
3631
- }
3632
- },
3633
-
3634
- {
3635
- "variableType": "COLLECTED",
3636
- "name": "LAST_FOOD_SHOPPING81",
3637
- "componentRef": "k9cg2q5t",
3638
- "values": {
3639
- "PREVIOUS": null,
3640
- "COLLECTED": null,
3641
- "FORCED": null,
3642
- "EDITED": null,
3643
- "INPUTED": null
3644
- }
3645
- },
3646
-
3647
- {
3648
- "variableType": "COLLECTED",
3649
- "name": "CLOWNING11",
3650
- "componentRef": "kbkjvgel",
3651
- "values": {
3652
- "PREVIOUS": null,
3653
- "COLLECTED": null,
3654
- "FORCED": null,
3655
- "EDITED": null,
3656
- "INPUTED": null
3657
- }
3658
- },
3659
-
3660
- {
3661
- "variableType": "COLLECTED",
3662
- "name": "CLOWNING12",
3663
- "componentRef": "kbkjvgel",
3664
- "values": {
3665
- "PREVIOUS": null,
3666
- "COLLECTED": null,
3667
- "FORCED": null,
3668
- "EDITED": null,
3669
- "INPUTED": null
3670
- }
3671
- },
3672
-
3673
- {
3674
- "variableType": "COLLECTED",
3675
- "name": "CLOWNING21",
3676
- "componentRef": "kbkjvgel",
3677
- "values": {
3678
- "PREVIOUS": null,
3679
- "COLLECTED": null,
3680
- "FORCED": null,
3681
- "EDITED": null,
3682
- "INPUTED": null
3683
- }
3684
- },
3685
-
3686
- {
3687
- "variableType": "COLLECTED",
3688
- "name": "CLOWNING22",
3689
- "componentRef": "kbkjvgel",
3690
- "values": {
3691
- "PREVIOUS": null,
3692
- "COLLECTED": null,
3693
- "FORCED": null,
3694
- "EDITED": null,
3695
- "INPUTED": null
3696
- }
3697
- },
3698
-
3699
- {
3700
- "variableType": "COLLECTED",
3701
- "name": "CLOWNING31",
3702
- "componentRef": "kbkjvgel",
3703
- "values": {
3704
- "PREVIOUS": null,
3705
- "COLLECTED": null,
3706
- "FORCED": null,
3707
- "EDITED": null,
3708
- "INPUTED": null
3709
- }
3710
- },
3711
-
3712
- {
3713
- "variableType": "COLLECTED",
3714
- "name": "CLOWNING32",
3715
- "componentRef": "kbkjvgel",
3716
- "values": {
3717
- "PREVIOUS": null,
3718
- "COLLECTED": null,
3719
- "FORCED": null,
3720
- "EDITED": null,
3721
- "INPUTED": null
3722
- }
3723
- },
3724
-
3725
- {
3726
- "variableType": "COLLECTED",
3727
- "name": "CLOWNING41",
3728
- "componentRef": "kbkjvgel",
3729
- "values": {
3730
- "PREVIOUS": null,
3731
- "COLLECTED": null,
3732
- "FORCED": null,
3733
- "EDITED": null,
3734
- "INPUTED": null
3735
- }
3736
- },
3737
-
3738
- {
3739
- "variableType": "COLLECTED",
3740
- "name": "CLOWNING42",
3741
- "componentRef": "kbkjvgel",
3742
- "values": {
3743
- "PREVIOUS": null,
3744
- "COLLECTED": null,
3745
- "FORCED": null,
3746
- "EDITED": null,
3747
- "INPUTED": null
3748
- }
3749
- },
3750
-
3751
- {
3752
- "variableType": "COLLECTED",
3753
- "name": "TRAVEL11",
3754
- "componentRef": "j6p2lwuj",
3755
- "values": {
3756
- "PREVIOUS": null,
3757
- "COLLECTED": null,
3758
- "FORCED": null,
3759
- "EDITED": null,
3760
- "INPUTED": null
3761
- }
3762
- },
3763
-
3764
- {
3765
- "variableType": "COLLECTED",
3766
- "name": "TRAVEL12",
3767
- "componentRef": "j6p2lwuj",
3768
- "values": {
3769
- "PREVIOUS": null,
3770
- "COLLECTED": null,
3771
- "FORCED": null,
3772
- "EDITED": null,
3773
- "INPUTED": null
3774
- }
3775
- },
3776
-
3777
- {
3778
- "variableType": "COLLECTED",
3779
- "name": "TRAVEL13",
3780
- "componentRef": "j6p2lwuj",
3781
- "values": {
3782
- "PREVIOUS": null,
3783
- "COLLECTED": null,
3784
- "FORCED": null,
3785
- "EDITED": null,
3786
- "INPUTED": null
3787
- }
3788
- },
3789
-
3790
- {
3791
- "variableType": "COLLECTED",
3792
- "name": "TRAVEL14",
3793
- "componentRef": "j6p2lwuj",
3794
- "values": {
3795
- "PREVIOUS": null,
3796
- "COLLECTED": null,
3797
- "FORCED": null,
3798
- "EDITED": null,
3799
- "INPUTED": null
3800
- }
3801
- },
3802
-
3803
- {
3804
- "variableType": "COLLECTED",
3805
- "name": "TRAVEL15",
3806
- "componentRef": "j6p2lwuj",
3807
- "values": {
3808
- "PREVIOUS": null,
3809
- "COLLECTED": null,
3810
- "FORCED": null,
3811
- "EDITED": null,
3812
- "INPUTED": null
3813
- }
3814
- },
3815
-
3816
- {
3817
- "variableType": "COLLECTED",
3818
- "name": "TRAVEL16",
3819
- "componentRef": "j6p2lwuj",
3820
- "values": {
3821
- "PREVIOUS": null,
3822
- "COLLECTED": null,
3823
- "FORCED": null,
3824
- "EDITED": null,
3825
- "INPUTED": null
3826
- }
3827
- },
3828
-
3829
- {
3830
- "variableType": "COLLECTED",
3831
- "name": "TRAVEL21",
3832
- "componentRef": "j6p2lwuj",
3833
- "values": {
3834
- "PREVIOUS": null,
3835
- "COLLECTED": null,
3836
- "FORCED": null,
3837
- "EDITED": null,
3838
- "INPUTED": null
3839
- }
3840
- },
3841
-
3842
- {
3843
- "variableType": "COLLECTED",
3844
- "name": "TRAVEL22",
3845
- "componentRef": "j6p2lwuj",
3846
- "values": {
3847
- "PREVIOUS": null,
3848
- "COLLECTED": null,
3849
- "FORCED": null,
3850
- "EDITED": null,
3851
- "INPUTED": null
3852
- }
3853
- },
3854
-
3855
- {
3856
- "variableType": "COLLECTED",
3857
- "name": "TRAVEL23",
3858
- "componentRef": "j6p2lwuj",
3859
- "values": {
3860
- "PREVIOUS": null,
3861
- "COLLECTED": null,
3862
- "FORCED": null,
3863
- "EDITED": null,
3864
- "INPUTED": null
3865
- }
3866
- },
3867
-
3868
- {
3869
- "variableType": "COLLECTED",
3870
- "name": "TRAVEL24",
3871
- "componentRef": "j6p2lwuj",
3872
- "values": {
3873
- "PREVIOUS": null,
3874
- "COLLECTED": null,
3875
- "FORCED": null,
3876
- "EDITED": null,
3877
- "INPUTED": null
3878
- }
3879
- },
3880
-
3881
- {
3882
- "variableType": "COLLECTED",
3883
- "name": "TRAVEL25",
3884
- "componentRef": "j6p2lwuj",
3885
- "values": {
3886
- "PREVIOUS": null,
3887
- "COLLECTED": null,
3888
- "FORCED": null,
3889
- "EDITED": null,
3890
- "INPUTED": null
3891
- }
3892
- },
3893
-
3894
- {
3895
- "variableType": "COLLECTED",
3896
- "name": "TRAVEL26",
3897
- "componentRef": "j6p2lwuj",
3898
- "values": {
3899
- "PREVIOUS": null,
3900
- "COLLECTED": null,
3901
- "FORCED": null,
3902
- "EDITED": null,
3903
- "INPUTED": null
3904
- }
3905
- },
3906
-
3907
- {
3908
- "variableType": "COLLECTED",
3909
- "name": "TRAVEL31",
3910
- "componentRef": "j6p2lwuj",
3911
- "values": {
3912
- "PREVIOUS": null,
3913
- "COLLECTED": null,
3914
- "FORCED": null,
3915
- "EDITED": null,
3916
- "INPUTED": null
3917
- }
3918
- },
3919
-
3920
- {
3921
- "variableType": "COLLECTED",
3922
- "name": "TRAVEL32",
3923
- "componentRef": "j6p2lwuj",
3924
- "values": {
3925
- "PREVIOUS": null,
3926
- "COLLECTED": null,
3927
- "FORCED": null,
3928
- "EDITED": null,
3929
- "INPUTED": null
3930
- }
3931
- },
3932
-
3933
- {
3934
- "variableType": "COLLECTED",
3935
- "name": "TRAVEL33",
3936
- "componentRef": "j6p2lwuj",
3937
- "values": {
3938
- "PREVIOUS": null,
3939
- "COLLECTED": null,
3940
- "FORCED": null,
3941
- "EDITED": null,
3942
- "INPUTED": null
3943
- }
3944
- },
3945
-
3946
- {
3947
- "variableType": "COLLECTED",
3948
- "name": "TRAVEL34",
3949
- "componentRef": "j6p2lwuj",
3950
- "values": {
3951
- "PREVIOUS": null,
3952
- "COLLECTED": null,
3953
- "FORCED": null,
3954
- "EDITED": null,
3955
- "INPUTED": null
3956
- }
3957
- },
3958
-
3959
- {
3960
- "variableType": "COLLECTED",
3961
- "name": "TRAVEL35",
3962
- "componentRef": "j6p2lwuj",
3963
- "values": {
3964
- "PREVIOUS": null,
3965
- "COLLECTED": null,
3966
- "FORCED": null,
3967
- "EDITED": null,
3968
- "INPUTED": null
3969
- }
3970
- },
3971
-
3972
- {
3973
- "variableType": "COLLECTED",
3974
- "name": "TRAVEL36",
3975
- "componentRef": "j6p2lwuj",
3976
- "values": {
3977
- "PREVIOUS": null,
3978
- "COLLECTED": null,
3979
- "FORCED": null,
3980
- "EDITED": null,
3981
- "INPUTED": null
3982
- }
3983
- },
3984
-
3985
- {
3986
- "variableType": "COLLECTED",
3987
- "name": "TRAVEL41",
3988
- "componentRef": "j6p2lwuj",
3989
- "values": {
3990
- "PREVIOUS": null,
3991
- "COLLECTED": null,
3992
- "FORCED": null,
3993
- "EDITED": null,
3994
- "INPUTED": null
3995
- }
3996
- },
3997
-
3998
- {
3999
- "variableType": "COLLECTED",
4000
- "name": "TRAVEL42",
4001
- "componentRef": "j6p2lwuj",
4002
- "values": {
4003
- "PREVIOUS": null,
4004
- "COLLECTED": null,
4005
- "FORCED": null,
4006
- "EDITED": null,
4007
- "INPUTED": null
4008
- }
4009
- },
4010
-
4011
- {
4012
- "variableType": "COLLECTED",
4013
- "name": "TRAVEL43",
4014
- "componentRef": "j6p2lwuj",
4015
- "values": {
4016
- "PREVIOUS": null,
4017
- "COLLECTED": null,
4018
- "FORCED": null,
4019
- "EDITED": null,
4020
- "INPUTED": null
4021
- }
4022
- },
4023
-
4024
- {
4025
- "variableType": "COLLECTED",
4026
- "name": "TRAVEL44",
4027
- "componentRef": "j6p2lwuj",
4028
- "values": {
4029
- "PREVIOUS": null,
4030
- "COLLECTED": null,
4031
- "FORCED": null,
4032
- "EDITED": null,
4033
- "INPUTED": null
4034
- }
4035
- },
4036
-
4037
- {
4038
- "variableType": "COLLECTED",
4039
- "name": "TRAVEL45",
4040
- "componentRef": "j6p2lwuj",
4041
- "values": {
4042
- "PREVIOUS": null,
4043
- "COLLECTED": null,
4044
- "FORCED": null,
4045
- "EDITED": null,
4046
- "INPUTED": null
4047
- }
4048
- },
4049
-
4050
- {
4051
- "variableType": "COLLECTED",
4052
- "name": "TRAVEL46",
4053
- "componentRef": "j6p2lwuj",
4054
- "values": {
4055
- "PREVIOUS": null,
4056
- "COLLECTED": null,
4057
- "FORCED": null,
4058
- "EDITED": null,
4059
- "INPUTED": null
4060
- }
4061
- },
4062
-
4063
- {
4064
- "variableType": "COLLECTED",
4065
- "name": "FAVOURITE_CHAR1",
4066
- "componentRef": "j6qg8rc6",
4067
- "values": {
4068
- "PREVIOUS": null,
4069
- "COLLECTED": null,
4070
- "FORCED": null,
4071
- "EDITED": null,
4072
- "INPUTED": null
4073
- }
4074
- },
4075
-
4076
- {
4077
- "variableType": "COLLECTED",
4078
- "name": "FAVOURITE_CHAR2",
4079
- "componentRef": "j6qg8rc6",
4080
- "values": {
4081
- "PREVIOUS": null,
4082
- "COLLECTED": null,
4083
- "FORCED": null,
4084
- "EDITED": null,
4085
- "INPUTED": null
4086
- }
4087
- },
4088
-
4089
- {
4090
- "variableType": "COLLECTED",
4091
- "name": "FAVOURITE_CHAR3",
4092
- "componentRef": "j6qg8rc6",
4093
- "values": {
4094
- "PREVIOUS": null,
4095
- "COLLECTED": null,
4096
- "FORCED": null,
4097
- "EDITED": null,
4098
- "INPUTED": null
4099
- }
4100
- },
4101
-
4102
- {
4103
- "variableType": "COLLECTED",
4104
- "name": "FEELCHAREV1",
4105
- "componentRef": "jvxux0mi",
4106
- "values": {
4107
- "PREVIOUS": null,
4108
- "COLLECTED": null,
4109
- "FORCED": null,
4110
- "EDITED": null,
4111
- "INPUTED": null
4112
- }
4113
- },
4114
-
4115
- {
4116
- "variableType": "COLLECTED",
4117
- "name": "FEELCHAREV2",
4118
- "componentRef": "jvxux0mi",
4119
- "values": {
4120
- "PREVIOUS": null,
4121
- "COLLECTED": null,
4122
- "FORCED": null,
4123
- "EDITED": null,
4124
- "INPUTED": null
4125
- }
4126
- },
4127
-
4128
- {
4129
- "variableType": "COLLECTED",
4130
- "name": "FEELCHAREV3",
4131
- "componentRef": "jvxux0mi",
4132
- "values": {
4133
- "PREVIOUS": null,
4134
- "COLLECTED": null,
4135
- "FORCED": null,
4136
- "EDITED": null,
4137
- "INPUTED": null
4138
- }
4139
- },
4140
-
4141
- {
4142
- "variableType": "COLLECTED",
4143
- "name": "FEELCHAREV4",
4144
- "componentRef": "jvxux0mi",
4145
- "values": {
4146
- "PREVIOUS": null,
4147
- "COLLECTED": null,
4148
- "FORCED": null,
4149
- "EDITED": null,
4150
- "INPUTED": null
4151
- }
4152
- },
4153
-
4154
- {
4155
- "variableType": "COLLECTED",
4156
- "name": "LEAVDURATION11",
4157
- "componentRef": "jvxwy68n",
4158
- "values": {
4159
- "PREVIOUS": null,
4160
- "COLLECTED": null,
4161
- "FORCED": null,
4162
- "EDITED": null,
4163
- "INPUTED": null
4164
- }
4165
- },
4166
-
4167
- {
4168
- "variableType": "COLLECTED",
4169
- "name": "LEAVDURATION12",
4170
- "componentRef": "jvxwy68n",
4171
- "values": {
4172
- "PREVIOUS": null,
4173
- "COLLECTED": null,
4174
- "FORCED": null,
4175
- "EDITED": null,
4176
- "INPUTED": null
4177
- }
4178
- },
4179
-
4180
- {
4181
- "variableType": "COLLECTED",
4182
- "name": "LEAVDURATION21",
4183
- "componentRef": "jvxwy68n",
4184
- "values": {
4185
- "PREVIOUS": null,
4186
- "COLLECTED": null,
4187
- "FORCED": null,
4188
- "EDITED": null,
4189
- "INPUTED": null
4190
- }
4191
- },
4192
-
4193
- {
4194
- "variableType": "COLLECTED",
4195
- "name": "LEAVDURATION22",
4196
- "componentRef": "jvxwy68n",
4197
- "values": {
4198
- "PREVIOUS": null,
4199
- "COLLECTED": null,
4200
- "FORCED": null,
4201
- "EDITED": null,
4202
- "INPUTED": null
4203
- }
4204
- },
4205
-
4206
- {
4207
- "variableType": "COLLECTED",
4208
- "name": "LEAVDURATION31",
4209
- "componentRef": "jvxwy68n",
4210
- "values": {
4211
- "PREVIOUS": null,
4212
- "COLLECTED": null,
4213
- "FORCED": null,
4214
- "EDITED": null,
4215
- "INPUTED": null
4216
- }
4217
- },
4218
-
4219
- {
4220
- "variableType": "COLLECTED",
4221
- "name": "LEAVDURATION32",
4222
- "componentRef": "jvxwy68n",
4223
- "values": {
4224
- "PREVIOUS": null,
4225
- "COLLECTED": null,
4226
- "FORCED": null,
4227
- "EDITED": null,
4228
- "INPUTED": null
4229
- }
4230
- },
4231
-
4232
- {
4233
- "variableType": "COLLECTED",
4234
- "name": "LEAVDURATION41",
4235
- "componentRef": "jvxwy68n",
4236
- "values": {
4237
- "PREVIOUS": null,
4238
- "COLLECTED": null,
4239
- "FORCED": null,
4240
- "EDITED": null,
4241
- "INPUTED": null
4242
- }
4243
- },
4244
-
4245
- {
4246
- "variableType": "COLLECTED",
4247
- "name": "LEAVDURATION42",
4248
- "componentRef": "jvxwy68n",
4249
- "values": {
4250
- "PREVIOUS": null,
4251
- "COLLECTED": null,
4252
- "FORCED": null,
4253
- "EDITED": null,
4254
- "INPUTED": null
4255
- }
4256
- },
4257
-
4258
- {
4259
- "variableType": "COLLECTED",
4260
- "name": "LEAVDURATION51",
4261
- "componentRef": "jvxwy68n",
4262
- "values": {
4263
- "PREVIOUS": null,
4264
- "COLLECTED": null,
4265
- "FORCED": null,
4266
- "EDITED": null,
4267
- "INPUTED": null
4268
- }
4269
- },
4270
-
4271
- {
4272
- "variableType": "COLLECTED",
4273
- "name": "LEAVDURATION52",
4274
- "componentRef": "jvxwy68n",
4275
- "values": {
4276
- "PREVIOUS": null,
4277
- "COLLECTED": null,
4278
- "FORCED": null,
4279
- "EDITED": null,
4280
- "INPUTED": null
4281
- }
4282
- },
4283
-
4284
- {
4285
- "variableType": "COLLECTED",
4286
- "name": "NB_CHAR",
4287
- "componentRef": "kiq612ky",
4288
- "values": {
4289
- "PREVIOUS": null,
4290
- "COLLECTED": null,
4291
- "FORCED": null,
4292
- "EDITED": null,
4293
- "INPUTED": null
4294
- }
4295
- },
4296
-
4297
- {
4298
- "variableType": "COLLECTED",
4299
- "name": "NAME_CHAR",
4300
- "componentRef": "kiq7bjam",
4301
- "values": {
4302
- "PREVIOUS": [null],
4303
- "COLLECTED": [null],
4304
- "FORCED": [null],
4305
- "EDITED": [null],
4306
- "INPUTED": [null]
4307
- }
4308
- },
4309
-
4310
- {
4311
- "variableType": "COLLECTED",
4312
- "name": "AGE_CHAR",
4313
- "componentRef": "kiq7bjam",
4314
- "values": {
4315
- "PREVIOUS": [null],
4316
- "COLLECTED": [null],
4317
- "FORCED": [null],
4318
- "EDITED": [null],
4319
- "INPUTED": [null]
4320
- }
4321
- },
4322
-
4323
- {
4324
- "variableType": "COLLECTED",
4325
- "name": "FAVCHAR",
4326
- "componentRef": "kiq7cbgo",
4327
- "values": {
4328
- "PREVIOUS": [null],
4329
- "COLLECTED": [null],
4330
- "FORCED": [null],
4331
- "EDITED": [null],
4332
- "INPUTED": [null]
4333
- }
4334
- },
4335
-
4336
- {
4337
- "variableType": "COLLECTED",
4338
- "name": "MEMORY_CHAR",
4339
- "componentRef": "kiq7cbgo",
4340
- "values": {
4341
- "PREVIOUS": [null],
4342
- "COLLECTED": [null],
4343
- "FORCED": [null],
4344
- "EDITED": [null],
4345
- "INPUTED": [null]
4346
- }
4347
- },
4348
-
4349
- {
4350
- "variableType": "COLLECTED",
4351
- "name": "SURVEY_COMMENT",
4352
- "componentRef": "j6z0z3us",
4353
- "values": {
4354
- "PREVIOUS": null,
4355
- "COLLECTED": null,
4356
- "FORCED": null,
4357
- "EDITED": null,
4358
- "INPUTED": null
4359
- }
4360
- }
4361
- ]
4362
- }