@cnamts/synapse 1.0.19 → 1.0.20

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 (269) hide show
  1. package/dist/{DateFilter-CeVuSfJ9.js → DateFilter-XURUmpMl.js} +1 -1
  2. package/dist/{NumberFilter-C8PAu_sw.js → NumberFilter-BZc0O8wV.js} +1 -1
  3. package/dist/{PeriodFilter-UMUaxx3d.js → PeriodFilter-ZNdXcl3p.js} +1 -1
  4. package/dist/{SelectFilter-CqZl8CYt.js → SelectFilter-DshYU5OK.js} +1 -1
  5. package/dist/{TextFilter-D_RhhNOh.js → TextFilter-D_c5dRPl.js} +1 -1
  6. package/dist/components/Amelipro/AmeliproAutoCompleteField/AmeliproAutoCompleteField.d.ts +4 -4
  7. package/dist/components/Amelipro/AmeliproClickableTile/AmeliproClickableTile.d.ts +17 -7
  8. package/dist/components/Amelipro/AmeliproSelect/AmeliproSelect.d.ts +4 -4
  9. package/dist/components/Amelipro/AmeliproTabs/AmeliproTabs.d.ts +4 -4
  10. package/dist/components/Customs/Selects/SyAutocomplete/SyAutocomplete.d.ts +2416 -0
  11. package/dist/components/Customs/Selects/SyAutocomplete/types.d.ts +5 -0
  12. package/dist/components/Customs/Selects/SyAutocomplete/utils/ariaManager.d.ts +14 -0
  13. package/dist/components/Customs/Selects/SyAutocomplete/utils/useItemUtils.d.ts +16 -0
  14. package/dist/components/Customs/Selects/SyAutocomplete/utils/useKeyboardHandler.d.ts +28 -0
  15. package/dist/components/Customs/Selects/SyAutocomplete/utils/useSelectionLogic.d.ts +12 -0
  16. package/dist/components/Customs/Selects/SySelect/composables/useSySelectKeyboard.d.ts +2 -0
  17. package/dist/components/Customs/SyIcon/SyIcon.d.ts +2 -1
  18. package/dist/components/DatePicker/composables/useDateSelection.d.ts +1 -0
  19. package/dist/components/PaginatedTable/PaginatedTable.d.ts +1 -1
  20. package/dist/components/PaginatedTable/Pagination.d.ts +17 -0
  21. package/dist/components/Tables/SyServerTable/SyServerTable.d.ts +5 -5
  22. package/dist/components/Tables/SyTable/SyTable.d.ts +5 -5
  23. package/dist/components/index.d.ts +1 -0
  24. package/dist/components/types.d.ts +15 -0
  25. package/dist/composables/useFormFieldErrorHandling.d.ts +31 -0
  26. package/dist/design-system-v3.js +68 -67
  27. package/dist/design-system-v3.umd.cjs +320 -309
  28. package/dist/{main-B39UVv5p.js → main-CuI6xaPq.js} +9921 -9194
  29. package/dist/modules.d.ts +6 -0
  30. package/dist/style.css +1 -1
  31. package/package.json +8 -9
  32. package/src/assets/amelipro/icons.ts +166 -153
  33. package/src/components/Accordion/Accordion.mdx +4 -1
  34. package/src/components/Accordion/{Accessibilite/AccessibilityGuide.mdx → accessibilite/Accessibility.mdx} +2 -2
  35. package/src/components/Amelipro/AmeliproClickableTile/AmeliproClickableTile.stories.ts +73 -14
  36. package/src/components/Amelipro/AmeliproClickableTile/AmeliproClickableTile.vue +119 -27
  37. package/src/components/Amelipro/AmeliproClickableTile/tests/AmeliproClickableTile.a11y.spec.ts +304 -0
  38. package/src/components/Amelipro/AmeliproClickableTile/tests/AmeliproClickableTile.spec.ts +435 -9
  39. package/src/components/Amelipro/AmeliproClickableTile/tests/__snapshots__/AmeliproClickableTile.spec.ts.snap +60 -0
  40. package/src/components/Amelipro/AmeliproIcon/__tests__/AmeliproIcon.spec.ts +1 -1
  41. package/src/components/Amelipro/AmeliproIcon/iconList.ts +2 -0
  42. package/src/components/BackBtn/BackBtn.vue +5 -4
  43. package/src/components/BackBtn/accessibilite/Accessibility.mdx +15 -0
  44. package/src/components/BackToTopBtn/BackToTopBtn.vue +6 -3
  45. package/src/components/BackToTopBtn/accessibilite/Accessibility.mdx +15 -0
  46. package/src/components/Captcha/Captcha.vue +5 -1
  47. package/src/components/Captcha/CaptchaAlert.vue +9 -7
  48. package/src/components/Captcha/accessibilite/Accessibility.mdx +10 -0
  49. package/src/components/ChipList/accessibilite/Accessibility.mdx +15 -0
  50. package/src/components/CollapsibleList/{Accessibilite.mdx → accessibilite/Accessibility.mdx} +8 -6
  51. package/src/components/Common/IconSlot/IconSlot.vue +1 -1
  52. package/src/components/ContextualMenu/accessibilite/Accessibility.mdx +15 -0
  53. package/src/components/CookieBanner/accessibilite/Accessibility.mdx +15 -0
  54. package/src/components/CookiesSelection/CookiesInformation/CookiesInformation.vue +5 -4
  55. package/src/components/CopyBtn/CopyBtn.vue +6 -3
  56. package/src/components/CopyBtn/accessibilite/Accessibility.mdx +15 -0
  57. package/src/components/Customs/Selects/SelectBtnField/accessibilite/Accessibility.mdx +15 -0
  58. package/src/components/Customs/Selects/SelectOverview.mdx +112 -1
  59. package/src/components/Customs/Selects/SyAutocomplete/SyAutocomplete.mdx +52 -0
  60. package/src/components/Customs/Selects/SyAutocomplete/SyAutocomplete.stories.ts +979 -0
  61. package/src/components/Customs/Selects/SyAutocomplete/SyAutocomplete.vue +653 -0
  62. package/src/components/Customs/Selects/{SySelect → SyAutocomplete/accessibilite}/Accessibilite.stories.ts +7 -38
  63. package/src/components/Customs/Selects/{SySelect/Accessibilite.mdx → SyAutocomplete/accessibilite/Accessibility.mdx} +15 -20
  64. package/src/components/Customs/Selects/SyAutocomplete/tests/SyAutocomplete.a11y.spec.ts +72 -0
  65. package/src/components/Customs/Selects/SyAutocomplete/tests/SyAutocomplete.spec.ts +345 -0
  66. package/src/components/Customs/Selects/SyAutocomplete/types.ts +7 -0
  67. package/src/components/Customs/Selects/SyAutocomplete/utils/ariaManager.ts +180 -0
  68. package/src/components/Customs/Selects/SyAutocomplete/utils/useItemUtils.ts +46 -0
  69. package/src/components/Customs/Selects/SyAutocomplete/utils/useKeyboardHandler.ts +107 -0
  70. package/src/components/Customs/Selects/SyAutocomplete/utils/useSelectionLogic.ts +74 -0
  71. package/src/components/Customs/Selects/SyInputSelect/SyInputSelect.vue +13 -9
  72. package/src/components/Customs/Selects/SyInputSelect/accessibilite/Accessibility.mdx +12 -0
  73. package/src/components/Customs/Selects/SySelect/SySelect.stories.ts +43 -34
  74. package/src/components/Customs/Selects/SySelect/SySelect.vue +19 -2
  75. package/src/components/Customs/Selects/SySelect/accessibilite/Accessibility.mdx +274 -0
  76. package/src/components/Customs/Selects/SySelect/composables/useSySelectKeyboard.ts +21 -16
  77. package/src/components/Customs/SyCheckbox/{Accessibilite.mdx → accessibilite/Accessibility.mdx} +2 -2
  78. package/src/components/Customs/SyForm/accessibilite/Accessibility.mdx +10 -0
  79. package/src/components/Customs/SyIcon/SyIcon.mdx +4 -1
  80. package/src/components/Customs/SyIcon/SyIcon.vue +4 -3
  81. package/src/components/Customs/SyIcon/{Accessibilite.stories.ts → accessibilite/Accessibilite.stories.ts} +3 -3
  82. package/src/components/Customs/SyIcon/{Accessibilite.mdx → accessibilite/Accessibility.mdx} +2 -2
  83. package/src/components/Customs/SyPagination/SyPagination.mdx +4 -2
  84. package/src/components/Customs/SyPagination/accessibilite/Accessibility.mdx +10 -0
  85. package/src/components/Customs/SyRadioGroup/{Accessibilite.mdx → accessibilite/Accessibility.mdx} +2 -2
  86. package/src/components/Customs/SyTabs/SyTabs.mdx +4 -2
  87. package/src/components/Customs/SyTabs/{Accessibilite.mdx → accessibilite/Accessibility.mdx} +2 -2
  88. package/src/components/Customs/SyTextField/SyTextField.mdx +1 -2
  89. package/src/components/Customs/SyTextField/SyTextField.vue +13 -0
  90. package/src/components/Customs/SyTextField/accessibilite/Accessibility.mdx +15 -0
  91. package/src/components/DataList/accessibilite/Accessibility.mdx +15 -0
  92. package/src/components/DataListGroup/accessibilite/Accessibility.mdx +14 -0
  93. package/src/components/DatePicker/Accessibilite.mdx +1 -1
  94. package/src/components/DatePicker/Accessibilite.stories.ts +1 -1
  95. package/src/components/DatePicker/CalendarMode/DatePicker.stories.ts +7 -4
  96. package/src/components/DatePicker/CalendarMode/DatePicker.vue +14 -2
  97. package/src/components/DatePicker/DatePickerValidationExample/DatePickerValidation.stories.ts +297 -0
  98. package/src/components/DatePicker/composables/useDateSelection.ts +5 -0
  99. package/src/components/DatePicker/docExamples/BidirectionalComplexValidation.vue +273 -0
  100. package/src/components/DatePicker/docExamples/DatePickerBidirectionalValidation.vue +4 -4
  101. package/src/components/DatePicker/docExamples/DatePickerValidationExamples.vue +10 -0
  102. package/src/components/DiacriticPicker/accessibilite/Accessibility.mdx +10 -0
  103. package/src/components/DialogBox/accessibilite/Accessibility.mdx +15 -0
  104. package/src/components/DownloadBtn/DownloadBtn.vue +5 -4
  105. package/src/components/DownloadBtn/accessibilite/Accessibility.mdx +15 -0
  106. package/src/components/ErrorPage/accessibilite/Accessibility.mdx +15 -0
  107. package/src/components/ExternalLinks/accessibilite/Accessibility.mdx +15 -0
  108. package/src/components/FileList/UploadItem/UploadItem.vue +25 -20
  109. package/src/components/FileList/accessibilite/Accessibility.mdx +12 -0
  110. package/src/components/FilePreview/accessibilite/Accessibility.mdx +12 -0
  111. package/src/components/FileUpload/FileUploadContent.vue +5 -4
  112. package/src/components/FileUpload/accessibilite/Accessibility.mdx +12 -0
  113. package/src/components/FilterInline/FilterInline.vue +5 -4
  114. package/src/components/FilterInline/accessibilite/Accessibility.mdx +12 -0
  115. package/src/components/FilterSideBar/accessibilite/Accessibility.mdx +15 -0
  116. package/src/components/FooterBar/{Accessibilite.mdx → accessibilite/Accessibility.mdx} +3 -4
  117. package/src/components/FranceConnectBtn/FranceConnectBtn.vue +6 -5
  118. package/src/components/FranceConnectBtn/accessibilite/Accessibility.mdx +15 -0
  119. package/src/components/FranceConnectBtn/tests/__snapshots__/FranceConnectBtn.spec.ts.snap +3 -0
  120. package/src/components/HeaderBar/HeaderBurgerMenu/accessibilite/Accessibility.mdx +15 -0
  121. package/src/components/HeaderBar/accessibilite/Accessibility.mdx +15 -0
  122. package/src/components/HeaderBar/{Usages.mdx → usages/Usages.mdx} +2 -2
  123. package/src/components/HeaderLoading/{Accessibilite.mdx → accessibilite/Accessibility.mdx} +9 -5
  124. package/src/components/HeaderToolbar/accessibilite/Accessibility.mdx +15 -0
  125. package/src/components/LangBtn/LangBtn.vue +5 -4
  126. package/src/components/LangBtn/accessibilite/Accessibility.mdx +15 -0
  127. package/src/components/Logo/accessibilite/Accessibility.mdx +17 -0
  128. package/src/components/LogoBrandSection/accessibilite/Accessibility.mdx +12 -0
  129. package/src/components/LunarCalendar/accessibilite/Accessibility.mdx +10 -0
  130. package/src/components/MaintenancePage/accessibilite/Accessibility.mdx +15 -0
  131. package/src/components/NirField/accessibilite/Accessibility.mdx +15 -0
  132. package/src/components/NotFoundPage/accessibilite/Accessibility.mdx +15 -0
  133. package/src/components/NotificationBar/Notification/Notification.vue +1 -1
  134. package/src/components/NotificationBar/accessibilite/Accessibility.mdx +15 -0
  135. package/src/components/PageContainer/{AccessibilityGuide.mdx → Accessibilite/Accessibility.mdx} +7 -4
  136. package/src/components/PageContainer/Accessibilite/AccessibilityGuide.mdx +0 -0
  137. package/src/components/PaginatedTable/PaginatedTable.vue +27 -47
  138. package/src/components/PaginatedTable/Pagination.vue +93 -0
  139. package/src/components/PaginatedTable/accessibilite/Accessibility.mdx +12 -0
  140. package/src/components/PasswordField/PasswordField.vue +2 -1
  141. package/src/components/PasswordField/accessibilite/Accessibility.mdx +108 -0
  142. package/src/components/PeriodField/accessibilite/Accessibility.mdx +12 -0
  143. package/src/components/PhoneField/accessibilite/Accessibility.mdx +15 -0
  144. package/src/components/RangeField/accessibilite/Accessibility.mdx +15 -0
  145. package/src/components/RatingPicker/accessibilite/Accessibility.mdx +15 -0
  146. package/src/components/SearchListField/SearchListField.vue +6 -3
  147. package/src/components/SearchListField/accessibilite/Accessibility.mdx +15 -0
  148. package/src/components/SkipLink/{Accessibilite.mdx → accessibilite/Accessibility.mdx} +7 -4
  149. package/src/components/SocialMediaLinks/accessibilite/Accessibility.mdx +15 -0
  150. package/src/components/SubHeader/accessibilite/Accessibility.mdx +15 -0
  151. package/src/components/SyAlert/SyAlert.vue +6 -6
  152. package/src/components/SyAlert/accessibilite/Accessibility.mdx +12 -0
  153. package/src/components/SyTextArea/accessibilite/Accessibility.mdx +10 -0
  154. package/src/components/TableToolbar/TableToolbar.vue +6 -3
  155. package/src/components/TableToolbar/accessibilite/Accessibility.mdx +12 -0
  156. package/src/components/Tables/SyServerTable/SyServerTable.mdx +4 -1
  157. package/src/components/Tables/SyServerTable/accessibilite/Accessibility.mdx +10 -0
  158. package/src/components/Tables/SyTable/SyTable.mdx +4 -1
  159. package/src/components/Tables/SyTable/accessibilite/Accessibility.mdx +10 -0
  160. package/src/components/Tables/common/TableHeader.vue +3 -1
  161. package/src/components/Tables/common/organizeColumns/OrganizeColumns.vue +18 -14
  162. package/src/components/ToolbarContainer/ToolbarContainer.mdx +2 -1
  163. package/src/components/ToolbarContainer/ToolbarContainer.stories.ts +563 -420
  164. package/src/components/ToolbarContainer/accessibilite/Accessibility.mdx +69 -0
  165. package/src/components/UploadWorkflow/accessibilite/Accessibility.mdx +12 -0
  166. package/src/components/Usages/Usages.vue +3 -2
  167. package/src/components/UserMenuBtn/UserMenuBtn.vue +7 -5
  168. package/src/components/UserMenuBtn/accessibilite/Accessibility.mdx +12 -0
  169. package/src/components/index.ts +2 -0
  170. package/src/components/types.ts +10 -0
  171. package/src/composables/rules/useFieldValidation.ts +7 -0
  172. package/src/composables/useFormFieldErrorHandling.ts +141 -0
  173. package/src/modules.d.ts +6 -0
  174. package/src/components/BackBtn/Accessibilite.mdx +0 -14
  175. package/src/components/BackBtn/Accessibilite.stories.ts +0 -30
  176. package/src/components/BackToTopBtn/Accessibilite.mdx +0 -14
  177. package/src/components/BackToTopBtn/Accessibilite.stories.ts +0 -31
  178. package/src/components/ChipList/Accessibilite.mdx +0 -14
  179. package/src/components/ChipList/Accessibilite.stories.ts +0 -31
  180. package/src/components/CollapsibleList/Accessibilite.stories.ts +0 -29
  181. package/src/components/ContextualMenu/Accessibilite.mdx +0 -13
  182. package/src/components/ContextualMenu/Accessibilite.stories.ts +0 -29
  183. package/src/components/CookieBanner/Accessibilite.mdx +0 -13
  184. package/src/components/CookieBanner/Accessibilite.stories.ts +0 -30
  185. package/src/components/CopyBtn/Accessibilite.mdx +0 -13
  186. package/src/components/CopyBtn/Accessibilite.stories.ts +0 -29
  187. package/src/components/Customs/Selects/SelectBtnField/Accessibilite.mdx +0 -14
  188. package/src/components/Customs/Selects/SelectBtnField/Accessibilite.stories.ts +0 -29
  189. package/src/components/Customs/Selects/SyInputSelect/Accessibilite.mdx +0 -13
  190. package/src/components/Customs/Selects/SyInputSelect/Accessibilite.stories.ts +0 -25
  191. package/src/components/Customs/SyTextField/Accessibilite.mdx +0 -14
  192. package/src/components/Customs/SyTextField/Accessibilite.stories.ts +0 -34
  193. package/src/components/DataList/Accessibilite.mdx +0 -13
  194. package/src/components/DataList/Accessibilite.stories.ts +0 -29
  195. package/src/components/DataListGroup/Accessibilite.mdx +0 -13
  196. package/src/components/DataListGroup/Accessibilite.stories.ts +0 -29
  197. package/src/components/DialogBox/Accessibilite.mdx +0 -14
  198. package/src/components/DialogBox/Accessibilite.stories.ts +0 -29
  199. package/src/components/DownloadBtn/Accessibilite.mdx +0 -14
  200. package/src/components/DownloadBtn/Accessibilite.stories.ts +0 -29
  201. package/src/components/ErrorPage/Accessibilite.mdx +0 -13
  202. package/src/components/ErrorPage/Accessibilite.stories.ts +0 -36
  203. package/src/components/ExternalLinks/Accessibilite.mdx +0 -18
  204. package/src/components/ExternalLinks/Accessibilite.stories.ts +0 -62
  205. package/src/components/FileList/Accessibilite.mdx +0 -13
  206. package/src/components/FileList/Accessibilite.stories.ts +0 -26
  207. package/src/components/FilePreview/Accessibilite.mdx +0 -14
  208. package/src/components/FilePreview/Accessibilite.stories.ts +0 -26
  209. package/src/components/FileUpload/Accessibilite.mdx +0 -13
  210. package/src/components/FileUpload/Accessibilite.stories.ts +0 -26
  211. package/src/components/FilterInline/Accessibilite.mdx +0 -15
  212. package/src/components/FilterInline/Accessibilite.stories.ts +0 -26
  213. package/src/components/FilterSideBar/Accessibilite.mdx +0 -13
  214. package/src/components/FilterSideBar/Accessibilite.stories.ts +0 -30
  215. package/src/components/FooterBar/Accessibilite.stories.ts +0 -26
  216. package/src/components/FranceConnectBtn/Accessibilite.mdx +0 -13
  217. package/src/components/FranceConnectBtn/Accessibilite.stories.ts +0 -30
  218. package/src/components/HeaderBar/Accessibilite.mdx +0 -13
  219. package/src/components/HeaderBar/Accessibilite.stories.ts +0 -31
  220. package/src/components/HeaderBar/HeaderBurgerMenu/Accessibilite.mdx +0 -13
  221. package/src/components/HeaderBar/HeaderBurgerMenu/Accessibilite.stories.ts +0 -30
  222. package/src/components/HeaderLoading/Accessibilite.stories.ts +0 -31
  223. package/src/components/HeaderToolbar/Accessibilite.mdx +0 -13
  224. package/src/components/HeaderToolbar/Accessibilite.stories.ts +0 -36
  225. package/src/components/LangBtn/Accessibilite.mdx +0 -13
  226. package/src/components/LangBtn/Accessibilite.stories.ts +0 -32
  227. package/src/components/Logo/Accessibilite.mdx +0 -13
  228. package/src/components/Logo/Accessibilite.stories.ts +0 -30
  229. package/src/components/LogoBrandSection/Accessibilite.mdx +0 -13
  230. package/src/components/LogoBrandSection/Accessibilite.stories.ts +0 -26
  231. package/src/components/MaintenancePage/Accessibilite.mdx +0 -13
  232. package/src/components/MaintenancePage/Accessibilite.stories.ts +0 -36
  233. package/src/components/NirField/Accessibilite.mdx +0 -13
  234. package/src/components/NirField/Accessibilite.stories.ts +0 -31
  235. package/src/components/NotFoundPage/Accessibilite.mdx +0 -13
  236. package/src/components/NotFoundPage/Accessibilite.stories.ts +0 -36
  237. package/src/components/NotificationBar/Accessibilite.mdx +0 -13
  238. package/src/components/NotificationBar/Accessibilite.stories.ts +0 -30
  239. package/src/components/PageContainer/Accessibilite.mdx +0 -13
  240. package/src/components/PageContainer/Accessibilite.stories.ts +0 -30
  241. package/src/components/PaginatedTable/Accessibilite.mdx +0 -13
  242. package/src/components/PaginatedTable/Accessibilite.stories.ts +0 -26
  243. package/src/components/PasswordField/Accessibilite.mdx +0 -13
  244. package/src/components/PasswordField/Accessibilite.stories.ts +0 -121
  245. package/src/components/PeriodField/Accessibilite.mdx +0 -13
  246. package/src/components/PeriodField/Accessibilite.stories.ts +0 -27
  247. package/src/components/PhoneField/Accessibilite.mdx +0 -13
  248. package/src/components/PhoneField/Accessibilite.stories.ts +0 -32
  249. package/src/components/RangeField/Accessibilite.mdx +0 -13
  250. package/src/components/RangeField/Accessibilite.stories.ts +0 -32
  251. package/src/components/RatingPicker/Accessibilite.mdx +0 -13
  252. package/src/components/RatingPicker/Accessibilite.stories.ts +0 -30
  253. package/src/components/SearchListField/Accessibilite.mdx +0 -13
  254. package/src/components/SearchListField/Accessibilite.stories.ts +0 -30
  255. package/src/components/SkipLink/Accessibilite.stories.ts +0 -36
  256. package/src/components/SocialMediaLinks/Accessibilite.mdx +0 -13
  257. package/src/components/SocialMediaLinks/Accessibilite.stories.ts +0 -36
  258. package/src/components/SubHeader/Accessibilite.mdx +0 -13
  259. package/src/components/SubHeader/Accessibilite.stories.ts +0 -36
  260. package/src/components/SyAlert/Accessibilite.mdx +0 -13
  261. package/src/components/SyAlert/Accessibilite.stories.ts +0 -30
  262. package/src/components/TableToolbar/Accessibilite.mdx +0 -13
  263. package/src/components/TableToolbar/Accessibilite.stories.ts +0 -26
  264. package/src/components/UploadWorkflow/Accessibilite.mdx +0 -13
  265. package/src/components/UploadWorkflow/Accessibilite.stories.ts +0 -26
  266. package/src/components/UserMenuBtn/Accessibilite.mdx +0 -13
  267. package/src/components/UserMenuBtn/Accessibilite.stories.ts +0 -25
  268. /package/src/components/HeaderBar/{Usages.stories.ts → usages/Usages.stories.ts} +0 -0
  269. /package/src/components/SyBtnMenu/accessibilite/{AccessibilityGuide.mdx → Accessibility.mdx} +0 -0
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as b, computed as D, openBlock as k, createBlock as p } from "vue";
2
- import { D as C, u as F, _ as V } from "./main-B39UVv5p.js";
2
+ import { D as C, u as F, _ as V } from "./main-CuI6xaPq.js";
3
3
  const v = /* @__PURE__ */ b({
4
4
  __name: "DateFilter",
5
5
  props: {
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as k, ref as h, watch as x, computed as T, openBlock as V, createElementBlock as F, createVNode as w } from "vue";
2
- import { a as S, _ as D } from "./main-B39UVv5p.js";
2
+ import { a as S, _ as D } from "./main-CuI6xaPq.js";
3
3
  const E = { class: "number-filter-container" }, B = /* @__PURE__ */ k({
4
4
  __name: "NumberFilter",
5
5
  props: {
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as b, computed as h, openBlock as p, createBlock as k } from "vue";
2
- import { P as C, _ as F } from "./main-B39UVv5p.js";
2
+ import { P as C, _ as F } from "./main-CuI6xaPq.js";
3
3
  const V = /* @__PURE__ */ b({
4
4
  __name: "PeriodFilter",
5
5
  props: {
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as C, computed as p, ref as F, openBlock as S, createElementBlock as A, createVNode as B } from "vue";
2
- import { S as E, _ as D } from "./main-B39UVv5p.js";
2
+ import { S as E, _ as D } from "./main-CuI6xaPq.js";
3
3
  const n = {
4
4
  defaultOption: "- choisir -",
5
5
  emptyValue: "(vide)"
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as C, ref as b, watch as k, computed as T, openBlock as x, createElementBlock as w, createVNode as F } from "vue";
2
- import { a as V, _ as E } from "./main-B39UVv5p.js";
2
+ import { a as V, _ as E } from "./main-CuI6xaPq.js";
3
3
  const S = { class: "text-filter-container" }, B = /* @__PURE__ */ C({
4
4
  __name: "TextFilter",
5
5
  props: {
@@ -552,7 +552,7 @@ declare function __VLS_template(): {
552
552
  autoSelectFirst?: boolean | "exact" | undefined | undefined;
553
553
  "onUpdate:menu"?: ((value: boolean) => any) | undefined | undefined;
554
554
  "onUpdate:search"?: ((value: any) => any) | undefined | undefined;
555
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "reverse" | "flat" | "details" | "menu" | "style" | "role" | "disabled" | "transition" | "variant" | "rounded" | "tile" | "density" | "active" | "readonly" | "error" | "eager" | "itemChildren" | "itemType" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "chips" | "closableChips" | "closeText" | "openText" | "hideNoData" | "hideSelected" | "menuIcon" | "noDataText" | "openOnClear" | "noAutoScroll" | "filterKeys" | "filterMode" | "noFilter" | "clearOnSelect">;
555
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "reverse" | "flat" | "details" | "menu" | "style" | "role" | "disabled" | "transition" | "variant" | "rounded" | "tile" | "density" | "active" | "readonly" | "error" | "eager" | "itemChildren" | "itemType" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "chips" | "hideNoData" | "noDataText" | "closableChips" | "closeText" | "openText" | "hideSelected" | "menuIcon" | "openOnClear" | "noAutoScroll" | "filterKeys" | "filterMode" | "noFilter" | "clearOnSelect">;
556
556
  $attrs: {
557
557
  [x: string]: unknown;
558
558
  };
@@ -3740,7 +3740,7 @@ declare function __VLS_template(): {
3740
3740
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
3741
3741
  "onUpdate:menu"?: ((value: boolean) => any) | undefined;
3742
3742
  "onUpdate:search"?: ((value: any) => any) | undefined;
3743
- }, "ariaLabel" | "size" | "type" | "reverse" | "flat" | "details" | "form" | "menu" | "select" | "style" | "title" | "animate" | "pattern" | "height" | "role" | "onclick" | "onkeydown" | "onkeyup" | "onkeypress" | "search" | "slot" | "disabled" | "children" | "transition" | "variant" | "rounded" | "tile" | "value" | "density" | "active" | "readonly" | "prepend" | "append" | "error" | "eager" | "blur" | "normalize" | "scroll" | "click" | "focus" | "reset" | "dir" | "hidden" | "capture" | "accessKey" | "itemChildren" | "itemType" | "multiple" | "list" | "_allExposed" | "required" | "draggable" | "setAttribute" | "step" | "innerHTML" | "enterKeyHint" | "inert" | "lang" | "spellcheck" | "translate" | "autocapitalize" | "autocorrect" | "part" | "indeterminate" | "min" | "max" | "minLength" | "maxLength" | "errorMessages" | "centerAffix" | "direction" | "isFocused" | "maxErrors" | "messages" | "autocomplete" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "accept" | "align" | "alt" | "checked" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "labels" | "readOnly" | "selectionDirection" | "selectionEnd" | "selectionStart" | "src" | "useMap" | "validationMessage" | "validity" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "willValidate" | "checkValidity" | "reportValidity" | "setCustomValidity" | "setRangeText" | "setSelectionRange" | "showPicker" | "stepDown" | "stepUp" | "addEventListener" | "removeEventListener" | "accessKeyLabel" | "innerText" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "matches" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "textContent" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "contains" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaActiveDescendantElement" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaControlsElements" | "ariaCurrent" | "ariaDescribedByElements" | "ariaDescription" | "ariaDetailsElements" | "ariaDisabled" | "ariaErrorMessageElements" | "ariaExpanded" | "ariaFlowToElements" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabelledByElements" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaOwnsElements" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "getAnimations" | "after" | "before" | "remove" | "replaceWith" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "firstElementChild" | "lastElementChild" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforematch" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclose" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerrawupdate" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "dataset" | "nonce" | "tabIndex" | "popoverTargetAction" | "popoverTargetElement" | "filteredItems" | "chips" | "closableChips" | "closeText" | "openText" | "hideNoData" | "hideSelected" | "menuIcon" | "noDataText" | "openOnClear" | "noAutoScroll" | "filterKeys" | "filterMode" | "noFilter" | "clearOnSelect" | "isPristine"> & import('vue').ShallowUnwrapRef<{
3743
+ }, "ariaLabel" | "size" | "type" | "reverse" | "flat" | "details" | "form" | "menu" | "select" | "style" | "title" | "animate" | "pattern" | "height" | "role" | "onclick" | "onkeydown" | "onkeyup" | "onkeypress" | "search" | "slot" | "disabled" | "children" | "transition" | "variant" | "rounded" | "tile" | "value" | "density" | "active" | "readonly" | "prepend" | "append" | "error" | "eager" | "blur" | "normalize" | "scroll" | "click" | "focus" | "reset" | "dir" | "hidden" | "capture" | "accessKey" | "itemChildren" | "itemType" | "multiple" | "list" | "_allExposed" | "required" | "draggable" | "setAttribute" | "step" | "innerHTML" | "enterKeyHint" | "inert" | "lang" | "spellcheck" | "translate" | "autocapitalize" | "autocorrect" | "part" | "indeterminate" | "min" | "max" | "minLength" | "maxLength" | "errorMessages" | "centerAffix" | "direction" | "isFocused" | "maxErrors" | "messages" | "autocomplete" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "accept" | "align" | "alt" | "checked" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "labels" | "readOnly" | "selectionDirection" | "selectionEnd" | "selectionStart" | "src" | "useMap" | "validationMessage" | "validity" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "willValidate" | "checkValidity" | "reportValidity" | "setCustomValidity" | "setRangeText" | "setSelectionRange" | "showPicker" | "stepDown" | "stepUp" | "addEventListener" | "removeEventListener" | "accessKeyLabel" | "innerText" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "matches" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "textContent" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "contains" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaActiveDescendantElement" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaControlsElements" | "ariaCurrent" | "ariaDescribedByElements" | "ariaDescription" | "ariaDetailsElements" | "ariaDisabled" | "ariaErrorMessageElements" | "ariaExpanded" | "ariaFlowToElements" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabelledByElements" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaOwnsElements" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "getAnimations" | "after" | "before" | "remove" | "replaceWith" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "firstElementChild" | "lastElementChild" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforematch" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclose" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerrawupdate" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "dataset" | "nonce" | "tabIndex" | "popoverTargetAction" | "popoverTargetElement" | "filteredItems" | "chips" | "hideNoData" | "noDataText" | "closableChips" | "closeText" | "openText" | "hideSelected" | "menuIcon" | "openOnClear" | "noAutoScroll" | "filterKeys" | "filterMode" | "noFilter" | "clearOnSelect" | "isPristine"> & import('vue').ShallowUnwrapRef<{
3744
3744
  isFocused: import('vue').ShallowRef<boolean, boolean>;
3745
3745
  isPristine: import('vue').ShallowRef<boolean, boolean>;
3746
3746
  menu: import('vue').WritableComputedRef<boolean, boolean>;
@@ -6509,7 +6509,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
6509
6509
  autoSelectFirst?: boolean | "exact" | undefined | undefined;
6510
6510
  "onUpdate:menu"?: ((value: boolean) => any) | undefined | undefined;
6511
6511
  "onUpdate:search"?: ((value: any) => any) | undefined | undefined;
6512
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "reverse" | "flat" | "details" | "menu" | "style" | "role" | "disabled" | "transition" | "variant" | "rounded" | "tile" | "density" | "active" | "readonly" | "error" | "eager" | "itemChildren" | "itemType" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "chips" | "closableChips" | "closeText" | "openText" | "hideNoData" | "hideSelected" | "menuIcon" | "noDataText" | "openOnClear" | "noAutoScroll" | "filterKeys" | "filterMode" | "noFilter" | "clearOnSelect">;
6512
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "reverse" | "flat" | "details" | "menu" | "style" | "role" | "disabled" | "transition" | "variant" | "rounded" | "tile" | "density" | "active" | "readonly" | "error" | "eager" | "itemChildren" | "itemType" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "chips" | "hideNoData" | "noDataText" | "closableChips" | "closeText" | "openText" | "hideSelected" | "menuIcon" | "openOnClear" | "noAutoScroll" | "filterKeys" | "filterMode" | "noFilter" | "clearOnSelect">;
6513
6513
  $attrs: {
6514
6514
  [x: string]: unknown;
6515
6515
  };
@@ -9697,7 +9697,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
9697
9697
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
9698
9698
  "onUpdate:menu"?: ((value: boolean) => any) | undefined;
9699
9699
  "onUpdate:search"?: ((value: any) => any) | undefined;
9700
- }, "ariaLabel" | "size" | "type" | "reverse" | "flat" | "details" | "form" | "menu" | "select" | "style" | "title" | "animate" | "pattern" | "height" | "role" | "onclick" | "onkeydown" | "onkeyup" | "onkeypress" | "search" | "slot" | "disabled" | "children" | "transition" | "variant" | "rounded" | "tile" | "value" | "density" | "active" | "readonly" | "prepend" | "append" | "error" | "eager" | "blur" | "normalize" | "scroll" | "click" | "focus" | "reset" | "dir" | "hidden" | "capture" | "accessKey" | "itemChildren" | "itemType" | "multiple" | "list" | "_allExposed" | "required" | "draggable" | "setAttribute" | "step" | "innerHTML" | "enterKeyHint" | "inert" | "lang" | "spellcheck" | "translate" | "autocapitalize" | "autocorrect" | "part" | "indeterminate" | "min" | "max" | "minLength" | "maxLength" | "errorMessages" | "centerAffix" | "direction" | "isFocused" | "maxErrors" | "messages" | "autocomplete" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "accept" | "align" | "alt" | "checked" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "labels" | "readOnly" | "selectionDirection" | "selectionEnd" | "selectionStart" | "src" | "useMap" | "validationMessage" | "validity" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "willValidate" | "checkValidity" | "reportValidity" | "setCustomValidity" | "setRangeText" | "setSelectionRange" | "showPicker" | "stepDown" | "stepUp" | "addEventListener" | "removeEventListener" | "accessKeyLabel" | "innerText" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "matches" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "textContent" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "contains" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaActiveDescendantElement" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaControlsElements" | "ariaCurrent" | "ariaDescribedByElements" | "ariaDescription" | "ariaDetailsElements" | "ariaDisabled" | "ariaErrorMessageElements" | "ariaExpanded" | "ariaFlowToElements" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabelledByElements" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaOwnsElements" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "getAnimations" | "after" | "before" | "remove" | "replaceWith" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "firstElementChild" | "lastElementChild" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforematch" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclose" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerrawupdate" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "dataset" | "nonce" | "tabIndex" | "popoverTargetAction" | "popoverTargetElement" | "filteredItems" | "chips" | "closableChips" | "closeText" | "openText" | "hideNoData" | "hideSelected" | "menuIcon" | "noDataText" | "openOnClear" | "noAutoScroll" | "filterKeys" | "filterMode" | "noFilter" | "clearOnSelect" | "isPristine"> & import('vue').ShallowUnwrapRef<{
9700
+ }, "ariaLabel" | "size" | "type" | "reverse" | "flat" | "details" | "form" | "menu" | "select" | "style" | "title" | "animate" | "pattern" | "height" | "role" | "onclick" | "onkeydown" | "onkeyup" | "onkeypress" | "search" | "slot" | "disabled" | "children" | "transition" | "variant" | "rounded" | "tile" | "value" | "density" | "active" | "readonly" | "prepend" | "append" | "error" | "eager" | "blur" | "normalize" | "scroll" | "click" | "focus" | "reset" | "dir" | "hidden" | "capture" | "accessKey" | "itemChildren" | "itemType" | "multiple" | "list" | "_allExposed" | "required" | "draggable" | "setAttribute" | "step" | "innerHTML" | "enterKeyHint" | "inert" | "lang" | "spellcheck" | "translate" | "autocapitalize" | "autocorrect" | "part" | "indeterminate" | "min" | "max" | "minLength" | "maxLength" | "errorMessages" | "centerAffix" | "direction" | "isFocused" | "maxErrors" | "messages" | "autocomplete" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "accept" | "align" | "alt" | "checked" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "labels" | "readOnly" | "selectionDirection" | "selectionEnd" | "selectionStart" | "src" | "useMap" | "validationMessage" | "validity" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "willValidate" | "checkValidity" | "reportValidity" | "setCustomValidity" | "setRangeText" | "setSelectionRange" | "showPicker" | "stepDown" | "stepUp" | "addEventListener" | "removeEventListener" | "accessKeyLabel" | "innerText" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "matches" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "textContent" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "contains" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaActiveDescendantElement" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaControlsElements" | "ariaCurrent" | "ariaDescribedByElements" | "ariaDescription" | "ariaDetailsElements" | "ariaDisabled" | "ariaErrorMessageElements" | "ariaExpanded" | "ariaFlowToElements" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabelledByElements" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaOwnsElements" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "getAnimations" | "after" | "before" | "remove" | "replaceWith" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "firstElementChild" | "lastElementChild" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforematch" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclose" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerrawupdate" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "dataset" | "nonce" | "tabIndex" | "popoverTargetAction" | "popoverTargetElement" | "filteredItems" | "chips" | "hideNoData" | "noDataText" | "closableChips" | "closeText" | "openText" | "hideSelected" | "menuIcon" | "openOnClear" | "noAutoScroll" | "filterKeys" | "filterMode" | "noFilter" | "clearOnSelect" | "isPristine"> & import('vue').ShallowUnwrapRef<{
9701
9701
  isFocused: import('vue').ShallowRef<boolean, boolean>;
9702
9702
  isPristine: import('vue').ShallowRef<boolean, boolean>;
9703
9703
  menu: import('vue').WritableComputedRef<boolean, boolean>;
@@ -1,9 +1,10 @@
1
1
  import { PropType } from 'vue';
2
- import { RouteLocationRaw } from 'vue-router';
2
+ import { NavigationProps } from '../../types';
3
3
  declare function __VLS_template(): {
4
4
  attrs: Partial<{}>;
5
5
  slots: {
6
6
  default?(_: {}): any;
7
+ default?(_: {}): any;
7
8
  };
8
9
  refs: {};
9
10
  rootEl: any;
@@ -19,7 +20,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
19
20
  default: boolean;
20
21
  };
21
22
  href: {
22
- type: StringConstructor;
23
+ type: PropType<NavigationProps["href"]>;
23
24
  default: undefined;
24
25
  };
25
26
  icon: {
@@ -51,13 +52,17 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
51
52
  default: string;
52
53
  };
53
54
  to: {
54
- type: PropType<RouteLocationRaw>;
55
+ type: PropType<NavigationProps["to"]>;
55
56
  default: undefined;
56
57
  };
57
58
  uniqueId: {
58
59
  type: StringConstructor;
59
60
  default: undefined;
60
61
  };
62
+ onlyIconIsClickable: {
63
+ type: BooleanConstructor;
64
+ default: boolean;
65
+ };
61
66
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
62
67
  click: (...args: any[]) => void;
63
68
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
@@ -70,7 +75,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
70
75
  default: boolean;
71
76
  };
72
77
  href: {
73
- type: StringConstructor;
78
+ type: PropType<NavigationProps["href"]>;
74
79
  default: undefined;
75
80
  };
76
81
  icon: {
@@ -102,20 +107,24 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
102
107
  default: string;
103
108
  };
104
109
  to: {
105
- type: PropType<RouteLocationRaw>;
110
+ type: PropType<NavigationProps["to"]>;
106
111
  default: undefined;
107
112
  };
108
113
  uniqueId: {
109
114
  type: StringConstructor;
110
115
  default: undefined;
111
116
  };
117
+ onlyIconIsClickable: {
118
+ type: BooleanConstructor;
119
+ default: boolean;
120
+ };
112
121
  }>> & Readonly<{
113
122
  onClick?: ((...args: any[]) => any) | undefined;
114
123
  }>, {
115
124
  icon: string;
116
125
  disabled: boolean;
117
- href: string;
118
- to: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric;
126
+ href: string | undefined;
127
+ to: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric | undefined;
119
128
  uniqueId: string;
120
129
  imgMinWidth: string;
121
130
  imgWidth: string;
@@ -124,6 +133,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
124
133
  borderedIcon: boolean;
125
134
  tileTitle: string;
126
135
  tileWidth: string;
136
+ onlyIconIsClickable: boolean;
127
137
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
128
138
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
129
139
  export default _default;
@@ -544,7 +544,7 @@ declare function __VLS_template(): {
544
544
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "style" | "disabled" | "transition" | "location" | "eager" | "modelValue" | "origin" | "zIndex" | "persistent" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "closeDelay" | "openDelay" | "submenu" | "disableInitialFocus">) | undefined;
545
545
  itemColor?: string | undefined | undefined;
546
546
  "onUpdate:menu"?: ((ue: boolean) => any) | undefined | undefined;
547
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "reverse" | "flat" | "details" | "menu" | "style" | "role" | "disabled" | "transition" | "variant" | "rounded" | "tile" | "density" | "active" | "readonly" | "error" | "eager" | "itemChildren" | "itemType" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "chips" | "closableChips" | "closeText" | "openText" | "hideNoData" | "hideSelected" | "menuIcon" | "noDataText" | "openOnClear" | "noAutoScroll">;
547
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "reverse" | "flat" | "details" | "menu" | "style" | "role" | "disabled" | "transition" | "variant" | "rounded" | "tile" | "density" | "active" | "readonly" | "error" | "eager" | "itemChildren" | "itemType" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "chips" | "hideNoData" | "noDataText" | "closableChips" | "closeText" | "openText" | "hideSelected" | "menuIcon" | "openOnClear" | "noAutoScroll">;
548
548
  $attrs: {
549
549
  [x: string]: unknown;
550
550
  };
@@ -3703,7 +3703,7 @@ declare function __VLS_template(): {
3703
3703
  } & {
3704
3704
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
3705
3705
  "onUpdate:menu"?: ((ue: boolean) => any) | undefined;
3706
- }, "ariaLabel" | "size" | "type" | "reverse" | "flat" | "details" | "form" | "menu" | "select" | "style" | "title" | "animate" | "pattern" | "height" | "role" | "onclick" | "onkeydown" | "onkeyup" | "onkeypress" | "slot" | "disabled" | "children" | "transition" | "variant" | "rounded" | "tile" | "value" | "density" | "active" | "readonly" | "prepend" | "append" | "error" | "eager" | "blur" | "normalize" | "scroll" | "click" | "focus" | "reset" | "dir" | "hidden" | "capture" | "accessKey" | "itemChildren" | "itemType" | "multiple" | "list" | "_allExposed" | "required" | "draggable" | "setAttribute" | "step" | "innerHTML" | "enterKeyHint" | "inert" | "lang" | "spellcheck" | "translate" | "autocapitalize" | "autocorrect" | "part" | "indeterminate" | "min" | "max" | "minLength" | "maxLength" | "errorMessages" | "centerAffix" | "direction" | "isFocused" | "maxErrors" | "messages" | "autocomplete" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "accept" | "align" | "alt" | "checked" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "labels" | "readOnly" | "selectionDirection" | "selectionEnd" | "selectionStart" | "src" | "useMap" | "validationMessage" | "validity" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "willValidate" | "checkValidity" | "reportValidity" | "setCustomValidity" | "setRangeText" | "setSelectionRange" | "showPicker" | "stepDown" | "stepUp" | "addEventListener" | "removeEventListener" | "accessKeyLabel" | "innerText" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "matches" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "textContent" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "contains" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaActiveDescendantElement" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaControlsElements" | "ariaCurrent" | "ariaDescribedByElements" | "ariaDescription" | "ariaDetailsElements" | "ariaDisabled" | "ariaErrorMessageElements" | "ariaExpanded" | "ariaFlowToElements" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabelledByElements" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaOwnsElements" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "getAnimations" | "after" | "before" | "remove" | "replaceWith" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "firstElementChild" | "lastElementChild" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforematch" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclose" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerrawupdate" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "dataset" | "nonce" | "tabIndex" | "popoverTargetAction" | "popoverTargetElement" | "chips" | "closableChips" | "closeText" | "openText" | "hideNoData" | "hideSelected" | "menuIcon" | "noDataText" | "openOnClear" | "noAutoScroll"> & import('vue').ShallowUnwrapRef<{
3706
+ }, "ariaLabel" | "size" | "type" | "reverse" | "flat" | "details" | "form" | "menu" | "select" | "style" | "title" | "animate" | "pattern" | "height" | "role" | "onclick" | "onkeydown" | "onkeyup" | "onkeypress" | "slot" | "disabled" | "children" | "transition" | "variant" | "rounded" | "tile" | "value" | "density" | "active" | "readonly" | "prepend" | "append" | "error" | "eager" | "blur" | "normalize" | "scroll" | "click" | "focus" | "reset" | "dir" | "hidden" | "capture" | "accessKey" | "itemChildren" | "itemType" | "multiple" | "list" | "_allExposed" | "required" | "draggable" | "setAttribute" | "step" | "innerHTML" | "enterKeyHint" | "inert" | "lang" | "spellcheck" | "translate" | "autocapitalize" | "autocorrect" | "part" | "indeterminate" | "min" | "max" | "minLength" | "maxLength" | "errorMessages" | "centerAffix" | "direction" | "isFocused" | "maxErrors" | "messages" | "autocomplete" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "accept" | "align" | "alt" | "checked" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "labels" | "readOnly" | "selectionDirection" | "selectionEnd" | "selectionStart" | "src" | "useMap" | "validationMessage" | "validity" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "willValidate" | "checkValidity" | "reportValidity" | "setCustomValidity" | "setRangeText" | "setSelectionRange" | "showPicker" | "stepDown" | "stepUp" | "addEventListener" | "removeEventListener" | "accessKeyLabel" | "innerText" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "matches" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "textContent" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "contains" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaActiveDescendantElement" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaControlsElements" | "ariaCurrent" | "ariaDescribedByElements" | "ariaDescription" | "ariaDetailsElements" | "ariaDisabled" | "ariaErrorMessageElements" | "ariaExpanded" | "ariaFlowToElements" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabelledByElements" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaOwnsElements" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "getAnimations" | "after" | "before" | "remove" | "replaceWith" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "firstElementChild" | "lastElementChild" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforematch" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclose" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerrawupdate" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "dataset" | "nonce" | "tabIndex" | "popoverTargetAction" | "popoverTargetElement" | "chips" | "hideNoData" | "noDataText" | "closableChips" | "closeText" | "openText" | "hideSelected" | "menuIcon" | "openOnClear" | "noAutoScroll"> & import('vue').ShallowUnwrapRef<{
3707
3707
  isFocused: import('vue').ShallowRef<boolean, boolean>;
3708
3708
  menu: import('vue').WritableComputedRef<boolean, boolean>;
3709
3709
  select: (item: import('vuetify/lib/composables/list-items.mjs').ListItem, set?: boolean | null) => void;
@@ -6459,7 +6459,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
6459
6459
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "style" | "disabled" | "transition" | "location" | "eager" | "modelValue" | "origin" | "zIndex" | "persistent" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "closeDelay" | "openDelay" | "submenu" | "disableInitialFocus">) | undefined;
6460
6460
  itemColor?: string | undefined | undefined;
6461
6461
  "onUpdate:menu"?: ((ue: boolean) => any) | undefined | undefined;
6462
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "reverse" | "flat" | "details" | "menu" | "style" | "role" | "disabled" | "transition" | "variant" | "rounded" | "tile" | "density" | "active" | "readonly" | "error" | "eager" | "itemChildren" | "itemType" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "chips" | "closableChips" | "closeText" | "openText" | "hideNoData" | "hideSelected" | "menuIcon" | "noDataText" | "openOnClear" | "noAutoScroll">;
6462
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "reverse" | "flat" | "details" | "menu" | "style" | "role" | "disabled" | "transition" | "variant" | "rounded" | "tile" | "density" | "active" | "readonly" | "error" | "eager" | "itemChildren" | "itemType" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "chips" | "hideNoData" | "noDataText" | "closableChips" | "closeText" | "openText" | "hideSelected" | "menuIcon" | "openOnClear" | "noAutoScroll">;
6463
6463
  $attrs: {
6464
6464
  [x: string]: unknown;
6465
6465
  };
@@ -9618,7 +9618,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
9618
9618
  } & {
9619
9619
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
9620
9620
  "onUpdate:menu"?: ((ue: boolean) => any) | undefined;
9621
- }, "ariaLabel" | "size" | "type" | "reverse" | "flat" | "details" | "form" | "menu" | "select" | "style" | "title" | "animate" | "pattern" | "height" | "role" | "onclick" | "onkeydown" | "onkeyup" | "onkeypress" | "slot" | "disabled" | "children" | "transition" | "variant" | "rounded" | "tile" | "value" | "density" | "active" | "readonly" | "prepend" | "append" | "error" | "eager" | "blur" | "normalize" | "scroll" | "click" | "focus" | "reset" | "dir" | "hidden" | "capture" | "accessKey" | "itemChildren" | "itemType" | "multiple" | "list" | "_allExposed" | "required" | "draggable" | "setAttribute" | "step" | "innerHTML" | "enterKeyHint" | "inert" | "lang" | "spellcheck" | "translate" | "autocapitalize" | "autocorrect" | "part" | "indeterminate" | "min" | "max" | "minLength" | "maxLength" | "errorMessages" | "centerAffix" | "direction" | "isFocused" | "maxErrors" | "messages" | "autocomplete" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "accept" | "align" | "alt" | "checked" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "labels" | "readOnly" | "selectionDirection" | "selectionEnd" | "selectionStart" | "src" | "useMap" | "validationMessage" | "validity" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "willValidate" | "checkValidity" | "reportValidity" | "setCustomValidity" | "setRangeText" | "setSelectionRange" | "showPicker" | "stepDown" | "stepUp" | "addEventListener" | "removeEventListener" | "accessKeyLabel" | "innerText" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "matches" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "textContent" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "contains" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaActiveDescendantElement" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaControlsElements" | "ariaCurrent" | "ariaDescribedByElements" | "ariaDescription" | "ariaDetailsElements" | "ariaDisabled" | "ariaErrorMessageElements" | "ariaExpanded" | "ariaFlowToElements" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabelledByElements" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaOwnsElements" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "getAnimations" | "after" | "before" | "remove" | "replaceWith" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "firstElementChild" | "lastElementChild" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforematch" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclose" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerrawupdate" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "dataset" | "nonce" | "tabIndex" | "popoverTargetAction" | "popoverTargetElement" | "chips" | "closableChips" | "closeText" | "openText" | "hideNoData" | "hideSelected" | "menuIcon" | "noDataText" | "openOnClear" | "noAutoScroll"> & import('vue').ShallowUnwrapRef<{
9621
+ }, "ariaLabel" | "size" | "type" | "reverse" | "flat" | "details" | "form" | "menu" | "select" | "style" | "title" | "animate" | "pattern" | "height" | "role" | "onclick" | "onkeydown" | "onkeyup" | "onkeypress" | "slot" | "disabled" | "children" | "transition" | "variant" | "rounded" | "tile" | "value" | "density" | "active" | "readonly" | "prepend" | "append" | "error" | "eager" | "blur" | "normalize" | "scroll" | "click" | "focus" | "reset" | "dir" | "hidden" | "capture" | "accessKey" | "itemChildren" | "itemType" | "multiple" | "list" | "_allExposed" | "required" | "draggable" | "setAttribute" | "step" | "innerHTML" | "enterKeyHint" | "inert" | "lang" | "spellcheck" | "translate" | "autocapitalize" | "autocorrect" | "part" | "indeterminate" | "min" | "max" | "minLength" | "maxLength" | "errorMessages" | "centerAffix" | "direction" | "isFocused" | "maxErrors" | "messages" | "autocomplete" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "accept" | "align" | "alt" | "checked" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "labels" | "readOnly" | "selectionDirection" | "selectionEnd" | "selectionStart" | "src" | "useMap" | "validationMessage" | "validity" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "willValidate" | "checkValidity" | "reportValidity" | "setCustomValidity" | "setRangeText" | "setSelectionRange" | "showPicker" | "stepDown" | "stepUp" | "addEventListener" | "removeEventListener" | "accessKeyLabel" | "innerText" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "matches" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "textContent" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "contains" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaActiveDescendantElement" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaControlsElements" | "ariaCurrent" | "ariaDescribedByElements" | "ariaDescription" | "ariaDetailsElements" | "ariaDisabled" | "ariaErrorMessageElements" | "ariaExpanded" | "ariaFlowToElements" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabelledByElements" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaOwnsElements" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "getAnimations" | "after" | "before" | "remove" | "replaceWith" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "firstElementChild" | "lastElementChild" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforematch" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclose" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerrawupdate" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "dataset" | "nonce" | "tabIndex" | "popoverTargetAction" | "popoverTargetElement" | "chips" | "hideNoData" | "noDataText" | "closableChips" | "closeText" | "openText" | "hideSelected" | "menuIcon" | "openOnClear" | "noAutoScroll"> & import('vue').ShallowUnwrapRef<{
9622
9622
  isFocused: import('vue').ShallowRef<boolean, boolean>;
9623
9623
  menu: import('vue').WritableComputedRef<boolean, boolean>;
9624
9624
  select: (item: import('vuetify/lib/composables/list-items.mjs').ListItem, set?: boolean | null) => void;
@@ -731,7 +731,7 @@ declare function __VLS_template(): {
731
731
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "style" | "disabled" | "transition" | "location" | "eager" | "modelValue" | "origin" | "zIndex" | "persistent" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "closeDelay" | "openDelay" | "submenu" | "disableInitialFocus">) | undefined;
732
732
  itemColor?: string | undefined | undefined;
733
733
  "onUpdate:menu"?: ((ue: boolean) => any) | undefined | undefined;
734
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "reverse" | "flat" | "details" | "menu" | "style" | "role" | "disabled" | "transition" | "variant" | "rounded" | "tile" | "density" | "active" | "readonly" | "error" | "eager" | "itemChildren" | "itemType" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "chips" | "closableChips" | "closeText" | "openText" | "hideNoData" | "hideSelected" | "menuIcon" | "noDataText" | "openOnClear" | "noAutoScroll">;
734
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "reverse" | "flat" | "details" | "menu" | "style" | "role" | "disabled" | "transition" | "variant" | "rounded" | "tile" | "density" | "active" | "readonly" | "error" | "eager" | "itemChildren" | "itemType" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "chips" | "hideNoData" | "noDataText" | "closableChips" | "closeText" | "openText" | "hideSelected" | "menuIcon" | "openOnClear" | "noAutoScroll">;
735
735
  $attrs: {
736
736
  [x: string]: unknown;
737
737
  };
@@ -3890,7 +3890,7 @@ declare function __VLS_template(): {
3890
3890
  } & {
3891
3891
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
3892
3892
  "onUpdate:menu"?: ((ue: boolean) => any) | undefined;
3893
- }, "ariaLabel" | "size" | "type" | "reverse" | "flat" | "details" | "form" | "menu" | "select" | "style" | "title" | "animate" | "pattern" | "height" | "role" | "onclick" | "onkeydown" | "onkeyup" | "onkeypress" | "slot" | "disabled" | "children" | "transition" | "variant" | "rounded" | "tile" | "value" | "density" | "active" | "readonly" | "prepend" | "append" | "error" | "eager" | "blur" | "normalize" | "scroll" | "click" | "focus" | "reset" | "dir" | "hidden" | "capture" | "accessKey" | "itemChildren" | "itemType" | "multiple" | "list" | "_allExposed" | "required" | "draggable" | "setAttribute" | "step" | "innerHTML" | "enterKeyHint" | "inert" | "lang" | "spellcheck" | "translate" | "autocapitalize" | "autocorrect" | "part" | "indeterminate" | "min" | "max" | "minLength" | "maxLength" | "errorMessages" | "centerAffix" | "direction" | "isFocused" | "maxErrors" | "messages" | "autocomplete" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "accept" | "align" | "alt" | "checked" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "labels" | "readOnly" | "selectionDirection" | "selectionEnd" | "selectionStart" | "src" | "useMap" | "validationMessage" | "validity" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "willValidate" | "checkValidity" | "reportValidity" | "setCustomValidity" | "setRangeText" | "setSelectionRange" | "showPicker" | "stepDown" | "stepUp" | "addEventListener" | "removeEventListener" | "accessKeyLabel" | "innerText" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "matches" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "textContent" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "contains" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaActiveDescendantElement" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaControlsElements" | "ariaCurrent" | "ariaDescribedByElements" | "ariaDescription" | "ariaDetailsElements" | "ariaDisabled" | "ariaErrorMessageElements" | "ariaExpanded" | "ariaFlowToElements" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabelledByElements" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaOwnsElements" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "getAnimations" | "after" | "before" | "remove" | "replaceWith" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "firstElementChild" | "lastElementChild" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforematch" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclose" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerrawupdate" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "dataset" | "nonce" | "tabIndex" | "popoverTargetAction" | "popoverTargetElement" | "chips" | "closableChips" | "closeText" | "openText" | "hideNoData" | "hideSelected" | "menuIcon" | "noDataText" | "openOnClear" | "noAutoScroll"> & import('vue').ShallowUnwrapRef<{
3893
+ }, "ariaLabel" | "size" | "type" | "reverse" | "flat" | "details" | "form" | "menu" | "select" | "style" | "title" | "animate" | "pattern" | "height" | "role" | "onclick" | "onkeydown" | "onkeyup" | "onkeypress" | "slot" | "disabled" | "children" | "transition" | "variant" | "rounded" | "tile" | "value" | "density" | "active" | "readonly" | "prepend" | "append" | "error" | "eager" | "blur" | "normalize" | "scroll" | "click" | "focus" | "reset" | "dir" | "hidden" | "capture" | "accessKey" | "itemChildren" | "itemType" | "multiple" | "list" | "_allExposed" | "required" | "draggable" | "setAttribute" | "step" | "innerHTML" | "enterKeyHint" | "inert" | "lang" | "spellcheck" | "translate" | "autocapitalize" | "autocorrect" | "part" | "indeterminate" | "min" | "max" | "minLength" | "maxLength" | "errorMessages" | "centerAffix" | "direction" | "isFocused" | "maxErrors" | "messages" | "autocomplete" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "accept" | "align" | "alt" | "checked" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "labels" | "readOnly" | "selectionDirection" | "selectionEnd" | "selectionStart" | "src" | "useMap" | "validationMessage" | "validity" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "willValidate" | "checkValidity" | "reportValidity" | "setCustomValidity" | "setRangeText" | "setSelectionRange" | "showPicker" | "stepDown" | "stepUp" | "addEventListener" | "removeEventListener" | "accessKeyLabel" | "innerText" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "matches" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "textContent" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "contains" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaActiveDescendantElement" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaControlsElements" | "ariaCurrent" | "ariaDescribedByElements" | "ariaDescription" | "ariaDetailsElements" | "ariaDisabled" | "ariaErrorMessageElements" | "ariaExpanded" | "ariaFlowToElements" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabelledByElements" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaOwnsElements" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "getAnimations" | "after" | "before" | "remove" | "replaceWith" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "firstElementChild" | "lastElementChild" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforematch" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclose" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerrawupdate" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "dataset" | "nonce" | "tabIndex" | "popoverTargetAction" | "popoverTargetElement" | "chips" | "hideNoData" | "noDataText" | "closableChips" | "closeText" | "openText" | "hideSelected" | "menuIcon" | "openOnClear" | "noAutoScroll"> & import('vue').ShallowUnwrapRef<{
3894
3894
  isFocused: import('vue').ShallowRef<boolean, boolean>;
3895
3895
  menu: import('vue').WritableComputedRef<boolean, boolean>;
3896
3896
  select: (item: import('vuetify/lib/composables/list-items.mjs').ListItem, set?: boolean | null) => void;
@@ -6979,7 +6979,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
6979
6979
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "style" | "disabled" | "transition" | "location" | "eager" | "modelValue" | "origin" | "zIndex" | "persistent" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "closeDelay" | "openDelay" | "submenu" | "disableInitialFocus">) | undefined;
6980
6980
  itemColor?: string | undefined | undefined;
6981
6981
  "onUpdate:menu"?: ((ue: boolean) => any) | undefined | undefined;
6982
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "reverse" | "flat" | "details" | "menu" | "style" | "role" | "disabled" | "transition" | "variant" | "rounded" | "tile" | "density" | "active" | "readonly" | "error" | "eager" | "itemChildren" | "itemType" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "chips" | "closableChips" | "closeText" | "openText" | "hideNoData" | "hideSelected" | "menuIcon" | "noDataText" | "openOnClear" | "noAutoScroll">;
6982
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "reverse" | "flat" | "details" | "menu" | "style" | "role" | "disabled" | "transition" | "variant" | "rounded" | "tile" | "density" | "active" | "readonly" | "error" | "eager" | "itemChildren" | "itemType" | "errorMessages" | "centerAffix" | "direction" | "maxErrors" | "messages" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "chips" | "hideNoData" | "noDataText" | "closableChips" | "closeText" | "openText" | "hideSelected" | "menuIcon" | "openOnClear" | "noAutoScroll">;
6983
6983
  $attrs: {
6984
6984
  [x: string]: unknown;
6985
6985
  };
@@ -10138,7 +10138,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
10138
10138
  } & {
10139
10139
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
10140
10140
  "onUpdate:menu"?: ((ue: boolean) => any) | undefined;
10141
- }, "ariaLabel" | "size" | "type" | "reverse" | "flat" | "details" | "form" | "menu" | "select" | "style" | "title" | "animate" | "pattern" | "height" | "role" | "onclick" | "onkeydown" | "onkeyup" | "onkeypress" | "slot" | "disabled" | "children" | "transition" | "variant" | "rounded" | "tile" | "value" | "density" | "active" | "readonly" | "prepend" | "append" | "error" | "eager" | "blur" | "normalize" | "scroll" | "click" | "focus" | "reset" | "dir" | "hidden" | "capture" | "accessKey" | "itemChildren" | "itemType" | "multiple" | "list" | "_allExposed" | "required" | "draggable" | "setAttribute" | "step" | "innerHTML" | "enterKeyHint" | "inert" | "lang" | "spellcheck" | "translate" | "autocapitalize" | "autocorrect" | "part" | "indeterminate" | "min" | "max" | "minLength" | "maxLength" | "errorMessages" | "centerAffix" | "direction" | "isFocused" | "maxErrors" | "messages" | "autocomplete" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "accept" | "align" | "alt" | "checked" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "labels" | "readOnly" | "selectionDirection" | "selectionEnd" | "selectionStart" | "src" | "useMap" | "validationMessage" | "validity" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "willValidate" | "checkValidity" | "reportValidity" | "setCustomValidity" | "setRangeText" | "setSelectionRange" | "showPicker" | "stepDown" | "stepUp" | "addEventListener" | "removeEventListener" | "accessKeyLabel" | "innerText" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "matches" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "textContent" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "contains" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaActiveDescendantElement" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaControlsElements" | "ariaCurrent" | "ariaDescribedByElements" | "ariaDescription" | "ariaDetailsElements" | "ariaDisabled" | "ariaErrorMessageElements" | "ariaExpanded" | "ariaFlowToElements" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabelledByElements" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaOwnsElements" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "getAnimations" | "after" | "before" | "remove" | "replaceWith" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "firstElementChild" | "lastElementChild" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforematch" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclose" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerrawupdate" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "dataset" | "nonce" | "tabIndex" | "popoverTargetAction" | "popoverTargetElement" | "chips" | "closableChips" | "closeText" | "openText" | "hideNoData" | "hideSelected" | "menuIcon" | "noDataText" | "openOnClear" | "noAutoScroll"> & import('vue').ShallowUnwrapRef<{
10141
+ }, "ariaLabel" | "size" | "type" | "reverse" | "flat" | "details" | "form" | "menu" | "select" | "style" | "title" | "animate" | "pattern" | "height" | "role" | "onclick" | "onkeydown" | "onkeyup" | "onkeypress" | "slot" | "disabled" | "children" | "transition" | "variant" | "rounded" | "tile" | "value" | "density" | "active" | "readonly" | "prepend" | "append" | "error" | "eager" | "blur" | "normalize" | "scroll" | "click" | "focus" | "reset" | "dir" | "hidden" | "capture" | "accessKey" | "itemChildren" | "itemType" | "multiple" | "list" | "_allExposed" | "required" | "draggable" | "setAttribute" | "step" | "innerHTML" | "enterKeyHint" | "inert" | "lang" | "spellcheck" | "translate" | "autocapitalize" | "autocorrect" | "part" | "indeterminate" | "min" | "max" | "minLength" | "maxLength" | "errorMessages" | "centerAffix" | "direction" | "isFocused" | "maxErrors" | "messages" | "autocomplete" | "rules" | "isValid" | "validate" | "resetValidation" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "clearIcon" | "clearable" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "autofocus" | "persistentPlaceholder" | "persistentCounter" | "accept" | "align" | "alt" | "checked" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "labels" | "readOnly" | "selectionDirection" | "selectionEnd" | "selectionStart" | "src" | "useMap" | "validationMessage" | "validity" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "willValidate" | "checkValidity" | "reportValidity" | "setCustomValidity" | "setRangeText" | "setSelectionRange" | "showPicker" | "stepDown" | "stepUp" | "addEventListener" | "removeEventListener" | "accessKeyLabel" | "innerText" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "matches" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "textContent" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "contains" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaActiveDescendantElement" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColIndexText" | "ariaColSpan" | "ariaControlsElements" | "ariaCurrent" | "ariaDescribedByElements" | "ariaDescription" | "ariaDetailsElements" | "ariaDisabled" | "ariaErrorMessageElements" | "ariaExpanded" | "ariaFlowToElements" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabelledByElements" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaOwnsElements" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "getAnimations" | "after" | "before" | "remove" | "replaceWith" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "firstElementChild" | "lastElementChild" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforematch" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclose" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerrawupdate" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "dataset" | "nonce" | "tabIndex" | "popoverTargetAction" | "popoverTargetElement" | "chips" | "hideNoData" | "noDataText" | "closableChips" | "closeText" | "openText" | "hideSelected" | "menuIcon" | "openOnClear" | "noAutoScroll"> & import('vue').ShallowUnwrapRef<{
10142
10142
  isFocused: import('vue').ShallowRef<boolean, boolean>;
10143
10143
  menu: import('vue').WritableComputedRef<boolean, boolean>;
10144
10144
  select: (item: import('vuetify/lib/composables/list-items.mjs').ListItem, set?: boolean | null) => void;