@volverjs/ui-vue 0.0.10-beta.3 → 0.0.10-beta.30
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/LICENSE +1 -1
- package/README.md +106 -10
- package/auto-imports.d.ts +7 -2
- package/bin/icons.cjs +1 -1
- package/bin/icons.js +22 -15
- package/dist/.storybook/main.d.ts +3 -0
- package/dist/.storybook/preview.d.ts +89 -0
- package/dist/components/VvAccordion/VvAccordion.es.js +192 -103
- package/dist/components/VvAccordion/VvAccordion.umd.js +1 -1
- package/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +451 -172
- package/dist/components/VvAccordionGroup/VvAccordionGroup.umd.js +1 -1
- package/dist/components/VvAction/VvAction.es.js +78 -27
- package/dist/components/VvAction/VvAction.umd.js +1 -1
- package/dist/components/VvAlert/VvAlert.es.js +204 -171
- package/dist/components/VvAlert/VvAlert.umd.js +1 -1
- package/dist/components/VvAlertGroup/VvAlertGroup.es.js +250 -188
- package/dist/components/VvAlertGroup/VvAlertGroup.umd.js +1 -1
- package/dist/components/VvAvatar/VvAvatar.es.js +61 -21
- package/dist/components/VvAvatar/VvAvatar.umd.js +1 -1
- package/dist/components/VvAvatarGroup/VvAvatarGroup.es.js +118 -48
- package/dist/components/VvAvatarGroup/VvAvatarGroup.umd.js +1 -1
- package/dist/components/VvBadge/VvBadge.es.js +78 -28
- package/dist/components/VvBadge/VvBadge.umd.js +1 -1
- package/dist/components/VvBreadcrumb/VvBreadcrumb.es.js +276 -60
- package/dist/components/VvBreadcrumb/VvBreadcrumb.umd.js +1 -1
- package/dist/components/VvButton/VvButton.es.js +291 -252
- package/dist/components/VvButton/VvButton.umd.js +1 -1
- package/dist/components/VvButtonGroup/VvButtonGroup.es.js +81 -40
- package/dist/components/VvButtonGroup/VvButtonGroup.umd.js +1 -1
- package/dist/components/VvCard/VvCard.es.js +86 -36
- package/dist/components/VvCard/VvCard.umd.js +1 -1
- package/dist/components/VvCheckbox/VvCheckbox.es.js +177 -120
- package/dist/components/VvCheckbox/VvCheckbox.umd.js +1 -1
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +190 -107
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -1
- package/dist/components/VvCombobox/VvCombobox.es.js +806 -581
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvDialog/VvDialog.es.js +140 -153
- package/dist/components/VvDialog/VvDialog.umd.js +1 -1
- package/dist/components/VvDropdown/VvDropdown.es.js +138 -71
- package/dist/components/VvDropdown/VvDropdown.umd.js +1 -1
- package/dist/components/VvDropdownAction/VvDropdownAction.es.js +152 -39
- package/dist/components/VvDropdownAction/VvDropdownAction.umd.js +1 -1
- package/dist/components/VvDropdownItem/VvDropdownItem.es.js +335 -8
- package/dist/components/VvDropdownItem/VvDropdownItem.umd.js +1 -1
- package/dist/components/VvDropdownOptgroup/VvDropdownOptgroup.es.js +63 -20
- package/dist/components/VvDropdownOptgroup/VvDropdownOptgroup.umd.js +1 -1
- package/dist/components/VvDropdownOption/VvDropdownOption.es.js +188 -80
- package/dist/components/VvDropdownOption/VvDropdownOption.umd.js +1 -1
- package/dist/components/VvIcon/VvIcon.es.js +23 -96
- package/dist/components/VvIcon/VvIcon.umd.js +1 -1
- package/dist/components/VvInputFile/VvInputFile.es.js +1777 -0
- package/dist/components/VvInputFile/VvInputFile.umd.js +1 -0
- package/dist/components/VvInputText/VvInputText.es.js +1237 -324
- package/dist/components/VvInputText/VvInputText.umd.js +1 -1
- package/dist/components/VvNav/VvNav.es.js +135 -56
- package/dist/components/VvNav/VvNav.umd.js +1 -1
- package/dist/components/VvNavItem/VvNavItem.es.js +91 -33
- package/dist/components/VvNavItem/VvNavItem.umd.js +1 -1
- package/dist/components/VvProgress/VvProgress.es.js +72 -26
- package/dist/components/VvProgress/VvProgress.umd.js +1 -1
- package/dist/components/VvRadio/VvRadio.es.js +160 -103
- package/dist/components/VvRadio/VvRadio.umd.js +1 -1
- package/dist/components/VvRadioGroup/VvRadioGroup.es.js +190 -107
- package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -1
- package/dist/components/VvSelect/VvSelect.es.js +251 -238
- package/dist/components/VvSelect/VvSelect.umd.js +1 -1
- package/dist/components/VvTab/VvTab.es.js +191 -75
- package/dist/components/VvTab/VvTab.umd.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.es.js +232 -224
- package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
- package/dist/components/VvTooltip/VvTooltip.es.js +79 -29
- package/dist/components/VvTooltip/VvTooltip.umd.js +1 -1
- package/dist/components/index.es.js +3534 -1650
- package/dist/components/index.umd.js +1 -1
- package/dist/composables/index.es.js +92 -3
- package/dist/composables/index.umd.js +1 -1
- package/dist/directives/index.es.js +99 -43
- package/dist/directives/index.umd.js +1 -1
- package/dist/directives/v-tooltip.es.js +97 -38
- package/dist/directives/v-tooltip.umd.js +1 -1
- package/dist/icons.es.js +267 -267
- package/dist/icons.umd.js +1 -1
- package/dist/index.es.js +90 -16
- package/dist/index.umd.js +1 -1
- package/dist/resolvers/unplugin.es.js +87 -10
- package/dist/resolvers/unplugin.umd.js +1 -1
- package/dist/src/components/VvAccordion/VvAccordion.vue.d.ts +194 -0
- package/dist/{components → src/components}/VvAccordion/index.d.ts +8 -9
- package/dist/src/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +92 -0
- package/dist/{components → src/components}/VvAccordionGroup/index.d.ts +14 -6
- package/dist/{components → src/components}/VvAction/VvAction.vue.d.ts +57 -22
- package/dist/{components → src/components}/VvAction/index.d.ts +25 -9
- package/dist/{components → src/components}/VvAlert/VvAlert.vue.d.ts +24 -14
- package/dist/{components → src/components}/VvAlert/index.d.ts +17 -9
- package/dist/{components → src/components}/VvAlertGroup/VvAlertGroup.vue.d.ts +16 -9
- package/dist/{components → src/components}/VvAlertGroup/index.d.ts +6 -14
- package/dist/src/components/VvAvatar/VvAvatar.vue.d.ts +23 -0
- package/dist/{components → src/components}/VvAvatar/index.d.ts +4 -1
- package/dist/{components → src/components}/VvAvatarGroup/VvAvatarGroup.vue.d.ts +10 -3
- package/dist/{components → src/components}/VvAvatarGroup/index.d.ts +4 -1
- package/dist/{components → src/components}/VvBadge/VvBadge.vue.d.ts +12 -4
- package/dist/src/components/VvBadge/index.d.ts +7 -0
- package/dist/src/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +38 -0
- package/dist/src/components/VvBreadcrumb/index.d.ts +8 -0
- package/dist/{components → src/components}/VvButton/VvButton.vue.d.ts +94 -40
- package/dist/{components → src/components}/VvButton/index.d.ts +51 -29
- package/dist/{components → src/components}/VvButtonGroup/VvButtonGroup.vue.d.ts +24 -11
- package/dist/{components → src/components}/VvButtonGroup/index.d.ts +8 -2
- package/dist/{components → src/components}/VvCard/VvCard.vue.d.ts +12 -4
- package/dist/src/components/VvCard/index.d.ts +7 -0
- package/dist/src/components/VvCheckbox/VvCheckbox.vue.d.ts +184 -0
- package/dist/{components → src/components}/VvCheckbox/index.d.ts +47 -14
- package/dist/{components → src/components}/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +101 -30
- package/dist/src/components/VvCheckboxGroup/index.d.ts +75 -0
- package/dist/{components → src/components}/VvCombobox/VvCombobox.vue.d.ts +171 -104
- package/dist/{components → src/components}/VvCombobox/index.d.ts +62 -26
- package/dist/{components → src/components}/VvDialog/VvDialog.vue.d.ts +4 -4
- package/dist/{components → src/components}/VvDropdown/VvDropdown.vue.d.ts +101 -75
- package/dist/src/components/VvDropdown/VvDropdownAction.vue.d.ts +114 -0
- package/dist/src/components/VvDropdown/VvDropdownItem.vue.d.ts +21 -0
- package/dist/src/components/VvDropdown/VvDropdownOptgroup.vue.d.ts +14 -0
- package/dist/{components → src/components}/VvDropdown/VvDropdownOption.vue.d.ts +35 -7
- package/dist/{components → src/components}/VvDropdown/index.d.ts +52 -10
- package/dist/src/components/VvIcon/VvIcon.vue.d.ts +26 -0
- package/dist/{components → src/components}/VvIcon/index.d.ts +33 -48
- package/dist/src/components/VvInputFile/VvInputFile.vue.d.ts +359 -0
- package/dist/src/components/VvInputFile/index.d.ts +200 -0
- package/dist/{components → src/components}/VvInputText/VvInputClearAction.d.ts +7 -5
- package/dist/{components → src/components}/VvInputText/VvInputPasswordAction.d.ts +10 -8
- package/dist/{components → src/components}/VvInputText/VvInputStepAction.d.ts +2 -2
- package/dist/{components → src/components}/VvInputText/VvInputText.vue.d.ts +207 -57
- package/dist/{components → src/components}/VvInputText/index.d.ts +99 -29
- package/dist/src/components/VvNav/VvNav.vue.d.ts +48 -0
- package/dist/{components → src/components}/VvNav/VvNavItem.vue.d.ts +1 -1
- package/dist/src/components/VvNav/VvNavSeparator.vue.d.ts +2 -0
- package/dist/src/components/VvNav/index.d.ts +11 -0
- package/dist/{components → src/components}/VvProgress/VvProgress.vue.d.ts +10 -3
- package/dist/{components → src/components}/VvProgress/index.d.ts +4 -1
- package/dist/src/components/VvRadio/VvRadio.vue.d.ts +176 -0
- package/dist/src/components/VvRadio/index.d.ts +80 -0
- package/dist/{components → src/components}/VvRadioGroup/VvRadioGroup.vue.d.ts +101 -30
- package/dist/src/components/VvRadioGroup/index.d.ts +75 -0
- package/dist/{components → src/components}/VvSelect/VvSelect.vue.d.ts +117 -44
- package/dist/{components → src/components}/VvSelect/index.d.ts +48 -14
- package/dist/src/components/VvTab/VvTab.vue.d.ts +63 -0
- package/dist/{components → src/components}/VvTab/index.d.ts +4 -1
- package/dist/{components → src/components}/VvTextarea/VvTextarea.vue.d.ts +156 -49
- package/dist/{components → src/components}/VvTextarea/index.d.ts +68 -19
- package/dist/src/components/VvTooltip/VvTooltip.vue.d.ts +36 -0
- package/dist/{components → src/components}/VvTooltip/index.d.ts +5 -2
- package/dist/{components → src/components}/common/HintSlot.d.ts +1 -1
- package/dist/{components → src/components}/index.d.ts +10 -0
- package/dist/src/composables/alert/useAlert.d.ts +122 -0
- package/dist/src/composables/alert/useInjectAlert.d.ts +4 -0
- package/dist/src/composables/dropdown/useInjectDropdown.d.ts +12 -0
- package/dist/{composables → src/composables}/dropdown/useProvideDropdown.d.ts +3 -4
- package/dist/src/composables/group/useInjectedGroupState.d.ts +9 -0
- package/dist/src/composables/group/useProvideGroupState.d.ts +6 -0
- package/dist/{composables → src/composables}/index.d.ts +1 -0
- package/dist/src/composables/useBlurhash.d.ts +7 -0
- package/dist/src/composables/useComponentIcon.d.ts +11 -0
- package/dist/src/composables/usePersistence.d.ts +2 -0
- package/dist/src/composables/useVolver.d.ts +1 -0
- package/dist/{constants.d.ts → src/constants.d.ts} +34 -32
- package/dist/src/directives/index.d.ts +3 -0
- package/dist/{index.d.ts → src/index.d.ts} +3 -1
- package/dist/{props → src/props}/index.d.ts +272 -81
- package/dist/{resolvers → src/resolvers}/unplugin.d.ts +6 -1
- package/dist/src/stories/AccordionGroup/AccordionGroup.stories.d.ts +188 -0
- package/dist/src/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +1262 -0
- package/dist/{stories → src/stories}/AlertGroup/AlertGroupWithComposable.stories.d.ts +1 -1
- package/dist/src/stories/Blurhash/BlurhashComposable.stories.d.ts +4 -0
- package/dist/{stories → src/stories}/Button/Button.settings.d.ts +0 -1
- package/dist/{stories → src/stories}/Combobox/Combobox.settings.d.ts +8 -0
- package/dist/{stories → src/stories}/Icon/Icon.settings.d.ts +1 -0
- package/dist/src/stories/InputFile/InputFile.settings.d.ts +56 -0
- package/dist/src/stories/InputFile/InputFile.stories.d.ts +12 -0
- package/dist/src/stories/InputFile/InputFileDropArea.stories.d.ts +9 -0
- package/dist/src/stories/InputFile/InputFileIconPosition.stories.d.ts +8 -0
- package/dist/src/stories/InputFile/InputFileSlots.stories.d.ts +7 -0
- package/dist/src/stories/Tab/Tab.settings.d.ts +4 -0
- package/dist/{test → src/test}/expect.d.ts +1 -1
- package/dist/src/types/alert.d.ts +15 -0
- package/dist/src/types/blurhash.d.ts +12 -0
- package/dist/{types → src/types}/generic.d.ts +1 -2
- package/dist/src/types/group.d.ts +59 -0
- package/dist/src/types/index.d.ts +7 -0
- package/dist/src/types/input-file.d.ts +16 -0
- package/dist/{types → src/types}/nav.d.ts +2 -2
- package/dist/{utils → src/utils}/ObjectUtilities.d.ts +0 -1
- package/dist/src/workers/blurhash.d.ts +1 -0
- package/package.json +78 -78
- package/src/Volver.ts +31 -20
- package/src/assets/icons/detailed.json +1 -1
- package/src/assets/icons/normal.json +1 -1
- package/src/assets/icons/simple.json +1 -1
- package/src/components/VvAccordion/VvAccordion.vue +121 -58
- package/src/components/VvAccordion/index.ts +8 -23
- package/src/components/VvAccordionGroup/VvAccordionGroup.vue +164 -47
- package/src/components/VvAccordionGroup/index.ts +6 -6
- package/src/components/VvAction/VvAction.vue +17 -5
- package/src/components/VvAlert/index.ts +14 -9
- package/src/components/VvAlertGroup/index.ts +3 -15
- package/src/components/VvBreadcrumb/VvBreadcrumb.vue +20 -19
- package/src/components/VvBreadcrumb/index.ts +2 -8
- package/src/components/VvButton/VvButton.vue +17 -7
- package/src/components/VvButton/index.ts +9 -16
- package/src/components/VvButtonGroup/VvButtonGroup.vue +1 -2
- package/src/components/VvCheckbox/index.ts +2 -2
- package/src/components/VvCheckboxGroup/VvCheckboxGroup.vue +1 -2
- package/src/components/VvCombobox/VvCombobox.vue +15 -12
- package/src/components/VvCombobox/index.ts +4 -0
- package/src/components/VvDropdown/VvDropdown.vue +11 -2
- package/src/components/VvDropdown/VvDropdownItem.vue +4 -1
- package/src/components/VvDropdown/VvDropdownOption.vue +4 -21
- package/src/components/VvDropdown/index.ts +35 -1
- package/src/components/VvIcon/VvIcon.vue +2 -2
- package/src/components/VvIcon/index.ts +35 -48
- package/src/components/VvInputFile/VvInputFile.vue +395 -0
- package/src/components/VvInputFile/index.ts +135 -0
- package/src/components/VvInputText/VvInputClearAction.ts +10 -6
- package/src/components/VvInputText/VvInputPasswordAction.ts +13 -9
- package/src/components/VvInputText/VvInputText.vue +141 -33
- package/src/components/VvInputText/index.ts +31 -16
- package/src/components/VvNav/VvNav.vue +4 -2
- package/src/components/VvRadio/index.ts +5 -5
- package/src/components/VvRadioGroup/VvRadioGroup.vue +1 -2
- package/src/components/VvSelect/VvSelect.vue +5 -8
- package/src/components/VvTab/VvTab.vue +5 -1
- package/src/components/VvTextarea/VvTextarea.vue +6 -9
- package/src/components/index.ts +10 -0
- package/src/composables/alert/useAlert.ts +12 -9
- package/src/composables/dropdown/useProvideDropdown.ts +4 -4
- package/src/composables/group/useInjectedGroupState.ts +20 -16
- package/src/composables/group/useProvideGroupState.ts +10 -15
- package/src/composables/index.ts +1 -0
- package/src/composables/useBlurhash.ts +76 -0
- package/src/composables/useComponentIcon.ts +15 -14
- package/src/composables/usePersistence.ts +76 -0
- package/src/composables/useUniqueId.ts +2 -2
- package/src/constants.ts +47 -32
- package/src/directives/index.ts +3 -6
- package/src/directives/v-tooltip.ts +19 -10
- package/src/index.ts +3 -1
- package/src/props/index.ts +108 -31
- package/src/resolvers/unplugin.ts +24 -14
- package/src/stories/Accordion/Accordion.test.ts +1 -1
- package/src/stories/AccordionGroup/AccordionGroup.settings.ts +2 -2
- package/src/stories/AccordionGroup/AccordionGroup.test.ts +17 -11
- package/src/stories/AccordionGroup/AccordionGroupSlots.stories.ts +1 -1
- package/src/stories/Alert/Alert.test.ts +1 -1
- package/src/stories/AlertGroup/AlertGroup.test.ts +1 -1
- package/src/stories/AlertGroup/AlertGroupWithComposable.stories.ts +2 -2
- package/src/stories/Avatar/Avatar.test.ts +1 -1
- package/src/stories/AvatarGroup/AvatarGroup.test.ts +1 -1
- package/src/stories/Badge/Badge.test.ts +1 -1
- package/src/stories/Blurhash/BlurhashComposable.stories.ts +195 -0
- package/src/stories/Button/Button.settings.ts +1 -4
- package/src/stories/Button/Button.test.ts +1 -1
- package/src/stories/ButtonGroup/ButtonGroup.test.ts +1 -1
- package/src/stories/Card/Card.test.ts +1 -1
- package/src/stories/Checkbox/Checkbox.test.ts +1 -1
- package/src/stories/CheckboxGroup/CheckboxGroup.test.ts +1 -1
- package/src/stories/Combobox/Combobox.settings.ts +8 -0
- package/src/stories/Combobox/Combobox.test.ts +1 -1
- package/src/stories/Dialog/Dialog.test.ts +2 -2
- package/src/stories/Dropdown/Dropdown.test.ts +1 -1
- package/src/stories/Icon/Icon.settings.ts +3 -3
- package/src/stories/InputFile/InputFile.settings.ts +36 -0
- package/src/stories/InputFile/InputFile.stories.ts +89 -0
- package/src/stories/InputFile/InputFileDropArea.stories.ts +56 -0
- package/src/stories/InputFile/InputFileIconPosition.stories.ts +43 -0
- package/src/stories/InputFile/InputFileSlots.stories.ts +33 -0
- package/src/stories/InputText/InputText.test.ts +1 -1
- package/src/stories/Nav/Nav.test.ts +1 -1
- package/src/stories/Progress/Progress.test.ts +1 -1
- package/src/stories/Radio/Radio.test.ts +1 -1
- package/src/stories/RadioGroup/RadioGroup.test.ts +1 -1
- package/src/stories/Select/Select.test.ts +1 -1
- package/src/stories/Tab/Tab.settings.ts +2 -2
- package/src/stories/Tab/Tab.test.ts +1 -1
- package/src/stories/Textarea/Textarea.test.ts +1 -1
- package/src/stories/Tooltip/Tooltip.test.ts +1 -1
- package/src/stories/argTypes.ts +1 -1
- package/src/test/expect.ts +2 -4
- package/src/types/alert.ts +11 -7
- package/src/types/blurhash.ts +21 -0
- package/src/types/generic.ts +3 -3
- package/src/types/group.ts +22 -14
- package/src/types/index.ts +7 -0
- package/src/types/input-file.ts +18 -0
- package/src/types/nav.ts +2 -3
- package/src/utils/ObjectUtilities.ts +0 -11
- package/src/workers/blurhash.ts +9 -0
- package/dist/components/VvAccordion/VvAccordion.vue.d.ts +0 -42
- package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +0 -47
- package/dist/components/VvAvatar/VvAvatar.vue.d.ts +0 -15
- package/dist/components/VvBadge/index.d.ts +0 -4
- package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +0 -18
- package/dist/components/VvBreadcrumb/index.d.ts +0 -12
- package/dist/components/VvCard/index.d.ts +0 -4
- package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +0 -112
- package/dist/components/VvCheckboxGroup/index.d.ts +0 -42
- package/dist/components/VvDropdown/VvDropdownAction.vue.d.ts +0 -73
- package/dist/components/VvDropdown/VvDropdownItem.vue.d.ts +0 -9
- package/dist/components/VvDropdown/VvDropdownOptgroup.vue.d.ts +0 -6
- package/dist/components/VvIcon/VvIcon.vue.d.ts +0 -69
- package/dist/components/VvNav/VvNav.vue.d.ts +0 -25
- package/dist/components/VvNav/VvNavSeparator.vue.d.ts +0 -2
- package/dist/components/VvNav/index.d.ts +0 -8
- package/dist/components/VvRadio/VvRadio.vue.d.ts +0 -104
- package/dist/components/VvRadio/index.d.ts +0 -47
- package/dist/components/VvRadioGroup/index.d.ts +0 -42
- package/dist/components/VvTab/VvTab.vue.d.ts +0 -39
- package/dist/components/VvTooltip/VvTooltip.vue.d.ts +0 -29
- package/dist/composables/alert/useAlert.d.ts +0 -27
- package/dist/composables/alert/useInjectAlert.d.ts +0 -9
- package/dist/composables/dropdown/useInjectDropdown.d.ts +0 -32
- package/dist/composables/group/useInjectedGroupState.d.ts +0 -10
- package/dist/composables/group/useProvideGroupState.d.ts +0 -6
- package/dist/composables/useComponentIcon.d.ts +0 -10
- package/dist/composables/useVolver.d.ts +0 -1
- package/dist/directives/index.d.ts +0 -5
- package/dist/stories/AccordionGroup/AccordionGroup.stories.d.ts +0 -134
- package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +0 -679
- package/dist/stories/Tab/Tab.settings.d.ts +0 -17
- package/dist/types/alert.d.ts +0 -13
- package/dist/types/group.d.ts +0 -37
- package/dist/{Volver.d.ts → src/Volver.d.ts} +1 -1
- /package/dist/{components → src/components}/VvDialog/index.d.ts +0 -0
- /package/dist/{components → src/components}/VvInputText/VvInputTextActions.d.ts +0 -0
- /package/dist/{composables → src/composables}/alert/useProvideAlert.d.ts +0 -0
- /package/dist/{composables → src/composables}/useComponentFocus.d.ts +0 -0
- /package/dist/{composables → src/composables}/useDebouncedInput.d.ts +0 -0
- /package/dist/{composables → src/composables}/useDefaults.d.ts +0 -0
- /package/dist/{composables → src/composables}/useModifiers.d.ts +0 -0
- /package/dist/{composables → src/composables}/useOptions.d.ts +0 -0
- /package/dist/{composables → src/composables}/useTextCount.d.ts +0 -0
- /package/dist/{composables → src/composables}/useUniqueId.d.ts +0 -0
- /package/dist/{directives → src/directives}/v-contextmenu.d.ts +0 -0
- /package/dist/{directives → src/directives}/v-tooltip.d.ts +0 -0
- /package/dist/{icons.d.ts → src/icons.d.ts} +0 -0
- /package/dist/{stories → src/stories}/Accordion/Accordion.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/Accordion/Accordion.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Accordion/Accordion.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Accordion/AccordionSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/AccordionGroup/AccordionGroup.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/AccordionGroup/AccordionGroup.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Alert/Alert.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/Alert/Alert.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Alert/Alert.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Alert/AlertModifiers.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Alert/AlertSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/AlertGroup/AlertGroup.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/AlertGroup/AlertGroup.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/AlertGroup/AlertGroup.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/AlertGroup/AlertGroupPosition.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/AlertGroup/AlertGroupSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Avatar/Avatar.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/Avatar/Avatar.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Avatar/Avatar.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Avatar/AvatarBadge.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Avatar/AvatarModifiers.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Avatar/AvatarSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/AvatarGroup/AvatarGroup.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/AvatarGroup/AvatarGroup.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/AvatarGroup/AvatarGroup.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/AvatarGroup/AvatarGroupModifiers.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/AvatarGroup/AvatarGroupSlotDefault.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Badge/Badge.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/Badge/Badge.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Badge/Badge.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Badge/BadgeSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Breadcrumb/Breadcrumb.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/Breadcrumb/Breadcrumb.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Breadcrumb/Breadcrumb.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Breadcrumb/BreadcrumbSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Button/Button.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Button/Button.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Button/ButtonIcon.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Button/ButtonLink.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Button/ButtonLoading.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Button/ButtonModifiers.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Button/ButtonSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Button/ButtonState.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Button/ButtonToggle.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/ButtonGroup/ButtonGroup.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/ButtonGroup/ButtonGroup.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/ButtonGroup/ButtonGroup.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/ButtonGroup/ButtonGroupModifiers.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/ButtonGroup/ButtonGroupSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/ButtonGroup/ButtonGroupToggle.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Card/Card.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/Card/Card.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Card/Card.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Card/CardSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Checkbox/Checkbox.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/Checkbox/Checkbox.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Checkbox/Checkbox.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Checkbox/CheckboxBinary.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Checkbox/CheckboxSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/CheckboxGroup/CheckboxGroup.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/CheckboxGroup/CheckboxGroup.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/CheckboxGroup/CheckboxGroup.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/CheckboxGroup/CheckboxGroupOptions.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/CheckboxGroup/CheckboxGroupSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Combobox/Combobox.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Combobox/Combobox.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Combobox/ComboboxIconPosition.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Combobox/ComboboxMultiple.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Combobox/ComboboxOptions.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Combobox/ComboboxSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Dialog/Dialog.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/Dialog/Dialog.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Dialog/Dialog.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Dialog/DialogSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Dropdown/Dropdown.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/Dropdown/Dropdown.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Dropdown/Dropdown.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Dropdown/DropdownContextmenuDirective.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Dropdown/DropdownMultilevel.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Dropdown/DropdownSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Icon/Icon.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Icon/IconsCollection.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/InputText/InputText.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/InputText/InputText.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/InputText/InputText.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/InputText/InputTextIconPosition.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/InputText/InputTextLength.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/InputText/InputTextMask.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/InputText/InputTextMinMax.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/InputText/InputTextSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/InputText/InputTextType.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Nav/Nav.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/Nav/Nav.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Nav/Nav.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Nav/NavModifiers.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Progress/Progress.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/Progress/Progress.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Progress/Progress.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Radio/Radio.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/Radio/Radio.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Radio/Radio.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Radio/RadioSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/RadioGroup/RadioGroup.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/RadioGroup/RadioGroup.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/RadioGroup/RadioGroup.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/RadioGroup/RadioGroupOptions.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/RadioGroup/RadioGroupSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Select/Select.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/Select/Select.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Select/Select.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Select/SelectIconPosition.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Select/SelectOptions.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Select/SelectSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Tab/Tab.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Tab/Tab.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Textarea/Textarea.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/Textarea/Textarea.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Textarea/Textarea.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Textarea/TextareaLength.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Textarea/TextareaSlots.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Textarea/TextareatIconPosition.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Tooltip/Tooltip.settings.d.ts +0 -0
- /package/dist/{stories → src/stories}/Tooltip/Tooltip.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/Tooltip/Tooltip.test.d.ts +0 -0
- /package/dist/{stories → src/stories}/Tooltip/TooltipDirective.stories.d.ts +0 -0
- /package/dist/{stories → src/stories}/argTypes.d.ts +0 -0
- /package/dist/{test → src/test}/options.d.ts +0 -0
- /package/dist/{test → src/test}/sleep.d.ts +0 -0
- /package/dist/{types → src/types}/floating-ui.d.ts +0 -0
|
@@ -13,7 +13,7 @@ export declare const VvComboboxProps: {
|
|
|
13
13
|
* modelValue can be a string, number, boolean, object or array of string, number, boolean, object
|
|
14
14
|
*/
|
|
15
15
|
modelValue: {
|
|
16
|
-
type: (ObjectConstructor | ArrayConstructor |
|
|
16
|
+
type: (ObjectConstructor | ArrayConstructor | BooleanConstructor | StringConstructor | NumberConstructor)[];
|
|
17
17
|
default: undefined;
|
|
18
18
|
};
|
|
19
19
|
/**
|
|
@@ -152,9 +152,12 @@ export declare const VvComboboxProps: {
|
|
|
152
152
|
type: BooleanConstructor;
|
|
153
153
|
default: boolean;
|
|
154
154
|
};
|
|
155
|
-
label:
|
|
155
|
+
label: {
|
|
156
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
157
|
+
default: undefined;
|
|
158
|
+
};
|
|
156
159
|
placement: {
|
|
157
|
-
type: PropType<"
|
|
160
|
+
type: PropType<"top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
158
161
|
default: import("../../constants").Side;
|
|
159
162
|
validator: (value: never) => boolean;
|
|
160
163
|
};
|
|
@@ -176,11 +179,11 @@ export declare const VvComboboxProps: {
|
|
|
176
179
|
crossAxis?: boolean | undefined;
|
|
177
180
|
mainAxis?: boolean | undefined;
|
|
178
181
|
limiter?: {
|
|
179
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/
|
|
182
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
180
183
|
options?: any;
|
|
181
184
|
} | undefined;
|
|
182
185
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
183
|
-
} | import("@floating-ui/
|
|
186
|
+
} | import("@floating-ui/core").Derivable<{
|
|
184
187
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
185
188
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
186
189
|
altBoundary?: boolean | undefined;
|
|
@@ -188,7 +191,7 @@ export declare const VvComboboxProps: {
|
|
|
188
191
|
crossAxis?: boolean | undefined;
|
|
189
192
|
mainAxis?: boolean | undefined;
|
|
190
193
|
limiter?: {
|
|
191
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/
|
|
194
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
192
195
|
options?: any;
|
|
193
196
|
} | undefined;
|
|
194
197
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
@@ -204,11 +207,11 @@ export declare const VvComboboxProps: {
|
|
|
204
207
|
crossAxis?: boolean | undefined;
|
|
205
208
|
mainAxis?: boolean | undefined;
|
|
206
209
|
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
207
|
-
fallbackStrategy?: "
|
|
210
|
+
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
208
211
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
209
212
|
flipAlignment?: boolean | undefined;
|
|
210
213
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
211
|
-
} | import("@floating-ui/
|
|
214
|
+
} | import("@floating-ui/core").Derivable<{
|
|
212
215
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
213
216
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
214
217
|
altBoundary?: boolean | undefined;
|
|
@@ -216,7 +219,7 @@ export declare const VvComboboxProps: {
|
|
|
216
219
|
crossAxis?: boolean | undefined;
|
|
217
220
|
mainAxis?: boolean | undefined;
|
|
218
221
|
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
219
|
-
fallbackStrategy?: "
|
|
222
|
+
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
220
223
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
221
224
|
flipAlignment?: boolean | undefined;
|
|
222
225
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
@@ -244,7 +247,7 @@ export declare const VvComboboxProps: {
|
|
|
244
247
|
availableWidth: number;
|
|
245
248
|
availableHeight: number;
|
|
246
249
|
}) => void | Promise<void>) | undefined;
|
|
247
|
-
} | import("@floating-ui/
|
|
250
|
+
} | import("@floating-ui/core").Derivable<{
|
|
248
251
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
249
252
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
250
253
|
altBoundary?: boolean | undefined;
|
|
@@ -280,7 +283,7 @@ export declare const VvComboboxProps: {
|
|
|
280
283
|
autoAlignment?: boolean | undefined;
|
|
281
284
|
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
282
285
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
283
|
-
} | import("@floating-ui/
|
|
286
|
+
} | import("@floating-ui/core").Derivable<{
|
|
284
287
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
285
288
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
286
289
|
altBoundary?: boolean | undefined;
|
|
@@ -305,9 +308,13 @@ export declare const VvComboboxProps: {
|
|
|
305
308
|
type: BooleanConstructor;
|
|
306
309
|
default: boolean;
|
|
307
310
|
};
|
|
308
|
-
floating:
|
|
311
|
+
floating: {
|
|
312
|
+
type: BooleanConstructor;
|
|
313
|
+
default: boolean;
|
|
314
|
+
};
|
|
309
315
|
icon: {
|
|
310
|
-
type:
|
|
316
|
+
type: PropType<string | import("../VvIcon").VvIconProps>;
|
|
317
|
+
default: undefined;
|
|
311
318
|
};
|
|
312
319
|
iconPosition: {
|
|
313
320
|
type: PropType<"before" | "after">;
|
|
@@ -317,37 +324,66 @@ export declare const VvComboboxProps: {
|
|
|
317
324
|
options: {
|
|
318
325
|
type: PropType<(string | Option)[]>;
|
|
319
326
|
default: () => never[];
|
|
320
|
-
};
|
|
327
|
+
}; /**
|
|
328
|
+
* Show native select
|
|
329
|
+
*/
|
|
321
330
|
labelKey: {
|
|
322
331
|
type: (StringConstructor | FunctionConstructor)[];
|
|
323
332
|
default: string;
|
|
324
333
|
};
|
|
325
334
|
valueKey: {
|
|
326
|
-
type: (StringConstructor | FunctionConstructor)[];
|
|
327
|
-
* Show native select
|
|
328
|
-
*/
|
|
335
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
329
336
|
default: string;
|
|
330
337
|
};
|
|
331
338
|
disabledKey: {
|
|
339
|
+
/**
|
|
340
|
+
* Dropdown modifiers
|
|
341
|
+
*/
|
|
332
342
|
type: (StringConstructor | FunctionConstructor)[];
|
|
333
343
|
default: string;
|
|
334
344
|
};
|
|
335
|
-
modifiers:
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
345
|
+
modifiers: {
|
|
346
|
+
type: PropType<string | string[]>;
|
|
347
|
+
default: undefined;
|
|
348
|
+
};
|
|
349
|
+
readonly: {
|
|
350
|
+
type: BooleanConstructor;
|
|
351
|
+
default: boolean;
|
|
352
|
+
};
|
|
353
|
+
disabled: {
|
|
354
|
+
type: BooleanConstructor;
|
|
355
|
+
default: boolean;
|
|
356
|
+
};
|
|
357
|
+
loading: {
|
|
358
|
+
type: BooleanConstructor;
|
|
359
|
+
default: boolean;
|
|
360
|
+
};
|
|
339
361
|
loadingLabel: {
|
|
340
362
|
type: StringConstructor;
|
|
341
363
|
default: string;
|
|
342
|
-
};
|
|
364
|
+
}; /**
|
|
365
|
+
* Label for deselect action button
|
|
366
|
+
*/
|
|
343
367
|
hintLabel: {
|
|
344
368
|
type: StringConstructor;
|
|
345
369
|
default: string;
|
|
346
370
|
};
|
|
347
|
-
invalid:
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
371
|
+
invalid: {
|
|
372
|
+
type: BooleanConstructor;
|
|
373
|
+
default: boolean;
|
|
374
|
+
};
|
|
375
|
+
invalidLabel: {
|
|
376
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
377
|
+
default: undefined;
|
|
378
|
+
};
|
|
379
|
+
valid: {
|
|
380
|
+
type: BooleanConstructor;
|
|
381
|
+
default: boolean;
|
|
382
|
+
};
|
|
383
|
+
validLabel: {
|
|
384
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
385
|
+
default: undefined;
|
|
386
|
+
};
|
|
351
387
|
tabindex: {
|
|
352
388
|
type: (StringConstructor | NumberConstructor)[];
|
|
353
389
|
default: number;
|
|
@@ -17,7 +17,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
17
17
|
}, {
|
|
18
18
|
close: () => void;
|
|
19
19
|
open: () => void;
|
|
20
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
20
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
|
+
[x: string]: (...args: any[]) => void;
|
|
22
|
+
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
21
23
|
title: StringConstructor;
|
|
22
24
|
modelValue: {
|
|
23
25
|
type: BooleanConstructor;
|
|
@@ -33,9 +35,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
33
35
|
default: boolean;
|
|
34
36
|
};
|
|
35
37
|
id: (StringConstructor | NumberConstructor)[];
|
|
36
|
-
}
|
|
37
|
-
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
38
|
-
}, {
|
|
38
|
+
}>>, {
|
|
39
39
|
modelValue: boolean;
|
|
40
40
|
transition: string;
|
|
41
41
|
keepOpen: boolean;
|
|
@@ -14,9 +14,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
14
14
|
default: import("../../constants").DropdownRole;
|
|
15
15
|
validator: (value: import("../../constants").DropdownRole) => boolean;
|
|
16
16
|
};
|
|
17
|
-
modifiers:
|
|
17
|
+
modifiers: {
|
|
18
|
+
type: globalThis.PropType<string | string[]>;
|
|
19
|
+
default: undefined;
|
|
20
|
+
};
|
|
18
21
|
placement: {
|
|
19
|
-
type: globalThis.PropType<"
|
|
22
|
+
type: globalThis.PropType<"top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
20
23
|
default: Side;
|
|
21
24
|
validator: (value: never) => boolean;
|
|
22
25
|
};
|
|
@@ -27,9 +30,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
27
30
|
};
|
|
28
31
|
transitionName: {
|
|
29
32
|
type: StringConstructor;
|
|
33
|
+
default: undefined;
|
|
30
34
|
};
|
|
31
35
|
offset: {
|
|
32
|
-
type: globalThis.PropType<string | import("@floating-ui/
|
|
36
|
+
type: globalThis.PropType<string | import("@floating-ui/core").OffsetOptions | undefined>;
|
|
33
37
|
default: number;
|
|
34
38
|
};
|
|
35
39
|
shift: {
|
|
@@ -41,11 +45,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
41
45
|
crossAxis?: boolean | undefined;
|
|
42
46
|
mainAxis?: boolean | undefined;
|
|
43
47
|
limiter?: {
|
|
44
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/
|
|
48
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
45
49
|
options?: any;
|
|
46
50
|
} | undefined;
|
|
47
51
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
48
|
-
} | import("@floating-ui/
|
|
52
|
+
} | import("@floating-ui/core").Derivable<{
|
|
49
53
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
50
54
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
51
55
|
altBoundary?: boolean | undefined;
|
|
@@ -53,7 +57,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
53
57
|
crossAxis?: boolean | undefined;
|
|
54
58
|
mainAxis?: boolean | undefined;
|
|
55
59
|
limiter?: {
|
|
56
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/
|
|
60
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
57
61
|
options?: any;
|
|
58
62
|
} | undefined;
|
|
59
63
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
@@ -69,11 +73,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
69
73
|
crossAxis?: boolean | undefined;
|
|
70
74
|
mainAxis?: boolean | undefined;
|
|
71
75
|
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
72
|
-
fallbackStrategy?: "
|
|
76
|
+
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
73
77
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
74
78
|
flipAlignment?: boolean | undefined;
|
|
75
79
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
76
|
-
} | import("@floating-ui/
|
|
80
|
+
} | import("@floating-ui/core").Derivable<{
|
|
77
81
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
78
82
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
79
83
|
altBoundary?: boolean | undefined;
|
|
@@ -81,7 +85,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
81
85
|
crossAxis?: boolean | undefined;
|
|
82
86
|
mainAxis?: boolean | undefined;
|
|
83
87
|
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
84
|
-
fallbackStrategy?: "
|
|
88
|
+
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
85
89
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
86
90
|
flipAlignment?: boolean | undefined;
|
|
87
91
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
@@ -109,7 +113,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
109
113
|
availableWidth: number;
|
|
110
114
|
availableHeight: number;
|
|
111
115
|
}) => void | Promise<void>) | undefined;
|
|
112
|
-
} | import("@floating-ui/
|
|
116
|
+
} | import("@floating-ui/core").Derivable<{
|
|
113
117
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
114
118
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
115
119
|
altBoundary?: boolean | undefined;
|
|
@@ -145,7 +149,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
145
149
|
autoAlignment?: boolean | undefined;
|
|
146
150
|
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
147
151
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
148
|
-
} | import("@floating-ui/
|
|
152
|
+
} | import("@floating-ui/core").Derivable<{
|
|
149
153
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
150
154
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
151
155
|
altBoundary?: boolean | undefined;
|
|
@@ -172,6 +176,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
172
176
|
};
|
|
173
177
|
triggerWidth: {
|
|
174
178
|
type: BooleanConstructor;
|
|
179
|
+
default: boolean;
|
|
175
180
|
};
|
|
176
181
|
id: (StringConstructor | NumberConstructor)[];
|
|
177
182
|
}, {
|
|
@@ -180,7 +185,21 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
180
185
|
hide: () => void;
|
|
181
186
|
init: (el: HTMLElement) => void;
|
|
182
187
|
customPosition: Ref<boolean>;
|
|
183
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
188
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
189
|
+
"update:modelValue": (...args: any[]) => void;
|
|
190
|
+
"before-enter": (...args: any[]) => void;
|
|
191
|
+
"after-leave": (...args: any[]) => void;
|
|
192
|
+
enter: (...args: any[]) => void;
|
|
193
|
+
"after-enter": (...args: any[]) => void;
|
|
194
|
+
"enter-cancelled": (...args: any[]) => void;
|
|
195
|
+
"before-leave": (...args: any[]) => void;
|
|
196
|
+
leave: (...args: any[]) => void;
|
|
197
|
+
"leave-cancelled": (...args: any[]) => void;
|
|
198
|
+
beforeExpand: (...args: any[]) => void;
|
|
199
|
+
beforeCollapse: (...args: any[]) => void;
|
|
200
|
+
afterExpand: (...args: any[]) => void;
|
|
201
|
+
afterCollapse: (...args: any[]) => void;
|
|
202
|
+
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
184
203
|
modelValue: {
|
|
185
204
|
type: BooleanConstructor;
|
|
186
205
|
default: undefined;
|
|
@@ -194,9 +213,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
194
213
|
default: import("../../constants").DropdownRole;
|
|
195
214
|
validator: (value: import("../../constants").DropdownRole) => boolean;
|
|
196
215
|
};
|
|
197
|
-
modifiers:
|
|
216
|
+
modifiers: {
|
|
217
|
+
type: globalThis.PropType<string | string[]>;
|
|
218
|
+
default: undefined;
|
|
219
|
+
};
|
|
198
220
|
placement: {
|
|
199
|
-
type: globalThis.PropType<"
|
|
221
|
+
type: globalThis.PropType<"top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
200
222
|
default: Side;
|
|
201
223
|
validator: (value: never) => boolean;
|
|
202
224
|
};
|
|
@@ -207,9 +229,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
207
229
|
};
|
|
208
230
|
transitionName: {
|
|
209
231
|
type: StringConstructor;
|
|
232
|
+
default: undefined;
|
|
210
233
|
};
|
|
211
234
|
offset: {
|
|
212
|
-
type: globalThis.PropType<string | import("@floating-ui/
|
|
235
|
+
type: globalThis.PropType<string | import("@floating-ui/core").OffsetOptions | undefined>;
|
|
213
236
|
default: number;
|
|
214
237
|
};
|
|
215
238
|
shift: {
|
|
@@ -221,11 +244,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
221
244
|
crossAxis?: boolean | undefined;
|
|
222
245
|
mainAxis?: boolean | undefined;
|
|
223
246
|
limiter?: {
|
|
224
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/
|
|
247
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
225
248
|
options?: any;
|
|
226
249
|
} | undefined;
|
|
227
250
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
228
|
-
} | import("@floating-ui/
|
|
251
|
+
} | import("@floating-ui/core").Derivable<{
|
|
229
252
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
230
253
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
231
254
|
altBoundary?: boolean | undefined;
|
|
@@ -233,7 +256,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
233
256
|
crossAxis?: boolean | undefined;
|
|
234
257
|
mainAxis?: boolean | undefined;
|
|
235
258
|
limiter?: {
|
|
236
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/
|
|
259
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
237
260
|
options?: any;
|
|
238
261
|
} | undefined;
|
|
239
262
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
@@ -249,11 +272,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
249
272
|
crossAxis?: boolean | undefined;
|
|
250
273
|
mainAxis?: boolean | undefined;
|
|
251
274
|
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
252
|
-
fallbackStrategy?: "
|
|
275
|
+
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
253
276
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
254
277
|
flipAlignment?: boolean | undefined;
|
|
255
278
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
256
|
-
} | import("@floating-ui/
|
|
279
|
+
} | import("@floating-ui/core").Derivable<{
|
|
257
280
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
258
281
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
259
282
|
altBoundary?: boolean | undefined;
|
|
@@ -261,7 +284,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
261
284
|
crossAxis?: boolean | undefined;
|
|
262
285
|
mainAxis?: boolean | undefined;
|
|
263
286
|
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
264
|
-
fallbackStrategy?: "
|
|
287
|
+
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
265
288
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
266
289
|
flipAlignment?: boolean | undefined;
|
|
267
290
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
@@ -289,7 +312,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
289
312
|
availableWidth: number;
|
|
290
313
|
availableHeight: number;
|
|
291
314
|
}) => void | Promise<void>) | undefined;
|
|
292
|
-
} | import("@floating-ui/
|
|
315
|
+
} | import("@floating-ui/core").Derivable<{
|
|
293
316
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
294
317
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
295
318
|
altBoundary?: boolean | undefined;
|
|
@@ -325,7 +348,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
325
348
|
autoAlignment?: boolean | undefined;
|
|
326
349
|
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
327
350
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
328
|
-
} | import("@floating-ui/
|
|
351
|
+
} | import("@floating-ui/core").Derivable<{
|
|
329
352
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
330
353
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
331
354
|
altBoundary?: boolean | undefined;
|
|
@@ -352,6 +375,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
352
375
|
};
|
|
353
376
|
triggerWidth: {
|
|
354
377
|
type: BooleanConstructor;
|
|
378
|
+
default: boolean;
|
|
355
379
|
};
|
|
356
380
|
id: (StringConstructor | NumberConstructor)[];
|
|
357
381
|
}>> & {
|
|
@@ -369,10 +393,50 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
369
393
|
onAfterExpand?: ((...args: any[]) => any) | undefined;
|
|
370
394
|
onAfterCollapse?: ((...args: any[]) => any) | undefined;
|
|
371
395
|
}, {
|
|
372
|
-
modelValue: boolean;
|
|
373
396
|
reference: HTMLElement | null;
|
|
374
|
-
|
|
375
|
-
|
|
397
|
+
size: boolean | {
|
|
398
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
399
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
400
|
+
altBoundary?: boolean | undefined;
|
|
401
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
402
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
403
|
+
apply?: ((args: {
|
|
404
|
+
x: number;
|
|
405
|
+
y: number;
|
|
406
|
+
initialPlacement: import("@floating-ui/utils").Placement;
|
|
407
|
+
placement: import("@floating-ui/utils").Placement;
|
|
408
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
409
|
+
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
410
|
+
rects: import("@floating-ui/utils").ElementRects;
|
|
411
|
+
platform: import("@floating-ui/core").Platform;
|
|
412
|
+
elements: import("@floating-ui/dom").Elements;
|
|
413
|
+
} & {
|
|
414
|
+
availableWidth: number;
|
|
415
|
+
availableHeight: number;
|
|
416
|
+
}) => void | Promise<void>) | undefined;
|
|
417
|
+
} | import("@floating-ui/core").Derivable<{
|
|
418
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
419
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
420
|
+
altBoundary?: boolean | undefined;
|
|
421
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
422
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
423
|
+
apply?: ((args: {
|
|
424
|
+
x: number;
|
|
425
|
+
y: number;
|
|
426
|
+
initialPlacement: import("@floating-ui/utils").Placement;
|
|
427
|
+
placement: import("@floating-ui/utils").Placement;
|
|
428
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
429
|
+
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
430
|
+
rects: import("@floating-ui/utils").ElementRects;
|
|
431
|
+
platform: import("@floating-ui/core").Platform;
|
|
432
|
+
elements: import("@floating-ui/dom").Elements;
|
|
433
|
+
} & {
|
|
434
|
+
availableWidth: number;
|
|
435
|
+
availableHeight: number;
|
|
436
|
+
}) => void | Promise<void>) | undefined;
|
|
437
|
+
}> | undefined;
|
|
438
|
+
modelValue: boolean;
|
|
439
|
+
modifiers: string | string[];
|
|
376
440
|
shift: boolean | {
|
|
377
441
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
378
442
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
@@ -381,11 +445,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
381
445
|
crossAxis?: boolean | undefined;
|
|
382
446
|
mainAxis?: boolean | undefined;
|
|
383
447
|
limiter?: {
|
|
384
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/
|
|
448
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
385
449
|
options?: any;
|
|
386
450
|
} | undefined;
|
|
387
451
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
388
|
-
} | import("@floating-ui/
|
|
452
|
+
} | import("@floating-ui/core").Derivable<{
|
|
389
453
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
390
454
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
391
455
|
altBoundary?: boolean | undefined;
|
|
@@ -393,7 +457,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
393
457
|
crossAxis?: boolean | undefined;
|
|
394
458
|
mainAxis?: boolean | undefined;
|
|
395
459
|
limiter?: {
|
|
396
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/
|
|
460
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
397
461
|
options?: any;
|
|
398
462
|
} | undefined;
|
|
399
463
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
@@ -407,11 +471,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
407
471
|
crossAxis?: boolean | undefined;
|
|
408
472
|
mainAxis?: boolean | undefined;
|
|
409
473
|
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
410
|
-
fallbackStrategy?: "
|
|
474
|
+
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
411
475
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
412
476
|
flipAlignment?: boolean | undefined;
|
|
413
477
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
414
|
-
} | import("@floating-ui/
|
|
478
|
+
} | import("@floating-ui/core").Derivable<{
|
|
415
479
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
416
480
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
417
481
|
altBoundary?: boolean | undefined;
|
|
@@ -419,53 +483,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
419
483
|
crossAxis?: boolean | undefined;
|
|
420
484
|
mainAxis?: boolean | undefined;
|
|
421
485
|
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
422
|
-
fallbackStrategy?: "
|
|
486
|
+
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
423
487
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
424
488
|
flipAlignment?: boolean | undefined;
|
|
425
489
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
426
490
|
}> | undefined;
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
432
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
433
|
-
apply?: ((args: {
|
|
434
|
-
x: number;
|
|
435
|
-
y: number;
|
|
436
|
-
initialPlacement: import("@floating-ui/utils").Placement;
|
|
437
|
-
placement: import("@floating-ui/utils").Placement;
|
|
438
|
-
strategy: import("@floating-ui/utils").Strategy;
|
|
439
|
-
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
440
|
-
rects: import("@floating-ui/utils").ElementRects;
|
|
441
|
-
platform: import("@floating-ui/core").Platform;
|
|
442
|
-
elements: import("@floating-ui/dom").Elements;
|
|
443
|
-
} & {
|
|
444
|
-
availableWidth: number;
|
|
445
|
-
availableHeight: number;
|
|
446
|
-
}) => void | Promise<void>) | undefined;
|
|
447
|
-
} | import("@floating-ui/dom").Derivable<{
|
|
448
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
449
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
450
|
-
altBoundary?: boolean | undefined;
|
|
451
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
452
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
453
|
-
apply?: ((args: {
|
|
454
|
-
x: number;
|
|
455
|
-
y: number;
|
|
456
|
-
initialPlacement: import("@floating-ui/utils").Placement;
|
|
457
|
-
placement: import("@floating-ui/utils").Placement;
|
|
458
|
-
strategy: import("@floating-ui/utils").Strategy;
|
|
459
|
-
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
460
|
-
rects: import("@floating-ui/utils").ElementRects;
|
|
461
|
-
platform: import("@floating-ui/core").Platform;
|
|
462
|
-
elements: import("@floating-ui/dom").Elements;
|
|
463
|
-
} & {
|
|
464
|
-
availableWidth: number;
|
|
465
|
-
availableHeight: number;
|
|
466
|
-
}) => void | Promise<void>) | undefined;
|
|
467
|
-
}> | undefined;
|
|
468
|
-
offset: string | import("@floating-ui/vue").OffsetOptions | undefined;
|
|
491
|
+
placement: "top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
492
|
+
strategy: "absolute" | "fixed";
|
|
493
|
+
transitionName: string;
|
|
494
|
+
offset: string | import("@floating-ui/core").OffsetOptions | undefined;
|
|
469
495
|
autoPlacement: boolean | {
|
|
470
496
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
471
497
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
@@ -476,7 +502,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
476
502
|
autoAlignment?: boolean | undefined;
|
|
477
503
|
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
478
504
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
479
|
-
} | import("@floating-ui/
|
|
505
|
+
} | import("@floating-ui/core").Derivable<{
|
|
480
506
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
481
507
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
482
508
|
altBoundary?: boolean | undefined;
|