@inseefr/lunatic 2.7.20-rc.2 → 3.0.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 (856) hide show
  1. package/lib/components/CheckboxBoolean/CheckboxBoolean.js +45 -0
  2. package/lib/components/{checkbox/checkbox-boolean/html/checkbox-boolean.spec.js → CheckboxBoolean/CheckboxBoolean.spec.js} +25 -14
  3. package/lib/components/CheckboxGroup/CheckboxGroup.js +50 -0
  4. package/lib/components/CheckboxGroup/CheckboxGroup.scss +13 -0
  5. package/lib/components/CheckboxGroup/CustomCheckboxGroup.js +45 -0
  6. package/lib/components/{checkbox/checkbox-group/html/checkbox-group-content.spec.js → CheckboxGroup/CustomCheckboxGroup.spec.js} +2 -3
  7. package/lib/components/CheckboxOne/CheckboxOne.js +39 -0
  8. package/lib/components/{checkbox/checkbox-one/html/checkbox-one.spec.js → CheckboxOne/CheckboxOne.spec.js} +14 -7
  9. package/lib/components/{component-set/lunatic-component-set.js → ComponentSet/ComponentSet.js} +47 -35
  10. package/lib/components/{datepicker/html/datepicker.js → Datepicker/Datepicker.js} +29 -18
  11. package/lib/components/Datepicker/Datepicker.spec.js +92 -0
  12. package/lib/components/{datepicker/html/__snapshots__/datepicker.spec.tsx.snap → Datepicker/__snapshots__/Datepicker.spec.tsx.snap} +0 -63
  13. package/lib/components/Dropdown/Dropdown.js +63 -0
  14. package/lib/components/Dropdown/Dropdown.spec.js +49 -0
  15. package/lib/components/{dropdown/html/dropdown-writable/dropdown-writable.js → Dropdown/DropdownWritable.js} +10 -12
  16. package/lib/components/{dropdown/html/__snapshots__/dropdown.spec.tsx.snap → Dropdown/__snapshots__/Dropdown.spec.tsx.snap} +3 -3
  17. package/lib/components/Dropdown/helpers.js +94 -0
  18. package/lib/components/{dropdown/html/dropdown-simple/simple-label-renderer.js → Dropdown/renderer/SimpleLabelRenderer.js} +2 -3
  19. package/lib/components/{dropdown/html/dropdown-simple/simple-option-renderer.js → Dropdown/renderer/SimpleOptionRenderer.js} +2 -4
  20. package/lib/components/{dropdown/html/dropdown-writable/writable-label-renderer.js → Dropdown/renderer/WritableLabelRenderer.js} +2 -3
  21. package/lib/components/{dropdown/html/dropdown-writable/writable-option-renderer.js → Dropdown/renderer/WritableOptionRenderer.js} +8 -11
  22. package/lib/components/{duration/durationInput.js → Duration/Duration.js} +14 -11
  23. package/lib/components/{filter-description/component.js → FilterDescription/FilterDescription.js} +4 -5
  24. package/lib/components/{filter-description/component.spec.js → FilterDescription/FilterDescription.spec.js} +3 -5
  25. package/lib/components/Input/Input.js +62 -0
  26. package/lib/components/{input/html/input.spec.js → Input/Input.spec.js} +26 -23
  27. package/lib/components/InputNumber/InputNumber.js +70 -0
  28. package/lib/components/{input-number/html/input-number.spec.js → InputNumber/InputNumber.spec.js} +40 -46
  29. package/lib/components/{input-number/html/input-number-thousand.js → InputNumber/InputNumberThousand.js} +4 -5
  30. package/lib/components/{input-number/html/__snapshots__/input-number.spec.tsx.snap → InputNumber/__snapshots__/InputNumber.spec.tsx.snap} +3 -3
  31. package/lib/components/{loop/block-for-loop.js → Loop/Loop.js} +18 -22
  32. package/lib/components/{lunatic-components.js → LunaticComponents.js} +22 -7
  33. package/lib/components/{pairwise-links/pairwise-links.js → PairwiseLinks/PairwiseLinks.js} +13 -16
  34. package/lib/components/Question/Question.js +45 -0
  35. package/lib/components/Radio/Radio.js +41 -0
  36. package/lib/components/{loop/roster-for-loop/roster-for-loop.js → RosterForLoop/RosterForLoop.js} +33 -37
  37. package/lib/components/{loop/roster-for-loop/roster-for-loop.spec.js → RosterForLoop/RosterForLoop.spec.js} +2 -2
  38. package/lib/components/{roundabout/roundabout.js → Roundabout/CustomRoundabout.js} +12 -18
  39. package/lib/components/{roundabout/lunatic-roundabout.js → Roundabout/Roundabout.js} +7 -8
  40. package/lib/components/{roundabout/components/roundabout-it-button.js → Roundabout/RoundaboutItButton.js} +40 -41
  41. package/lib/components/{roundabout/components/roundabout-it-button.spec.js → Roundabout/RoundaboutItButton.spec.js} +10 -11
  42. package/lib/components/{roundabout/redirect.js → Roundabout/RoundaboutRedirect.js} +3 -4
  43. package/lib/components/Roundabout/extra.js +44 -0
  44. package/lib/components/{roundabout → Roundabout}/redirect.spec.js +3 -5
  45. package/lib/components/{roundabout → Roundabout}/roundabout.spec.js +4 -4
  46. package/lib/components/Sequence/Sequence.js +33 -0
  47. package/lib/components/Subsequence/Subsequence.js +27 -0
  48. package/lib/components/{subsequence/subsequence.spec.js → Subsequence/Subsequence.spec.js} +9 -30
  49. package/lib/components/{suggester/html/suggester.js → Suggester/CustomSuggester.js} +9 -10
  50. package/lib/components/Suggester/Suggester.js +77 -0
  51. package/lib/components/{suggester/html/default-style.scss → Suggester/Suggester.scss} +3 -3
  52. package/lib/components/{suggester/idb-suggester/suggester-notification.js → Suggester/SuggesterNotification.js} +16 -16
  53. package/lib/components/{suggester/idb-suggester/suggester-status.js → Suggester/SuggesterStatus.js} +5 -7
  54. package/lib/components/{suggester/searching/create-searching.js → Suggester/helpers.js} +4 -5
  55. package/lib/components/{summary/lunatic-summary.js → Summary/Summary.js} +72 -59
  56. package/lib/components/{switch/html/switch.js → Switch/Switch.js} +32 -16
  57. package/lib/components/Table/Table.js +65 -0
  58. package/lib/components/Textarea/Textarea.js +60 -0
  59. package/lib/components/Textarea/Textarea.spec.js +46 -0
  60. package/lib/components/library.js +55 -0
  61. package/lib/components/{button/lunatic-button.js → shared/Button/Button.js} +7 -7
  62. package/lib/components/{button/lunatic-button.spec.js → shared/Button/Button.spec.js} +10 -12
  63. package/lib/components/{commons/components/fab/fab.js → shared/Button/IconButton.js} +5 -6
  64. package/lib/components/{commons/components/fab/fab.scss → shared/Button/IconButton.scss} +1 -0
  65. package/lib/components/{commons/components/fab/fab.spec.js → shared/Button/IconButton.spec.js} +9 -9
  66. package/lib/components/{checkbox/commons/checkbox-option.js → shared/Checkbox/CheckboxOption.js} +9 -8
  67. package/lib/components/{checkbox/commons/checkbox-option.spec.js → shared/Checkbox/CheckboxOption.spec.js} +8 -9
  68. package/lib/components/{commons/components/combo-box/combo-box.js → shared/Combobox/Combobox.js} +26 -26
  69. package/lib/components/{commons/components/combo-box/combo-box.stories.js → shared/Combobox/Combobox.stories.js} +6 -7
  70. package/lib/components/{commons/components/combo-box/combo-box-container.js → shared/Combobox/ComboboxContainer.js} +6 -7
  71. package/lib/components/{commons/components/combo-box/combo-box-container.spec.js → shared/Combobox/ComboboxContainer.spec.js} +6 -8
  72. package/lib/components/{commons/components/combo-box/combo-box-content.js → shared/Combobox/ComboboxContent.js} +11 -14
  73. package/lib/components/{commons/components/combo-box/combo-box-content-box.js → shared/Combobox/ComboboxContentBox.js} +4 -6
  74. package/lib/components/{commons/components/combo-box/panel/combo-box-option.js → shared/Combobox/Panel/ComboboxOption.js} +4 -5
  75. package/lib/components/{commons/components/combo-box/panel/combo-box-option.spec.js → shared/Combobox/Panel/ComboboxOption.spec.js} +6 -8
  76. package/lib/components/{commons/components/combo-box/panel/option-container.js → shared/Combobox/Panel/ComboboxOptionContainer.js} +2 -2
  77. package/lib/components/{commons/components/combo-box/panel/option-container.spec.js → shared/Combobox/Panel/ComboboxOptionContainer.spec.js} +4 -4
  78. package/lib/components/{commons/components/combo-box/panel/panel.js → shared/Combobox/Panel/ComboboxPanel.js} +11 -9
  79. package/lib/components/{commons/components/combo-box/panel/panel.spec.js → shared/Combobox/Panel/ComboboxPanel.spec.js} +5 -5
  80. package/lib/components/{commons/components/combo-box/panel/panel-container.js → shared/Combobox/Panel/ComboboxPanelContainer.js} +4 -5
  81. package/lib/components/{commons/components/combo-box/panel/panel-container.spec.js → shared/Combobox/Panel/ComboboxPanelContainer.spec.js} +7 -8
  82. package/lib/components/{commons/components/combo-box/selection/clear-button.js → shared/Combobox/Selection/ComboboxClearButton.js} +8 -8
  83. package/lib/components/{commons/components/combo-box/selection/clear-button.spec.js → shared/Combobox/Selection/ComboboxClearButton.spec.js} +9 -9
  84. package/lib/components/{commons/components/combo-box/selection/input.js → shared/Combobox/Selection/ComboboxInput.js} +4 -4
  85. package/lib/components/{commons/components/combo-box/selection/combo-box-label-selection.js → shared/Combobox/Selection/ComboboxLabelSelection.js} +8 -11
  86. package/lib/components/{commons/components/combo-box/selection/combo-box-label-selection.spec.js → shared/Combobox/Selection/ComboboxLabelSelection.spec.js} +5 -7
  87. package/lib/components/shared/Combobox/Selection/ComboboxSelection.js +68 -0
  88. package/lib/components/{commons/components/combo-box/selection/selection.spec.js → shared/Combobox/Selection/ComboboxSelection.spec.js} +7 -7
  89. package/lib/components/{commons/components/combo-box/selection/__snapshots__/selection.spec.tsx.snap → shared/Combobox/Selection/__snapshots__/ComboboxSelection.spec.tsx.snap} +1 -9
  90. package/lib/components/shared/Combobox/index.js +1 -0
  91. package/lib/components/{commons/components/errors/errors.js → shared/ComponentErrors/ComponentErrors.js} +9 -8
  92. package/lib/components/shared/ComponentErrors/ComponentErrors.spec.js +44 -0
  93. package/lib/components/shared/ComponentWrapper.js +68 -0
  94. package/lib/components/shared/Declarations/Declarations.js +47 -0
  95. package/lib/components/{declarations/declarations.spec.js → shared/Declarations/Declarations.spec.js} +7 -8
  96. package/lib/components/shared/Fieldset/Fieldset.js +44 -0
  97. package/lib/components/shared/Fieldset/Fieldset.spec.js +37 -0
  98. package/lib/components/{commons/create-customizable-field.js → shared/HOC/customizedComponent.js} +9 -8
  99. package/lib/components/{commons/icons → shared/Icons}/index.js +4 -4
  100. package/lib/components/shared/Label/Label.js +36 -0
  101. package/lib/components/shared/Label/Label.spec.js +45 -0
  102. package/lib/components/shared/LabelDescription.js +21 -0
  103. package/lib/components/{commons/components/md-label/md-label.js → shared/MDLabel/MDLabel.js} +8 -9
  104. package/lib/components/{commons/components/md-label/md-label.spec.js → shared/MDLabel/MDLabel.spec.js} +8 -8
  105. package/lib/components/{commons/components/md-label/link.js → shared/MDLabel/MDLabelLink.js} +13 -9
  106. package/lib/components/{commons/components/md-label/router-link.js → shared/MDLabel/RouterLink.js} +6 -8
  107. package/lib/components/shared/MDLabel/generateUniqueId.js +1 -0
  108. package/lib/components/{commons/components/missing/missing.js → shared/Missing/Missing.js} +18 -21
  109. package/lib/components/{commons/components/missing/missing.spec.js → shared/Missing/Missing.spec.js} +4 -4
  110. package/lib/components/shared/ModalControls/ModalControls.js +85 -0
  111. package/lib/components/{modal-controls/modal-controls.spec.js → shared/ModalControls/ModalControls.spec.js} +4 -5
  112. package/lib/components/{suggester/html/notification.js → shared/Notification.js} +4 -4
  113. package/lib/components/shared/Radio/RadioGroup.js +67 -0
  114. package/lib/components/{radio/html/radio-option.js → shared/Radio/RadioOption.js} +11 -10
  115. package/lib/components/{radio/html/radio-option.spec.js → shared/Radio/RadioOption.spec.js} +9 -10
  116. package/lib/components/{commons/components/html-table/table.js → shared/Table/Table.js} +5 -5
  117. package/lib/components/{commons/components/html-table/table.spec.js → shared/Table/Table.spec.js} +3 -3
  118. package/lib/components/{table/table-header.js → shared/Table/TableHeader.js} +6 -4
  119. package/lib/components/{commons/components/html-table/tbody.js → shared/Table/Tbody.js} +4 -4
  120. package/lib/components/{commons/components/html-table/tbody.spec.js → shared/Table/Tbody.spec.js} +3 -3
  121. package/lib/components/{commons/components/html-table/td.js → shared/Table/Td.js} +4 -4
  122. package/lib/components/{commons/components/html-table/td.spec.js → shared/Table/Td.spec.js} +2 -2
  123. package/lib/components/{commons/components/html-table/th.js → shared/Table/Th.js} +4 -4
  124. package/lib/components/{commons/components/html-table/th.spec.js → shared/Table/Th.spec.js} +5 -5
  125. package/lib/components/{commons/components/html-table/thead.js → shared/Table/Thead.js} +4 -4
  126. package/lib/components/{commons/components/html-table/thead.spec.js → shared/Table/Thead.spec.js} +5 -5
  127. package/lib/components/{commons/components/html-table/tr.js → shared/Table/Tr.js} +4 -4
  128. package/lib/components/{commons/components/html-table/tr.spec.js → shared/Table/Tr.spec.js} +3 -3
  129. package/lib/components/{commons/components/html-table → shared/Table}/index.js +19 -12
  130. package/lib/components/{commons/components/variable-status/variable-status.js → shared/VariableStatus/VariableStatus.js} +9 -24
  131. package/lib/components/{commons/components/variable-status/variable-status.scss → shared/VariableStatus/VariableStatus.scss} +1 -1
  132. package/lib/components/{commons/components/variable-status/variable-status.spec.js → shared/VariableStatus/VariableStatus.spec.js} +3 -3
  133. package/lib/components/{commons/components → shared/suggester-loader-widget}/dragger/dragger.js +4 -3
  134. package/lib/components/{commons/components → shared/suggester-loader-widget}/is-network/is-network.js +2 -2
  135. package/lib/components/{suggester-loader-widget → shared/suggester-loader-widget}/loader-row.js +5 -5
  136. package/lib/components/{suggester-loader-widget → shared/suggester-loader-widget}/loader.js +3 -3
  137. package/lib/components/{suggester-loader-widget → shared/suggester-loader-widget}/widget.js +7 -7
  138. package/lib/components/type-custom.js +5 -0
  139. package/lib/{utils/store-tools/constantes.js → constants/indexedDBStore.js} +2 -2
  140. package/lib/{components/commons/use-document-add-event-listener.js → hooks/useDocumentEvent.js} +3 -3
  141. package/lib/{components/commons/use-options-keydown.js → hooks/useListKeyboardHandler.js} +6 -4
  142. package/lib/{components/suggester/idb-suggester/check-store.js → hooks/useSuggesterInfo.js} +24 -69
  143. package/lib/i18n/build-dictionary.js +2 -2
  144. package/lib/i18n/index.js +2 -2
  145. package/lib/index.js +24 -25
  146. package/lib/src/components/CheckboxBoolean/CheckboxBoolean.d.ts +6 -0
  147. package/lib/src/components/CheckboxGroup/CheckboxGroup.d.ts +11 -0
  148. package/lib/src/components/CheckboxGroup/CustomCheckboxGroup.d.ts +13 -0
  149. package/lib/src/components/CheckboxOne/CheckboxOne.d.ts +12 -0
  150. package/lib/src/components/ComponentSet/ComponentSet.d.ts +7 -0
  151. package/lib/src/components/Datepicker/Datepicker.d.ts +12 -0
  152. package/lib/src/components/Dropdown/Dropdown.d.ts +13 -0
  153. package/lib/src/components/Dropdown/DropdownWritable.d.ts +17 -0
  154. package/lib/src/components/Dropdown/helpers.d.ts +19 -0
  155. package/lib/src/components/Dropdown/renderer/SimpleLabelRenderer.d.ts +8 -0
  156. package/lib/src/components/Dropdown/renderer/SimpleOptionRenderer.d.ts +7 -0
  157. package/lib/src/components/Dropdown/renderer/WritableLabelRenderer.d.ts +8 -0
  158. package/lib/src/components/Dropdown/renderer/WritableOptionRenderer.d.ts +8 -0
  159. package/lib/src/components/Duration/Duration.d.ts +8 -0
  160. package/lib/src/components/{filter-description/component.d.ts → FilterDescription/FilterDescription.d.ts} +2 -2
  161. package/lib/src/components/Input/Input.d.ts +9 -0
  162. package/lib/src/components/InputNumber/InputNumber.d.ts +11 -0
  163. package/lib/src/components/{input-number/html/input-number-thousand.d.ts → InputNumber/InputNumberThousand.d.ts} +2 -2
  164. package/lib/src/components/{loop/block-for-loop.d.ts → Loop/Loop.d.ts} +2 -2
  165. package/lib/src/components/{question → Question}/Question.d.ts +2 -2
  166. package/lib/src/components/{radio/lunatic-radio-group.d.ts → Radio/Radio.d.ts} +1 -2
  167. package/lib/src/components/{loop/roster-for-loop/roster-for-loop.d.ts → RosterForLoop/RosterForLoop.d.ts} +5 -3
  168. package/lib/src/components/{roundabout/roundabout.d.ts → Roundabout/CustomRoundabout.d.ts} +2 -2
  169. package/lib/src/components/Roundabout/Roundabout.d.ts +6 -0
  170. package/lib/src/components/{roundabout/components/roundabout-it-button.d.ts → Roundabout/RoundaboutItButton.d.ts} +2 -2
  171. package/lib/src/components/Roundabout/RoundaboutRedirect.d.ts +6 -0
  172. package/lib/src/components/Roundabout/extra.d.ts +14 -0
  173. package/lib/src/components/Sequence/Sequence.d.ts +3 -0
  174. package/lib/src/components/Subsequence/Subsequence.d.ts +2 -0
  175. package/lib/src/components/{suggester/html/suggester.d.ts → Suggester/CustomSuggester.d.ts} +6 -7
  176. package/lib/src/components/Suggester/Suggester.d.ts +3 -0
  177. package/lib/src/components/{suggester/idb-suggester/suggester-notification.d.ts → Suggester/SuggesterNotification.d.ts} +3 -3
  178. package/lib/src/components/{suggester/idb-suggester/suggester-status.d.ts → Suggester/SuggesterStatus.d.ts} +1 -1
  179. package/lib/src/components/Suggester/helpers.d.ts +6 -0
  180. package/lib/src/components/Summary/Summary.d.ts +25 -0
  181. package/lib/src/components/Switch/Switch.d.ts +10 -0
  182. package/lib/src/components/Table/Table.d.ts +2 -0
  183. package/lib/src/components/Textarea/Textarea.d.ts +11 -0
  184. package/lib/src/components/library.d.ts +161 -0
  185. package/lib/src/components/{button/lunatic-button.d.ts → shared/Button/Button.d.ts} +3 -3
  186. package/lib/src/components/shared/Button/IconButton.d.ts +7 -0
  187. package/lib/src/components/{checkbox/commons/checkbox-option.d.ts → shared/Checkbox/CheckboxOption.d.ts} +2 -3
  188. package/lib/src/components/shared/Combobox/Combobox.d.ts +21 -0
  189. package/lib/src/components/shared/Combobox/Combobox.stories.d.ts +6 -0
  190. package/lib/src/components/{commons/components/combo-box/combo-box-container.d.ts → shared/Combobox/ComboboxContainer.d.ts} +3 -3
  191. package/lib/src/components/{commons/components/combo-box/combo-box-content.d.ts → shared/Combobox/ComboboxContent.d.ts} +2 -2
  192. package/lib/src/components/shared/Combobox/ComboboxContentBox.d.ts +7 -0
  193. package/lib/src/components/shared/Combobox/ComboboxType.d.ts +50 -0
  194. package/lib/src/components/shared/Combobox/Panel/ComboboxOption.d.ts +8 -0
  195. package/lib/src/components/{commons/components/combo-box/panel/option-container.d.ts → shared/Combobox/Panel/ComboboxOptionContainer.d.ts} +1 -1
  196. package/lib/src/components/shared/Combobox/Panel/ComboboxPanel.d.ts +5 -0
  197. package/lib/src/components/{commons/components/combo-box/panel/panel-container.d.ts → shared/Combobox/Panel/ComboboxPanelContainer.d.ts} +2 -2
  198. package/lib/src/components/{commons/components/combo-box/selection/clear-button.d.ts → shared/Combobox/Selection/ComboboxClearButton.d.ts} +1 -1
  199. package/lib/src/components/{commons/components/combo-box/selection/input.d.ts → shared/Combobox/Selection/ComboboxInput.d.ts} +1 -2
  200. package/lib/src/components/shared/Combobox/Selection/ComboboxLabelSelection.d.ts +11 -0
  201. package/lib/src/components/shared/Combobox/Selection/ComboboxSelection.d.ts +6 -0
  202. package/lib/src/components/shared/Combobox/index.d.ts +0 -0
  203. package/lib/src/components/shared/ComponentErrors/ComponentErrors.d.ts +15 -0
  204. package/lib/src/components/shared/ComponentWrapper.d.ts +26 -0
  205. package/lib/src/components/shared/Declarations/Declarations.d.ts +17 -0
  206. package/lib/src/components/shared/Fieldset/Fieldset.d.ts +10 -0
  207. package/lib/src/components/shared/HOC/customizedComponent.d.ts +5 -0
  208. package/lib/src/components/shared/Icons/index.d.ts +10 -0
  209. package/lib/src/components/shared/Label/Label.d.ts +11 -0
  210. package/lib/src/components/shared/LabelDescription.d.ts +7 -0
  211. package/lib/src/components/{commons/components/md-label/md-label.d.ts → shared/MDLabel/MDLabel.d.ts} +2 -2
  212. package/lib/src/components/shared/MDLabel/MDLabelLink.d.ts +8 -0
  213. package/lib/src/components/{commons/components/md-label/router-link.d.ts → shared/MDLabel/RouterLink.d.ts} +2 -2
  214. package/lib/src/components/shared/MDLabel/generateUniqueId.d.ts +0 -0
  215. package/lib/src/components/{commons/components/missing/missing.d.ts → shared/Missing/Missing.d.ts} +4 -4
  216. package/lib/src/components/shared/ModalControls/ModalControls.d.ts +11 -0
  217. package/lib/src/components/{suggester/html/notification.d.ts → shared/Notification.d.ts} +2 -2
  218. package/lib/src/components/{radio/html/radio-group.d.ts → shared/Radio/RadioGroup.d.ts} +2 -3
  219. package/lib/src/components/{radio/html/radio-option.d.ts → shared/Radio/RadioOption.d.ts} +1 -2
  220. package/lib/src/components/{commons/components/html-table/table.d.ts → shared/Table/Table.d.ts} +2 -2
  221. package/lib/src/components/shared/Table/TableHeader.d.ts +2 -0
  222. package/lib/src/components/{commons/components/html-table/tbody.d.ts → shared/Table/Tbody.d.ts} +1 -1
  223. package/lib/src/components/{commons/components/html-table/td.d.ts → shared/Table/Td.d.ts} +1 -1
  224. package/lib/src/components/{commons/components/html-table/th.d.ts → shared/Table/Th.d.ts} +1 -1
  225. package/lib/src/components/{commons/components/html-table/thead.d.ts → shared/Table/Thead.d.ts} +1 -1
  226. package/lib/src/components/{commons/components/html-table/tr.d.ts → shared/Table/Tr.d.ts} +1 -1
  227. package/lib/src/components/shared/Table/index.d.ts +7 -0
  228. package/lib/src/components/shared/VariableStatus/VariableStatus.d.ts +7 -0
  229. package/lib/src/components/{suggester-loader-widget → shared/suggester-loader-widget}/loader-row.d.ts +1 -1
  230. package/lib/src/components/{suggester-loader-widget → shared/suggester-loader-widget}/loader.d.ts +1 -1
  231. package/lib/src/components/{suggester-loader-widget → shared/suggester-loader-widget}/widget.d.ts +1 -1
  232. package/lib/src/components/type-custom.d.ts +101 -0
  233. package/lib/src/components/type.d.ts +15 -29
  234. package/lib/src/{utils/store-tools/constantes.d.ts → constants/indexedDBStore.d.ts} +2 -2
  235. package/lib/src/hooks/useDocumentEvent.d.ts +2 -0
  236. package/lib/src/{components/commons/use-options-keydown.d.ts → hooks/useListKeyboardHandler.d.ts} +4 -2
  237. package/lib/src/hooks/useSuggesterInfo.d.ts +9 -0
  238. package/lib/src/i18n/index.d.ts +2 -2
  239. package/lib/src/i18n/inputNumberProps.d.ts +1 -1
  240. package/lib/src/index.d.ts +9 -3
  241. package/lib/src/use-lunatic/commons/fill-components/fill-component-required.d.ts +20 -56
  242. package/lib/src/use-lunatic/commons/fill-components/fill-from-state.d.ts +0 -74
  243. package/lib/src/use-lunatic/commons/fill-components/fill-iterations.d.ts +18 -28
  244. package/lib/src/use-lunatic/commons/fill-components/fill-specific-expression.d.ts +5 -101
  245. package/lib/src/use-lunatic/commons/use-components-from-state.d.ts +1 -1
  246. package/lib/src/use-lunatic/replace-component-sequence.d.ts +1 -7
  247. package/lib/src/use-lunatic/type-source.d.ts +2 -12
  248. package/lib/src/use-lunatic/use-lunatic.d.ts +29 -57
  249. package/lib/src/utils/store-tools/index.d.ts +1 -1
  250. package/lib/stories/behaviour/cleaning/cleaning.stories.js +2 -2
  251. package/lib/stories/behaviour/controls/controls-externes.stories.js +2 -2
  252. package/lib/stories/behaviour/controls/controls.stories.js +2 -2
  253. package/lib/stories/behaviour/missing/missing.stories.js +2 -2
  254. package/lib/stories/behaviour/others/test.stories.js +3 -3
  255. package/lib/stories/behaviour/paste/source.json +44337 -5678
  256. package/lib/stories/behaviour/paste/test.stories.js +2 -2
  257. package/lib/stories/behaviour/performance/performance.stories.js +2 -2
  258. package/lib/stories/behaviour/resizing/resizing.stories.js +2 -2
  259. package/lib/stories/checkbox-boolean/checkboxBoolean.stories.js +2 -2
  260. package/lib/stories/checkbox-group/checkbox-group.stories.js +2 -2
  261. package/lib/stories/checkbox-group/sourceLoop.json +1 -1
  262. package/lib/stories/checkbox-one/checkboxOne.stories.js +2 -2
  263. package/lib/stories/component-set/component-set.stories.js +2 -2
  264. package/lib/stories/date-picker/datepicker.stories.js +2 -3
  265. package/lib/stories/declaration/input.stories.js +2 -2
  266. package/lib/stories/disabled/disabled.stories.js +2 -2
  267. package/lib/stories/dropdown/dropdown.stories.js +2 -2
  268. package/lib/stories/duration/duration.stories.js +2 -2
  269. package/lib/stories/filter-description/filter-description.stories.js +2 -2
  270. package/lib/stories/input/input.stories.js +2 -2
  271. package/lib/stories/input-number/input-number.stories.js +2 -2
  272. package/lib/stories/loop/loop.stories.js +3 -3
  273. package/lib/stories/loop/roster-for-loop.stories.js +3 -3
  274. package/lib/stories/markdown/markdown.stories.js +3 -3
  275. package/lib/stories/overview/overview.stories.js +2 -2
  276. package/lib/stories/pairwise/pairwise-links.stories.js +2 -2
  277. package/lib/stories/question/question.stories.js +4 -8
  278. package/lib/stories/questionnaires/logement/logement.stories.js +2 -2
  279. package/lib/stories/questionnaires/recensement/recensement.stories.js +2 -2
  280. package/lib/stories/questionnaires/recensement/source.json +2 -2
  281. package/lib/stories/questionnaires/rp/rp.stories.js +2 -2
  282. package/lib/stories/questionnaires/simpsons/simpsons.stories.js +2 -2
  283. package/lib/stories/questionnaires2023/bySequence/ticWeb.stories.js +2 -2
  284. package/lib/stories/questionnaires2023/famille/famille.stories.js +2 -2
  285. package/lib/stories/questionnaires2023/simpsons/simpsons.stories.js +2 -2
  286. package/lib/stories/questionnaires2023/ticTel/ticWeb.stories.js +2 -2
  287. package/lib/stories/questionnaires2023/ticWeb/ticWeb.stories.js +2 -2
  288. package/lib/stories/radio/radio.stories.js +2 -2
  289. package/lib/stories/roundabout/roundabout.stories.js +2 -2
  290. package/lib/stories/sequence/sequence.stories.js +3 -3
  291. package/lib/stories/suggester/source-component-set.json +54 -8
  292. package/lib/stories/suggester/source.json +326 -182
  293. package/lib/stories/suggester/suggester-workers.stories.js +5 -5
  294. package/lib/stories/suggester/suggester.stories.js +3 -17
  295. package/lib/stories/summary/summary.stories.js +2 -2
  296. package/lib/stories/switch/switch.stories.js +3 -8
  297. package/lib/stories/table/table.stories.js +3 -13
  298. package/lib/stories/textarea/textarea.stories.js +2 -2
  299. package/lib/stories/utils/default-arg-types.js +2 -2
  300. package/lib/stories/utils/orchestrator.js +27 -28
  301. package/lib/stories/utils/referentiel.js +5 -14
  302. package/lib/use-lunatic/commons/check-loops.js +2 -2
  303. package/lib/use-lunatic/commons/compile-controls.js +2 -2
  304. package/lib/use-lunatic/commons/create-map-pages.js +2 -2
  305. package/lib/use-lunatic/commons/fill-components/fill-component-expressions.js +2 -2
  306. package/lib/use-lunatic/commons/fill-components/fill-component-required.js +2 -2
  307. package/lib/use-lunatic/commons/fill-components/fill-component-value.js +2 -2
  308. package/lib/use-lunatic/commons/fill-components/fill-from-state.js +2 -2
  309. package/lib/use-lunatic/commons/fill-components/fill-iterations.js +2 -2
  310. package/lib/use-lunatic/commons/fill-components/fill-management.js +2 -2
  311. package/lib/use-lunatic/commons/fill-components/fill-missing-response.js +2 -2
  312. package/lib/use-lunatic/commons/fill-components/fill-pagination.js +2 -2
  313. package/lib/use-lunatic/commons/fill-components/fill-specific-expression.js +2 -2
  314. package/lib/use-lunatic/commons/page-navigation.js +2 -2
  315. package/lib/use-lunatic/commons/page-navigation.spec.js +2 -2
  316. package/lib/use-lunatic/commons/page.js +0 -5
  317. package/lib/use-lunatic/commons/variables/get-questionnaire-data.js +2 -2
  318. package/lib/use-lunatic/commons/variables/lunatic-variables-store.js +2 -2
  319. package/lib/use-lunatic/reducer/commons/auto-explore-loop.js +2 -2
  320. package/lib/use-lunatic/reducer/overview/overview-on-change.js +2 -2
  321. package/lib/use-lunatic/reducer/overview/overview-on-init.js +2 -2
  322. package/lib/use-lunatic/reducer/reduce-go-next-page.js +2 -2
  323. package/lib/use-lunatic/reducer/reduce-go-previous-page.js +2 -2
  324. package/lib/use-lunatic/reducer/reduce-go-to-page.js +2 -2
  325. package/lib/use-lunatic/reducer/reduce-handle-change.js +2 -2
  326. package/lib/use-lunatic/reducer/reduce-on-init.js +6 -6
  327. package/lib/use-lunatic/reducer/reduce-on-set-waiting.js +2 -2
  328. package/lib/use-lunatic/reducer/reduce-update-state.js +2 -2
  329. package/lib/use-lunatic/use-lunatic.test.js +2 -2
  330. package/lib/use-lunatic/use-suggesters.js +2 -2
  331. package/lib/utils/array.js +0 -1
  332. package/lib/utils/idb-tools/idb-bulk-insert.js +2 -2
  333. package/lib/utils/idb-tools/open-or-create-db.js +4 -4
  334. package/lib/utils/logger.js +2 -2
  335. package/lib/utils/store-tools/clear-store-data.js +2 -2
  336. package/lib/utils/store-tools/clear-store-info.js +2 -2
  337. package/lib/utils/store-tools/create/create.js +2 -2
  338. package/lib/utils/store-tools/create/update-store-info.js +3 -3
  339. package/lib/utils/store-tools/get-store-count.js +3 -3
  340. package/lib/utils/store-tools/index.js +1 -1
  341. package/lib/utils/store-tools/initStore.js +4 -4
  342. package/lib/utils/store-tools/open-or-create-store.js +4 -4
  343. package/lib/utils/suggester-workers/append-to-index/append.js +2 -2
  344. package/lib/utils/suggester-workers/append-to-index/prepare-entities.js +2 -2
  345. package/lib/utils/suggester-workers/append-to-index/store-messages.js +2 -2
  346. package/lib/utils/suggester-workers/commons-tokenizer/create-entity-tokenizer.js +2 -2
  347. package/lib/utils/suggester-workers/commons-tokenizer/create-fields-tokenizer.js +2 -2
  348. package/lib/utils/suggester-workers/commons-tokenizer/create-filter-stop-words.js +2 -2
  349. package/lib/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.js +2 -2
  350. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.js +2 -2
  351. package/lib/utils/suggester-workers/find-best-label/find-best-label.js +2 -2
  352. package/lib/utils/suggester-workers/searching/compute-score.js +2 -2
  353. package/lib/utils/suggester-workers/searching/search-in-index.js +2 -2
  354. package/lib/utils/suggester-workers/searching/searching.js +7 -7
  355. package/package.json +14 -22
  356. package/workers-release/lunatic-append-worker-0.3.0.js +1 -1
  357. package/workers-release/lunatic-append-worker-0.3.0.js.LICENSE.txt +0 -10
  358. package/workers-release/lunatic-label-worker-0.3.0.js +1 -1
  359. package/workers-release/lunatic-search-worker-0.3.0.js +1 -1
  360. package/workers-release/lunatic-search-worker-0.3.0.js.LICENSE.txt +0 -10
  361. package/lib/components/button/index.js +0 -13
  362. package/lib/components/checkbox/checkbox-boolean/html/checkbox-boolean.js +0 -34
  363. package/lib/components/checkbox/checkbox-boolean/index.js +0 -13
  364. package/lib/components/checkbox/checkbox-boolean/lunatic-checkbox-boolean.js +0 -58
  365. package/lib/components/checkbox/checkbox-group/checkbox-group-content.js +0 -34
  366. package/lib/components/checkbox/checkbox-group/html/checkbox-group-content.js +0 -41
  367. package/lib/components/checkbox/checkbox-group/html/checkbox-group.js +0 -33
  368. package/lib/components/checkbox/checkbox-group/html/checkbox-group.scss +0 -12
  369. package/lib/components/checkbox/checkbox-group/index.js +0 -13
  370. package/lib/components/checkbox/checkbox-group/lunatic-checkbox-group.js +0 -71
  371. package/lib/components/checkbox/checkbox-one/html/checkbox-one.js +0 -34
  372. package/lib/components/checkbox/checkbox-one/index.js +0 -13
  373. package/lib/components/checkbox/checkbox-one/lunatic-checkbox-one.js +0 -61
  374. package/lib/components/checkbox/commons/index.js +0 -13
  375. package/lib/components/checkbox/index.js +0 -27
  376. package/lib/components/commons/components/combo-box/index.js +0 -13
  377. package/lib/components/commons/components/combo-box/selection/LabelOrInput.js +0 -56
  378. package/lib/components/commons/components/combo-box/selection/LabelOrInput.spec.js +0 -21
  379. package/lib/components/commons/components/combo-box/selection/label-selection.js +0 -30
  380. package/lib/components/commons/components/combo-box/selection/label-selection.spec.js +0 -41
  381. package/lib/components/commons/components/combo-box/selection/selection-container.js +0 -36
  382. package/lib/components/commons/components/combo-box/selection/selection-container.spec.js +0 -52
  383. package/lib/components/commons/components/combo-box/selection/selection.js +0 -53
  384. package/lib/components/commons/components/description.js +0 -52
  385. package/lib/components/commons/components/description.spec.js +0 -45
  386. package/lib/components/commons/components/errors/errors.spec.js +0 -45
  387. package/lib/components/commons/components/errors/index.js +0 -13
  388. package/lib/components/commons/components/fab/index.js +0 -13
  389. package/lib/components/commons/components/field-container/field-container.js +0 -26
  390. package/lib/components/commons/components/field-container/filed-container.spec.js +0 -37
  391. package/lib/components/commons/components/field-container/index.js +0 -13
  392. package/lib/components/commons/components/fieldset.js +0 -28
  393. package/lib/components/commons/components/fieldset.spec.js +0 -51
  394. package/lib/components/commons/components/label/index.js +0 -13
  395. package/lib/components/commons/components/label/label.js +0 -34
  396. package/lib/components/commons/components/label/label.spec.js +0 -77
  397. package/lib/components/commons/components/lunatic-component-with-label.js +0 -66
  398. package/lib/components/commons/components/lunatic-component-without-label.js +0 -59
  399. package/lib/components/commons/components/md-label/generateUniqueId.js +0 -11
  400. package/lib/components/commons/components/md-label/index.js +0 -13
  401. package/lib/components/commons/components/missing/index.js +0 -13
  402. package/lib/components/commons/components/nothing-to-display.js +0 -15
  403. package/lib/components/commons/components/nothing-to-display.spec.js +0 -15
  404. package/lib/components/commons/components/orchestrated-component.js +0 -40
  405. package/lib/components/commons/components/variable-status/img/index.js +0 -20
  406. package/lib/components/commons/components/variable-status/index.js +0 -13
  407. package/lib/components/commons/index.js +0 -96
  408. package/lib/components/commons/safety-label.js +0 -24
  409. package/lib/components/commons/use-on-handle-change.js +0 -18
  410. package/lib/components/commons/use-on-handle-change.spec.js +0 -50
  411. package/lib/components/component-set/html/__snapshots__/component-set.spec.tsx.snap +0 -126
  412. package/lib/components/component-set/html/component-set-legend.js +0 -28
  413. package/lib/components/component-set/html/component-set-wrapper.js +0 -15
  414. package/lib/components/component-set/html/component-set.js +0 -28
  415. package/lib/components/component-set/html/component-set.spec.js +0 -91
  416. package/lib/components/datepicker/html/datepicker.spec.js +0 -86
  417. package/lib/components/datepicker/index.js +0 -13
  418. package/lib/components/datepicker/lunatic-datepicker.js +0 -63
  419. package/lib/components/declarations/declaration.js +0 -21
  420. package/lib/components/declarations/declaration.spec.js +0 -30
  421. package/lib/components/declarations/declarations-after-text.js +0 -23
  422. package/lib/components/declarations/declarations-before-text.js +0 -25
  423. package/lib/components/declarations/declarations-detachable.js +0 -25
  424. package/lib/components/declarations/declarations.js +0 -42
  425. package/lib/components/declarations/index.js +0 -43
  426. package/lib/components/dropdown/html/dropdown-simple/dropdown-simple.js +0 -39
  427. package/lib/components/dropdown/html/dropdown-simple/index.js +0 -13
  428. package/lib/components/dropdown/html/dropdown-writable/filter-tools/filter-options.js +0 -28
  429. package/lib/components/dropdown/html/dropdown-writable/filter-tools/filter-options.spec.js +0 -106
  430. package/lib/components/dropdown/html/dropdown-writable/filter-tools/get-label.js +0 -24
  431. package/lib/components/dropdown/html/dropdown-writable/filter-tools/letters-matching.js +0 -28
  432. package/lib/components/dropdown/html/dropdown-writable/filter-tools/match.js +0 -21
  433. package/lib/components/dropdown/html/dropdown-writable/filter-tools/prepare-prefix.js +0 -15
  434. package/lib/components/dropdown/html/dropdown-writable/index.js +0 -13
  435. package/lib/components/dropdown/html/dropdown.js +0 -52
  436. package/lib/components/dropdown/html/dropdown.spec.js +0 -48
  437. package/lib/components/dropdown/index.js +0 -13
  438. package/lib/components/dropdown/lunatic-dropdown.js +0 -62
  439. package/lib/components/duration/duration.js +0 -53
  440. package/lib/components/duration/index.js +0 -13
  441. package/lib/components/filter-description/index.js +0 -13
  442. package/lib/components/index.js +0 -223
  443. package/lib/components/input/html/input.js +0 -57
  444. package/lib/components/input/index.js +0 -13
  445. package/lib/components/input/lunatic-input.js +0 -59
  446. package/lib/components/input-number/html/input-number.js +0 -58
  447. package/lib/components/input-number/index.js +0 -13
  448. package/lib/components/input-number/lunatic-input-number.js +0 -63
  449. package/lib/components/loop/loop-button.js +0 -19
  450. package/lib/components/loop/loop-header.js +0 -30
  451. package/lib/components/loop/loop.js +0 -36
  452. package/lib/components/modal/html/modal.js +0 -59
  453. package/lib/components/modal/html/modal.scss +0 -26
  454. package/lib/components/modal/index.js +0 -13
  455. package/lib/components/modal/lunatic-modal.js +0 -61
  456. package/lib/components/modal-controls/close-or-skip.js +0 -38
  457. package/lib/components/modal-controls/close-or-skip.spec.js +0 -36
  458. package/lib/components/modal-controls/index.js +0 -13
  459. package/lib/components/modal-controls/modal-container.js +0 -21
  460. package/lib/components/modal-controls/modal-container.spec.js +0 -23
  461. package/lib/components/modal-controls/modal-controls.js +0 -73
  462. package/lib/components/question/Question.js +0 -49
  463. package/lib/components/question/index.js +0 -16
  464. package/lib/components/question-explication/html/question-explication.js +0 -51
  465. package/lib/components/question-explication/html/question-explication.scss +0 -35
  466. package/lib/components/question-explication/index.js +0 -13
  467. package/lib/components/question-explication/lunatic-question-explication.js +0 -31
  468. package/lib/components/question-explication/question-explication.spec.js +0 -49
  469. package/lib/components/questions/index.js +0 -20
  470. package/lib/components/questions/question-context.js +0 -34
  471. package/lib/components/questions/question-context.scss +0 -10
  472. package/lib/components/questions/question-information.js +0 -34
  473. package/lib/components/questions/question-information.scss +0 -19
  474. package/lib/components/radio/html/radio-group-content.js +0 -53
  475. package/lib/components/radio/html/radio-group-content.spec.js +0 -99
  476. package/lib/components/radio/html/radio-group.js +0 -45
  477. package/lib/components/radio/index.js +0 -13
  478. package/lib/components/radio/lunatic-radio-group.js +0 -66
  479. package/lib/components/roundabout/components/roundabout-container.js +0 -19
  480. package/lib/components/roundabout/components/roundabout-container.spec.js +0 -23
  481. package/lib/components/roundabout/components/roundabout-it-container.js +0 -18
  482. package/lib/components/roundabout/components/roundabout-it-container.spec.js +0 -23
  483. package/lib/components/roundabout/components/roundabout-it-title.js +0 -16
  484. package/lib/components/roundabout/components/roundabout-it-title.spec.js +0 -18
  485. package/lib/components/roundabout/components/roundabout-label.js +0 -16
  486. package/lib/components/roundabout/components/roundabout-label.spec.js +0 -18
  487. package/lib/components/roundabout/components/roundabout-pending.js +0 -17
  488. package/lib/components/roundabout/components/roundabout-pending.spec.js +0 -15
  489. package/lib/components/roundabout/index.js +0 -13
  490. package/lib/components/sequence/html/sequence.js +0 -28
  491. package/lib/components/sequence/index.js +0 -13
  492. package/lib/components/sequence/lunatic-sequence.js +0 -30
  493. package/lib/components/sequence/sequence.spec.js +0 -76
  494. package/lib/components/subsequence/index.js +0 -13
  495. package/lib/components/subsequence/subsequence.js +0 -32
  496. package/lib/components/suggester/find-best-label/find-best-label.js +0 -49
  497. package/lib/components/suggester/find-best-label/index.js +0 -13
  498. package/lib/components/suggester/idb-suggester/idb-suggester.js +0 -72
  499. package/lib/components/suggester/idb-suggester/index.js +0 -12
  500. package/lib/components/suggester/index.js +0 -13
  501. package/lib/components/suggester/lunatic-suggester.js +0 -70
  502. package/lib/components/suggester/searching/index.js +0 -13
  503. package/lib/components/summary/html/summary-container.js +0 -14
  504. package/lib/components/summary/html/summary-responses.js +0 -56
  505. package/lib/components/summary/html/summary-title.js +0 -19
  506. package/lib/components/summary/index.js +0 -12
  507. package/lib/components/switch/index.js +0 -13
  508. package/lib/components/switch/lunatic-switch.js +0 -63
  509. package/lib/components/table/lunatic-table.js +0 -72
  510. package/lib/components/textarea/html/textarea.js +0 -54
  511. package/lib/components/textarea/html/textarea.spec.js +0 -38
  512. package/lib/components/textarea/index.js +0 -13
  513. package/lib/components/textarea/lunatic-textarea.js +0 -77
  514. package/lib/src/components/button/index.d.ts +0 -1
  515. package/lib/src/components/checkbox/checkbox-boolean/html/checkbox-boolean.d.ts +0 -13
  516. package/lib/src/components/checkbox/checkbox-boolean/index.d.ts +0 -1
  517. package/lib/src/components/checkbox/checkbox-boolean/lunatic-checkbox-boolean.d.ts +0 -8
  518. package/lib/src/components/checkbox/checkbox-group/checkbox-group-content.d.ts +0 -8
  519. package/lib/src/components/checkbox/checkbox-group/html/checkbox-group-content.d.ts +0 -9
  520. package/lib/src/components/checkbox/checkbox-group/html/checkbox-group.d.ts +0 -14
  521. package/lib/src/components/checkbox/checkbox-group/index.d.ts +0 -1
  522. package/lib/src/components/checkbox/checkbox-group/lunatic-checkbox-group.d.ts +0 -11
  523. package/lib/src/components/checkbox/checkbox-one/html/checkbox-one.d.ts +0 -5
  524. package/lib/src/components/checkbox/checkbox-one/index.d.ts +0 -1
  525. package/lib/src/components/checkbox/checkbox-one/lunatic-checkbox-one.d.ts +0 -3
  526. package/lib/src/components/checkbox/commons/index.d.ts +0 -1
  527. package/lib/src/components/checkbox/index.d.ts +0 -3
  528. package/lib/src/components/commons/components/combo-box/combo-box-content-box.d.ts +0 -8
  529. package/lib/src/components/commons/components/combo-box/combo-box.d.ts +0 -23
  530. package/lib/src/components/commons/components/combo-box/combo-box.stories.d.ts +0 -6
  531. package/lib/src/components/commons/components/combo-box/combo-box.type.d.ts +0 -8
  532. package/lib/src/components/commons/components/combo-box/index.d.ts +0 -1
  533. package/lib/src/components/commons/components/combo-box/panel/combo-box-option.d.ts +0 -8
  534. package/lib/src/components/commons/components/combo-box/panel/panel.d.ts +0 -20
  535. package/lib/src/components/commons/components/combo-box/selection/LabelOrInput.d.ts +0 -18
  536. package/lib/src/components/commons/components/combo-box/selection/combo-box-label-selection.d.ts +0 -11
  537. package/lib/src/components/commons/components/combo-box/selection/label-selection.d.ts +0 -21
  538. package/lib/src/components/commons/components/combo-box/selection/selection-container.d.ts +0 -11
  539. package/lib/src/components/commons/components/combo-box/selection/selection.d.ts +0 -13
  540. package/lib/src/components/commons/components/description.d.ts +0 -22
  541. package/lib/src/components/commons/components/errors/errors.d.ts +0 -11
  542. package/lib/src/components/commons/components/errors/index.d.ts +0 -1
  543. package/lib/src/components/commons/components/fab/fab.d.ts +0 -7
  544. package/lib/src/components/commons/components/fab/index.d.ts +0 -1
  545. package/lib/src/components/commons/components/field-container/field-container.d.ts +0 -6
  546. package/lib/src/components/commons/components/field-container/index.d.ts +0 -1
  547. package/lib/src/components/commons/components/fieldset.d.ts +0 -13
  548. package/lib/src/components/commons/components/html-table/index.d.ts +0 -6
  549. package/lib/src/components/commons/components/label/index.d.ts +0 -1
  550. package/lib/src/components/commons/components/label/label.d.ts +0 -14
  551. package/lib/src/components/commons/components/lunatic-component-with-label.d.ts +0 -12
  552. package/lib/src/components/commons/components/lunatic-component-without-label.d.ts +0 -12
  553. package/lib/src/components/commons/components/md-label/generateUniqueId.d.ts +0 -1
  554. package/lib/src/components/commons/components/md-label/index.d.ts +0 -1
  555. package/lib/src/components/commons/components/md-label/link.d.ts +0 -7
  556. package/lib/src/components/commons/components/missing/index.d.ts +0 -1
  557. package/lib/src/components/commons/components/nothing-to-display.d.ts +0 -2
  558. package/lib/src/components/commons/components/orchestrated-component.d.ts +0 -8
  559. package/lib/src/components/commons/components/variable-status/img/index.d.ts +0 -2
  560. package/lib/src/components/commons/components/variable-status/index.d.ts +0 -1
  561. package/lib/src/components/commons/components/variable-status/variable-status.d.ts +0 -16
  562. package/lib/src/components/commons/create-customizable-field.d.ts +0 -3
  563. package/lib/src/components/commons/icons/index.d.ts +0 -10
  564. package/lib/src/components/commons/index.d.ts +0 -13
  565. package/lib/src/components/commons/safety-label.d.ts +0 -3
  566. package/lib/src/components/commons/use-document-add-event-listener.d.ts +0 -2
  567. package/lib/src/components/commons/use-on-handle-change.d.ts +0 -12
  568. package/lib/src/components/component-set/html/component-set-legend.d.ts +0 -8
  569. package/lib/src/components/component-set/html/component-set-wrapper.d.ts +0 -6
  570. package/lib/src/components/component-set/html/component-set.d.ts +0 -10
  571. package/lib/src/components/component-set/lunatic-component-set.d.ts +0 -3
  572. package/lib/src/components/datepicker/html/datepicker.d.ts +0 -18
  573. package/lib/src/components/datepicker/index.d.ts +0 -1
  574. package/lib/src/components/datepicker/lunatic-datepicker.d.ts +0 -10
  575. package/lib/src/components/declarations/declaration.d.ts +0 -6
  576. package/lib/src/components/declarations/declarations-after-text.d.ts +0 -4
  577. package/lib/src/components/declarations/declarations-before-text.d.ts +0 -4
  578. package/lib/src/components/declarations/declarations-detachable.d.ts +0 -4
  579. package/lib/src/components/declarations/declarations.d.ts +0 -15
  580. package/lib/src/components/declarations/index.d.ts +0 -4
  581. package/lib/src/components/dropdown/html/dropdown-simple/dropdown-simple.d.ts +0 -3
  582. package/lib/src/components/dropdown/html/dropdown-simple/index.d.ts +0 -1
  583. package/lib/src/components/dropdown/html/dropdown-simple/simple-label-renderer.d.ts +0 -8
  584. package/lib/src/components/dropdown/html/dropdown-simple/simple-option-renderer.d.ts +0 -7
  585. package/lib/src/components/dropdown/html/dropdown-writable/dropdown-writable.d.ts +0 -17
  586. package/lib/src/components/dropdown/html/dropdown-writable/filter-tools/filter-options.d.ts +0 -6
  587. package/lib/src/components/dropdown/html/dropdown-writable/filter-tools/get-label.d.ts +0 -9
  588. package/lib/src/components/dropdown/html/dropdown-writable/filter-tools/letters-matching.d.ts +0 -2
  589. package/lib/src/components/dropdown/html/dropdown-writable/filter-tools/match.d.ts +0 -2
  590. package/lib/src/components/dropdown/html/dropdown-writable/filter-tools/prepare-prefix.d.ts +0 -2
  591. package/lib/src/components/dropdown/html/dropdown-writable/index.d.ts +0 -1
  592. package/lib/src/components/dropdown/html/dropdown-writable/writable-label-renderer.d.ts +0 -8
  593. package/lib/src/components/dropdown/html/dropdown-writable/writable-option-renderer.d.ts +0 -8
  594. package/lib/src/components/dropdown/html/dropdown.d.ts +0 -12
  595. package/lib/src/components/dropdown/html/dropdown.spec.d.ts +0 -1
  596. package/lib/src/components/dropdown/index.d.ts +0 -1
  597. package/lib/src/components/dropdown/lunatic-dropdown.d.ts +0 -3
  598. package/lib/src/components/duration/duration.d.ts +0 -4
  599. package/lib/src/components/duration/durationInput.d.ts +0 -11
  600. package/lib/src/components/duration/index.d.ts +0 -1
  601. package/lib/src/components/filter-description/component.spec.d.ts +0 -1
  602. package/lib/src/components/filter-description/index.d.ts +0 -1
  603. package/lib/src/components/index.d.ts +0 -31
  604. package/lib/src/components/input/html/input.d.ts +0 -17
  605. package/lib/src/components/input/html/input.spec.d.ts +0 -1
  606. package/lib/src/components/input/index.d.ts +0 -1
  607. package/lib/src/components/input/lunatic-input.d.ts +0 -3
  608. package/lib/src/components/input-number/html/input-number.d.ts +0 -20
  609. package/lib/src/components/input-number/html/input-number.spec.d.ts +0 -1
  610. package/lib/src/components/input-number/index.d.ts +0 -1
  611. package/lib/src/components/input-number/lunatic-input-number.d.ts +0 -3
  612. package/lib/src/components/loop/loop-button.d.ts +0 -7
  613. package/lib/src/components/loop/loop-header.d.ts +0 -9
  614. package/lib/src/components/loop/loop.d.ts +0 -2
  615. package/lib/src/components/loop/roster-for-loop/roster-for-loop.spec.d.ts +0 -1
  616. package/lib/src/components/modal/html/modal.d.ts +0 -11
  617. package/lib/src/components/modal/index.d.ts +0 -1
  618. package/lib/src/components/modal/lunatic-modal.d.ts +0 -3
  619. package/lib/src/components/modal-controls/close-or-skip.d.ts +0 -8
  620. package/lib/src/components/modal-controls/close-or-skip.spec.d.ts +0 -1
  621. package/lib/src/components/modal-controls/index.d.ts +0 -1
  622. package/lib/src/components/modal-controls/modal-container.d.ts +0 -3
  623. package/lib/src/components/modal-controls/modal-container.spec.d.ts +0 -1
  624. package/lib/src/components/modal-controls/modal-controls.d.ts +0 -11
  625. package/lib/src/components/modal-controls/modal-controls.spec.d.ts +0 -1
  626. package/lib/src/components/question/index.d.ts +0 -1
  627. package/lib/src/components/question-explication/html/question-explication.d.ts +0 -7
  628. package/lib/src/components/question-explication/index.d.ts +0 -1
  629. package/lib/src/components/question-explication/lunatic-question-explication.d.ts +0 -3
  630. package/lib/src/components/question-explication/question-explication.spec.d.ts +0 -1
  631. package/lib/src/components/questions/index.d.ts +0 -2
  632. package/lib/src/components/questions/question-context.d.ts +0 -4
  633. package/lib/src/components/questions/question-information.d.ts +0 -4
  634. package/lib/src/components/radio/html/radio-group-content.d.ts +0 -19
  635. package/lib/src/components/radio/html/radio-group-content.spec.d.ts +0 -1
  636. package/lib/src/components/radio/html/radio-option.spec.d.ts +0 -1
  637. package/lib/src/components/radio/index.d.ts +0 -1
  638. package/lib/src/components/roundabout/components/roundabout-container.d.ts +0 -6
  639. package/lib/src/components/roundabout/components/roundabout-container.spec.d.ts +0 -1
  640. package/lib/src/components/roundabout/components/roundabout-it-button.spec.d.ts +0 -1
  641. package/lib/src/components/roundabout/components/roundabout-it-container.d.ts +0 -5
  642. package/lib/src/components/roundabout/components/roundabout-it-container.spec.d.ts +0 -1
  643. package/lib/src/components/roundabout/components/roundabout-it-title.d.ts +0 -5
  644. package/lib/src/components/roundabout/components/roundabout-it-title.spec.d.ts +0 -1
  645. package/lib/src/components/roundabout/components/roundabout-label.d.ts +0 -5
  646. package/lib/src/components/roundabout/components/roundabout-label.spec.d.ts +0 -1
  647. package/lib/src/components/roundabout/components/roundabout-pending.d.ts +0 -3
  648. package/lib/src/components/roundabout/components/roundabout-pending.spec.d.ts +0 -1
  649. package/lib/src/components/roundabout/index.d.ts +0 -1
  650. package/lib/src/components/roundabout/lunatic-roundabout.d.ts +0 -6
  651. package/lib/src/components/roundabout/redirect.d.ts +0 -6
  652. package/lib/src/components/sequence/html/sequence.d.ts +0 -5
  653. package/lib/src/components/sequence/index.d.ts +0 -1
  654. package/lib/src/components/sequence/lunatic-sequence.d.ts +0 -3
  655. package/lib/src/components/sequence/sequence.spec.d.ts +0 -1
  656. package/lib/src/components/subsequence/index.d.ts +0 -1
  657. package/lib/src/components/subsequence/subsequence.d.ts +0 -3
  658. package/lib/src/components/subsequence/subsequence.spec.d.ts +0 -1
  659. package/lib/src/components/suggester/find-best-label/find-best-label.d.ts +0 -2
  660. package/lib/src/components/suggester/find-best-label/index.d.ts +0 -1
  661. package/lib/src/components/suggester/idb-suggester/check-store.d.ts +0 -11
  662. package/lib/src/components/suggester/idb-suggester/idb-suggester.d.ts +0 -9
  663. package/lib/src/components/suggester/idb-suggester/index.d.ts +0 -1
  664. package/lib/src/components/suggester/index.d.ts +0 -1
  665. package/lib/src/components/suggester/lunatic-suggester.d.ts +0 -3
  666. package/lib/src/components/suggester/searching/create-searching.d.ts +0 -7
  667. package/lib/src/components/suggester/searching/index.d.ts +0 -1
  668. package/lib/src/components/summary/html/summary-container.d.ts +0 -2
  669. package/lib/src/components/summary/html/summary-responses.d.ts +0 -14
  670. package/lib/src/components/summary/html/summary-title.d.ts +0 -5
  671. package/lib/src/components/summary/index.d.ts +0 -1
  672. package/lib/src/components/summary/lunatic-summary.d.ts +0 -8
  673. package/lib/src/components/switch/html/switch.d.ts +0 -18
  674. package/lib/src/components/switch/index.d.ts +0 -1
  675. package/lib/src/components/switch/lunatic-switch.d.ts +0 -3
  676. package/lib/src/components/table/lunatic-table.d.ts +0 -3
  677. package/lib/src/components/table/table-header.d.ts +0 -11
  678. package/lib/src/components/textarea/html/textarea.d.ts +0 -19
  679. package/lib/src/components/textarea/html/textarea.spec.d.ts +0 -1
  680. package/lib/src/components/textarea/index.d.ts +0 -1
  681. package/lib/src/components/textarea/lunatic-textarea.d.ts +0 -18
  682. package/lib/src/use-lunatic/reducer/reduce-go-next-page.spec.d.ts +0 -1
  683. package/lib/src/use-lunatic/reducer/reduce-go-previous-page.spec.d.ts +0 -1
  684. package/lib/stories/custom-mui/checkbox-boolean-mui.js +0 -31
  685. package/lib/stories/custom-mui/checkbox-group-mui.js +0 -67
  686. package/lib/stories/custom-mui/checkbox-one-mui.js +0 -15
  687. package/lib/stories/custom-mui/index.js +0 -111
  688. package/lib/stories/custom-mui/input-mui.js +0 -51
  689. package/lib/stories/custom-mui/input-number-mui.js +0 -39
  690. package/lib/stories/custom-mui/radio-mui.js +0 -61
  691. package/lib/stories/custom-mui/suggester-mui/index.js +0 -13
  692. package/lib/stories/custom-mui/suggester-mui/suggester-mui.js +0 -301
  693. package/lib/stories/custom-mui/switch-mui.js +0 -46
  694. package/lib/stories/custom-mui/table-mui.js +0 -27
  695. package/lib/stories/custom-mui/tbody-mui.js +0 -22
  696. package/lib/stories/custom-mui/td-mui.js +0 -24
  697. package/lib/stories/custom-mui/textarea-mui.js +0 -42
  698. package/lib/stories/custom-mui/th-mui.js +0 -23
  699. package/lib/stories/custom-mui/thead-mui.js +0 -22
  700. package/lib/stories/custom-mui/tr-mui.js +0 -32
  701. package/lib/stories/modal/modal.stories.js +0 -32
  702. package/lib/stories/modal/source.json +0 -97
  703. package/lib/stories/question-context/question-context.stories.js +0 -31
  704. package/lib/stories/question-context/source.json +0 -13
  705. package/lib/stories/question-explication/question-explication.stories.js +0 -31
  706. package/lib/stories/question-explication/source.json +0 -17
  707. package/lib/stories/question-information/question-information.stories.js +0 -32
  708. package/lib/stories/question-information/source.json +0 -14
  709. package/lib/stories/suggester/simple.json +0 -168
  710. package/lib/tests/utils/lunatic.d.ts +0 -25
  711. package/lib/use-lunatic/reducer/reduce-go-next-page.spec.js +0 -13
  712. package/lib/use-lunatic/reducer/reduce-go-previous-page.spec.js +0 -14
  713. /package/lib/components/{checkbox/checkbox-one/html/checkbox-one.scss → CheckboxOne/CheckboxOne.scss} +0 -0
  714. /package/lib/components/{datepicker/html/datepicker.scss → Datepicker/Datepicker.scss} +0 -0
  715. /package/lib/components/{datepicker/html → Datepicker}/DatepickerField.js +0 -0
  716. /package/lib/components/{dropdown/html/dropdown.scss → Dropdown/Dropdown.scss} +0 -0
  717. /package/lib/components/{duration/duration.scss → Duration/Duration.scss} +0 -0
  718. /package/lib/components/{duration → Duration}/durationUtils.js +0 -0
  719. /package/lib/components/{duration → Duration}/formatDuration.js +0 -0
  720. /package/lib/components/{duration → Duration}/formatDuration.spec.js +0 -0
  721. /package/lib/components/{duration → Duration}/getDurationFromValue.js +0 -0
  722. /package/lib/components/{input/html/input.scss → Input/Input.scss} +0 -0
  723. /package/lib/components/{input/html/__snapshots__/input.spec.tsx.snap → Input/__snapshots__/Input.spec.tsx.snap} +0 -0
  724. /package/lib/components/{input-number/html/input-number.scss → InputNumber/InputNumber.scss} +0 -0
  725. /package/lib/components/{loop → Loop}/constant.js +0 -0
  726. /package/lib/components/{radio/radio.scss → Radio/Radio.scss} +0 -0
  727. /package/lib/components/{loop/roster-for-loop/roster.scss → RosterForLoop/RosterForLoop.scss} +0 -0
  728. /package/lib/components/{loop/roster-for-loop/__snapshots__/roster-for-loop.spec.tsx.snap → RosterForLoop/__snapshots__/RosterForLoop.spec.tsx.snap} +0 -0
  729. /package/lib/components/{roundabout/components/roundabout.scss → Roundabout/Roundabout.scss} +0 -0
  730. /package/lib/components/{sequence/html/sequence.scss → Sequence/Sequence.scss} +0 -0
  731. /package/lib/components/{suggester/html → Suggester/icons}/alert-icon.svg +0 -0
  732. /package/lib/components/{suggester/html → Suggester/icons}/wait-icon.svg +0 -0
  733. /package/lib/components/{suggester/html → Suggester/icons}/warn-icon.svg +0 -0
  734. /package/lib/components/{switch/html → Switch}/switch.scss +0 -0
  735. /package/lib/components/{textarea/html/textarea.scss → Textarea/Textarea.scss} +0 -0
  736. /package/lib/components/{textarea/html/__snapshots__/textarea.spec.tsx.snap → Textarea/__snapshots__/Textarea.spec.tsx.snap} +0 -0
  737. /package/lib/components/{button/button.scss → shared/Button/Button.scss} +0 -0
  738. /package/lib/components/{button/__snapshots__/lunatic-button.spec.tsx.snap → shared/Button/__snapshots__/Button.spec.tsx.snap} +0 -0
  739. /package/lib/components/{checkbox/commons/checkbox-option.scss → shared/Checkbox/CheckboxOption.scss} +0 -0
  740. /package/lib/components/{checkbox/commons → shared/Checkbox}/getShortcutKey.js +0 -0
  741. /package/lib/components/{commons/components/combo-box/combo-box.scss → shared/Combobox/Combobox.scss} +0 -0
  742. /package/lib/components/{commons/components/combo-box/combo-box.type.js → shared/Combobox/ComboboxType.js} +0 -0
  743. /package/lib/components/{commons/components/combo-box/keyboard-key-codes.js → shared/Combobox/constants.js} +0 -0
  744. /package/lib/components/{commons/components/errors/errors.scss → shared/ComponentErrors/ComponentErrors.scss} +0 -0
  745. /package/lib/components/{declarations/declarations.scss → shared/Declarations/Declarations.scss} +0 -0
  746. /package/lib/components/{commons/components/fieldset.scss → shared/Fieldset/Fieldset.scss} +0 -0
  747. /package/lib/components/{commons/icons → shared/Icons}/checkbox-checked-icon.js +0 -0
  748. /package/lib/components/{commons/icons → shared/Icons}/checkbox-unchecked-icon.js +0 -0
  749. /package/lib/components/{commons/icons → shared/Icons}/closed-icon.js +0 -0
  750. /package/lib/components/{commons/icons → shared/Icons}/cross-icon.js +0 -0
  751. /package/lib/components/{commons/icons → shared/Icons}/icon-props.js +0 -0
  752. /package/lib/components/{commons/icons → shared/Icons}/load-icon.js +0 -0
  753. /package/lib/components/{commons/icons → shared/Icons}/lunatic-icon.js +0 -0
  754. /package/lib/components/{commons/icons → shared/Icons}/lunatic-icon.scss +0 -0
  755. /package/lib/components/{commons/icons → shared/Icons}/network-icon.js +0 -0
  756. /package/lib/components/{commons/icons → shared/Icons}/on-drag-icon.js +0 -0
  757. /package/lib/components/{commons/icons → shared/Icons}/opened-icon.js +0 -0
  758. /package/lib/components/{commons/icons → shared/Icons}/radio-checked-icon.js +0 -0
  759. /package/lib/components/{commons/icons → shared/Icons}/radio-unchecked-icon.js +0 -0
  760. /package/lib/components/{commons/components/label/label.scss → shared/Label/Label.scss} +0 -0
  761. /package/lib/components/{commons/components/missing/missing.scss → shared/Missing/Missing.scss} +0 -0
  762. /package/lib/components/{modal-controls/modal-controls.scss → shared/ModalControls/ModalControls.scss} +0 -0
  763. /package/lib/components/{radio/html/radio-group.scss → shared/Radio/RadioGroup.scss} +0 -0
  764. /package/lib/components/{commons/components/html-table/table.scss → shared/Table/Table.scss} +0 -0
  765. /package/lib/components/{commons/components/variable-status/img → shared/VariableStatus/icons}/edited.png +0 -0
  766. /package/lib/components/{commons/components/variable-status/img → shared/VariableStatus/icons}/forced.png +0 -0
  767. /package/lib/components/{commons/components → shared/suggester-loader-widget}/dragger/dragger.scss +0 -0
  768. /package/lib/components/{commons/components → shared/suggester-loader-widget}/dragger/dragger.spec.js +0 -0
  769. /package/lib/components/{commons/components → shared/suggester-loader-widget}/dragger/index.js +0 -0
  770. /package/lib/components/{suggester-loader-widget → shared/suggester-loader-widget}/index.js +0 -0
  771. /package/lib/components/{commons/components → shared/suggester-loader-widget}/is-network/index.js +0 -0
  772. /package/lib/components/{commons/components → shared/suggester-loader-widget}/is-network/is-network.spec.js +0 -0
  773. /package/lib/components/{commons/components → shared/suggester-loader-widget}/is-network/use-online-status.js +0 -0
  774. /package/lib/components/{commons/components → shared/suggester-loader-widget}/is-network/use-online-status.spec.js +0 -0
  775. /package/lib/components/{suggester-loader-widget → shared/suggester-loader-widget}/progress.js +0 -0
  776. /package/lib/components/{suggester-loader-widget → shared/suggester-loader-widget}/tools/action-tool.js +0 -0
  777. /package/lib/components/{suggester-loader-widget → shared/suggester-loader-widget}/tools/index.js +0 -0
  778. /package/lib/components/{suggester-loader-widget → shared/suggester-loader-widget}/tools/tools.js +0 -0
  779. /package/lib/components/{suggester-loader-widget → shared/suggester-loader-widget}/widget-container.js +0 -0
  780. /package/lib/components/{suggester-loader-widget → shared/suggester-loader-widget}/widget.scss +0 -0
  781. /package/lib/src/components/{button/lunatic-button.spec.d.ts → CheckboxBoolean/CheckboxBoolean.spec.d.ts} +0 -0
  782. /package/lib/src/components/{checkbox/checkbox-boolean/html/checkbox-boolean.spec.d.ts → CheckboxGroup/CustomCheckboxGroup.spec.d.ts} +0 -0
  783. /package/lib/src/components/{checkbox/checkbox-group/html/checkbox-group-content.spec.d.ts → CheckboxOne/CheckboxOne.spec.d.ts} +0 -0
  784. /package/lib/src/components/{checkbox/checkbox-one/html/checkbox-one.spec.d.ts → Datepicker/Datepicker.spec.d.ts} +0 -0
  785. /package/lib/src/components/{datepicker/html → Datepicker}/DatepickerField.d.ts +0 -0
  786. /package/lib/src/components/{checkbox/commons/checkbox-option.spec.d.ts → Dropdown/Dropdown.spec.d.ts} +0 -0
  787. /package/lib/src/components/{duration → Duration}/durationUtils.d.ts +0 -0
  788. /package/lib/src/components/{duration → Duration}/formatDuration.d.ts +0 -0
  789. /package/lib/src/components/{duration → Duration}/formatDuration.spec.d.ts +0 -0
  790. /package/lib/src/components/{duration → Duration}/getDurationFromValue.d.ts +0 -0
  791. /package/lib/src/components/{commons/components/combo-box/combo-box-container.spec.d.ts → FilterDescription/FilterDescription.spec.d.ts} +0 -0
  792. /package/lib/src/components/{commons/components/combo-box/panel/combo-box-option.spec.d.ts → Input/Input.spec.d.ts} +0 -0
  793. /package/lib/src/components/{commons/components/combo-box/panel/option-container.spec.d.ts → InputNumber/InputNumber.spec.d.ts} +0 -0
  794. /package/lib/src/components/{loop → Loop}/constant.d.ts +0 -0
  795. /package/lib/src/components/{lunatic-components.d.ts → LunaticComponents.d.ts} +0 -0
  796. /package/lib/src/components/{pairwise-links/pairwise-links.d.ts → PairwiseLinks/PairwiseLinks.d.ts} +0 -0
  797. /package/lib/src/components/{commons/components/combo-box/panel/panel-container.spec.d.ts → RosterForLoop/RosterForLoop.spec.d.ts} +0 -0
  798. /package/lib/src/components/{commons/components/combo-box/panel/panel.spec.d.ts → Roundabout/RoundaboutItButton.spec.d.ts} +0 -0
  799. /package/lib/src/components/{roundabout → Roundabout}/redirect.spec.d.ts +0 -0
  800. /package/lib/src/components/{roundabout → Roundabout}/roundabout.spec.d.ts +0 -0
  801. /package/lib/src/components/{commons/components/combo-box/selection/LabelOrInput.spec.d.ts → Subsequence/Subsequence.spec.d.ts} +0 -0
  802. /package/lib/src/components/{commons/components/combo-box/selection/clear-button.spec.d.ts → Textarea/Textarea.spec.d.ts} +0 -0
  803. /package/lib/src/components/{commons/components/combo-box/selection/combo-box-label-selection.spec.d.ts → shared/Button/Button.spec.d.ts} +0 -0
  804. /package/lib/src/components/{commons/components/combo-box/selection/label-selection.spec.d.ts → shared/Button/IconButton.spec.d.ts} +0 -0
  805. /package/lib/src/components/{commons/components/combo-box/selection/selection-container.spec.d.ts → shared/Checkbox/CheckboxOption.spec.d.ts} +0 -0
  806. /package/lib/src/components/{checkbox/commons → shared/Checkbox}/getShortcutKey.d.ts +0 -0
  807. /package/lib/src/components/{commons/components/combo-box/selection/selection.spec.d.ts → shared/Combobox/ComboboxContainer.spec.d.ts} +0 -0
  808. /package/lib/src/components/{commons/components/description.spec.d.ts → shared/Combobox/Panel/ComboboxOption.spec.d.ts} +0 -0
  809. /package/lib/src/components/{commons/components/dragger/dragger.spec.d.ts → shared/Combobox/Panel/ComboboxOptionContainer.spec.d.ts} +0 -0
  810. /package/lib/src/components/{commons/components/errors/errors.spec.d.ts → shared/Combobox/Panel/ComboboxPanel.spec.d.ts} +0 -0
  811. /package/lib/src/components/{commons/components/fab/fab.spec.d.ts → shared/Combobox/Panel/ComboboxPanelContainer.spec.d.ts} +0 -0
  812. /package/lib/src/components/{commons/components/field-container/filed-container.spec.d.ts → shared/Combobox/Selection/ComboboxClearButton.spec.d.ts} +0 -0
  813. /package/lib/src/components/{commons/components/fieldset.spec.d.ts → shared/Combobox/Selection/ComboboxLabelSelection.spec.d.ts} +0 -0
  814. /package/lib/src/components/{commons/components/html-table/table.spec.d.ts → shared/Combobox/Selection/ComboboxSelection.spec.d.ts} +0 -0
  815. /package/lib/src/components/{commons/components/combo-box/keyboard-key-codes.d.ts → shared/Combobox/constants.d.ts} +0 -0
  816. /package/lib/src/components/{commons/components/html-table/tbody.spec.d.ts → shared/ComponentErrors/ComponentErrors.spec.d.ts} +0 -0
  817. /package/lib/src/components/{commons/components/html-table/td.spec.d.ts → shared/Declarations/Declarations.spec.d.ts} +0 -0
  818. /package/lib/src/components/{commons/components/html-table/th.spec.d.ts → shared/Fieldset/Fieldset.spec.d.ts} +0 -0
  819. /package/lib/src/components/{commons/icons → shared/Icons}/checkbox-checked-icon.d.ts +0 -0
  820. /package/lib/src/components/{commons/icons → shared/Icons}/checkbox-unchecked-icon.d.ts +0 -0
  821. /package/lib/src/components/{commons/icons → shared/Icons}/closed-icon.d.ts +0 -0
  822. /package/lib/src/components/{commons/icons → shared/Icons}/cross-icon.d.ts +0 -0
  823. /package/lib/src/components/{commons/icons → shared/Icons}/icon-props.d.ts +0 -0
  824. /package/lib/src/components/{commons/icons → shared/Icons}/load-icon.d.ts +0 -0
  825. /package/lib/src/components/{commons/icons → shared/Icons}/lunatic-icon.d.ts +0 -0
  826. /package/lib/src/components/{commons/icons → shared/Icons}/network-icon.d.ts +0 -0
  827. /package/lib/src/components/{commons/icons → shared/Icons}/on-drag-icon.d.ts +0 -0
  828. /package/lib/src/components/{commons/icons → shared/Icons}/opened-icon.d.ts +0 -0
  829. /package/lib/src/components/{commons/icons → shared/Icons}/radio-checked-icon.d.ts +0 -0
  830. /package/lib/src/components/{commons/icons → shared/Icons}/radio-unchecked-icon.d.ts +0 -0
  831. /package/lib/src/components/{commons/components/html-table/thead.spec.d.ts → shared/Label/Label.spec.d.ts} +0 -0
  832. /package/lib/src/components/{commons/components/html-table/tr.spec.d.ts → shared/MDLabel/MDLabel.spec.d.ts} +0 -0
  833. /package/lib/src/components/{commons/components/is-network/is-network.spec.d.ts → shared/Missing/Missing.spec.d.ts} +0 -0
  834. /package/lib/src/components/{commons/components/is-network/use-online-status.spec.d.ts → shared/ModalControls/ModalControls.spec.d.ts} +0 -0
  835. /package/lib/src/components/{commons/components/label/label.spec.d.ts → shared/Radio/RadioOption.spec.d.ts} +0 -0
  836. /package/lib/src/components/{commons/components/md-label/md-label.spec.d.ts → shared/Table/Table.spec.d.ts} +0 -0
  837. /package/lib/src/components/{commons/components/missing/missing.spec.d.ts → shared/Table/Tbody.spec.d.ts} +0 -0
  838. /package/lib/src/components/{commons/components/nothing-to-display.spec.d.ts → shared/Table/Td.spec.d.ts} +0 -0
  839. /package/lib/src/components/{commons/components/variable-status/variable-status.spec.d.ts → shared/Table/Th.spec.d.ts} +0 -0
  840. /package/lib/src/components/{commons/use-on-handle-change.spec.d.ts → shared/Table/Thead.spec.d.ts} +0 -0
  841. /package/lib/src/components/{component-set/html/component-set.spec.d.ts → shared/Table/Tr.spec.d.ts} +0 -0
  842. /package/lib/src/components/{datepicker/html/datepicker.spec.d.ts → shared/VariableStatus/VariableStatus.spec.d.ts} +0 -0
  843. /package/lib/src/components/{commons/components → shared/suggester-loader-widget}/dragger/dragger.d.ts +0 -0
  844. /package/lib/src/components/{declarations/declaration.spec.d.ts → shared/suggester-loader-widget/dragger/dragger.spec.d.ts} +0 -0
  845. /package/lib/src/components/{commons/components → shared/suggester-loader-widget}/dragger/index.d.ts +0 -0
  846. /package/lib/src/components/{suggester-loader-widget → shared/suggester-loader-widget}/index.d.ts +0 -0
  847. /package/lib/src/components/{commons/components → shared/suggester-loader-widget}/is-network/index.d.ts +0 -0
  848. /package/lib/src/components/{commons/components → shared/suggester-loader-widget}/is-network/is-network.d.ts +0 -0
  849. /package/lib/src/components/{declarations/declarations.spec.d.ts → shared/suggester-loader-widget/is-network/is-network.spec.d.ts} +0 -0
  850. /package/lib/src/components/{commons/components → shared/suggester-loader-widget}/is-network/use-online-status.d.ts +0 -0
  851. /package/lib/src/components/{dropdown/html/dropdown-writable/filter-tools/filter-options.spec.d.ts → shared/suggester-loader-widget/is-network/use-online-status.spec.d.ts} +0 -0
  852. /package/lib/src/components/{suggester-loader-widget → shared/suggester-loader-widget}/progress.d.ts +0 -0
  853. /package/lib/src/components/{suggester-loader-widget → shared/suggester-loader-widget}/tools/action-tool.d.ts +0 -0
  854. /package/lib/src/components/{suggester-loader-widget → shared/suggester-loader-widget}/tools/index.d.ts +0 -0
  855. /package/lib/src/components/{suggester-loader-widget → shared/suggester-loader-widget}/tools/tools.d.ts +0 -0
  856. /package/lib/src/components/{suggester-loader-widget → shared/suggester-loader-widget}/widget-container.d.ts +0 -0
@@ -31,8 +31,8 @@ declare function useLunatic(source: LunaticSource, data: LunaticData | undefined
31
31
  only?: (keyof {
32
32
  InputNumber: import("../components/type").LunaticBaseProps<number | null> & {
33
33
  min?: number | undefined;
34
- max: number;
35
- decimals: number;
34
+ max?: number | undefined;
35
+ decimals?: number | undefined;
36
36
  unit?: string | undefined;
37
37
  response: {
38
38
  name: string;
@@ -51,13 +51,11 @@ declare function useLunatic(source: LunaticSource, data: LunaticData | undefined
51
51
  name: string;
52
52
  };
53
53
  };
54
- Sequence: Pick<import("../components/type").LunaticBaseProps<string>, "label" | "style" | "id" | "declarations">;
55
- Subsequence: Pick<import("../components/type").LunaticBaseProps<string>, "label" | "id" | "declarations">;
56
- Question: Pick<import("../components/type").LunaticBaseProps<unknown>, "label" | "id" | "description" | "declarations"> & {
54
+ Sequence: Pick<import("../components/type").LunaticBaseProps<string>, "id" | "label" | "style" | "description" | "declarations">;
55
+ Subsequence: Pick<import("../components/type").LunaticBaseProps<string>, "id" | "label" | "declarations">;
56
+ Question: Pick<import("../components/type").LunaticBaseProps<unknown>, "id" | "label" | "description" | "declarations"> & {
57
57
  components: import("./commons/fill-components/fill-components").FilledLunaticComponentProps[];
58
58
  };
59
- QuestionContext: Pick<import("../components/type").LunaticBaseProps<unknown>, "label" | "description">;
60
- QuestionInformation: Pick<import("../components/type").LunaticBaseProps<unknown>, "label" | "description">;
61
59
  ComponentSet: import("../components/type").LunaticBaseProps<unknown> & {
62
60
  components: import("./commons/fill-components/fill-components").FilledLunaticComponentProps[];
63
61
  value: Record<string, unknown>;
@@ -78,6 +76,8 @@ declare function useLunatic(source: LunaticSource, data: LunaticData | undefined
78
76
  value: Record<string, unknown[]>;
79
77
  header?: {
80
78
  label: import("react").ReactNode;
79
+ rowspan?: number | undefined;
80
+ colspan?: number | undefined;
81
81
  }[] | undefined;
82
82
  paginatedLoop?: boolean | undefined;
83
83
  };
@@ -140,7 +140,7 @@ declare function useLunatic(source: LunaticSource, data: LunaticData | undefined
140
140
  };
141
141
  CheckboxOne: import("../components/type").LunaticBaseProps<string | null> & {
142
142
  options: {
143
- description: import("react").ReactNode;
143
+ description?: import("react").ReactNode;
144
144
  label: import("react").ReactNode;
145
145
  value: string;
146
146
  }[];
@@ -158,11 +158,6 @@ declare function useLunatic(source: LunaticSource, data: LunaticData | undefined
158
158
  } | undefined;
159
159
  };
160
160
  CheckboxBoolean: import("../components/type").LunaticBaseProps<boolean> & {
161
- options: {
162
- description: import("react").ReactNode;
163
- label: import("react").ReactNode;
164
- value: string;
165
- }[];
166
161
  response: {
167
162
  name: string;
168
163
  };
@@ -215,10 +210,7 @@ declare function useLunatic(source: LunaticSource, data: LunaticData | undefined
215
210
  name: string;
216
211
  };
217
212
  };
218
- FilterDescription: Pick<import("../components/type").LunaticBaseProps<string>, "label" | "id">;
219
- QuestionExplication: Pick<import("../components/type").LunaticBaseProps<string>, "label" | "id" | "description"> & {
220
- bgColor?: string | undefined;
221
- };
213
+ FilterDescription: Pick<import("../components/type").LunaticBaseProps<string>, "id" | "label">;
222
214
  PairwiseLinks: Omit<import("../components/type").LunaticBaseProps<unknown>, "value"> & {
223
215
  components: import("./type").LunaticComponentDefinition[];
224
216
  features?: ["VTL"] | ["VTL", "MD"] | undefined;
@@ -257,6 +249,11 @@ declare function useLunatic(source: LunaticSource, data: LunaticData | undefined
257
249
  };
258
250
  };
259
251
  Summary: import("../components/type").LunaticBaseProps<string | null> & {
252
+ executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
253
+ iteration?: number | number[] | undefined;
254
+ bindingDependencies?: string[] | undefined;
255
+ deps?: string[] | undefined;
256
+ } | undefined) => T;
260
257
  sections: {
261
258
  id: string;
262
259
  responses?: {
@@ -268,23 +265,12 @@ declare function useLunatic(source: LunaticSource, data: LunaticData | undefined
268
265
  iterations?: number | undefined;
269
266
  }[];
270
267
  };
271
- ConfirmationModal: import("../components/type").LunaticBaseProps<string | null> & {
272
- goToPage: (page: {
273
- page: string;
274
- iteration?: number | undefined;
275
- nbIterations?: number | undefined;
276
- subPage?: number | undefined;
277
- }) => void;
278
- page: string;
279
- goNextPage: () => void;
280
- goPreviousPage: () => void;
281
- };
282
268
  })[] | undefined;
283
269
  except?: (keyof {
284
270
  InputNumber: import("../components/type").LunaticBaseProps<number | null> & {
285
271
  min?: number | undefined;
286
- max: number;
287
- decimals: number;
272
+ max?: number | undefined;
273
+ decimals?: number | undefined;
288
274
  unit?: string | undefined;
289
275
  response: {
290
276
  name: string;
@@ -303,13 +289,11 @@ declare function useLunatic(source: LunaticSource, data: LunaticData | undefined
303
289
  name: string;
304
290
  };
305
291
  };
306
- Sequence: Pick<import("../components/type").LunaticBaseProps<string>, "label" | "style" | "id" | "declarations">;
307
- Subsequence: Pick<import("../components/type").LunaticBaseProps<string>, "label" | "id" | "declarations">;
308
- Question: Pick<import("../components/type").LunaticBaseProps<unknown>, "label" | "id" | "description" | "declarations"> & {
292
+ Sequence: Pick<import("../components/type").LunaticBaseProps<string>, "id" | "label" | "style" | "description" | "declarations">;
293
+ Subsequence: Pick<import("../components/type").LunaticBaseProps<string>, "id" | "label" | "declarations">;
294
+ Question: Pick<import("../components/type").LunaticBaseProps<unknown>, "id" | "label" | "description" | "declarations"> & {
309
295
  components: import("./commons/fill-components/fill-components").FilledLunaticComponentProps[];
310
296
  };
311
- QuestionContext: Pick<import("../components/type").LunaticBaseProps<unknown>, "label" | "description">;
312
- QuestionInformation: Pick<import("../components/type").LunaticBaseProps<unknown>, "label" | "description">;
313
297
  ComponentSet: import("../components/type").LunaticBaseProps<unknown> & {
314
298
  components: import("./commons/fill-components/fill-components").FilledLunaticComponentProps[];
315
299
  value: Record<string, unknown>;
@@ -330,6 +314,8 @@ declare function useLunatic(source: LunaticSource, data: LunaticData | undefined
330
314
  value: Record<string, unknown[]>;
331
315
  header?: {
332
316
  label: import("react").ReactNode;
317
+ rowspan?: number | undefined;
318
+ colspan?: number | undefined;
333
319
  }[] | undefined;
334
320
  paginatedLoop?: boolean | undefined;
335
321
  };
@@ -392,7 +378,7 @@ declare function useLunatic(source: LunaticSource, data: LunaticData | undefined
392
378
  };
393
379
  CheckboxOne: import("../components/type").LunaticBaseProps<string | null> & {
394
380
  options: {
395
- description: import("react").ReactNode;
381
+ description?: import("react").ReactNode;
396
382
  label: import("react").ReactNode;
397
383
  value: string;
398
384
  }[];
@@ -410,11 +396,6 @@ declare function useLunatic(source: LunaticSource, data: LunaticData | undefined
410
396
  } | undefined;
411
397
  };
412
398
  CheckboxBoolean: import("../components/type").LunaticBaseProps<boolean> & {
413
- options: {
414
- description: import("react").ReactNode;
415
- label: import("react").ReactNode;
416
- value: string;
417
- }[];
418
399
  response: {
419
400
  name: string;
420
401
  };
@@ -467,10 +448,7 @@ declare function useLunatic(source: LunaticSource, data: LunaticData | undefined
467
448
  name: string;
468
449
  };
469
450
  };
470
- FilterDescription: Pick<import("../components/type").LunaticBaseProps<string>, "label" | "id">;
471
- QuestionExplication: Pick<import("../components/type").LunaticBaseProps<string>, "label" | "id" | "description"> & {
472
- bgColor?: string | undefined;
473
- };
451
+ FilterDescription: Pick<import("../components/type").LunaticBaseProps<string>, "id" | "label">;
474
452
  PairwiseLinks: Omit<import("../components/type").LunaticBaseProps<unknown>, "value"> & {
475
453
  components: import("./type").LunaticComponentDefinition[];
476
454
  features?: ["VTL"] | ["VTL", "MD"] | undefined;
@@ -509,6 +487,11 @@ declare function useLunatic(source: LunaticSource, data: LunaticData | undefined
509
487
  };
510
488
  };
511
489
  Summary: import("../components/type").LunaticBaseProps<string | null> & {
490
+ executeExpression: <T extends unknown = unknown>(expression: unknown, args?: {
491
+ iteration?: number | number[] | undefined;
492
+ bindingDependencies?: string[] | undefined;
493
+ deps?: string[] | undefined;
494
+ } | undefined) => T;
512
495
  sections: {
513
496
  id: string;
514
497
  responses?: {
@@ -520,19 +503,8 @@ declare function useLunatic(source: LunaticSource, data: LunaticData | undefined
520
503
  iterations?: number | undefined;
521
504
  }[];
522
505
  };
523
- ConfirmationModal: import("../components/type").LunaticBaseProps<string | null> & {
524
- goToPage: (page: {
525
- page: string;
526
- iteration?: number | undefined;
527
- nbIterations?: number | undefined;
528
- subPage?: number | undefined;
529
- }) => void;
530
- page: string;
531
- goNextPage: () => void;
532
- goPreviousPage: () => void;
533
- };
534
506
  })[] | undefined;
535
- }) => import("./commons/fill-components/fill-components").FilledLunaticComponentProps<"CheckboxOne" | "ConfirmationModal" | "Question" | "Sequence" | "Subsequence" | "RosterForLoop" | "Loop" | "Table" | "InputNumber" | "Datepicker" | "CheckboxGroup" | "CheckboxBoolean" | "Radio" | "FilterDescription" | "Dropdown" | "PairwiseLinks" | "Roundabout" | "Suggester" | "Input" | "Textarea" | "ComponentSet" | "QuestionExplication">[];
507
+ }) => import("./commons/fill-components/fill-components").FilledLunaticComponentProps<"CheckboxOne" | "Sequence" | "Subsequence" | "RosterForLoop" | "Loop" | "Table" | "InputNumber" | "Datepicker" | "CheckboxGroup" | "CheckboxBoolean" | "Radio" | "FilterDescription" | "Dropdown" | "PairwiseLinks" | "Roundabout" | "Suggester" | "Input" | "Textarea" | "ComponentSet" | "Question">[];
536
508
  goPreviousPage: () => void;
537
509
  goNextPage: (payload?: {}) => void;
538
510
  goToPage: (page: {
@@ -1,4 +1,4 @@
1
- export * as CONSTANTES from './constantes';
1
+ export * as CONSTANTES from '../../constants/indexedDBStore';
2
2
  export { default as openOrCreateStore } from './open-or-create-store';
3
3
  export { default as clearStoreData } from './clear-store-data';
4
4
  export { default as clearStoreInfo } from './clear-store-info';
@@ -15,8 +15,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
15
15
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
16
16
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
17
17
  function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
18
- function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
19
- function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
18
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
19
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
20
20
  var stories = {
21
21
  title: 'Behaviour/Cleaning',
22
22
  component: _orchestrator["default"],
@@ -14,8 +14,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
14
14
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
15
15
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
16
16
  function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
17
- function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
18
- function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
17
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
18
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
19
19
  var stories = {
20
20
  title: 'Questionnaires-Tests/Controls-externes',
21
21
  component: _orchestrator["default"],
@@ -18,8 +18,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
18
18
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
19
19
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
20
20
  function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
21
- function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
22
- function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
21
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
22
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
23
23
  var stories = {
24
24
  title: 'Behaviour/Controls',
25
25
  component: _orchestrator["default"],
@@ -14,8 +14,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
14
14
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
15
15
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
16
16
  function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
17
- function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
18
- function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
17
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
18
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
19
19
  var stories = {
20
20
  title: 'Behaviour/Missing',
21
21
  component: _orchestrator["default"],
@@ -18,8 +18,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
18
18
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
19
19
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
20
20
  function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
21
- function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
22
- function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
21
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
22
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
23
23
  var stories = {
24
24
  title: 'Behaviour/Others',
25
25
  component: _orchestrator["default"],
@@ -63,7 +63,7 @@ TestDylan.args = {
63
63
  };
64
64
  var DeclarationsSimples = exports.DeclarationsSimples = Template.bind({});
65
65
  DeclarationsSimples.args = {
66
- id: 'declarations-simples',
66
+ id: 'Declarations-simples',
67
67
  pagination: true,
68
68
  source: _V2_DeclarationsSimples["default"]
69
69
  };