@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,72 +1,137 @@
|
|
|
1
|
-
import { type PropType, type ExtractPublicPropTypes, type Ref, nextTick } from 'vue';
|
|
1
|
+
import { type PropType, type ExtractPublicPropTypes, type Ref, type ComputedRef, nextTick } from 'vue';
|
|
2
2
|
import { type ThemeComponent } from '../../composables/useTheme';
|
|
3
|
+
import type { Size } from '../../composables/useCommon';
|
|
4
|
+
import type { InputGroupPosition } from '../../common/inputGroupRadius';
|
|
3
5
|
import XPopover from '../popover/Popover.vue';
|
|
4
6
|
declare const selectProps: {
|
|
5
|
-
placeholder:
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
7
|
+
placeholder: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
description: string;
|
|
10
|
+
};
|
|
11
|
+
options: {
|
|
12
|
+
type: PropType<SelectOption[]>;
|
|
13
|
+
description: string;
|
|
14
|
+
};
|
|
15
|
+
multiple: import("vue").Prop<boolean | undefined>;
|
|
16
|
+
multipleCheckbox: import("vue").Prop<boolean | undefined>;
|
|
17
|
+
truncate: import("vue").Prop<boolean | undefined>;
|
|
18
|
+
flat: import("vue").Prop<boolean | undefined>;
|
|
19
|
+
native: import("vue").Prop<boolean | undefined>;
|
|
20
|
+
filterable: import("vue").Prop<boolean | undefined>;
|
|
21
|
+
clearable: import("vue").Prop<boolean | undefined>;
|
|
14
22
|
filterPlaceholder: {
|
|
15
23
|
type: StringConstructor;
|
|
16
24
|
default: string;
|
|
25
|
+
description: string;
|
|
26
|
+
};
|
|
27
|
+
filterablePrefix: import("vue").Prop<boolean | undefined>;
|
|
28
|
+
filterableSuffix: import("vue").Prop<boolean | undefined>;
|
|
29
|
+
hideSelectedOptionSlots: import("vue").Prop<boolean | undefined>;
|
|
30
|
+
virtualList: import("vue").Prop<boolean | undefined>;
|
|
31
|
+
virtualListOffsetTop: {
|
|
32
|
+
type: NumberConstructor;
|
|
33
|
+
description: string;
|
|
34
|
+
};
|
|
35
|
+
virtualListOffsetBottom: {
|
|
36
|
+
type: NumberConstructor;
|
|
37
|
+
description: string;
|
|
17
38
|
};
|
|
18
|
-
filterablePrefix: BooleanConstructor;
|
|
19
|
-
filterableSuffix: BooleanConstructor;
|
|
20
|
-
hideSelectedOptionSlots: BooleanConstructor;
|
|
21
|
-
virtualList: BooleanConstructor;
|
|
22
|
-
virtualListOffsetTop: NumberConstructor;
|
|
23
|
-
virtualListOffsetBottom: NumberConstructor;
|
|
24
39
|
virtualListItemHeight: {
|
|
25
40
|
type: NumberConstructor;
|
|
26
41
|
default: number;
|
|
42
|
+
description: string;
|
|
27
43
|
};
|
|
28
44
|
virtualListOverscan: {
|
|
29
45
|
type: NumberConstructor;
|
|
30
46
|
default: number;
|
|
47
|
+
description: string;
|
|
48
|
+
};
|
|
49
|
+
placement: {
|
|
50
|
+
type: PropType<import("floating-vue").Placement>;
|
|
51
|
+
description: string;
|
|
31
52
|
};
|
|
32
|
-
placement: PropType<import("floating-vue").Placement>;
|
|
33
53
|
modelValue: {
|
|
34
54
|
readonly type: PropType<string | number | boolean | object | any[] | undefined>;
|
|
35
55
|
readonly default: undefined;
|
|
56
|
+
readonly description: "Bound value (v-model).";
|
|
57
|
+
};
|
|
58
|
+
id: {
|
|
59
|
+
readonly type: StringConstructor;
|
|
60
|
+
readonly description: "Native id attribute for the input element.";
|
|
61
|
+
};
|
|
62
|
+
name: {
|
|
63
|
+
readonly type: StringConstructor;
|
|
64
|
+
readonly description: "Native name attribute for form submission.";
|
|
65
|
+
};
|
|
66
|
+
readonly: {
|
|
67
|
+
readonly type: BooleanConstructor;
|
|
68
|
+
readonly description: "Makes the field read-only without disabling it.";
|
|
69
|
+
};
|
|
70
|
+
required: {
|
|
71
|
+
readonly type: BooleanConstructor;
|
|
72
|
+
readonly description: "Marks the field as required for validation.";
|
|
36
73
|
};
|
|
37
|
-
id: StringConstructor;
|
|
38
|
-
name: StringConstructor;
|
|
39
|
-
readonly: BooleanConstructor;
|
|
40
|
-
required: BooleanConstructor;
|
|
41
74
|
validateOnInput: {
|
|
42
75
|
readonly type: BooleanConstructor;
|
|
43
76
|
readonly default: true;
|
|
77
|
+
readonly description: "Runs validation on each input event when true.";
|
|
78
|
+
};
|
|
79
|
+
label: {
|
|
80
|
+
readonly type: StringConstructor;
|
|
81
|
+
readonly description: "Visible label text for the field.";
|
|
82
|
+
};
|
|
83
|
+
helper: {
|
|
84
|
+
readonly type: StringConstructor;
|
|
85
|
+
readonly description: "Helper text shown below the field.";
|
|
86
|
+
};
|
|
87
|
+
error: {
|
|
88
|
+
readonly type: StringConstructor;
|
|
89
|
+
readonly description: "External error message; overrides rule errors when set.";
|
|
90
|
+
};
|
|
91
|
+
hideFooter: {
|
|
92
|
+
readonly type: BooleanConstructor;
|
|
93
|
+
readonly description: "Hides the footer area (helper / error).";
|
|
44
94
|
};
|
|
45
|
-
label: StringConstructor;
|
|
46
|
-
helper: StringConstructor;
|
|
47
|
-
error: StringConstructor;
|
|
48
|
-
hideFooter: BooleanConstructor;
|
|
49
95
|
rules: {
|
|
50
96
|
readonly type: ArrayConstructor;
|
|
51
97
|
readonly default: () => never[];
|
|
98
|
+
readonly description: "Validation rule functions or rule descriptors.";
|
|
99
|
+
};
|
|
100
|
+
tooltip: {
|
|
101
|
+
readonly type: StringConstructor;
|
|
102
|
+
readonly description: "Optional tooltip text next to the label.";
|
|
103
|
+
};
|
|
104
|
+
skipFormRegistry: {
|
|
105
|
+
readonly type: BooleanConstructor;
|
|
106
|
+
readonly description: "Skips registering this field with a parent x-form.";
|
|
107
|
+
};
|
|
108
|
+
disabled: {
|
|
109
|
+
readonly type: BooleanConstructor;
|
|
110
|
+
readonly description: "Disables interaction and applies disabled styling.";
|
|
111
|
+
};
|
|
112
|
+
loading: {
|
|
113
|
+
readonly type: BooleanConstructor;
|
|
114
|
+
readonly description: "Shows a loading indicator and blocks interaction.";
|
|
115
|
+
};
|
|
116
|
+
loadingLabel: {
|
|
117
|
+
readonly type: StringConstructor;
|
|
118
|
+
readonly description: "Accessible label announced while loading.";
|
|
52
119
|
};
|
|
53
|
-
tooltip: StringConstructor;
|
|
54
|
-
skipFormRegistry: BooleanConstructor;
|
|
55
|
-
disabled: BooleanConstructor;
|
|
56
|
-
loading: BooleanConstructor;
|
|
57
|
-
loadingLabel: StringConstructor;
|
|
58
120
|
loadingStatus: {
|
|
59
121
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
60
122
|
readonly default: "active";
|
|
123
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
61
124
|
};
|
|
62
125
|
size: {
|
|
63
|
-
readonly type: PropType<
|
|
126
|
+
readonly type: PropType<Size>;
|
|
64
127
|
readonly default: "md";
|
|
65
128
|
readonly validator: (value: string) => boolean;
|
|
129
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
66
130
|
};
|
|
67
131
|
color: {
|
|
68
132
|
readonly type: StringConstructor;
|
|
69
133
|
readonly default: string | undefined;
|
|
134
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
70
135
|
};
|
|
71
136
|
};
|
|
72
137
|
export type SelectOption = {
|
|
@@ -82,76 +147,142 @@ export type SelectProps = ExtractPublicPropTypes<typeof selectProps>;
|
|
|
82
147
|
type InternalClasses = 'wrapper' | 'box' | 'truncateCounter' | 'content' | 'search' | 'contentBody' | 'iconWrapper' | 'clearButton' | 'icon';
|
|
83
148
|
type InternalExtraData = {
|
|
84
149
|
errorInternal: Ref<boolean>;
|
|
150
|
+
isInsideInputGroup: boolean;
|
|
151
|
+
inputGroupPosition: InputGroupPosition | undefined;
|
|
152
|
+
isPopoverOpen: ComputedRef<boolean>;
|
|
85
153
|
};
|
|
86
154
|
export interface SelectTheme extends ThemeComponent<SelectProps, InternalClasses, InternalExtraData> {
|
|
87
155
|
}
|
|
88
156
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
89
157
|
filter: import('vue').PropType<any>;
|
|
90
|
-
placeholder:
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
158
|
+
placeholder: {
|
|
159
|
+
type: StringConstructor;
|
|
160
|
+
description: string;
|
|
161
|
+
};
|
|
162
|
+
options: {
|
|
163
|
+
type: PropType<SelectOption[]>;
|
|
164
|
+
description: string;
|
|
165
|
+
};
|
|
166
|
+
multiple: import("vue").Prop<boolean | undefined>;
|
|
167
|
+
multipleCheckbox: import("vue").Prop<boolean | undefined>;
|
|
168
|
+
truncate: import("vue").Prop<boolean | undefined>;
|
|
169
|
+
flat: import("vue").Prop<boolean | undefined>;
|
|
170
|
+
native: import("vue").Prop<boolean | undefined>;
|
|
171
|
+
filterable: import("vue").Prop<boolean | undefined>;
|
|
172
|
+
clearable: import("vue").Prop<boolean | undefined>;
|
|
99
173
|
filterPlaceholder: {
|
|
100
174
|
type: StringConstructor;
|
|
101
175
|
default: string;
|
|
176
|
+
description: string;
|
|
177
|
+
};
|
|
178
|
+
filterablePrefix: import("vue").Prop<boolean | undefined>;
|
|
179
|
+
filterableSuffix: import("vue").Prop<boolean | undefined>;
|
|
180
|
+
hideSelectedOptionSlots: import("vue").Prop<boolean | undefined>;
|
|
181
|
+
virtualList: import("vue").Prop<boolean | undefined>;
|
|
182
|
+
virtualListOffsetTop: {
|
|
183
|
+
type: NumberConstructor;
|
|
184
|
+
description: string;
|
|
185
|
+
};
|
|
186
|
+
virtualListOffsetBottom: {
|
|
187
|
+
type: NumberConstructor;
|
|
188
|
+
description: string;
|
|
102
189
|
};
|
|
103
|
-
filterablePrefix: BooleanConstructor;
|
|
104
|
-
filterableSuffix: BooleanConstructor;
|
|
105
|
-
hideSelectedOptionSlots: BooleanConstructor;
|
|
106
|
-
virtualList: BooleanConstructor;
|
|
107
|
-
virtualListOffsetTop: NumberConstructor;
|
|
108
|
-
virtualListOffsetBottom: NumberConstructor;
|
|
109
190
|
virtualListItemHeight: {
|
|
110
191
|
type: NumberConstructor;
|
|
111
192
|
default: number;
|
|
193
|
+
description: string;
|
|
112
194
|
};
|
|
113
195
|
virtualListOverscan: {
|
|
114
196
|
type: NumberConstructor;
|
|
115
197
|
default: number;
|
|
198
|
+
description: string;
|
|
199
|
+
};
|
|
200
|
+
placement: {
|
|
201
|
+
type: PropType<import("floating-vue").Placement>;
|
|
202
|
+
description: string;
|
|
116
203
|
};
|
|
117
|
-
placement: PropType<import("floating-vue").Placement>;
|
|
118
204
|
modelValue: {
|
|
119
205
|
readonly type: PropType<string | number | boolean | object | any[] | undefined>;
|
|
120
206
|
readonly default: undefined;
|
|
207
|
+
readonly description: "Bound value (v-model).";
|
|
208
|
+
};
|
|
209
|
+
id: {
|
|
210
|
+
readonly type: StringConstructor;
|
|
211
|
+
readonly description: "Native id attribute for the input element.";
|
|
212
|
+
};
|
|
213
|
+
name: {
|
|
214
|
+
readonly type: StringConstructor;
|
|
215
|
+
readonly description: "Native name attribute for form submission.";
|
|
216
|
+
};
|
|
217
|
+
readonly: {
|
|
218
|
+
readonly type: BooleanConstructor;
|
|
219
|
+
readonly description: "Makes the field read-only without disabling it.";
|
|
220
|
+
};
|
|
221
|
+
required: {
|
|
222
|
+
readonly type: BooleanConstructor;
|
|
223
|
+
readonly description: "Marks the field as required for validation.";
|
|
121
224
|
};
|
|
122
|
-
id: StringConstructor;
|
|
123
|
-
name: StringConstructor;
|
|
124
|
-
readonly: BooleanConstructor;
|
|
125
|
-
required: BooleanConstructor;
|
|
126
225
|
validateOnInput: {
|
|
127
226
|
readonly type: BooleanConstructor;
|
|
128
227
|
readonly default: true;
|
|
228
|
+
readonly description: "Runs validation on each input event when true.";
|
|
229
|
+
};
|
|
230
|
+
label: {
|
|
231
|
+
readonly type: StringConstructor;
|
|
232
|
+
readonly description: "Visible label text for the field.";
|
|
233
|
+
};
|
|
234
|
+
helper: {
|
|
235
|
+
readonly type: StringConstructor;
|
|
236
|
+
readonly description: "Helper text shown below the field.";
|
|
237
|
+
};
|
|
238
|
+
error: {
|
|
239
|
+
readonly type: StringConstructor;
|
|
240
|
+
readonly description: "External error message; overrides rule errors when set.";
|
|
241
|
+
};
|
|
242
|
+
hideFooter: {
|
|
243
|
+
readonly type: BooleanConstructor;
|
|
244
|
+
readonly description: "Hides the footer area (helper / error).";
|
|
129
245
|
};
|
|
130
|
-
label: StringConstructor;
|
|
131
|
-
helper: StringConstructor;
|
|
132
|
-
error: StringConstructor;
|
|
133
|
-
hideFooter: BooleanConstructor;
|
|
134
246
|
rules: {
|
|
135
247
|
readonly type: ArrayConstructor;
|
|
136
248
|
readonly default: () => never[];
|
|
249
|
+
readonly description: "Validation rule functions or rule descriptors.";
|
|
250
|
+
};
|
|
251
|
+
tooltip: {
|
|
252
|
+
readonly type: StringConstructor;
|
|
253
|
+
readonly description: "Optional tooltip text next to the label.";
|
|
254
|
+
};
|
|
255
|
+
skipFormRegistry: {
|
|
256
|
+
readonly type: BooleanConstructor;
|
|
257
|
+
readonly description: "Skips registering this field with a parent x-form.";
|
|
258
|
+
};
|
|
259
|
+
disabled: {
|
|
260
|
+
readonly type: BooleanConstructor;
|
|
261
|
+
readonly description: "Disables interaction and applies disabled styling.";
|
|
262
|
+
};
|
|
263
|
+
loading: {
|
|
264
|
+
readonly type: BooleanConstructor;
|
|
265
|
+
readonly description: "Shows a loading indicator and blocks interaction.";
|
|
266
|
+
};
|
|
267
|
+
loadingLabel: {
|
|
268
|
+
readonly type: StringConstructor;
|
|
269
|
+
readonly description: "Accessible label announced while loading.";
|
|
137
270
|
};
|
|
138
|
-
tooltip: StringConstructor;
|
|
139
|
-
skipFormRegistry: BooleanConstructor;
|
|
140
|
-
disabled: BooleanConstructor;
|
|
141
|
-
loading: BooleanConstructor;
|
|
142
|
-
loadingLabel: StringConstructor;
|
|
143
271
|
loadingStatus: {
|
|
144
272
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
145
273
|
readonly default: "active";
|
|
274
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
146
275
|
};
|
|
147
276
|
size: {
|
|
148
|
-
readonly type: PropType<
|
|
277
|
+
readonly type: PropType<Size>;
|
|
149
278
|
readonly default: "md";
|
|
150
279
|
readonly validator: (value: string) => boolean;
|
|
280
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
151
281
|
};
|
|
152
282
|
color: {
|
|
153
283
|
readonly type: StringConstructor;
|
|
154
284
|
readonly default: string | undefined;
|
|
285
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
155
286
|
};
|
|
156
287
|
}>, {
|
|
157
288
|
focus: () => void | undefined;
|
|
@@ -166,8 +297,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
166
297
|
disabled: boolean;
|
|
167
298
|
type: string;
|
|
168
299
|
color: string;
|
|
169
|
-
size:
|
|
170
|
-
block: boolean;
|
|
300
|
+
size: Size;
|
|
171
301
|
loading: boolean;
|
|
172
302
|
loadingStatus: import("../loader/Loader.vue").LoaderStatus;
|
|
173
303
|
modelValue: string | number | boolean | object | any[] | undefined;
|
|
@@ -177,17 +307,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
177
307
|
hideFooter: boolean;
|
|
178
308
|
rules: unknown[];
|
|
179
309
|
skipFormRegistry: boolean;
|
|
180
|
-
clearable: boolean;
|
|
181
310
|
showPasswordToggle: boolean;
|
|
182
311
|
dir: "rtl" | "ltr";
|
|
183
|
-
showCounter: boolean;
|
|
184
312
|
}> & Omit<{
|
|
185
313
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
186
314
|
readonly disabled: boolean;
|
|
187
315
|
readonly type: string;
|
|
188
316
|
readonly color: string;
|
|
189
|
-
readonly size:
|
|
190
|
-
readonly block: boolean;
|
|
317
|
+
readonly size: Size;
|
|
191
318
|
readonly loading: boolean;
|
|
192
319
|
readonly loadingStatus: import("../loader/Loader.vue").LoaderStatus;
|
|
193
320
|
readonly readonly: boolean;
|
|
@@ -196,96 +323,30 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
196
323
|
readonly hideFooter: boolean;
|
|
197
324
|
readonly rules: unknown[];
|
|
198
325
|
readonly skipFormRegistry: boolean;
|
|
199
|
-
readonly clearable: boolean;
|
|
200
326
|
readonly showPasswordToggle: boolean;
|
|
201
327
|
readonly dir: "rtl" | "ltr";
|
|
202
|
-
readonly showCounter: boolean;
|
|
203
328
|
readonly error?: string | undefined;
|
|
204
329
|
readonly name?: string | undefined;
|
|
205
330
|
readonly icon?: string | undefined;
|
|
206
331
|
readonly iconLeft?: string | undefined;
|
|
207
332
|
readonly iconRight?: string | undefined;
|
|
333
|
+
readonly tooltip?: string | undefined;
|
|
334
|
+
readonly block?: boolean | undefined;
|
|
208
335
|
readonly loadingLabel?: string | undefined;
|
|
209
336
|
readonly modelValue?: string | number | boolean | object | any[] | undefined;
|
|
210
337
|
readonly id?: string | undefined;
|
|
211
338
|
readonly label?: string | undefined;
|
|
212
339
|
readonly helper?: string | undefined;
|
|
213
|
-
readonly tooltip?: string | undefined;
|
|
214
340
|
readonly placeholder?: string | undefined;
|
|
341
|
+
readonly clearable?: boolean | undefined;
|
|
215
342
|
readonly max?: string | number | undefined;
|
|
216
343
|
readonly maxlength?: string | number | undefined;
|
|
217
344
|
readonly min?: string | number | undefined;
|
|
218
345
|
readonly minlength?: string | number | undefined;
|
|
219
346
|
readonly step?: string | number | undefined;
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
default: boolean;
|
|
224
|
-
};
|
|
225
|
-
dir: {
|
|
226
|
-
type: PropType<"rtl" | "ltr">;
|
|
227
|
-
default: string;
|
|
228
|
-
};
|
|
229
|
-
icon: StringConstructor;
|
|
230
|
-
iconLeft: StringConstructor;
|
|
231
|
-
iconRight: StringConstructor;
|
|
232
|
-
max: (StringConstructor | NumberConstructor)[];
|
|
233
|
-
maxlength: (StringConstructor | NumberConstructor)[];
|
|
234
|
-
min: (StringConstructor | NumberConstructor)[];
|
|
235
|
-
minlength: (StringConstructor | NumberConstructor)[];
|
|
236
|
-
placeholder: StringConstructor;
|
|
237
|
-
type: {
|
|
238
|
-
type: StringConstructor;
|
|
239
|
-
default: string;
|
|
240
|
-
};
|
|
241
|
-
step: (StringConstructor | NumberConstructor)[];
|
|
242
|
-
block: BooleanConstructor;
|
|
243
|
-
showCounter: BooleanConstructor;
|
|
244
|
-
clearable: BooleanConstructor;
|
|
245
|
-
modelValue: {
|
|
246
|
-
readonly type: PropType<string | number | boolean | object | any[] | undefined>;
|
|
247
|
-
readonly default: undefined;
|
|
248
|
-
};
|
|
249
|
-
id: StringConstructor;
|
|
250
|
-
name: StringConstructor;
|
|
251
|
-
readonly: BooleanConstructor;
|
|
252
|
-
required: BooleanConstructor;
|
|
253
|
-
validateOnInput: {
|
|
254
|
-
readonly type: BooleanConstructor;
|
|
255
|
-
readonly default: true;
|
|
256
|
-
};
|
|
257
|
-
label: StringConstructor;
|
|
258
|
-
helper: StringConstructor;
|
|
259
|
-
error: StringConstructor;
|
|
260
|
-
hideFooter: BooleanConstructor;
|
|
261
|
-
rules: {
|
|
262
|
-
readonly type: ArrayConstructor;
|
|
263
|
-
readonly default: () => never[];
|
|
264
|
-
};
|
|
265
|
-
tooltip: StringConstructor;
|
|
266
|
-
skipFormRegistry: BooleanConstructor;
|
|
267
|
-
disabled: BooleanConstructor;
|
|
268
|
-
loading: BooleanConstructor;
|
|
269
|
-
loadingLabel: StringConstructor;
|
|
270
|
-
loadingStatus: {
|
|
271
|
-
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
272
|
-
readonly default: "active";
|
|
273
|
-
};
|
|
274
|
-
color: {
|
|
275
|
-
readonly type: StringConstructor;
|
|
276
|
-
readonly default: string | undefined;
|
|
277
|
-
};
|
|
278
|
-
size: {
|
|
279
|
-
readonly type: PropType<import("../../composables/useCommon").Size>;
|
|
280
|
-
readonly default: "md";
|
|
281
|
-
readonly validator: (value: string) => boolean;
|
|
282
|
-
};
|
|
283
|
-
}>> & Readonly<{
|
|
284
|
-
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
285
|
-
}>, "disabled" | "type" | "color" | "size" | "block" | "loading" | "loadingStatus" | "modelValue" | "readonly" | "required" | "validateOnInput" | "hideFooter" | "rules" | "skipFormRegistry" | "clearable" | "showPasswordToggle" | "dir" | "showCounter">;
|
|
286
|
-
$attrs: {
|
|
287
|
-
[x: string]: unknown;
|
|
288
|
-
};
|
|
347
|
+
readonly showCounter?: boolean | undefined;
|
|
348
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "type" | "color" | "size" | "loading" | "loadingStatus" | "modelValue" | "readonly" | "required" | "validateOnInput" | "hideFooter" | "rules" | "skipFormRegistry" | "showPasswordToggle" | "dir">;
|
|
349
|
+
$attrs: import("vue").Attrs;
|
|
289
350
|
$refs: {
|
|
290
351
|
[x: string]: unknown;
|
|
291
352
|
};
|
|
@@ -301,64 +362,139 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
301
362
|
showPasswordToggle: {
|
|
302
363
|
type: BooleanConstructor;
|
|
303
364
|
default: boolean;
|
|
365
|
+
description: string;
|
|
304
366
|
};
|
|
305
367
|
dir: {
|
|
306
368
|
type: PropType<"rtl" | "ltr">;
|
|
307
369
|
default: string;
|
|
370
|
+
description: string;
|
|
371
|
+
};
|
|
372
|
+
icon: {
|
|
373
|
+
type: StringConstructor;
|
|
374
|
+
description: string;
|
|
375
|
+
};
|
|
376
|
+
iconLeft: {
|
|
377
|
+
type: StringConstructor;
|
|
378
|
+
description: string;
|
|
379
|
+
};
|
|
380
|
+
iconRight: {
|
|
381
|
+
type: StringConstructor;
|
|
382
|
+
description: string;
|
|
383
|
+
};
|
|
384
|
+
max: {
|
|
385
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
386
|
+
description: string;
|
|
387
|
+
};
|
|
388
|
+
maxlength: {
|
|
389
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
390
|
+
description: string;
|
|
391
|
+
};
|
|
392
|
+
min: {
|
|
393
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
394
|
+
description: string;
|
|
395
|
+
};
|
|
396
|
+
minlength: {
|
|
397
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
398
|
+
description: string;
|
|
399
|
+
};
|
|
400
|
+
placeholder: {
|
|
401
|
+
type: StringConstructor;
|
|
402
|
+
description: string;
|
|
308
403
|
};
|
|
309
|
-
icon: StringConstructor;
|
|
310
|
-
iconLeft: StringConstructor;
|
|
311
|
-
iconRight: StringConstructor;
|
|
312
|
-
max: (StringConstructor | NumberConstructor)[];
|
|
313
|
-
maxlength: (StringConstructor | NumberConstructor)[];
|
|
314
|
-
min: (StringConstructor | NumberConstructor)[];
|
|
315
|
-
minlength: (StringConstructor | NumberConstructor)[];
|
|
316
|
-
placeholder: StringConstructor;
|
|
317
404
|
type: {
|
|
318
405
|
type: StringConstructor;
|
|
319
406
|
default: string;
|
|
407
|
+
description: string;
|
|
320
408
|
};
|
|
321
|
-
step:
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
409
|
+
step: {
|
|
410
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
411
|
+
description: string;
|
|
412
|
+
};
|
|
413
|
+
block: import("vue").Prop<boolean | undefined>;
|
|
414
|
+
showCounter: import("vue").Prop<boolean | undefined>;
|
|
415
|
+
clearable: import("vue").Prop<boolean | undefined>;
|
|
325
416
|
modelValue: {
|
|
326
417
|
readonly type: PropType<string | number | boolean | object | any[] | undefined>;
|
|
327
418
|
readonly default: undefined;
|
|
419
|
+
readonly description: "Bound value (v-model).";
|
|
420
|
+
};
|
|
421
|
+
id: {
|
|
422
|
+
readonly type: StringConstructor;
|
|
423
|
+
readonly description: "Native id attribute for the input element.";
|
|
424
|
+
};
|
|
425
|
+
name: {
|
|
426
|
+
readonly type: StringConstructor;
|
|
427
|
+
readonly description: "Native name attribute for form submission.";
|
|
428
|
+
};
|
|
429
|
+
readonly: {
|
|
430
|
+
readonly type: BooleanConstructor;
|
|
431
|
+
readonly description: "Makes the field read-only without disabling it.";
|
|
432
|
+
};
|
|
433
|
+
required: {
|
|
434
|
+
readonly type: BooleanConstructor;
|
|
435
|
+
readonly description: "Marks the field as required for validation.";
|
|
328
436
|
};
|
|
329
|
-
id: StringConstructor;
|
|
330
|
-
name: StringConstructor;
|
|
331
|
-
readonly: BooleanConstructor;
|
|
332
|
-
required: BooleanConstructor;
|
|
333
437
|
validateOnInput: {
|
|
334
438
|
readonly type: BooleanConstructor;
|
|
335
439
|
readonly default: true;
|
|
440
|
+
readonly description: "Runs validation on each input event when true.";
|
|
441
|
+
};
|
|
442
|
+
label: {
|
|
443
|
+
readonly type: StringConstructor;
|
|
444
|
+
readonly description: "Visible label text for the field.";
|
|
445
|
+
};
|
|
446
|
+
helper: {
|
|
447
|
+
readonly type: StringConstructor;
|
|
448
|
+
readonly description: "Helper text shown below the field.";
|
|
449
|
+
};
|
|
450
|
+
error: {
|
|
451
|
+
readonly type: StringConstructor;
|
|
452
|
+
readonly description: "External error message; overrides rule errors when set.";
|
|
453
|
+
};
|
|
454
|
+
hideFooter: {
|
|
455
|
+
readonly type: BooleanConstructor;
|
|
456
|
+
readonly description: "Hides the footer area (helper / error).";
|
|
336
457
|
};
|
|
337
|
-
label: StringConstructor;
|
|
338
|
-
helper: StringConstructor;
|
|
339
|
-
error: StringConstructor;
|
|
340
|
-
hideFooter: BooleanConstructor;
|
|
341
458
|
rules: {
|
|
342
459
|
readonly type: ArrayConstructor;
|
|
343
460
|
readonly default: () => never[];
|
|
461
|
+
readonly description: "Validation rule functions or rule descriptors.";
|
|
462
|
+
};
|
|
463
|
+
tooltip: {
|
|
464
|
+
readonly type: StringConstructor;
|
|
465
|
+
readonly description: "Optional tooltip text next to the label.";
|
|
466
|
+
};
|
|
467
|
+
skipFormRegistry: {
|
|
468
|
+
readonly type: BooleanConstructor;
|
|
469
|
+
readonly description: "Skips registering this field with a parent x-form.";
|
|
470
|
+
};
|
|
471
|
+
disabled: {
|
|
472
|
+
readonly type: BooleanConstructor;
|
|
473
|
+
readonly description: "Disables interaction and applies disabled styling.";
|
|
474
|
+
};
|
|
475
|
+
loading: {
|
|
476
|
+
readonly type: BooleanConstructor;
|
|
477
|
+
readonly description: "Shows a loading indicator and blocks interaction.";
|
|
478
|
+
};
|
|
479
|
+
loadingLabel: {
|
|
480
|
+
readonly type: StringConstructor;
|
|
481
|
+
readonly description: "Accessible label announced while loading.";
|
|
344
482
|
};
|
|
345
|
-
tooltip: StringConstructor;
|
|
346
|
-
skipFormRegistry: BooleanConstructor;
|
|
347
|
-
disabled: BooleanConstructor;
|
|
348
|
-
loading: BooleanConstructor;
|
|
349
|
-
loadingLabel: StringConstructor;
|
|
350
483
|
loadingStatus: {
|
|
351
484
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
352
485
|
readonly default: "active";
|
|
486
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
353
487
|
};
|
|
354
488
|
color: {
|
|
355
489
|
readonly type: StringConstructor;
|
|
356
490
|
readonly default: string | undefined;
|
|
491
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
357
492
|
};
|
|
358
493
|
size: {
|
|
359
|
-
readonly type: PropType<
|
|
494
|
+
readonly type: PropType<Size>;
|
|
360
495
|
readonly default: "md";
|
|
361
496
|
readonly validator: (value: string) => boolean;
|
|
497
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
362
498
|
};
|
|
363
499
|
}>> & Readonly<{
|
|
364
500
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
@@ -372,8 +508,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
372
508
|
disabled: boolean;
|
|
373
509
|
type: string;
|
|
374
510
|
color: string;
|
|
375
|
-
size:
|
|
376
|
-
block: boolean;
|
|
511
|
+
size: Size;
|
|
377
512
|
loading: boolean;
|
|
378
513
|
loadingStatus: import("../loader/Loader.vue").LoaderStatus;
|
|
379
514
|
modelValue: string | number | boolean | object | any[] | undefined;
|
|
@@ -383,10 +518,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
383
518
|
hideFooter: boolean;
|
|
384
519
|
rules: unknown[];
|
|
385
520
|
skipFormRegistry: boolean;
|
|
386
|
-
clearable: boolean;
|
|
387
521
|
showPasswordToggle: boolean;
|
|
388
522
|
dir: "rtl" | "ltr";
|
|
389
|
-
showCounter: boolean;
|
|
390
523
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
391
524
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
392
525
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -411,8 +544,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
411
544
|
disabled: boolean;
|
|
412
545
|
type: string;
|
|
413
546
|
color: string;
|
|
414
|
-
size:
|
|
415
|
-
block: boolean;
|
|
547
|
+
size: Size;
|
|
416
548
|
loading: boolean;
|
|
417
549
|
loadingStatus: import("../loader/Loader.vue").LoaderStatus;
|
|
418
550
|
modelValue: string | number | boolean | object | any[] | undefined;
|
|
@@ -422,82 +554,155 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
422
554
|
hideFooter: boolean;
|
|
423
555
|
rules: unknown[];
|
|
424
556
|
skipFormRegistry: boolean;
|
|
425
|
-
clearable: boolean;
|
|
426
557
|
showPasswordToggle: boolean;
|
|
427
558
|
dir: "rtl" | "ltr";
|
|
428
|
-
showCounter: boolean;
|
|
429
559
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
430
560
|
showPasswordToggle: {
|
|
431
561
|
type: BooleanConstructor;
|
|
432
562
|
default: boolean;
|
|
563
|
+
description: string;
|
|
433
564
|
};
|
|
434
565
|
dir: {
|
|
435
566
|
type: PropType<"rtl" | "ltr">;
|
|
436
567
|
default: string;
|
|
568
|
+
description: string;
|
|
569
|
+
};
|
|
570
|
+
icon: {
|
|
571
|
+
type: StringConstructor;
|
|
572
|
+
description: string;
|
|
573
|
+
};
|
|
574
|
+
iconLeft: {
|
|
575
|
+
type: StringConstructor;
|
|
576
|
+
description: string;
|
|
577
|
+
};
|
|
578
|
+
iconRight: {
|
|
579
|
+
type: StringConstructor;
|
|
580
|
+
description: string;
|
|
581
|
+
};
|
|
582
|
+
max: {
|
|
583
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
584
|
+
description: string;
|
|
585
|
+
};
|
|
586
|
+
maxlength: {
|
|
587
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
588
|
+
description: string;
|
|
589
|
+
};
|
|
590
|
+
min: {
|
|
591
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
592
|
+
description: string;
|
|
593
|
+
};
|
|
594
|
+
minlength: {
|
|
595
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
596
|
+
description: string;
|
|
597
|
+
};
|
|
598
|
+
placeholder: {
|
|
599
|
+
type: StringConstructor;
|
|
600
|
+
description: string;
|
|
437
601
|
};
|
|
438
|
-
icon: StringConstructor;
|
|
439
|
-
iconLeft: StringConstructor;
|
|
440
|
-
iconRight: StringConstructor;
|
|
441
|
-
max: (StringConstructor | NumberConstructor)[];
|
|
442
|
-
maxlength: (StringConstructor | NumberConstructor)[];
|
|
443
|
-
min: (StringConstructor | NumberConstructor)[];
|
|
444
|
-
minlength: (StringConstructor | NumberConstructor)[];
|
|
445
|
-
placeholder: StringConstructor;
|
|
446
602
|
type: {
|
|
447
603
|
type: StringConstructor;
|
|
448
604
|
default: string;
|
|
605
|
+
description: string;
|
|
449
606
|
};
|
|
450
|
-
step:
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
607
|
+
step: {
|
|
608
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
609
|
+
description: string;
|
|
610
|
+
};
|
|
611
|
+
block: import("vue").Prop<boolean | undefined>;
|
|
612
|
+
showCounter: import("vue").Prop<boolean | undefined>;
|
|
613
|
+
clearable: import("vue").Prop<boolean | undefined>;
|
|
454
614
|
modelValue: {
|
|
455
615
|
readonly type: PropType<string | number | boolean | object | any[] | undefined>;
|
|
456
616
|
readonly default: undefined;
|
|
617
|
+
readonly description: "Bound value (v-model).";
|
|
618
|
+
};
|
|
619
|
+
id: {
|
|
620
|
+
readonly type: StringConstructor;
|
|
621
|
+
readonly description: "Native id attribute for the input element.";
|
|
622
|
+
};
|
|
623
|
+
name: {
|
|
624
|
+
readonly type: StringConstructor;
|
|
625
|
+
readonly description: "Native name attribute for form submission.";
|
|
626
|
+
};
|
|
627
|
+
readonly: {
|
|
628
|
+
readonly type: BooleanConstructor;
|
|
629
|
+
readonly description: "Makes the field read-only without disabling it.";
|
|
630
|
+
};
|
|
631
|
+
required: {
|
|
632
|
+
readonly type: BooleanConstructor;
|
|
633
|
+
readonly description: "Marks the field as required for validation.";
|
|
457
634
|
};
|
|
458
|
-
id: StringConstructor;
|
|
459
|
-
name: StringConstructor;
|
|
460
|
-
readonly: BooleanConstructor;
|
|
461
|
-
required: BooleanConstructor;
|
|
462
635
|
validateOnInput: {
|
|
463
636
|
readonly type: BooleanConstructor;
|
|
464
637
|
readonly default: true;
|
|
638
|
+
readonly description: "Runs validation on each input event when true.";
|
|
639
|
+
};
|
|
640
|
+
label: {
|
|
641
|
+
readonly type: StringConstructor;
|
|
642
|
+
readonly description: "Visible label text for the field.";
|
|
643
|
+
};
|
|
644
|
+
helper: {
|
|
645
|
+
readonly type: StringConstructor;
|
|
646
|
+
readonly description: "Helper text shown below the field.";
|
|
647
|
+
};
|
|
648
|
+
error: {
|
|
649
|
+
readonly type: StringConstructor;
|
|
650
|
+
readonly description: "External error message; overrides rule errors when set.";
|
|
651
|
+
};
|
|
652
|
+
hideFooter: {
|
|
653
|
+
readonly type: BooleanConstructor;
|
|
654
|
+
readonly description: "Hides the footer area (helper / error).";
|
|
465
655
|
};
|
|
466
|
-
label: StringConstructor;
|
|
467
|
-
helper: StringConstructor;
|
|
468
|
-
error: StringConstructor;
|
|
469
|
-
hideFooter: BooleanConstructor;
|
|
470
656
|
rules: {
|
|
471
657
|
readonly type: ArrayConstructor;
|
|
472
658
|
readonly default: () => never[];
|
|
659
|
+
readonly description: "Validation rule functions or rule descriptors.";
|
|
660
|
+
};
|
|
661
|
+
tooltip: {
|
|
662
|
+
readonly type: StringConstructor;
|
|
663
|
+
readonly description: "Optional tooltip text next to the label.";
|
|
664
|
+
};
|
|
665
|
+
skipFormRegistry: {
|
|
666
|
+
readonly type: BooleanConstructor;
|
|
667
|
+
readonly description: "Skips registering this field with a parent x-form.";
|
|
668
|
+
};
|
|
669
|
+
disabled: {
|
|
670
|
+
readonly type: BooleanConstructor;
|
|
671
|
+
readonly description: "Disables interaction and applies disabled styling.";
|
|
672
|
+
};
|
|
673
|
+
loading: {
|
|
674
|
+
readonly type: BooleanConstructor;
|
|
675
|
+
readonly description: "Shows a loading indicator and blocks interaction.";
|
|
676
|
+
};
|
|
677
|
+
loadingLabel: {
|
|
678
|
+
readonly type: StringConstructor;
|
|
679
|
+
readonly description: "Accessible label announced while loading.";
|
|
473
680
|
};
|
|
474
|
-
tooltip: StringConstructor;
|
|
475
|
-
skipFormRegistry: BooleanConstructor;
|
|
476
|
-
disabled: BooleanConstructor;
|
|
477
|
-
loading: BooleanConstructor;
|
|
478
|
-
loadingLabel: StringConstructor;
|
|
479
681
|
loadingStatus: {
|
|
480
682
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
481
683
|
readonly default: "active";
|
|
684
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
482
685
|
};
|
|
483
686
|
color: {
|
|
484
687
|
readonly type: StringConstructor;
|
|
485
688
|
readonly default: string | undefined;
|
|
689
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
486
690
|
};
|
|
487
691
|
size: {
|
|
488
|
-
readonly type: PropType<
|
|
692
|
+
readonly type: PropType<Size>;
|
|
489
693
|
readonly default: "md";
|
|
490
694
|
readonly validator: (value: string) => boolean;
|
|
695
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
491
696
|
};
|
|
492
697
|
}>> & Readonly<{
|
|
493
698
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
494
|
-
}>, "blur" | "focus" | "reset" | "validate" | "setError" | ("disabled" | "type" | "color" | "size" | "
|
|
699
|
+
}>, "blur" | "focus" | "reset" | "validate" | "setError" | ("disabled" | "type" | "color" | "size" | "loading" | "loadingStatus" | "modelValue" | "readonly" | "required" | "validateOnInput" | "hideFooter" | "rules" | "skipFormRegistry" | "showPasswordToggle" | "dir")> & {
|
|
495
700
|
focus: () => void | undefined;
|
|
496
701
|
blur: () => void | undefined;
|
|
497
702
|
reset: () => void;
|
|
498
703
|
validate: (val?: any) => boolean;
|
|
499
704
|
setError: (val: string) => void;
|
|
500
|
-
}
|
|
705
|
+
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
501
706
|
$slots: {
|
|
502
707
|
prefix?(_: {}): any;
|
|
503
708
|
suffix?(_: {}): any;
|
|
@@ -509,8 +714,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
509
714
|
disabled: boolean;
|
|
510
715
|
type: string;
|
|
511
716
|
color: string;
|
|
512
|
-
size:
|
|
513
|
-
block: boolean;
|
|
717
|
+
size: Size;
|
|
514
718
|
loading: boolean;
|
|
515
719
|
loadingStatus: import("../loader/Loader.vue").LoaderStatus;
|
|
516
720
|
modelValue: string | number | boolean | object | any[] | undefined;
|
|
@@ -520,17 +724,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
520
724
|
hideFooter: boolean;
|
|
521
725
|
rules: unknown[];
|
|
522
726
|
skipFormRegistry: boolean;
|
|
523
|
-
clearable: boolean;
|
|
524
727
|
showPasswordToggle: boolean;
|
|
525
728
|
dir: "rtl" | "ltr";
|
|
526
|
-
showCounter: boolean;
|
|
527
729
|
}> & Omit<{
|
|
528
730
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
529
731
|
readonly disabled: boolean;
|
|
530
732
|
readonly type: string;
|
|
531
733
|
readonly color: string;
|
|
532
|
-
readonly size:
|
|
533
|
-
readonly block: boolean;
|
|
734
|
+
readonly size: Size;
|
|
534
735
|
readonly loading: boolean;
|
|
535
736
|
readonly loadingStatus: import("../loader/Loader.vue").LoaderStatus;
|
|
536
737
|
readonly readonly: boolean;
|
|
@@ -539,96 +740,30 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
539
740
|
readonly hideFooter: boolean;
|
|
540
741
|
readonly rules: unknown[];
|
|
541
742
|
readonly skipFormRegistry: boolean;
|
|
542
|
-
readonly clearable: boolean;
|
|
543
743
|
readonly showPasswordToggle: boolean;
|
|
544
744
|
readonly dir: "rtl" | "ltr";
|
|
545
|
-
readonly showCounter: boolean;
|
|
546
745
|
readonly error?: string | undefined;
|
|
547
746
|
readonly name?: string | undefined;
|
|
548
747
|
readonly icon?: string | undefined;
|
|
549
748
|
readonly iconLeft?: string | undefined;
|
|
550
749
|
readonly iconRight?: string | undefined;
|
|
750
|
+
readonly tooltip?: string | undefined;
|
|
751
|
+
readonly block?: boolean | undefined;
|
|
551
752
|
readonly loadingLabel?: string | undefined;
|
|
552
753
|
readonly modelValue?: string | number | boolean | object | any[] | undefined;
|
|
553
754
|
readonly id?: string | undefined;
|
|
554
755
|
readonly label?: string | undefined;
|
|
555
756
|
readonly helper?: string | undefined;
|
|
556
|
-
readonly tooltip?: string | undefined;
|
|
557
757
|
readonly placeholder?: string | undefined;
|
|
758
|
+
readonly clearable?: boolean | undefined;
|
|
558
759
|
readonly max?: string | number | undefined;
|
|
559
760
|
readonly maxlength?: string | number | undefined;
|
|
560
761
|
readonly min?: string | number | undefined;
|
|
561
762
|
readonly minlength?: string | number | undefined;
|
|
562
763
|
readonly step?: string | number | undefined;
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
default: boolean;
|
|
567
|
-
};
|
|
568
|
-
dir: {
|
|
569
|
-
type: PropType<"rtl" | "ltr">;
|
|
570
|
-
default: string;
|
|
571
|
-
};
|
|
572
|
-
icon: StringConstructor;
|
|
573
|
-
iconLeft: StringConstructor;
|
|
574
|
-
iconRight: StringConstructor;
|
|
575
|
-
max: (StringConstructor | NumberConstructor)[];
|
|
576
|
-
maxlength: (StringConstructor | NumberConstructor)[];
|
|
577
|
-
min: (StringConstructor | NumberConstructor)[];
|
|
578
|
-
minlength: (StringConstructor | NumberConstructor)[];
|
|
579
|
-
placeholder: StringConstructor;
|
|
580
|
-
type: {
|
|
581
|
-
type: StringConstructor;
|
|
582
|
-
default: string;
|
|
583
|
-
};
|
|
584
|
-
step: (StringConstructor | NumberConstructor)[];
|
|
585
|
-
block: BooleanConstructor;
|
|
586
|
-
showCounter: BooleanConstructor;
|
|
587
|
-
clearable: BooleanConstructor;
|
|
588
|
-
modelValue: {
|
|
589
|
-
readonly type: PropType<string | number | boolean | object | any[] | undefined>;
|
|
590
|
-
readonly default: undefined;
|
|
591
|
-
};
|
|
592
|
-
id: StringConstructor;
|
|
593
|
-
name: StringConstructor;
|
|
594
|
-
readonly: BooleanConstructor;
|
|
595
|
-
required: BooleanConstructor;
|
|
596
|
-
validateOnInput: {
|
|
597
|
-
readonly type: BooleanConstructor;
|
|
598
|
-
readonly default: true;
|
|
599
|
-
};
|
|
600
|
-
label: StringConstructor;
|
|
601
|
-
helper: StringConstructor;
|
|
602
|
-
error: StringConstructor;
|
|
603
|
-
hideFooter: BooleanConstructor;
|
|
604
|
-
rules: {
|
|
605
|
-
readonly type: ArrayConstructor;
|
|
606
|
-
readonly default: () => never[];
|
|
607
|
-
};
|
|
608
|
-
tooltip: StringConstructor;
|
|
609
|
-
skipFormRegistry: BooleanConstructor;
|
|
610
|
-
disabled: BooleanConstructor;
|
|
611
|
-
loading: BooleanConstructor;
|
|
612
|
-
loadingLabel: StringConstructor;
|
|
613
|
-
loadingStatus: {
|
|
614
|
-
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
615
|
-
readonly default: "active";
|
|
616
|
-
};
|
|
617
|
-
color: {
|
|
618
|
-
readonly type: StringConstructor;
|
|
619
|
-
readonly default: string | undefined;
|
|
620
|
-
};
|
|
621
|
-
size: {
|
|
622
|
-
readonly type: PropType<import("../../composables/useCommon").Size>;
|
|
623
|
-
readonly default: "md";
|
|
624
|
-
readonly validator: (value: string) => boolean;
|
|
625
|
-
};
|
|
626
|
-
}>> & Readonly<{
|
|
627
|
-
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
628
|
-
}>, "disabled" | "type" | "color" | "size" | "block" | "loading" | "loadingStatus" | "modelValue" | "readonly" | "required" | "validateOnInput" | "hideFooter" | "rules" | "skipFormRegistry" | "clearable" | "showPasswordToggle" | "dir" | "showCounter">;
|
|
629
|
-
$attrs: {
|
|
630
|
-
[x: string]: unknown;
|
|
631
|
-
};
|
|
764
|
+
readonly showCounter?: boolean | undefined;
|
|
765
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "type" | "color" | "size" | "loading" | "loadingStatus" | "modelValue" | "readonly" | "required" | "validateOnInput" | "hideFooter" | "rules" | "skipFormRegistry" | "showPasswordToggle" | "dir">;
|
|
766
|
+
$attrs: import("vue").Attrs;
|
|
632
767
|
$refs: {
|
|
633
768
|
[x: string]: unknown;
|
|
634
769
|
};
|
|
@@ -644,64 +779,139 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
644
779
|
showPasswordToggle: {
|
|
645
780
|
type: BooleanConstructor;
|
|
646
781
|
default: boolean;
|
|
782
|
+
description: string;
|
|
647
783
|
};
|
|
648
784
|
dir: {
|
|
649
785
|
type: PropType<"rtl" | "ltr">;
|
|
650
786
|
default: string;
|
|
787
|
+
description: string;
|
|
788
|
+
};
|
|
789
|
+
icon: {
|
|
790
|
+
type: StringConstructor;
|
|
791
|
+
description: string;
|
|
792
|
+
};
|
|
793
|
+
iconLeft: {
|
|
794
|
+
type: StringConstructor;
|
|
795
|
+
description: string;
|
|
796
|
+
};
|
|
797
|
+
iconRight: {
|
|
798
|
+
type: StringConstructor;
|
|
799
|
+
description: string;
|
|
800
|
+
};
|
|
801
|
+
max: {
|
|
802
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
803
|
+
description: string;
|
|
804
|
+
};
|
|
805
|
+
maxlength: {
|
|
806
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
807
|
+
description: string;
|
|
808
|
+
};
|
|
809
|
+
min: {
|
|
810
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
811
|
+
description: string;
|
|
812
|
+
};
|
|
813
|
+
minlength: {
|
|
814
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
815
|
+
description: string;
|
|
816
|
+
};
|
|
817
|
+
placeholder: {
|
|
818
|
+
type: StringConstructor;
|
|
819
|
+
description: string;
|
|
651
820
|
};
|
|
652
|
-
icon: StringConstructor;
|
|
653
|
-
iconLeft: StringConstructor;
|
|
654
|
-
iconRight: StringConstructor;
|
|
655
|
-
max: (StringConstructor | NumberConstructor)[];
|
|
656
|
-
maxlength: (StringConstructor | NumberConstructor)[];
|
|
657
|
-
min: (StringConstructor | NumberConstructor)[];
|
|
658
|
-
minlength: (StringConstructor | NumberConstructor)[];
|
|
659
|
-
placeholder: StringConstructor;
|
|
660
821
|
type: {
|
|
661
822
|
type: StringConstructor;
|
|
662
823
|
default: string;
|
|
824
|
+
description: string;
|
|
663
825
|
};
|
|
664
|
-
step:
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
826
|
+
step: {
|
|
827
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
828
|
+
description: string;
|
|
829
|
+
};
|
|
830
|
+
block: import("vue").Prop<boolean | undefined>;
|
|
831
|
+
showCounter: import("vue").Prop<boolean | undefined>;
|
|
832
|
+
clearable: import("vue").Prop<boolean | undefined>;
|
|
668
833
|
modelValue: {
|
|
669
834
|
readonly type: PropType<string | number | boolean | object | any[] | undefined>;
|
|
670
835
|
readonly default: undefined;
|
|
836
|
+
readonly description: "Bound value (v-model).";
|
|
837
|
+
};
|
|
838
|
+
id: {
|
|
839
|
+
readonly type: StringConstructor;
|
|
840
|
+
readonly description: "Native id attribute for the input element.";
|
|
841
|
+
};
|
|
842
|
+
name: {
|
|
843
|
+
readonly type: StringConstructor;
|
|
844
|
+
readonly description: "Native name attribute for form submission.";
|
|
845
|
+
};
|
|
846
|
+
readonly: {
|
|
847
|
+
readonly type: BooleanConstructor;
|
|
848
|
+
readonly description: "Makes the field read-only without disabling it.";
|
|
849
|
+
};
|
|
850
|
+
required: {
|
|
851
|
+
readonly type: BooleanConstructor;
|
|
852
|
+
readonly description: "Marks the field as required for validation.";
|
|
671
853
|
};
|
|
672
|
-
id: StringConstructor;
|
|
673
|
-
name: StringConstructor;
|
|
674
|
-
readonly: BooleanConstructor;
|
|
675
|
-
required: BooleanConstructor;
|
|
676
854
|
validateOnInput: {
|
|
677
855
|
readonly type: BooleanConstructor;
|
|
678
856
|
readonly default: true;
|
|
857
|
+
readonly description: "Runs validation on each input event when true.";
|
|
858
|
+
};
|
|
859
|
+
label: {
|
|
860
|
+
readonly type: StringConstructor;
|
|
861
|
+
readonly description: "Visible label text for the field.";
|
|
862
|
+
};
|
|
863
|
+
helper: {
|
|
864
|
+
readonly type: StringConstructor;
|
|
865
|
+
readonly description: "Helper text shown below the field.";
|
|
866
|
+
};
|
|
867
|
+
error: {
|
|
868
|
+
readonly type: StringConstructor;
|
|
869
|
+
readonly description: "External error message; overrides rule errors when set.";
|
|
870
|
+
};
|
|
871
|
+
hideFooter: {
|
|
872
|
+
readonly type: BooleanConstructor;
|
|
873
|
+
readonly description: "Hides the footer area (helper / error).";
|
|
679
874
|
};
|
|
680
|
-
label: StringConstructor;
|
|
681
|
-
helper: StringConstructor;
|
|
682
|
-
error: StringConstructor;
|
|
683
|
-
hideFooter: BooleanConstructor;
|
|
684
875
|
rules: {
|
|
685
876
|
readonly type: ArrayConstructor;
|
|
686
877
|
readonly default: () => never[];
|
|
878
|
+
readonly description: "Validation rule functions or rule descriptors.";
|
|
879
|
+
};
|
|
880
|
+
tooltip: {
|
|
881
|
+
readonly type: StringConstructor;
|
|
882
|
+
readonly description: "Optional tooltip text next to the label.";
|
|
883
|
+
};
|
|
884
|
+
skipFormRegistry: {
|
|
885
|
+
readonly type: BooleanConstructor;
|
|
886
|
+
readonly description: "Skips registering this field with a parent x-form.";
|
|
887
|
+
};
|
|
888
|
+
disabled: {
|
|
889
|
+
readonly type: BooleanConstructor;
|
|
890
|
+
readonly description: "Disables interaction and applies disabled styling.";
|
|
891
|
+
};
|
|
892
|
+
loading: {
|
|
893
|
+
readonly type: BooleanConstructor;
|
|
894
|
+
readonly description: "Shows a loading indicator and blocks interaction.";
|
|
895
|
+
};
|
|
896
|
+
loadingLabel: {
|
|
897
|
+
readonly type: StringConstructor;
|
|
898
|
+
readonly description: "Accessible label announced while loading.";
|
|
687
899
|
};
|
|
688
|
-
tooltip: StringConstructor;
|
|
689
|
-
skipFormRegistry: BooleanConstructor;
|
|
690
|
-
disabled: BooleanConstructor;
|
|
691
|
-
loading: BooleanConstructor;
|
|
692
|
-
loadingLabel: StringConstructor;
|
|
693
900
|
loadingStatus: {
|
|
694
901
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
695
902
|
readonly default: "active";
|
|
903
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
696
904
|
};
|
|
697
905
|
color: {
|
|
698
906
|
readonly type: StringConstructor;
|
|
699
907
|
readonly default: string | undefined;
|
|
908
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
700
909
|
};
|
|
701
910
|
size: {
|
|
702
|
-
readonly type: PropType<
|
|
911
|
+
readonly type: PropType<Size>;
|
|
703
912
|
readonly default: "md";
|
|
704
913
|
readonly validator: (value: string) => boolean;
|
|
914
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
705
915
|
};
|
|
706
916
|
}>> & Readonly<{
|
|
707
917
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
@@ -715,8 +925,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
715
925
|
disabled: boolean;
|
|
716
926
|
type: string;
|
|
717
927
|
color: string;
|
|
718
|
-
size:
|
|
719
|
-
block: boolean;
|
|
928
|
+
size: Size;
|
|
720
929
|
loading: boolean;
|
|
721
930
|
loadingStatus: import("../loader/Loader.vue").LoaderStatus;
|
|
722
931
|
modelValue: string | number | boolean | object | any[] | undefined;
|
|
@@ -726,10 +935,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
726
935
|
hideFooter: boolean;
|
|
727
936
|
rules: unknown[];
|
|
728
937
|
skipFormRegistry: boolean;
|
|
729
|
-
clearable: boolean;
|
|
730
938
|
showPasswordToggle: boolean;
|
|
731
939
|
dir: "rtl" | "ltr";
|
|
732
|
-
showCounter: boolean;
|
|
733
940
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
734
941
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
735
942
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -754,8 +961,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
754
961
|
disabled: boolean;
|
|
755
962
|
type: string;
|
|
756
963
|
color: string;
|
|
757
|
-
size:
|
|
758
|
-
block: boolean;
|
|
964
|
+
size: Size;
|
|
759
965
|
loading: boolean;
|
|
760
966
|
loadingStatus: import("../loader/Loader.vue").LoaderStatus;
|
|
761
967
|
modelValue: string | number | boolean | object | any[] | undefined;
|
|
@@ -765,82 +971,155 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
765
971
|
hideFooter: boolean;
|
|
766
972
|
rules: unknown[];
|
|
767
973
|
skipFormRegistry: boolean;
|
|
768
|
-
clearable: boolean;
|
|
769
974
|
showPasswordToggle: boolean;
|
|
770
975
|
dir: "rtl" | "ltr";
|
|
771
|
-
showCounter: boolean;
|
|
772
976
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
773
977
|
showPasswordToggle: {
|
|
774
978
|
type: BooleanConstructor;
|
|
775
979
|
default: boolean;
|
|
980
|
+
description: string;
|
|
776
981
|
};
|
|
777
982
|
dir: {
|
|
778
983
|
type: PropType<"rtl" | "ltr">;
|
|
779
984
|
default: string;
|
|
985
|
+
description: string;
|
|
986
|
+
};
|
|
987
|
+
icon: {
|
|
988
|
+
type: StringConstructor;
|
|
989
|
+
description: string;
|
|
990
|
+
};
|
|
991
|
+
iconLeft: {
|
|
992
|
+
type: StringConstructor;
|
|
993
|
+
description: string;
|
|
994
|
+
};
|
|
995
|
+
iconRight: {
|
|
996
|
+
type: StringConstructor;
|
|
997
|
+
description: string;
|
|
998
|
+
};
|
|
999
|
+
max: {
|
|
1000
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1001
|
+
description: string;
|
|
1002
|
+
};
|
|
1003
|
+
maxlength: {
|
|
1004
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1005
|
+
description: string;
|
|
1006
|
+
};
|
|
1007
|
+
min: {
|
|
1008
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1009
|
+
description: string;
|
|
1010
|
+
};
|
|
1011
|
+
minlength: {
|
|
1012
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1013
|
+
description: string;
|
|
1014
|
+
};
|
|
1015
|
+
placeholder: {
|
|
1016
|
+
type: StringConstructor;
|
|
1017
|
+
description: string;
|
|
780
1018
|
};
|
|
781
|
-
icon: StringConstructor;
|
|
782
|
-
iconLeft: StringConstructor;
|
|
783
|
-
iconRight: StringConstructor;
|
|
784
|
-
max: (StringConstructor | NumberConstructor)[];
|
|
785
|
-
maxlength: (StringConstructor | NumberConstructor)[];
|
|
786
|
-
min: (StringConstructor | NumberConstructor)[];
|
|
787
|
-
minlength: (StringConstructor | NumberConstructor)[];
|
|
788
|
-
placeholder: StringConstructor;
|
|
789
1019
|
type: {
|
|
790
1020
|
type: StringConstructor;
|
|
791
1021
|
default: string;
|
|
1022
|
+
description: string;
|
|
1023
|
+
};
|
|
1024
|
+
step: {
|
|
1025
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1026
|
+
description: string;
|
|
792
1027
|
};
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
clearable: BooleanConstructor;
|
|
1028
|
+
block: import("vue").Prop<boolean | undefined>;
|
|
1029
|
+
showCounter: import("vue").Prop<boolean | undefined>;
|
|
1030
|
+
clearable: import("vue").Prop<boolean | undefined>;
|
|
797
1031
|
modelValue: {
|
|
798
1032
|
readonly type: PropType<string | number | boolean | object | any[] | undefined>;
|
|
799
1033
|
readonly default: undefined;
|
|
1034
|
+
readonly description: "Bound value (v-model).";
|
|
1035
|
+
};
|
|
1036
|
+
id: {
|
|
1037
|
+
readonly type: StringConstructor;
|
|
1038
|
+
readonly description: "Native id attribute for the input element.";
|
|
1039
|
+
};
|
|
1040
|
+
name: {
|
|
1041
|
+
readonly type: StringConstructor;
|
|
1042
|
+
readonly description: "Native name attribute for form submission.";
|
|
1043
|
+
};
|
|
1044
|
+
readonly: {
|
|
1045
|
+
readonly type: BooleanConstructor;
|
|
1046
|
+
readonly description: "Makes the field read-only without disabling it.";
|
|
1047
|
+
};
|
|
1048
|
+
required: {
|
|
1049
|
+
readonly type: BooleanConstructor;
|
|
1050
|
+
readonly description: "Marks the field as required for validation.";
|
|
800
1051
|
};
|
|
801
|
-
id: StringConstructor;
|
|
802
|
-
name: StringConstructor;
|
|
803
|
-
readonly: BooleanConstructor;
|
|
804
|
-
required: BooleanConstructor;
|
|
805
1052
|
validateOnInput: {
|
|
806
1053
|
readonly type: BooleanConstructor;
|
|
807
1054
|
readonly default: true;
|
|
1055
|
+
readonly description: "Runs validation on each input event when true.";
|
|
1056
|
+
};
|
|
1057
|
+
label: {
|
|
1058
|
+
readonly type: StringConstructor;
|
|
1059
|
+
readonly description: "Visible label text for the field.";
|
|
1060
|
+
};
|
|
1061
|
+
helper: {
|
|
1062
|
+
readonly type: StringConstructor;
|
|
1063
|
+
readonly description: "Helper text shown below the field.";
|
|
1064
|
+
};
|
|
1065
|
+
error: {
|
|
1066
|
+
readonly type: StringConstructor;
|
|
1067
|
+
readonly description: "External error message; overrides rule errors when set.";
|
|
1068
|
+
};
|
|
1069
|
+
hideFooter: {
|
|
1070
|
+
readonly type: BooleanConstructor;
|
|
1071
|
+
readonly description: "Hides the footer area (helper / error).";
|
|
808
1072
|
};
|
|
809
|
-
label: StringConstructor;
|
|
810
|
-
helper: StringConstructor;
|
|
811
|
-
error: StringConstructor;
|
|
812
|
-
hideFooter: BooleanConstructor;
|
|
813
1073
|
rules: {
|
|
814
1074
|
readonly type: ArrayConstructor;
|
|
815
1075
|
readonly default: () => never[];
|
|
1076
|
+
readonly description: "Validation rule functions or rule descriptors.";
|
|
1077
|
+
};
|
|
1078
|
+
tooltip: {
|
|
1079
|
+
readonly type: StringConstructor;
|
|
1080
|
+
readonly description: "Optional tooltip text next to the label.";
|
|
1081
|
+
};
|
|
1082
|
+
skipFormRegistry: {
|
|
1083
|
+
readonly type: BooleanConstructor;
|
|
1084
|
+
readonly description: "Skips registering this field with a parent x-form.";
|
|
1085
|
+
};
|
|
1086
|
+
disabled: {
|
|
1087
|
+
readonly type: BooleanConstructor;
|
|
1088
|
+
readonly description: "Disables interaction and applies disabled styling.";
|
|
1089
|
+
};
|
|
1090
|
+
loading: {
|
|
1091
|
+
readonly type: BooleanConstructor;
|
|
1092
|
+
readonly description: "Shows a loading indicator and blocks interaction.";
|
|
1093
|
+
};
|
|
1094
|
+
loadingLabel: {
|
|
1095
|
+
readonly type: StringConstructor;
|
|
1096
|
+
readonly description: "Accessible label announced while loading.";
|
|
816
1097
|
};
|
|
817
|
-
tooltip: StringConstructor;
|
|
818
|
-
skipFormRegistry: BooleanConstructor;
|
|
819
|
-
disabled: BooleanConstructor;
|
|
820
|
-
loading: BooleanConstructor;
|
|
821
|
-
loadingLabel: StringConstructor;
|
|
822
1098
|
loadingStatus: {
|
|
823
1099
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
824
1100
|
readonly default: "active";
|
|
1101
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
825
1102
|
};
|
|
826
1103
|
color: {
|
|
827
1104
|
readonly type: StringConstructor;
|
|
828
1105
|
readonly default: string | undefined;
|
|
1106
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
829
1107
|
};
|
|
830
1108
|
size: {
|
|
831
|
-
readonly type: PropType<
|
|
1109
|
+
readonly type: PropType<Size>;
|
|
832
1110
|
readonly default: "md";
|
|
833
1111
|
readonly validator: (value: string) => boolean;
|
|
1112
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
834
1113
|
};
|
|
835
1114
|
}>> & Readonly<{
|
|
836
1115
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
837
|
-
}>, "blur" | "focus" | "reset" | "validate" | "setError" | ("disabled" | "type" | "color" | "size" | "
|
|
1116
|
+
}>, "blur" | "focus" | "reset" | "validate" | "setError" | ("disabled" | "type" | "color" | "size" | "loading" | "loadingStatus" | "modelValue" | "readonly" | "required" | "validateOnInput" | "hideFooter" | "rules" | "skipFormRegistry" | "showPasswordToggle" | "dir")> & {
|
|
838
1117
|
focus: () => void | undefined;
|
|
839
1118
|
blur: () => void | undefined;
|
|
840
1119
|
reset: () => void;
|
|
841
1120
|
validate: (val?: any) => boolean;
|
|
842
1121
|
setError: (val: string) => void;
|
|
843
|
-
}
|
|
1122
|
+
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
844
1123
|
$slots: {
|
|
845
1124
|
prefix?(_: {}): any;
|
|
846
1125
|
suffix?(_: {}): any;
|
|
@@ -848,79 +1127,141 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
848
1127
|
}) | null>;
|
|
849
1128
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
850
1129
|
filter: import('vue').PropType<any>;
|
|
851
|
-
placeholder:
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
1130
|
+
placeholder: {
|
|
1131
|
+
type: StringConstructor;
|
|
1132
|
+
description: string;
|
|
1133
|
+
};
|
|
1134
|
+
options: {
|
|
1135
|
+
type: PropType<SelectOption[]>;
|
|
1136
|
+
description: string;
|
|
1137
|
+
};
|
|
1138
|
+
multiple: import("vue").Prop<boolean | undefined>;
|
|
1139
|
+
multipleCheckbox: import("vue").Prop<boolean | undefined>;
|
|
1140
|
+
truncate: import("vue").Prop<boolean | undefined>;
|
|
1141
|
+
flat: import("vue").Prop<boolean | undefined>;
|
|
1142
|
+
native: import("vue").Prop<boolean | undefined>;
|
|
1143
|
+
filterable: import("vue").Prop<boolean | undefined>;
|
|
1144
|
+
clearable: import("vue").Prop<boolean | undefined>;
|
|
860
1145
|
filterPlaceholder: {
|
|
861
1146
|
type: StringConstructor;
|
|
862
1147
|
default: string;
|
|
1148
|
+
description: string;
|
|
1149
|
+
};
|
|
1150
|
+
filterablePrefix: import("vue").Prop<boolean | undefined>;
|
|
1151
|
+
filterableSuffix: import("vue").Prop<boolean | undefined>;
|
|
1152
|
+
hideSelectedOptionSlots: import("vue").Prop<boolean | undefined>;
|
|
1153
|
+
virtualList: import("vue").Prop<boolean | undefined>;
|
|
1154
|
+
virtualListOffsetTop: {
|
|
1155
|
+
type: NumberConstructor;
|
|
1156
|
+
description: string;
|
|
1157
|
+
};
|
|
1158
|
+
virtualListOffsetBottom: {
|
|
1159
|
+
type: NumberConstructor;
|
|
1160
|
+
description: string;
|
|
863
1161
|
};
|
|
864
|
-
filterablePrefix: BooleanConstructor;
|
|
865
|
-
filterableSuffix: BooleanConstructor;
|
|
866
|
-
hideSelectedOptionSlots: BooleanConstructor;
|
|
867
|
-
virtualList: BooleanConstructor;
|
|
868
|
-
virtualListOffsetTop: NumberConstructor;
|
|
869
|
-
virtualListOffsetBottom: NumberConstructor;
|
|
870
1162
|
virtualListItemHeight: {
|
|
871
1163
|
type: NumberConstructor;
|
|
872
1164
|
default: number;
|
|
1165
|
+
description: string;
|
|
873
1166
|
};
|
|
874
1167
|
virtualListOverscan: {
|
|
875
1168
|
type: NumberConstructor;
|
|
876
1169
|
default: number;
|
|
1170
|
+
description: string;
|
|
1171
|
+
};
|
|
1172
|
+
placement: {
|
|
1173
|
+
type: PropType<import("floating-vue").Placement>;
|
|
1174
|
+
description: string;
|
|
877
1175
|
};
|
|
878
|
-
placement: PropType<import("floating-vue").Placement>;
|
|
879
1176
|
modelValue: {
|
|
880
1177
|
readonly type: PropType<string | number | boolean | object | any[] | undefined>;
|
|
881
1178
|
readonly default: undefined;
|
|
1179
|
+
readonly description: "Bound value (v-model).";
|
|
1180
|
+
};
|
|
1181
|
+
id: {
|
|
1182
|
+
readonly type: StringConstructor;
|
|
1183
|
+
readonly description: "Native id attribute for the input element.";
|
|
1184
|
+
};
|
|
1185
|
+
name: {
|
|
1186
|
+
readonly type: StringConstructor;
|
|
1187
|
+
readonly description: "Native name attribute for form submission.";
|
|
1188
|
+
};
|
|
1189
|
+
readonly: {
|
|
1190
|
+
readonly type: BooleanConstructor;
|
|
1191
|
+
readonly description: "Makes the field read-only without disabling it.";
|
|
1192
|
+
};
|
|
1193
|
+
required: {
|
|
1194
|
+
readonly type: BooleanConstructor;
|
|
1195
|
+
readonly description: "Marks the field as required for validation.";
|
|
882
1196
|
};
|
|
883
|
-
id: StringConstructor;
|
|
884
|
-
name: StringConstructor;
|
|
885
|
-
readonly: BooleanConstructor;
|
|
886
|
-
required: BooleanConstructor;
|
|
887
1197
|
validateOnInput: {
|
|
888
1198
|
readonly type: BooleanConstructor;
|
|
889
1199
|
readonly default: true;
|
|
1200
|
+
readonly description: "Runs validation on each input event when true.";
|
|
1201
|
+
};
|
|
1202
|
+
label: {
|
|
1203
|
+
readonly type: StringConstructor;
|
|
1204
|
+
readonly description: "Visible label text for the field.";
|
|
1205
|
+
};
|
|
1206
|
+
helper: {
|
|
1207
|
+
readonly type: StringConstructor;
|
|
1208
|
+
readonly description: "Helper text shown below the field.";
|
|
1209
|
+
};
|
|
1210
|
+
error: {
|
|
1211
|
+
readonly type: StringConstructor;
|
|
1212
|
+
readonly description: "External error message; overrides rule errors when set.";
|
|
1213
|
+
};
|
|
1214
|
+
hideFooter: {
|
|
1215
|
+
readonly type: BooleanConstructor;
|
|
1216
|
+
readonly description: "Hides the footer area (helper / error).";
|
|
890
1217
|
};
|
|
891
|
-
label: StringConstructor;
|
|
892
|
-
helper: StringConstructor;
|
|
893
|
-
error: StringConstructor;
|
|
894
|
-
hideFooter: BooleanConstructor;
|
|
895
1218
|
rules: {
|
|
896
1219
|
readonly type: ArrayConstructor;
|
|
897
1220
|
readonly default: () => never[];
|
|
1221
|
+
readonly description: "Validation rule functions or rule descriptors.";
|
|
1222
|
+
};
|
|
1223
|
+
tooltip: {
|
|
1224
|
+
readonly type: StringConstructor;
|
|
1225
|
+
readonly description: "Optional tooltip text next to the label.";
|
|
1226
|
+
};
|
|
1227
|
+
skipFormRegistry: {
|
|
1228
|
+
readonly type: BooleanConstructor;
|
|
1229
|
+
readonly description: "Skips registering this field with a parent x-form.";
|
|
1230
|
+
};
|
|
1231
|
+
disabled: {
|
|
1232
|
+
readonly type: BooleanConstructor;
|
|
1233
|
+
readonly description: "Disables interaction and applies disabled styling.";
|
|
1234
|
+
};
|
|
1235
|
+
loading: {
|
|
1236
|
+
readonly type: BooleanConstructor;
|
|
1237
|
+
readonly description: "Shows a loading indicator and blocks interaction.";
|
|
1238
|
+
};
|
|
1239
|
+
loadingLabel: {
|
|
1240
|
+
readonly type: StringConstructor;
|
|
1241
|
+
readonly description: "Accessible label announced while loading.";
|
|
898
1242
|
};
|
|
899
|
-
tooltip: StringConstructor;
|
|
900
|
-
skipFormRegistry: BooleanConstructor;
|
|
901
|
-
disabled: BooleanConstructor;
|
|
902
|
-
loading: BooleanConstructor;
|
|
903
|
-
loadingLabel: StringConstructor;
|
|
904
1243
|
loadingStatus: {
|
|
905
1244
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
906
1245
|
readonly default: "active";
|
|
1246
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
907
1247
|
};
|
|
908
1248
|
size: {
|
|
909
|
-
readonly type: PropType<
|
|
1249
|
+
readonly type: PropType<Size>;
|
|
910
1250
|
readonly default: "md";
|
|
911
1251
|
readonly validator: (value: string) => boolean;
|
|
1252
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
912
1253
|
};
|
|
913
1254
|
color: {
|
|
914
1255
|
readonly type: StringConstructor;
|
|
915
1256
|
readonly default: string | undefined;
|
|
1257
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
916
1258
|
};
|
|
917
1259
|
}>> & Readonly<{
|
|
918
1260
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
919
1261
|
}>, {
|
|
920
1262
|
disabled: boolean;
|
|
921
|
-
flat: boolean;
|
|
922
1263
|
color: string;
|
|
923
|
-
size:
|
|
1264
|
+
size: Size;
|
|
924
1265
|
loading: boolean;
|
|
925
1266
|
loadingStatus: import("../loader/Loader.vue").LoaderStatus;
|
|
926
1267
|
modelValue: string | number | boolean | object | any[] | undefined;
|
|
@@ -930,17 +1271,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
930
1271
|
hideFooter: boolean;
|
|
931
1272
|
rules: unknown[];
|
|
932
1273
|
skipFormRegistry: boolean;
|
|
933
|
-
clearable: boolean;
|
|
934
|
-
multiple: boolean;
|
|
935
|
-
multipleCheckbox: boolean;
|
|
936
|
-
truncate: boolean;
|
|
937
|
-
native: boolean;
|
|
938
|
-
filterable: boolean;
|
|
939
1274
|
filterPlaceholder: string;
|
|
940
|
-
filterablePrefix: boolean;
|
|
941
|
-
filterableSuffix: boolean;
|
|
942
|
-
hideSelectedOptionSlots: boolean;
|
|
943
|
-
virtualList: boolean;
|
|
944
1275
|
virtualListItemHeight: number;
|
|
945
1276
|
virtualListOverscan: number;
|
|
946
1277
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|