@cnamts/synapse 1.0.13 → 1.0.15

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 (254) hide show
  1. package/README.md +72 -72
  2. package/dist/{DateFilter-_EFzsvvM.js → DateFilter-isr8mXVb.js} +1 -1
  3. package/dist/{NumberFilter-CUxEbKJh.js → NumberFilter-BOe7DqWX.js} +1 -1
  4. package/dist/{PeriodFilter-D5ueqtKy.js → PeriodFilter-WTprpO40.js} +1 -1
  5. package/dist/{SelectFilter-BciBNydy.js → SelectFilter-CqlG5dmI.js} +1 -1
  6. package/dist/{TextFilter-DMN_WAQB.js → TextFilter-fVW5bsRw.js} +1 -1
  7. package/dist/components/Amelipro/AmeliproAutoCompleteField/AmeliproAutoCompleteField.d.ts +60 -28
  8. package/dist/components/Amelipro/AmeliproFilePreview/AmeliproFilePreview.d.ts +3 -3
  9. package/dist/components/Amelipro/AmeliproSelect/AmeliproSelect.d.ts +60 -28
  10. package/dist/components/Amelipro/AmeliproTabs/AmeliproTabs.d.ts +61 -29
  11. package/dist/components/Amelipro/AmeliproTextArea/AmeliproTextArea.d.ts +5 -1
  12. package/dist/components/Amelipro/AmeliproTextField/AmeliproTextField.d.ts +3 -1
  13. package/dist/components/Amelipro/StructureMenu/StructureTabs/StructureTabs.d.ts +1 -1
  14. package/dist/components/Captcha/Captcha.d.ts +2 -0
  15. package/dist/components/Captcha/CaptchaBase.d.ts +1 -0
  16. package/dist/components/Customs/Selects/SySelect/SySelect.d.ts +29 -17
  17. package/dist/components/Customs/SyTabs/SyTabs.d.ts +20 -0
  18. package/dist/components/DatePicker/CalendarMode/DatePicker.d.ts +100 -10
  19. package/dist/components/DatePicker/ComplexDatePicker/ComplexDatePicker.d.ts +108 -21
  20. package/dist/components/DatePicker/DateTextInput/DateTextInput.d.ts +6 -6
  21. package/dist/components/DatePicker/composables/useDateFormatDisplay.d.ts +3 -0
  22. package/dist/components/DatePicker/tests/setup.d.ts +768 -48
  23. package/dist/components/FilterSideBar/FilterSideBar.d.ts +8 -0
  24. package/dist/components/HeaderToolbar/HeaderToolbar.d.ts +58 -34
  25. package/dist/components/LangBtn/LangBtn.d.ts +4 -0
  26. package/dist/components/PeriodField/PeriodField.d.ts +192 -12
  27. package/dist/components/RatingPicker/RatingPicker.d.ts +9 -0
  28. package/dist/components/SearchListField/SearchListField.d.ts +42 -413
  29. package/dist/components/SearchListField/locales.d.ts +1 -2
  30. package/dist/components/SyAlert/SyAlert.d.ts +1 -1
  31. package/dist/components/SyTextArea/SyTextArea.d.ts +2 -0
  32. package/dist/components/Tables/SyServerTable/SyServerTable.d.ts +15 -8
  33. package/dist/components/Tables/SyTable/SyTable.d.ts +15 -8
  34. package/dist/components/Tables/common/SyTablePagination.d.ts +29 -17
  35. package/dist/components/Tables/common/organizeColumns/OrganizeColumns.d.ts +4 -0
  36. package/dist/components/Tables/common/types.d.ts +2 -0
  37. package/dist/design-system-v3.js +1 -1
  38. package/dist/design-system-v3.umd.cjs +32 -16
  39. package/dist/{main-DISHlqcd.js → main-CbBVJ_le.js} +9911 -9751
  40. package/dist/style.css +1 -1
  41. package/package.json +5 -2
  42. package/src/assets/amelipro/icons.ts +17 -0
  43. package/src/components/Amelipro/AmeliproAccordionFrieze/AmeliproAccordionFrieze.stories.ts +40 -36
  44. package/src/components/Amelipro/AmeliproAccordionGroup/__tests__/AmeliproAccordionGroup.spec.ts +226 -26
  45. package/src/components/Amelipro/AmeliproAccordionGroup/__tests__/__snapshots__/AmeliproAccordionGroup.spec.ts.snap +55 -506
  46. package/src/components/Amelipro/AmeliproAccordionList/AmeliproAccordionList.stories.ts +1 -1
  47. package/src/components/Amelipro/AmeliproAccordionList/AmeliproAccordionList.vue +7 -2
  48. package/src/components/Amelipro/AmeliproAccordionList/__tests__/__snapshots__/AmeliproAccordionList.spec.ts.snap +2 -1
  49. package/src/components/Amelipro/AmeliproAccordionResult/AmeliproAccordionResultTemplate/__tests__/__snapshots__/AmeliproAccordionResultTemplate.spec.ts.snap +4 -1
  50. package/src/components/Amelipro/AmeliproAccordionResult/__tests__/__snapshots__/AmeliproAccordionResult.spec.ts.snap +4 -1
  51. package/src/components/Amelipro/AmeliproAccordionResultList/AmeliproAccordionResultList.stories.ts +1 -1
  52. package/src/components/Amelipro/AmeliproAccordionResultList/AmeliproAccordionResultList.vue +9 -3
  53. package/src/components/Amelipro/AmeliproAccordionResultList/__tests__/__snapshots__/AmeliproAccordionResultList.spec.ts.snap +42 -11
  54. package/src/components/Amelipro/AmeliproAutoCompleteField/AmeliproAutoCompleteField.stories.ts +4 -4
  55. package/src/components/Amelipro/AmeliproAutoCompleteField/AmeliproAutoCompleteField.vue +7 -5
  56. package/src/components/Amelipro/AmeliproAutoCompleteField/__tests__/__snapshots__/AmeliproAutoCompleteField.spec.ts.snap +4 -2
  57. package/src/components/Amelipro/AmeliproBtn/AmeliproBtn.stories.ts +1 -40
  58. package/src/components/Amelipro/AmeliproBtn/AmeliproBtn.vue +4 -0
  59. package/src/components/Amelipro/AmeliproCallback/AmeliproCallback.stories.ts +4 -2
  60. package/src/components/Amelipro/AmeliproCaptcha/__tests__/__snapshots__/AmeliproCaptcha.spec.ts.snap +2 -1
  61. package/src/components/Amelipro/AmeliproClickableTile/AmeliproClickableTile.stories.ts +39 -29
  62. package/src/components/Amelipro/AmeliproCopyBtn/__tests__/__snapshots__/AmeliproCopyBtn.spec.ts.snap +4 -1
  63. package/src/components/Amelipro/AmeliproCustomSelector/AmeliproCustomSelector.vue +3 -3
  64. package/src/components/Amelipro/AmeliproCustomSelector/__tests__/__snapshots__/AmeliproCustomSelector.spec.ts.snap +8 -6
  65. package/src/components/Amelipro/AmeliproFilePreview/AmeliproFilePreview.mdx +3 -1
  66. package/src/components/Amelipro/AmeliproFilePreview/AmeliproFilePreview.stories.ts +23 -5
  67. package/src/components/Amelipro/AmeliproFilePreview/AmeliproFilePreview.vue +5 -6
  68. package/src/components/Amelipro/AmeliproFilePreview/__tests__/AmeliproFilePreview.spec.ts +2 -2
  69. package/src/components/Amelipro/AmeliproFilePreview/__tests__/__snapshots__/AmeliproFilePreview.spec.ts.snap +5 -6
  70. package/src/components/Amelipro/AmeliproFirstLogin/__tests__/__snapshots__/AmeliproFirstLogin.spec.ts.snap +4 -1
  71. package/src/components/Amelipro/AmeliproHeader/AmeliproHeader.vue +1 -2
  72. package/src/components/Amelipro/AmeliproHeader/AmeliproHeaderBar/AmeliproLogoAm/__tests__/AmeliproLogoAm.spec.ts +78 -0
  73. package/src/components/Amelipro/AmeliproHeader/AmeliproHeaderBar/AmeliproLogoAm/{tests → __tests__}/__snapshots__/AmeliproLogoAm.spec.ts.snap +64 -2
  74. package/src/components/Amelipro/AmeliproIcon/__tests__/AmeliproIcon.spec.ts +358 -0
  75. package/src/components/Amelipro/AmeliproIcon/{tests → __tests__}/__snapshots__/AmeliproIcon.spec.ts.snap +30 -3
  76. package/src/components/Amelipro/AmeliproIcon/iconList.ts +1 -0
  77. package/src/components/Amelipro/AmeliproIconBtn/AmeliproIconBtn.vue +1 -1
  78. package/src/components/Amelipro/AmeliproIconBtn/__tests__/AmeliproIconBtn.spec.ts +459 -0
  79. package/src/components/Amelipro/AmeliproIconBtn/__tests__/__snapshots__/AmeliproIconBtn.spec.ts.snap +58 -0
  80. package/src/components/Amelipro/AmeliproIllustratedDataTile/AmeliproIllustratedDataTile.stories.ts +38 -26
  81. package/src/components/Amelipro/AmeliproIllustratedDataTile/__tests__/AmeliproIllustratedDataTile.spec.ts +321 -0
  82. package/src/components/Amelipro/AmeliproIllustratedDataTile/__tests__/__snapshots__/AmeliproIllustratedDataTile.spec.ts.snap +148 -0
  83. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/AmeliproIllustratedRadioGroup.stories.ts +14 -5
  84. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/AmeliproIllustratedRadioGroup.vue +1 -1
  85. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/__tests__/AmeliproIllustratedRadioGroup.spec.ts +498 -0
  86. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/__tests__/__snapshots__/AmeliproIllustratedRadioGroup.spec.ts.snap +325 -0
  87. package/src/components/Amelipro/AmeliproMailTile/__tests__/AmeliproMailTile.spec.ts +210 -0
  88. package/src/components/Amelipro/AmeliproMailTile/__tests__/__snapshots__/AmeliproMailTile.spec.ts.snap +98 -0
  89. package/src/components/Amelipro/AmeliproMessage/__tests__/AmeliproMessage.spec.ts +446 -0
  90. package/src/components/Amelipro/AmeliproMessage/__tests__/__snapshots__/AmeliproMessage.spec.ts.snap +60 -0
  91. package/src/components/Amelipro/AmeliproMessagingLayout/__tests__/AmeliproMessagingLayout.spec.ts +300 -0
  92. package/src/components/Amelipro/AmeliproMessagingLayout/__tests__/__snapshots__/AmeliproMessagingLayout.spec.ts.snap +197 -0
  93. package/src/components/Amelipro/AmeliproNumberedCard/__tests__/AmeliproNumberedCard.spec.ts +117 -0
  94. package/src/components/Amelipro/AmeliproNumberedCard/{tests → __tests__}/__snapshots__/AmeliproNumberedCard.spec.ts.snap +47 -45
  95. package/src/components/Amelipro/AmeliproOnboarding/__tests__/AmeliproOnboarding.spec.ts +219 -0
  96. package/src/components/Amelipro/AmeliproOnboarding/__tests__/__snapshots__/AmeliproOnboarding.spec.ts.snap +41 -0
  97. package/src/components/Amelipro/AmeliproPageLayout/__tests__/AmeliproPageLayout.spec.ts +129 -0
  98. package/src/components/Amelipro/AmeliproPageLayout/__tests__/__snapshots__/AmeliproPageLayout.spec.ts.snap +189 -0
  99. package/src/components/Amelipro/AmeliproPagination/AmeliproPaginationBtn/__tests__/AmeliproPaginationBtn.spec.ts +92 -0
  100. package/src/components/Amelipro/AmeliproPagination/AmeliproPaginationBtn/__tests__/__snapshots__/AmeliproPaginationBtn.spec.ts.snap +56 -0
  101. package/src/components/Amelipro/AmeliproPagination/__tests__/AmeliproPagination.spec.ts +165 -0
  102. package/src/components/Amelipro/AmeliproPagination/__tests__/__snapshots__/AmeliproPagination.spec.ts.snap +83 -0
  103. package/src/components/Amelipro/AmeliproPatientBanner/__tests__/AmeliproPatientBanner.spec.ts +208 -0
  104. package/src/components/Amelipro/AmeliproPatientBanner/__tests__/__snapshots__/AmeliproPatientBanner.spec.ts.snap +285 -0
  105. package/src/components/Amelipro/AmeliproPatientLogged/__tests__/__snapshots__/AmeliproPatientLogged.spec.ts.snap +26 -7
  106. package/src/components/Amelipro/AmeliproPostalAddressField/AmeliproPostalAddressCityRow/__tests__/__snapshots__/AmeliproPostalAddressCityRow.spec.ts.snap +12 -4
  107. package/src/components/Amelipro/AmeliproRadioGroup/AmeliproRadioGroup.stories.ts +28 -8
  108. package/src/components/Amelipro/AmeliproRadioGroup/__tests__/AmeliproRadioGroup.spec.ts +332 -0
  109. package/src/components/Amelipro/AmeliproRadioGroup/__tests__/__snapshots__/AmeliproRadioGroup.spec.ts.snap +255 -0
  110. package/src/components/Amelipro/AmeliproResultList/AmeliproResultList.stories.ts +1 -2
  111. package/src/components/Amelipro/AmeliproResultList/AmeliproResultList.vue +3 -1
  112. package/src/components/Amelipro/AmeliproResultList/__tests__/__snapshots__/AmeliproResultList.spec.ts.snap +2 -1
  113. package/src/components/Amelipro/AmeliproSelect/AmeliproSelect.vue +11 -5
  114. package/src/components/Amelipro/AmeliproSelect/__tests__/AmeliproSelect.spec.ts +481 -0
  115. package/src/components/Amelipro/AmeliproSelect/__tests__/__snapshots__/AmeliproSelect.spec.ts.snap +117 -0
  116. package/src/components/Amelipro/AmeliproStateTile/AmeliproStateTile.vue +5 -2
  117. package/src/components/Amelipro/AmeliproStateTile/__tests__/AmeliproStateTile.spec.ts +206 -0
  118. package/src/components/Amelipro/AmeliproStateTile/__tests__/__snapshots__/AmeliproStateTile.spec.ts.snap +158 -0
  119. package/src/components/Amelipro/AmeliproStatus/__tests__/AmeliproStatus.spec.ts +120 -0
  120. package/src/components/Amelipro/AmeliproStatus/__tests__/__snapshots__/AmeliproStatus.spec.ts.snap +39 -0
  121. package/src/components/Amelipro/AmeliproStepper/AmeliproStepBtn/__tests__/AmeliproStepBtn.spec.ts +97 -0
  122. package/src/components/Amelipro/AmeliproStepper/AmeliproStepBtn/__tests__/__snapshots__/AmeliproStepBtn.spec.ts.snap +61 -0
  123. package/src/components/Amelipro/AmeliproStepper/__tests__/AmeliproStepper.spec.ts +248 -0
  124. package/src/components/Amelipro/AmeliproStepper/__tests__/__snapshots__/AmeliproStepper.spec.ts.snap +179 -0
  125. package/src/components/Amelipro/AmeliproTable/AmeliproTable.stories.ts +14 -13
  126. package/src/components/Amelipro/AmeliproTable/AmeliproTable.vue +2 -1
  127. package/src/components/Amelipro/AmeliproTable/__tests__/__snapshots__/AmeliproTable.spec.ts.snap +10 -3
  128. package/src/components/Amelipro/AmeliproTabs/AmeliproTabBtn/__tests__/AmeliproTabBtn.spec.ts +129 -0
  129. package/src/components/Amelipro/AmeliproTabs/AmeliproTabBtn/__tests__/__snapshots__/AmeliproTabBtn.spec.ts.snap +81 -0
  130. package/src/components/Amelipro/AmeliproTabs/AmeliproTabs.vue +2 -2
  131. package/src/components/Amelipro/AmeliproTabs/__tests__/AmeliproTabs.spec.ts +234 -0
  132. package/src/components/Amelipro/AmeliproTabs/__tests__/__snapshots__/AmeliproTabs.spec.ts.snap +122 -0
  133. package/src/components/Amelipro/AmeliproTextArea/AmeliproTextArea.vue +7 -5
  134. package/src/components/Amelipro/AmeliproTextArea/__tests__/AmeliproTextArea.spec.ts +265 -9
  135. package/src/components/Amelipro/AmeliproTextArea/__tests__/__snapshots__/AmeliproTextArea.spec.ts.snap +98 -155
  136. package/src/components/Amelipro/AmeliproTextField/AmeliproTextField.vue +7 -5
  137. package/src/components/Amelipro/AmeliproTextField/__tests__/AmeliproTextField.spec.ts +375 -0
  138. package/src/components/Amelipro/AmeliproTextField/__tests__/__snapshots__/AmeliproTextField.spec.ts.snap +143 -0
  139. package/src/components/Amelipro/AmeliproTileBtn/__tests__/AmeliproTileBtn.spec.ts +241 -0
  140. package/src/components/Amelipro/AmeliproTileBtn/__tests__/__snapshots__/AmeliproTileBtn.spec.ts.snap +74 -0
  141. package/src/components/Amelipro/AmeliproTooltips/__tests__/AmeliproTooltips.spec.ts +212 -0
  142. package/src/components/Amelipro/AmeliproTooltips/__tests__/__snapshots__/AmeliproTooltips.spec.ts.snap +71 -0
  143. package/src/components/Amelipro/AmeliproTransmission/__tests__/AmeliproTransmission.spec.ts +155 -0
  144. package/src/components/Amelipro/AmeliproTransmission/__tests__/__snapshots__/AmeliproTransmission.spec.ts.snap +240 -0
  145. package/src/components/Amelipro/AmeliproUpload/AmeliproUpload.stories.ts +0 -1
  146. package/src/components/Amelipro/ServiceMenu/tests/__snapshots__/ServiceMenu.spec.ts.snap +4 -1
  147. package/src/components/Amelipro/StructureMenu/StructureBtn/StructureBtn.vue +4 -0
  148. package/src/components/Amelipro/StructureMenu/StructureTabs/StructureTabs.vue +4 -5
  149. package/src/components/Amelipro/StructureMenu/StructureTabs/tests/__snapshots__/StructureTabs.spec.ts.snap +5 -4
  150. package/src/components/Amelipro/StructureMenu/tests/__snapshots__/StructureMenu.spec.ts.snap +13 -6
  151. package/src/components/Amelipro/UserMenu/UserMenu.vue +2 -1
  152. package/src/components/Amelipro/UserMenu/tests/__snapshots__/UserMenu.spec.ts.snap +4 -1
  153. package/src/components/Captcha/Captcha.mdx +4 -4
  154. package/src/components/Captcha/Captcha.stories.ts +8 -1
  155. package/src/components/Captcha/Captcha.vue +3 -0
  156. package/src/components/Captcha/CaptchaBase.vue +3 -0
  157. package/src/components/Captcha/captchaApi.ts +0 -1
  158. package/src/components/Customs/Selects/SySelect/SySelect.vue +2 -2
  159. package/src/components/Customs/SyCheckbox/SyCheckbox.stories.ts +5 -0
  160. package/src/components/Customs/SyCheckbox/SyCheckbox.vue +1 -1
  161. package/src/components/Customs/SyTabs/SyTabs.stories.ts +174 -10
  162. package/src/components/Customs/SyTabs/SyTabs.vue +62 -0
  163. package/src/components/Customs/SyTabs/tests/SyTabs.spec.ts +98 -0
  164. package/src/components/DatePicker/CalendarMode/DatePicker.stories.ts +13 -13
  165. package/src/components/DatePicker/CalendarMode/DatePicker.vue +13 -0
  166. package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.stories.ts +11 -11
  167. package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.vue +5 -0
  168. package/src/components/DatePicker/DatePickerValidationExample/DatePickerValidation.mdx +7 -0
  169. package/src/components/DatePicker/DateTextInput/DateTextInput.range.spec.ts +1 -1
  170. package/src/components/DatePicker/DateTextInput/DateTextInput.spec.ts +3 -3
  171. package/src/components/DatePicker/DateTextInput/DateTextInput.vue +50 -2
  172. package/src/components/DatePicker/DateTextInput/NoCalendar.stories.ts +15 -15
  173. package/src/components/DatePicker/composables/tests/useDateFormatValidation.spec.ts +2 -2
  174. package/src/components/DatePicker/composables/tests/useManualDateValidation.spec.ts +1 -1
  175. package/src/components/DatePicker/composables/useDateFormatDisplay.ts +25 -0
  176. package/src/components/DatePicker/composables/useDateFormatValidation.ts +5 -2
  177. package/src/components/DatePicker/composables/useManualDateValidation.ts +5 -1
  178. package/src/components/DatePicker/tests/DatePicker.validation.spec.ts +1 -1
  179. package/src/components/ErrorPage/ErrorPage.vue +54 -7
  180. package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +6 -2
  181. package/src/components/ExternalLinks/ExternalLinks.vue +2 -4
  182. package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +6 -2
  183. package/src/components/PasswordField/PasswordField.vue +6 -6
  184. package/src/components/RangeField/RangeSlider/RangeSlider.vue +3 -2
  185. package/src/components/RatingPicker/EmotionPicker/EmotionPicker.vue +2 -1
  186. package/src/components/RatingPicker/NumberPicker/NumberPicker.vue +2 -0
  187. package/src/components/RatingPicker/RatingPicker.stories.ts +10 -0
  188. package/src/components/RatingPicker/RatingPicker.vue +23 -1
  189. package/src/components/RatingPicker/StarsPicker/StarsPicker.vue +2 -0
  190. package/src/components/SearchListField/Accessibilite.stories.ts +4 -0
  191. package/src/components/SearchListField/SearchListField.stories.ts +16 -0
  192. package/src/components/SearchListField/SearchListField.vue +121 -109
  193. package/src/components/SearchListField/locales.ts +11 -2
  194. package/src/components/SearchListField/tests/SearchListField.spec.ts +91 -25
  195. package/src/components/SyAlert/SyAlert.vue +8 -0
  196. package/src/components/SyAlert/tests/SyAlert.spec.ts +1 -22
  197. package/src/components/Tables/SyServerTable/SyServerTable.stories.ts +304 -0
  198. package/src/components/Tables/SyServerTable/SyServerTable.vue +12 -4
  199. package/src/components/Tables/SyServerTable/tests/SyServerTable.spec.ts +67 -0
  200. package/src/components/Tables/SyTable/SyTable.stories.ts +186 -0
  201. package/src/components/Tables/SyTable/SyTable.vue +12 -4
  202. package/src/components/Tables/SyTable/tests/SyTable.spec.ts +65 -1
  203. package/src/components/Tables/common/types.ts +2 -0
  204. package/src/composables/rules/useFieldValidation.ts +47 -7
  205. package/src/components/Amelipro/AmeliproHeader/AmeliproHeaderBar/AmeliproLogoAm/tests/AmeliproLogoAm.spec.ts +0 -15
  206. package/src/components/Amelipro/AmeliproIcon/tests/AmeliproIcon.spec.ts +0 -19
  207. package/src/components/Amelipro/AmeliproIconBtn/tests/AmeliproIconBtn.spec.ts +0 -22
  208. package/src/components/Amelipro/AmeliproIconBtn/tests/__snapshots__/AmeliproIconBtn.spec.ts.snap +0 -87
  209. package/src/components/Amelipro/AmeliproIllustratedDataTile/tests/AmeliproIllustratedDataTile.spec.ts +0 -20
  210. package/src/components/Amelipro/AmeliproIllustratedDataTile/tests/__snapshots__/AmeliproIllustratedDataTile.spec.ts.snap +0 -69
  211. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/tests/AmeliproIllustratedRadioGroup.spec.ts +0 -53
  212. package/src/components/Amelipro/AmeliproIllustratedRadioGroup/tests/__snapshots__/AmeliproIllustratedRadioGroup.spec.ts.snap +0 -544
  213. package/src/components/Amelipro/AmeliproMailTile/tests/AmeliproMailTile.spec.ts +0 -25
  214. package/src/components/Amelipro/AmeliproMailTile/tests/__snapshots__/AmeliproMailTile.spec.ts.snap +0 -164
  215. package/src/components/Amelipro/AmeliproMessage/tests/AmeliproMessage.spec.ts +0 -18
  216. package/src/components/Amelipro/AmeliproMessage/tests/__snapshots__/AmeliproMessage.spec.ts.snap +0 -94
  217. package/src/components/Amelipro/AmeliproMessagingLayout/tests/AmeliproMessagingLayout.spec.ts +0 -30
  218. package/src/components/Amelipro/AmeliproMessagingLayout/tests/__snapshots__/AmeliproMessagingLayout.spec.ts.snap +0 -439
  219. package/src/components/Amelipro/AmeliproNumberedCard/tests/AmeliproNumberedCard.spec.ts +0 -23
  220. package/src/components/Amelipro/AmeliproOnboarding/tests/AmeliproOnboarding.spec.ts +0 -41
  221. package/src/components/Amelipro/AmeliproOnboarding/tests/__snapshots__/AmeliproOnboarding.spec.ts.snap +0 -3
  222. package/src/components/Amelipro/AmeliproPageLayout/tests/AmeliproPageLayout.spec.ts +0 -183
  223. package/src/components/Amelipro/AmeliproPageLayout/tests/__snapshots__/AmeliproPageLayout.spec.ts.snap +0 -1602
  224. package/src/components/Amelipro/AmeliproPagination/AmeliproPaginationBtn/tests/AmeliproPaginationBtn.spec.ts +0 -15
  225. package/src/components/Amelipro/AmeliproPagination/AmeliproPaginationBtn/tests/__snapshots__/AmeliproPaginationBtn.spec.ts.snap +0 -46
  226. package/src/components/Amelipro/AmeliproPagination/tests/AmeliproPagination.spec.ts +0 -15
  227. package/src/components/Amelipro/AmeliproPagination/tests/__snapshots__/AmeliproPagination.spec.ts.snap +0 -116
  228. package/src/components/Amelipro/AmeliproPatientBanner/tests/AmeliproPatientBanner.spec.ts +0 -24
  229. package/src/components/Amelipro/AmeliproPatientBanner/tests/__snapshots__/AmeliproPatientBanner.spec.ts.snap +0 -268
  230. package/src/components/Amelipro/AmeliproRadioGroup/tests/AmeliproRadioGroup.spec.ts +0 -43
  231. package/src/components/Amelipro/AmeliproRadioGroup/tests/__snapshots__/AmeliproRadioGroup.spec.ts.snap +0 -262
  232. package/src/components/Amelipro/AmeliproSelect/tests/AmeliproSelect.spec.ts +0 -38
  233. package/src/components/Amelipro/AmeliproSelect/tests/__snapshots__/AmeliproSelect.spec.ts.snap +0 -196
  234. package/src/components/Amelipro/AmeliproStateTile/tests/AmeliproStateTile.spec.ts +0 -20
  235. package/src/components/Amelipro/AmeliproStateTile/tests/__snapshots__/AmeliproStateTile.spec.ts.snap +0 -90
  236. package/src/components/Amelipro/AmeliproStatus/tests/AmeliproStatus.spec.ts +0 -16
  237. package/src/components/Amelipro/AmeliproStatus/tests/__snapshots__/AmeliproStatus.spec.ts.snap +0 -21
  238. package/src/components/Amelipro/AmeliproStepper/AmeliproStepBtn/tests/AmeliproStepBtn.spec.ts +0 -18
  239. package/src/components/Amelipro/AmeliproStepper/AmeliproStepBtn/tests/__snapshots__/AmeliproStepBtn.spec.ts.snap +0 -34
  240. package/src/components/Amelipro/AmeliproStepper/tests/AmeliproStepper.spec.ts +0 -36
  241. package/src/components/Amelipro/AmeliproStepper/tests/__snapshots__/AmeliproStepper.spec.ts.snap +0 -354
  242. package/src/components/Amelipro/AmeliproTabs/AmeliproTabBtn/tests/AmeliproTabBtn.spec.ts +0 -20
  243. package/src/components/Amelipro/AmeliproTabs/AmeliproTabBtn/tests/__snapshots__/AmeliproTabBtn.spec.ts.snap +0 -34
  244. package/src/components/Amelipro/AmeliproTabs/tests/AmeliproTabs.spec.ts +0 -39
  245. package/src/components/Amelipro/AmeliproTabs/tests/__snapshots__/AmeliproTabs.spec.ts.snap +0 -217
  246. package/src/components/Amelipro/AmeliproTextField/tests/AmeliproTextField.spec.ts +0 -16
  247. package/src/components/Amelipro/AmeliproTextField/tests/__snapshots__/AmeliproTextField.spec.ts.snap +0 -162
  248. package/src/components/Amelipro/AmeliproTileBtn/tests/AmeliproTileBtn.spec.ts +0 -17
  249. package/src/components/Amelipro/AmeliproTileBtn/tests/__snapshots__/AmeliproTileBtn.spec.ts.snap +0 -65
  250. package/src/components/Amelipro/AmeliproTooltips/tests/AmeliproTooltips.spec.ts +0 -16
  251. package/src/components/Amelipro/AmeliproTooltips/tests/__snapshots__/AmeliproTooltips.spec.ts.snap +0 -105
  252. package/src/components/Amelipro/AmeliproTransmission/tests/AmeliproTransmission.spec.ts +0 -16
  253. package/src/components/Amelipro/AmeliproTransmission/tests/__snapshots__/AmeliproTransmission.spec.ts.snap +0 -246
  254. package/src/components/SyAlert/tests/__snapshots__/SyAlert.spec.ts.snap +0 -99
@@ -27,6 +27,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
27
27
  filterInputConfig: Record<string, unknown>;
28
28
  saveState: boolean;
29
29
  showFilters: boolean;
30
+ showSelectSingle: boolean;
30
31
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
31
32
  table: ({
32
33
  $: import('vue').ComponentInternalInstance;
@@ -37,7 +38,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
37
38
  expandOnClick: boolean;
38
39
  showExpand: boolean;
39
40
  expanded: readonly string[];
41
+ initialSortOrder: "desc" | "asc";
40
42
  sortBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
43
+ multiSort: boolean | import('vuetify/lib/components/VDataTable/composables/sort.mjs').MultiSortProps;
41
44
  mustSort: boolean;
42
45
  groupBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
43
46
  returnObject: boolean;
@@ -63,7 +66,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
63
66
  })[];
64
67
  showCurrentPage: boolean;
65
68
  disableSort: boolean;
66
- multiSort: boolean;
67
69
  sortAscIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
68
70
  sortDescIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
69
71
  sticky: boolean;
@@ -87,7 +89,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
87
89
  expandOnClick: boolean;
88
90
  showExpand: boolean;
89
91
  expanded: readonly string[];
92
+ initialSortOrder: "desc" | "asc";
90
93
  sortBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
94
+ multiSort: boolean | import('vuetify/lib/components/VDataTable/composables/sort.mjs').MultiSortProps;
91
95
  mustSort: boolean;
92
96
  groupBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
93
97
  returnObject: boolean;
@@ -113,7 +117,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
113
117
  })[];
114
118
  showCurrentPage: boolean;
115
119
  disableSort: boolean;
116
- multiSort: boolean;
117
120
  sortAscIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
118
121
  sortDescIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
119
122
  sticky: boolean;
@@ -149,7 +152,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
149
152
  "onUpdate:options"?: ((options: any) => any) | undefined;
150
153
  "onUpdate:page"?: ((page: number) => any) | undefined;
151
154
  "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
152
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "style" | "tag" | "density" | "sticky" | "loadingText" | "selectStrategy" | "returnObject" | "expandIcon" | "collapseIcon" | "page" | "hover" | "nextIcon" | "prevIcon" | "mobile" | "striped" | "hideNoData" | "noDataText" | "itemsPerPage" | "multiSort" | "mustSort" | "sortBy" | "groupBy" | "expandOnClick" | "showExpand" | "expanded" | "showSelect" | "firstIcon" | "lastIcon" | "itemsPerPageText" | "pageText" | "firstPageLabel" | "prevPageLabel" | "nextPageLabel" | "lastPageLabel" | "itemsPerPageOptions" | "showCurrentPage" | "disableSort" | "sortAscIcon" | "sortDescIcon" | "groupCollapseIcon" | "groupExpandIcon" | "fixedHeader" | "fixedFooter" | "hideDefaultBody" | "hideDefaultFooter" | "hideDefaultHeader">;
155
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "style" | "tag" | "density" | "sticky" | "loadingText" | "returnObject" | "selectStrategy" | "expandIcon" | "collapseIcon" | "page" | "hover" | "nextIcon" | "prevIcon" | "mobile" | "striped" | "hideNoData" | "noDataText" | "itemsPerPage" | "multiSort" | "mustSort" | "sortBy" | "groupBy" | "expandOnClick" | "showExpand" | "expanded" | "initialSortOrder" | "showSelect" | "firstIcon" | "lastIcon" | "itemsPerPageText" | "pageText" | "firstPageLabel" | "prevPageLabel" | "nextPageLabel" | "lastPageLabel" | "itemsPerPageOptions" | "showCurrentPage" | "disableSort" | "sortAscIcon" | "sortDescIcon" | "groupCollapseIcon" | "groupExpandIcon" | "fixedHeader" | "fixedFooter" | "hideDefaultBody" | "hideDefaultFooter" | "hideDefaultHeader">;
153
156
  $attrs: {
154
157
  [x: string]: unknown;
155
158
  };
@@ -268,7 +271,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
268
271
  expandOnClick: boolean;
269
272
  showExpand: boolean;
270
273
  expanded: readonly string[];
274
+ initialSortOrder: "desc" | "asc";
271
275
  sortBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
276
+ multiSort: boolean | import('vuetify/lib/components/VDataTable/composables/sort.mjs').MultiSortProps;
272
277
  mustSort: boolean;
273
278
  groupBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
274
279
  returnObject: boolean;
@@ -294,7 +299,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
294
299
  })[];
295
300
  showCurrentPage: boolean;
296
301
  disableSort: boolean;
297
- multiSort: boolean;
298
302
  sortAscIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
299
303
  sortDescIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
300
304
  sticky: boolean;
@@ -346,7 +350,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
346
350
  expandOnClick: boolean;
347
351
  showExpand: boolean;
348
352
  expanded: readonly string[];
353
+ initialSortOrder: "desc" | "asc";
349
354
  sortBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
355
+ multiSort: boolean | import('vuetify/lib/components/VDataTable/composables/sort.mjs').MultiSortProps;
350
356
  mustSort: boolean;
351
357
  groupBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
352
358
  returnObject: boolean;
@@ -372,7 +378,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
372
378
  })[];
373
379
  showCurrentPage: boolean;
374
380
  disableSort: boolean;
375
- multiSort: boolean;
376
381
  sortAscIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
377
382
  sortDescIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
378
383
  sticky: boolean;
@@ -516,7 +521,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
516
521
  expandOnClick: boolean;
517
522
  showExpand: boolean;
518
523
  expanded: readonly string[];
524
+ initialSortOrder: "desc" | "asc";
519
525
  sortBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
526
+ multiSort: boolean | import('vuetify/lib/components/VDataTable/composables/sort.mjs').MultiSortProps;
520
527
  mustSort: boolean;
521
528
  groupBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
522
529
  returnObject: boolean;
@@ -542,7 +549,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
542
549
  })[];
543
550
  showCurrentPage: boolean;
544
551
  disableSort: boolean;
545
- multiSort: boolean;
546
552
  sortAscIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
547
553
  sortDescIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
548
554
  sticky: boolean;
@@ -566,7 +572,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
566
572
  expandOnClick: boolean;
567
573
  showExpand: boolean;
568
574
  expanded: readonly string[];
575
+ initialSortOrder: "desc" | "asc";
569
576
  sortBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
577
+ multiSort: boolean | import('vuetify/lib/components/VDataTable/composables/sort.mjs').MultiSortProps;
570
578
  mustSort: boolean;
571
579
  groupBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
572
580
  returnObject: boolean;
@@ -592,7 +600,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
592
600
  })[];
593
601
  showCurrentPage: boolean;
594
602
  disableSort: boolean;
595
- multiSort: boolean;
596
603
  sortAscIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
597
604
  sortDescIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
598
605
  sticky: boolean;
@@ -630,7 +637,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
630
637
  "onUpdate:options"?: ((options: any) => any) | undefined;
631
638
  "onUpdate:page"?: ((page: number) => any) | undefined;
632
639
  "onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
633
- }, "style" | "tag" | "density" | "sticky" | "loadingText" | "selectStrategy" | "returnObject" | "expandIcon" | "collapseIcon" | "page" | "hover" | "nextIcon" | "prevIcon" | "mobile" | "striped" | "hideNoData" | "noDataText" | "itemsPerPage" | "multiSort" | "mustSort" | "sortBy" | "groupBy" | "expandOnClick" | "showExpand" | "expanded" | "showSelect" | "firstIcon" | "lastIcon" | "itemsPerPageText" | "pageText" | "firstPageLabel" | "prevPageLabel" | "nextPageLabel" | "lastPageLabel" | "itemsPerPageOptions" | "showCurrentPage" | "disableSort" | "sortAscIcon" | "sortDescIcon" | "groupCollapseIcon" | "groupExpandIcon" | "fixedHeader" | "fixedFooter" | "hideDefaultBody" | "hideDefaultFooter" | "hideDefaultHeader"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
640
+ }, "style" | "tag" | "density" | "sticky" | "loadingText" | "returnObject" | "selectStrategy" | "expandIcon" | "collapseIcon" | "page" | "hover" | "nextIcon" | "prevIcon" | "mobile" | "striped" | "hideNoData" | "noDataText" | "itemsPerPage" | "multiSort" | "mustSort" | "sortBy" | "groupBy" | "expandOnClick" | "showExpand" | "expanded" | "initialSortOrder" | "showSelect" | "firstIcon" | "lastIcon" | "itemsPerPageText" | "pageText" | "firstPageLabel" | "prevPageLabel" | "nextPageLabel" | "lastPageLabel" | "itemsPerPageOptions" | "showCurrentPage" | "disableSort" | "sortAscIcon" | "sortDescIcon" | "groupCollapseIcon" | "groupExpandIcon" | "fixedHeader" | "fixedFooter" | "hideDefaultBody" | "hideDefaultFooter" | "hideDefaultHeader"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
634
641
  items?: Record<string, unknown>[] | undefined;
635
642
  itemValue?: import('vuetify/lib/util/helpers.mjs').SelectItemKey<Record<string, unknown>>;
636
643
  rowProps?: import('vuetify/lib/components/VDataTable/types.mjs').RowProps<Record<string, unknown>> | undefined;
@@ -24,6 +24,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
24
24
  filterInputConfig: Record<string, unknown>;
25
25
  saveState: boolean;
26
26
  showFilters: boolean;
27
+ showSelectSingle: boolean;
27
28
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
28
29
  table: ({
29
30
  $: import('vue').ComponentInternalInstance;
@@ -36,7 +37,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
36
37
  expandOnClick: boolean;
37
38
  showExpand: boolean;
38
39
  expanded: readonly string[];
40
+ initialSortOrder: "desc" | "asc";
39
41
  sortBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
42
+ multiSort: boolean | import('vuetify/lib/components/VDataTable/composables/sort.mjs').MultiSortProps;
40
43
  mustSort: boolean;
41
44
  groupBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
42
45
  returnObject: boolean;
@@ -62,7 +65,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
62
65
  })[];
63
66
  showCurrentPage: boolean;
64
67
  disableSort: boolean;
65
- multiSort: boolean;
66
68
  sortAscIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
67
69
  sortDescIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
68
70
  sticky: boolean;
@@ -88,7 +90,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
88
90
  expandOnClick: boolean;
89
91
  showExpand: boolean;
90
92
  expanded: readonly string[];
93
+ initialSortOrder: "desc" | "asc";
91
94
  sortBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
95
+ multiSort: boolean | import('vuetify/lib/components/VDataTable/composables/sort.mjs').MultiSortProps;
92
96
  mustSort: boolean;
93
97
  groupBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
94
98
  returnObject: boolean;
@@ -114,7 +118,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
114
118
  })[];
115
119
  showCurrentPage: boolean;
116
120
  disableSort: boolean;
117
- multiSort: boolean;
118
121
  sortAscIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
119
122
  sortDescIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
120
123
  sticky: boolean;
@@ -153,7 +156,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
153
156
  "onUpdate:options"?: ((value: any) => any) | undefined;
154
157
  "onUpdate:page"?: ((value: number) => any) | undefined;
155
158
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
156
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "style" | "tag" | "density" | "sticky" | "loadingText" | "selectStrategy" | "returnObject" | "expandIcon" | "collapseIcon" | "page" | "hover" | "nextIcon" | "prevIcon" | "mobile" | "striped" | "hideNoData" | "noDataText" | "itemsPerPage" | "multiSort" | "mustSort" | "sortBy" | "groupBy" | "filterMode" | "noFilter" | "expandOnClick" | "showExpand" | "expanded" | "showSelect" | "firstIcon" | "lastIcon" | "itemsPerPageText" | "pageText" | "firstPageLabel" | "prevPageLabel" | "nextPageLabel" | "lastPageLabel" | "itemsPerPageOptions" | "showCurrentPage" | "disableSort" | "sortAscIcon" | "sortDescIcon" | "groupCollapseIcon" | "groupExpandIcon" | "fixedHeader" | "fixedFooter" | "hideDefaultBody" | "hideDefaultFooter" | "hideDefaultHeader">;
159
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "style" | "tag" | "density" | "sticky" | "loadingText" | "returnObject" | "selectStrategy" | "expandIcon" | "collapseIcon" | "page" | "hover" | "nextIcon" | "prevIcon" | "mobile" | "striped" | "hideNoData" | "noDataText" | "itemsPerPage" | "multiSort" | "mustSort" | "sortBy" | "groupBy" | "filterMode" | "noFilter" | "expandOnClick" | "showExpand" | "expanded" | "initialSortOrder" | "showSelect" | "firstIcon" | "lastIcon" | "itemsPerPageText" | "pageText" | "firstPageLabel" | "prevPageLabel" | "nextPageLabel" | "lastPageLabel" | "itemsPerPageOptions" | "showCurrentPage" | "disableSort" | "sortAscIcon" | "sortDescIcon" | "groupCollapseIcon" | "groupExpandIcon" | "fixedHeader" | "fixedFooter" | "hideDefaultBody" | "hideDefaultFooter" | "hideDefaultHeader">;
157
160
  $attrs: {
158
161
  [x: string]: unknown;
159
162
  };
@@ -274,7 +277,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
274
277
  expandOnClick: boolean;
275
278
  showExpand: boolean;
276
279
  expanded: readonly string[];
280
+ initialSortOrder: "desc" | "asc";
277
281
  sortBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
282
+ multiSort: boolean | import('vuetify/lib/components/VDataTable/composables/sort.mjs').MultiSortProps;
278
283
  mustSort: boolean;
279
284
  groupBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
280
285
  returnObject: boolean;
@@ -300,7 +305,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
300
305
  })[];
301
306
  showCurrentPage: boolean;
302
307
  disableSort: boolean;
303
- multiSort: boolean;
304
308
  sortAscIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
305
309
  sortDescIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
306
310
  sticky: boolean;
@@ -358,7 +362,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
358
362
  expandOnClick: boolean;
359
363
  showExpand: boolean;
360
364
  expanded: readonly string[];
365
+ initialSortOrder: "desc" | "asc";
361
366
  sortBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
367
+ multiSort: boolean | import('vuetify/lib/components/VDataTable/composables/sort.mjs').MultiSortProps;
362
368
  mustSort: boolean;
363
369
  groupBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
364
370
  returnObject: boolean;
@@ -384,7 +390,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
384
390
  })[];
385
391
  showCurrentPage: boolean;
386
392
  disableSort: boolean;
387
- multiSort: boolean;
388
393
  sortAscIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
389
394
  sortDescIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
390
395
  sticky: boolean;
@@ -530,7 +535,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
530
535
  expandOnClick: boolean;
531
536
  showExpand: boolean;
532
537
  expanded: readonly string[];
538
+ initialSortOrder: "desc" | "asc";
533
539
  sortBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
540
+ multiSort: boolean | import('vuetify/lib/components/VDataTable/composables/sort.mjs').MultiSortProps;
534
541
  mustSort: boolean;
535
542
  groupBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
536
543
  returnObject: boolean;
@@ -556,7 +563,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
556
563
  })[];
557
564
  showCurrentPage: boolean;
558
565
  disableSort: boolean;
559
- multiSort: boolean;
560
566
  sortAscIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
561
567
  sortDescIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
562
568
  sticky: boolean;
@@ -582,7 +588,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
582
588
  expandOnClick: boolean;
583
589
  showExpand: boolean;
584
590
  expanded: readonly string[];
591
+ initialSortOrder: "desc" | "asc";
585
592
  sortBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
593
+ multiSort: boolean | import('vuetify/lib/components/VDataTable/composables/sort.mjs').MultiSortProps;
586
594
  mustSort: boolean;
587
595
  groupBy: readonly import('vuetify/lib/types.mjs').DataTableSortItem[];
588
596
  returnObject: boolean;
@@ -608,7 +616,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
608
616
  })[];
609
617
  showCurrentPage: boolean;
610
618
  disableSort: boolean;
611
- multiSort: boolean;
612
619
  sortAscIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
613
620
  sortDescIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
614
621
  sticky: boolean;
@@ -649,7 +656,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
649
656
  "onUpdate:options"?: ((value: any) => any) | undefined;
650
657
  "onUpdate:page"?: ((value: number) => any) | undefined;
651
658
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
652
- }, "style" | "tag" | "density" | "sticky" | "loadingText" | "selectStrategy" | "returnObject" | "expandIcon" | "collapseIcon" | "page" | "hover" | "nextIcon" | "prevIcon" | "mobile" | "striped" | "hideNoData" | "noDataText" | "itemsPerPage" | "multiSort" | "mustSort" | "sortBy" | "groupBy" | "filterMode" | "noFilter" | "expandOnClick" | "showExpand" | "expanded" | "showSelect" | "firstIcon" | "lastIcon" | "itemsPerPageText" | "pageText" | "firstPageLabel" | "prevPageLabel" | "nextPageLabel" | "lastPageLabel" | "itemsPerPageOptions" | "showCurrentPage" | "disableSort" | "sortAscIcon" | "sortDescIcon" | "groupCollapseIcon" | "groupExpandIcon" | "fixedHeader" | "fixedFooter" | "hideDefaultBody" | "hideDefaultFooter" | "hideDefaultHeader"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
659
+ }, "style" | "tag" | "density" | "sticky" | "loadingText" | "returnObject" | "selectStrategy" | "expandIcon" | "collapseIcon" | "page" | "hover" | "nextIcon" | "prevIcon" | "mobile" | "striped" | "hideNoData" | "noDataText" | "itemsPerPage" | "multiSort" | "mustSort" | "sortBy" | "groupBy" | "filterMode" | "noFilter" | "expandOnClick" | "showExpand" | "expanded" | "initialSortOrder" | "showSelect" | "firstIcon" | "lastIcon" | "itemsPerPageText" | "pageText" | "firstPageLabel" | "prevPageLabel" | "nextPageLabel" | "lastPageLabel" | "itemsPerPageOptions" | "showCurrentPage" | "disableSort" | "sortAscIcon" | "sortDescIcon" | "groupCollapseIcon" | "groupExpandIcon" | "fixedHeader" | "fixedFooter" | "hideDefaultBody" | "hideDefaultFooter" | "hideDefaultHeader"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
653
660
  items?: Record<string, unknown>[] | undefined;
654
661
  itemValue?: import('vuetify/lib/util/helpers.mjs').SelectItemKey<Record<string, unknown>>;
655
662
  rowProps?: import('vuetify/lib/components/VDataTable/types.mjs').RowProps<Record<string, unknown>> | undefined;
@@ -160,13 +160,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
160
160
  tile: boolean;
161
161
  tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
162
162
  variant: "flat" | "text" | "elevated" | "outlined" | "plain" | "tonal";
163
+ itemType: import('vuetify/lib/util/helpers.mjs').SelectItemKey;
164
+ returnObject: boolean;
163
165
  activatable: boolean;
164
166
  selectable: boolean;
165
167
  selectStrategy: import('vuetify/lib/composables/nested/nested.mjs').SelectStrategyProp;
166
168
  openStrategy: import('vuetify/lib/composables/nested/nested.mjs').OpenStrategyProp;
167
169
  mandatory: boolean;
168
- itemType: import('vuetify/lib/util/helpers.mjs').SelectItemKey;
169
- returnObject: boolean;
170
+ itemsRegistration: import('vuetify/lib/composables/nested/nested.mjs').ItemsRegistrationType;
170
171
  disabled: boolean;
171
172
  filterable: boolean;
172
173
  lines: false | "one" | "three" | "two";
@@ -178,13 +179,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
178
179
  tile: boolean;
179
180
  tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
180
181
  variant: "flat" | "text" | "elevated" | "outlined" | "plain" | "tonal";
182
+ itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
183
+ returnObject: boolean;
181
184
  activatable: boolean;
182
185
  selectable: boolean;
183
186
  selectStrategy: import('vuetify/lib/composables/nested/nested.mjs').SelectStrategyProp;
184
187
  openStrategy: import('vuetify/lib/composables/nested/nested.mjs').OpenStrategyProp;
185
188
  mandatory: boolean;
186
- itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
187
- returnObject: boolean;
189
+ itemsRegistration: import('vuetify/lib/composables/nested/nested.mjs').ItemsRegistrationType;
188
190
  disabled: boolean;
189
191
  filterable: boolean;
190
192
  lines: false | "one" | "three" | "two";
@@ -202,22 +204,24 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
202
204
  minHeight?: string | number | undefined;
203
205
  minWidth?: string | number | undefined;
204
206
  width?: string | number | undefined;
207
+ valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
205
208
  activeStrategy?: import('vuetify/lib/composables/nested/nested.mjs').ActiveStrategyProp | undefined;
206
209
  activated?: any;
207
- valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
208
210
  baseColor?: string | undefined;
209
211
  activeColor?: string | undefined;
210
212
  activeClass?: string | undefined;
211
213
  bgColor?: string | undefined;
212
214
  expandIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
213
215
  collapseIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
216
+ prependGap?: string | number | undefined;
217
+ indent?: string | number | undefined;
214
218
  "onClick:activate"?: ((value: {
215
219
  id: unknown;
216
220
  value: boolean;
217
221
  path: unknown[];
218
222
  }) => any) | undefined;
219
223
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
220
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "nav" | "style" | "tag" | "disabled" | "density" | "rounded" | "tile" | "variant" | "slim" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "mandatory" | "itemType" | "returnObject" | "filterable" | "lines">;
224
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "nav" | "style" | "tag" | "disabled" | "density" | "rounded" | "tile" | "variant" | "slim" | "itemType" | "returnObject" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "mandatory" | "itemsRegistration" | "filterable" | "lines">;
221
225
  $attrs: {
222
226
  [x: string]: unknown;
223
227
  };
@@ -300,13 +304,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
300
304
  tile: boolean;
301
305
  tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
302
306
  variant: "flat" | "text" | "elevated" | "outlined" | "plain" | "tonal";
307
+ itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
308
+ returnObject: boolean;
303
309
  activatable: boolean;
304
310
  selectable: boolean;
305
311
  selectStrategy: import('vuetify/lib/composables/nested/nested.mjs').SelectStrategyProp;
306
312
  openStrategy: import('vuetify/lib/composables/nested/nested.mjs').OpenStrategyProp;
307
313
  mandatory: boolean;
308
- itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
309
- returnObject: boolean;
314
+ itemsRegistration: import('vuetify/lib/composables/nested/nested.mjs').ItemsRegistrationType;
310
315
  disabled: boolean;
311
316
  filterable: boolean;
312
317
  lines: false | "one" | "three" | "two";
@@ -325,15 +330,17 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
325
330
  minHeight?: string | number | undefined;
326
331
  minWidth?: string | number | undefined;
327
332
  width?: string | number | undefined;
333
+ valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
328
334
  activeStrategy?: import('vuetify/lib/composables/nested/nested.mjs').ActiveStrategyProp | undefined;
329
335
  activated?: any;
330
- valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
331
336
  baseColor?: string | undefined;
332
337
  activeColor?: string | undefined;
333
338
  activeClass?: string | undefined;
334
339
  bgColor?: string | undefined;
335
340
  expandIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
336
341
  collapseIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
342
+ prependGap?: string | number | undefined;
343
+ indent?: string | number | undefined;
337
344
  } & {
338
345
  "onClick:activate"?: ((value: {
339
346
  id: unknown;
@@ -374,13 +381,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
374
381
  tile: boolean;
375
382
  tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
376
383
  variant: "flat" | "text" | "elevated" | "outlined" | "plain" | "tonal";
384
+ itemType: import('vuetify/lib/util/helpers.mjs').SelectItemKey;
385
+ returnObject: boolean;
377
386
  activatable: boolean;
378
387
  selectable: boolean;
379
388
  selectStrategy: import('vuetify/lib/composables/nested/nested.mjs').SelectStrategyProp;
380
389
  openStrategy: import('vuetify/lib/composables/nested/nested.mjs').OpenStrategyProp;
381
390
  mandatory: boolean;
382
- itemType: import('vuetify/lib/util/helpers.mjs').SelectItemKey;
383
- returnObject: boolean;
391
+ itemsRegistration: import('vuetify/lib/composables/nested/nested.mjs').ItemsRegistrationType;
384
392
  disabled: boolean;
385
393
  filterable: boolean;
386
394
  lines: false | "one" | "three" | "two";
@@ -473,13 +481,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
473
481
  tile: boolean;
474
482
  tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
475
483
  variant: "flat" | "text" | "elevated" | "outlined" | "plain" | "tonal";
484
+ itemType: import('vuetify/lib/util/helpers.mjs').SelectItemKey;
485
+ returnObject: boolean;
476
486
  activatable: boolean;
477
487
  selectable: boolean;
478
488
  selectStrategy: import('vuetify/lib/composables/nested/nested.mjs').SelectStrategyProp;
479
489
  openStrategy: import('vuetify/lib/composables/nested/nested.mjs').OpenStrategyProp;
480
490
  mandatory: boolean;
481
- itemType: import('vuetify/lib/util/helpers.mjs').SelectItemKey;
482
- returnObject: boolean;
491
+ itemsRegistration: import('vuetify/lib/composables/nested/nested.mjs').ItemsRegistrationType;
483
492
  disabled: boolean;
484
493
  filterable: boolean;
485
494
  lines: false | "one" | "three" | "two";
@@ -491,13 +500,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
491
500
  tile: boolean;
492
501
  tag: string | import('vuetify/lib/types.mjs').JSXComponent<any>;
493
502
  variant: "flat" | "text" | "elevated" | "outlined" | "plain" | "tonal";
503
+ itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
504
+ returnObject: boolean;
494
505
  activatable: boolean;
495
506
  selectable: boolean;
496
507
  selectStrategy: import('vuetify/lib/composables/nested/nested.mjs').SelectStrategyProp;
497
508
  openStrategy: import('vuetify/lib/composables/nested/nested.mjs').OpenStrategyProp;
498
509
  mandatory: boolean;
499
- itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
500
- returnObject: boolean;
510
+ itemsRegistration: import('vuetify/lib/composables/nested/nested.mjs').ItemsRegistrationType;
501
511
  disabled: boolean;
502
512
  filterable: boolean;
503
513
  lines: false | "one" | "three" | "two";
@@ -516,15 +526,17 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
516
526
  minHeight?: string | number | undefined;
517
527
  minWidth?: string | number | undefined;
518
528
  width?: string | number | undefined;
529
+ valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
519
530
  activeStrategy?: import('vuetify/lib/composables/nested/nested.mjs').ActiveStrategyProp | undefined;
520
531
  activated?: any;
521
- valueComparator?: typeof import('vuetify/lib/util/deepEqual.mjs').deepEqual | undefined;
522
532
  baseColor?: string | undefined;
523
533
  activeColor?: string | undefined;
524
534
  activeClass?: string | undefined;
525
535
  bgColor?: string | undefined;
526
536
  expandIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
527
537
  collapseIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
538
+ prependGap?: string | number | undefined;
539
+ indent?: string | number | undefined;
528
540
  } & {
529
541
  "onClick:activate"?: ((value: {
530
542
  id: unknown;
@@ -532,7 +544,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
532
544
  path: unknown[];
533
545
  }) => any) | undefined;
534
546
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
535
- }, "focus" | "select" | "nav" | "style" | "tag" | "disabled" | "children" | "density" | "rounded" | "tile" | "variant" | "slim" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "mandatory" | "itemType" | "returnObject" | "filterable" | "lines" | "open" | "parents" | "getPath"> & import('vue').ShallowUnwrapRef<{
547
+ }, "focus" | "select" | "nav" | "style" | "tag" | "disabled" | "children" | "density" | "rounded" | "tile" | "variant" | "slim" | "itemType" | "returnObject" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "mandatory" | "itemsRegistration" | "filterable" | "lines" | "open" | "parents" | "getPath"> & import('vue').ShallowUnwrapRef<{
536
548
  open: (id: unknown, value: boolean, event?: Event | undefined) => void;
537
549
  select: (id: unknown, value: boolean, event?: Event | undefined) => void;
538
550
  focus: (location?: number | "next" | "first" | "last" | "prev" | undefined) => void;
@@ -47,6 +47,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
47
47
  link?: boolean | undefined;
48
48
  prependAvatar?: string | undefined;
49
49
  prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
50
+ prependGap?: string | number | undefined;
50
51
  subtitle?: string | number | boolean | undefined;
51
52
  title?: string | number | boolean | undefined;
52
53
  value?: any;
@@ -98,6 +99,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
98
99
  activated: import('vue').Ref<Set<unknown>, Set<unknown>>;
99
100
  selected: import('vue').Ref<Map<unknown, "off" | "on" | "indeterminate">, Map<unknown, "off" | "on" | "indeterminate">>;
100
101
  selectedValues: import('vue').Ref<unknown[], unknown[]>;
102
+ itemsRegistration: import('vue').Ref<import('vuetify/lib/composables/nested/nested.mjs').ItemsRegistrationType, import('vuetify/lib/composables/nested/nested.mjs').ItemsRegistrationType>;
101
103
  register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
102
104
  unregister: (id: unknown) => void;
103
105
  open: (id: unknown, value: boolean, event?: Event | undefined) => void;
@@ -193,6 +195,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
193
195
  link?: boolean | undefined;
194
196
  prependAvatar?: string | undefined;
195
197
  prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
198
+ prependGap?: string | number | undefined;
196
199
  subtitle?: string | number | boolean | undefined;
197
200
  title?: string | number | boolean | undefined;
198
201
  value?: any;
@@ -244,6 +247,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
244
247
  activated: import('vue').Ref<Set<unknown>, Set<unknown>>;
245
248
  selected: import('vue').Ref<Map<unknown, "off" | "on" | "indeterminate">, Map<unknown, "off" | "on" | "indeterminate">>;
246
249
  selectedValues: import('vue').Ref<unknown[], unknown[]>;
250
+ itemsRegistration: import('vue').Ref<import('vuetify/lib/composables/nested/nested.mjs').ItemsRegistrationType, import('vuetify/lib/composables/nested/nested.mjs').ItemsRegistrationType>;
247
251
  register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
248
252
  unregister: (id: unknown) => void;
249
253
  open: (id: unknown, value: boolean, event?: Event | undefined) => void;
@@ -83,6 +83,7 @@ export type SyTableProps = {
83
83
  enableColumnControls?: boolean;
84
84
  headers?: DataTableHeaders[];
85
85
  showSelect?: boolean;
86
+ showSelectSingle?: boolean;
86
87
  showExpand?: boolean;
87
88
  selectionKey?: string;
88
89
  multiSort?: boolean;
@@ -103,6 +104,7 @@ export type SyServerTableProps = {
103
104
  enableColumnControls?: boolean;
104
105
  headers?: DataTableHeaders[];
105
106
  showSelect?: boolean;
107
+ showSelectSingle?: boolean;
106
108
  showExpand?: boolean;
107
109
  selectionKey?: string;
108
110
  multiSort?: boolean;
@@ -1,4 +1,4 @@
1
- import { a1 as i, an as o, ap as r, ao as l, aq as t, ar as n, as as p, at as b, au as d, av as m, aw as A, ay as c, aA as u, ax as F, az as S, aB as g, aC as B, aD as T, aE as y, aF as C, aG as L, aH as D, aI as P, aJ as M, aK as k, aL as N, aM as f, aN as h, aO as H, aP as I, aQ as R, aR as x, aS as E, aT as V, aU as v, aV as U, aW as G, aX as w, aY as K, aZ as W, a_ as q, a$ as z, b0 as _, b1 as O, b2 as X, b3 as Y, b4 as j, b5 as J, b6 as Q, b7 as Z, b8 as $, b9 as aa, ba as ea, bb as sa, bc as ia, bd as oa, be as ra, bf as la, bg as ta, B as na, q as pa, R as ba, a2 as da, a3 as ma, C as Aa, ac as ca, ad as ua, ae as Fa, af as Sa, r as ga, a4 as Ba, a5 as Ta, a6 as ya, D as Ca, v as La, ag as Da, s as Pa, bw as Ma, ak as ka, E as Na, a7 as fa, a8 as ha, w as Ha, $ as Ia, a0 as Ra, F as xa, t as Ea, H as Va, b as va, c as Ua, d as Ga, e as wa, f as Ka, g as Wa, l as qa, h as za, i as _a, br as Oa, L as Xa, bT as Ya, a9 as ja, aa as Ja, al as Qa, bq as Za, N as $a, am as ae, ah as ee, bv as se, k as ie, W as oe, x as re, P as le, z as te, A as ne, ai as pe, G as be, I as de, bi as me, m as Ae, n as ce, bh as ue, j as Fe, aj as Se, J as ge, K as Be, V as Te, ab as ye, M as Ce, o as Le, S as De, X as Pe, Y as Me, p as ke, O as Ne, a as fe, Z as he, T as He, Q as Ie, bj as Re, bk as xe, U as Ee, bU as Ve, bs as ve, bt as Ue, bV as Ge, c3 as we, c5 as Ke, bz as We, c4 as qe, bW as ze, y as _e, b_ as Oe, b$ as Xe, c0 as Ye, bB as je, bA as Je, bR as Qe, c2 as Ze, bC as $e, bQ as as, bP as es, bD as ss, bE as is, bu as os, bF as rs, bK as ls, bJ as ts, bG as ns, bI as ps, bH as bs, bM as ds, bL as ms, bO as As, bN as cs, c1 as us, bX as Fs, bY as Ss, bZ as gs, bS as Bs, u as Ts, bl as ys, bm as Cs, by as Ls, bo as Ds, bn as Ps, bx as Ms, bp as ks } from "./main-DISHlqcd.js";
1
+ import { a1 as i, an as o, ap as r, ao as l, aq as t, ar as n, as as p, at as b, au as d, av as m, aw as A, ay as c, aA as u, ax as F, az as S, aB as g, aC as B, aD as T, aE as y, aF as C, aG as L, aH as D, aI as P, aJ as M, aK as k, aL as N, aM as f, aN as h, aO as H, aP as I, aQ as R, aR as x, aS as E, aT as V, aU as v, aV as U, aW as G, aX as w, aY as K, aZ as W, a_ as q, a$ as z, b0 as _, b1 as O, b2 as X, b3 as Y, b4 as j, b5 as J, b6 as Q, b7 as Z, b8 as $, b9 as aa, ba as ea, bb as sa, bc as ia, bd as oa, be as ra, bf as la, bg as ta, B as na, q as pa, R as ba, a2 as da, a3 as ma, C as Aa, ac as ca, ad as ua, ae as Fa, af as Sa, r as ga, a4 as Ba, a5 as Ta, a6 as ya, D as Ca, v as La, ag as Da, s as Pa, bw as Ma, ak as ka, E as Na, a7 as fa, a8 as ha, w as Ha, $ as Ia, a0 as Ra, F as xa, t as Ea, H as Va, b as va, c as Ua, d as Ga, e as wa, f as Ka, g as Wa, l as qa, h as za, i as _a, br as Oa, L as Xa, bT as Ya, a9 as ja, aa as Ja, al as Qa, bq as Za, N as $a, am as ae, ah as ee, bv as se, k as ie, W as oe, x as re, P as le, z as te, A as ne, ai as pe, G as be, I as de, bi as me, m as Ae, n as ce, bh as ue, j as Fe, aj as Se, J as ge, K as Be, V as Te, ab as ye, M as Ce, o as Le, S as De, X as Pe, Y as Me, p as ke, O as Ne, a as fe, Z as he, T as He, Q as Ie, bj as Re, bk as xe, U as Ee, bU as Ve, bs as ve, bt as Ue, bV as Ge, c3 as we, c5 as Ke, bz as We, c4 as qe, bW as ze, y as _e, b_ as Oe, b$ as Xe, c0 as Ye, bB as je, bA as Je, bR as Qe, c2 as Ze, bC as $e, bQ as as, bP as es, bD as ss, bE as is, bu as os, bF as rs, bK as ls, bJ as ts, bG as ns, bI as ps, bH as bs, bM as ds, bL as ms, bO as As, bN as cs, c1 as us, bX as Fs, bY as Ss, bZ as gs, bS as Bs, u as Ts, bl as ys, bm as Cs, by as Ls, bo as Ds, bn as Ps, bx as Ms, bp as ks } from "./main-CbBVJ_le.js";
2
2
  import "vue";
3
3
  export {
4
4
  i as Accordion,