@inseefr/lunatic 2.3.1 → 2.4.1

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