@indielayer/ui 1.18.1 → 2.1.0
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/docs/App.vue +19 -4
- package/docs/assets/css/hljs.css +0 -1
- package/docs/assets/css/tailwind.css +40 -9
- package/docs/components/Cookies.vue +3 -1
- package/docs/components/common/CodePreview.vue +1 -1
- package/docs/components/common/CodeSnippet.vue +30 -18
- package/docs/components/common/DocsCopyPage.vue +200 -0
- package/docs/components/common/DocsHero.vue +3 -3
- package/docs/components/common/DocumentPage.vue +105 -50
- package/docs/components/common/ExampleBlocks.vue +147 -8
- package/docs/components/menu/DocsMenu.vue +3 -1
- package/docs/components/toolbar/PreToolbar.vue +1 -1
- package/docs/components/toolbar/Toolbar.vue +1 -1
- package/docs/components/toolbar/ToolbarColorToggle.vue +29 -18
- package/docs/components/toolbar/ToolbarSearch.vue +7 -7
- package/docs/composables/useDocMeta.ts +63 -4
- package/docs/icons.ts +3 -0
- package/docs/main.ts +26 -22
- package/docs/pages/colors.vue +11 -19
- package/docs/pages/component/accordion/index.vue +2 -2
- package/docs/pages/component/alert/index.vue +2 -2
- package/docs/pages/component/avatar/index.vue +4 -4
- package/docs/pages/component/badge/index.vue +2 -2
- package/docs/pages/component/breadcrumbs/index.vue +2 -2
- package/docs/pages/component/button/button-group.vue +3 -3
- package/docs/pages/component/button/index.vue +14 -7
- package/docs/pages/component/button/tooltip.vue +10 -0
- package/docs/pages/component/button/variants.vue +1 -1
- package/docs/pages/component/card/index.vue +2 -2
- package/docs/pages/component/carousel/index.vue +2 -2
- package/docs/pages/component/checkbox/index.vue +5 -5
- package/docs/pages/component/container/index.vue +2 -2
- package/docs/pages/component/datepicker/index.vue +2 -2
- package/docs/pages/component/divider/index.vue +4 -4
- package/docs/pages/component/drawer/index.vue +3 -3
- package/docs/pages/component/empty/actions.vue +11 -0
- package/docs/pages/component/empty/bordered.vue +7 -0
- package/docs/pages/component/empty/index.vue +43 -0
- package/docs/pages/component/empty/usage.vue +6 -0
- package/docs/pages/component/form/index.vue +2 -2
- package/docs/pages/component/form/usage.vue +36 -0
- package/docs/pages/component/formGroup/index.vue +3 -3
- package/docs/pages/component/icon/formats.vue +65 -0
- package/docs/pages/component/icon/index.vue +11 -4
- package/docs/pages/component/icon/usage.vue +52 -4
- package/docs/pages/component/image/index.vue +16 -2
- package/docs/pages/component/image/sizing.vue +42 -0
- package/docs/pages/component/image/states.vue +45 -0
- package/docs/pages/component/image/usage.vue +9 -6
- package/docs/pages/component/infiniteLoader/composable.vue +7 -5
- package/docs/pages/component/infiniteLoader/index.vue +3 -3
- package/docs/pages/component/infiniteLoader/usage.vue +7 -5
- package/docs/pages/component/input/index.vue +6 -6
- package/docs/pages/component/input/variants.vue +11 -0
- package/docs/pages/component/inputGroup/index.vue +43 -0
- package/docs/pages/component/inputGroup/mixed.vue +18 -0
- package/docs/pages/component/inputGroup/usage.vue +20 -0
- package/docs/pages/component/inputGroup/validation.vue +38 -0
- package/docs/pages/component/link/index.vue +2 -2
- package/docs/pages/component/loader/index.vue +2 -2
- package/docs/pages/component/menu/index.vue +2 -2
- package/docs/pages/component/modal/index.vue +3 -3
- package/docs/pages/component/notifications/index.vue +2 -2
- package/docs/pages/component/pagination/index.vue +2 -2
- package/docs/pages/component/popover/index.vue +2 -2
- package/docs/pages/component/popover/usage.vue +14 -0
- package/docs/pages/component/progress/index.vue +3 -3
- package/docs/pages/component/qrCode/index.vue +2 -2
- package/docs/pages/component/radio/index.vue +26 -12
- package/docs/pages/component/radio/payment-method.vue +28 -0
- package/docs/pages/component/radio/radio-button-form-group.vue +28 -0
- package/docs/pages/component/radio/radio-button.vue +26 -0
- package/docs/pages/component/scroll/index.vue +3 -3
- package/docs/pages/component/select/index.vue +5 -5
- package/docs/pages/component/skeleton/index.vue +2 -2
- package/docs/pages/component/skeleton/usage.vue +1 -1
- package/docs/pages/component/slider/index.vue +2 -2
- package/docs/pages/component/spacer/index.vue +2 -2
- package/docs/pages/component/spinner/index.vue +3 -3
- package/docs/pages/component/stepper/index.vue +9 -2
- package/docs/pages/component/stepper/usage.vue +56 -12
- package/docs/pages/component/stepper/wizard.vue +126 -0
- package/docs/pages/component/table/index.vue +5 -5
- package/docs/pages/component/table/states.vue +5 -3
- package/docs/pages/component/table/virtual.vue +1 -1
- package/docs/pages/component/tabs/index.vue +2 -2
- package/docs/pages/component/tabs/usage.vue +26 -0
- package/docs/pages/component/tag/index.vue +2 -2
- package/docs/pages/component/textarea/index.vue +4 -4
- package/docs/pages/component/toggle/index.vue +4 -4
- package/docs/pages/component/tooltip/content.vue +11 -0
- package/docs/pages/component/tooltip/index.vue +30 -2
- package/docs/pages/component/tooltip/placement.vue +18 -0
- package/docs/pages/component/tooltip/states.vue +5 -0
- package/docs/pages/component/tooltip/toggle-tip.vue +6 -0
- package/docs/pages/component/tooltip/usage.vue +8 -9
- package/docs/pages/component/upload/index.vue +2 -2
- package/docs/pages/component/upload/usage.vue +1 -0
- package/docs/pages/component/virtualGrid/index.vue +2 -2
- package/docs/pages/component/virtualGrid/usage.vue +5 -2
- package/docs/pages/component/virtualList/dynamicHeight.vue +8 -8
- package/docs/pages/component/virtualList/index.vue +3 -3
- package/docs/pages/component/virtualList/usage.vue +5 -2
- package/docs/pages/icons.vue +2 -2
- package/docs/pages/index.vue +30 -33
- package/docs/router/index.ts +39 -44
- package/docs/search/components.json +1 -1
- package/docs/search/index.json +1 -1
- package/docs/utils/shikiHighlighter.ts +22 -0
- package/exports/nuxt.mjs +1 -1
- package/exports/nuxt.plugin.js +1 -0
- package/exports/tailwind.css +74 -0
- package/lib/_virtual/_plugin-vue_export-helper.js +7 -8
- package/lib/_virtual/_rolldown/runtime.js +17 -0
- package/lib/common/buttonGroupRadius.d.ts +3 -0
- package/lib/common/buttonGroupRadius.js +6 -0
- package/lib/common/colors.js +370 -19
- package/lib/common/icons.d.ts +1 -0
- package/lib/common/icons.js +4 -22
- package/lib/common/inputGroupRadius.d.ts +2 -0
- package/lib/common/inputGroupRadius.js +6 -0
- package/lib/common/props.d.ts +27 -0
- package/lib/common/props.js +19 -0
- package/lib/common/utils.js +17 -24
- package/lib/componentDefaults.d.ts +18 -0
- package/lib/components/accordion/Accordion.js +5 -0
- package/lib/components/accordion/Accordion.vue.d.ts +45 -13
- package/lib/components/accordion/Accordion.vue_vue_type_script_setup_true_lang.js +49 -0
- package/lib/components/accordion/AccordionItem.js +5 -0
- package/lib/components/accordion/AccordionItem.vue.d.ts +36 -10
- package/lib/components/accordion/AccordionItem.vue_vue_type_script_setup_true_lang.js +163 -0
- package/lib/components/accordion/theme/Accordion.base.theme.js +4 -8
- package/lib/components/accordion/theme/Accordion.carbon.theme.js +4 -4
- package/lib/components/accordion/theme/AccordionItem.base.theme.js +14 -16
- package/lib/components/accordion/theme/AccordionItem.carbon.theme.js +4 -4
- package/lib/components/alert/Alert.js +6 -0
- package/lib/components/alert/Alert.vue.d.ts +39 -22
- package/lib/components/alert/Alert.vue_vue_type_script_setup_true_lang.js +68 -0
- package/lib/components/alert/Alert.vue_vue_type_style_index_0_lang.module.js +6 -0
- package/lib/components/alert/theme/Alert.base.theme.js +38 -40
- package/lib/components/alert/theme/Alert.carbon.theme.js +38 -40
- package/lib/components/avatar/Avatar.js +6 -0
- package/lib/components/avatar/Avatar.vue.d.ts +51 -17
- package/lib/components/avatar/Avatar.vue_vue_type_script_setup_true_lang.js +77 -0
- package/lib/components/avatar/Avatar.vue_vue_type_style_index_0_lang.module.js +3 -0
- package/lib/components/avatar/theme/Avatar.base.theme.js +17 -21
- package/lib/components/avatar/theme/Avatar.carbon.theme.js +4 -4
- package/lib/components/badge/Badge.js +5 -0
- package/lib/components/badge/Badge.vue.d.ts +60 -17
- package/lib/components/badge/Badge.vue_vue_type_script_setup_true_lang.js +93 -0
- package/lib/components/badge/theme/Badge.base.theme.js +9 -11
- package/lib/components/badge/theme/Badge.carbon.theme.js +4 -4
- package/lib/components/breadcrumbs/Breadcrumbs.js +5 -0
- package/lib/components/breadcrumbs/Breadcrumbs.vue.d.ts +36 -14
- package/lib/components/breadcrumbs/Breadcrumbs.vue_vue_type_script_setup_true_lang.js +70 -0
- package/lib/components/breadcrumbs/theme/Breadcrumbs.base.theme.js +8 -10
- package/lib/components/breadcrumbs/theme/Breadcrumbs.carbon.theme.js +7 -9
- package/lib/components/button/Button.js +6 -0
- package/lib/components/button/Button.vue.d.ts +161 -56
- package/lib/components/button/Button.vue_vue_type_script_setup_true_lang.js +261 -0
- package/lib/components/button/Button.vue_vue_type_style_index_0_scoped_486cb9c0_lang.module.js +6 -0
- package/lib/components/button/ButtonGroup.js +5 -0
- package/lib/components/button/ButtonGroup.vue.d.ts +75 -30
- package/lib/components/button/ButtonGroup.vue_vue_type_script_setup_true_lang.js +56 -0
- package/lib/components/button/theme/Button.base.theme.js +140 -140
- package/lib/components/button/theme/Button.carbon.theme.js +137 -137
- package/lib/components/button/theme/ButtonGroup.base.theme.js +4 -8
- package/lib/components/button/theme/ButtonGroup.carbon.theme.js +4 -8
- package/lib/components/card/Card.js +5 -0
- package/lib/components/card/Card.vue.d.ts +6 -4
- package/lib/components/card/Card.vue_vue_type_script_setup_true_lang.js +28 -0
- package/lib/components/card/theme/Card.base.theme.js +4 -8
- package/lib/components/card/theme/Card.carbon.theme.js +4 -4
- package/lib/components/carousel/Carousel.js +5 -0
- package/lib/components/carousel/Carousel.vue.d.ts +24 -7
- package/lib/components/carousel/Carousel.vue_vue_type_script_setup_true_lang.js +109 -0
- package/lib/components/carousel/CarouselSlide.js +6 -0
- package/lib/components/carousel/CarouselSlide.vue.d.ts +3 -0
- package/lib/components/carousel/CarouselSlide.vue_vue_type_script_setup_true_lang.js +28 -0
- package/lib/components/carousel/CarouselSlide.vue_vue_type_style_index_0_scoped_4f559831_lang.module.js +4 -0
- package/lib/components/carousel/theme/Carousel.base.theme.js +14 -16
- package/lib/components/carousel/theme/Carousel.carbon.theme.js +4 -4
- package/lib/components/carousel/theme/CarouselSlide.base.theme.js +4 -8
- package/lib/components/carousel/theme/CarouselSlide.carbon.theme.js +4 -4
- package/lib/components/checkbox/Checkbox.js +6 -0
- package/lib/components/checkbox/Checkbox.vue.d.ts +201 -49
- package/lib/components/checkbox/Checkbox.vue_vue_type_script_setup_true_lang.js +146 -0
- package/lib/components/checkbox/Checkbox.vue_vue_type_style_index_0_lang.module.js +4 -0
- package/lib/components/checkbox/theme/Checkbox.base.theme.js +58 -58
- package/lib/components/checkbox/theme/Checkbox.carbon.theme.js +58 -58
- package/lib/components/container/Container.js +5 -0
- package/lib/components/container/Container.vue.d.ts +6 -0
- package/lib/components/container/Container.vue_vue_type_script_setup_true_lang.js +31 -0
- package/lib/components/container/theme/Container.base.theme.js +7 -11
- package/lib/components/container/theme/Container.carbon.theme.js +4 -4
- package/lib/components/datepicker/Datepicker.js +6 -0
- package/lib/components/datepicker/Datepicker.vue.d.ts +471 -41
- package/lib/components/datepicker/Datepicker.vue_vue_type_script_setup_true_lang.js +779 -0
- package/lib/components/datepicker/theme/Datepicker.base.theme.js +26 -61
- package/lib/components/datepicker/theme/Datepicker.carbon.theme.js +4 -4
- package/lib/components/divider/Divider.js +5 -0
- package/lib/components/divider/Divider.vue.d.ts +16 -9
- package/lib/components/divider/Divider.vue_vue_type_script_setup_true_lang.js +47 -0
- package/lib/components/divider/theme/Divider.base.theme.js +8 -10
- package/lib/components/divider/theme/Divider.carbon.theme.js +4 -4
- package/lib/components/drawer/Drawer.js +5 -0
- package/lib/components/drawer/Drawer.vue.d.ts +39 -6
- package/lib/components/drawer/Drawer.vue_vue_type_script_setup_true_lang.js +172 -0
- package/lib/components/drawer/theme/Drawer.base.theme.js +7 -9
- package/lib/components/drawer/theme/Drawer.carbon.theme.js +4 -4
- package/lib/components/empty/Empty.js +5 -0
- package/lib/components/empty/Empty.vue.d.ts +86 -0
- package/lib/components/empty/Empty.vue_vue_type_script_setup_true_lang.js +80 -0
- package/lib/components/empty/index.d.ts +2 -0
- package/lib/components/empty/theme/Empty.base.theme.d.ts +3 -0
- package/lib/components/empty/theme/Empty.base.theme.js +20 -0
- package/lib/components/empty/theme/Empty.carbon.theme.d.ts +3 -0
- package/lib/components/empty/theme/Empty.carbon.theme.js +5 -0
- package/lib/components/form/Form.js +5 -0
- package/lib/components/form/Form.vue.d.ts +48 -9
- package/lib/components/form/Form.vue_vue_type_script_setup_true_lang.js +124 -0
- package/lib/components/form/theme/Form.base.theme.js +10 -12
- package/lib/components/form/theme/Form.carbon.theme.js +10 -12
- package/lib/components/formGroup/FormGroup.js +5 -0
- package/lib/components/formGroup/FormGroup.vue.d.ts +180 -41
- package/lib/components/formGroup/FormGroup.vue_vue_type_script_setup_true_lang.js +97 -0
- package/lib/components/formGroup/theme/FormGroup.base.theme.js +7 -11
- package/lib/components/formGroup/theme/FormGroup.carbon.theme.js +7 -11
- package/lib/components/icon/Icon.js +5 -0
- package/lib/components/icon/Icon.vue.d.ts +12 -4
- package/lib/components/icon/Icon.vue_vue_type_script_setup_true_lang.js +88 -0
- package/lib/components/icon/theme/Icon.base.theme.js +4 -11
- package/lib/components/icon/theme/Icon.carbon.theme.js +4 -11
- package/lib/components/image/Image.js +5 -0
- package/lib/components/image/Image.vue.d.ts +12 -3
- package/lib/components/image/Image.vue_vue_type_script_setup_true_lang.js +29 -0
- package/lib/components/image/theme/Image.base.theme.js +4 -8
- package/lib/components/image/theme/Image.carbon.theme.js +4 -4
- package/lib/components/index.d.ts +3 -0
- package/lib/components/index.js +128 -120
- package/lib/components/input/Input.js +5 -0
- package/lib/components/input/Input.vue.d.ts +308 -83
- package/lib/components/input/Input.vue_vue_type_script_setup_true_lang.js +276 -0
- package/lib/components/input/theme/Input.base.theme.js +22 -16
- package/lib/components/input/theme/Input.carbon.theme.js +21 -16
- package/lib/components/inputFooter/InputFooter.js +5 -0
- package/lib/components/inputFooter/InputFooter.vue.d.ts +52 -18
- package/lib/components/inputFooter/InputFooter.vue_vue_type_script_setup_true_lang.js +50 -0
- package/lib/components/inputFooter/theme/InputFooter.base.theme.js +10 -12
- package/lib/components/inputFooter/theme/InputFooter.carbon.theme.js +10 -12
- package/lib/components/inputGroup/InputGroup.js +5 -0
- package/lib/components/inputGroup/InputGroup.vue.d.ts +296 -0
- package/lib/components/inputGroup/InputGroup.vue_vue_type_script_setup_true_lang.js +125 -0
- package/lib/components/inputGroup/index.d.ts +2 -0
- package/lib/components/inputGroup/theme/InputGroup.base.theme.d.ts +3 -0
- package/lib/components/inputGroup/theme/InputGroup.base.theme.js +4 -0
- package/lib/components/inputGroup/theme/InputGroup.carbon.theme.d.ts +3 -0
- package/lib/components/inputGroup/theme/InputGroup.carbon.theme.js +5 -0
- package/lib/components/label/Label.js +5 -0
- package/lib/components/label/Label.vue.d.ts +83 -20
- package/lib/components/label/Label.vue_vue_type_script_setup_true_lang.js +79 -0
- package/lib/components/label/theme/Label.base.theme.js +13 -15
- package/lib/components/label/theme/Label.carbon.theme.js +10 -12
- package/lib/components/link/Link.js +6 -0
- package/lib/components/link/Link.vue.d.ts +27 -15
- package/lib/components/link/Link.vue_vue_type_script_setup_true_lang.js +52 -0
- package/lib/components/link/Link.vue_vue_type_style_index_0_scoped_3ee61e03_lang.module.js +6 -0
- package/lib/components/link/theme/Link.base.theme.js +18 -24
- package/lib/components/link/theme/Link.carbon.theme.js +18 -24
- package/lib/components/loader/Loader.js +5 -0
- package/lib/components/loader/Loader.vue.d.ts +30 -6
- package/lib/components/loader/Loader.vue_vue_type_script_setup_true_lang.js +69 -0
- package/lib/components/loader/theme/Loader.base.theme.js +9 -11
- package/lib/components/loader/theme/Loader.carbon.theme.js +9 -11
- package/lib/components/menu/Menu.js +5 -0
- package/lib/components/menu/Menu.vue.d.ts +57 -17
- package/lib/components/menu/Menu.vue_vue_type_script_setup_true_lang.js +194 -0
- package/lib/components/menu/MenuItem.js +6 -0
- package/lib/components/menu/MenuItem.vue.d.ts +204 -53
- package/lib/components/menu/MenuItem.vue_vue_type_script_setup_true_lang.js +210 -0
- package/lib/components/menu/MenuItem.vue_vue_type_style_index_0_scoped_5aebaff3_lang.module.js +7 -0
- package/lib/components/menu/theme/Menu.base.theme.js +4 -8
- package/lib/components/menu/theme/Menu.carbon.theme.js +4 -4
- package/lib/components/menu/theme/MenuItem.base.theme.js +71 -75
- package/lib/components/menu/theme/MenuItem.carbon.theme.js +4 -4
- package/lib/components/modal/Modal.js +5 -0
- package/lib/components/modal/Modal.vue.d.ts +177 -39
- package/lib/components/modal/Modal.vue_vue_type_script_setup_true_lang.js +275 -0
- package/lib/components/modal/theme/Modal.base.theme.js +25 -27
- package/lib/components/modal/theme/Modal.carbon.theme.js +27 -29
- package/lib/components/notifications/Notifications.js +5 -0
- package/lib/components/notifications/Notifications.vue.d.ts +24 -0
- package/lib/components/notifications/Notifications.vue_vue_type_script_setup_true_lang.js +261 -0
- package/lib/components/notifications/theme/Notifications.base.theme.js +8 -10
- package/lib/components/notifications/theme/Notifications.carbon.theme.js +8 -10
- package/lib/components/pagination/Pagination.js +5 -0
- package/lib/components/pagination/Pagination.vue.d.ts +15 -4
- package/lib/components/pagination/Pagination.vue_vue_type_script_setup_true_lang.js +156 -0
- package/lib/components/pagination/PaginationItem.js +5 -0
- package/lib/components/pagination/PaginationItem.vue.d.ts +21 -7
- package/lib/components/pagination/PaginationItem.vue_vue_type_script_setup_true_lang.js +49 -0
- package/lib/components/pagination/theme/Pagination.base.theme.js +12 -12
- package/lib/components/pagination/theme/Pagination.carbon.theme.js +4 -4
- package/lib/components/pagination/theme/PaginationItem.base.theme.js +4 -8
- package/lib/components/pagination/theme/PaginationItem.carbon.theme.js +4 -4
- package/lib/components/popover/Popover.js +6 -0
- package/lib/components/popover/Popover.vue.d.ts +204 -45
- package/lib/components/popover/Popover.vue_vue_type_script_setup_true_lang.js +280 -0
- package/lib/components/popover/PopoverContainer.js +5 -0
- package/lib/components/popover/PopoverContainer.vue.d.ts +3 -0
- package/lib/components/popover/PopoverContainer.vue_vue_type_script_setup_true_lang.js +24 -0
- package/lib/components/popover/PopoverContentBoundary.js +5 -0
- package/lib/components/popover/PopoverContentBoundary.vue.d.ts +9 -0
- package/lib/components/popover/PopoverContentBoundary.vue_vue_type_script_setup_true_lang.js +18 -0
- package/lib/components/popover/theme/Popover.base.theme.js +7 -9
- package/lib/components/popover/theme/Popover.carbon.theme.js +4 -4
- package/lib/components/popover/theme/PopoverContainer.base.theme.js +4 -8
- package/lib/components/popover/theme/PopoverContainer.carbon.theme.js +4 -8
- package/lib/components/progress/Progress.js +5 -0
- package/lib/components/progress/Progress.vue.d.ts +15 -8
- package/lib/components/progress/Progress.vue_vue_type_script_setup_true_lang.js +41 -0
- package/lib/components/progress/theme/Progress.base.theme.js +13 -17
- package/lib/components/progress/theme/Progress.carbon.theme.js +4 -4
- package/lib/components/qrCode/QrCode.js +5 -0
- package/lib/components/qrCode/QrCode.vue.d.ts +24 -3
- package/lib/components/qrCode/QrCode.vue_vue_type_script_setup_true_lang.js +87 -0
- package/lib/components/qrCode/qrcodegen.js +766 -571
- package/lib/components/qrCode/theme/QrCode.base.theme.js +4 -8
- package/lib/components/qrCode/theme/QrCode.carbon.theme.js +4 -4
- package/lib/components/radio/Radio.js +6 -0
- package/lib/components/radio/Radio.vue.d.ts +189 -46
- package/lib/components/radio/Radio.vue_vue_type_script_setup_true_lang.js +124 -0
- package/lib/components/radio/Radio.vue_vue_type_style_index_0_lang.module.js +7 -0
- package/lib/components/radio/theme/Radio.base.theme.js +69 -69
- package/lib/components/radio/theme/Radio.carbon.theme.js +63 -63
- package/lib/components/radioButton/RadioButton.js +6 -0
- package/lib/components/radioButton/RadioButton.vue.d.ts +326 -0
- package/lib/components/radioButton/RadioButton.vue_vue_type_script_setup_true_lang.js +91 -0
- package/lib/components/radioButton/RadioButton.vue_vue_type_style_index_0_lang.module.js +6 -0
- package/lib/components/radioButton/index.d.ts +2 -0
- package/lib/components/radioButton/theme/RadioButton.base.theme.d.ts +3 -0
- package/lib/components/radioButton/theme/RadioButton.base.theme.js +110 -0
- package/lib/components/radioButton/theme/RadioButton.carbon.theme.d.ts +3 -0
- package/lib/components/radioButton/theme/RadioButton.carbon.theme.js +15 -0
- package/lib/components/scroll/Scroll.js +6 -0
- package/lib/components/scroll/Scroll.vue.d.ts +12 -12
- package/lib/components/scroll/Scroll.vue_vue_type_script_setup_true_lang.js +53 -0
- package/lib/components/scroll/Scroll.vue_vue_type_style_index_0_lang.module.js +12 -0
- package/lib/components/scroll/theme/Scroll.base.theme.js +4 -8
- package/lib/components/scroll/theme/Scroll.carbon.theme.js +4 -4
- package/lib/components/select/Select.js +5 -0
- package/lib/components/select/Select.vue.d.ts +714 -383
- package/lib/components/select/Select.vue_vue_type_script_setup_true_lang.js +583 -0
- package/lib/components/select/theme/Select.base.theme.js +26 -25
- package/lib/components/select/theme/Select.carbon.theme.js +23 -23
- package/lib/components/skeleton/Skeleton.js +5 -0
- package/lib/components/skeleton/Skeleton.vue.d.ts +6 -0
- package/lib/components/skeleton/Skeleton.vue_vue_type_script_setup_true_lang.js +33 -0
- package/lib/components/skeleton/theme/Skeleton.base.theme.js +7 -11
- package/lib/components/skeleton/theme/Skeleton.carbon.theme.js +4 -4
- package/lib/components/slider/Slider.js +7 -0
- package/lib/components/slider/Slider.vue.d.ts +180 -39
- package/lib/components/slider/Slider.vue_vue_type_script_setup_true_lang.js +117 -0
- package/lib/components/slider/theme/Slider.base.theme.js +17 -19
- package/lib/components/slider/theme/Slider.carbon.theme.js +4 -4
- package/lib/components/spacer/Spacer.js +9 -11
- package/lib/components/spinner/Spinner.js +5 -0
- package/lib/components/spinner/Spinner.vue.d.ts +6 -0
- package/lib/components/spinner/Spinner.vue_vue_type_script_setup_true_lang.js +25 -0
- package/lib/components/stepper/Stepper.js +5 -0
- package/lib/components/stepper/Stepper.vue.d.ts +242 -41
- package/lib/components/stepper/Stepper.vue_vue_type_script_setup_true_lang.js +425 -0
- package/lib/components/stepper/index.d.ts +1 -1
- package/lib/components/stepper/theme/Stepper.base.theme.js +33 -20
- package/lib/components/stepper/theme/Stepper.carbon.theme.js +4 -4
- package/lib/components/tab/Tab.js +5 -0
- package/lib/components/tab/Tab.vue.d.ts +113 -33
- package/lib/components/tab/Tab.vue_vue_type_script_setup_true_lang.js +210 -0
- package/lib/components/tab/TabGroup.js +5 -0
- package/lib/components/tab/TabGroup.vue.d.ts +53 -20
- package/lib/components/tab/TabGroup.vue_vue_type_script_setup_true_lang.js +166 -0
- package/lib/components/tab/theme/Tab.base.theme.js +13 -15
- package/lib/components/tab/theme/Tab.carbon.theme.js +16 -18
- package/lib/components/tab/theme/TabGroup.base.theme.js +30 -30
- package/lib/components/tab/theme/TabGroup.carbon.theme.js +30 -30
- package/lib/components/table/Table.js +5 -0
- package/lib/components/table/Table.vue.d.ts +94 -313
- package/lib/components/table/Table.vue_vue_type_script_setup_true_lang.js +440 -0
- package/lib/components/table/TableBody.js +9 -14
- package/lib/components/table/TableCell.js +5 -0
- package/lib/components/table/TableCell.vue.d.ts +60 -20
- package/lib/components/table/TableCell.vue_vue_type_script_setup_true_lang.js +96 -0
- package/lib/components/table/TableHead.js +5 -0
- package/lib/components/table/TableHead.vue.d.ts +4 -6
- package/lib/components/table/TableHead.vue_vue_type_script_setup_true_lang.js +18 -0
- package/lib/components/table/TableHeader.js +5 -0
- package/lib/components/table/TableHeader.vue.d.ts +21 -7
- package/lib/components/table/TableHeader.vue_vue_type_script_setup_true_lang.js +84 -0
- package/lib/components/table/TableRow.js +5 -0
- package/lib/components/table/TableRow.vue.d.ts +24 -15
- package/lib/components/table/TableRow.vue_vue_type_script_setup_true_lang.js +44 -0
- package/lib/components/table/theme/Table.base.theme.js +11 -13
- package/lib/components/table/theme/Table.carbon.theme.js +11 -13
- package/lib/components/table/theme/TableCell.base.theme.js +7 -11
- package/lib/components/table/theme/TableCell.carbon.theme.js +7 -11
- package/lib/components/table/theme/TableHead.base.theme.js +10 -12
- package/lib/components/table/theme/TableHead.carbon.theme.js +10 -12
- package/lib/components/table/theme/TableHeader.base.theme.js +14 -16
- package/lib/components/table/theme/TableHeader.carbon.theme.js +10 -12
- package/lib/components/table/theme/TableRow.base.theme.js +7 -11
- package/lib/components/table/theme/TableRow.carbon.theme.js +7 -11
- package/lib/components/tag/Tag.js +5 -0
- package/lib/components/tag/Tag.vue.d.ts +45 -22
- package/lib/components/tag/Tag.vue_vue_type_script_setup_true_lang.js +76 -0
- package/lib/components/tag/theme/Tag.base.theme.js +21 -23
- package/lib/components/tag/theme/Tag.carbon.theme.js +21 -23
- package/lib/components/textarea/Textarea.js +5 -0
- package/lib/components/textarea/Textarea.vue.d.ts +263 -83
- package/lib/components/textarea/Textarea.vue_vue_type_script_setup_true_lang.js +222 -0
- package/lib/components/textarea/theme/Textarea.base.theme.js +17 -13
- package/lib/components/textarea/theme/Textarea.carbon.theme.js +16 -13
- package/lib/components/themeProvider/ThemeProvider.js +5 -0
- package/lib/components/themeProvider/ThemeProvider.vue.d.ts +10 -4
- package/lib/components/themeProvider/ThemeProvider.vue_vue_type_script_setup_true_lang.js +20 -0
- package/lib/components/toggle/Toggle.js +5 -0
- package/lib/components/toggle/Toggle.vue.d.ts +177 -43
- package/lib/components/toggle/Toggle.vue_vue_type_script_setup_true_lang.js +105 -0
- package/lib/components/toggle/theme/Toggle.base.theme.js +23 -28
- package/lib/components/toggle/theme/Toggle.carbon.theme.js +4 -4
- package/lib/components/tooltip/ToggleTip.js +5 -0
- package/lib/components/tooltip/ToggleTip.vue.d.ts +24 -6
- package/lib/components/tooltip/ToggleTip.vue_vue_type_script_setup_true_lang.js +32 -0
- package/lib/components/tooltip/Tooltip.js +5 -0
- package/lib/components/tooltip/Tooltip.vue.d.ts +30 -6
- package/lib/components/tooltip/Tooltip.vue_vue_type_script_setup_true_lang.js +117 -0
- package/lib/components/tooltip/theme/Tooltip.base.theme.js +4 -8
- package/lib/components/tooltip/theme/Tooltip.carbon.theme.js +4 -4
- package/lib/components/upload/Upload.js +5 -0
- package/lib/components/upload/Upload.vue.d.ts +272 -66
- package/lib/components/upload/Upload.vue_vue_type_script_setup_true_lang.js +292 -0
- package/lib/components/upload/fileAccept.d.ts +6 -0
- package/lib/components/upload/fileAccept.js +17 -0
- package/lib/components/upload/theme/Upload.base.theme.js +4 -8
- package/lib/components/upload/theme/Upload.carbon.theme.js +4 -4
- package/lib/composables/index.d.ts +1 -0
- package/lib/composables/keys.d.ts +2 -0
- package/lib/composables/keys.js +4 -12
- package/lib/composables/resolveComponentDefaults.d.ts +4 -0
- package/lib/composables/resolveComponentDefaults.js +15 -0
- package/lib/composables/useCSS.js +29 -25
- package/lib/composables/useColors.d.ts +1 -0
- package/lib/composables/useColors.js +45 -51
- package/lib/composables/useCommon.d.ts +1 -0
- package/lib/composables/useCommon.js +16 -17
- package/lib/composables/useFocusTrap.js +50 -53
- package/lib/composables/useInputtable.d.ts +57 -12
- package/lib/composables/useInputtable.js +177 -113
- package/lib/composables/useInteractive.d.ts +13 -3
- package/lib/composables/useInteractive.js +24 -20
- package/lib/composables/useNotifications.js +8 -8
- package/lib/composables/useTheme.js +44 -56
- package/lib/composables/useVirtualList.d.ts +1 -2
- package/lib/composables/useVirtualList.js +120 -115
- package/lib/create.d.ts +2 -0
- package/lib/create.js +21 -24
- package/lib/index.d.ts +1 -0
- package/lib/index.js +87 -169
- package/lib/index.umd.js +56 -41
- package/lib/install.js +14 -18
- package/lib/node_modules/.pnpm/@floating-ui_core@1.5.3/node_modules/@floating-ui/core/dist/floating-ui.core.js +321 -489
- package/lib/node_modules/.pnpm/@floating-ui_dom@1.1.1/node_modules/@floating-ui/dom/dist/floating-ui.dom.browser.min.js +288 -215
- package/lib/node_modules/.pnpm/@floating-ui_utils@0.2.1/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +99 -115
- package/lib/node_modules/.pnpm/@vuepic_vue-datepicker@11.0.2_vue@3.5.34_typescript@5.2.2_/node_modules/@vuepic/vue-datepicker/dist/vue-datepicker.js +5380 -0
- package/lib/node_modules/.pnpm/@vueuse_core@11.1.0_vue@3.5.34_typescript@5.2.2_/node_modules/@vueuse/core/index.js +407 -0
- package/lib/node_modules/.pnpm/@vueuse_shared@11.1.0_vue@3.5.34_typescript@5.2.2_/node_modules/@vueuse/shared/index.js +75 -0
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/addLeadingZeros.js +5 -6
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/defaultOptions.js +6 -6
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/format/formatters.js +378 -513
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/format/lightFormatters.js +42 -58
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/format/longFormatters.js +39 -51
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.js +7 -17
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/normalizeDates.js +7 -10
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/normalizeInterval.js +10 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/protectedTokens.js +19 -17
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/add.js +10 -19
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addDays.js +8 -9
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addHours.js +7 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addMilliseconds.js +7 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addMonths.js +11 -20
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addQuarters.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addYears.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/compareAsc.js +7 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/constants.js +6 -9
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/constructFrom.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/differenceInCalendarDays.js +10 -15
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/differenceInCalendarYears.js +7 -12
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/differenceInYears.js +11 -16
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/eachDayOfInterval.js +14 -19
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/eachQuarterOfInterval.js +13 -19
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfQuarter.js +7 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfWeek.js +8 -10
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfYear.js +7 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/format.js +57 -58
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getDay.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getDayOfYear.js +9 -10
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getDaysInMonth.js +8 -9
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getDefaultOptions.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getHours.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getISODay.js +7 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getISOWeek.js +10 -11
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getISOWeekYear.js +13 -14
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getMinutes.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getMonth.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getQuarter.js +7 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getSeconds.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getWeek.js +10 -11
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getWeekYear.js +14 -16
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getYear.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isAfter.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isBefore.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isDate.js +5 -6
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isEqual.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isSameQuarter.js +8 -13
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isValid.js +7 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/_lib/buildFormatLongFn.js +8 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/_lib/buildLocalizeFn.js +16 -17
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/_lib/buildMatchFn.js +19 -28
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js +17 -16
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US/_lib/formatDistance.js +68 -69
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US/_lib/formatLong.js +31 -32
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US/_lib/formatRelative.js +11 -11
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US/_lib/localize.js +200 -153
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US/_lib/match.js +123 -109
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US.js +17 -18
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/Parser.js +15 -21
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/Setter.js +29 -40
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/constants.js +29 -48
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/AMPMMidnightParser.js +45 -48
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/AMPMParser.js +45 -48
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/DateParser.js +63 -60
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/DayOfYearParser.js +40 -50
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/DayParser.js +61 -44
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/DayPeriodParser.js +43 -48
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/EraParser.js +24 -29
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ExtendedYearParser.js +26 -20
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/FractionOfSecondParser.js +14 -21
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/Hour0To11Parser.js +28 -31
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/Hour0to23Parser.js +30 -31
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/Hour1To24Parser.js +31 -32
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/Hour1to12Parser.js +29 -32
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ISODayParser.js +73 -98
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneParser.js +27 -47
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneWithZParser.js +27 -47
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ISOWeekParser.js +39 -48
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ISOWeekYearParser.js +33 -39
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/LocalDayParser.js +76 -73
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/LocalWeekParser.js +38 -47
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/LocalWeekYearParser.js +47 -68
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/MinuteParser.js +22 -31
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/MonthParser.js +58 -70
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/QuarterParser.js +57 -69
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/SecondParser.js +22 -31
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/StandAloneLocalDayParser.js +76 -73
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/StandAloneMonthParser.js +58 -70
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/StandAloneQuarterParser.js +57 -69
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/TimestampMillisecondsParser.js +14 -20
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/TimestampSecondsParser.js +14 -20
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/YearParser.js +42 -48
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers.js +66 -66
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/utils.js +64 -93
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse.js +61 -88
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/set.js +9 -10
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setDay.js +9 -11
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setHours.js +7 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setISODay.js +9 -10
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setISOWeek.js +8 -9
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setMilliseconds.js +7 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setMinutes.js +7 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setMonth.js +11 -12
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setSeconds.js +7 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setWeek.js +8 -9
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setYear.js +8 -9
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfDay.js +7 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfISOWeek.js +9 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfISOWeekYear.js +9 -10
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfMonth.js +7 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfQuarter.js +7 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfWeek.js +8 -10
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfWeekYear.js +10 -12
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfYear.js +7 -8
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/sub.js +9 -18
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/subDays.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/subMonths.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/subYears.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/toDate.js +6 -7
- package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/transpose.js +9 -16
- package/lib/node_modules/.pnpm/floating-vue@5.2.2_@nuxt_kit@4.4.6_magicast@0.5.3__vue@3.5.34_typescript@5.2.2_/node_modules/floating-vue/dist/floating-vue.js +1243 -0
- package/lib/node_modules/.pnpm/vue-demi@0.14.10_vue@3.5.34_typescript@5.2.2_/node_modules/vue-demi/lib/index.js +28 -0
- package/lib/nuxt.mjs +1 -1
- package/lib/nuxt.plugin.js +1 -0
- package/lib/tailwind.css +74 -0
- package/lib/theme.d.ts +4 -1
- package/lib/theme.js +12 -13
- package/lib/themes/base/components.d.ts +3 -0
- package/lib/themes/base/components.js +118 -108
- package/lib/themes/base/index.js +10 -10
- package/lib/themes/base/styles.d.ts +1 -1
- package/lib/themes/base/styles.js +4 -91
- package/lib/themes/carbon/components.d.ts +3 -0
- package/lib/themes/carbon/components.js +118 -108
- package/lib/themes/carbon/index.js +23 -13
- package/lib/themes/carbon/styles.d.ts +1 -1
- package/lib/themes/carbon/styles.js +4 -87
- package/lib/version.d.ts +1 -1
- package/lib/version.js +4 -4
- package/lib/virtual/components/infiniteLoader/InfiniteLoader.js +5 -0
- package/lib/virtual/components/infiniteLoader/InfiniteLoader.vue.d.ts +27 -16
- package/lib/virtual/components/infiniteLoader/InfiniteLoader.vue_vue_type_script_setup_true_lang.js +38 -0
- package/lib/virtual/components/virtualGrid/VirtualGrid.js +5 -0
- package/lib/virtual/components/virtualGrid/VirtualGrid.vue.d.ts +108 -86
- package/lib/virtual/components/virtualGrid/VirtualGrid.vue_vue_type_script_setup_true_lang.js +264 -0
- package/lib/virtual/components/virtualList/VirtualList.js +5 -0
- package/lib/virtual/components/virtualList/VirtualList.vue.d.ts +62 -48
- package/lib/virtual/components/virtualList/VirtualList.vue_vue_type_script_setup_true_lang.js +190 -0
- package/lib/virtual/components/virtualList/isDynamicRowHeight.js +5 -5
- package/lib/virtual/components/virtualList/useDynamicRowHeight.js +59 -67
- package/lib/virtual/composables/infinite-loader/scanForUnloadedIndices.js +26 -40
- package/lib/virtual/composables/infinite-loader/useInfiniteLoader.js +30 -41
- package/lib/virtual/core/createCachedBounds.js +40 -54
- package/lib/virtual/core/getEstimatedSize.js +11 -21
- package/lib/virtual/core/getOffsetForIndex.js +17 -39
- package/lib/virtual/core/getStartStopIndices.js +21 -30
- package/lib/virtual/core/useCachedBounds.js +10 -16
- package/lib/virtual/core/useIsRtl.js +10 -14
- package/lib/virtual/core/useItemSize.js +15 -26
- package/lib/virtual/core/useVirtualizer.js +145 -170
- package/lib/virtual/utils/adjustScrollOffsetForRtl.js +15 -23
- package/lib/virtual/utils/assert.js +5 -6
- package/lib/virtual/utils/getRTLOffsetType.js +12 -12
- package/lib/virtual/utils/getScrollbarSize.js +10 -10
- package/lib/virtual/utils/isRtl.js +10 -11
- package/lib/virtual/utils/parseNumericStyleValue.js +10 -14
- package/lib/virtual/utils/shallowCompare.js +9 -13
- package/package.json +23 -23
- package/src/common/__tests__/inputGroupRadius.spec.ts +14 -0
- package/src/common/buttonGroupRadius.ts +16 -0
- package/src/common/icons.ts +1 -0
- package/src/common/inputGroupRadius.ts +11 -0
- package/src/common/props.ts +35 -0
- package/src/componentDefaults.ts +19 -0
- package/src/components/accordion/Accordion.vue +22 -4
- package/src/components/accordion/AccordionItem.vue +30 -3
- package/src/components/alert/Alert.vue +46 -26
- package/src/components/avatar/Avatar.vue +23 -6
- package/src/components/badge/Badge.vue +29 -6
- package/src/components/breadcrumbs/Breadcrumbs.vue +17 -5
- package/src/components/button/Button.vue +237 -59
- package/src/components/button/ButtonGroup.vue +47 -33
- package/src/components/button/__tests__/ Button.spec.ts +41 -0
- package/src/components/button/__tests__/ ButtonGroup.spec.ts +32 -0
- package/src/components/button/theme/Button.base.theme.ts +10 -2
- package/src/components/button/theme/Button.carbon.theme.ts +9 -2
- package/src/components/card/Card.vue +12 -2
- package/src/components/card/theme/Card.base.theme.ts +1 -1
- package/src/components/carousel/Carousel.vue +24 -2
- package/src/components/carousel/CarouselSlide.vue +7 -1
- package/src/components/checkbox/Checkbox.vue +28 -9
- package/src/components/checkbox/theme/Checkbox.carbon.theme.ts +1 -1
- package/src/components/container/Container.vue +10 -1
- package/src/components/datepicker/Datepicker.vue +498 -111
- package/src/components/datepicker/__tests__/Datepicker.spec.ts +31 -0
- package/src/components/divider/Divider.vue +11 -4
- package/src/components/divider/theme/Divider.base.theme.ts +2 -2
- package/src/components/drawer/Drawer.vue +27 -2
- package/src/components/empty/Empty.vue +101 -0
- package/src/components/empty/__tests__/Empty.spec.ts +11 -0
- package/src/components/empty/index.ts +2 -0
- package/src/components/empty/theme/Empty.base.theme.ts +40 -0
- package/src/components/empty/theme/Empty.carbon.theme.ts +7 -0
- package/src/components/form/Form.vue +32 -3
- package/src/components/formGroup/FormGroup.vue +31 -7
- package/src/components/formGroup/__tests__/FormGroup.spec.ts +37 -2
- package/src/components/formGroup/theme/FormGroup.base.theme.ts +7 -3
- package/src/components/formGroup/theme/FormGroup.carbon.theme.ts +7 -3
- package/src/components/icon/Icon.vue +6 -1
- package/src/components/image/Image.vue +8 -2
- package/src/components/index.ts +3 -0
- package/src/components/input/Input.vue +165 -44
- package/src/components/input/__tests__/Input.spec.ts +28 -1
- package/src/components/input/theme/Input.base.theme.ts +10 -1
- package/src/components/input/theme/Input.carbon.theme.ts +5 -0
- package/src/components/inputFooter/InputFooter.vue +23 -6
- package/src/components/inputGroup/InputGroup.vue +196 -0
- package/src/components/inputGroup/__tests__/InputGroup.spec.ts +104 -0
- package/src/components/inputGroup/index.ts +2 -0
- package/src/components/inputGroup/theme/InputGroup.base.theme.ts +9 -0
- package/src/components/inputGroup/theme/InputGroup.carbon.theme.ts +7 -0
- package/src/components/label/Label.vue +52 -8
- package/src/components/label/theme/Label.base.theme.ts +2 -2
- package/src/components/label/theme/Label.carbon.theme.ts +2 -2
- package/src/components/link/Link.vue +47 -31
- package/src/components/loader/Loader.vue +10 -2
- package/src/components/menu/Menu.vue +25 -5
- package/src/components/menu/MenuItem.vue +115 -56
- package/src/components/modal/Modal.vue +90 -15
- package/src/components/notifications/Notifications.vue +23 -0
- package/src/components/notifications/__tests__/Notifications.spec.ts +44 -4
- package/src/components/pagination/Pagination.vue +11 -1
- package/src/components/pagination/PaginationItem.vue +13 -2
- package/src/components/popover/Popover.vue +125 -33
- package/src/components/popover/PopoverContainer.vue +9 -1
- package/src/components/popover/PopoverContentBoundary.vue +32 -0
- package/src/components/popover/__tests__/Popover.spec.ts +51 -0
- package/src/components/popover/theme/PopoverContainer.base.theme.ts +1 -1
- package/src/components/progress/Progress.vue +10 -3
- package/src/components/qrCode/QrCode.vue +9 -1
- package/src/components/radio/Radio.vue +42 -25
- package/src/components/radio/theme/Radio.base.theme.ts +1 -1
- package/src/components/radio/theme/Radio.carbon.theme.ts +1 -1
- package/src/components/radioButton/RadioButton.vue +168 -0
- package/src/components/radioButton/__tests__/RadioButton.spec.ts +48 -0
- package/src/components/radioButton/index.ts +2 -0
- package/src/components/radioButton/theme/RadioButton.base.theme.ts +155 -0
- package/src/components/radioButton/theme/RadioButton.carbon.theme.ts +31 -0
- package/src/components/scroll/Scroll.vue +18 -5
- package/src/components/select/Select.vue +99 -21
- package/src/components/select/theme/Select.base.theme.ts +7 -1
- package/src/components/select/theme/Select.carbon.theme.ts +2 -0
- package/src/components/skeleton/Skeleton.vue +3 -0
- package/src/components/slider/Slider.vue +34 -8
- package/src/components/spacer/Spacer.tsx +1 -1
- package/src/components/spacer/__tests__/Spacer.spec.ts +1 -1
- package/src/components/spinner/Spinner.vue +2 -0
- package/src/components/stepper/Stepper.vue +654 -83
- package/src/components/stepper/__tests__/Stepper.spec.ts +199 -5
- package/src/components/stepper/index.ts +4 -0
- package/src/components/stepper/theme/Stepper.base.theme.ts +49 -19
- package/src/components/tab/Tab.vue +157 -63
- package/src/components/tab/TabGroup.vue +116 -28
- package/src/components/tab/__tests__/Tab.spec.ts +53 -0
- package/src/components/tab/__tests__/TabGroup.spec.ts +113 -0
- package/src/components/tab/theme/Tab.base.theme.ts +24 -2
- package/src/components/tab/theme/Tab.carbon.theme.ts +30 -7
- package/src/components/tab/theme/TabGroup.base.theme.ts +12 -9
- package/src/components/tab/theme/TabGroup.carbon.theme.ts +6 -2
- package/src/components/table/Table.vue +98 -21
- package/src/components/table/TableCell.vue +27 -6
- package/src/components/table/TableHead.vue +11 -2
- package/src/components/table/TableHeader.vue +18 -3
- package/src/components/table/TableRow.vue +19 -5
- package/src/components/table/__tests__/Table.spec.ts +53 -0
- package/src/components/table/theme/Table.carbon.theme.ts +1 -1
- package/src/components/tag/Tag.vue +30 -10
- package/src/components/textarea/Textarea.vue +117 -24
- package/src/components/textarea/theme/Textarea.base.theme.ts +10 -1
- package/src/components/textarea/theme/Textarea.carbon.theme.ts +5 -0
- package/src/components/themeProvider/ThemeProvider.vue +22 -7
- package/src/components/toggle/Toggle.vue +11 -1
- package/src/components/tooltip/ToggleTip.vue +12 -3
- package/src/components/tooltip/Tooltip.vue +19 -3
- package/src/components/upload/Upload.vue +50 -16
- package/src/components/upload/__tests__/fileAccept.spec.ts +39 -0
- package/src/components/upload/fileAccept.ts +29 -0
- package/src/composables/__tests__/resolveComponentDefaults.spec.ts +139 -0
- package/src/composables/index.ts +1 -0
- package/src/composables/keys.ts +2 -0
- package/src/composables/resolveComponentDefaults.ts +33 -0
- package/src/composables/useColors.ts +1 -0
- package/src/composables/useCommon.ts +1 -0
- package/src/composables/useFocusTrap.ts +3 -1
- package/src/composables/useInputtable.ts +122 -19
- package/src/composables/useInteractive.ts +13 -3
- package/src/composables/useTheme.ts +10 -3
- package/src/composables/useVirtualList.ts +1 -2
- package/src/create.ts +2 -0
- package/src/index.ts +1 -0
- package/src/theme.ts +6 -0
- package/src/themes/base/components.ts +3 -0
- package/src/themes/base/styles.ts +27 -20
- package/src/themes/carbon/components.ts +3 -0
- package/src/themes/carbon/styles.ts +24 -17
- package/src/version.ts +1 -1
- package/src/virtual/components/infiniteLoader/InfiniteLoader.vue +33 -1
- package/src/virtual/components/virtualGrid/VirtualGrid.vue +104 -10
- package/src/virtual/components/virtualList/VirtualList.test.ts +42 -4
- package/src/virtual/components/virtualList/VirtualList.vue +73 -8
- package/src/virtual/components/virtualList/useDynamicRowHeight.ts +9 -2
- package/src/virtual/core/useVirtualizer.ts +18 -4
- package/volar.d.ts +3 -0
- package/docs/layouts/simple.vue +0 -5
- package/docs/pages/component/radio/variants.vue +0 -39
- package/exports/tailwind.preset.js +0 -40
- package/lib/components/accordion/Accordion.vue.js +0 -40
- package/lib/components/accordion/Accordion.vue2.js +0 -4
- package/lib/components/accordion/AccordionItem.vue.js +0 -150
- package/lib/components/accordion/AccordionItem.vue2.js +0 -4
- package/lib/components/accordion/__tests__/Accordion.spec.d.ts +0 -1
- package/lib/components/alert/Alert.vue.js +0 -9
- package/lib/components/alert/Alert.vue2.js +0 -62
- package/lib/components/alert/Alert.vue3.js +0 -8
- package/lib/components/alert/__tests__/Alert.spec.d.ts +0 -1
- package/lib/components/avatar/Avatar.vue.js +0 -9
- package/lib/components/avatar/Avatar.vue2.js +0 -76
- package/lib/components/avatar/Avatar.vue3.js +0 -7
- package/lib/components/avatar/__tests__/Avatar.spec.d.ts +0 -1
- package/lib/components/badge/Badge.vue.js +0 -93
- package/lib/components/badge/Badge.vue2.js +0 -4
- package/lib/components/badge/__tests__/Badge.spec.d.ts +0 -1
- package/lib/components/breadcrumbs/Breadcrumbs.vue.js +0 -69
- package/lib/components/breadcrumbs/Breadcrumbs.vue2.js +0 -4
- package/lib/components/breadcrumbs/__tests__/Breadcrumbs.spec.d.ts +0 -1
- package/lib/components/button/Button.vue.js +0 -9
- package/lib/components/button/Button.vue2.js +0 -117
- package/lib/components/button/Button.vue3.js +0 -8
- package/lib/components/button/ButtonGroup.vue.js +0 -9
- package/lib/components/button/ButtonGroup.vue2.js +0 -53
- package/lib/components/button/ButtonGroup.vue3.js +0 -7
- package/lib/components/button/__tests__/ Button.spec.d.ts +0 -1
- package/lib/components/button/__tests__/ ButtonGroup.spec.d.ts +0 -1
- package/lib/components/card/Card.vue.js +0 -30
- package/lib/components/card/Card.vue2.js +0 -4
- package/lib/components/card/__tests__/Card.spec.d.ts +0 -1
- package/lib/components/carousel/Carousel.vue.js +0 -97
- package/lib/components/carousel/Carousel.vue2.js +0 -4
- package/lib/components/carousel/CarouselSlide.vue.js +0 -9
- package/lib/components/carousel/CarouselSlide.vue2.js +0 -32
- package/lib/components/carousel/CarouselSlide.vue3.js +0 -6
- package/lib/components/carousel/__tests__/Carousel.spec.d.ts +0 -1
- package/lib/components/checkbox/Checkbox.vue.js +0 -9
- package/lib/components/checkbox/Checkbox.vue2.js +0 -143
- package/lib/components/checkbox/Checkbox.vue3.js +0 -6
- package/lib/components/checkbox/__tests__/Checkbox.spec.d.ts +0 -1
- package/lib/components/container/Container.vue.js +0 -33
- package/lib/components/container/Container.vue2.js +0 -4
- package/lib/components/container/__tests__/Container.spec.d.ts +0 -1
- package/lib/components/datepicker/Datepicker.vue.js +0 -309
- package/lib/components/datepicker/Datepicker.vue2.js +0 -4
- package/lib/components/datepicker/Datepicker.vue3.js +0 -5
- package/lib/components/datepicker/__tests__/Datepicker.spec.d.ts +0 -1
- package/lib/components/divider/Divider.vue.js +0 -52
- package/lib/components/divider/Divider.vue2.js +0 -4
- package/lib/components/divider/__tests__/Divider.spec.d.ts +0 -1
- package/lib/components/drawer/Drawer.vue.js +0 -160
- package/lib/components/drawer/Drawer.vue2.js +0 -4
- package/lib/components/drawer/__tests__/Drawer.spec.d.ts +0 -1
- package/lib/components/form/Form.vue.js +0 -111
- package/lib/components/form/Form.vue2.js +0 -4
- package/lib/components/form/__tests__/Form.spec.d.ts +0 -1
- package/lib/components/formGroup/FormGroup.vue.js +0 -91
- package/lib/components/formGroup/FormGroup.vue2.js +0 -4
- package/lib/components/formGroup/__tests__/FormGroup.spec.d.ts +0 -1
- package/lib/components/icon/Icon.vue.js +0 -73
- package/lib/components/icon/Icon.vue2.js +0 -4
- package/lib/components/icon/__tests__/Icon.spec.d.ts +0 -1
- package/lib/components/image/Image.vue.js +0 -31
- package/lib/components/image/Image.vue2.js +0 -4
- package/lib/components/image/__tests__/Image.spec.d.ts +0 -1
- package/lib/components/input/Input.vue.js +0 -164
- package/lib/components/input/Input.vue2.js +0 -4
- package/lib/components/input/__tests__/Input.spec.d.ts +0 -1
- package/lib/components/inputFooter/InputFooter.vue.js +0 -43
- package/lib/components/inputFooter/InputFooter.vue2.js +0 -4
- package/lib/components/inputFooter/__tests__/InputFooter.spec.d.ts +0 -1
- package/lib/components/label/Label.vue.js +0 -54
- package/lib/components/label/Label.vue2.js +0 -4
- package/lib/components/label/__tests__/Label.spec.d.ts +0 -1
- package/lib/components/link/Link.vue.js +0 -9
- package/lib/components/link/Link.vue2.js +0 -47
- package/lib/components/link/Link.vue3.js +0 -8
- package/lib/components/link/__tests__/Link.spec.d.ts +0 -1
- package/lib/components/loader/Loader.vue.js +0 -54
- package/lib/components/loader/Loader.vue2.js +0 -4
- package/lib/components/loader/__tests__/Loader.spec.d.ts +0 -1
- package/lib/components/menu/Menu.vue.js +0 -141
- package/lib/components/menu/Menu.vue2.js +0 -4
- package/lib/components/menu/MenuItem.vue.js +0 -9
- package/lib/components/menu/MenuItem.vue2.js +0 -164
- package/lib/components/menu/MenuItem.vue3.js +0 -7
- package/lib/components/menu/__tests__/Menu.spec.d.ts +0 -1
- package/lib/components/menu/__tests__/MenuItem.spec.d.ts +0 -1
- package/lib/components/modal/Modal.vue.js +0 -211
- package/lib/components/modal/Modal.vue2.js +0 -4
- package/lib/components/modal/__tests__/Modal.spec.d.ts +0 -1
- package/lib/components/notifications/Notifications.vue.js +0 -266
- package/lib/components/notifications/Notifications.vue2.js +0 -4
- package/lib/components/notifications/__tests__/Notifications.spec.d.ts +0 -1
- package/lib/components/pagination/Pagination.vue.js +0 -131
- package/lib/components/pagination/Pagination.vue2.js +0 -4
- package/lib/components/pagination/PaginationItem.vue.js +0 -47
- package/lib/components/pagination/PaginationItem.vue2.js +0 -4
- package/lib/components/pagination/__tests__/Pagination.spec.d.ts +0 -1
- package/lib/components/pagination/__tests__/PaginationItem.spec.d.ts +0 -1
- package/lib/components/popover/Popover.vue.js +0 -134
- package/lib/components/popover/Popover.vue2.js +0 -4
- package/lib/components/popover/Popover.vue3.js +0 -5
- package/lib/components/popover/PopoverContainer.vue.js +0 -29
- package/lib/components/popover/PopoverContainer.vue2.js +0 -4
- package/lib/components/popover/__tests__/Popover.spec.d.ts +0 -1
- package/lib/components/popover/__tests__/PopoverContainer.spec.d.ts +0 -1
- package/lib/components/progress/Progress.vue.js +0 -50
- package/lib/components/progress/Progress.vue2.js +0 -4
- package/lib/components/progress/__tests__/Progress.spec.d.ts +0 -1
- package/lib/components/qrCode/QrCode.vue.js +0 -93
- package/lib/components/qrCode/QrCode.vue2.js +0 -4
- package/lib/components/qrCode/__tests__/QrCode.spec.d.ts +0 -1
- package/lib/components/radio/Radio.vue.js +0 -9
- package/lib/components/radio/Radio.vue2.js +0 -132
- package/lib/components/radio/Radio.vue3.js +0 -10
- package/lib/components/radio/__tests__/Radio.spec.d.ts +0 -1
- package/lib/components/scroll/Scroll.vue.js +0 -9
- package/lib/components/scroll/Scroll.vue2.js +0 -63
- package/lib/components/scroll/Scroll.vue3.js +0 -17
- package/lib/components/scroll/__tests__/Scroll.spec.d.ts +0 -1
- package/lib/components/select/Select.vue.js +0 -696
- package/lib/components/select/Select.vue2.js +0 -4
- package/lib/components/select/__tests__/Select.spec.d.ts +0 -1
- package/lib/components/skeleton/Skeleton.vue.js +0 -39
- package/lib/components/skeleton/Skeleton.vue2.js +0 -4
- package/lib/components/skeleton/__tests__/Skeleton.spec.d.ts +0 -1
- package/lib/components/slider/Slider.vue.js +0 -7
- package/lib/components/slider/Slider.vue2.js +0 -103
- package/lib/components/slider/Slider.vue3.js +0 -4
- package/lib/components/slider/__tests__/Slider.spec.d.ts +0 -1
- package/lib/components/spacer/__tests__/Spacer.spec.d.ts +0 -1
- package/lib/components/spinner/Spinner.vue.js +0 -27
- package/lib/components/spinner/Spinner.vue2.js +0 -4
- package/lib/components/spinner/__tests__/Spinner.spec.d.ts +0 -1
- package/lib/components/stepper/Stepper.vue.js +0 -129
- package/lib/components/stepper/Stepper.vue2.js +0 -4
- package/lib/components/stepper/__tests__/Stepper.spec.d.ts +0 -1
- package/lib/components/tab/Tab.vue.js +0 -150
- package/lib/components/tab/Tab.vue2.js +0 -4
- package/lib/components/tab/TabGroup.vue.js +0 -135
- package/lib/components/tab/TabGroup.vue2.js +0 -4
- package/lib/components/tab/__tests__/Tab.spec.d.ts +0 -1
- package/lib/components/tab/__tests__/TabGroup.spec.d.ts +0 -1
- package/lib/components/table/Table.vue.js +0 -424
- package/lib/components/table/Table.vue2.js +0 -4
- package/lib/components/table/TableCell.vue.js +0 -65
- package/lib/components/table/TableCell.vue2.js +0 -4
- package/lib/components/table/TableHead.vue.js +0 -24
- package/lib/components/table/TableHead.vue2.js +0 -4
- package/lib/components/table/TableHeader.vue.js +0 -82
- package/lib/components/table/TableHeader.vue2.js +0 -4
- package/lib/components/table/TableRow.vue.js +0 -30
- package/lib/components/table/TableRow.vue2.js +0 -4
- package/lib/components/table/__tests__/Table.spec.d.ts +0 -1
- package/lib/components/tag/Tag.vue.js +0 -73
- package/lib/components/tag/Tag.vue2.js +0 -4
- package/lib/components/tag/__tests__/Tag.spec.d.ts +0 -1
- package/lib/components/textarea/Textarea.vue.js +0 -141
- package/lib/components/textarea/Textarea.vue2.js +0 -4
- package/lib/components/textarea/__tests__/Textarea.spec.d.ts +0 -1
- package/lib/components/themeProvider/ThemeProvider.vue.js +0 -18
- package/lib/components/themeProvider/ThemeProvider.vue2.js +0 -4
- package/lib/components/toggle/Toggle.vue.js +0 -108
- package/lib/components/toggle/Toggle.vue2.js +0 -4
- package/lib/components/toggle/__tests__/Toggle.spec.d.ts +0 -1
- package/lib/components/tooltip/ToggleTip.vue.js +0 -29
- package/lib/components/tooltip/ToggleTip.vue2.js +0 -4
- package/lib/components/tooltip/Tooltip.vue.js +0 -132
- package/lib/components/tooltip/Tooltip.vue2.js +0 -4
- package/lib/components/tooltip/__tests__/ToggleTip.spec.d.ts +0 -1
- package/lib/components/tooltip/__tests__/Tooltip.spec.d.ts +0 -1
- package/lib/components/upload/Upload.vue.js +0 -275
- package/lib/components/upload/Upload.vue2.js +0 -4
- package/lib/components/upload/__tests__/Upload.spec.d.ts +0 -1
- package/lib/node_modules/.pnpm/@vuepic_vue-datepicker@11.0.2_vue@3.5.10_typescript@5.2.2_/node_modules/@vuepic/vue-datepicker/dist/main.css.js +0 -4
- package/lib/node_modules/.pnpm/@vuepic_vue-datepicker@11.0.2_vue@3.5.10_typescript@5.2.2_/node_modules/@vuepic/vue-datepicker/dist/vue-datepicker.js +0 -5210
- package/lib/node_modules/.pnpm/@vueuse_core@11.1.0_vue@3.5.10_typescript@5.2.2_/node_modules/@vueuse/core/index.js +0 -501
- package/lib/node_modules/.pnpm/@vueuse_shared@11.1.0_vue@3.5.10_typescript@5.2.2_/node_modules/@vueuse/shared/index.js +0 -96
- package/lib/node_modules/.pnpm/floating-vue@5.2.2_@nuxt_kit@3.10.1_rollup@3.29.4__vue@3.5.10_typescript@5.2.2_/node_modules/floating-vue/dist/floating-vue.js +0 -1371
- package/lib/tailwind.preset.js +0 -40
- package/lib/virtual/components/infiniteLoader/InfiniteLoader.vue.js +0 -21
- package/lib/virtual/components/infiniteLoader/InfiniteLoader.vue2.js +0 -4
- package/lib/virtual/components/virtualGrid/VirtualGrid.vue.js +0 -241
- package/lib/virtual/components/virtualGrid/VirtualGrid.vue2.js +0 -4
- package/lib/virtual/components/virtualList/VirtualList.vue.js +0 -159
- package/lib/virtual/components/virtualList/VirtualList.vue2.js +0 -4
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type ExtractPublicPropTypes, type PropType } from 'vue';
|
|
2
2
|
import { type ThemeComponent } from '../../composables/useTheme';
|
|
3
|
+
import type { Size } from '../../composables/useCommon';
|
|
3
4
|
import type { Locale } from 'date-fns';
|
|
4
5
|
import { type ModelValue, type TimeModel } from '@vuepic/vue-datepicker';
|
|
5
6
|
import '@vuepic/vue-datepicker/dist/main.css';
|
|
@@ -11,34 +12,42 @@ declare const datepickerProps: {
|
|
|
11
12
|
count: string | number;
|
|
12
13
|
}> | undefined>;
|
|
13
14
|
default: undefined;
|
|
15
|
+
description: string;
|
|
14
16
|
};
|
|
15
17
|
modelValue: {
|
|
16
18
|
type: PropType<ModelValue>;
|
|
17
19
|
default: null;
|
|
20
|
+
description: string;
|
|
18
21
|
};
|
|
19
22
|
modelType: {
|
|
20
23
|
type: PropType<string | undefined>;
|
|
21
24
|
default: null;
|
|
25
|
+
description: string;
|
|
22
26
|
};
|
|
23
27
|
position: {
|
|
24
28
|
type: PropType<"left" | "right" | "center" | undefined>;
|
|
25
29
|
default: string;
|
|
30
|
+
description: string;
|
|
26
31
|
};
|
|
27
32
|
dark: {
|
|
28
33
|
type: PropType<boolean>;
|
|
29
34
|
default: boolean;
|
|
35
|
+
description: string;
|
|
30
36
|
};
|
|
31
37
|
format: {
|
|
32
38
|
type: PropType<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined>;
|
|
33
39
|
default: () => null;
|
|
40
|
+
description: string;
|
|
34
41
|
};
|
|
35
42
|
autoPosition: {
|
|
36
43
|
type: PropType<boolean>;
|
|
37
44
|
default: boolean;
|
|
45
|
+
description: string;
|
|
38
46
|
};
|
|
39
47
|
altPosition: {
|
|
40
48
|
type: PropType<((el: HTMLElement | undefined) => Record<string, string | number>) | undefined>;
|
|
41
49
|
default: null;
|
|
50
|
+
description: string;
|
|
42
51
|
};
|
|
43
52
|
transitions: {
|
|
44
53
|
type: PropType<Partial<boolean | {
|
|
@@ -52,14 +61,17 @@ declare const datepickerProps: {
|
|
|
52
61
|
vPrevious?: string | undefined;
|
|
53
62
|
} | undefined>>;
|
|
54
63
|
default: boolean;
|
|
64
|
+
description: string;
|
|
55
65
|
};
|
|
56
66
|
formatLocale: {
|
|
57
67
|
type: PropType<Locale>;
|
|
58
68
|
default: null;
|
|
69
|
+
description: string;
|
|
59
70
|
};
|
|
60
71
|
utc: {
|
|
61
72
|
type: PropType<boolean | "preserve">;
|
|
62
73
|
default: boolean;
|
|
74
|
+
description: string;
|
|
63
75
|
};
|
|
64
76
|
ariaLabels: {
|
|
65
77
|
type: PropType<Partial<{
|
|
@@ -92,14 +104,17 @@ declare const datepickerProps: {
|
|
|
92
104
|
timeOverlay?: ((type: import("@vuepic/vue-datepicker").TimeType) => string) | undefined;
|
|
93
105
|
} | undefined>>;
|
|
94
106
|
default: () => {};
|
|
107
|
+
description: string;
|
|
95
108
|
};
|
|
96
109
|
offset: {
|
|
97
110
|
type: PropType<string | number>;
|
|
98
111
|
default: number;
|
|
112
|
+
description: string;
|
|
99
113
|
};
|
|
100
114
|
hideNavigation: {
|
|
101
115
|
type: PropType<("month" | "year" | "calendar" | "time" | "minutes" | "hours" | "seconds")[] | undefined>;
|
|
102
116
|
default: () => never[];
|
|
117
|
+
description: string;
|
|
103
118
|
};
|
|
104
119
|
timezone: {
|
|
105
120
|
type: PropType<string | {
|
|
@@ -110,86 +125,107 @@ declare const datepickerProps: {
|
|
|
110
125
|
convertModel?: boolean | undefined;
|
|
111
126
|
} | undefined>;
|
|
112
127
|
default: null;
|
|
128
|
+
description: string;
|
|
113
129
|
};
|
|
114
130
|
vertical: {
|
|
115
131
|
type: PropType<boolean>;
|
|
116
132
|
default: boolean;
|
|
133
|
+
description: string;
|
|
117
134
|
};
|
|
118
135
|
disableMonthYearSelect: {
|
|
119
136
|
type: PropType<boolean>;
|
|
120
137
|
default: boolean;
|
|
138
|
+
description: string;
|
|
121
139
|
};
|
|
122
140
|
disableYearSelect: {
|
|
123
141
|
type: PropType<boolean>;
|
|
124
142
|
default: boolean;
|
|
143
|
+
description: string;
|
|
125
144
|
};
|
|
126
145
|
dayClass: {
|
|
127
146
|
type: PropType<(date: Date) => string>;
|
|
128
147
|
default: null;
|
|
148
|
+
description: string;
|
|
129
149
|
};
|
|
130
150
|
yearRange: {
|
|
131
151
|
type: PropType<number[]>;
|
|
132
152
|
default: () => number[];
|
|
153
|
+
description: string;
|
|
133
154
|
};
|
|
134
155
|
enableTimePicker: {
|
|
135
156
|
type: PropType<boolean>;
|
|
136
157
|
default: boolean;
|
|
158
|
+
description: string;
|
|
137
159
|
};
|
|
138
160
|
autoApply: {
|
|
139
161
|
type: PropType<boolean>;
|
|
140
162
|
default: boolean;
|
|
163
|
+
description: string;
|
|
141
164
|
};
|
|
142
165
|
disabledDates: {
|
|
143
166
|
type: PropType<string[] | Date[] | ((date: Date) => boolean) | undefined>;
|
|
144
167
|
default: () => never[];
|
|
168
|
+
description: string;
|
|
145
169
|
};
|
|
146
170
|
monthNameFormat: {
|
|
147
171
|
type: PropType<"long" | "short">;
|
|
148
172
|
default: string;
|
|
173
|
+
description: string;
|
|
149
174
|
};
|
|
150
175
|
startDate: {
|
|
151
176
|
type: PropType<string | Date>;
|
|
152
177
|
default: null;
|
|
178
|
+
description: string;
|
|
153
179
|
};
|
|
154
180
|
startTime: {
|
|
155
181
|
type: PropType<import("@vuepic/vue-datepicker").PartialTimeObj | import("@vuepic/vue-datepicker").PartialTimeObj[] | undefined>;
|
|
156
182
|
default: null;
|
|
183
|
+
description: string;
|
|
157
184
|
};
|
|
158
185
|
hideOffsetDates: {
|
|
159
186
|
type: PropType<boolean>;
|
|
160
187
|
default: boolean;
|
|
188
|
+
description: string;
|
|
161
189
|
};
|
|
162
190
|
noToday: {
|
|
163
191
|
type: PropType<boolean>;
|
|
164
192
|
default: boolean;
|
|
193
|
+
description: string;
|
|
165
194
|
};
|
|
166
195
|
disabledWeekDays: {
|
|
167
196
|
type: PropType<string[] | number[]>;
|
|
168
197
|
default: () => never[];
|
|
198
|
+
description: string;
|
|
169
199
|
};
|
|
170
200
|
allowedDates: {
|
|
171
201
|
type: PropType<string[] | Date[]>;
|
|
172
202
|
default: null;
|
|
203
|
+
description: string;
|
|
173
204
|
};
|
|
174
205
|
nowButtonLabel: {
|
|
175
206
|
type: PropType<string>;
|
|
176
207
|
default: string;
|
|
208
|
+
description: string;
|
|
177
209
|
};
|
|
178
210
|
markers: {
|
|
179
211
|
type: PropType<import("@vuepic/vue-datepicker").DatePickerMarker[] | undefined>;
|
|
180
212
|
default: () => never[];
|
|
213
|
+
description: string;
|
|
181
214
|
};
|
|
182
215
|
escClose: {
|
|
183
216
|
type: PropType<boolean>;
|
|
184
217
|
default: boolean;
|
|
218
|
+
description: string;
|
|
185
219
|
};
|
|
186
220
|
spaceConfirm: {
|
|
187
221
|
type: PropType<boolean>;
|
|
188
222
|
default: boolean;
|
|
223
|
+
description: string;
|
|
189
224
|
};
|
|
190
225
|
monthChangeOnArrows: {
|
|
191
226
|
type: PropType<boolean>;
|
|
192
227
|
default: boolean;
|
|
228
|
+
description: string;
|
|
193
229
|
};
|
|
194
230
|
presetDates: {
|
|
195
231
|
type: PropType<{
|
|
@@ -201,26 +237,32 @@ declare const datepickerProps: {
|
|
|
201
237
|
testId?: string | undefined;
|
|
202
238
|
}[] | undefined>;
|
|
203
239
|
default: () => never[];
|
|
240
|
+
description: string;
|
|
204
241
|
};
|
|
205
242
|
flow: {
|
|
206
243
|
type: PropType<("month" | "year" | "calendar" | "time" | "minutes" | "hours" | "seconds")[] | undefined>;
|
|
207
244
|
default: () => never[];
|
|
245
|
+
description: string;
|
|
208
246
|
};
|
|
209
247
|
partialFlow: {
|
|
210
248
|
type: PropType<boolean>;
|
|
211
249
|
default: boolean;
|
|
250
|
+
description: string;
|
|
212
251
|
};
|
|
213
252
|
preventMinMaxNavigation: {
|
|
214
253
|
type: PropType<boolean>;
|
|
215
254
|
default: boolean;
|
|
255
|
+
description: string;
|
|
216
256
|
};
|
|
217
257
|
reverseYears: {
|
|
218
258
|
type: PropType<boolean>;
|
|
219
259
|
default: boolean;
|
|
260
|
+
description: string;
|
|
220
261
|
};
|
|
221
262
|
weekPicker: {
|
|
222
263
|
type: PropType<boolean>;
|
|
223
264
|
default: boolean;
|
|
265
|
+
description: string;
|
|
224
266
|
};
|
|
225
267
|
filters: {
|
|
226
268
|
type: PropType<Partial<{
|
|
@@ -233,10 +275,12 @@ declare const datepickerProps: {
|
|
|
233
275
|
} | undefined;
|
|
234
276
|
} | undefined>>;
|
|
235
277
|
default: () => {};
|
|
278
|
+
description: string;
|
|
236
279
|
};
|
|
237
280
|
arrowNavigation: {
|
|
238
281
|
type: PropType<boolean>;
|
|
239
282
|
default: boolean;
|
|
283
|
+
description: string;
|
|
240
284
|
};
|
|
241
285
|
highlight: {
|
|
242
286
|
type: PropType<((date: Date[], disabled?: boolean | undefined) => boolean) | ((month: {
|
|
@@ -247,26 +291,32 @@ declare const datepickerProps: {
|
|
|
247
291
|
year: number;
|
|
248
292
|
}) => boolean) | Partial<import("@vuepic/vue-datepicker").Highlight> | undefined>;
|
|
249
293
|
default: null;
|
|
294
|
+
description: string;
|
|
250
295
|
};
|
|
251
296
|
teleport: {
|
|
252
297
|
type: PropType<string | boolean | HTMLElement>;
|
|
253
298
|
default: null;
|
|
299
|
+
description: string;
|
|
254
300
|
};
|
|
255
301
|
teleportCenter: {
|
|
256
302
|
type: PropType<boolean>;
|
|
257
303
|
default: boolean;
|
|
304
|
+
description: string;
|
|
258
305
|
};
|
|
259
306
|
locale: {
|
|
260
307
|
type: PropType<string>;
|
|
261
308
|
default: string;
|
|
309
|
+
description: string;
|
|
262
310
|
};
|
|
263
311
|
weekNumName: {
|
|
264
312
|
type: PropType<string>;
|
|
265
313
|
default: string;
|
|
314
|
+
description: string;
|
|
266
315
|
};
|
|
267
316
|
weekStart: {
|
|
268
317
|
type: PropType<0 | 1 | "0" | "1" | 2 | 3 | 4 | 5 | 6 | "2" | "3" | "4" | "5" | "6" | undefined>;
|
|
269
318
|
default: number;
|
|
319
|
+
description: string;
|
|
270
320
|
};
|
|
271
321
|
weekNumbers: {
|
|
272
322
|
type: PropType<import("@vuepic/vue-datepicker").WeekNumberType | {
|
|
@@ -274,156 +324,194 @@ declare const datepickerProps: {
|
|
|
274
324
|
hideOnOffsetDates?: boolean | undefined;
|
|
275
325
|
} | undefined>;
|
|
276
326
|
default: null;
|
|
327
|
+
description: string;
|
|
277
328
|
};
|
|
278
329
|
monthChangeOnScroll: {
|
|
279
330
|
type: PropType<boolean | "inverse">;
|
|
280
331
|
default: boolean;
|
|
332
|
+
description: string;
|
|
281
333
|
};
|
|
282
334
|
dayNames: {
|
|
283
335
|
type: PropType<string[] | ((lang: string, weekStart: number) => string[])>;
|
|
284
336
|
default: null;
|
|
337
|
+
description: string;
|
|
285
338
|
};
|
|
286
339
|
monthPicker: {
|
|
287
340
|
type: PropType<boolean>;
|
|
288
341
|
default: boolean;
|
|
342
|
+
description: string;
|
|
289
343
|
};
|
|
290
344
|
customProps: {
|
|
291
345
|
type: PropType<Record<string, unknown>>;
|
|
292
346
|
default: null;
|
|
347
|
+
description: string;
|
|
293
348
|
};
|
|
294
349
|
yearPicker: {
|
|
295
350
|
type: PropType<boolean>;
|
|
296
351
|
default: boolean;
|
|
352
|
+
description: string;
|
|
297
353
|
};
|
|
298
354
|
modelAuto: {
|
|
299
355
|
type: PropType<boolean>;
|
|
300
356
|
default: boolean;
|
|
357
|
+
description: string;
|
|
301
358
|
};
|
|
302
359
|
selectText: {
|
|
303
360
|
type: PropType<string>;
|
|
304
361
|
default: string;
|
|
362
|
+
description: string;
|
|
305
363
|
};
|
|
306
364
|
cancelText: {
|
|
307
365
|
type: PropType<string>;
|
|
308
366
|
default: string;
|
|
367
|
+
description: string;
|
|
309
368
|
};
|
|
310
369
|
previewFormat: {
|
|
311
370
|
type: PropType<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined>;
|
|
312
371
|
default: () => string;
|
|
372
|
+
description: string;
|
|
313
373
|
};
|
|
314
374
|
multiDates: {
|
|
315
375
|
type: PropType<boolean>;
|
|
316
376
|
default: boolean;
|
|
377
|
+
description: string;
|
|
317
378
|
};
|
|
318
379
|
ignoreTimeValidation: {
|
|
319
380
|
type: PropType<boolean>;
|
|
320
381
|
default: boolean;
|
|
382
|
+
description: string;
|
|
321
383
|
};
|
|
322
384
|
minDate: {
|
|
323
385
|
type: PropType<string | Date>;
|
|
324
386
|
default: null;
|
|
387
|
+
description: string;
|
|
325
388
|
};
|
|
326
389
|
maxDate: {
|
|
327
390
|
type: PropType<string | Date>;
|
|
328
391
|
default: null;
|
|
392
|
+
description: string;
|
|
329
393
|
};
|
|
330
394
|
minTime: {
|
|
331
395
|
type: PropType<Partial<TimeModel>>;
|
|
332
396
|
default: null;
|
|
397
|
+
description: string;
|
|
333
398
|
};
|
|
334
399
|
maxTime: {
|
|
335
400
|
type: PropType<Partial<TimeModel>>;
|
|
336
401
|
default: null;
|
|
402
|
+
description: string;
|
|
337
403
|
};
|
|
338
404
|
placeholder: {
|
|
339
405
|
type: PropType<string>;
|
|
340
406
|
default: string;
|
|
407
|
+
description: string;
|
|
341
408
|
};
|
|
342
409
|
hideInputIcon: {
|
|
343
410
|
type: PropType<boolean>;
|
|
344
411
|
default: boolean;
|
|
412
|
+
description: string;
|
|
345
413
|
};
|
|
346
414
|
clearable: {
|
|
347
415
|
type: PropType<boolean>;
|
|
348
416
|
default: boolean;
|
|
417
|
+
description: string;
|
|
349
418
|
};
|
|
350
419
|
alwaysClearable: {
|
|
351
420
|
type: PropType<boolean>;
|
|
352
421
|
default: boolean;
|
|
422
|
+
description: string;
|
|
353
423
|
};
|
|
354
424
|
state: {
|
|
355
425
|
type: PropType<boolean | undefined>;
|
|
356
426
|
default: null;
|
|
427
|
+
description: string;
|
|
357
428
|
};
|
|
358
429
|
required: {
|
|
359
430
|
type: PropType<boolean>;
|
|
360
431
|
default: boolean;
|
|
432
|
+
description: string;
|
|
361
433
|
};
|
|
362
434
|
autocomplete: {
|
|
363
435
|
type: PropType<string>;
|
|
364
436
|
default: string;
|
|
437
|
+
description: string;
|
|
365
438
|
};
|
|
366
439
|
timePicker: {
|
|
367
440
|
type: PropType<boolean>;
|
|
368
441
|
default: boolean;
|
|
442
|
+
description: string;
|
|
369
443
|
};
|
|
370
444
|
enableSeconds: {
|
|
371
445
|
type: PropType<boolean>;
|
|
372
446
|
default: boolean;
|
|
447
|
+
description: string;
|
|
373
448
|
};
|
|
374
449
|
is24: {
|
|
375
450
|
type: PropType<boolean>;
|
|
376
451
|
default: boolean;
|
|
452
|
+
description: string;
|
|
377
453
|
};
|
|
378
454
|
noHoursOverlay: {
|
|
379
455
|
type: PropType<boolean>;
|
|
380
456
|
default: boolean;
|
|
457
|
+
description: string;
|
|
381
458
|
};
|
|
382
459
|
noMinutesOverlay: {
|
|
383
460
|
type: PropType<boolean>;
|
|
384
461
|
default: boolean;
|
|
462
|
+
description: string;
|
|
385
463
|
};
|
|
386
464
|
noSecondsOverlay: {
|
|
387
465
|
type: PropType<boolean>;
|
|
388
466
|
default: boolean;
|
|
467
|
+
description: string;
|
|
389
468
|
};
|
|
390
469
|
hoursGridIncrement: {
|
|
391
470
|
type: PropType<string | number>;
|
|
392
471
|
default: number;
|
|
472
|
+
description: string;
|
|
393
473
|
};
|
|
394
474
|
minutesGridIncrement: {
|
|
395
475
|
type: PropType<string | number>;
|
|
396
476
|
default: number;
|
|
477
|
+
description: string;
|
|
397
478
|
};
|
|
398
479
|
secondsGridIncrement: {
|
|
399
480
|
type: PropType<string | number>;
|
|
400
481
|
default: number;
|
|
482
|
+
description: string;
|
|
401
483
|
};
|
|
402
484
|
hoursIncrement: {
|
|
403
485
|
type: PropType<string | number>;
|
|
404
486
|
default: number;
|
|
487
|
+
description: string;
|
|
405
488
|
};
|
|
406
489
|
minutesIncrement: {
|
|
407
490
|
type: PropType<string | number>;
|
|
408
491
|
default: number;
|
|
492
|
+
description: string;
|
|
409
493
|
};
|
|
410
494
|
secondsIncrement: {
|
|
411
495
|
type: PropType<string | number>;
|
|
412
496
|
default: number;
|
|
497
|
+
description: string;
|
|
413
498
|
};
|
|
414
499
|
range: {
|
|
415
500
|
type: PropType<boolean | import("@vuepic/vue-datepicker").RangeConfig | undefined>;
|
|
416
501
|
default: boolean;
|
|
502
|
+
description: string;
|
|
417
503
|
};
|
|
418
504
|
uid: {
|
|
419
505
|
type: PropType<string>;
|
|
420
506
|
default: null;
|
|
507
|
+
description: string;
|
|
421
508
|
};
|
|
422
509
|
inline: {
|
|
423
510
|
type: PropType<boolean | {
|
|
424
511
|
input?: boolean | undefined;
|
|
425
512
|
} | undefined>;
|
|
426
513
|
default: boolean;
|
|
514
|
+
description: string;
|
|
427
515
|
};
|
|
428
516
|
textInput: {
|
|
429
517
|
type: PropType<boolean | {
|
|
@@ -436,96 +524,154 @@ declare const datepickerProps: {
|
|
|
436
524
|
escClose?: boolean | undefined;
|
|
437
525
|
} | undefined>;
|
|
438
526
|
default: boolean;
|
|
527
|
+
description: string;
|
|
439
528
|
};
|
|
440
529
|
noDisabledRange: {
|
|
441
530
|
type: PropType<boolean>;
|
|
442
531
|
default: boolean;
|
|
532
|
+
description: string;
|
|
443
533
|
};
|
|
444
534
|
sixWeeks: {
|
|
445
535
|
type: PropType<boolean | "center" | "append" | "prepend" | "fair" | undefined>;
|
|
446
536
|
default: boolean;
|
|
537
|
+
description: string;
|
|
447
538
|
};
|
|
448
539
|
actionRow: {
|
|
449
540
|
type: PropType<Partial<any>>;
|
|
450
541
|
default: () => {};
|
|
542
|
+
description: string;
|
|
451
543
|
};
|
|
452
544
|
focusStartDate: {
|
|
453
545
|
type: PropType<boolean>;
|
|
454
546
|
default: boolean;
|
|
547
|
+
description: string;
|
|
455
548
|
};
|
|
456
549
|
disabledTimes: {
|
|
457
550
|
type: PropType<((time: import("@vuepic/vue-datepicker").TimeObj | (import("@vuepic/vue-datepicker").TimeObj | undefined)[]) => boolean) | import("@vuepic/vue-datepicker").DisabledTime[] | [import("@vuepic/vue-datepicker").DisabledTime[], import("@vuepic/vue-datepicker").DisabledTime[]] | undefined>;
|
|
458
551
|
default: undefined;
|
|
552
|
+
description: string;
|
|
459
553
|
};
|
|
460
554
|
showLastInRange: {
|
|
461
555
|
type: PropType<boolean>;
|
|
462
556
|
default: boolean;
|
|
557
|
+
description: string;
|
|
463
558
|
};
|
|
464
559
|
timePickerInline: {
|
|
465
560
|
type: PropType<boolean>;
|
|
466
561
|
default: boolean;
|
|
562
|
+
description: string;
|
|
467
563
|
};
|
|
468
564
|
calendar: {
|
|
469
565
|
type: PropType<((weeks: import("@vuepic/vue-datepicker").CalendarWeek[]) => import("@vuepic/vue-datepicker").CalendarWeek[]) | undefined>;
|
|
470
566
|
default: null;
|
|
567
|
+
description: string;
|
|
471
568
|
};
|
|
472
569
|
config: {
|
|
473
570
|
type: PropType<Partial<import("@vuepic/vue-datepicker").GeneralConfig | undefined>>;
|
|
474
571
|
default: undefined;
|
|
572
|
+
description: string;
|
|
475
573
|
};
|
|
476
574
|
quarterPicker: {
|
|
477
575
|
type: PropType<boolean>;
|
|
478
576
|
default: boolean;
|
|
577
|
+
description: string;
|
|
479
578
|
};
|
|
480
579
|
yearFirst: {
|
|
481
580
|
type: PropType<boolean>;
|
|
482
581
|
default: boolean;
|
|
582
|
+
description: string;
|
|
483
583
|
};
|
|
484
584
|
onInternalModelChange: {
|
|
485
585
|
type: PropType<(...args: any[]) => void>;
|
|
486
586
|
default: null;
|
|
587
|
+
description: string;
|
|
487
588
|
};
|
|
488
589
|
enableMinutes: {
|
|
489
590
|
type: PropType<boolean>;
|
|
490
591
|
default: boolean;
|
|
592
|
+
description: string;
|
|
491
593
|
};
|
|
492
594
|
ui: {
|
|
493
595
|
type: PropType<Partial<Partial<import("@vuepic/vue-datepicker").UIOptions> | undefined>>;
|
|
494
596
|
default: () => {};
|
|
597
|
+
description: string;
|
|
598
|
+
};
|
|
599
|
+
id: {
|
|
600
|
+
readonly type: StringConstructor;
|
|
601
|
+
readonly description: "Native id attribute for the input element.";
|
|
602
|
+
};
|
|
603
|
+
name: {
|
|
604
|
+
readonly type: StringConstructor;
|
|
605
|
+
readonly description: "Native name attribute for form submission.";
|
|
606
|
+
};
|
|
607
|
+
readonly: {
|
|
608
|
+
readonly type: BooleanConstructor;
|
|
609
|
+
readonly description: "Makes the field read-only without disabling it.";
|
|
495
610
|
};
|
|
496
|
-
id: StringConstructor;
|
|
497
|
-
name: StringConstructor;
|
|
498
|
-
readonly: BooleanConstructor;
|
|
499
611
|
validateOnInput: {
|
|
500
612
|
readonly type: BooleanConstructor;
|
|
501
613
|
readonly default: true;
|
|
614
|
+
readonly description: "Runs validation on each input event when true.";
|
|
615
|
+
};
|
|
616
|
+
label: {
|
|
617
|
+
readonly type: StringConstructor;
|
|
618
|
+
readonly description: "Visible label text for the field.";
|
|
619
|
+
};
|
|
620
|
+
helper: {
|
|
621
|
+
readonly type: StringConstructor;
|
|
622
|
+
readonly description: "Helper text shown below the field.";
|
|
623
|
+
};
|
|
624
|
+
error: {
|
|
625
|
+
readonly type: StringConstructor;
|
|
626
|
+
readonly description: "External error message; overrides rule errors when set.";
|
|
627
|
+
};
|
|
628
|
+
hideFooter: {
|
|
629
|
+
readonly type: BooleanConstructor;
|
|
630
|
+
readonly description: "Hides the footer area (helper / error).";
|
|
502
631
|
};
|
|
503
|
-
label: StringConstructor;
|
|
504
|
-
helper: StringConstructor;
|
|
505
|
-
error: StringConstructor;
|
|
506
|
-
hideFooter: BooleanConstructor;
|
|
507
632
|
rules: {
|
|
508
633
|
readonly type: ArrayConstructor;
|
|
509
634
|
readonly default: () => never[];
|
|
635
|
+
readonly description: "Validation rule functions or rule descriptors.";
|
|
636
|
+
};
|
|
637
|
+
tooltip: {
|
|
638
|
+
readonly type: StringConstructor;
|
|
639
|
+
readonly description: "Optional tooltip text next to the label.";
|
|
640
|
+
};
|
|
641
|
+
skipFormRegistry: {
|
|
642
|
+
readonly type: BooleanConstructor;
|
|
643
|
+
readonly description: "Skips registering this field with a parent x-form.";
|
|
644
|
+
};
|
|
645
|
+
disabled: {
|
|
646
|
+
readonly type: BooleanConstructor;
|
|
647
|
+
readonly description: "Disables interaction and applies disabled styling.";
|
|
648
|
+
};
|
|
649
|
+
loading: {
|
|
650
|
+
readonly type: BooleanConstructor;
|
|
651
|
+
readonly description: "Shows a loading indicator and blocks interaction.";
|
|
652
|
+
};
|
|
653
|
+
loadingLabel: {
|
|
654
|
+
readonly type: StringConstructor;
|
|
655
|
+
readonly description: "Accessible label announced while loading.";
|
|
510
656
|
};
|
|
511
|
-
tooltip: StringConstructor;
|
|
512
|
-
skipFormRegistry: BooleanConstructor;
|
|
513
|
-
disabled: BooleanConstructor;
|
|
514
|
-
loading: BooleanConstructor;
|
|
515
|
-
loadingLabel: StringConstructor;
|
|
516
657
|
loadingStatus: {
|
|
517
658
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
518
659
|
readonly default: "active";
|
|
660
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
519
661
|
};
|
|
520
662
|
size: {
|
|
521
|
-
readonly type: PropType<
|
|
663
|
+
readonly type: PropType<Size>;
|
|
522
664
|
readonly default: "md";
|
|
523
665
|
readonly validator: (value: string) => boolean;
|
|
666
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
524
667
|
};
|
|
525
668
|
};
|
|
526
669
|
export type DatepickerProps = ExtractPublicPropTypes<typeof datepickerProps>;
|
|
527
670
|
type InternalClasses = 'wrapper';
|
|
528
|
-
|
|
671
|
+
type InternalExtraData = {
|
|
672
|
+
isInsideInputGroup: boolean;
|
|
673
|
+
};
|
|
674
|
+
export interface DatepickerTheme extends ThemeComponent<DatepickerProps, InternalClasses, InternalExtraData> {
|
|
529
675
|
}
|
|
530
676
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
531
677
|
multiCalendars: {
|
|
@@ -535,34 +681,42 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
535
681
|
count: string | number;
|
|
536
682
|
}> | undefined>;
|
|
537
683
|
default: undefined;
|
|
684
|
+
description: string;
|
|
538
685
|
};
|
|
539
686
|
modelValue: {
|
|
540
687
|
type: PropType<ModelValue>;
|
|
541
688
|
default: null;
|
|
689
|
+
description: string;
|
|
542
690
|
};
|
|
543
691
|
modelType: {
|
|
544
692
|
type: PropType<string | undefined>;
|
|
545
693
|
default: null;
|
|
694
|
+
description: string;
|
|
546
695
|
};
|
|
547
696
|
position: {
|
|
548
697
|
type: PropType<"left" | "right" | "center" | undefined>;
|
|
549
698
|
default: string;
|
|
699
|
+
description: string;
|
|
550
700
|
};
|
|
551
701
|
dark: {
|
|
552
702
|
type: PropType<boolean>;
|
|
553
703
|
default: boolean;
|
|
704
|
+
description: string;
|
|
554
705
|
};
|
|
555
706
|
format: {
|
|
556
707
|
type: PropType<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined>;
|
|
557
708
|
default: () => null;
|
|
709
|
+
description: string;
|
|
558
710
|
};
|
|
559
711
|
autoPosition: {
|
|
560
712
|
type: PropType<boolean>;
|
|
561
713
|
default: boolean;
|
|
714
|
+
description: string;
|
|
562
715
|
};
|
|
563
716
|
altPosition: {
|
|
564
717
|
type: PropType<((el: HTMLElement | undefined) => Record<string, string | number>) | undefined>;
|
|
565
718
|
default: null;
|
|
719
|
+
description: string;
|
|
566
720
|
};
|
|
567
721
|
transitions: {
|
|
568
722
|
type: PropType<Partial<boolean | {
|
|
@@ -576,14 +730,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
576
730
|
vPrevious?: string | undefined;
|
|
577
731
|
} | undefined>>;
|
|
578
732
|
default: boolean;
|
|
733
|
+
description: string;
|
|
579
734
|
};
|
|
580
735
|
formatLocale: {
|
|
581
736
|
type: PropType<Locale>;
|
|
582
737
|
default: null;
|
|
738
|
+
description: string;
|
|
583
739
|
};
|
|
584
740
|
utc: {
|
|
585
741
|
type: PropType<boolean | "preserve">;
|
|
586
742
|
default: boolean;
|
|
743
|
+
description: string;
|
|
587
744
|
};
|
|
588
745
|
ariaLabels: {
|
|
589
746
|
type: PropType<Partial<{
|
|
@@ -616,14 +773,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
616
773
|
timeOverlay?: ((type: import("@vuepic/vue-datepicker").TimeType) => string) | undefined;
|
|
617
774
|
} | undefined>>;
|
|
618
775
|
default: () => {};
|
|
776
|
+
description: string;
|
|
619
777
|
};
|
|
620
778
|
offset: {
|
|
621
779
|
type: PropType<string | number>;
|
|
622
780
|
default: number;
|
|
781
|
+
description: string;
|
|
623
782
|
};
|
|
624
783
|
hideNavigation: {
|
|
625
784
|
type: PropType<("month" | "year" | "calendar" | "time" | "minutes" | "hours" | "seconds")[] | undefined>;
|
|
626
785
|
default: () => never[];
|
|
786
|
+
description: string;
|
|
627
787
|
};
|
|
628
788
|
timezone: {
|
|
629
789
|
type: PropType<string | {
|
|
@@ -634,86 +794,107 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
634
794
|
convertModel?: boolean | undefined;
|
|
635
795
|
} | undefined>;
|
|
636
796
|
default: null;
|
|
797
|
+
description: string;
|
|
637
798
|
};
|
|
638
799
|
vertical: {
|
|
639
800
|
type: PropType<boolean>;
|
|
640
801
|
default: boolean;
|
|
802
|
+
description: string;
|
|
641
803
|
};
|
|
642
804
|
disableMonthYearSelect: {
|
|
643
805
|
type: PropType<boolean>;
|
|
644
806
|
default: boolean;
|
|
807
|
+
description: string;
|
|
645
808
|
};
|
|
646
809
|
disableYearSelect: {
|
|
647
810
|
type: PropType<boolean>;
|
|
648
811
|
default: boolean;
|
|
812
|
+
description: string;
|
|
649
813
|
};
|
|
650
814
|
dayClass: {
|
|
651
815
|
type: PropType<(date: Date) => string>;
|
|
652
816
|
default: null;
|
|
817
|
+
description: string;
|
|
653
818
|
};
|
|
654
819
|
yearRange: {
|
|
655
820
|
type: PropType<number[]>;
|
|
656
821
|
default: () => number[];
|
|
822
|
+
description: string;
|
|
657
823
|
};
|
|
658
824
|
enableTimePicker: {
|
|
659
825
|
type: PropType<boolean>;
|
|
660
826
|
default: boolean;
|
|
827
|
+
description: string;
|
|
661
828
|
};
|
|
662
829
|
autoApply: {
|
|
663
830
|
type: PropType<boolean>;
|
|
664
831
|
default: boolean;
|
|
832
|
+
description: string;
|
|
665
833
|
};
|
|
666
834
|
disabledDates: {
|
|
667
835
|
type: PropType<string[] | Date[] | ((date: Date) => boolean) | undefined>;
|
|
668
836
|
default: () => never[];
|
|
837
|
+
description: string;
|
|
669
838
|
};
|
|
670
839
|
monthNameFormat: {
|
|
671
840
|
type: PropType<"long" | "short">;
|
|
672
841
|
default: string;
|
|
842
|
+
description: string;
|
|
673
843
|
};
|
|
674
844
|
startDate: {
|
|
675
845
|
type: PropType<string | Date>;
|
|
676
846
|
default: null;
|
|
847
|
+
description: string;
|
|
677
848
|
};
|
|
678
849
|
startTime: {
|
|
679
850
|
type: PropType<import("@vuepic/vue-datepicker").PartialTimeObj | import("@vuepic/vue-datepicker").PartialTimeObj[] | undefined>;
|
|
680
851
|
default: null;
|
|
852
|
+
description: string;
|
|
681
853
|
};
|
|
682
854
|
hideOffsetDates: {
|
|
683
855
|
type: PropType<boolean>;
|
|
684
856
|
default: boolean;
|
|
857
|
+
description: string;
|
|
685
858
|
};
|
|
686
859
|
noToday: {
|
|
687
860
|
type: PropType<boolean>;
|
|
688
861
|
default: boolean;
|
|
862
|
+
description: string;
|
|
689
863
|
};
|
|
690
864
|
disabledWeekDays: {
|
|
691
865
|
type: PropType<string[] | number[]>;
|
|
692
866
|
default: () => never[];
|
|
867
|
+
description: string;
|
|
693
868
|
};
|
|
694
869
|
allowedDates: {
|
|
695
870
|
type: PropType<string[] | Date[]>;
|
|
696
871
|
default: null;
|
|
872
|
+
description: string;
|
|
697
873
|
};
|
|
698
874
|
nowButtonLabel: {
|
|
699
875
|
type: PropType<string>;
|
|
700
876
|
default: string;
|
|
877
|
+
description: string;
|
|
701
878
|
};
|
|
702
879
|
markers: {
|
|
703
880
|
type: PropType<import("@vuepic/vue-datepicker").DatePickerMarker[] | undefined>;
|
|
704
881
|
default: () => never[];
|
|
882
|
+
description: string;
|
|
705
883
|
};
|
|
706
884
|
escClose: {
|
|
707
885
|
type: PropType<boolean>;
|
|
708
886
|
default: boolean;
|
|
887
|
+
description: string;
|
|
709
888
|
};
|
|
710
889
|
spaceConfirm: {
|
|
711
890
|
type: PropType<boolean>;
|
|
712
891
|
default: boolean;
|
|
892
|
+
description: string;
|
|
713
893
|
};
|
|
714
894
|
monthChangeOnArrows: {
|
|
715
895
|
type: PropType<boolean>;
|
|
716
896
|
default: boolean;
|
|
897
|
+
description: string;
|
|
717
898
|
};
|
|
718
899
|
presetDates: {
|
|
719
900
|
type: PropType<{
|
|
@@ -725,26 +906,32 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
725
906
|
testId?: string | undefined;
|
|
726
907
|
}[] | undefined>;
|
|
727
908
|
default: () => never[];
|
|
909
|
+
description: string;
|
|
728
910
|
};
|
|
729
911
|
flow: {
|
|
730
912
|
type: PropType<("month" | "year" | "calendar" | "time" | "minutes" | "hours" | "seconds")[] | undefined>;
|
|
731
913
|
default: () => never[];
|
|
914
|
+
description: string;
|
|
732
915
|
};
|
|
733
916
|
partialFlow: {
|
|
734
917
|
type: PropType<boolean>;
|
|
735
918
|
default: boolean;
|
|
919
|
+
description: string;
|
|
736
920
|
};
|
|
737
921
|
preventMinMaxNavigation: {
|
|
738
922
|
type: PropType<boolean>;
|
|
739
923
|
default: boolean;
|
|
924
|
+
description: string;
|
|
740
925
|
};
|
|
741
926
|
reverseYears: {
|
|
742
927
|
type: PropType<boolean>;
|
|
743
928
|
default: boolean;
|
|
929
|
+
description: string;
|
|
744
930
|
};
|
|
745
931
|
weekPicker: {
|
|
746
932
|
type: PropType<boolean>;
|
|
747
933
|
default: boolean;
|
|
934
|
+
description: string;
|
|
748
935
|
};
|
|
749
936
|
filters: {
|
|
750
937
|
type: PropType<Partial<{
|
|
@@ -757,10 +944,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
757
944
|
} | undefined;
|
|
758
945
|
} | undefined>>;
|
|
759
946
|
default: () => {};
|
|
947
|
+
description: string;
|
|
760
948
|
};
|
|
761
949
|
arrowNavigation: {
|
|
762
950
|
type: PropType<boolean>;
|
|
763
951
|
default: boolean;
|
|
952
|
+
description: string;
|
|
764
953
|
};
|
|
765
954
|
highlight: {
|
|
766
955
|
type: PropType<((date: Date[], disabled?: boolean | undefined) => boolean) | ((month: {
|
|
@@ -771,26 +960,32 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
771
960
|
year: number;
|
|
772
961
|
}) => boolean) | Partial<import("@vuepic/vue-datepicker").Highlight> | undefined>;
|
|
773
962
|
default: null;
|
|
963
|
+
description: string;
|
|
774
964
|
};
|
|
775
965
|
teleport: {
|
|
776
966
|
type: PropType<string | boolean | HTMLElement>;
|
|
777
967
|
default: null;
|
|
968
|
+
description: string;
|
|
778
969
|
};
|
|
779
970
|
teleportCenter: {
|
|
780
971
|
type: PropType<boolean>;
|
|
781
972
|
default: boolean;
|
|
973
|
+
description: string;
|
|
782
974
|
};
|
|
783
975
|
locale: {
|
|
784
976
|
type: PropType<string>;
|
|
785
977
|
default: string;
|
|
978
|
+
description: string;
|
|
786
979
|
};
|
|
787
980
|
weekNumName: {
|
|
788
981
|
type: PropType<string>;
|
|
789
982
|
default: string;
|
|
983
|
+
description: string;
|
|
790
984
|
};
|
|
791
985
|
weekStart: {
|
|
792
986
|
type: PropType<0 | 1 | "0" | "1" | 2 | 3 | 4 | 5 | 6 | "2" | "3" | "4" | "5" | "6" | undefined>;
|
|
793
987
|
default: number;
|
|
988
|
+
description: string;
|
|
794
989
|
};
|
|
795
990
|
weekNumbers: {
|
|
796
991
|
type: PropType<import("@vuepic/vue-datepicker").WeekNumberType | {
|
|
@@ -798,156 +993,194 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
798
993
|
hideOnOffsetDates?: boolean | undefined;
|
|
799
994
|
} | undefined>;
|
|
800
995
|
default: null;
|
|
996
|
+
description: string;
|
|
801
997
|
};
|
|
802
998
|
monthChangeOnScroll: {
|
|
803
999
|
type: PropType<boolean | "inverse">;
|
|
804
1000
|
default: boolean;
|
|
1001
|
+
description: string;
|
|
805
1002
|
};
|
|
806
1003
|
dayNames: {
|
|
807
1004
|
type: PropType<string[] | ((lang: string, weekStart: number) => string[])>;
|
|
808
1005
|
default: null;
|
|
1006
|
+
description: string;
|
|
809
1007
|
};
|
|
810
1008
|
monthPicker: {
|
|
811
1009
|
type: PropType<boolean>;
|
|
812
1010
|
default: boolean;
|
|
1011
|
+
description: string;
|
|
813
1012
|
};
|
|
814
1013
|
customProps: {
|
|
815
1014
|
type: PropType<Record<string, unknown>>;
|
|
816
1015
|
default: null;
|
|
1016
|
+
description: string;
|
|
817
1017
|
};
|
|
818
1018
|
yearPicker: {
|
|
819
1019
|
type: PropType<boolean>;
|
|
820
1020
|
default: boolean;
|
|
1021
|
+
description: string;
|
|
821
1022
|
};
|
|
822
1023
|
modelAuto: {
|
|
823
1024
|
type: PropType<boolean>;
|
|
824
1025
|
default: boolean;
|
|
1026
|
+
description: string;
|
|
825
1027
|
};
|
|
826
1028
|
selectText: {
|
|
827
1029
|
type: PropType<string>;
|
|
828
1030
|
default: string;
|
|
1031
|
+
description: string;
|
|
829
1032
|
};
|
|
830
1033
|
cancelText: {
|
|
831
1034
|
type: PropType<string>;
|
|
832
1035
|
default: string;
|
|
1036
|
+
description: string;
|
|
833
1037
|
};
|
|
834
1038
|
previewFormat: {
|
|
835
1039
|
type: PropType<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined>;
|
|
836
1040
|
default: () => string;
|
|
1041
|
+
description: string;
|
|
837
1042
|
};
|
|
838
1043
|
multiDates: {
|
|
839
1044
|
type: PropType<boolean>;
|
|
840
1045
|
default: boolean;
|
|
1046
|
+
description: string;
|
|
841
1047
|
};
|
|
842
1048
|
ignoreTimeValidation: {
|
|
843
1049
|
type: PropType<boolean>;
|
|
844
1050
|
default: boolean;
|
|
1051
|
+
description: string;
|
|
845
1052
|
};
|
|
846
1053
|
minDate: {
|
|
847
1054
|
type: PropType<string | Date>;
|
|
848
1055
|
default: null;
|
|
1056
|
+
description: string;
|
|
849
1057
|
};
|
|
850
1058
|
maxDate: {
|
|
851
1059
|
type: PropType<string | Date>;
|
|
852
1060
|
default: null;
|
|
1061
|
+
description: string;
|
|
853
1062
|
};
|
|
854
1063
|
minTime: {
|
|
855
1064
|
type: PropType<Partial<TimeModel>>;
|
|
856
1065
|
default: null;
|
|
1066
|
+
description: string;
|
|
857
1067
|
};
|
|
858
1068
|
maxTime: {
|
|
859
1069
|
type: PropType<Partial<TimeModel>>;
|
|
860
1070
|
default: null;
|
|
1071
|
+
description: string;
|
|
861
1072
|
};
|
|
862
1073
|
placeholder: {
|
|
863
1074
|
type: PropType<string>;
|
|
864
1075
|
default: string;
|
|
1076
|
+
description: string;
|
|
865
1077
|
};
|
|
866
1078
|
hideInputIcon: {
|
|
867
1079
|
type: PropType<boolean>;
|
|
868
1080
|
default: boolean;
|
|
1081
|
+
description: string;
|
|
869
1082
|
};
|
|
870
1083
|
clearable: {
|
|
871
1084
|
type: PropType<boolean>;
|
|
872
1085
|
default: boolean;
|
|
1086
|
+
description: string;
|
|
873
1087
|
};
|
|
874
1088
|
alwaysClearable: {
|
|
875
1089
|
type: PropType<boolean>;
|
|
876
1090
|
default: boolean;
|
|
1091
|
+
description: string;
|
|
877
1092
|
};
|
|
878
1093
|
state: {
|
|
879
1094
|
type: PropType<boolean | undefined>;
|
|
880
1095
|
default: null;
|
|
1096
|
+
description: string;
|
|
881
1097
|
};
|
|
882
1098
|
required: {
|
|
883
1099
|
type: PropType<boolean>;
|
|
884
1100
|
default: boolean;
|
|
1101
|
+
description: string;
|
|
885
1102
|
};
|
|
886
1103
|
autocomplete: {
|
|
887
1104
|
type: PropType<string>;
|
|
888
1105
|
default: string;
|
|
1106
|
+
description: string;
|
|
889
1107
|
};
|
|
890
1108
|
timePicker: {
|
|
891
1109
|
type: PropType<boolean>;
|
|
892
1110
|
default: boolean;
|
|
1111
|
+
description: string;
|
|
893
1112
|
};
|
|
894
1113
|
enableSeconds: {
|
|
895
1114
|
type: PropType<boolean>;
|
|
896
1115
|
default: boolean;
|
|
1116
|
+
description: string;
|
|
897
1117
|
};
|
|
898
1118
|
is24: {
|
|
899
1119
|
type: PropType<boolean>;
|
|
900
1120
|
default: boolean;
|
|
1121
|
+
description: string;
|
|
901
1122
|
};
|
|
902
1123
|
noHoursOverlay: {
|
|
903
1124
|
type: PropType<boolean>;
|
|
904
1125
|
default: boolean;
|
|
1126
|
+
description: string;
|
|
905
1127
|
};
|
|
906
1128
|
noMinutesOverlay: {
|
|
907
1129
|
type: PropType<boolean>;
|
|
908
1130
|
default: boolean;
|
|
1131
|
+
description: string;
|
|
909
1132
|
};
|
|
910
1133
|
noSecondsOverlay: {
|
|
911
1134
|
type: PropType<boolean>;
|
|
912
1135
|
default: boolean;
|
|
1136
|
+
description: string;
|
|
913
1137
|
};
|
|
914
1138
|
hoursGridIncrement: {
|
|
915
1139
|
type: PropType<string | number>;
|
|
916
1140
|
default: number;
|
|
1141
|
+
description: string;
|
|
917
1142
|
};
|
|
918
1143
|
minutesGridIncrement: {
|
|
919
1144
|
type: PropType<string | number>;
|
|
920
1145
|
default: number;
|
|
1146
|
+
description: string;
|
|
921
1147
|
};
|
|
922
1148
|
secondsGridIncrement: {
|
|
923
1149
|
type: PropType<string | number>;
|
|
924
1150
|
default: number;
|
|
1151
|
+
description: string;
|
|
925
1152
|
};
|
|
926
1153
|
hoursIncrement: {
|
|
927
1154
|
type: PropType<string | number>;
|
|
928
1155
|
default: number;
|
|
1156
|
+
description: string;
|
|
929
1157
|
};
|
|
930
1158
|
minutesIncrement: {
|
|
931
1159
|
type: PropType<string | number>;
|
|
932
1160
|
default: number;
|
|
1161
|
+
description: string;
|
|
933
1162
|
};
|
|
934
1163
|
secondsIncrement: {
|
|
935
1164
|
type: PropType<string | number>;
|
|
936
1165
|
default: number;
|
|
1166
|
+
description: string;
|
|
937
1167
|
};
|
|
938
1168
|
range: {
|
|
939
1169
|
type: PropType<boolean | import("@vuepic/vue-datepicker").RangeConfig | undefined>;
|
|
940
1170
|
default: boolean;
|
|
1171
|
+
description: string;
|
|
941
1172
|
};
|
|
942
1173
|
uid: {
|
|
943
1174
|
type: PropType<string>;
|
|
944
1175
|
default: null;
|
|
1176
|
+
description: string;
|
|
945
1177
|
};
|
|
946
1178
|
inline: {
|
|
947
1179
|
type: PropType<boolean | {
|
|
948
1180
|
input?: boolean | undefined;
|
|
949
1181
|
} | undefined>;
|
|
950
1182
|
default: boolean;
|
|
1183
|
+
description: string;
|
|
951
1184
|
};
|
|
952
1185
|
textInput: {
|
|
953
1186
|
type: PropType<boolean | {
|
|
@@ -960,91 +1193,146 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
960
1193
|
escClose?: boolean | undefined;
|
|
961
1194
|
} | undefined>;
|
|
962
1195
|
default: boolean;
|
|
1196
|
+
description: string;
|
|
963
1197
|
};
|
|
964
1198
|
noDisabledRange: {
|
|
965
1199
|
type: PropType<boolean>;
|
|
966
1200
|
default: boolean;
|
|
1201
|
+
description: string;
|
|
967
1202
|
};
|
|
968
1203
|
sixWeeks: {
|
|
969
1204
|
type: PropType<boolean | "center" | "append" | "prepend" | "fair" | undefined>;
|
|
970
1205
|
default: boolean;
|
|
1206
|
+
description: string;
|
|
971
1207
|
};
|
|
972
1208
|
actionRow: {
|
|
973
1209
|
type: PropType<Partial<any>>;
|
|
974
1210
|
default: () => {};
|
|
1211
|
+
description: string;
|
|
975
1212
|
};
|
|
976
1213
|
focusStartDate: {
|
|
977
1214
|
type: PropType<boolean>;
|
|
978
1215
|
default: boolean;
|
|
1216
|
+
description: string;
|
|
979
1217
|
};
|
|
980
1218
|
disabledTimes: {
|
|
981
1219
|
type: PropType<((time: import("@vuepic/vue-datepicker").TimeObj | (import("@vuepic/vue-datepicker").TimeObj | undefined)[]) => boolean) | import("@vuepic/vue-datepicker").DisabledTime[] | [import("@vuepic/vue-datepicker").DisabledTime[], import("@vuepic/vue-datepicker").DisabledTime[]] | undefined>;
|
|
982
1220
|
default: undefined;
|
|
1221
|
+
description: string;
|
|
983
1222
|
};
|
|
984
1223
|
showLastInRange: {
|
|
985
1224
|
type: PropType<boolean>;
|
|
986
1225
|
default: boolean;
|
|
1226
|
+
description: string;
|
|
987
1227
|
};
|
|
988
1228
|
timePickerInline: {
|
|
989
1229
|
type: PropType<boolean>;
|
|
990
1230
|
default: boolean;
|
|
1231
|
+
description: string;
|
|
991
1232
|
};
|
|
992
1233
|
calendar: {
|
|
993
1234
|
type: PropType<((weeks: import("@vuepic/vue-datepicker").CalendarWeek[]) => import("@vuepic/vue-datepicker").CalendarWeek[]) | undefined>;
|
|
994
1235
|
default: null;
|
|
1236
|
+
description: string;
|
|
995
1237
|
};
|
|
996
1238
|
config: {
|
|
997
1239
|
type: PropType<Partial<import("@vuepic/vue-datepicker").GeneralConfig | undefined>>;
|
|
998
1240
|
default: undefined;
|
|
1241
|
+
description: string;
|
|
999
1242
|
};
|
|
1000
1243
|
quarterPicker: {
|
|
1001
1244
|
type: PropType<boolean>;
|
|
1002
1245
|
default: boolean;
|
|
1246
|
+
description: string;
|
|
1003
1247
|
};
|
|
1004
1248
|
yearFirst: {
|
|
1005
1249
|
type: PropType<boolean>;
|
|
1006
1250
|
default: boolean;
|
|
1251
|
+
description: string;
|
|
1007
1252
|
};
|
|
1008
1253
|
onInternalModelChange: {
|
|
1009
1254
|
type: PropType<(...args: any[]) => void>;
|
|
1010
1255
|
default: null;
|
|
1256
|
+
description: string;
|
|
1011
1257
|
};
|
|
1012
1258
|
enableMinutes: {
|
|
1013
1259
|
type: PropType<boolean>;
|
|
1014
1260
|
default: boolean;
|
|
1261
|
+
description: string;
|
|
1015
1262
|
};
|
|
1016
1263
|
ui: {
|
|
1017
1264
|
type: PropType<Partial<Partial<import("@vuepic/vue-datepicker").UIOptions> | undefined>>;
|
|
1018
1265
|
default: () => {};
|
|
1266
|
+
description: string;
|
|
1267
|
+
};
|
|
1268
|
+
id: {
|
|
1269
|
+
readonly type: StringConstructor;
|
|
1270
|
+
readonly description: "Native id attribute for the input element.";
|
|
1271
|
+
};
|
|
1272
|
+
name: {
|
|
1273
|
+
readonly type: StringConstructor;
|
|
1274
|
+
readonly description: "Native name attribute for form submission.";
|
|
1275
|
+
};
|
|
1276
|
+
readonly: {
|
|
1277
|
+
readonly type: BooleanConstructor;
|
|
1278
|
+
readonly description: "Makes the field read-only without disabling it.";
|
|
1019
1279
|
};
|
|
1020
|
-
id: StringConstructor;
|
|
1021
|
-
name: StringConstructor;
|
|
1022
|
-
readonly: BooleanConstructor;
|
|
1023
1280
|
validateOnInput: {
|
|
1024
1281
|
readonly type: BooleanConstructor;
|
|
1025
1282
|
readonly default: true;
|
|
1283
|
+
readonly description: "Runs validation on each input event when true.";
|
|
1284
|
+
};
|
|
1285
|
+
label: {
|
|
1286
|
+
readonly type: StringConstructor;
|
|
1287
|
+
readonly description: "Visible label text for the field.";
|
|
1288
|
+
};
|
|
1289
|
+
helper: {
|
|
1290
|
+
readonly type: StringConstructor;
|
|
1291
|
+
readonly description: "Helper text shown below the field.";
|
|
1292
|
+
};
|
|
1293
|
+
error: {
|
|
1294
|
+
readonly type: StringConstructor;
|
|
1295
|
+
readonly description: "External error message; overrides rule errors when set.";
|
|
1296
|
+
};
|
|
1297
|
+
hideFooter: {
|
|
1298
|
+
readonly type: BooleanConstructor;
|
|
1299
|
+
readonly description: "Hides the footer area (helper / error).";
|
|
1026
1300
|
};
|
|
1027
|
-
label: StringConstructor;
|
|
1028
|
-
helper: StringConstructor;
|
|
1029
|
-
error: StringConstructor;
|
|
1030
|
-
hideFooter: BooleanConstructor;
|
|
1031
1301
|
rules: {
|
|
1032
1302
|
readonly type: ArrayConstructor;
|
|
1033
1303
|
readonly default: () => never[];
|
|
1304
|
+
readonly description: "Validation rule functions or rule descriptors.";
|
|
1305
|
+
};
|
|
1306
|
+
tooltip: {
|
|
1307
|
+
readonly type: StringConstructor;
|
|
1308
|
+
readonly description: "Optional tooltip text next to the label.";
|
|
1309
|
+
};
|
|
1310
|
+
skipFormRegistry: {
|
|
1311
|
+
readonly type: BooleanConstructor;
|
|
1312
|
+
readonly description: "Skips registering this field with a parent x-form.";
|
|
1313
|
+
};
|
|
1314
|
+
disabled: {
|
|
1315
|
+
readonly type: BooleanConstructor;
|
|
1316
|
+
readonly description: "Disables interaction and applies disabled styling.";
|
|
1317
|
+
};
|
|
1318
|
+
loading: {
|
|
1319
|
+
readonly type: BooleanConstructor;
|
|
1320
|
+
readonly description: "Shows a loading indicator and blocks interaction.";
|
|
1321
|
+
};
|
|
1322
|
+
loadingLabel: {
|
|
1323
|
+
readonly type: StringConstructor;
|
|
1324
|
+
readonly description: "Accessible label announced while loading.";
|
|
1034
1325
|
};
|
|
1035
|
-
tooltip: StringConstructor;
|
|
1036
|
-
skipFormRegistry: BooleanConstructor;
|
|
1037
|
-
disabled: BooleanConstructor;
|
|
1038
|
-
loading: BooleanConstructor;
|
|
1039
|
-
loadingLabel: StringConstructor;
|
|
1040
1326
|
loadingStatus: {
|
|
1041
1327
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
1042
1328
|
readonly default: "active";
|
|
1329
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
1043
1330
|
};
|
|
1044
1331
|
size: {
|
|
1045
|
-
readonly type: PropType<
|
|
1332
|
+
readonly type: PropType<Size>;
|
|
1046
1333
|
readonly default: "md";
|
|
1047
1334
|
readonly validator: (value: string) => boolean;
|
|
1335
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
1048
1336
|
};
|
|
1049
1337
|
}>, {
|
|
1050
1338
|
focus: () => void;
|
|
@@ -1058,34 +1346,42 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
1058
1346
|
count: string | number;
|
|
1059
1347
|
}> | undefined>;
|
|
1060
1348
|
default: undefined;
|
|
1349
|
+
description: string;
|
|
1061
1350
|
};
|
|
1062
1351
|
modelValue: {
|
|
1063
1352
|
type: PropType<ModelValue>;
|
|
1064
1353
|
default: null;
|
|
1354
|
+
description: string;
|
|
1065
1355
|
};
|
|
1066
1356
|
modelType: {
|
|
1067
1357
|
type: PropType<string | undefined>;
|
|
1068
1358
|
default: null;
|
|
1359
|
+
description: string;
|
|
1069
1360
|
};
|
|
1070
1361
|
position: {
|
|
1071
1362
|
type: PropType<"left" | "right" | "center" | undefined>;
|
|
1072
1363
|
default: string;
|
|
1364
|
+
description: string;
|
|
1073
1365
|
};
|
|
1074
1366
|
dark: {
|
|
1075
1367
|
type: PropType<boolean>;
|
|
1076
1368
|
default: boolean;
|
|
1369
|
+
description: string;
|
|
1077
1370
|
};
|
|
1078
1371
|
format: {
|
|
1079
1372
|
type: PropType<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined>;
|
|
1080
1373
|
default: () => null;
|
|
1374
|
+
description: string;
|
|
1081
1375
|
};
|
|
1082
1376
|
autoPosition: {
|
|
1083
1377
|
type: PropType<boolean>;
|
|
1084
1378
|
default: boolean;
|
|
1379
|
+
description: string;
|
|
1085
1380
|
};
|
|
1086
1381
|
altPosition: {
|
|
1087
1382
|
type: PropType<((el: HTMLElement | undefined) => Record<string, string | number>) | undefined>;
|
|
1088
1383
|
default: null;
|
|
1384
|
+
description: string;
|
|
1089
1385
|
};
|
|
1090
1386
|
transitions: {
|
|
1091
1387
|
type: PropType<Partial<boolean | {
|
|
@@ -1099,14 +1395,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
1099
1395
|
vPrevious?: string | undefined;
|
|
1100
1396
|
} | undefined>>;
|
|
1101
1397
|
default: boolean;
|
|
1398
|
+
description: string;
|
|
1102
1399
|
};
|
|
1103
1400
|
formatLocale: {
|
|
1104
1401
|
type: PropType<Locale>;
|
|
1105
1402
|
default: null;
|
|
1403
|
+
description: string;
|
|
1106
1404
|
};
|
|
1107
1405
|
utc: {
|
|
1108
1406
|
type: PropType<boolean | "preserve">;
|
|
1109
1407
|
default: boolean;
|
|
1408
|
+
description: string;
|
|
1110
1409
|
};
|
|
1111
1410
|
ariaLabels: {
|
|
1112
1411
|
type: PropType<Partial<{
|
|
@@ -1139,14 +1438,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
1139
1438
|
timeOverlay?: ((type: import("@vuepic/vue-datepicker").TimeType) => string) | undefined;
|
|
1140
1439
|
} | undefined>>;
|
|
1141
1440
|
default: () => {};
|
|
1441
|
+
description: string;
|
|
1142
1442
|
};
|
|
1143
1443
|
offset: {
|
|
1144
1444
|
type: PropType<string | number>;
|
|
1145
1445
|
default: number;
|
|
1446
|
+
description: string;
|
|
1146
1447
|
};
|
|
1147
1448
|
hideNavigation: {
|
|
1148
1449
|
type: PropType<("month" | "year" | "calendar" | "time" | "minutes" | "hours" | "seconds")[] | undefined>;
|
|
1149
1450
|
default: () => never[];
|
|
1451
|
+
description: string;
|
|
1150
1452
|
};
|
|
1151
1453
|
timezone: {
|
|
1152
1454
|
type: PropType<string | {
|
|
@@ -1157,86 +1459,107 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
1157
1459
|
convertModel?: boolean | undefined;
|
|
1158
1460
|
} | undefined>;
|
|
1159
1461
|
default: null;
|
|
1462
|
+
description: string;
|
|
1160
1463
|
};
|
|
1161
1464
|
vertical: {
|
|
1162
1465
|
type: PropType<boolean>;
|
|
1163
1466
|
default: boolean;
|
|
1467
|
+
description: string;
|
|
1164
1468
|
};
|
|
1165
1469
|
disableMonthYearSelect: {
|
|
1166
1470
|
type: PropType<boolean>;
|
|
1167
1471
|
default: boolean;
|
|
1472
|
+
description: string;
|
|
1168
1473
|
};
|
|
1169
1474
|
disableYearSelect: {
|
|
1170
1475
|
type: PropType<boolean>;
|
|
1171
1476
|
default: boolean;
|
|
1477
|
+
description: string;
|
|
1172
1478
|
};
|
|
1173
1479
|
dayClass: {
|
|
1174
1480
|
type: PropType<(date: Date) => string>;
|
|
1175
1481
|
default: null;
|
|
1482
|
+
description: string;
|
|
1176
1483
|
};
|
|
1177
1484
|
yearRange: {
|
|
1178
1485
|
type: PropType<number[]>;
|
|
1179
1486
|
default: () => number[];
|
|
1487
|
+
description: string;
|
|
1180
1488
|
};
|
|
1181
1489
|
enableTimePicker: {
|
|
1182
1490
|
type: PropType<boolean>;
|
|
1183
1491
|
default: boolean;
|
|
1492
|
+
description: string;
|
|
1184
1493
|
};
|
|
1185
1494
|
autoApply: {
|
|
1186
1495
|
type: PropType<boolean>;
|
|
1187
1496
|
default: boolean;
|
|
1497
|
+
description: string;
|
|
1188
1498
|
};
|
|
1189
1499
|
disabledDates: {
|
|
1190
1500
|
type: PropType<string[] | Date[] | ((date: Date) => boolean) | undefined>;
|
|
1191
1501
|
default: () => never[];
|
|
1502
|
+
description: string;
|
|
1192
1503
|
};
|
|
1193
1504
|
monthNameFormat: {
|
|
1194
1505
|
type: PropType<"long" | "short">;
|
|
1195
1506
|
default: string;
|
|
1507
|
+
description: string;
|
|
1196
1508
|
};
|
|
1197
1509
|
startDate: {
|
|
1198
1510
|
type: PropType<string | Date>;
|
|
1199
1511
|
default: null;
|
|
1512
|
+
description: string;
|
|
1200
1513
|
};
|
|
1201
1514
|
startTime: {
|
|
1202
1515
|
type: PropType<import("@vuepic/vue-datepicker").PartialTimeObj | import("@vuepic/vue-datepicker").PartialTimeObj[] | undefined>;
|
|
1203
1516
|
default: null;
|
|
1517
|
+
description: string;
|
|
1204
1518
|
};
|
|
1205
1519
|
hideOffsetDates: {
|
|
1206
1520
|
type: PropType<boolean>;
|
|
1207
1521
|
default: boolean;
|
|
1522
|
+
description: string;
|
|
1208
1523
|
};
|
|
1209
1524
|
noToday: {
|
|
1210
1525
|
type: PropType<boolean>;
|
|
1211
1526
|
default: boolean;
|
|
1527
|
+
description: string;
|
|
1212
1528
|
};
|
|
1213
1529
|
disabledWeekDays: {
|
|
1214
1530
|
type: PropType<string[] | number[]>;
|
|
1215
1531
|
default: () => never[];
|
|
1532
|
+
description: string;
|
|
1216
1533
|
};
|
|
1217
1534
|
allowedDates: {
|
|
1218
1535
|
type: PropType<string[] | Date[]>;
|
|
1219
1536
|
default: null;
|
|
1537
|
+
description: string;
|
|
1220
1538
|
};
|
|
1221
1539
|
nowButtonLabel: {
|
|
1222
1540
|
type: PropType<string>;
|
|
1223
1541
|
default: string;
|
|
1542
|
+
description: string;
|
|
1224
1543
|
};
|
|
1225
1544
|
markers: {
|
|
1226
1545
|
type: PropType<import("@vuepic/vue-datepicker").DatePickerMarker[] | undefined>;
|
|
1227
1546
|
default: () => never[];
|
|
1547
|
+
description: string;
|
|
1228
1548
|
};
|
|
1229
1549
|
escClose: {
|
|
1230
1550
|
type: PropType<boolean>;
|
|
1231
1551
|
default: boolean;
|
|
1552
|
+
description: string;
|
|
1232
1553
|
};
|
|
1233
1554
|
spaceConfirm: {
|
|
1234
1555
|
type: PropType<boolean>;
|
|
1235
1556
|
default: boolean;
|
|
1557
|
+
description: string;
|
|
1236
1558
|
};
|
|
1237
1559
|
monthChangeOnArrows: {
|
|
1238
1560
|
type: PropType<boolean>;
|
|
1239
1561
|
default: boolean;
|
|
1562
|
+
description: string;
|
|
1240
1563
|
};
|
|
1241
1564
|
presetDates: {
|
|
1242
1565
|
type: PropType<{
|
|
@@ -1248,26 +1571,32 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
1248
1571
|
testId?: string | undefined;
|
|
1249
1572
|
}[] | undefined>;
|
|
1250
1573
|
default: () => never[];
|
|
1574
|
+
description: string;
|
|
1251
1575
|
};
|
|
1252
1576
|
flow: {
|
|
1253
1577
|
type: PropType<("month" | "year" | "calendar" | "time" | "minutes" | "hours" | "seconds")[] | undefined>;
|
|
1254
1578
|
default: () => never[];
|
|
1579
|
+
description: string;
|
|
1255
1580
|
};
|
|
1256
1581
|
partialFlow: {
|
|
1257
1582
|
type: PropType<boolean>;
|
|
1258
1583
|
default: boolean;
|
|
1584
|
+
description: string;
|
|
1259
1585
|
};
|
|
1260
1586
|
preventMinMaxNavigation: {
|
|
1261
1587
|
type: PropType<boolean>;
|
|
1262
1588
|
default: boolean;
|
|
1589
|
+
description: string;
|
|
1263
1590
|
};
|
|
1264
1591
|
reverseYears: {
|
|
1265
1592
|
type: PropType<boolean>;
|
|
1266
1593
|
default: boolean;
|
|
1594
|
+
description: string;
|
|
1267
1595
|
};
|
|
1268
1596
|
weekPicker: {
|
|
1269
1597
|
type: PropType<boolean>;
|
|
1270
1598
|
default: boolean;
|
|
1599
|
+
description: string;
|
|
1271
1600
|
};
|
|
1272
1601
|
filters: {
|
|
1273
1602
|
type: PropType<Partial<{
|
|
@@ -1280,10 +1609,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
1280
1609
|
} | undefined;
|
|
1281
1610
|
} | undefined>>;
|
|
1282
1611
|
default: () => {};
|
|
1612
|
+
description: string;
|
|
1283
1613
|
};
|
|
1284
1614
|
arrowNavigation: {
|
|
1285
1615
|
type: PropType<boolean>;
|
|
1286
1616
|
default: boolean;
|
|
1617
|
+
description: string;
|
|
1287
1618
|
};
|
|
1288
1619
|
highlight: {
|
|
1289
1620
|
type: PropType<((date: Date[], disabled?: boolean | undefined) => boolean) | ((month: {
|
|
@@ -1294,26 +1625,32 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
1294
1625
|
year: number;
|
|
1295
1626
|
}) => boolean) | Partial<import("@vuepic/vue-datepicker").Highlight> | undefined>;
|
|
1296
1627
|
default: null;
|
|
1628
|
+
description: string;
|
|
1297
1629
|
};
|
|
1298
1630
|
teleport: {
|
|
1299
1631
|
type: PropType<string | boolean | HTMLElement>;
|
|
1300
1632
|
default: null;
|
|
1633
|
+
description: string;
|
|
1301
1634
|
};
|
|
1302
1635
|
teleportCenter: {
|
|
1303
1636
|
type: PropType<boolean>;
|
|
1304
1637
|
default: boolean;
|
|
1638
|
+
description: string;
|
|
1305
1639
|
};
|
|
1306
1640
|
locale: {
|
|
1307
1641
|
type: PropType<string>;
|
|
1308
1642
|
default: string;
|
|
1643
|
+
description: string;
|
|
1309
1644
|
};
|
|
1310
1645
|
weekNumName: {
|
|
1311
1646
|
type: PropType<string>;
|
|
1312
1647
|
default: string;
|
|
1648
|
+
description: string;
|
|
1313
1649
|
};
|
|
1314
1650
|
weekStart: {
|
|
1315
1651
|
type: PropType<0 | 1 | "0" | "1" | 2 | 3 | 4 | 5 | 6 | "2" | "3" | "4" | "5" | "6" | undefined>;
|
|
1316
1652
|
default: number;
|
|
1653
|
+
description: string;
|
|
1317
1654
|
};
|
|
1318
1655
|
weekNumbers: {
|
|
1319
1656
|
type: PropType<import("@vuepic/vue-datepicker").WeekNumberType | {
|
|
@@ -1321,156 +1658,194 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
1321
1658
|
hideOnOffsetDates?: boolean | undefined;
|
|
1322
1659
|
} | undefined>;
|
|
1323
1660
|
default: null;
|
|
1661
|
+
description: string;
|
|
1324
1662
|
};
|
|
1325
1663
|
monthChangeOnScroll: {
|
|
1326
1664
|
type: PropType<boolean | "inverse">;
|
|
1327
1665
|
default: boolean;
|
|
1666
|
+
description: string;
|
|
1328
1667
|
};
|
|
1329
1668
|
dayNames: {
|
|
1330
1669
|
type: PropType<string[] | ((lang: string, weekStart: number) => string[])>;
|
|
1331
1670
|
default: null;
|
|
1671
|
+
description: string;
|
|
1332
1672
|
};
|
|
1333
1673
|
monthPicker: {
|
|
1334
1674
|
type: PropType<boolean>;
|
|
1335
1675
|
default: boolean;
|
|
1676
|
+
description: string;
|
|
1336
1677
|
};
|
|
1337
1678
|
customProps: {
|
|
1338
1679
|
type: PropType<Record<string, unknown>>;
|
|
1339
1680
|
default: null;
|
|
1681
|
+
description: string;
|
|
1340
1682
|
};
|
|
1341
1683
|
yearPicker: {
|
|
1342
1684
|
type: PropType<boolean>;
|
|
1343
1685
|
default: boolean;
|
|
1686
|
+
description: string;
|
|
1344
1687
|
};
|
|
1345
1688
|
modelAuto: {
|
|
1346
1689
|
type: PropType<boolean>;
|
|
1347
1690
|
default: boolean;
|
|
1691
|
+
description: string;
|
|
1348
1692
|
};
|
|
1349
1693
|
selectText: {
|
|
1350
1694
|
type: PropType<string>;
|
|
1351
1695
|
default: string;
|
|
1696
|
+
description: string;
|
|
1352
1697
|
};
|
|
1353
1698
|
cancelText: {
|
|
1354
1699
|
type: PropType<string>;
|
|
1355
1700
|
default: string;
|
|
1701
|
+
description: string;
|
|
1356
1702
|
};
|
|
1357
1703
|
previewFormat: {
|
|
1358
1704
|
type: PropType<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined>;
|
|
1359
1705
|
default: () => string;
|
|
1706
|
+
description: string;
|
|
1360
1707
|
};
|
|
1361
1708
|
multiDates: {
|
|
1362
1709
|
type: PropType<boolean>;
|
|
1363
1710
|
default: boolean;
|
|
1711
|
+
description: string;
|
|
1364
1712
|
};
|
|
1365
1713
|
ignoreTimeValidation: {
|
|
1366
1714
|
type: PropType<boolean>;
|
|
1367
1715
|
default: boolean;
|
|
1716
|
+
description: string;
|
|
1368
1717
|
};
|
|
1369
1718
|
minDate: {
|
|
1370
1719
|
type: PropType<string | Date>;
|
|
1371
1720
|
default: null;
|
|
1721
|
+
description: string;
|
|
1372
1722
|
};
|
|
1373
1723
|
maxDate: {
|
|
1374
1724
|
type: PropType<string | Date>;
|
|
1375
1725
|
default: null;
|
|
1726
|
+
description: string;
|
|
1376
1727
|
};
|
|
1377
1728
|
minTime: {
|
|
1378
1729
|
type: PropType<Partial<TimeModel>>;
|
|
1379
1730
|
default: null;
|
|
1731
|
+
description: string;
|
|
1380
1732
|
};
|
|
1381
1733
|
maxTime: {
|
|
1382
1734
|
type: PropType<Partial<TimeModel>>;
|
|
1383
1735
|
default: null;
|
|
1736
|
+
description: string;
|
|
1384
1737
|
};
|
|
1385
1738
|
placeholder: {
|
|
1386
1739
|
type: PropType<string>;
|
|
1387
1740
|
default: string;
|
|
1741
|
+
description: string;
|
|
1388
1742
|
};
|
|
1389
1743
|
hideInputIcon: {
|
|
1390
1744
|
type: PropType<boolean>;
|
|
1391
1745
|
default: boolean;
|
|
1746
|
+
description: string;
|
|
1392
1747
|
};
|
|
1393
1748
|
clearable: {
|
|
1394
1749
|
type: PropType<boolean>;
|
|
1395
1750
|
default: boolean;
|
|
1751
|
+
description: string;
|
|
1396
1752
|
};
|
|
1397
1753
|
alwaysClearable: {
|
|
1398
1754
|
type: PropType<boolean>;
|
|
1399
1755
|
default: boolean;
|
|
1756
|
+
description: string;
|
|
1400
1757
|
};
|
|
1401
1758
|
state: {
|
|
1402
1759
|
type: PropType<boolean | undefined>;
|
|
1403
1760
|
default: null;
|
|
1761
|
+
description: string;
|
|
1404
1762
|
};
|
|
1405
1763
|
required: {
|
|
1406
1764
|
type: PropType<boolean>;
|
|
1407
1765
|
default: boolean;
|
|
1766
|
+
description: string;
|
|
1408
1767
|
};
|
|
1409
1768
|
autocomplete: {
|
|
1410
1769
|
type: PropType<string>;
|
|
1411
1770
|
default: string;
|
|
1771
|
+
description: string;
|
|
1412
1772
|
};
|
|
1413
1773
|
timePicker: {
|
|
1414
1774
|
type: PropType<boolean>;
|
|
1415
1775
|
default: boolean;
|
|
1776
|
+
description: string;
|
|
1416
1777
|
};
|
|
1417
1778
|
enableSeconds: {
|
|
1418
1779
|
type: PropType<boolean>;
|
|
1419
1780
|
default: boolean;
|
|
1781
|
+
description: string;
|
|
1420
1782
|
};
|
|
1421
1783
|
is24: {
|
|
1422
1784
|
type: PropType<boolean>;
|
|
1423
1785
|
default: boolean;
|
|
1786
|
+
description: string;
|
|
1424
1787
|
};
|
|
1425
1788
|
noHoursOverlay: {
|
|
1426
1789
|
type: PropType<boolean>;
|
|
1427
1790
|
default: boolean;
|
|
1791
|
+
description: string;
|
|
1428
1792
|
};
|
|
1429
1793
|
noMinutesOverlay: {
|
|
1430
1794
|
type: PropType<boolean>;
|
|
1431
1795
|
default: boolean;
|
|
1796
|
+
description: string;
|
|
1432
1797
|
};
|
|
1433
1798
|
noSecondsOverlay: {
|
|
1434
1799
|
type: PropType<boolean>;
|
|
1435
1800
|
default: boolean;
|
|
1801
|
+
description: string;
|
|
1436
1802
|
};
|
|
1437
1803
|
hoursGridIncrement: {
|
|
1438
1804
|
type: PropType<string | number>;
|
|
1439
1805
|
default: number;
|
|
1806
|
+
description: string;
|
|
1440
1807
|
};
|
|
1441
1808
|
minutesGridIncrement: {
|
|
1442
1809
|
type: PropType<string | number>;
|
|
1443
1810
|
default: number;
|
|
1811
|
+
description: string;
|
|
1444
1812
|
};
|
|
1445
1813
|
secondsGridIncrement: {
|
|
1446
1814
|
type: PropType<string | number>;
|
|
1447
1815
|
default: number;
|
|
1816
|
+
description: string;
|
|
1448
1817
|
};
|
|
1449
1818
|
hoursIncrement: {
|
|
1450
1819
|
type: PropType<string | number>;
|
|
1451
1820
|
default: number;
|
|
1821
|
+
description: string;
|
|
1452
1822
|
};
|
|
1453
1823
|
minutesIncrement: {
|
|
1454
1824
|
type: PropType<string | number>;
|
|
1455
1825
|
default: number;
|
|
1826
|
+
description: string;
|
|
1456
1827
|
};
|
|
1457
1828
|
secondsIncrement: {
|
|
1458
1829
|
type: PropType<string | number>;
|
|
1459
1830
|
default: number;
|
|
1831
|
+
description: string;
|
|
1460
1832
|
};
|
|
1461
1833
|
range: {
|
|
1462
1834
|
type: PropType<boolean | import("@vuepic/vue-datepicker").RangeConfig | undefined>;
|
|
1463
1835
|
default: boolean;
|
|
1836
|
+
description: string;
|
|
1464
1837
|
};
|
|
1465
1838
|
uid: {
|
|
1466
1839
|
type: PropType<string>;
|
|
1467
1840
|
default: null;
|
|
1841
|
+
description: string;
|
|
1468
1842
|
};
|
|
1469
1843
|
inline: {
|
|
1470
1844
|
type: PropType<boolean | {
|
|
1471
1845
|
input?: boolean | undefined;
|
|
1472
1846
|
} | undefined>;
|
|
1473
1847
|
default: boolean;
|
|
1848
|
+
description: string;
|
|
1474
1849
|
};
|
|
1475
1850
|
textInput: {
|
|
1476
1851
|
type: PropType<boolean | {
|
|
@@ -1483,97 +1858,152 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
1483
1858
|
escClose?: boolean | undefined;
|
|
1484
1859
|
} | undefined>;
|
|
1485
1860
|
default: boolean;
|
|
1861
|
+
description: string;
|
|
1486
1862
|
};
|
|
1487
1863
|
noDisabledRange: {
|
|
1488
1864
|
type: PropType<boolean>;
|
|
1489
1865
|
default: boolean;
|
|
1866
|
+
description: string;
|
|
1490
1867
|
};
|
|
1491
1868
|
sixWeeks: {
|
|
1492
1869
|
type: PropType<boolean | "center" | "append" | "prepend" | "fair" | undefined>;
|
|
1493
1870
|
default: boolean;
|
|
1871
|
+
description: string;
|
|
1494
1872
|
};
|
|
1495
1873
|
actionRow: {
|
|
1496
1874
|
type: PropType<Partial<any>>;
|
|
1497
1875
|
default: () => {};
|
|
1876
|
+
description: string;
|
|
1498
1877
|
};
|
|
1499
1878
|
focusStartDate: {
|
|
1500
1879
|
type: PropType<boolean>;
|
|
1501
1880
|
default: boolean;
|
|
1881
|
+
description: string;
|
|
1502
1882
|
};
|
|
1503
1883
|
disabledTimes: {
|
|
1504
1884
|
type: PropType<((time: import("@vuepic/vue-datepicker").TimeObj | (import("@vuepic/vue-datepicker").TimeObj | undefined)[]) => boolean) | import("@vuepic/vue-datepicker").DisabledTime[] | [import("@vuepic/vue-datepicker").DisabledTime[], import("@vuepic/vue-datepicker").DisabledTime[]] | undefined>;
|
|
1505
1885
|
default: undefined;
|
|
1886
|
+
description: string;
|
|
1506
1887
|
};
|
|
1507
1888
|
showLastInRange: {
|
|
1508
1889
|
type: PropType<boolean>;
|
|
1509
1890
|
default: boolean;
|
|
1891
|
+
description: string;
|
|
1510
1892
|
};
|
|
1511
1893
|
timePickerInline: {
|
|
1512
1894
|
type: PropType<boolean>;
|
|
1513
1895
|
default: boolean;
|
|
1896
|
+
description: string;
|
|
1514
1897
|
};
|
|
1515
1898
|
calendar: {
|
|
1516
1899
|
type: PropType<((weeks: import("@vuepic/vue-datepicker").CalendarWeek[]) => import("@vuepic/vue-datepicker").CalendarWeek[]) | undefined>;
|
|
1517
1900
|
default: null;
|
|
1901
|
+
description: string;
|
|
1518
1902
|
};
|
|
1519
1903
|
config: {
|
|
1520
1904
|
type: PropType<Partial<import("@vuepic/vue-datepicker").GeneralConfig | undefined>>;
|
|
1521
1905
|
default: undefined;
|
|
1906
|
+
description: string;
|
|
1522
1907
|
};
|
|
1523
1908
|
quarterPicker: {
|
|
1524
1909
|
type: PropType<boolean>;
|
|
1525
1910
|
default: boolean;
|
|
1911
|
+
description: string;
|
|
1526
1912
|
};
|
|
1527
1913
|
yearFirst: {
|
|
1528
1914
|
type: PropType<boolean>;
|
|
1529
1915
|
default: boolean;
|
|
1916
|
+
description: string;
|
|
1530
1917
|
};
|
|
1531
1918
|
onInternalModelChange: {
|
|
1532
1919
|
type: PropType<(...args: any[]) => void>;
|
|
1533
1920
|
default: null;
|
|
1921
|
+
description: string;
|
|
1534
1922
|
};
|
|
1535
1923
|
enableMinutes: {
|
|
1536
1924
|
type: PropType<boolean>;
|
|
1537
1925
|
default: boolean;
|
|
1926
|
+
description: string;
|
|
1538
1927
|
};
|
|
1539
1928
|
ui: {
|
|
1540
1929
|
type: PropType<Partial<Partial<import("@vuepic/vue-datepicker").UIOptions> | undefined>>;
|
|
1541
1930
|
default: () => {};
|
|
1931
|
+
description: string;
|
|
1932
|
+
};
|
|
1933
|
+
id: {
|
|
1934
|
+
readonly type: StringConstructor;
|
|
1935
|
+
readonly description: "Native id attribute for the input element.";
|
|
1936
|
+
};
|
|
1937
|
+
name: {
|
|
1938
|
+
readonly type: StringConstructor;
|
|
1939
|
+
readonly description: "Native name attribute for form submission.";
|
|
1940
|
+
};
|
|
1941
|
+
readonly: {
|
|
1942
|
+
readonly type: BooleanConstructor;
|
|
1943
|
+
readonly description: "Makes the field read-only without disabling it.";
|
|
1542
1944
|
};
|
|
1543
|
-
id: StringConstructor;
|
|
1544
|
-
name: StringConstructor;
|
|
1545
|
-
readonly: BooleanConstructor;
|
|
1546
1945
|
validateOnInput: {
|
|
1547
1946
|
readonly type: BooleanConstructor;
|
|
1548
1947
|
readonly default: true;
|
|
1948
|
+
readonly description: "Runs validation on each input event when true.";
|
|
1949
|
+
};
|
|
1950
|
+
label: {
|
|
1951
|
+
readonly type: StringConstructor;
|
|
1952
|
+
readonly description: "Visible label text for the field.";
|
|
1953
|
+
};
|
|
1954
|
+
helper: {
|
|
1955
|
+
readonly type: StringConstructor;
|
|
1956
|
+
readonly description: "Helper text shown below the field.";
|
|
1957
|
+
};
|
|
1958
|
+
error: {
|
|
1959
|
+
readonly type: StringConstructor;
|
|
1960
|
+
readonly description: "External error message; overrides rule errors when set.";
|
|
1961
|
+
};
|
|
1962
|
+
hideFooter: {
|
|
1963
|
+
readonly type: BooleanConstructor;
|
|
1964
|
+
readonly description: "Hides the footer area (helper / error).";
|
|
1549
1965
|
};
|
|
1550
|
-
label: StringConstructor;
|
|
1551
|
-
helper: StringConstructor;
|
|
1552
|
-
error: StringConstructor;
|
|
1553
|
-
hideFooter: BooleanConstructor;
|
|
1554
1966
|
rules: {
|
|
1555
1967
|
readonly type: ArrayConstructor;
|
|
1556
1968
|
readonly default: () => never[];
|
|
1969
|
+
readonly description: "Validation rule functions or rule descriptors.";
|
|
1970
|
+
};
|
|
1971
|
+
tooltip: {
|
|
1972
|
+
readonly type: StringConstructor;
|
|
1973
|
+
readonly description: "Optional tooltip text next to the label.";
|
|
1974
|
+
};
|
|
1975
|
+
skipFormRegistry: {
|
|
1976
|
+
readonly type: BooleanConstructor;
|
|
1977
|
+
readonly description: "Skips registering this field with a parent x-form.";
|
|
1978
|
+
};
|
|
1979
|
+
disabled: {
|
|
1980
|
+
readonly type: BooleanConstructor;
|
|
1981
|
+
readonly description: "Disables interaction and applies disabled styling.";
|
|
1982
|
+
};
|
|
1983
|
+
loading: {
|
|
1984
|
+
readonly type: BooleanConstructor;
|
|
1985
|
+
readonly description: "Shows a loading indicator and blocks interaction.";
|
|
1986
|
+
};
|
|
1987
|
+
loadingLabel: {
|
|
1988
|
+
readonly type: StringConstructor;
|
|
1989
|
+
readonly description: "Accessible label announced while loading.";
|
|
1557
1990
|
};
|
|
1558
|
-
tooltip: StringConstructor;
|
|
1559
|
-
skipFormRegistry: BooleanConstructor;
|
|
1560
|
-
disabled: BooleanConstructor;
|
|
1561
|
-
loading: BooleanConstructor;
|
|
1562
|
-
loadingLabel: StringConstructor;
|
|
1563
1991
|
loadingStatus: {
|
|
1564
1992
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
1565
1993
|
readonly default: "active";
|
|
1994
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
1566
1995
|
};
|
|
1567
1996
|
size: {
|
|
1568
|
-
readonly type: PropType<
|
|
1997
|
+
readonly type: PropType<Size>;
|
|
1569
1998
|
readonly default: "md";
|
|
1570
1999
|
readonly validator: (value: string) => boolean;
|
|
2000
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
1571
2001
|
};
|
|
1572
2002
|
}>> & Readonly<{
|
|
1573
2003
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
1574
2004
|
}>, {
|
|
1575
2005
|
disabled: boolean;
|
|
1576
|
-
size:
|
|
2006
|
+
size: Size;
|
|
1577
2007
|
position: "left" | "right" | "center" | undefined;
|
|
1578
2008
|
loading: boolean;
|
|
1579
2009
|
loadingStatus: import("../loader/Loader.vue").LoaderStatus;
|