@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.
- package/dist/{DateFilter-CeVuSfJ9.js → DateFilter-XURUmpMl.js} +1 -1
- package/dist/{NumberFilter-C8PAu_sw.js → NumberFilter-BZc0O8wV.js} +1 -1
- package/dist/{PeriodFilter-UMUaxx3d.js → PeriodFilter-ZNdXcl3p.js} +1 -1
- package/dist/{SelectFilter-CqZl8CYt.js → SelectFilter-DshYU5OK.js} +1 -1
- package/dist/{TextFilter-D_RhhNOh.js → TextFilter-D_c5dRPl.js} +1 -1
- package/dist/components/Amelipro/AmeliproAutoCompleteField/AmeliproAutoCompleteField.d.ts +4 -4
- package/dist/components/Amelipro/AmeliproClickableTile/AmeliproClickableTile.d.ts +17 -7
- package/dist/components/Amelipro/AmeliproSelect/AmeliproSelect.d.ts +4 -4
- package/dist/components/Amelipro/AmeliproTabs/AmeliproTabs.d.ts +4 -4
- package/dist/components/Customs/Selects/SyAutocomplete/SyAutocomplete.d.ts +2416 -0
- package/dist/components/Customs/Selects/SyAutocomplete/types.d.ts +5 -0
- package/dist/components/Customs/Selects/SyAutocomplete/utils/ariaManager.d.ts +14 -0
- package/dist/components/Customs/Selects/SyAutocomplete/utils/useItemUtils.d.ts +16 -0
- package/dist/components/Customs/Selects/SyAutocomplete/utils/useKeyboardHandler.d.ts +28 -0
- package/dist/components/Customs/Selects/SyAutocomplete/utils/useSelectionLogic.d.ts +12 -0
- package/dist/components/Customs/Selects/SySelect/composables/useSySelectKeyboard.d.ts +2 -0
- package/dist/components/Customs/SyIcon/SyIcon.d.ts +2 -1
- package/dist/components/DatePicker/composables/useDateSelection.d.ts +1 -0
- package/dist/components/PaginatedTable/PaginatedTable.d.ts +1 -1
- package/dist/components/PaginatedTable/Pagination.d.ts +17 -0
- package/dist/components/Tables/SyServerTable/SyServerTable.d.ts +5 -5
- package/dist/components/Tables/SyTable/SyTable.d.ts +5 -5
- package/dist/components/index.d.ts +1 -0
- package/dist/components/types.d.ts +15 -0
- package/dist/composables/useFormFieldErrorHandling.d.ts +31 -0
- package/dist/design-system-v3.js +68 -67
- package/dist/design-system-v3.umd.cjs +320 -309
- package/dist/{main-B39UVv5p.js → main-CuI6xaPq.js} +9921 -9194
- package/dist/modules.d.ts +6 -0
- package/dist/style.css +1 -1
- package/package.json +8 -9
- package/src/assets/amelipro/icons.ts +166 -153
- package/src/components/Accordion/Accordion.mdx +4 -1
- package/src/components/Accordion/{Accessibilite/AccessibilityGuide.mdx → accessibilite/Accessibility.mdx} +2 -2
- package/src/components/Amelipro/AmeliproClickableTile/AmeliproClickableTile.stories.ts +73 -14
- package/src/components/Amelipro/AmeliproClickableTile/AmeliproClickableTile.vue +119 -27
- package/src/components/Amelipro/AmeliproClickableTile/tests/AmeliproClickableTile.a11y.spec.ts +304 -0
- package/src/components/Amelipro/AmeliproClickableTile/tests/AmeliproClickableTile.spec.ts +435 -9
- package/src/components/Amelipro/AmeliproClickableTile/tests/__snapshots__/AmeliproClickableTile.spec.ts.snap +60 -0
- package/src/components/Amelipro/AmeliproIcon/__tests__/AmeliproIcon.spec.ts +1 -1
- package/src/components/Amelipro/AmeliproIcon/iconList.ts +2 -0
- package/src/components/BackBtn/BackBtn.vue +5 -4
- package/src/components/BackBtn/accessibilite/Accessibility.mdx +15 -0
- package/src/components/BackToTopBtn/BackToTopBtn.vue +6 -3
- package/src/components/BackToTopBtn/accessibilite/Accessibility.mdx +15 -0
- package/src/components/Captcha/Captcha.vue +5 -1
- package/src/components/Captcha/CaptchaAlert.vue +9 -7
- package/src/components/Captcha/accessibilite/Accessibility.mdx +10 -0
- package/src/components/ChipList/accessibilite/Accessibility.mdx +15 -0
- package/src/components/CollapsibleList/{Accessibilite.mdx → accessibilite/Accessibility.mdx} +8 -6
- package/src/components/Common/IconSlot/IconSlot.vue +1 -1
- package/src/components/ContextualMenu/accessibilite/Accessibility.mdx +15 -0
- package/src/components/CookieBanner/accessibilite/Accessibility.mdx +15 -0
- package/src/components/CookiesSelection/CookiesInformation/CookiesInformation.vue +5 -4
- package/src/components/CopyBtn/CopyBtn.vue +6 -3
- package/src/components/CopyBtn/accessibilite/Accessibility.mdx +15 -0
- package/src/components/Customs/Selects/SelectBtnField/accessibilite/Accessibility.mdx +15 -0
- package/src/components/Customs/Selects/SelectOverview.mdx +112 -1
- package/src/components/Customs/Selects/SyAutocomplete/SyAutocomplete.mdx +52 -0
- package/src/components/Customs/Selects/SyAutocomplete/SyAutocomplete.stories.ts +979 -0
- package/src/components/Customs/Selects/SyAutocomplete/SyAutocomplete.vue +653 -0
- package/src/components/Customs/Selects/{SySelect → SyAutocomplete/accessibilite}/Accessibilite.stories.ts +7 -38
- package/src/components/Customs/Selects/{SySelect/Accessibilite.mdx → SyAutocomplete/accessibilite/Accessibility.mdx} +15 -20
- package/src/components/Customs/Selects/SyAutocomplete/tests/SyAutocomplete.a11y.spec.ts +72 -0
- package/src/components/Customs/Selects/SyAutocomplete/tests/SyAutocomplete.spec.ts +345 -0
- package/src/components/Customs/Selects/SyAutocomplete/types.ts +7 -0
- package/src/components/Customs/Selects/SyAutocomplete/utils/ariaManager.ts +180 -0
- package/src/components/Customs/Selects/SyAutocomplete/utils/useItemUtils.ts +46 -0
- package/src/components/Customs/Selects/SyAutocomplete/utils/useKeyboardHandler.ts +107 -0
- package/src/components/Customs/Selects/SyAutocomplete/utils/useSelectionLogic.ts +74 -0
- package/src/components/Customs/Selects/SyInputSelect/SyInputSelect.vue +13 -9
- package/src/components/Customs/Selects/SyInputSelect/accessibilite/Accessibility.mdx +12 -0
- package/src/components/Customs/Selects/SySelect/SySelect.stories.ts +43 -34
- package/src/components/Customs/Selects/SySelect/SySelect.vue +19 -2
- package/src/components/Customs/Selects/SySelect/accessibilite/Accessibility.mdx +274 -0
- package/src/components/Customs/Selects/SySelect/composables/useSySelectKeyboard.ts +21 -16
- package/src/components/Customs/SyCheckbox/{Accessibilite.mdx → accessibilite/Accessibility.mdx} +2 -2
- package/src/components/Customs/SyForm/accessibilite/Accessibility.mdx +10 -0
- package/src/components/Customs/SyIcon/SyIcon.mdx +4 -1
- package/src/components/Customs/SyIcon/SyIcon.vue +4 -3
- package/src/components/Customs/SyIcon/{Accessibilite.stories.ts → accessibilite/Accessibilite.stories.ts} +3 -3
- package/src/components/Customs/SyIcon/{Accessibilite.mdx → accessibilite/Accessibility.mdx} +2 -2
- package/src/components/Customs/SyPagination/SyPagination.mdx +4 -2
- package/src/components/Customs/SyPagination/accessibilite/Accessibility.mdx +10 -0
- package/src/components/Customs/SyRadioGroup/{Accessibilite.mdx → accessibilite/Accessibility.mdx} +2 -2
- package/src/components/Customs/SyTabs/SyTabs.mdx +4 -2
- package/src/components/Customs/SyTabs/{Accessibilite.mdx → accessibilite/Accessibility.mdx} +2 -2
- package/src/components/Customs/SyTextField/SyTextField.mdx +1 -2
- package/src/components/Customs/SyTextField/SyTextField.vue +13 -0
- package/src/components/Customs/SyTextField/accessibilite/Accessibility.mdx +15 -0
- package/src/components/DataList/accessibilite/Accessibility.mdx +15 -0
- package/src/components/DataListGroup/accessibilite/Accessibility.mdx +14 -0
- package/src/components/DatePicker/Accessibilite.mdx +1 -1
- package/src/components/DatePicker/Accessibilite.stories.ts +1 -1
- package/src/components/DatePicker/CalendarMode/DatePicker.stories.ts +7 -4
- package/src/components/DatePicker/CalendarMode/DatePicker.vue +14 -2
- package/src/components/DatePicker/DatePickerValidationExample/DatePickerValidation.stories.ts +297 -0
- package/src/components/DatePicker/composables/useDateSelection.ts +5 -0
- package/src/components/DatePicker/docExamples/BidirectionalComplexValidation.vue +273 -0
- package/src/components/DatePicker/docExamples/DatePickerBidirectionalValidation.vue +4 -4
- package/src/components/DatePicker/docExamples/DatePickerValidationExamples.vue +10 -0
- package/src/components/DiacriticPicker/accessibilite/Accessibility.mdx +10 -0
- package/src/components/DialogBox/accessibilite/Accessibility.mdx +15 -0
- package/src/components/DownloadBtn/DownloadBtn.vue +5 -4
- package/src/components/DownloadBtn/accessibilite/Accessibility.mdx +15 -0
- package/src/components/ErrorPage/accessibilite/Accessibility.mdx +15 -0
- package/src/components/ExternalLinks/accessibilite/Accessibility.mdx +15 -0
- package/src/components/FileList/UploadItem/UploadItem.vue +25 -20
- package/src/components/FileList/accessibilite/Accessibility.mdx +12 -0
- package/src/components/FilePreview/accessibilite/Accessibility.mdx +12 -0
- package/src/components/FileUpload/FileUploadContent.vue +5 -4
- package/src/components/FileUpload/accessibilite/Accessibility.mdx +12 -0
- package/src/components/FilterInline/FilterInline.vue +5 -4
- package/src/components/FilterInline/accessibilite/Accessibility.mdx +12 -0
- package/src/components/FilterSideBar/accessibilite/Accessibility.mdx +15 -0
- package/src/components/FooterBar/{Accessibilite.mdx → accessibilite/Accessibility.mdx} +3 -4
- package/src/components/FranceConnectBtn/FranceConnectBtn.vue +6 -5
- package/src/components/FranceConnectBtn/accessibilite/Accessibility.mdx +15 -0
- package/src/components/FranceConnectBtn/tests/__snapshots__/FranceConnectBtn.spec.ts.snap +3 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/accessibilite/Accessibility.mdx +15 -0
- package/src/components/HeaderBar/accessibilite/Accessibility.mdx +15 -0
- package/src/components/HeaderBar/{Usages.mdx → usages/Usages.mdx} +2 -2
- package/src/components/HeaderLoading/{Accessibilite.mdx → accessibilite/Accessibility.mdx} +9 -5
- package/src/components/HeaderToolbar/accessibilite/Accessibility.mdx +15 -0
- package/src/components/LangBtn/LangBtn.vue +5 -4
- package/src/components/LangBtn/accessibilite/Accessibility.mdx +15 -0
- package/src/components/Logo/accessibilite/Accessibility.mdx +17 -0
- package/src/components/LogoBrandSection/accessibilite/Accessibility.mdx +12 -0
- package/src/components/LunarCalendar/accessibilite/Accessibility.mdx +10 -0
- package/src/components/MaintenancePage/accessibilite/Accessibility.mdx +15 -0
- package/src/components/NirField/accessibilite/Accessibility.mdx +15 -0
- package/src/components/NotFoundPage/accessibilite/Accessibility.mdx +15 -0
- package/src/components/NotificationBar/Notification/Notification.vue +1 -1
- package/src/components/NotificationBar/accessibilite/Accessibility.mdx +15 -0
- package/src/components/PageContainer/{AccessibilityGuide.mdx → Accessibilite/Accessibility.mdx} +7 -4
- package/src/components/PageContainer/Accessibilite/AccessibilityGuide.mdx +0 -0
- package/src/components/PaginatedTable/PaginatedTable.vue +27 -47
- package/src/components/PaginatedTable/Pagination.vue +93 -0
- package/src/components/PaginatedTable/accessibilite/Accessibility.mdx +12 -0
- package/src/components/PasswordField/PasswordField.vue +2 -1
- package/src/components/PasswordField/accessibilite/Accessibility.mdx +108 -0
- package/src/components/PeriodField/accessibilite/Accessibility.mdx +12 -0
- package/src/components/PhoneField/accessibilite/Accessibility.mdx +15 -0
- package/src/components/RangeField/accessibilite/Accessibility.mdx +15 -0
- package/src/components/RatingPicker/accessibilite/Accessibility.mdx +15 -0
- package/src/components/SearchListField/SearchListField.vue +6 -3
- package/src/components/SearchListField/accessibilite/Accessibility.mdx +15 -0
- package/src/components/SkipLink/{Accessibilite.mdx → accessibilite/Accessibility.mdx} +7 -4
- package/src/components/SocialMediaLinks/accessibilite/Accessibility.mdx +15 -0
- package/src/components/SubHeader/accessibilite/Accessibility.mdx +15 -0
- package/src/components/SyAlert/SyAlert.vue +6 -6
- package/src/components/SyAlert/accessibilite/Accessibility.mdx +12 -0
- package/src/components/SyTextArea/accessibilite/Accessibility.mdx +10 -0
- package/src/components/TableToolbar/TableToolbar.vue +6 -3
- package/src/components/TableToolbar/accessibilite/Accessibility.mdx +12 -0
- package/src/components/Tables/SyServerTable/SyServerTable.mdx +4 -1
- package/src/components/Tables/SyServerTable/accessibilite/Accessibility.mdx +10 -0
- package/src/components/Tables/SyTable/SyTable.mdx +4 -1
- package/src/components/Tables/SyTable/accessibilite/Accessibility.mdx +10 -0
- package/src/components/Tables/common/TableHeader.vue +3 -1
- package/src/components/Tables/common/organizeColumns/OrganizeColumns.vue +18 -14
- package/src/components/ToolbarContainer/ToolbarContainer.mdx +2 -1
- package/src/components/ToolbarContainer/ToolbarContainer.stories.ts +563 -420
- package/src/components/ToolbarContainer/accessibilite/Accessibility.mdx +69 -0
- package/src/components/UploadWorkflow/accessibilite/Accessibility.mdx +12 -0
- package/src/components/Usages/Usages.vue +3 -2
- package/src/components/UserMenuBtn/UserMenuBtn.vue +7 -5
- package/src/components/UserMenuBtn/accessibilite/Accessibility.mdx +12 -0
- package/src/components/index.ts +2 -0
- package/src/components/types.ts +10 -0
- package/src/composables/rules/useFieldValidation.ts +7 -0
- package/src/composables/useFormFieldErrorHandling.ts +141 -0
- package/src/modules.d.ts +6 -0
- package/src/components/BackBtn/Accessibilite.mdx +0 -14
- package/src/components/BackBtn/Accessibilite.stories.ts +0 -30
- package/src/components/BackToTopBtn/Accessibilite.mdx +0 -14
- package/src/components/BackToTopBtn/Accessibilite.stories.ts +0 -31
- package/src/components/ChipList/Accessibilite.mdx +0 -14
- package/src/components/ChipList/Accessibilite.stories.ts +0 -31
- package/src/components/CollapsibleList/Accessibilite.stories.ts +0 -29
- package/src/components/ContextualMenu/Accessibilite.mdx +0 -13
- package/src/components/ContextualMenu/Accessibilite.stories.ts +0 -29
- package/src/components/CookieBanner/Accessibilite.mdx +0 -13
- package/src/components/CookieBanner/Accessibilite.stories.ts +0 -30
- package/src/components/CopyBtn/Accessibilite.mdx +0 -13
- package/src/components/CopyBtn/Accessibilite.stories.ts +0 -29
- package/src/components/Customs/Selects/SelectBtnField/Accessibilite.mdx +0 -14
- package/src/components/Customs/Selects/SelectBtnField/Accessibilite.stories.ts +0 -29
- package/src/components/Customs/Selects/SyInputSelect/Accessibilite.mdx +0 -13
- package/src/components/Customs/Selects/SyInputSelect/Accessibilite.stories.ts +0 -25
- package/src/components/Customs/SyTextField/Accessibilite.mdx +0 -14
- package/src/components/Customs/SyTextField/Accessibilite.stories.ts +0 -34
- package/src/components/DataList/Accessibilite.mdx +0 -13
- package/src/components/DataList/Accessibilite.stories.ts +0 -29
- package/src/components/DataListGroup/Accessibilite.mdx +0 -13
- package/src/components/DataListGroup/Accessibilite.stories.ts +0 -29
- package/src/components/DialogBox/Accessibilite.mdx +0 -14
- package/src/components/DialogBox/Accessibilite.stories.ts +0 -29
- package/src/components/DownloadBtn/Accessibilite.mdx +0 -14
- package/src/components/DownloadBtn/Accessibilite.stories.ts +0 -29
- package/src/components/ErrorPage/Accessibilite.mdx +0 -13
- package/src/components/ErrorPage/Accessibilite.stories.ts +0 -36
- package/src/components/ExternalLinks/Accessibilite.mdx +0 -18
- package/src/components/ExternalLinks/Accessibilite.stories.ts +0 -62
- package/src/components/FileList/Accessibilite.mdx +0 -13
- package/src/components/FileList/Accessibilite.stories.ts +0 -26
- package/src/components/FilePreview/Accessibilite.mdx +0 -14
- package/src/components/FilePreview/Accessibilite.stories.ts +0 -26
- package/src/components/FileUpload/Accessibilite.mdx +0 -13
- package/src/components/FileUpload/Accessibilite.stories.ts +0 -26
- package/src/components/FilterInline/Accessibilite.mdx +0 -15
- package/src/components/FilterInline/Accessibilite.stories.ts +0 -26
- package/src/components/FilterSideBar/Accessibilite.mdx +0 -13
- package/src/components/FilterSideBar/Accessibilite.stories.ts +0 -30
- package/src/components/FooterBar/Accessibilite.stories.ts +0 -26
- package/src/components/FranceConnectBtn/Accessibilite.mdx +0 -13
- package/src/components/FranceConnectBtn/Accessibilite.stories.ts +0 -30
- package/src/components/HeaderBar/Accessibilite.mdx +0 -13
- package/src/components/HeaderBar/Accessibilite.stories.ts +0 -31
- package/src/components/HeaderBar/HeaderBurgerMenu/Accessibilite.mdx +0 -13
- package/src/components/HeaderBar/HeaderBurgerMenu/Accessibilite.stories.ts +0 -30
- package/src/components/HeaderLoading/Accessibilite.stories.ts +0 -31
- package/src/components/HeaderToolbar/Accessibilite.mdx +0 -13
- package/src/components/HeaderToolbar/Accessibilite.stories.ts +0 -36
- package/src/components/LangBtn/Accessibilite.mdx +0 -13
- package/src/components/LangBtn/Accessibilite.stories.ts +0 -32
- package/src/components/Logo/Accessibilite.mdx +0 -13
- package/src/components/Logo/Accessibilite.stories.ts +0 -30
- package/src/components/LogoBrandSection/Accessibilite.mdx +0 -13
- package/src/components/LogoBrandSection/Accessibilite.stories.ts +0 -26
- package/src/components/MaintenancePage/Accessibilite.mdx +0 -13
- package/src/components/MaintenancePage/Accessibilite.stories.ts +0 -36
- package/src/components/NirField/Accessibilite.mdx +0 -13
- package/src/components/NirField/Accessibilite.stories.ts +0 -31
- package/src/components/NotFoundPage/Accessibilite.mdx +0 -13
- package/src/components/NotFoundPage/Accessibilite.stories.ts +0 -36
- package/src/components/NotificationBar/Accessibilite.mdx +0 -13
- package/src/components/NotificationBar/Accessibilite.stories.ts +0 -30
- package/src/components/PageContainer/Accessibilite.mdx +0 -13
- package/src/components/PageContainer/Accessibilite.stories.ts +0 -30
- package/src/components/PaginatedTable/Accessibilite.mdx +0 -13
- package/src/components/PaginatedTable/Accessibilite.stories.ts +0 -26
- package/src/components/PasswordField/Accessibilite.mdx +0 -13
- package/src/components/PasswordField/Accessibilite.stories.ts +0 -121
- package/src/components/PeriodField/Accessibilite.mdx +0 -13
- package/src/components/PeriodField/Accessibilite.stories.ts +0 -27
- package/src/components/PhoneField/Accessibilite.mdx +0 -13
- package/src/components/PhoneField/Accessibilite.stories.ts +0 -32
- package/src/components/RangeField/Accessibilite.mdx +0 -13
- package/src/components/RangeField/Accessibilite.stories.ts +0 -32
- package/src/components/RatingPicker/Accessibilite.mdx +0 -13
- package/src/components/RatingPicker/Accessibilite.stories.ts +0 -30
- package/src/components/SearchListField/Accessibilite.mdx +0 -13
- package/src/components/SearchListField/Accessibilite.stories.ts +0 -30
- package/src/components/SkipLink/Accessibilite.stories.ts +0 -36
- package/src/components/SocialMediaLinks/Accessibilite.mdx +0 -13
- package/src/components/SocialMediaLinks/Accessibilite.stories.ts +0 -36
- package/src/components/SubHeader/Accessibilite.mdx +0 -13
- package/src/components/SubHeader/Accessibilite.stories.ts +0 -36
- package/src/components/SyAlert/Accessibilite.mdx +0 -13
- package/src/components/SyAlert/Accessibilite.stories.ts +0 -30
- package/src/components/TableToolbar/Accessibilite.mdx +0 -13
- package/src/components/TableToolbar/Accessibilite.stories.ts +0 -26
- package/src/components/UploadWorkflow/Accessibilite.mdx +0 -13
- package/src/components/UploadWorkflow/Accessibilite.stories.ts +0 -26
- package/src/components/UserMenuBtn/Accessibilite.mdx +0 -13
- package/src/components/UserMenuBtn/Accessibilite.stories.ts +0 -25
- /package/src/components/HeaderBar/{Usages.stories.ts → usages/Usages.stories.ts} +0 -0
- /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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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 {
|
|
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:
|
|
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<
|
|
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:
|
|
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<
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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;
|