@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
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
import type { Option } from '@/types/generic';
|
|
3
3
|
import type { NavItem } from '@/types/nav';
|
|
4
|
-
import { Placement, Strategy, Position, Side,
|
|
4
|
+
import { Placement, Strategy, Position, Side, ButtonType, ActionTag, StorageType } from '@/constants';
|
|
5
|
+
import type { VvIconProps } from '@/components/VvIcon';
|
|
5
6
|
export declare const LinkProps: {
|
|
6
7
|
/**
|
|
7
8
|
* The router-link/nuxt-link property, if it is defined the button is rendered as a ruouter-link or nuxt-link.
|
|
@@ -17,10 +18,7 @@ export declare const LinkProps: {
|
|
|
17
18
|
/**
|
|
18
19
|
* Anchor target
|
|
19
20
|
*/
|
|
20
|
-
target:
|
|
21
|
-
type: PropType<"_blank" | "_self" | "_parent" | "_top">;
|
|
22
|
-
validator: (value: AnchorTarget) => boolean;
|
|
23
|
-
};
|
|
21
|
+
target: StringConstructor;
|
|
24
22
|
/**
|
|
25
23
|
* Anchor rel
|
|
26
24
|
*/
|
|
@@ -33,27 +31,42 @@ export declare const ValidProps: {
|
|
|
33
31
|
/**
|
|
34
32
|
* Valid status
|
|
35
33
|
*/
|
|
36
|
-
valid:
|
|
34
|
+
valid: {
|
|
35
|
+
type: BooleanConstructor;
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
37
38
|
/**
|
|
38
39
|
* Valid label
|
|
39
40
|
*/
|
|
40
|
-
validLabel:
|
|
41
|
+
validLabel: {
|
|
42
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
43
|
+
default: undefined;
|
|
44
|
+
};
|
|
41
45
|
};
|
|
42
46
|
export declare const InvalidProps: {
|
|
43
47
|
/**
|
|
44
48
|
* Invalid status
|
|
45
49
|
*/
|
|
46
|
-
invalid:
|
|
50
|
+
invalid: {
|
|
51
|
+
type: BooleanConstructor;
|
|
52
|
+
default: boolean;
|
|
53
|
+
};
|
|
47
54
|
/**
|
|
48
55
|
* Invalid label
|
|
49
56
|
*/
|
|
50
|
-
invalidLabel:
|
|
57
|
+
invalidLabel: {
|
|
58
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
59
|
+
default: undefined;
|
|
60
|
+
};
|
|
51
61
|
};
|
|
52
62
|
export declare const LoadingProps: {
|
|
53
63
|
/**
|
|
54
64
|
* Loading status
|
|
55
65
|
*/
|
|
56
|
-
loading:
|
|
66
|
+
loading: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
57
70
|
/**
|
|
58
71
|
* Loading label
|
|
59
72
|
*/
|
|
@@ -66,49 +79,73 @@ export declare const DisabledProps: {
|
|
|
66
79
|
/**
|
|
67
80
|
* Whether the form control is disabled
|
|
68
81
|
*/
|
|
69
|
-
disabled:
|
|
82
|
+
disabled: {
|
|
83
|
+
type: BooleanConstructor;
|
|
84
|
+
default: boolean;
|
|
85
|
+
};
|
|
70
86
|
};
|
|
71
87
|
export declare const SelectedProps: {
|
|
72
88
|
/**
|
|
73
89
|
* Whether the item is selected
|
|
74
90
|
*/
|
|
75
|
-
selected:
|
|
91
|
+
selected: {
|
|
92
|
+
type: BooleanConstructor;
|
|
93
|
+
default: boolean;
|
|
94
|
+
};
|
|
76
95
|
};
|
|
77
96
|
export declare const ActiveProps: {
|
|
78
97
|
/**
|
|
79
98
|
* Whether the item is active
|
|
80
99
|
*/
|
|
81
|
-
active:
|
|
100
|
+
active: {
|
|
101
|
+
type: BooleanConstructor;
|
|
102
|
+
default: boolean;
|
|
103
|
+
};
|
|
82
104
|
};
|
|
83
105
|
export declare const CurrentProps: {
|
|
84
106
|
/**
|
|
85
107
|
* Whether the item is current
|
|
86
108
|
*/
|
|
87
|
-
current:
|
|
109
|
+
current: {
|
|
110
|
+
type: BooleanConstructor;
|
|
111
|
+
default: boolean;
|
|
112
|
+
};
|
|
88
113
|
};
|
|
89
114
|
export declare const PressedProps: {
|
|
90
115
|
/**
|
|
91
116
|
* Whether the item is pressed
|
|
92
117
|
*/
|
|
93
|
-
pressed:
|
|
118
|
+
pressed: {
|
|
119
|
+
type: BooleanConstructor;
|
|
120
|
+
default: boolean;
|
|
121
|
+
};
|
|
94
122
|
};
|
|
95
123
|
export declare const LabelProps: {
|
|
96
124
|
/**
|
|
97
125
|
* The item label
|
|
98
126
|
*/
|
|
99
|
-
label:
|
|
127
|
+
label: {
|
|
128
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
129
|
+
default: undefined;
|
|
130
|
+
};
|
|
100
131
|
};
|
|
101
132
|
export declare const ReadonlyProps: {
|
|
102
133
|
/**
|
|
103
134
|
* The value is not editable
|
|
104
135
|
*/
|
|
105
|
-
readonly:
|
|
136
|
+
readonly: {
|
|
137
|
+
type: BooleanConstructor;
|
|
138
|
+
default: boolean;
|
|
139
|
+
};
|
|
106
140
|
};
|
|
107
141
|
export declare const ModifiersProps: {
|
|
108
142
|
/**
|
|
109
143
|
* Component BEM modifiers
|
|
110
144
|
*/
|
|
111
|
-
modifiers:
|
|
145
|
+
modifiers: {
|
|
146
|
+
type: PropType<string | string[]>;
|
|
147
|
+
default: undefined;
|
|
148
|
+
};
|
|
112
149
|
};
|
|
113
150
|
export declare const HintProps: {
|
|
114
151
|
hintLabel: {
|
|
@@ -151,7 +188,7 @@ export declare const CountProps: {
|
|
|
151
188
|
* Show character limit
|
|
152
189
|
*/
|
|
153
190
|
count: {
|
|
154
|
-
type: (
|
|
191
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
155
192
|
default: boolean;
|
|
156
193
|
validator: (value: string) => boolean;
|
|
157
194
|
};
|
|
@@ -160,7 +197,10 @@ export declare const DebounceProps: {
|
|
|
160
197
|
/**
|
|
161
198
|
* Milliseconds to wait before emitting the input event
|
|
162
199
|
*/
|
|
163
|
-
debounce:
|
|
200
|
+
debounce: {
|
|
201
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
202
|
+
default: undefined;
|
|
203
|
+
};
|
|
164
204
|
};
|
|
165
205
|
export declare const IconProps: {
|
|
166
206
|
/**
|
|
@@ -168,7 +208,8 @@ export declare const IconProps: {
|
|
|
168
208
|
* @see VVIcon
|
|
169
209
|
*/
|
|
170
210
|
icon: {
|
|
171
|
-
type:
|
|
211
|
+
type: PropType<string | VvIconProps>;
|
|
212
|
+
default: undefined;
|
|
172
213
|
};
|
|
173
214
|
/**
|
|
174
215
|
* VvIcon position
|
|
@@ -193,7 +234,10 @@ export declare const FloatingLabelProps: {
|
|
|
193
234
|
/**
|
|
194
235
|
* If true the label will be floating
|
|
195
236
|
*/
|
|
196
|
-
floating:
|
|
237
|
+
floating: {
|
|
238
|
+
type: BooleanConstructor;
|
|
239
|
+
default: boolean;
|
|
240
|
+
};
|
|
197
241
|
};
|
|
198
242
|
export declare const UnselectableProps: {
|
|
199
243
|
/**
|
|
@@ -216,7 +260,7 @@ export declare const DropdownProps: {
|
|
|
216
260
|
* Dropdown placement
|
|
217
261
|
*/
|
|
218
262
|
placement: {
|
|
219
|
-
type: PropType<"
|
|
263
|
+
type: PropType<"top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
220
264
|
default: Side;
|
|
221
265
|
validator: (value: Side & Placement) => boolean;
|
|
222
266
|
};
|
|
@@ -233,6 +277,7 @@ export declare const DropdownProps: {
|
|
|
233
277
|
*/
|
|
234
278
|
transitionName: {
|
|
235
279
|
type: StringConstructor;
|
|
280
|
+
default: undefined;
|
|
236
281
|
};
|
|
237
282
|
/**
|
|
238
283
|
* Offset of the dropdown from the trigger
|
|
@@ -255,11 +300,11 @@ export declare const DropdownProps: {
|
|
|
255
300
|
crossAxis?: boolean | undefined;
|
|
256
301
|
mainAxis?: boolean | undefined;
|
|
257
302
|
limiter?: {
|
|
258
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/
|
|
303
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
259
304
|
options?: any;
|
|
260
305
|
} | undefined;
|
|
261
306
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
262
|
-
} | import("@floating-ui/
|
|
307
|
+
} | import("@floating-ui/core").Derivable<{
|
|
263
308
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
264
309
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
265
310
|
altBoundary?: boolean | undefined;
|
|
@@ -267,7 +312,7 @@ export declare const DropdownProps: {
|
|
|
267
312
|
crossAxis?: boolean | undefined;
|
|
268
313
|
mainAxis?: boolean | undefined;
|
|
269
314
|
limiter?: {
|
|
270
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/
|
|
315
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
271
316
|
options?: any;
|
|
272
317
|
} | undefined;
|
|
273
318
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
@@ -287,11 +332,11 @@ export declare const DropdownProps: {
|
|
|
287
332
|
crossAxis?: boolean | undefined;
|
|
288
333
|
mainAxis?: boolean | undefined;
|
|
289
334
|
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
290
|
-
fallbackStrategy?: "
|
|
335
|
+
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
291
336
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
292
337
|
flipAlignment?: boolean | undefined;
|
|
293
338
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
294
|
-
} | import("@floating-ui/
|
|
339
|
+
} | import("@floating-ui/core").Derivable<{
|
|
295
340
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
296
341
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
297
342
|
altBoundary?: boolean | undefined;
|
|
@@ -299,7 +344,7 @@ export declare const DropdownProps: {
|
|
|
299
344
|
crossAxis?: boolean | undefined;
|
|
300
345
|
mainAxis?: boolean | undefined;
|
|
301
346
|
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
302
|
-
fallbackStrategy?: "
|
|
347
|
+
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
303
348
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
304
349
|
flipAlignment?: boolean | undefined;
|
|
305
350
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
@@ -331,7 +376,7 @@ export declare const DropdownProps: {
|
|
|
331
376
|
availableWidth: number;
|
|
332
377
|
availableHeight: number;
|
|
333
378
|
}) => void | Promise<void>) | undefined;
|
|
334
|
-
} | import("@floating-ui/
|
|
379
|
+
} | import("@floating-ui/core").Derivable<{
|
|
335
380
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
336
381
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
337
382
|
altBoundary?: boolean | undefined;
|
|
@@ -371,7 +416,7 @@ export declare const DropdownProps: {
|
|
|
371
416
|
autoAlignment?: boolean | undefined;
|
|
372
417
|
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
373
418
|
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
374
|
-
} | import("@floating-ui/
|
|
419
|
+
} | import("@floating-ui/core").Derivable<{
|
|
375
420
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
376
421
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
377
422
|
altBoundary?: boolean | undefined;
|
|
@@ -411,6 +456,7 @@ export declare const DropdownProps: {
|
|
|
411
456
|
*/
|
|
412
457
|
triggerWidth: {
|
|
413
458
|
type: BooleanConstructor;
|
|
459
|
+
default: boolean;
|
|
414
460
|
};
|
|
415
461
|
};
|
|
416
462
|
export declare const IdNameProps: {
|
|
@@ -434,7 +480,10 @@ export declare const AutofocusProps: {
|
|
|
434
480
|
* Global attribute autofocus
|
|
435
481
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autofocus
|
|
436
482
|
*/
|
|
437
|
-
autofocus:
|
|
483
|
+
autofocus: {
|
|
484
|
+
type: BooleanConstructor;
|
|
485
|
+
default: boolean;
|
|
486
|
+
};
|
|
438
487
|
};
|
|
439
488
|
export declare const AutocompleteProps: {
|
|
440
489
|
/**
|
|
@@ -453,42 +502,61 @@ export declare const InputTextareaProps: {
|
|
|
453
502
|
* Available for input types: text, search, url, tel, email, password
|
|
454
503
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#minlength
|
|
455
504
|
*/
|
|
456
|
-
minlength:
|
|
505
|
+
minlength: {
|
|
506
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
507
|
+
default: undefined;
|
|
508
|
+
};
|
|
457
509
|
/**
|
|
458
510
|
* Input / Textarea maxlength
|
|
459
511
|
* Maximum length (number of characters) of value
|
|
460
512
|
* Available for input types: text, search, url, tel, email, password
|
|
461
513
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#maxlength
|
|
462
514
|
*/
|
|
463
|
-
maxlength:
|
|
515
|
+
maxlength: {
|
|
516
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
517
|
+
default: undefined;
|
|
518
|
+
};
|
|
464
519
|
/**
|
|
465
520
|
* Input / Textarea placeholder
|
|
466
521
|
* Text that appears in the form control when it has no value set
|
|
467
522
|
* Available for input types: text, search, url, tel, email, password, number
|
|
468
523
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#placeholder
|
|
469
524
|
*/
|
|
470
|
-
placeholder:
|
|
525
|
+
placeholder: {
|
|
526
|
+
type: StringConstructor;
|
|
527
|
+
default: undefined;
|
|
528
|
+
};
|
|
471
529
|
/**
|
|
472
530
|
* Input / Textarea required
|
|
473
531
|
* A value is required or must be check for the form to be submittable
|
|
474
532
|
* Available for all input types except color
|
|
475
533
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#required
|
|
476
534
|
*/
|
|
477
|
-
required:
|
|
535
|
+
required: {
|
|
536
|
+
type: BooleanConstructor;
|
|
537
|
+
default: boolean;
|
|
538
|
+
};
|
|
478
539
|
/**
|
|
479
540
|
* The item label
|
|
480
541
|
*/
|
|
481
|
-
label:
|
|
542
|
+
label: {
|
|
543
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
544
|
+
default: undefined;
|
|
545
|
+
};
|
|
482
546
|
/**
|
|
483
547
|
* If true the label will be floating
|
|
484
548
|
*/
|
|
485
|
-
floating:
|
|
549
|
+
floating: {
|
|
550
|
+
type: BooleanConstructor;
|
|
551
|
+
default: boolean;
|
|
552
|
+
};
|
|
486
553
|
/**
|
|
487
554
|
* VvIcon name or props
|
|
488
555
|
* @see VVIcon
|
|
489
556
|
*/
|
|
490
557
|
icon: {
|
|
491
|
-
type:
|
|
558
|
+
type: PropType<string | VvIconProps>;
|
|
559
|
+
default: undefined;
|
|
492
560
|
};
|
|
493
561
|
/**
|
|
494
562
|
* VvIcon position
|
|
@@ -501,23 +569,32 @@ export declare const InputTextareaProps: {
|
|
|
501
569
|
/**
|
|
502
570
|
* Milliseconds to wait before emitting the input event
|
|
503
571
|
*/
|
|
504
|
-
debounce:
|
|
572
|
+
debounce: {
|
|
573
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
574
|
+
default: undefined;
|
|
575
|
+
};
|
|
505
576
|
/**
|
|
506
577
|
* Show character limit
|
|
507
578
|
*/
|
|
508
579
|
count: {
|
|
509
|
-
type: (
|
|
580
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
510
581
|
default: boolean;
|
|
511
582
|
validator: (value: string) => boolean;
|
|
512
583
|
};
|
|
513
584
|
/**
|
|
514
585
|
* Component BEM modifiers
|
|
515
586
|
*/
|
|
516
|
-
modifiers:
|
|
587
|
+
modifiers: {
|
|
588
|
+
type: PropType<string | string[]>;
|
|
589
|
+
default: undefined;
|
|
590
|
+
};
|
|
517
591
|
/**
|
|
518
592
|
* Loading status
|
|
519
593
|
*/
|
|
520
|
-
loading:
|
|
594
|
+
loading: {
|
|
595
|
+
type: BooleanConstructor;
|
|
596
|
+
default: boolean;
|
|
597
|
+
};
|
|
521
598
|
/**
|
|
522
599
|
* Loading label
|
|
523
600
|
*/
|
|
@@ -532,27 +609,45 @@ export declare const InputTextareaProps: {
|
|
|
532
609
|
/**
|
|
533
610
|
* Invalid status
|
|
534
611
|
*/
|
|
535
|
-
invalid:
|
|
612
|
+
invalid: {
|
|
613
|
+
type: BooleanConstructor;
|
|
614
|
+
default: boolean;
|
|
615
|
+
};
|
|
536
616
|
/**
|
|
537
617
|
* Invalid label
|
|
538
618
|
*/
|
|
539
|
-
invalidLabel:
|
|
619
|
+
invalidLabel: {
|
|
620
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
621
|
+
default: undefined;
|
|
622
|
+
};
|
|
540
623
|
/**
|
|
541
624
|
* Valid status
|
|
542
625
|
*/
|
|
543
|
-
valid:
|
|
626
|
+
valid: {
|
|
627
|
+
type: BooleanConstructor;
|
|
628
|
+
default: boolean;
|
|
629
|
+
};
|
|
544
630
|
/**
|
|
545
631
|
* Valid label
|
|
546
632
|
*/
|
|
547
|
-
validLabel:
|
|
633
|
+
validLabel: {
|
|
634
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
635
|
+
default: undefined;
|
|
636
|
+
};
|
|
548
637
|
/**
|
|
549
638
|
* The value is not editable
|
|
550
639
|
*/
|
|
551
|
-
readonly:
|
|
640
|
+
readonly: {
|
|
641
|
+
type: BooleanConstructor;
|
|
642
|
+
default: boolean;
|
|
643
|
+
};
|
|
552
644
|
/**
|
|
553
645
|
* Whether the form control is disabled
|
|
554
646
|
*/
|
|
555
|
-
disabled:
|
|
647
|
+
disabled: {
|
|
648
|
+
type: BooleanConstructor;
|
|
649
|
+
default: boolean;
|
|
650
|
+
};
|
|
556
651
|
/**
|
|
557
652
|
* Global attribute tabindex
|
|
558
653
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex
|
|
@@ -573,7 +668,10 @@ export declare const InputTextareaProps: {
|
|
|
573
668
|
* Global attribute autofocus
|
|
574
669
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autofocus
|
|
575
670
|
*/
|
|
576
|
-
autofocus:
|
|
671
|
+
autofocus: {
|
|
672
|
+
type: BooleanConstructor;
|
|
673
|
+
default: boolean;
|
|
674
|
+
};
|
|
577
675
|
/**
|
|
578
676
|
* Input / Textarea name
|
|
579
677
|
* Name of the form control. Submitted with the form as part of a name/value pair
|
|
@@ -594,15 +692,24 @@ export declare const CheckboxRadioProps: {
|
|
|
594
692
|
* Input value
|
|
595
693
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#value
|
|
596
694
|
*/
|
|
597
|
-
value:
|
|
695
|
+
value: {
|
|
696
|
+
type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
|
|
697
|
+
default: undefined;
|
|
698
|
+
};
|
|
598
699
|
/**
|
|
599
700
|
* Input value
|
|
600
701
|
*/
|
|
601
|
-
modelValue:
|
|
702
|
+
modelValue: {
|
|
703
|
+
type: (ObjectConstructor | BooleanConstructor | StringConstructor | NumberConstructor)[];
|
|
704
|
+
default: undefined;
|
|
705
|
+
};
|
|
602
706
|
/**
|
|
603
707
|
* Loading status
|
|
604
708
|
*/
|
|
605
|
-
loading:
|
|
709
|
+
loading: {
|
|
710
|
+
type: BooleanConstructor;
|
|
711
|
+
default: boolean;
|
|
712
|
+
};
|
|
606
713
|
/**
|
|
607
714
|
* Loading label
|
|
608
715
|
*/
|
|
@@ -613,19 +720,31 @@ export declare const CheckboxRadioProps: {
|
|
|
613
720
|
/**
|
|
614
721
|
* The item label
|
|
615
722
|
*/
|
|
616
|
-
label:
|
|
723
|
+
label: {
|
|
724
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
725
|
+
default: undefined;
|
|
726
|
+
};
|
|
617
727
|
/**
|
|
618
728
|
* Component BEM modifiers
|
|
619
729
|
*/
|
|
620
|
-
modifiers:
|
|
730
|
+
modifiers: {
|
|
731
|
+
type: PropType<string | string[]>;
|
|
732
|
+
default: undefined;
|
|
733
|
+
};
|
|
621
734
|
/**
|
|
622
735
|
* The value is not editable
|
|
623
736
|
*/
|
|
624
|
-
readonly:
|
|
737
|
+
readonly: {
|
|
738
|
+
type: BooleanConstructor;
|
|
739
|
+
default: boolean;
|
|
740
|
+
};
|
|
625
741
|
/**
|
|
626
742
|
* Whether the form control is disabled
|
|
627
743
|
*/
|
|
628
|
-
disabled:
|
|
744
|
+
disabled: {
|
|
745
|
+
type: BooleanConstructor;
|
|
746
|
+
default: boolean;
|
|
747
|
+
};
|
|
629
748
|
hintLabel: {
|
|
630
749
|
type: StringConstructor;
|
|
631
750
|
default: string;
|
|
@@ -633,19 +752,31 @@ export declare const CheckboxRadioProps: {
|
|
|
633
752
|
/**
|
|
634
753
|
* Invalid status
|
|
635
754
|
*/
|
|
636
|
-
invalid:
|
|
755
|
+
invalid: {
|
|
756
|
+
type: BooleanConstructor;
|
|
757
|
+
default: boolean;
|
|
758
|
+
};
|
|
637
759
|
/**
|
|
638
760
|
* Invalid label
|
|
639
761
|
*/
|
|
640
|
-
invalidLabel:
|
|
762
|
+
invalidLabel: {
|
|
763
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
764
|
+
default: undefined;
|
|
765
|
+
};
|
|
641
766
|
/**
|
|
642
767
|
* Valid status
|
|
643
768
|
*/
|
|
644
|
-
valid:
|
|
769
|
+
valid: {
|
|
770
|
+
type: BooleanConstructor;
|
|
771
|
+
default: boolean;
|
|
772
|
+
};
|
|
645
773
|
/**
|
|
646
774
|
* Valid label
|
|
647
775
|
*/
|
|
648
|
-
validLabel:
|
|
776
|
+
validLabel: {
|
|
777
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
778
|
+
default: undefined;
|
|
779
|
+
};
|
|
649
780
|
/**
|
|
650
781
|
* Global attribute tabindex
|
|
651
782
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex
|
|
@@ -673,7 +804,10 @@ export declare const CheckboxRadioGroupProps: {
|
|
|
673
804
|
/**
|
|
674
805
|
* Input value
|
|
675
806
|
*/
|
|
676
|
-
modelValue:
|
|
807
|
+
modelValue: {
|
|
808
|
+
type: (SymbolConstructor | ArrayConstructor | BooleanConstructor | StringConstructor | NumberConstructor)[];
|
|
809
|
+
default: undefined;
|
|
810
|
+
};
|
|
677
811
|
/**
|
|
678
812
|
* Input name
|
|
679
813
|
*/
|
|
@@ -684,11 +818,17 @@ export declare const CheckboxRadioGroupProps: {
|
|
|
684
818
|
/**
|
|
685
819
|
* If true, the group will be displayed in a vertical column
|
|
686
820
|
*/
|
|
687
|
-
vertical:
|
|
821
|
+
vertical: {
|
|
822
|
+
type: BooleanConstructor;
|
|
823
|
+
default: boolean;
|
|
824
|
+
};
|
|
688
825
|
/**
|
|
689
826
|
* Loading status
|
|
690
827
|
*/
|
|
691
|
-
loading:
|
|
828
|
+
loading: {
|
|
829
|
+
type: BooleanConstructor;
|
|
830
|
+
default: boolean;
|
|
831
|
+
};
|
|
692
832
|
/**
|
|
693
833
|
* Loading label
|
|
694
834
|
*/
|
|
@@ -699,19 +839,31 @@ export declare const CheckboxRadioGroupProps: {
|
|
|
699
839
|
/**
|
|
700
840
|
* The item label
|
|
701
841
|
*/
|
|
702
|
-
label:
|
|
842
|
+
label: {
|
|
843
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
844
|
+
default: undefined;
|
|
845
|
+
};
|
|
703
846
|
/**
|
|
704
847
|
* Component BEM modifiers
|
|
705
848
|
*/
|
|
706
|
-
modifiers:
|
|
849
|
+
modifiers: {
|
|
850
|
+
type: PropType<string | string[]>;
|
|
851
|
+
default: undefined;
|
|
852
|
+
};
|
|
707
853
|
/**
|
|
708
854
|
* The value is not editable
|
|
709
855
|
*/
|
|
710
|
-
readonly:
|
|
856
|
+
readonly: {
|
|
857
|
+
type: BooleanConstructor;
|
|
858
|
+
default: boolean;
|
|
859
|
+
};
|
|
711
860
|
/**
|
|
712
861
|
* Whether the form control is disabled
|
|
713
862
|
*/
|
|
714
|
-
disabled:
|
|
863
|
+
disabled: {
|
|
864
|
+
type: BooleanConstructor;
|
|
865
|
+
default: boolean;
|
|
866
|
+
};
|
|
715
867
|
hintLabel: {
|
|
716
868
|
type: StringConstructor;
|
|
717
869
|
default: string;
|
|
@@ -747,19 +899,31 @@ export declare const CheckboxRadioGroupProps: {
|
|
|
747
899
|
/**
|
|
748
900
|
* Invalid status
|
|
749
901
|
*/
|
|
750
|
-
invalid:
|
|
902
|
+
invalid: {
|
|
903
|
+
type: BooleanConstructor;
|
|
904
|
+
default: boolean;
|
|
905
|
+
};
|
|
751
906
|
/**
|
|
752
907
|
* Invalid label
|
|
753
908
|
*/
|
|
754
|
-
invalidLabel:
|
|
909
|
+
invalidLabel: {
|
|
910
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
911
|
+
default: undefined;
|
|
912
|
+
};
|
|
755
913
|
/**
|
|
756
914
|
* Valid status
|
|
757
915
|
*/
|
|
758
|
-
valid:
|
|
916
|
+
valid: {
|
|
917
|
+
type: BooleanConstructor;
|
|
918
|
+
default: boolean;
|
|
919
|
+
};
|
|
759
920
|
/**
|
|
760
921
|
* Valid label
|
|
761
922
|
*/
|
|
762
|
-
validLabel:
|
|
923
|
+
validLabel: {
|
|
924
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
925
|
+
default: undefined;
|
|
926
|
+
};
|
|
763
927
|
};
|
|
764
928
|
export declare const ActionProps: {
|
|
765
929
|
/**
|
|
@@ -777,6 +941,13 @@ export declare const ActionProps: {
|
|
|
777
941
|
type: StringConstructor;
|
|
778
942
|
default: undefined;
|
|
779
943
|
};
|
|
944
|
+
/**
|
|
945
|
+
* Default tag for the action
|
|
946
|
+
*/
|
|
947
|
+
defaultTag: {
|
|
948
|
+
type: StringConstructor;
|
|
949
|
+
default: ActionTag;
|
|
950
|
+
};
|
|
780
951
|
/**
|
|
781
952
|
* The router-link/nuxt-link property, if it is defined the button is rendered as a ruouter-link or nuxt-link.
|
|
782
953
|
* @see Documentation of [router-link](https://router.vuejs.org/api/#router-link) and [nuxt-link](https://nuxtjs.org/api/components-nuxt-link/)
|
|
@@ -791,10 +962,7 @@ export declare const ActionProps: {
|
|
|
791
962
|
/**
|
|
792
963
|
* Anchor target
|
|
793
964
|
*/
|
|
794
|
-
target:
|
|
795
|
-
type: PropType<"_blank" | "_self" | "_parent" | "_top">;
|
|
796
|
-
validator: (value: AnchorTarget) => boolean;
|
|
797
|
-
};
|
|
965
|
+
target: StringConstructor;
|
|
798
966
|
/**
|
|
799
967
|
* Anchor rel
|
|
800
968
|
*/
|
|
@@ -805,23 +973,38 @@ export declare const ActionProps: {
|
|
|
805
973
|
/**
|
|
806
974
|
* Whether the item is current
|
|
807
975
|
*/
|
|
808
|
-
current:
|
|
976
|
+
current: {
|
|
977
|
+
type: BooleanConstructor;
|
|
978
|
+
default: boolean;
|
|
979
|
+
};
|
|
809
980
|
/**
|
|
810
981
|
* Whether the item is active
|
|
811
982
|
*/
|
|
812
|
-
active:
|
|
983
|
+
active: {
|
|
984
|
+
type: BooleanConstructor;
|
|
985
|
+
default: boolean;
|
|
986
|
+
};
|
|
813
987
|
/**
|
|
814
988
|
* Whether the item is pressed
|
|
815
989
|
*/
|
|
816
|
-
pressed:
|
|
990
|
+
pressed: {
|
|
991
|
+
type: BooleanConstructor;
|
|
992
|
+
default: boolean;
|
|
993
|
+
};
|
|
817
994
|
/**
|
|
818
995
|
* The item label
|
|
819
996
|
*/
|
|
820
|
-
label:
|
|
997
|
+
label: {
|
|
998
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
999
|
+
default: undefined;
|
|
1000
|
+
};
|
|
821
1001
|
/**
|
|
822
1002
|
* Whether the form control is disabled
|
|
823
1003
|
*/
|
|
824
|
-
disabled:
|
|
1004
|
+
disabled: {
|
|
1005
|
+
type: BooleanConstructor;
|
|
1006
|
+
default: boolean;
|
|
1007
|
+
};
|
|
825
1008
|
};
|
|
826
1009
|
export declare const NavProps: {
|
|
827
1010
|
items: {
|
|
@@ -829,3 +1012,11 @@ export declare const NavProps: {
|
|
|
829
1012
|
default: () => never[];
|
|
830
1013
|
};
|
|
831
1014
|
};
|
|
1015
|
+
export declare const StorageProps: {
|
|
1016
|
+
storageType: {
|
|
1017
|
+
type: PropType<"local" | "session">;
|
|
1018
|
+
default: StorageType;
|
|
1019
|
+
validator: (value: StorageType) => boolean;
|
|
1020
|
+
};
|
|
1021
|
+
storageKey: StringConstructor;
|
|
1022
|
+
};
|