@inseefr/lunatic 2.5.2-rc1-beta → 2.6.0-rc.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 (436) hide show
  1. package/README.fr.md +186 -0
  2. package/README.md +111 -94
  3. package/lib/components/button/lunatic-button.js +10 -13
  4. package/lib/components/checkbox/checkbox-group/html/checkbox-group.js +0 -1
  5. package/lib/components/commons/components/combo-box/combo-box-content.js +2 -1
  6. package/lib/components/commons/components/combo-box/combo-box.js +94 -66
  7. package/lib/components/commons/components/combo-box/combo-box.stories.js +69 -8
  8. package/lib/components/commons/components/combo-box/panel/panel.js +0 -1
  9. package/lib/components/commons/components/combo-box/selection/LabelOrInput.js +4 -1
  10. package/lib/components/commons/components/combo-box/selection/LabelOrInput.spec.js +2 -4
  11. package/lib/components/commons/components/combo-box/selection/combo-box-label-selection.js +5 -2
  12. package/lib/components/commons/components/combo-box/selection/label-selection.js +4 -2
  13. package/lib/components/commons/components/combo-box/selection/selection.js +2 -0
  14. package/lib/components/commons/components/fab/fab.js +0 -1
  15. package/lib/components/commons/components/fieldset.js +0 -1
  16. package/lib/components/commons/components/lunatic-component-with-label.js +1 -3
  17. package/lib/components/commons/components/md-label/md-label.js +5 -1
  18. package/lib/components/commons/components/md-label/md-label.spec.js +15 -0
  19. package/lib/components/commons/components/missing/missing.js +1 -3
  20. package/lib/components/commons/components/variable-status/variable-status.js +2 -3
  21. package/lib/components/commons/create-customizable-field.js +1 -0
  22. package/lib/components/commons/icons/closed-icon.js +0 -2
  23. package/lib/components/commons/icons/cross-icon.js +0 -2
  24. package/lib/components/commons/index.js +0 -7
  25. package/lib/components/component-set/html/__snapshots__/component-set.spec.tsx.snap +124 -0
  26. package/lib/components/component-set/html/{legend/legend.js → component-set-legend.js} +4 -6
  27. package/lib/components/component-set/html/component-set-wrapper.js +16 -0
  28. package/lib/components/component-set/html/component-set.js +7 -8
  29. package/lib/components/component-set/html/component-set.spec.js +91 -0
  30. package/lib/components/component-set/lunatic-component-set.js +19 -9
  31. package/lib/components/datepicker/html/__snapshots__/datepicker.spec.tsx.snap +34 -0
  32. package/lib/components/datepicker/html/datepicker-input.js +0 -1
  33. package/lib/components/datepicker/html/datepicker.js +1 -4
  34. package/lib/components/datepicker/html/datepicker.spec.js +38 -0
  35. package/lib/components/datepicker/lunatic-datepicker.js +0 -1
  36. package/lib/components/dropdown/html/__snapshots__/dropdown.spec.tsx.snap +85 -0
  37. package/lib/components/dropdown/html/dropdown-simple/dropdown-simple.js +3 -2
  38. package/lib/components/dropdown/html/dropdown-simple/simple-label-renderer.js +0 -2
  39. package/lib/components/dropdown/html/dropdown-writable/dropdown-writable.js +4 -5
  40. package/lib/components/dropdown/html/dropdown-writable/writable-label-renderer.js +1 -4
  41. package/lib/components/dropdown/html/dropdown-writable/writable-option-renderer.js +1 -3
  42. package/lib/components/dropdown/html/dropdown.js +4 -2
  43. package/lib/components/dropdown/html/dropdown.spec.js +48 -0
  44. package/lib/components/dropdown/lunatic-dropdown.js +5 -4
  45. package/lib/components/duration/getDurationFromValue.js +0 -1
  46. package/lib/components/filter-description/component.js +0 -2
  47. package/lib/components/index.js +6 -5
  48. package/lib/components/input/html/__snapshots__/input.spec.tsx.snap +34 -0
  49. package/lib/components/input/html/input.js +4 -5
  50. package/lib/components/input/html/input.spec.js +81 -0
  51. package/lib/components/input/lunatic-input.js +4 -2
  52. package/lib/components/input-number/html/__snapshots__/input-number.spec.tsx.snap +38 -90
  53. package/lib/components/input-number/html/input-number-thousand.js +2 -0
  54. package/lib/components/input-number/html/input-number.js +3 -0
  55. package/lib/components/input-number/html/input-number.spec.js +35 -19
  56. package/lib/components/input-number/lunatic-input-number.js +2 -1
  57. package/lib/components/loop/{block-for-loop/block-for-loop.js → block-for-loop.js} +39 -64
  58. package/lib/components/loop/{commons/handle-row-button.js → loop-button.js} +4 -7
  59. package/lib/components/loop/{roster-for-loop/header.js → loop-header.js} +4 -8
  60. package/lib/components/loop/loop.js +19 -65
  61. package/lib/components/loop/roster-for-loop/roster-for-loop.js +102 -83
  62. package/lib/components/loop/{commons/get-init-length.js → utils/get-initial-nb-rows.js} +6 -5
  63. package/lib/components/{loop/roster-for-loop/body.js → lunatic-components.js} +46 -37
  64. package/lib/components/modal/html/modal.js +45 -73
  65. package/lib/components/modal/html/modal.scss +25 -42
  66. package/lib/components/modal/lunatic-modal.js +33 -9
  67. package/lib/components/modal-controls/close-or-skip.js +0 -1
  68. package/lib/components/modal-controls/modal-controls.spec.js +5 -6
  69. package/lib/components/pairwise-links/orchestrator.js +1 -4
  70. package/lib/components/pairwise-links/row.js +1 -4
  71. package/lib/components/question-explication/html/question-explication.js +0 -1
  72. package/lib/components/radio/html/radio-group-content.js +4 -3
  73. package/lib/components/radio/html/radio-group.js +4 -2
  74. package/lib/components/radio/html/radio-option.js +7 -8
  75. package/lib/components/radio/lunatic-radio-group.js +4 -2
  76. package/lib/components/roundabout/components/roundabout-it-title.js +0 -2
  77. package/lib/components/roundabout/components/roundabout-label.js +0 -2
  78. package/lib/components/roundabout/lunatic-roundabout.js +1 -4
  79. package/lib/components/roundabout/roundabout.js +0 -1
  80. package/lib/components/suggester/html/notification.js +0 -1
  81. package/lib/components/suggester/html/suggester.js +3 -3
  82. package/lib/components/suggester/idb-suggester/check-store.js +3 -5
  83. package/lib/components/suggester/idb-suggester/idb-suggester.js +4 -5
  84. package/lib/components/suggester/idb-suggester/suggester-notification.js +2 -2
  85. package/lib/components/suggester/lunatic-suggester.js +3 -1
  86. package/lib/components/suggester-loader-widget/loader-row.js +1 -4
  87. package/lib/components/suggester-loader-widget/loader.js +1 -3
  88. package/lib/components/summary/html/summary-responses.js +13 -7
  89. package/lib/components/summary/lunatic-summary.js +8 -4
  90. package/lib/components/switch/html/switch.js +0 -1
  91. package/lib/components/table/cell.js +0 -2
  92. package/lib/components/table/header.js +0 -2
  93. package/lib/components/table/row.js +0 -1
  94. package/lib/components/textarea/html/__snapshots__/textarea.spec.tsx.snap +30 -0
  95. package/lib/components/textarea/html/textarea.js +5 -6
  96. package/lib/components/textarea/html/textarea.spec.js +38 -0
  97. package/lib/components/textarea/lunatic-textarea.js +4 -2
  98. package/lib/index.js +8 -0
  99. package/lib/src/components/button/lunatic-button.d.ts +5 -3
  100. package/lib/src/components/checkbox/checkbox-boolean/html/checkbox-boolean.d.ts +2 -2
  101. package/lib/src/components/checkbox/checkbox-boolean/lunatic-checkbox-boolean.d.ts +1 -1
  102. package/lib/src/components/checkbox/checkbox-group/checkbox-group-content.d.ts +1 -1
  103. package/lib/src/components/checkbox/checkbox-group/html/checkbox-group-content.d.ts +1 -1
  104. package/lib/src/components/checkbox/checkbox-group/html/checkbox-group.d.ts +4 -4
  105. package/lib/src/components/checkbox/checkbox-group/lunatic-checkbox-group.d.ts +2 -2
  106. package/lib/src/components/checkbox/checkbox-one/html/checkbox-one.d.ts +1 -1
  107. package/lib/src/components/checkbox/checkbox-one/lunatic-checkbox-one.d.ts +1 -1
  108. package/lib/src/components/checkbox/commons/checkbox-option.d.ts +2 -2
  109. package/lib/src/components/commons/components/combo-box/combo-box-container.d.ts +1 -1
  110. package/lib/src/components/commons/components/combo-box/combo-box-content-box.d.ts +1 -1
  111. package/lib/src/components/commons/components/combo-box/combo-box-content.d.ts +1 -1
  112. package/lib/src/components/commons/components/combo-box/combo-box.d.ts +6 -5
  113. package/lib/src/components/commons/components/combo-box/combo-box.stories.d.ts +30 -2
  114. package/lib/src/components/commons/components/combo-box/combo-box.type.d.ts +1 -1
  115. package/lib/src/components/commons/components/combo-box/panel/combo-box-option.d.ts +1 -1
  116. package/lib/src/components/commons/components/combo-box/panel/panel-container.d.ts +1 -1
  117. package/lib/src/components/commons/components/combo-box/panel/panel.d.ts +2 -2
  118. package/lib/src/components/commons/components/combo-box/selection/LabelOrInput.d.ts +3 -2
  119. package/lib/src/components/commons/components/combo-box/selection/combo-box-label-selection.d.ts +2 -1
  120. package/lib/src/components/commons/components/combo-box/selection/input.d.ts +1 -1
  121. package/lib/src/components/commons/components/combo-box/selection/label-selection.d.ts +4 -3
  122. package/lib/src/components/commons/components/combo-box/selection/selection-container.d.ts +1 -1
  123. package/lib/src/components/commons/components/combo-box/selection/selection.d.ts +3 -2
  124. package/lib/src/components/commons/components/description.d.ts +1 -1
  125. package/lib/src/components/commons/components/dragger/dragger.d.ts +1 -1
  126. package/lib/src/components/commons/components/errors/errors.d.ts +1 -1
  127. package/lib/src/components/commons/components/fab/fab.d.ts +1 -1
  128. package/lib/src/components/commons/components/field-container/field-container.d.ts +1 -1
  129. package/lib/src/components/commons/components/fieldset.d.ts +3 -3
  130. package/lib/src/components/commons/components/html-table/table.d.ts +1 -1
  131. package/lib/src/components/commons/components/html-table/thead.d.ts +1 -1
  132. package/lib/src/components/commons/components/label/label.d.ts +1 -1
  133. package/lib/src/components/commons/components/lunatic-component-with-label.d.ts +2 -2
  134. package/lib/src/components/commons/components/lunatic-component-without-label.d.ts +2 -2
  135. package/lib/src/components/commons/components/md-label/link.d.ts +1 -1
  136. package/lib/src/components/commons/components/md-label/md-label.spec.d.ts +1 -0
  137. package/lib/src/components/commons/components/missing/missing.d.ts +1 -1
  138. package/lib/src/components/commons/components/orchestrated-component.d.ts +2 -2
  139. package/lib/src/components/commons/components/variable-status/variable-status.d.ts +1 -1
  140. package/lib/src/components/commons/create-customizable-field.d.ts +1 -1
  141. package/lib/src/components/commons/icons/checkbox-checked-icon.d.ts +1 -1
  142. package/lib/src/components/commons/icons/checkbox-unchecked-icon.d.ts +1 -1
  143. package/lib/src/components/commons/icons/closed-icon.d.ts +1 -1
  144. package/lib/src/components/commons/icons/cross-icon.d.ts +1 -1
  145. package/lib/src/components/commons/icons/load-icon.d.ts +1 -1
  146. package/lib/src/components/commons/icons/lunatic-icon.d.ts +1 -1
  147. package/lib/src/components/commons/icons/network-icon.d.ts +1 -1
  148. package/lib/src/components/commons/icons/on-drag-icon.d.ts +1 -1
  149. package/lib/src/components/commons/icons/opened-icon.d.ts +1 -1
  150. package/lib/src/components/commons/icons/radio-checked-icon.d.ts +1 -1
  151. package/lib/src/components/commons/icons/radio-unchecked-icon.d.ts +1 -1
  152. package/lib/src/components/commons/index.d.ts +0 -1
  153. package/lib/src/components/commons/safety-label.d.ts +1 -1
  154. package/lib/src/components/component-set/html/component-set-legend.d.ts +8 -0
  155. package/lib/src/components/component-set/html/component-set-wrapper.d.ts +6 -0
  156. package/lib/src/components/component-set/html/component-set.d.ts +5 -4
  157. package/lib/src/components/component-set/html/component-set.spec.d.ts +1 -0
  158. package/lib/src/components/component-set/lunatic-component-set.d.ts +3 -4
  159. package/lib/src/components/datepicker/html/datepicker-container.d.ts +1 -1
  160. package/lib/src/components/datepicker/html/datepicker-input.d.ts +1 -1
  161. package/lib/src/components/datepicker/html/datepicker.d.ts +3 -3
  162. package/lib/src/components/datepicker/html/datepicker.spec.d.ts +1 -0
  163. package/lib/src/components/datepicker/lunatic-datepicker.d.ts +2 -2
  164. package/lib/src/components/declarations/declaration.d.ts +1 -1
  165. package/lib/src/components/declarations/declarations-after-text.d.ts +1 -1
  166. package/lib/src/components/declarations/declarations-before-text.d.ts +1 -1
  167. package/lib/src/components/declarations/declarations-detachable.d.ts +1 -1
  168. package/lib/src/components/declarations/declarations.d.ts +1 -1
  169. package/lib/src/components/dropdown/html/dropdown-simple/dropdown-simple.d.ts +2 -2
  170. package/lib/src/components/dropdown/html/dropdown-simple/simple-label-renderer.d.ts +1 -1
  171. package/lib/src/components/dropdown/html/dropdown-simple/simple-option-renderer.d.ts +1 -1
  172. package/lib/src/components/dropdown/html/dropdown-writable/dropdown-writable.d.ts +5 -4
  173. package/lib/src/components/dropdown/html/dropdown-writable/writable-label-renderer.d.ts +1 -1
  174. package/lib/src/components/dropdown/html/dropdown-writable/writable-option-renderer.d.ts +1 -1
  175. package/lib/src/components/dropdown/html/dropdown.d.ts +4 -3
  176. package/lib/src/components/dropdown/html/dropdown.spec.d.ts +1 -0
  177. package/lib/src/components/dropdown/lunatic-dropdown.d.ts +2 -2
  178. package/lib/src/components/duration/duration.d.ts +1 -1
  179. package/lib/src/components/duration/durationInput.d.ts +1 -1
  180. package/lib/src/components/duration/formatDuration.d.ts +1 -1
  181. package/lib/src/components/duration/getDurationFromValue.d.ts +1 -1
  182. package/lib/src/components/duration/index.d.ts +1 -1
  183. package/lib/src/components/filter-description/component.d.ts +2 -2
  184. package/lib/src/components/index.d.ts +4 -4
  185. package/lib/src/components/input/html/input.d.ts +4 -3
  186. package/lib/src/components/input/html/input.spec.d.ts +1 -0
  187. package/lib/src/components/input/lunatic-input.d.ts +1 -1
  188. package/lib/src/components/input-number/html/input-number-thousand.d.ts +2 -1
  189. package/lib/src/components/input-number/html/input-number.d.ts +3 -2
  190. package/lib/src/components/input-number/lunatic-input-number.d.ts +1 -1
  191. package/lib/src/components/loop/{block-for-loop/block-for-loop.d.ts → block-for-loop.d.ts} +6 -4
  192. package/lib/src/components/loop/loop-button.d.ts +7 -0
  193. package/lib/src/components/loop/loop-header.d.ts +9 -0
  194. package/lib/src/components/loop/loop.d.ts +2 -3
  195. package/lib/src/components/loop/roster-for-loop/roster-for-loop.d.ts +7 -5
  196. package/lib/src/components/loop/utils/get-initial-nb-rows.d.ts +4 -0
  197. package/lib/src/components/lunatic-components.d.ts +13 -0
  198. package/lib/src/components/modal/html/modal.d.ts +10 -13
  199. package/lib/src/components/modal/lunatic-modal.d.ts +2 -2
  200. package/lib/src/components/modal-controls/close-or-skip.d.ts +1 -1
  201. package/lib/src/components/modal-controls/modal-container.d.ts +1 -1
  202. package/lib/src/components/modal-controls/modal-controls.d.ts +2 -2
  203. package/lib/src/components/pairwise-links/orchestrator.d.ts +1 -1
  204. package/lib/src/components/pairwise-links/pairwise-links.d.ts +1 -1
  205. package/lib/src/components/pairwise-links/row.d.ts +1 -1
  206. package/lib/src/components/question-explication/html/question-explication.d.ts +1 -1
  207. package/lib/src/components/question-explication/lunatic-question-explication.d.ts +1 -1
  208. package/lib/src/components/radio/html/radio-group-content.d.ts +3 -2
  209. package/lib/src/components/radio/html/radio-group.d.ts +3 -2
  210. package/lib/src/components/radio/html/radio-option.d.ts +3 -2
  211. package/lib/src/components/roundabout/components/roundabout-it-title.d.ts +3 -3
  212. package/lib/src/components/roundabout/components/roundabout-label.d.ts +3 -3
  213. package/lib/src/components/roundabout/lunatic-roundabout.d.ts +1 -1
  214. package/lib/src/components/roundabout/roundabout.d.ts +2 -2
  215. package/lib/src/components/sequence/html/sequence.d.ts +1 -1
  216. package/lib/src/components/sequence/lunatic-sequence.d.ts +2 -2
  217. package/lib/src/components/suggester/html/notification.d.ts +2 -2
  218. package/lib/src/components/suggester/html/suggester.d.ts +6 -5
  219. package/lib/src/components/suggester/idb-suggester/check-store.d.ts +1 -1
  220. package/lib/src/components/suggester/idb-suggester/idb-suggester.d.ts +3 -3
  221. package/lib/src/components/suggester/idb-suggester/suggester-notification.d.ts +1 -1
  222. package/lib/src/components/suggester/idb-suggester/suggester-status.d.ts +1 -1
  223. package/lib/src/components/suggester/lunatic-suggester.d.ts +2 -2
  224. package/lib/src/components/suggester/searching/create-searching.d.ts +1 -1
  225. package/lib/src/components/suggester-loader-widget/loader-row.d.ts +1 -1
  226. package/lib/src/components/suggester-loader-widget/loader.d.ts +1 -1
  227. package/lib/src/components/suggester-loader-widget/tools/action-tool.d.ts +1 -1
  228. package/lib/src/components/suggester-loader-widget/tools/tools.d.ts +1 -1
  229. package/lib/src/components/suggester-loader-widget/widget.d.ts +1 -1
  230. package/lib/src/components/summary/html/summary-container.d.ts +1 -1
  231. package/lib/src/components/summary/html/summary-responses.d.ts +3 -1
  232. package/lib/src/components/summary/html/summary-title.d.ts +1 -1
  233. package/lib/src/components/summary/lunatic-summary.d.ts +3 -2
  234. package/lib/src/components/switch/html/switch.d.ts +3 -3
  235. package/lib/src/components/switch/lunatic-switch.d.ts +1 -1
  236. package/lib/src/components/table/cell.d.ts +1 -1
  237. package/lib/src/components/table/header.d.ts +1 -1
  238. package/lib/src/components/table/lunatic-table.d.ts +1 -1
  239. package/lib/src/components/table/row.d.ts +1 -1
  240. package/lib/src/components/table/table-orchestrator.d.ts +1 -1
  241. package/lib/src/components/textarea/html/textarea.d.ts +4 -3
  242. package/lib/src/components/textarea/html/textarea.spec.d.ts +1 -0
  243. package/lib/src/components/textarea/lunatic-textarea.d.ts +1 -1
  244. package/lib/src/components/type.d.ts +9 -6
  245. package/lib/src/i18n/build-dictionary.d.ts +1 -1
  246. package/lib/src/index.d.ts +1 -0
  247. package/lib/src/use-lunatic/actions.d.ts +4 -8
  248. package/lib/src/use-lunatic/commons/calculated-variables.d.ts +1 -1
  249. package/lib/src/use-lunatic/commons/check-loops.d.ts +1 -1
  250. package/lib/src/use-lunatic/commons/check-pager.d.ts +1 -1
  251. package/lib/src/use-lunatic/commons/compile-controls.d.ts +1 -1
  252. package/lib/src/use-lunatic/commons/compose.d.ts +1 -1
  253. package/lib/src/use-lunatic/commons/create-map-pages.d.ts +2 -2
  254. package/lib/src/use-lunatic/commons/execute-condition-filter.d.ts +1 -1
  255. package/lib/src/use-lunatic/commons/execute-expression/create-execute-expression.d.ts +1 -1
  256. package/lib/src/use-lunatic/commons/execute-expression/create-refresh-calculated.d.ts +2 -2
  257. package/lib/src/use-lunatic/commons/execute-expression/execute-expression.d.ts +3 -3
  258. package/lib/src/use-lunatic/commons/execute-expression/get-safety-expression.d.ts +1 -1
  259. package/lib/src/use-lunatic/commons/fill-components/fill-component-expressions.d.ts +5 -2
  260. package/lib/src/use-lunatic/commons/fill-components/fill-component-value.d.ts +1 -1
  261. package/lib/src/use-lunatic/commons/fill-components/fill-components.d.ts +15 -10
  262. package/lib/src/use-lunatic/commons/fill-components/fill-from-state.d.ts +38 -1
  263. package/lib/src/use-lunatic/commons/fill-components/fill-management.d.ts +1 -1
  264. package/lib/src/use-lunatic/commons/fill-components/fill-missing-response.d.ts +1 -1
  265. package/lib/src/use-lunatic/commons/fill-components/fill-pagination.d.ts +1 -1
  266. package/lib/src/use-lunatic/commons/fill-components/fill-specific-expression.d.ts +62 -33
  267. package/lib/src/use-lunatic/commons/get-compatible-vtl-expression.d.ts +1 -1
  268. package/lib/src/use-lunatic/commons/get-component-value/get-component-value.d.ts +1 -1
  269. package/lib/src/use-lunatic/commons/get-components-from-state.d.ts +1 -2
  270. package/lib/src/use-lunatic/commons/get-data.d.ts +1 -1
  271. package/lib/src/use-lunatic/commons/get-errors-without-empty-value.d.ts +1 -1
  272. package/lib/src/use-lunatic/commons/getOverview.d.ts +1 -1
  273. package/lib/src/use-lunatic/commons/is-First-last-page.d.ts +1 -1
  274. package/lib/src/use-lunatic/commons/is-paginated-loop.d.ts +1 -1
  275. package/lib/src/use-lunatic/commons/is-roundabout.d.ts +1 -1
  276. package/lib/src/use-lunatic/commons/page-navigation.d.ts +2 -2
  277. package/lib/src/use-lunatic/commons/page-tag.d.ts +1 -1
  278. package/lib/src/use-lunatic/commons/page.d.ts +2 -2
  279. package/lib/src/use-lunatic/commons/use-components-from-state.d.ts +2 -2
  280. package/lib/src/use-lunatic/hooks/use-loop-variables.d.ts +1 -1
  281. package/lib/src/use-lunatic/lunatic-context.d.ts +1 -1
  282. package/lib/src/use-lunatic/reducer/commons/auto-explore-loop.d.ts +1 -1
  283. package/lib/src/use-lunatic/reducer/commons/is-loop-component.d.ts +3 -3
  284. package/lib/src/use-lunatic/reducer/commons/validate-condition-filter.d.ts +1 -1
  285. package/lib/src/use-lunatic/reducer/overview/overview-on-change.d.ts +1 -1
  286. package/lib/src/use-lunatic/reducer/overview/overview-on-init.d.ts +2 -2
  287. package/lib/src/use-lunatic/reducer/reduce-go-next-page.d.ts +2 -4
  288. package/lib/src/use-lunatic/reducer/reduce-go-next-page.spec.d.ts +1 -0
  289. package/lib/src/use-lunatic/reducer/reduce-go-previous-page.d.ts +1 -1
  290. package/lib/src/use-lunatic/reducer/reduce-go-previous-page.spec.d.ts +1 -0
  291. package/lib/src/use-lunatic/reducer/reduce-go-to-page.d.ts +2 -2
  292. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.d.ts +2 -2
  293. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-handle-change.d.ts +2 -2
  294. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-links-variable.d.ts +2 -2
  295. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-missing.d.ts +2 -2
  296. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-resizing.d.ts +2 -2
  297. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-variables-array.d.ts +1 -1
  298. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-variables-simple.d.ts +1 -1
  299. package/lib/src/use-lunatic/reducer/reduce-on-init.d.ts +2 -2
  300. package/lib/src/use-lunatic/reducer/reduce-on-set-waiting.d.ts +2 -2
  301. package/lib/src/use-lunatic/reducer/reduce-update-state.d.ts +2 -2
  302. package/lib/src/use-lunatic/reducer/reducer.d.ts +2 -2
  303. package/lib/src/use-lunatic/reducer/resolve-component-controls/resolve-component-control.d.ts +2 -2
  304. package/lib/src/use-lunatic/reducer/resolve-component-controls/resolve-roundabout-control.d.ts +2 -2
  305. package/lib/src/use-lunatic/reducer/resolve-component-controls/resolve-simple-control.d.ts +2 -2
  306. package/lib/src/use-lunatic/replace-component-sequence.d.ts +3 -1
  307. package/lib/src/use-lunatic/type-source.d.ts +3 -1
  308. package/lib/src/use-lunatic/type.d.ts +3 -3
  309. package/lib/src/use-lunatic/use-lunatic.d.ts +21 -15
  310. package/lib/src/use-lunatic/use-suggesters.d.ts +1 -1
  311. package/lib/src/utils/array.d.ts +8 -0
  312. package/lib/src/utils/dom.d.ts +14 -0
  313. package/lib/src/utils/get-component-value.d.ts +1 -1
  314. package/lib/src/utils/get-component-value.test.d.ts +1 -0
  315. package/lib/src/utils/is-element.d.ts +1 -1
  316. package/lib/src/utils/number.d.ts +5 -0
  317. package/lib/src/utils/number.spec.d.ts +1 -0
  318. package/lib/src/utils/store-tools/initStore.d.ts +1 -1
  319. package/lib/src/utils/suggester-workers/append-to-index/create-append-task.d.ts +1 -1
  320. package/lib/src/utils/suggester-workers/searching/compute-score.d.ts +1 -1
  321. package/lib/stories/checkbox-one/source.json +2 -2
  322. package/lib/stories/component-set/component-set.stories.js +9 -9
  323. package/lib/stories/component-set/{data2.json → data-roundabout.json} +1 -1
  324. package/lib/stories/component-set/data.json +8 -1
  325. package/lib/stories/component-set/source-loop.json +308 -0
  326. package/lib/stories/component-set/source-roundabout.json +434 -0
  327. package/lib/stories/component-set/source.json +16 -2
  328. package/lib/stories/disabled/data.json +32 -0
  329. package/lib/{components/commons/components/combo-box/state-management/reduce-on-keydown/on-end.js → stories/disabled/disabled.stories.js} +25 -12
  330. package/lib/stories/disabled/source.json +382 -0
  331. package/lib/stories/input/source-with-question.json +9 -3
  332. package/lib/stories/input/source.json +6 -0
  333. package/lib/stories/loop/source-paginated.json +2 -2
  334. package/lib/stories/overview/source.json +1 -1
  335. package/lib/stories/overview/sourceWithHierarchy.json +10 -2
  336. package/lib/stories/pairwise/links-componentset.json +292 -0
  337. package/lib/stories/pairwise/pairwise-links.stories.js +11 -2
  338. package/lib/stories/question-explication/source.json +16 -16
  339. package/lib/stories/questionnaires/logement/source-sum.json +31805 -34611
  340. package/lib/stories/questionnaires/recensement/source.json +2 -2
  341. package/lib/stories/questionnaires/simpsons/simpsons.stories.js +4 -4
  342. package/lib/stories/questionnaires-test/V2_DeclarationsSimples.json +963 -847
  343. package/lib/stories/questionnaires-test/V2_QuestSimple_Boucles.json +4350 -4090
  344. package/lib/stories/suggester/simple.json +4 -0
  345. package/lib/stories/summary/source.json +55 -40
  346. package/lib/stories/utils/orchestrator.js +11 -22
  347. package/lib/tests/utils/lunatic.d.ts +16 -2
  348. package/lib/use-lunatic/commons/execute-expression/create-execute-expression.js +13 -45
  349. package/lib/use-lunatic/commons/execute-expression/execute-expression.js +0 -1
  350. package/lib/use-lunatic/commons/fill-components/fill-component-expressions.js +5 -1
  351. package/lib/use-lunatic/commons/fill-components/fill-components.js +10 -2
  352. package/lib/use-lunatic/commons/fill-components/fill-from-state.js +3 -0
  353. package/lib/use-lunatic/commons/fill-components/fill-specific-expression.js +66 -21
  354. package/lib/use-lunatic/commons/get-component-value/get-component-value.js +1 -3
  355. package/lib/use-lunatic/commons/page.js +6 -0
  356. package/lib/use-lunatic/hooks/use-loop-variables.js +1 -1
  357. package/lib/use-lunatic/reducer/reduce-go-next-page.js +10 -10
  358. package/lib/use-lunatic/reducer/reduce-go-next-page.spec.js +13 -0
  359. package/lib/use-lunatic/reducer/reduce-go-previous-page.js +3 -3
  360. package/lib/use-lunatic/reducer/reduce-go-previous-page.spec.js +14 -0
  361. package/lib/use-lunatic/reducer/reduce-go-to-page.js +3 -8
  362. package/lib/use-lunatic/reducer/reduce-handle-change/__mocks__/source-cleaning-loop.json +790 -924
  363. package/lib/use-lunatic/reducer/reducer.js +2 -2
  364. package/lib/use-lunatic/use-lunatic.js +5 -2
  365. package/lib/use-lunatic/use-lunatic.test.js +26 -0
  366. package/lib/utils/array.js +33 -0
  367. package/lib/utils/dom.js +27 -0
  368. package/lib/utils/get-component-value.js +13 -11
  369. package/lib/utils/get-component-value.test.js +57 -0
  370. package/lib/utils/number.js +30 -0
  371. package/lib/utils/number.spec.js +11 -0
  372. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.spec.js +0 -2
  373. package/package.json +9 -3
  374. package/lib/components/commons/components/combo-box/state-management/actions.js +0 -79
  375. package/lib/components/commons/components/combo-box/state-management/index.js +0 -25
  376. package/lib/components/commons/components/combo-box/state-management/reduce-on-init.js +0 -38
  377. package/lib/components/commons/components/combo-box/state-management/reduce-on-keydown/on-arrow-down.js +0 -30
  378. package/lib/components/commons/components/combo-box/state-management/reduce-on-keydown/on-arrow-up.js +0 -30
  379. package/lib/components/commons/components/combo-box/state-management/reduce-on-keydown/on-enter.js +0 -19
  380. package/lib/components/commons/components/combo-box/state-management/reduce-on-keydown/on-escape.js +0 -18
  381. package/lib/components/commons/components/combo-box/state-management/reduce-on-keydown/on-home.js +0 -23
  382. package/lib/components/commons/components/combo-box/state-management/reduce-on-keydown/on-tab.js +0 -18
  383. package/lib/components/commons/components/combo-box/state-management/reduce-on-keydown/reduce-on-keydown.js +0 -40
  384. package/lib/components/commons/components/combo-box/state-management/reducer.js +0 -53
  385. package/lib/components/commons/create-row-orchestrator.js +0 -58
  386. package/lib/components/component-set/html/component-set-component-container.js +0 -20
  387. package/lib/components/component-set/html/component-set-components.js +0 -45
  388. package/lib/components/component-set/html/legend/index.js +0 -13
  389. package/lib/components/component-set/index.js +0 -13
  390. package/lib/components/loop/block-for-loop/block-for-loop-ochestrator.js +0 -12
  391. package/lib/components/loop/block-for-loop/index.js +0 -13
  392. package/lib/components/loop/block-for-loop/row.js +0 -56
  393. package/lib/components/loop/commons/index.js +0 -20
  394. package/lib/components/loop/commons/row-component.js +0 -72
  395. package/lib/components/loop/index.js +0 -13
  396. package/lib/components/loop/roster-for-loop/index.js +0 -13
  397. package/lib/components/loop/roster-for-loop/roster-for-loop-orchestrator.js +0 -12
  398. package/lib/components/loop/roster-for-loop/roster-table.js +0 -50
  399. package/lib/components/loop/roster-for-loop/row.js +0 -85
  400. package/lib/src/components/commons/components/combo-box/state-management/actions.d.ts +0 -78
  401. package/lib/src/components/commons/components/combo-box/state-management/index.d.ts +0 -9
  402. package/lib/src/components/commons/components/combo-box/state-management/reduce-on-init.d.ts +0 -4
  403. package/lib/src/components/commons/components/combo-box/state-management/reduce-on-keydown/on-arrow-down.d.ts +0 -2
  404. package/lib/src/components/commons/components/combo-box/state-management/reduce-on-keydown/on-arrow-up.d.ts +0 -2
  405. package/lib/src/components/commons/components/combo-box/state-management/reduce-on-keydown/on-end.d.ts +0 -2
  406. package/lib/src/components/commons/components/combo-box/state-management/reduce-on-keydown/on-enter.d.ts +0 -2
  407. package/lib/src/components/commons/components/combo-box/state-management/reduce-on-keydown/on-escape.d.ts +0 -2
  408. package/lib/src/components/commons/components/combo-box/state-management/reduce-on-keydown/on-home.d.ts +0 -2
  409. package/lib/src/components/commons/components/combo-box/state-management/reduce-on-keydown/on-tab.d.ts +0 -2
  410. package/lib/src/components/commons/components/combo-box/state-management/reduce-on-keydown/reduce-on-keydown.d.ts +0 -9
  411. package/lib/src/components/commons/components/combo-box/state-management/reducer.d.ts +0 -3
  412. package/lib/src/components/commons/create-row-orchestrator.d.ts +0 -32
  413. package/lib/src/components/component-set/html/component-set-component-container.d.ts +0 -6
  414. package/lib/src/components/component-set/html/component-set-components.d.ts +0 -7
  415. package/lib/src/components/component-set/html/legend/index.d.ts +0 -1
  416. package/lib/src/components/component-set/html/legend/legend.d.ts +0 -8
  417. package/lib/src/components/component-set/index.d.ts +0 -1
  418. package/lib/src/components/loop/block-for-loop/block-for-loop-ochestrator.d.ts +0 -51
  419. package/lib/src/components/loop/block-for-loop/index.d.ts +0 -1
  420. package/lib/src/components/loop/block-for-loop/row.d.ts +0 -23
  421. package/lib/src/components/loop/commons/get-init-length.d.ts +0 -2
  422. package/lib/src/components/loop/commons/handle-row-button.d.ts +0 -7
  423. package/lib/src/components/loop/commons/index.d.ts +0 -2
  424. package/lib/src/components/loop/commons/row-component.d.ts +0 -9
  425. package/lib/src/components/loop/index.d.ts +0 -1
  426. package/lib/src/components/loop/roster-for-loop/body.d.ts +0 -12
  427. package/lib/src/components/loop/roster-for-loop/header.d.ts +0 -9
  428. package/lib/src/components/loop/roster-for-loop/index.d.ts +0 -1
  429. package/lib/src/components/loop/roster-for-loop/roster-for-loop-orchestrator.d.ts +0 -51
  430. package/lib/src/components/loop/roster-for-loop/roster-table.d.ts +0 -13
  431. package/lib/src/components/loop/roster-for-loop/row.d.ts +0 -24
  432. package/lib/stories/component-set/source1.json +0 -287
  433. package/lib/stories/component-set/source2.json +0 -413
  434. /package/lib/components/commons/components/combo-box/{state-management/reduce-on-keydown/keyboard-key-codes.js → keyboard-key-codes.js} +0 -0
  435. /package/lib/src/components/commons/components/combo-box/{state-management/reduce-on-keydown/keyboard-key-codes.d.ts → keyboard-key-codes.d.ts} +0 -0
  436. /package/lib/stories/component-set/{data1.json → data-loop.json} +0 -0
@@ -1,848 +1,964 @@
1
+ {
2
+ "id": "kanye31s",
3
+ "modele": "QTEST_DECL",
4
+ "enoCoreVersion": "2.3.7-dev-lunatic-v2",
5
+ "lunaticModelVersion": "2.2.13-dev-lunatic-v2",
6
+ "generatingDate": "19-07-2022 10:51:57",
7
+ "missing": false,
8
+ "pagination": "question",
9
+ "maxPage": "18",
10
+ "label": { "value": "QNONREG Declarations xpath ou vtl", "type": "VTL|MD" },
11
+ "components": [
12
+ {
13
+ "id": "kanya0cm",
14
+ "componentType": "Sequence",
15
+ "page": "1",
16
+ "label": {
17
+ "value": "Questions comportant des déclarations de différents types",
18
+ "type": "VTL|MD"
19
+ },
20
+ "declarations": [
21
+ {
22
+ "id": "kanya0cm-kanzilet",
23
+ "declarationType": "INSTRUCTION",
24
+ "position": "AFTER_QUESTION_TEXT",
25
+ "label": { "value": "consigne de séquence cawi", "type": "VTL|MD" }
26
+ },
1
27
 
2
- { "id" : "kanye31s",
3
- "modele" : "QTEST_DECL",
4
- "enoCoreVersion" : "2.3.7-dev-lunatic-v2",
5
- "lunaticModelVersion" : "2.2.13-dev-lunatic-v2",
6
- "generatingDate" : "19-07-2022 10:51:57",
7
- "missing" : false,
8
- "pagination" : "question",
9
- "maxPage" : "18",
10
- "label" :
11
- { "value" : "QNONREG Declarations xpath ou vtl",
12
- "type" : "VTL|MD" },
13
- "components" :
14
- [
15
- { "id" : "kanya0cm",
16
- "componentType" : "Sequence",
17
- "page" : "1",
18
- "label" :
19
- { "value" : "Questions comportant des déclarations de différents types",
20
- "type" : "VTL|MD" },
21
- "declarations" :
22
- [
23
- { "id" : "kanya0cm-kanzilet",
24
- "declarationType" : "INSTRUCTION",
25
- "position" : "AFTER_QUESTION_TEXT",
26
- "label" :
27
- { "value" : "consigne de séquence cawi",
28
- "type" : "VTL|MD" } },
29
-
30
- { "id" : "kanya0cm-kzfdtx2b",
31
- "declarationType" : "HELP",
32
- "position" : "AFTER_QUESTION_TEXT",
33
- "label" :
34
- { "value" : "aide de séquence cawi",
35
- "type" : "VTL|MD" } } ],
36
- "conditionFilter" :
37
- { "value" : "true",
38
- "type" : "VTL" },
39
- "hierarchy" :
40
- { "sequence" :
41
- { "id" : "kanya0cm",
42
- "page" : "1",
43
- "label" :
44
- { "value" : "Questions comportant des déclarations de différents types",
45
- "type" : "VTL|MD" } } } },
46
-
47
- { "id" : "kzfdxu5g",
48
- "componentType" : "Subsequence",
49
- "page" : "2",
50
- "goToPage" : "2",
51
- "label" :
52
- { "value" : "Déclarations",
53
- "type" : "VTL|MD" },
54
- "declarations" :
55
- [
56
- { "id" : "kzfdxu5g-kzfdtfyi",
57
- "declarationType" : "HELP",
58
- "position" : "AFTER_QUESTION_TEXT",
59
- "label" :
60
- { "value" : "Aide sous séquence CAWI",
61
- "type" : "VTL|MD" } },
62
-
63
- { "id" : "kzfdxu5g-kzfe5gdf",
64
- "declarationType" : "INSTRUCTION",
65
- "position" : "AFTER_QUESTION_TEXT",
66
- "label" :
67
- { "value" : "Consigne sous séquence CAWI",
68
- "type" : "VTL|MD" } } ],
69
- "conditionFilter" :
70
- { "value" : "true",
71
- "type" : "VTL" },
72
- "hierarchy" :
73
- { "sequence" :
74
- { "id" : "kanya0cm",
75
- "page" : "1",
76
- "label" :
77
- { "value" : "Questions comportant des déclarations de différents types",
78
- "type" : "VTL|MD" } },
79
- "subSequence" :
80
- { "id" : "kzfdxu5g",
81
- "page" : "2",
82
- "label" :
83
- { "value" : "Déclarations",
84
- "type" : "VTL|MD" } } } },
85
-
86
- { "id" : "kanyduey",
87
- "componentType" : "Textarea",
88
- "mandatory" : false,
89
- "page" : "3",
90
- "maxLength" : 255,
91
- "label" :
92
- { "value" : "\"➡ 1. \" || \"Q1 avec déclar consigne CAWI PAPI \"",
93
- "type" : "VTL|MD" },
94
- "declarations" :
95
- [
96
- { "id" : "kanyduey-kanys16a",
97
- "declarationType" : "INSTRUCTION",
98
- "position" : "AFTER_QUESTION_TEXT",
99
- "label" :
100
- { "value" : "je suis la consigne cawi",
101
- "type" : "VTL|MD" } } ],
102
- "conditionFilter" :
103
- { "value" : "true",
104
- "type" : "VTL" },
105
- "hierarchy" :
106
- { "sequence" :
107
- { "id" : "kanya0cm",
108
- "page" : "1",
109
- "label" :
110
- { "value" : "Questions comportant des déclarations de différents types",
111
- "type" : "VTL|MD" } } },
112
- "bindingDependencies" :
113
- [ "Q1" ],
114
- "response" :
115
- { "name" : "Q1" } },
116
-
117
- { "id" : "kzfdehqy",
118
- "componentType" : "Textarea",
119
- "mandatory" : false,
120
- "page" : "4",
121
- "maxLength" : 255,
122
- "label" :
123
- { "value" : "\"➡ 2. \" || \"Q2 avec déclar consigne CATI \"",
124
- "type" : "VTL|MD" },
125
- "conditionFilter" :
126
- { "value" : "true",
127
- "type" : "VTL" },
128
- "hierarchy" :
129
- { "sequence" :
130
- { "id" : "kanya0cm",
131
- "page" : "1",
132
- "label" :
133
- { "value" : "Questions comportant des déclarations de différents types",
134
- "type" : "VTL|MD" } } },
135
- "bindingDependencies" :
136
- [ "Q2" ],
137
- "response" :
138
- { "name" : "Q2" } },
139
-
140
- { "id" : "kzfdsuhw",
141
- "componentType" : "Textarea",
142
- "mandatory" : false,
143
- "page" : "5",
144
- "maxLength" : 255,
145
- "label" :
146
- { "value" : "\"➡ 3. \" || \"Q3 avec déclar consigne CAPI \"",
147
- "type" : "VTL|MD" },
148
- "conditionFilter" :
149
- { "value" : "true",
150
- "type" : "VTL" },
151
- "hierarchy" :
152
- { "sequence" :
153
- { "id" : "kanya0cm",
154
- "page" : "1",
155
- "label" :
156
- { "value" : "Questions comportant des déclarations de différents types",
157
- "type" : "VTL|MD" } } },
158
- "bindingDependencies" :
159
- [ "Q3" ],
160
- "response" :
161
- { "name" : "Q3" } },
162
-
163
- { "id" : "kanye45b",
164
- "componentType" : "Textarea",
165
- "mandatory" : false,
166
- "page" : "6",
167
- "maxLength" : 255,
168
- "label" :
169
- { "value" : "\"➡ 4. \" || \"Q4 avec déclar aide CAWI \"",
170
- "type" : "VTL|MD" },
171
- "declarations" :
172
- [
173
- { "id" : "kanye45b-kanysl02",
174
- "declarationType" : "HELP",
175
- "position" : "AFTER_QUESTION_TEXT",
176
- "label" :
177
- { "value" : "Je suis l’aide après CAWI",
178
- "type" : "VTL|MD" } } ],
179
- "conditionFilter" :
180
- { "value" : "true",
181
- "type" : "VTL" },
182
- "hierarchy" :
183
- { "sequence" :
184
- { "id" : "kanya0cm",
185
- "page" : "1",
186
- "label" :
187
- { "value" : "Questions comportant des déclarations de différents types",
188
- "type" : "VTL|MD" } } },
189
- "bindingDependencies" :
190
- [ "Q4" ],
191
- "response" :
192
- { "name" : "Q4" } },
193
-
194
- { "id" : "kzfds450",
195
- "componentType" : "Textarea",
196
- "mandatory" : false,
197
- "page" : "7",
198
- "maxLength" : 255,
199
- "label" :
200
- { "value" : "\"➡ 5. \" || \"Q5 avec déclar aide CATI \"",
201
- "type" : "VTL|MD" },
202
- "conditionFilter" :
203
- { "value" : "true",
204
- "type" : "VTL" },
205
- "hierarchy" :
206
- { "sequence" :
207
- { "id" : "kanya0cm",
208
- "page" : "1",
209
- "label" :
210
- { "value" : "Questions comportant des déclarations de différents types",
211
- "type" : "VTL|MD" } } },
212
- "bindingDependencies" :
213
- [ "Q5" ],
214
- "response" :
215
- { "name" : "Q5" } },
216
-
217
- { "id" : "kzfdnpeb",
218
- "componentType" : "Textarea",
219
- "mandatory" : false,
220
- "page" : "8",
221
- "maxLength" : 255,
222
- "label" :
223
- { "value" : "\"➡ 6. \" || \"Q6 avec déclar aide CAPI \"",
224
- "type" : "VTL|MD" },
225
- "conditionFilter" :
226
- { "value" : "true",
227
- "type" : "VTL" },
228
- "hierarchy" :
229
- { "sequence" :
230
- { "id" : "kanya0cm",
231
- "page" : "1",
232
- "label" :
233
- { "value" : "Questions comportant des déclarations de différents types",
234
- "type" : "VTL|MD" } } },
235
- "bindingDependencies" :
236
- [ "Q6" ],
237
- "response" :
238
- { "name" : "Q6" } },
239
-
240
- { "id" : "kzwo41pm",
241
- "componentType" : "Textarea",
242
- "mandatory" : false,
243
- "page" : "9",
244
- "maxLength" : 255,
245
- "label" :
246
- { "value" : "\"➡ 7. \" || \"Q7avec déclar carte code CAPI\"",
247
- "type" : "VTL|MD" },
248
- "conditionFilter" :
249
- { "value" : "true",
250
- "type" : "VTL" },
251
- "hierarchy" :
252
- { "sequence" :
253
- { "id" : "kanya0cm",
254
- "page" : "1",
255
- "label" :
256
- { "value" : "Questions comportant des déclarations de différents types",
257
- "type" : "VTL|MD" } } },
258
- "bindingDependencies" :
259
- [ "Q7" ],
260
- "response" :
261
- { "name" : "Q7" } },
262
-
263
- { "id" : "kanywetv",
264
- "componentType" : "Textarea",
265
- "mandatory" : false,
266
- "page" : "10",
267
- "maxLength" : 255,
268
- "label" :
269
- { "value" : "\"➡ 8. \" || \"Q8 avec toutes les déclarations apres \"",
270
- "type" : "VTL|MD" },
271
- "declarations" :
272
- [
273
- { "id" : "kanywetv-kzfe9908",
274
- "declarationType" : "HELP",
275
- "position" : "AFTER_QUESTION_TEXT",
276
- "label" :
277
- { "value" : "je suis l’aide CAWI",
278
- "type" : "VTL|MD" } },
279
-
280
- { "id" : "kanywetv-kzfe7p9e",
281
- "declarationType" : "HELP",
282
- "position" : "AFTER_QUESTION_TEXT",
283
- "label" :
284
- { "value" : "je suis la consigne CAWI",
285
- "type" : "VTL|MD" } } ],
286
- "conditionFilter" :
287
- { "value" : "true",
288
- "type" : "VTL" },
289
- "hierarchy" :
290
- { "sequence" :
291
- { "id" : "kanya0cm",
292
- "page" : "1",
293
- "label" :
294
- { "value" : "Questions comportant des déclarations de différents types",
295
- "type" : "VTL|MD" } } },
296
- "bindingDependencies" :
297
- [ "Q8" ],
298
- "response" :
299
- { "name" : "Q8" } },
300
-
301
- { "id" : "kanz9wv6",
302
- "componentType" : "Subsequence",
303
- "page" : "11",
304
- "goToPage" : "11",
305
- "label" :
306
- { "value" : "Statement Item",
307
- "type" : "VTL|MD" },
308
- "declarations" :
309
- [
310
- { "id" : "kanz9wv6-kanz0yxv",
311
- "declarationType" : "INSTRUCTION",
312
- "position" : "AFTER_QUESTION_TEXT",
313
- "label" :
314
- { "value" : "Consigne de sous séquence",
315
- "type" : "VTL|MD" } },
316
-
317
- { "id" : "kanz9wv6-kanzfcd1",
318
- "declarationType" : "INSTRUCTION",
319
- "position" : "AFTER_QUESTION_TEXT",
320
- "label" :
321
- { "value" : "commentaire de sous séquence avec saut de ligne
​
​
commentaire ligne 4",
322
- "type" : "VTL|MD" } } ],
323
- "conditionFilter" :
324
- { "value" : "true",
325
- "type" : "VTL" },
326
- "hierarchy" :
327
- { "sequence" :
328
- { "id" : "kanya0cm",
329
- "page" : "1",
330
- "label" :
331
- { "value" : "Questions comportant des déclarations de différents types",
332
- "type" : "VTL|MD" } },
333
- "subSequence" :
334
- { "id" : "kanz9wv6",
335
- "page" : "11",
336
- "label" :
337
- { "value" : "Statement Item",
338
- "type" : "VTL|MD" } } } },
339
-
340
- { "id" : "kanyscwo",
341
- "componentType" : "Textarea",
342
- "mandatory" : false,
343
- "page" : "12",
344
- "maxLength" : 255,
345
- "label" :
346
- { "value" : "\"➡ 9. \" || \"Q9 avec declarations avant \"",
347
- "type" : "VTL|MD" },
348
- "declarations" :
349
- [
350
- { "id" : "kanyjk4c-SI",
351
- "declarationType" : "STATEMENT",
352
- "position" : "BEFORE_QUESTION_TEXT",
353
- "label" :
354
- { "value" : "je suis statementItem aide avant CAWI",
355
- "type" : "VTL|MD" } },
356
-
357
- { "id" : "kzfedzvq-SI",
358
- "declarationType" : "STATEMENT",
359
- "position" : "BEFORE_QUESTION_TEXT",
360
- "label" :
361
- { "value" : "je suis statementItem consigne avant CAWI",
362
- "type" : "VTL|MD" } } ],
363
- "conditionFilter" :
364
- { "value" : "true",
365
- "type" : "VTL" },
366
- "hierarchy" :
367
- { "sequence" :
368
- { "id" : "kanya0cm",
369
- "page" : "1",
370
- "label" :
371
- { "value" : "Questions comportant des déclarations de différents types",
372
- "type" : "VTL|MD" } },
373
- "subSequence" :
374
- { "id" : "kanz9wv6",
375
- "page" : "11",
376
- "label" :
377
- { "value" : "Statement Item",
378
- "type" : "VTL|MD" } } },
379
- "bindingDependencies" :
380
- [ "Q9" ],
381
- "response" :
382
- { "name" : "Q9" } },
383
-
384
- { "id" : "kanz8hgh",
385
- "componentType" : "Textarea",
386
- "mandatory" : false,
387
- "page" : "13",
388
- "maxLength" : 255,
389
- "label" :
390
- { "value" : "\"➡ 10. \" || \"Q10 avec consigne avant et consigne après, tous modes \"",
391
- "type" : "VTL|MD" },
392
- "declarations" :
393
- [
394
- { "id" : "kanz99uf-SI",
395
- "declarationType" : "STATEMENT",
396
- "position" : "BEFORE_QUESTION_TEXT",
397
- "label" :
398
- { "value" : "consigne avant tous modes",
399
- "type" : "VTL|MD" } },
400
-
401
- { "id" : "kanz8hgh-kanzgjgz",
402
- "declarationType" : "INSTRUCTION",
403
- "position" : "AFTER_QUESTION_TEXT",
404
- "label" :
405
- { "value" : "consigne après tous modes",
406
- "type" : "VTL|MD" } } ],
407
- "conditionFilter" :
408
- { "value" : "true",
409
- "type" : "VTL" },
410
- "hierarchy" :
411
- { "sequence" :
412
- { "id" : "kanya0cm",
413
- "page" : "1",
414
- "label" :
415
- { "value" : "Questions comportant des déclarations de différents types",
416
- "type" : "VTL|MD" } },
417
- "subSequence" :
418
- { "id" : "kanz9wv6",
419
- "page" : "11",
420
- "label" :
421
- { "value" : "Statement Item",
422
- "type" : "VTL|MD" } } },
423
- "bindingDependencies" :
424
- [ "Q10" ],
425
- "response" :
426
- { "name" : "Q10" } },
427
-
428
- { "id" : "kanyrdwp",
429
- "componentType" : "Subsequence",
430
- "page" : "14",
431
- "goToPage" : "14",
432
- "label" :
433
- { "value" : "Autres tests sur les sauts de lignes",
434
- "type" : "VTL|MD" },
435
- "declarations" :
436
- [
437
- { "id" : "kanyrdwp-kzwkhqf7",
438
- "declarationType" : "HELP",
439
- "position" : "AFTER_QUESTION_TEXT",
440
- "label" :
441
- { "value" : "Déclarations avec sauts de ligne",
442
- "type" : "VTL|MD" } } ],
443
- "conditionFilter" :
444
- { "value" : "true",
445
- "type" : "VTL" },
446
- "hierarchy" :
447
- { "sequence" :
448
- { "id" : "kanya0cm",
449
- "page" : "1",
450
- "label" :
451
- { "value" : "Questions comportant des déclarations de différents types",
452
- "type" : "VTL|MD" } },
453
- "subSequence" :
454
- { "id" : "kanyrdwp",
455
- "page" : "14",
456
- "label" :
457
- { "value" : "Autres tests sur les sauts de lignes",
458
- "type" : "VTL|MD" } } } },
459
-
460
- { "id" : "kao1aya7",
461
- "componentType" : "Textarea",
462
- "mandatory" : false,
463
- "page" : "15",
464
- "maxLength" : 255,
465
- "label" :
466
- { "value" : "\"➡ 11. \" || \"Consigne et des sauts de ligne avec des tirets, puis un commentaire\"",
467
- "type" : "VTL|MD" },
468
- "declarations" :
469
- [
470
- { "id" : "kao1aya7-kao0znec",
471
- "declarationType" : "INSTRUCTION",
472
- "position" : "AFTER_QUESTION_TEXT",
473
- "label" :
474
- { "value" : "\"- je suis la consigne ligne 1. **- Je suis la consigne ligne 2 en gras** ​ - Je suis la consigne [ligne 4](. 'infobulle ligne 4') (la ligne 3 est blanche)\" || \"\"",
475
- "type" : "VTL|MD" } },
476
-
477
- { "id" : "kao1aya7-kao1b4v0",
478
- "declarationType" : "INSTRUCTION",
479
- "position" : "AFTER_QUESTION_TEXT",
480
- "label" :
481
- { "value" : "je suis le commentaire sans saut de ligne",
482
- "type" : "VTL|MD" } } ],
483
- "conditionFilter" :
484
- { "value" : "true",
485
- "type" : "VTL" },
486
- "hierarchy" :
487
- { "sequence" :
488
- { "id" : "kanya0cm",
489
- "page" : "1",
490
- "label" :
491
- { "value" : "Questions comportant des déclarations de différents types",
492
- "type" : "VTL|MD" } },
493
- "subSequence" :
494
- { "id" : "kanyrdwp",
495
- "page" : "14",
496
- "label" :
497
- { "value" : "Autres tests sur les sauts de lignes",
498
- "type" : "VTL|MD" } } },
499
- "bindingDependencies" :
500
- [ "MIX1" ],
501
- "response" :
502
- { "name" : "MIX1" } },
503
-
504
- { "id" : "kanyicbv",
505
- "componentType" : "Textarea",
506
- "mandatory" : false,
507
- "page" : "16",
508
- "maxLength" : 255,
509
- "label" :
510
- { "value" : "\"➡ 12. \" || \"Q10 question avec sauts de lignes : a t on tout le libellé ?
ligne 2
ligne 3
​
ligne 5
​
​
ligne 8 \"",
511
- "type" : "VTL|MD" },
512
- "conditionFilter" :
513
- { "value" : "true",
514
- "type" : "VTL" },
515
- "hierarchy" :
516
- { "sequence" :
517
- { "id" : "kanya0cm",
518
- "page" : "1",
519
- "label" :
520
- { "value" : "Questions comportant des déclarations de différents types",
521
- "type" : "VTL|MD" } },
522
- "subSequence" :
523
- { "id" : "kanyrdwp",
524
- "page" : "14",
525
- "label" :
526
- { "value" : "Autres tests sur les sauts de lignes",
527
- "type" : "VTL|MD" } } },
528
- "bindingDependencies" :
529
- [ "MIX2" ],
530
- "response" :
531
- { "name" : "MIX2" } },
532
-
533
- { "id" : "kanyu00b",
534
- "componentType" : "Textarea",
535
- "mandatory" : false,
536
- "page" : "17",
537
- "maxLength" : 255,
538
- "label" :
539
- { "value" : "\"➡ 13. \" || \"Q9 avec 1 consigne et des sauts de ligne, puis un commentaire et des styles \"",
540
- "type" : "VTL|MD" },
541
- "declarations" :
542
- [
543
- { "id" : "kanyu00b-kanz07j8",
544
- "declarationType" : "INSTRUCTION",
545
- "position" : "AFTER_QUESTION_TEXT",
546
- "label" :
547
- { "value" : "je suis la consigne ligne 1.
**Je suis la consigne ligne 2 en gras**
​
Je suis la consigne [ligne 4](. \"infobulle ligne 4\") (la ligne 3 est blanche)",
548
- "type" : "VTL|MD" } },
549
-
550
- { "id" : "kanyu00b-kanys0bt",
551
- "declarationType" : "INSTRUCTION",
552
- "position" : "AFTER_QUESTION_TEXT",
553
- "label" :
554
- { "value" : "je suis le commentaire sans saut de lignes",
555
- "type" : "VTL|MD" } } ],
556
- "conditionFilter" :
557
- { "value" : "true",
558
- "type" : "VTL" },
559
- "hierarchy" :
560
- { "sequence" :
561
- { "id" : "kanya0cm",
562
- "page" : "1",
563
- "label" :
564
- { "value" : "Questions comportant des déclarations de différents types",
565
- "type" : "VTL|MD" } },
566
- "subSequence" :
567
- { "id" : "kanyrdwp",
568
- "page" : "14",
569
- "label" :
570
- { "value" : "Autres tests sur les sauts de lignes",
571
- "type" : "VTL|MD" } } },
572
- "bindingDependencies" :
573
- [ "MIX3" ],
574
- "response" :
575
- { "name" : "MIX3" } },
576
-
577
- { "id" : "kanz18h6",
578
- "componentType" : "CheckboxOne",
579
- "mandatory" : false,
580
- "page" : "18",
581
- "label" :
582
- { "value" : "\"➡ 14. \" || \"Q11 saut de lignes dans les modalités de réponses (ne marche pas je crois)\"",
583
- "type" : "VTL|MD" },
584
- "conditionFilter" :
585
- { "value" : "true",
586
- "type" : "VTL" },
587
- "hierarchy" :
588
- { "sequence" :
589
- { "id" : "kanya0cm",
590
- "page" : "1",
591
- "label" :
592
- { "value" : "Questions comportant des déclarations de différents types",
593
- "type" : "VTL|MD" } },
594
- "subSequence" :
595
- { "id" : "kanyrdwp",
596
- "page" : "14",
597
- "label" :
598
- { "value" : "Autres tests sur les sauts de lignes",
599
- "type" : "VTL|MD" } } },
600
- "bindingDependencies" :
601
- [ "MIX4" ],
602
- "options" :
603
- [
604
- { "value" : "1",
605
- "label" :
606
- { "value" : "modalité 1 sans saut de ligne",
607
- "type" : "VTL|MD" } },
608
-
609
- { "value" : "2",
610
- "label" :
611
- { "value" : "modalité 2 avec sauts de ligne ligne2 ​ ligne 4",
612
- "type" : "VTL|MD" } },
613
-
614
- { "value" : "3",
615
- "label" :
616
- { "value" : "modalité avec style et saut de ligne *ligne 2 en italique* ligne 3",
617
- "type" : "VTL|MD" } } ],
618
- "response" :
619
- { "name" : "MIX4" } } ],
620
- "variables" :
621
- [
622
- { "variableType" : "COLLECTED",
623
- "name" : "Q1",
624
- "values" :
625
- { "PREVIOUS" : null,
626
- "COLLECTED" : null,
627
- "FORCED" : null,
628
- "EDITED" : null,
629
- "INPUTED" : null } },
630
-
631
- { "variableType" : "COLLECTED",
632
- "name" : "Q2",
633
- "values" :
634
- { "PREVIOUS" : null,
635
- "COLLECTED" : null,
636
- "FORCED" : null,
637
- "EDITED" : null,
638
- "INPUTED" : null } },
639
-
640
- { "variableType" : "COLLECTED",
641
- "name" : "Q3",
642
- "values" :
643
- { "PREVIOUS" : null,
644
- "COLLECTED" : null,
645
- "FORCED" : null,
646
- "EDITED" : null,
647
- "INPUTED" : null } },
648
-
649
- { "variableType" : "COLLECTED",
650
- "name" : "Q4",
651
- "values" :
652
- { "PREVIOUS" : null,
653
- "COLLECTED" : null,
654
- "FORCED" : null,
655
- "EDITED" : null,
656
- "INPUTED" : null } },
657
-
658
- { "variableType" : "COLLECTED",
659
- "name" : "Q5",
660
- "values" :
661
- { "PREVIOUS" : null,
662
- "COLLECTED" : null,
663
- "FORCED" : null,
664
- "EDITED" : null,
665
- "INPUTED" : null } },
666
-
667
- { "variableType" : "COLLECTED",
668
- "name" : "Q6",
669
- "values" :
670
- { "PREVIOUS" : null,
671
- "COLLECTED" : null,
672
- "FORCED" : null,
673
- "EDITED" : null,
674
- "INPUTED" : null } },
675
-
676
- { "variableType" : "COLLECTED",
677
- "name" : "Q7",
678
- "values" :
679
- { "PREVIOUS" : null,
680
- "COLLECTED" : null,
681
- "FORCED" : null,
682
- "EDITED" : null,
683
- "INPUTED" : null } },
684
-
685
- { "variableType" : "COLLECTED",
686
- "name" : "Q8",
687
- "values" :
688
- { "PREVIOUS" : null,
689
- "COLLECTED" : null,
690
- "FORCED" : null,
691
- "EDITED" : null,
692
- "INPUTED" : null } },
693
-
694
- { "variableType" : "COLLECTED",
695
- "name" : "Q9",
696
- "values" :
697
- { "PREVIOUS" : null,
698
- "COLLECTED" : null,
699
- "FORCED" : null,
700
- "EDITED" : null,
701
- "INPUTED" : null } },
702
-
703
- { "variableType" : "COLLECTED",
704
- "name" : "Q10",
705
- "values" :
706
- { "PREVIOUS" : null,
707
- "COLLECTED" : null,
708
- "FORCED" : null,
709
- "EDITED" : null,
710
- "INPUTED" : null } },
711
-
712
- { "variableType" : "COLLECTED",
713
- "name" : "MIX1",
714
- "values" :
715
- { "PREVIOUS" : null,
716
- "COLLECTED" : null,
717
- "FORCED" : null,
718
- "EDITED" : null,
719
- "INPUTED" : null } },
720
-
721
- { "variableType" : "COLLECTED",
722
- "name" : "MIX2",
723
- "values" :
724
- { "PREVIOUS" : null,
725
- "COLLECTED" : null,
726
- "FORCED" : null,
727
- "EDITED" : null,
728
- "INPUTED" : null } },
729
-
730
- { "variableType" : "COLLECTED",
731
- "name" : "MIX3",
732
- "values" :
733
- { "PREVIOUS" : null,
734
- "COLLECTED" : null,
735
- "FORCED" : null,
736
- "EDITED" : null,
737
- "INPUTED" : null } },
738
-
739
- { "variableType" : "COLLECTED",
740
- "name" : "MIX4",
741
- "values" :
742
- { "PREVIOUS" : null,
743
- "COLLECTED" : null,
744
- "FORCED" : null,
745
- "EDITED" : null,
746
- "INPUTED" : null } },
747
-
748
- { "variableType" : "CALCULATED",
749
- "name" : "FILTER_RESULT_Q1",
750
- "expression" :
751
- { "value" : "true",
752
- "type" : "VTL" },
753
- "inFilter" : "false" },
754
-
755
- { "variableType" : "CALCULATED",
756
- "name" : "FILTER_RESULT_Q2",
757
- "expression" :
758
- { "value" : "true",
759
- "type" : "VTL" },
760
- "inFilter" : "false" },
761
-
762
- { "variableType" : "CALCULATED",
763
- "name" : "FILTER_RESULT_Q3",
764
- "expression" :
765
- { "value" : "true",
766
- "type" : "VTL" },
767
- "inFilter" : "false" },
768
-
769
- { "variableType" : "CALCULATED",
770
- "name" : "FILTER_RESULT_Q4",
771
- "expression" :
772
- { "value" : "true",
773
- "type" : "VTL" },
774
- "inFilter" : "false" },
775
-
776
- { "variableType" : "CALCULATED",
777
- "name" : "FILTER_RESULT_Q5",
778
- "expression" :
779
- { "value" : "true",
780
- "type" : "VTL" },
781
- "inFilter" : "false" },
782
-
783
- { "variableType" : "CALCULATED",
784
- "name" : "FILTER_RESULT_Q6",
785
- "expression" :
786
- { "value" : "true",
787
- "type" : "VTL" },
788
- "inFilter" : "false" },
789
-
790
- { "variableType" : "CALCULATED",
791
- "name" : "FILTER_RESULT_Q7",
792
- "expression" :
793
- { "value" : "true",
794
- "type" : "VTL" },
795
- "inFilter" : "false" },
796
-
797
- { "variableType" : "CALCULATED",
798
- "name" : "FILTER_RESULT_Q8",
799
- "expression" :
800
- { "value" : "true",
801
- "type" : "VTL" },
802
- "inFilter" : "false" },
803
-
804
- { "variableType" : "CALCULATED",
805
- "name" : "FILTER_RESULT_Q9",
806
- "expression" :
807
- { "value" : "true",
808
- "type" : "VTL" },
809
- "inFilter" : "false" },
810
-
811
- { "variableType" : "CALCULATED",
812
- "name" : "FILTER_RESULT_Q10",
813
- "expression" :
814
- { "value" : "true",
815
- "type" : "VTL" },
816
- "inFilter" : "false" },
817
-
818
- { "variableType" : "CALCULATED",
819
- "name" : "FILTER_RESULT_MIX1",
820
- "expression" :
821
- { "value" : "true",
822
- "type" : "VTL" },
823
- "inFilter" : "false" },
824
-
825
- { "variableType" : "CALCULATED",
826
- "name" : "FILTER_RESULT_MIX2",
827
- "expression" :
828
- { "value" : "true",
829
- "type" : "VTL" },
830
- "inFilter" : "false" },
831
-
832
- { "variableType" : "CALCULATED",
833
- "name" : "FILTER_RESULT_MIX3",
834
- "expression" :
835
- { "value" : "true",
836
- "type" : "VTL" },
837
- "inFilter" : "false" },
838
-
839
- { "variableType" : "CALCULATED",
840
- "name" : "FILTER_RESULT_MIX4",
841
- "expression" :
842
- { "value" : "true",
843
- "type" : "VTL" },
844
- "inFilter" : "false" } ],
845
- "cleaning" :
846
- { },
847
- "resizing" :
848
- { } }
28
+ {
29
+ "id": "kanya0cm-kzfdtx2b",
30
+ "declarationType": "HELP",
31
+ "position": "AFTER_QUESTION_TEXT",
32
+ "label": { "value": "aide de séquence cawi", "type": "VTL|MD" }
33
+ }
34
+ ],
35
+ "conditionFilter": { "value": "true", "type": "VTL" },
36
+ "hierarchy": {
37
+ "sequence": {
38
+ "id": "kanya0cm",
39
+ "page": "1",
40
+ "label": {
41
+ "value": "Questions comportant des déclarations de différents types",
42
+ "type": "VTL|MD"
43
+ }
44
+ }
45
+ }
46
+ },
47
+
48
+ {
49
+ "id": "kzfdxu5g",
50
+ "componentType": "Subsequence",
51
+ "page": "2",
52
+ "goToPage": "2",
53
+ "label": { "value": "Déclarations", "type": "VTL|MD" },
54
+ "declarations": [
55
+ {
56
+ "id": "kzfdxu5g-kzfdtfyi",
57
+ "declarationType": "HELP",
58
+ "position": "AFTER_QUESTION_TEXT",
59
+ "label": { "value": "Aide sous séquence CAWI", "type": "VTL|MD" }
60
+ },
61
+
62
+ {
63
+ "id": "kzfdxu5g-kzfe5gdf",
64
+ "declarationType": "INSTRUCTION",
65
+ "position": "AFTER_QUESTION_TEXT",
66
+ "label": { "value": "Consigne sous séquence CAWI", "type": "VTL|MD" }
67
+ }
68
+ ],
69
+ "conditionFilter": { "value": "true", "type": "VTL" },
70
+ "hierarchy": {
71
+ "sequence": {
72
+ "id": "kanya0cm",
73
+ "page": "1",
74
+ "label": {
75
+ "value": "Questions comportant des déclarations de différents types",
76
+ "type": "VTL|MD"
77
+ }
78
+ },
79
+ "subSequence": {
80
+ "id": "kzfdxu5g",
81
+ "page": "2",
82
+ "label": { "value": "Déclarations", "type": "VTL|MD" }
83
+ }
84
+ }
85
+ },
86
+
87
+ {
88
+ "id": "kanyduey",
89
+ "componentType": "Textarea",
90
+ "mandatory": false,
91
+ "page": "3",
92
+ "maxLength": 255,
93
+ "label": {
94
+ "value": "\" 1. \" || \"Q1 avec déclar consigne CAWI PAPI \"",
95
+ "type": "VTL|MD"
96
+ },
97
+ "declarations": [
98
+ {
99
+ "id": "kanyduey-kanys16a",
100
+ "declarationType": "INSTRUCTION",
101
+ "position": "AFTER_QUESTION_TEXT",
102
+ "label": { "value": "je suis la consigne cawi", "type": "VTL|MD" }
103
+ }
104
+ ],
105
+ "conditionFilter": { "value": "true", "type": "VTL" },
106
+ "hierarchy": {
107
+ "sequence": {
108
+ "id": "kanya0cm",
109
+ "page": "1",
110
+ "label": {
111
+ "value": "Questions comportant des déclarations de différents types",
112
+ "type": "VTL|MD"
113
+ }
114
+ }
115
+ },
116
+ "bindingDependencies": ["Q1"],
117
+ "response": { "name": "Q1" }
118
+ },
119
+
120
+ {
121
+ "id": "kzfdehqy",
122
+ "componentType": "Textarea",
123
+ "mandatory": false,
124
+ "page": "4",
125
+ "maxLength": 255,
126
+ "label": {
127
+ "value": "\" 2. \" || \"Q2 avec déclar consigne CATI \"",
128
+ "type": "VTL|MD"
129
+ },
130
+ "conditionFilter": { "value": "true", "type": "VTL" },
131
+ "hierarchy": {
132
+ "sequence": {
133
+ "id": "kanya0cm",
134
+ "page": "1",
135
+ "label": {
136
+ "value": "Questions comportant des déclarations de différents types",
137
+ "type": "VTL|MD"
138
+ }
139
+ }
140
+ },
141
+ "bindingDependencies": ["Q2"],
142
+ "response": { "name": "Q2" }
143
+ },
144
+
145
+ {
146
+ "id": "kzfdsuhw",
147
+ "componentType": "Textarea",
148
+ "mandatory": false,
149
+ "page": "5",
150
+ "maxLength": 255,
151
+ "label": {
152
+ "value": "\"➡ 3. \" || \"Q3 avec déclar consigne CAPI \"",
153
+ "type": "VTL|MD"
154
+ },
155
+ "conditionFilter": { "value": "true", "type": "VTL" },
156
+ "hierarchy": {
157
+ "sequence": {
158
+ "id": "kanya0cm",
159
+ "page": "1",
160
+ "label": {
161
+ "value": "Questions comportant des déclarations de différents types",
162
+ "type": "VTL|MD"
163
+ }
164
+ }
165
+ },
166
+ "bindingDependencies": ["Q3"],
167
+ "response": { "name": "Q3" }
168
+ },
169
+
170
+ {
171
+ "id": "kanye45b",
172
+ "componentType": "Textarea",
173
+ "mandatory": false,
174
+ "page": "6",
175
+ "maxLength": 255,
176
+ "label": {
177
+ "value": "\"➡ 4. \" || \"Q4 avec déclar aide CAWI \"",
178
+ "type": "VTL|MD"
179
+ },
180
+ "declarations": [
181
+ {
182
+ "id": "kanye45b-kanysl02",
183
+ "declarationType": "HELP",
184
+ "position": "AFTER_QUESTION_TEXT",
185
+ "label": { "value": "Je suis l’aide après CAWI", "type": "VTL|MD" }
186
+ }
187
+ ],
188
+ "conditionFilter": { "value": "true", "type": "VTL" },
189
+ "hierarchy": {
190
+ "sequence": {
191
+ "id": "kanya0cm",
192
+ "page": "1",
193
+ "label": {
194
+ "value": "Questions comportant des déclarations de différents types",
195
+ "type": "VTL|MD"
196
+ }
197
+ }
198
+ },
199
+ "bindingDependencies": ["Q4"],
200
+ "response": { "name": "Q4" }
201
+ },
202
+
203
+ {
204
+ "id": "kzfds450",
205
+ "componentType": "Textarea",
206
+ "mandatory": false,
207
+ "page": "7",
208
+ "maxLength": 255,
209
+ "label": {
210
+ "value": "\" 5. \" || \"Q5 avec déclar aide CATI \"",
211
+ "type": "VTL|MD"
212
+ },
213
+ "conditionFilter": { "value": "true", "type": "VTL" },
214
+ "hierarchy": {
215
+ "sequence": {
216
+ "id": "kanya0cm",
217
+ "page": "1",
218
+ "label": {
219
+ "value": "Questions comportant des déclarations de différents types",
220
+ "type": "VTL|MD"
221
+ }
222
+ }
223
+ },
224
+ "bindingDependencies": ["Q5"],
225
+ "response": { "name": "Q5" }
226
+ },
227
+
228
+ {
229
+ "id": "kzfdnpeb",
230
+ "componentType": "Textarea",
231
+ "mandatory": false,
232
+ "page": "8",
233
+ "maxLength": 255,
234
+ "label": {
235
+ "value": "\"➡ 6. \" || \"Q6 avec déclar aide CAPI \"",
236
+ "type": "VTL|MD"
237
+ },
238
+ "conditionFilter": { "value": "true", "type": "VTL" },
239
+ "hierarchy": {
240
+ "sequence": {
241
+ "id": "kanya0cm",
242
+ "page": "1",
243
+ "label": {
244
+ "value": "Questions comportant des déclarations de différents types",
245
+ "type": "VTL|MD"
246
+ }
247
+ }
248
+ },
249
+ "bindingDependencies": ["Q6"],
250
+ "response": { "name": "Q6" }
251
+ },
252
+
253
+ {
254
+ "id": "kzwo41pm",
255
+ "componentType": "Textarea",
256
+ "mandatory": false,
257
+ "page": "9",
258
+ "maxLength": 255,
259
+ "label": {
260
+ "value": "\" 7. \" || \"Q7avec déclar carte code CAPI\"",
261
+ "type": "VTL|MD"
262
+ },
263
+ "conditionFilter": { "value": "true", "type": "VTL" },
264
+ "hierarchy": {
265
+ "sequence": {
266
+ "id": "kanya0cm",
267
+ "page": "1",
268
+ "label": {
269
+ "value": "Questions comportant des déclarations de différents types",
270
+ "type": "VTL|MD"
271
+ }
272
+ }
273
+ },
274
+ "bindingDependencies": ["Q7"],
275
+ "response": { "name": "Q7" }
276
+ },
277
+
278
+ {
279
+ "id": "kanywetv",
280
+ "componentType": "Textarea",
281
+ "mandatory": false,
282
+ "page": "10",
283
+ "maxLength": 255,
284
+ "label": {
285
+ "value": "\" 8. \" || \"Q8 avec toutes les déclarations apres \"",
286
+ "type": "VTL|MD"
287
+ },
288
+ "declarations": [
289
+ {
290
+ "id": "kanywetv-kzfe9908",
291
+ "declarationType": "HELP",
292
+ "position": "AFTER_QUESTION_TEXT",
293
+ "label": { "value": "je suis l’aide CAWI", "type": "VTL|MD" }
294
+ },
295
+
296
+ {
297
+ "id": "kanywetv-kzfe7p9e",
298
+ "declarationType": "HELP",
299
+ "position": "AFTER_QUESTION_TEXT",
300
+ "label": { "value": "je suis la consigne CAWI", "type": "VTL|MD" }
301
+ }
302
+ ],
303
+ "conditionFilter": { "value": "true", "type": "VTL" },
304
+ "hierarchy": {
305
+ "sequence": {
306
+ "id": "kanya0cm",
307
+ "page": "1",
308
+ "label": {
309
+ "value": "Questions comportant des déclarations de différents types",
310
+ "type": "VTL|MD"
311
+ }
312
+ }
313
+ },
314
+ "bindingDependencies": ["Q8"],
315
+ "response": { "name": "Q8" }
316
+ },
317
+
318
+ {
319
+ "id": "kanz9wv6",
320
+ "componentType": "Subsequence",
321
+ "page": "11",
322
+ "goToPage": "11",
323
+ "label": { "value": "Statement Item", "type": "VTL|MD" },
324
+ "declarations": [
325
+ {
326
+ "id": "kanz9wv6-kanz0yxv",
327
+ "declarationType": "INSTRUCTION",
328
+ "position": "AFTER_QUESTION_TEXT",
329
+ "label": { "value": "Consigne de sous séquence", "type": "VTL|MD" }
330
+ },
331
+
332
+ {
333
+ "id": "kanz9wv6-kanzfcd1",
334
+ "declarationType": "INSTRUCTION",
335
+ "position": "AFTER_QUESTION_TEXT",
336
+ "label": {
337
+ "value": "commentaire de sous séquence avec saut de ligne
​
​
commentaire ligne 4",
338
+ "type": "VTL|MD"
339
+ }
340
+ }
341
+ ],
342
+ "conditionFilter": { "value": "true", "type": "VTL" },
343
+ "hierarchy": {
344
+ "sequence": {
345
+ "id": "kanya0cm",
346
+ "page": "1",
347
+ "label": {
348
+ "value": "Questions comportant des déclarations de différents types",
349
+ "type": "VTL|MD"
350
+ }
351
+ },
352
+ "subSequence": {
353
+ "id": "kanz9wv6",
354
+ "page": "11",
355
+ "label": { "value": "Statement Item", "type": "VTL|MD" }
356
+ }
357
+ }
358
+ },
359
+
360
+ {
361
+ "id": "kanyscwo",
362
+ "componentType": "Textarea",
363
+ "mandatory": false,
364
+ "page": "12",
365
+ "maxLength": 255,
366
+ "label": {
367
+ "value": "\"➡ 9. \" || \"Q9 avec declarations avant \"",
368
+ "type": "VTL|MD"
369
+ },
370
+ "declarations": [
371
+ {
372
+ "id": "kanyjk4c-SI",
373
+ "declarationType": "STATEMENT",
374
+ "position": "BEFORE_QUESTION_TEXT",
375
+ "label": {
376
+ "value": "je suis statementItem aide avant CAWI",
377
+ "type": "VTL|MD"
378
+ }
379
+ },
380
+
381
+ {
382
+ "id": "kzfedzvq-SI",
383
+ "declarationType": "STATEMENT",
384
+ "position": "BEFORE_QUESTION_TEXT",
385
+ "label": {
386
+ "value": "je suis statementItem consigne avant CAWI",
387
+ "type": "VTL|MD"
388
+ }
389
+ }
390
+ ],
391
+ "conditionFilter": { "value": "true", "type": "VTL" },
392
+ "hierarchy": {
393
+ "sequence": {
394
+ "id": "kanya0cm",
395
+ "page": "1",
396
+ "label": {
397
+ "value": "Questions comportant des déclarations de différents types",
398
+ "type": "VTL|MD"
399
+ }
400
+ },
401
+ "subSequence": {
402
+ "id": "kanz9wv6",
403
+ "page": "11",
404
+ "label": { "value": "Statement Item", "type": "VTL|MD" }
405
+ }
406
+ },
407
+ "bindingDependencies": ["Q9"],
408
+ "response": { "name": "Q9" }
409
+ },
410
+
411
+ {
412
+ "id": "kanz8hgh",
413
+ "componentType": "Textarea",
414
+ "mandatory": false,
415
+ "page": "13",
416
+ "maxLength": 255,
417
+ "label": {
418
+ "value": "\"➡ 10. \" || \"Q10 avec consigne avant et consigne après, tous modes \"",
419
+ "type": "VTL|MD"
420
+ },
421
+ "declarations": [
422
+ {
423
+ "id": "kanz99uf-SI",
424
+ "declarationType": "STATEMENT",
425
+ "position": "BEFORE_QUESTION_TEXT",
426
+ "label": { "value": "consigne avant tous modes", "type": "VTL|MD" }
427
+ },
428
+
429
+ {
430
+ "id": "kanz8hgh-kanzgjgz",
431
+ "declarationType": "INSTRUCTION",
432
+ "position": "AFTER_QUESTION_TEXT",
433
+ "label": { "value": "consigne après tous modes", "type": "VTL|MD" }
434
+ }
435
+ ],
436
+ "conditionFilter": { "value": "true", "type": "VTL" },
437
+ "hierarchy": {
438
+ "sequence": {
439
+ "id": "kanya0cm",
440
+ "page": "1",
441
+ "label": {
442
+ "value": "Questions comportant des déclarations de différents types",
443
+ "type": "VTL|MD"
444
+ }
445
+ },
446
+ "subSequence": {
447
+ "id": "kanz9wv6",
448
+ "page": "11",
449
+ "label": { "value": "Statement Item", "type": "VTL|MD" }
450
+ }
451
+ },
452
+ "bindingDependencies": ["Q10"],
453
+ "response": { "name": "Q10" }
454
+ },
455
+
456
+ {
457
+ "id": "kanyrdwp",
458
+ "componentType": "Subsequence",
459
+ "page": "14",
460
+ "goToPage": "14",
461
+ "label": {
462
+ "value": "Autres tests sur les sauts de lignes",
463
+ "type": "VTL|MD"
464
+ },
465
+ "declarations": [
466
+ {
467
+ "id": "kanyrdwp-kzwkhqf7",
468
+ "declarationType": "HELP",
469
+ "position": "AFTER_QUESTION_TEXT",
470
+ "label": {
471
+ "value": "Déclarations avec sauts de ligne",
472
+ "type": "VTL|MD"
473
+ }
474
+ }
475
+ ],
476
+ "conditionFilter": { "value": "true", "type": "VTL" },
477
+ "hierarchy": {
478
+ "sequence": {
479
+ "id": "kanya0cm",
480
+ "page": "1",
481
+ "label": {
482
+ "value": "Questions comportant des déclarations de différents types",
483
+ "type": "VTL|MD"
484
+ }
485
+ },
486
+ "subSequence": {
487
+ "id": "kanyrdwp",
488
+ "page": "14",
489
+ "label": {
490
+ "value": "Autres tests sur les sauts de lignes",
491
+ "type": "VTL|MD"
492
+ }
493
+ }
494
+ }
495
+ },
496
+
497
+ {
498
+ "id": "kao1aya7",
499
+ "componentType": "Textarea",
500
+ "mandatory": false,
501
+ "page": "15",
502
+ "maxLength": 255,
503
+ "label": {
504
+ "value": "\"➡ 11. \" || \"Consigne et des sauts de ligne avec des tirets, puis un commentaire\"",
505
+ "type": "VTL|MD"
506
+ },
507
+ "declarations": [
508
+ {
509
+ "id": "kao1aya7-kao0znec",
510
+ "declarationType": "INSTRUCTION",
511
+ "position": "AFTER_QUESTION_TEXT",
512
+ "label": {
513
+ "value": "\"- je suis la consigne ligne 1. **- Je suis la consigne ligne 2 en gras** ​ - Je suis la consigne [ligne 4](. 'infobulle ligne 4') (la ligne 3 est blanche)\" || \"\"",
514
+ "type": "VTL|MD"
515
+ }
516
+ },
517
+
518
+ {
519
+ "id": "kao1aya7-kao1b4v0",
520
+ "declarationType": "INSTRUCTION",
521
+ "position": "AFTER_QUESTION_TEXT",
522
+ "label": {
523
+ "value": "je suis le commentaire sans saut de ligne",
524
+ "type": "VTL|MD"
525
+ }
526
+ }
527
+ ],
528
+ "conditionFilter": { "value": "true", "type": "VTL" },
529
+ "hierarchy": {
530
+ "sequence": {
531
+ "id": "kanya0cm",
532
+ "page": "1",
533
+ "label": {
534
+ "value": "Questions comportant des déclarations de différents types",
535
+ "type": "VTL|MD"
536
+ }
537
+ },
538
+ "subSequence": {
539
+ "id": "kanyrdwp",
540
+ "page": "14",
541
+ "label": {
542
+ "value": "Autres tests sur les sauts de lignes",
543
+ "type": "VTL|MD"
544
+ }
545
+ }
546
+ },
547
+ "bindingDependencies": ["MIX1"],
548
+ "response": { "name": "MIX1" }
549
+ },
550
+
551
+ {
552
+ "id": "kanyicbv",
553
+ "componentType": "Textarea",
554
+ "mandatory": false,
555
+ "page": "16",
556
+ "maxLength": 255,
557
+ "label": {
558
+ "value": "\"➡ 12. \" || \"Q10 question avec sauts de lignes : a t on tout le libellé ?
ligne 2
ligne 3
​
ligne 5
​
​
ligne 8 \"",
559
+ "type": "VTL|MD"
560
+ },
561
+ "conditionFilter": { "value": "true", "type": "VTL" },
562
+ "hierarchy": {
563
+ "sequence": {
564
+ "id": "kanya0cm",
565
+ "page": "1",
566
+ "label": {
567
+ "value": "Questions comportant des déclarations de différents types",
568
+ "type": "VTL|MD"
569
+ }
570
+ },
571
+ "subSequence": {
572
+ "id": "kanyrdwp",
573
+ "page": "14",
574
+ "label": {
575
+ "value": "Autres tests sur les sauts de lignes",
576
+ "type": "VTL|MD"
577
+ }
578
+ }
579
+ },
580
+ "bindingDependencies": ["MIX2"],
581
+ "response": { "name": "MIX2" }
582
+ },
583
+
584
+ {
585
+ "id": "kanyu00b",
586
+ "componentType": "Textarea",
587
+ "mandatory": false,
588
+ "page": "17",
589
+ "maxLength": 255,
590
+ "label": {
591
+ "value": "\" 13. \" || \"Q9 avec 1 consigne et des sauts de ligne, puis un commentaire et des styles \"",
592
+ "type": "VTL|MD"
593
+ },
594
+ "declarations": [
595
+ {
596
+ "id": "kanyu00b-kanz07j8",
597
+ "declarationType": "INSTRUCTION",
598
+ "position": "AFTER_QUESTION_TEXT",
599
+ "label": {
600
+ "value": "je suis la consigne ligne 1.
**Je suis la consigne ligne 2 en gras**
​
Je suis la consigne [ligne 4](. \"infobulle ligne 4\") (la ligne 3 est blanche)",
601
+ "type": "VTL|MD"
602
+ }
603
+ },
604
+
605
+ {
606
+ "id": "kanyu00b-kanys0bt",
607
+ "declarationType": "INSTRUCTION",
608
+ "position": "AFTER_QUESTION_TEXT",
609
+ "label": {
610
+ "value": "je suis le commentaire sans saut de lignes",
611
+ "type": "VTL|MD"
612
+ }
613
+ }
614
+ ],
615
+ "conditionFilter": { "value": "true", "type": "VTL" },
616
+ "hierarchy": {
617
+ "sequence": {
618
+ "id": "kanya0cm",
619
+ "page": "1",
620
+ "label": {
621
+ "value": "Questions comportant des déclarations de différents types",
622
+ "type": "VTL|MD"
623
+ }
624
+ },
625
+ "subSequence": {
626
+ "id": "kanyrdwp",
627
+ "page": "14",
628
+ "label": {
629
+ "value": "Autres tests sur les sauts de lignes",
630
+ "type": "VTL|MD"
631
+ }
632
+ }
633
+ },
634
+ "bindingDependencies": ["MIX3"],
635
+ "response": { "name": "MIX3" }
636
+ },
637
+
638
+ {
639
+ "id": "kanz18h6",
640
+ "componentType": "CheckboxOne",
641
+ "mandatory": false,
642
+ "page": "18",
643
+ "label": {
644
+ "value": "\"➡ 14. \" || \"Q11 saut de lignes dans les modalités de réponses (ne marche pas je crois)\"",
645
+ "type": "VTL|MD"
646
+ },
647
+ "conditionFilter": { "value": "true", "type": "VTL" },
648
+ "hierarchy": {
649
+ "sequence": {
650
+ "id": "kanya0cm",
651
+ "page": "1",
652
+ "label": {
653
+ "value": "Questions comportant des déclarations de différents types",
654
+ "type": "VTL|MD"
655
+ }
656
+ },
657
+ "subSequence": {
658
+ "id": "kanyrdwp",
659
+ "page": "14",
660
+ "label": {
661
+ "value": "Autres tests sur les sauts de lignes",
662
+ "type": "VTL|MD"
663
+ }
664
+ }
665
+ },
666
+ "bindingDependencies": ["MIX4"],
667
+ "options": [
668
+ {
669
+ "value": "1",
670
+ "label": {
671
+ "value": "modalité 1 sans saut de ligne",
672
+ "type": "VTL|MD"
673
+ }
674
+ },
675
+
676
+ {
677
+ "value": "2",
678
+ "label": {
679
+ "value": "modalité 2 avec sauts de ligne ligne2 ​ ligne 4",
680
+ "type": "VTL|MD"
681
+ }
682
+ },
683
+
684
+ {
685
+ "value": "3",
686
+ "label": {
687
+ "value": "modalité avec style et saut de ligne *ligne 2 en italique* ligne 3",
688
+ "type": "VTL|MD"
689
+ }
690
+ }
691
+ ],
692
+ "response": { "name": "MIX4" }
693
+ }
694
+ ],
695
+ "variables": [
696
+ {
697
+ "variableType": "COLLECTED",
698
+ "name": "Q1",
699
+ "values": {
700
+ "PREVIOUS": null,
701
+ "COLLECTED": null,
702
+ "FORCED": null,
703
+ "EDITED": null,
704
+ "INPUTED": null
705
+ }
706
+ },
707
+
708
+ {
709
+ "variableType": "COLLECTED",
710
+ "name": "Q2",
711
+ "values": {
712
+ "PREVIOUS": null,
713
+ "COLLECTED": null,
714
+ "FORCED": null,
715
+ "EDITED": null,
716
+ "INPUTED": null
717
+ }
718
+ },
719
+
720
+ {
721
+ "variableType": "COLLECTED",
722
+ "name": "Q3",
723
+ "values": {
724
+ "PREVIOUS": null,
725
+ "COLLECTED": null,
726
+ "FORCED": null,
727
+ "EDITED": null,
728
+ "INPUTED": null
729
+ }
730
+ },
731
+
732
+ {
733
+ "variableType": "COLLECTED",
734
+ "name": "Q4",
735
+ "values": {
736
+ "PREVIOUS": null,
737
+ "COLLECTED": null,
738
+ "FORCED": null,
739
+ "EDITED": null,
740
+ "INPUTED": null
741
+ }
742
+ },
743
+
744
+ {
745
+ "variableType": "COLLECTED",
746
+ "name": "Q5",
747
+ "values": {
748
+ "PREVIOUS": null,
749
+ "COLLECTED": null,
750
+ "FORCED": null,
751
+ "EDITED": null,
752
+ "INPUTED": null
753
+ }
754
+ },
755
+
756
+ {
757
+ "variableType": "COLLECTED",
758
+ "name": "Q6",
759
+ "values": {
760
+ "PREVIOUS": null,
761
+ "COLLECTED": null,
762
+ "FORCED": null,
763
+ "EDITED": null,
764
+ "INPUTED": null
765
+ }
766
+ },
767
+
768
+ {
769
+ "variableType": "COLLECTED",
770
+ "name": "Q7",
771
+ "values": {
772
+ "PREVIOUS": null,
773
+ "COLLECTED": null,
774
+ "FORCED": null,
775
+ "EDITED": null,
776
+ "INPUTED": null
777
+ }
778
+ },
779
+
780
+ {
781
+ "variableType": "COLLECTED",
782
+ "name": "Q8",
783
+ "values": {
784
+ "PREVIOUS": null,
785
+ "COLLECTED": null,
786
+ "FORCED": null,
787
+ "EDITED": null,
788
+ "INPUTED": null
789
+ }
790
+ },
791
+
792
+ {
793
+ "variableType": "COLLECTED",
794
+ "name": "Q9",
795
+ "values": {
796
+ "PREVIOUS": null,
797
+ "COLLECTED": null,
798
+ "FORCED": null,
799
+ "EDITED": null,
800
+ "INPUTED": null
801
+ }
802
+ },
803
+
804
+ {
805
+ "variableType": "COLLECTED",
806
+ "name": "Q10",
807
+ "values": {
808
+ "PREVIOUS": null,
809
+ "COLLECTED": null,
810
+ "FORCED": null,
811
+ "EDITED": null,
812
+ "INPUTED": null
813
+ }
814
+ },
815
+
816
+ {
817
+ "variableType": "COLLECTED",
818
+ "name": "MIX1",
819
+ "values": {
820
+ "PREVIOUS": null,
821
+ "COLLECTED": null,
822
+ "FORCED": null,
823
+ "EDITED": null,
824
+ "INPUTED": null
825
+ }
826
+ },
827
+
828
+ {
829
+ "variableType": "COLLECTED",
830
+ "name": "MIX2",
831
+ "values": {
832
+ "PREVIOUS": null,
833
+ "COLLECTED": null,
834
+ "FORCED": null,
835
+ "EDITED": null,
836
+ "INPUTED": null
837
+ }
838
+ },
839
+
840
+ {
841
+ "variableType": "COLLECTED",
842
+ "name": "MIX3",
843
+ "values": {
844
+ "PREVIOUS": null,
845
+ "COLLECTED": null,
846
+ "FORCED": null,
847
+ "EDITED": null,
848
+ "INPUTED": null
849
+ }
850
+ },
851
+
852
+ {
853
+ "variableType": "COLLECTED",
854
+ "name": "MIX4",
855
+ "values": {
856
+ "PREVIOUS": null,
857
+ "COLLECTED": null,
858
+ "FORCED": null,
859
+ "EDITED": null,
860
+ "INPUTED": null
861
+ }
862
+ },
863
+
864
+ {
865
+ "variableType": "CALCULATED",
866
+ "name": "FILTER_RESULT_Q1",
867
+ "expression": { "value": "true", "type": "VTL" },
868
+ "inFilter": "false"
869
+ },
870
+
871
+ {
872
+ "variableType": "CALCULATED",
873
+ "name": "FILTER_RESULT_Q2",
874
+ "expression": { "value": "true", "type": "VTL" },
875
+ "inFilter": "false"
876
+ },
877
+
878
+ {
879
+ "variableType": "CALCULATED",
880
+ "name": "FILTER_RESULT_Q3",
881
+ "expression": { "value": "true", "type": "VTL" },
882
+ "inFilter": "false"
883
+ },
884
+
885
+ {
886
+ "variableType": "CALCULATED",
887
+ "name": "FILTER_RESULT_Q4",
888
+ "expression": { "value": "true", "type": "VTL" },
889
+ "inFilter": "false"
890
+ },
891
+
892
+ {
893
+ "variableType": "CALCULATED",
894
+ "name": "FILTER_RESULT_Q5",
895
+ "expression": { "value": "true", "type": "VTL" },
896
+ "inFilter": "false"
897
+ },
898
+
899
+ {
900
+ "variableType": "CALCULATED",
901
+ "name": "FILTER_RESULT_Q6",
902
+ "expression": { "value": "true", "type": "VTL" },
903
+ "inFilter": "false"
904
+ },
905
+
906
+ {
907
+ "variableType": "CALCULATED",
908
+ "name": "FILTER_RESULT_Q7",
909
+ "expression": { "value": "true", "type": "VTL" },
910
+ "inFilter": "false"
911
+ },
912
+
913
+ {
914
+ "variableType": "CALCULATED",
915
+ "name": "FILTER_RESULT_Q8",
916
+ "expression": { "value": "true", "type": "VTL" },
917
+ "inFilter": "false"
918
+ },
919
+
920
+ {
921
+ "variableType": "CALCULATED",
922
+ "name": "FILTER_RESULT_Q9",
923
+ "expression": { "value": "true", "type": "VTL" },
924
+ "inFilter": "false"
925
+ },
926
+
927
+ {
928
+ "variableType": "CALCULATED",
929
+ "name": "FILTER_RESULT_Q10",
930
+ "expression": { "value": "true", "type": "VTL" },
931
+ "inFilter": "false"
932
+ },
933
+
934
+ {
935
+ "variableType": "CALCULATED",
936
+ "name": "FILTER_RESULT_MIX1",
937
+ "expression": { "value": "true", "type": "VTL" },
938
+ "inFilter": "false"
939
+ },
940
+
941
+ {
942
+ "variableType": "CALCULATED",
943
+ "name": "FILTER_RESULT_MIX2",
944
+ "expression": { "value": "true", "type": "VTL" },
945
+ "inFilter": "false"
946
+ },
947
+
948
+ {
949
+ "variableType": "CALCULATED",
950
+ "name": "FILTER_RESULT_MIX3",
951
+ "expression": { "value": "true", "type": "VTL" },
952
+ "inFilter": "false"
953
+ },
954
+
955
+ {
956
+ "variableType": "CALCULATED",
957
+ "name": "FILTER_RESULT_MIX4",
958
+ "expression": { "value": "true", "type": "VTL" },
959
+ "inFilter": "false"
960
+ }
961
+ ],
962
+ "cleaning": {},
963
+ "resizing": {}
964
+ }