@indielayer/ui 2.0.0 → 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/tailwind.css +7 -1
- package/docs/components/Cookies.vue +3 -1
- package/docs/components/common/CodePreview.vue +1 -1
- package/docs/components/common/DocsCopyPage.vue +200 -0
- package/docs/components/common/DocumentPage.vue +76 -23
- package/docs/components/toolbar/ToolbarColorToggle.vue +29 -18
- package/docs/components/toolbar/ToolbarSearch.vue +4 -4
- package/docs/composables/useDocMeta.ts +63 -4
- package/docs/icons.ts +3 -0
- package/docs/main.ts +25 -26
- 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/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 +2 -2
- package/docs/pages/component/empty/index.vue +3 -3
- package/docs/pages/component/form/index.vue +2 -2
- package/docs/pages/component/formGroup/index.vue +2 -2
- package/docs/pages/component/infiniteLoader/index.vue +3 -3
- package/docs/pages/component/input/index.vue +5 -5
- package/docs/pages/component/inputGroup/index.vue +3 -3
- package/docs/pages/component/inputGroup/validation.vue +6 -1
- 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 +3 -3
- 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/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/table/index.vue +4 -4
- 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/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/virtualList/index.vue +3 -3
- package/docs/pages/icons.vue +2 -2
- package/docs/router/index.ts +39 -44
- package/docs/search/components.json +1 -1
- package/docs/search/index.json +1 -1
- package/lib/common/buttonGroupRadius.d.ts +3 -0
- package/lib/common/buttonGroupRadius.js +6 -0
- package/lib/common/props.d.ts +1 -1
- package/lib/common/props.js +10 -9
- package/lib/components/accordion/Accordion.vue.d.ts +42 -9
- package/lib/components/accordion/Accordion.vue_vue_type_script_setup_true_lang.js +18 -6
- package/lib/components/accordion/AccordionItem.vue.d.ts +33 -6
- package/lib/components/accordion/AccordionItem.vue_vue_type_script_setup_true_lang.js +31 -6
- package/lib/components/alert/Alert.vue.d.ts +27 -6
- package/lib/components/alert/Alert.vue_vue_type_script_setup_true_lang.js +20 -6
- package/lib/components/avatar/Avatar.vue.d.ts +45 -9
- package/lib/components/avatar/Avatar.vue_vue_type_script_setup_true_lang.js +17 -6
- package/lib/components/badge/Badge.vue.d.ts +54 -9
- package/lib/components/badge/Badge.vue_vue_type_script_setup_true_lang.js +26 -9
- package/lib/components/breadcrumbs/Breadcrumbs.vue.d.ts +30 -6
- package/lib/components/breadcrumbs/Breadcrumbs.vue_vue_type_script_setup_true_lang.js +13 -5
- package/lib/components/button/Button.js +2 -2
- package/lib/components/button/Button.vue.d.ts +138 -28
- package/lib/components/button/Button.vue_vue_type_script_setup_true_lang.js +192 -70
- package/lib/components/button/ButtonGroup.js +4 -5
- package/lib/components/button/ButtonGroup.vue.d.ts +54 -10
- package/lib/components/button/ButtonGroup.vue_vue_type_script_setup_true_lang.js +30 -19
- package/lib/components/button/theme/Button.base.theme.js +6 -5
- package/lib/components/button/theme/Button.carbon.theme.js +6 -5
- package/lib/components/card/Card.vue.d.ts +3 -0
- package/lib/components/card/Card.vue_vue_type_script_setup_true_lang.js +4 -2
- package/lib/components/carousel/Carousel.vue.d.ts +21 -3
- package/lib/components/carousel/Carousel.vue_vue_type_script_setup_true_lang.js +23 -5
- package/lib/components/carousel/CarouselSlide.js +2 -2
- package/lib/components/carousel/CarouselSlide.vue.d.ts +3 -0
- package/lib/components/carousel/CarouselSlide.vue_vue_type_script_setup_true_lang.js +3 -1
- package/lib/components/carousel/{CarouselSlide.vue_vue_type_style_index_0_scoped_e90d2127_lang.module.js → CarouselSlide.vue_vue_type_style_index_0_scoped_4f559831_lang.module.js} +1 -1
- package/lib/components/checkbox/Checkbox.vue.d.ts +198 -45
- package/lib/components/checkbox/Checkbox.vue_vue_type_script_setup_true_lang.js +20 -3
- package/lib/components/container/Container.vue.d.ts +6 -0
- package/lib/components/container/Container.vue_vue_type_script_setup_true_lang.js +5 -2
- package/lib/components/datepicker/Datepicker.vue.d.ts +462 -36
- package/lib/components/datepicker/Datepicker.vue_vue_type_script_setup_true_lang.js +294 -153
- package/lib/components/divider/Divider.vue.d.ts +12 -3
- package/lib/components/divider/Divider.vue_vue_type_script_setup_true_lang.js +6 -2
- package/lib/components/drawer/Drawer.vue.d.ts +39 -6
- package/lib/components/drawer/Drawer.vue_vue_type_script_setup_true_lang.js +30 -7
- package/lib/components/empty/Empty.vue.d.ts +30 -6
- package/lib/components/empty/Empty.vue_vue_type_script_setup_true_lang.js +17 -4
- package/lib/components/form/Form.vue.d.ts +48 -9
- package/lib/components/form/Form.vue_vue_type_script_setup_true_lang.js +34 -7
- package/lib/components/formGroup/FormGroup.vue.d.ts +171 -39
- package/lib/components/formGroup/FormGroup.vue_vue_type_script_setup_true_lang.js +15 -9
- package/lib/components/icon/Icon.vue.d.ts +9 -0
- package/lib/components/icon/Icon.vue_vue_type_script_setup_true_lang.js +6 -3
- package/lib/components/image/Image.vue.d.ts +12 -3
- package/lib/components/image/Image.vue_vue_type_script_setup_true_lang.js +5 -1
- package/lib/components/index.js +18 -18
- package/lib/components/input/Input.vue.d.ts +291 -66
- package/lib/components/input/Input.vue_vue_type_script_setup_true_lang.js +53 -15
- package/lib/components/inputFooter/InputFooter.vue.d.ts +48 -12
- package/lib/components/inputFooter/InputFooter.vue_vue_type_script_setup_true_lang.js +18 -5
- package/lib/components/inputGroup/InputGroup.vue.d.ts +171 -39
- package/lib/components/inputGroup/InputGroup.vue_vue_type_script_setup_true_lang.js +6 -1
- package/lib/components/label/Label.vue.d.ts +78 -18
- package/lib/components/label/Label.vue_vue_type_script_setup_true_lang.js +28 -8
- package/lib/components/link/Link.js +2 -2
- package/lib/components/link/Link.vue.d.ts +18 -3
- package/lib/components/link/Link.vue_vue_type_script_setup_true_lang.js +10 -5
- package/lib/components/loader/Loader.vue.d.ts +30 -6
- package/lib/components/loader/Loader.vue_vue_type_script_setup_true_lang.js +11 -3
- package/lib/components/menu/Menu.vue.d.ts +51 -9
- package/lib/components/menu/Menu.vue_vue_type_script_setup_true_lang.js +24 -8
- package/lib/components/menu/MenuItem.js +2 -2
- package/lib/components/menu/MenuItem.vue.d.ts +198 -45
- package/lib/components/menu/MenuItem.vue_vue_type_script_setup_true_lang.js +84 -23
- package/lib/components/menu/{MenuItem.vue_vue_type_style_index_0_scoped_2a6b7341_lang.module.js → MenuItem.vue_vue_type_style_index_0_scoped_5aebaff3_lang.module.js} +1 -1
- package/lib/components/modal/Modal.vue.d.ts +177 -39
- package/lib/components/modal/Modal.vue_vue_type_script_setup_true_lang.js +104 -23
- package/lib/components/notifications/Notifications.vue.d.ts +24 -0
- package/lib/components/notifications/Notifications.vue_vue_type_script_setup_true_lang.js +39 -12
- package/lib/components/pagination/Pagination.vue.d.ts +12 -0
- package/lib/components/pagination/Pagination.vue_vue_type_script_setup_true_lang.js +8 -4
- package/lib/components/pagination/PaginationItem.vue.d.ts +18 -3
- package/lib/components/pagination/PaginationItem.vue_vue_type_script_setup_true_lang.js +8 -3
- package/lib/components/popover/Popover.vue.d.ts +204 -45
- package/lib/components/popover/Popover.vue_vue_type_script_setup_true_lang.js +157 -66
- package/lib/components/popover/PopoverContainer.vue.d.ts +3 -0
- package/lib/components/popover/PopoverContainer.vue_vue_type_script_setup_true_lang.js +3 -1
- 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/PopoverContainer.base.theme.js +1 -1
- package/lib/components/progress/Progress.vue.d.ts +9 -0
- package/lib/components/progress/Progress.vue_vue_type_script_setup_true_lang.js +7 -4
- package/lib/components/qrCode/QrCode.vue.d.ts +24 -3
- package/lib/components/qrCode/QrCode.vue_vue_type_script_setup_true_lang.js +13 -5
- package/lib/components/radio/Radio.vue.d.ts +186 -42
- package/lib/components/radio/Radio.vue_vue_type_script_setup_true_lang.js +10 -2
- package/lib/components/radioButton/RadioButton.vue.d.ts +186 -42
- package/lib/components/radioButton/RadioButton.vue_vue_type_script_setup_true_lang.js +9 -1
- package/lib/components/scroll/Scroll.vue.d.ts +3 -0
- package/lib/components/scroll/Scroll.vue_vue_type_script_setup_true_lang.js +9 -4
- package/lib/components/select/Select.vue.d.ts +633 -144
- package/lib/components/select/Select.vue_vue_type_script_setup_true_lang.js +224 -189
- package/lib/components/skeleton/Skeleton.vue.d.ts +6 -0
- package/lib/components/skeleton/Skeleton.vue_vue_type_script_setup_true_lang.js +5 -2
- package/lib/components/slider/Slider.js +1 -1
- package/lib/components/slider/Slider.vue.d.ts +180 -39
- package/lib/components/slider/Slider.vue_vue_type_script_setup_true_lang.js +14 -3
- package/lib/components/spinner/Spinner.vue.d.ts +6 -0
- package/lib/components/spinner/Spinner.vue_vue_type_script_setup_true_lang.js +3 -1
- package/lib/components/stepper/Stepper.vue.d.ts +120 -24
- package/lib/components/stepper/Stepper.vue_vue_type_script_setup_true_lang.js +63 -15
- package/lib/components/tab/Tab.vue.d.ts +112 -31
- package/lib/components/tab/Tab.vue_vue_type_script_setup_true_lang.js +166 -95
- package/lib/components/tab/TabGroup.vue.d.ts +47 -12
- package/lib/components/tab/TabGroup.vue_vue_type_script_setup_true_lang.js +93 -49
- package/lib/components/tab/theme/Tab.base.theme.js +6 -6
- package/lib/components/tab/theme/Tab.carbon.theme.js +6 -6
- package/lib/components/tab/theme/TabGroup.base.theme.js +7 -7
- package/lib/components/tab/theme/TabGroup.carbon.theme.js +3 -3
- package/lib/components/table/Table.vue.d.ts +45 -9
- package/lib/components/table/Table.vue_vue_type_script_setup_true_lang.js +82 -27
- package/lib/components/table/TableCell.vue.d.ts +54 -12
- package/lib/components/table/TableCell.vue_vue_type_script_setup_true_lang.js +23 -8
- package/lib/components/table/TableHead.vue_vue_type_script_setup_true_lang.js +2 -1
- package/lib/components/table/TableHeader.vue.d.ts +18 -3
- package/lib/components/table/TableHeader.vue_vue_type_script_setup_true_lang.js +10 -4
- package/lib/components/table/TableRow.vue.d.ts +15 -3
- package/lib/components/table/TableRow.vue_vue_type_script_setup_true_lang.js +10 -5
- package/lib/components/tag/Tag.vue.d.ts +33 -6
- package/lib/components/tag/Tag.vue_vue_type_script_setup_true_lang.js +21 -7
- package/lib/components/textarea/Textarea.vue.d.ts +237 -54
- package/lib/components/textarea/Textarea.vue_vue_type_script_setup_true_lang.js +38 -13
- package/lib/components/themeProvider/ThemeProvider.vue.d.ts +10 -4
- package/lib/components/themeProvider/ThemeProvider.vue_vue_type_script_setup_true_lang.js +6 -1
- package/lib/components/toggle/Toggle.vue.d.ts +174 -39
- package/lib/components/toggle/Toggle.vue_vue_type_script_setup_true_lang.js +5 -1
- package/lib/components/tooltip/ToggleTip.vue.d.ts +24 -6
- package/lib/components/tooltip/ToggleTip.vue_vue_type_script_setup_true_lang.js +9 -2
- package/lib/components/tooltip/Tooltip.vue.d.ts +30 -6
- package/lib/components/tooltip/Tooltip.vue_vue_type_script_setup_true_lang.js +16 -4
- package/lib/components/upload/Upload.vue.d.ts +249 -57
- package/lib/components/upload/Upload.vue_vue_type_script_setup_true_lang.js +156 -125
- package/lib/components/upload/fileAccept.d.ts +6 -0
- package/lib/components/upload/fileAccept.js +17 -0
- package/lib/composables/useColors.d.ts +1 -0
- package/lib/composables/useColors.js +2 -1
- package/lib/composables/useCommon.d.ts +1 -0
- package/lib/composables/useCommon.js +2 -1
- package/lib/composables/useFocusTrap.js +1 -1
- package/lib/composables/useInputtable.d.ts +45 -10
- package/lib/composables/useInputtable.js +56 -14
- package/lib/composables/useInteractive.d.ts +13 -3
- package/lib/composables/useInteractive.js +14 -4
- package/lib/index.js +12 -12
- package/lib/index.umd.js +9 -10
- package/lib/themes/base/styles.d.ts +1 -1
- package/lib/themes/base/styles.js +1 -1
- package/lib/themes/carbon/styles.d.ts +1 -1
- package/lib/themes/carbon/styles.js +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- 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 +25 -5
- 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 +91 -21
- 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 +64 -13
- package/lib/virtual/components/virtualList/useDynamicRowHeight.js +4 -3
- package/package.json +5 -3
- package/src/common/buttonGroupRadius.ts +16 -0
- package/src/common/props.ts +10 -9
- package/src/components/accordion/Accordion.vue +20 -4
- package/src/components/accordion/AccordionItem.vue +28 -3
- package/src/components/alert/Alert.vue +22 -6
- package/src/components/avatar/Avatar.vue +20 -5
- package/src/components/badge/Badge.vue +24 -5
- package/src/components/breadcrumbs/Breadcrumbs.vue +15 -5
- package/src/components/button/Button.vue +140 -5
- package/src/components/button/ButtonGroup.vue +41 -25
- 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 +4 -1
- package/src/components/button/theme/Button.carbon.theme.ts +5 -4
- package/src/components/card/Card.vue +10 -2
- package/src/components/carousel/Carousel.vue +22 -2
- package/src/components/carousel/CarouselSlide.vue +6 -0
- package/src/components/checkbox/Checkbox.vue +22 -3
- package/src/components/container/Container.vue +10 -1
- package/src/components/datepicker/Datepicker.vue +466 -101
- package/src/components/datepicker/__tests__/Datepicker.spec.ts +31 -0
- package/src/components/divider/Divider.vue +9 -3
- package/src/components/drawer/Drawer.vue +27 -2
- package/src/components/empty/Empty.vue +18 -3
- package/src/components/form/Form.vue +32 -3
- package/src/components/formGroup/FormGroup.vue +12 -0
- package/src/components/icon/Icon.vue +4 -1
- package/src/components/image/Image.vue +8 -2
- package/src/components/input/Input.vue +54 -12
- package/src/components/inputFooter/InputFooter.vue +21 -6
- package/src/components/inputGroup/InputGroup.vue +12 -1
- package/src/components/label/Label.vue +31 -7
- package/src/components/link/Link.vue +16 -5
- package/src/components/loader/Loader.vue +10 -2
- package/src/components/menu/Menu.vue +23 -5
- package/src/components/menu/MenuItem.vue +78 -17
- 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 +9 -1
- package/src/components/pagination/PaginationItem.vue +11 -2
- package/src/components/popover/Popover.vue +113 -18
- 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 +8 -3
- package/src/components/qrCode/QrCode.vue +9 -1
- package/src/components/radio/Radio.vue +16 -2
- package/src/components/radioButton/RadioButton.vue +15 -1
- package/src/components/scroll/Scroll.vue +15 -4
- package/src/components/select/Select.vue +53 -16
- package/src/components/skeleton/Skeleton.vue +3 -0
- package/src/components/slider/Slider.vue +15 -0
- package/src/components/spinner/Spinner.vue +2 -0
- package/src/components/stepper/Stepper.vue +57 -9
- package/src/components/tab/Tab.vue +153 -63
- package/src/components/tab/TabGroup.vue +110 -26
- 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 +76 -19
- package/src/components/table/TableCell.vue +25 -6
- package/src/components/table/TableHead.vue +9 -2
- package/src/components/table/TableHeader.vue +16 -3
- package/src/components/table/TableRow.vue +17 -5
- package/src/components/tag/Tag.vue +22 -6
- package/src/components/textarea/Textarea.vue +40 -11
- package/src/components/themeProvider/ThemeProvider.vue +22 -7
- package/src/components/toggle/Toggle.vue +9 -1
- package/src/components/tooltip/ToggleTip.vue +12 -3
- package/src/components/tooltip/Tooltip.vue +19 -3
- package/src/components/upload/Upload.vue +46 -16
- package/src/components/upload/__tests__/fileAccept.spec.ts +39 -0
- package/src/components/upload/fileAccept.ts +29 -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 +66 -10
- package/src/composables/useInteractive.ts +13 -3
- package/src/themes/base/styles.ts +2 -3
- package/src/themes/carbon/styles.ts +2 -3
- 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.vue +73 -8
- package/src/virtual/components/virtualList/useDynamicRowHeight.ts +9 -2
- package/volar.d.ts +3 -0
- package/docs/layouts/simple.vue +0 -5
- package/lib/components/button/ButtonGroup.vue_vue_type_style_index_0_lang.module.js +0 -7
- /package/lib/components/button/{Button.vue_vue_type_style_index_0_scoped_4402fde2_lang.module.js → Button.vue_vue_type_style_index_0_scoped_486cb9c0_lang.module.js} +0 -0
- /package/lib/components/link/{Link.vue_vue_type_style_index_0_scoped_8e0e4d08_lang.module.js → Link.vue_vue_type_style_index_0_scoped_3ee61e03_lang.module.js} +0 -0
|
@@ -4,8 +4,14 @@ import type { Size } from '../../composables/useCommon';
|
|
|
4
4
|
import type { InputGroupPosition } from '../../common/inputGroupRadius';
|
|
5
5
|
import XPopover from '../popover/Popover.vue';
|
|
6
6
|
declare const selectProps: {
|
|
7
|
-
placeholder:
|
|
8
|
-
|
|
7
|
+
placeholder: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
description: string;
|
|
10
|
+
};
|
|
11
|
+
options: {
|
|
12
|
+
type: PropType<SelectOption[]>;
|
|
13
|
+
description: string;
|
|
14
|
+
};
|
|
9
15
|
multiple: import("vue").Prop<boolean | undefined>;
|
|
10
16
|
multipleCheckbox: import("vue").Prop<boolean | undefined>;
|
|
11
17
|
truncate: import("vue").Prop<boolean | undefined>;
|
|
@@ -16,59 +22,116 @@ declare const selectProps: {
|
|
|
16
22
|
filterPlaceholder: {
|
|
17
23
|
type: StringConstructor;
|
|
18
24
|
default: string;
|
|
25
|
+
description: string;
|
|
19
26
|
};
|
|
20
27
|
filterablePrefix: import("vue").Prop<boolean | undefined>;
|
|
21
28
|
filterableSuffix: import("vue").Prop<boolean | undefined>;
|
|
22
29
|
hideSelectedOptionSlots: import("vue").Prop<boolean | undefined>;
|
|
23
30
|
virtualList: import("vue").Prop<boolean | undefined>;
|
|
24
|
-
virtualListOffsetTop:
|
|
25
|
-
|
|
31
|
+
virtualListOffsetTop: {
|
|
32
|
+
type: NumberConstructor;
|
|
33
|
+
description: string;
|
|
34
|
+
};
|
|
35
|
+
virtualListOffsetBottom: {
|
|
36
|
+
type: NumberConstructor;
|
|
37
|
+
description: string;
|
|
38
|
+
};
|
|
26
39
|
virtualListItemHeight: {
|
|
27
40
|
type: NumberConstructor;
|
|
28
41
|
default: number;
|
|
42
|
+
description: string;
|
|
29
43
|
};
|
|
30
44
|
virtualListOverscan: {
|
|
31
45
|
type: NumberConstructor;
|
|
32
46
|
default: number;
|
|
47
|
+
description: string;
|
|
48
|
+
};
|
|
49
|
+
placement: {
|
|
50
|
+
type: PropType<import("floating-vue").Placement>;
|
|
51
|
+
description: string;
|
|
33
52
|
};
|
|
34
|
-
placement: PropType<import("floating-vue").Placement>;
|
|
35
53
|
modelValue: {
|
|
36
54
|
readonly type: PropType<string | number | boolean | object | any[] | undefined>;
|
|
37
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.";
|
|
38
73
|
};
|
|
39
|
-
id: StringConstructor;
|
|
40
|
-
name: StringConstructor;
|
|
41
|
-
readonly: BooleanConstructor;
|
|
42
|
-
required: BooleanConstructor;
|
|
43
74
|
validateOnInput: {
|
|
44
75
|
readonly type: BooleanConstructor;
|
|
45
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).";
|
|
46
94
|
};
|
|
47
|
-
label: StringConstructor;
|
|
48
|
-
helper: StringConstructor;
|
|
49
|
-
error: StringConstructor;
|
|
50
|
-
hideFooter: BooleanConstructor;
|
|
51
95
|
rules: {
|
|
52
96
|
readonly type: ArrayConstructor;
|
|
53
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.";
|
|
54
119
|
};
|
|
55
|
-
tooltip: StringConstructor;
|
|
56
|
-
skipFormRegistry: BooleanConstructor;
|
|
57
|
-
disabled: BooleanConstructor;
|
|
58
|
-
loading: BooleanConstructor;
|
|
59
|
-
loadingLabel: StringConstructor;
|
|
60
120
|
loadingStatus: {
|
|
61
121
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
62
122
|
readonly default: "active";
|
|
123
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
63
124
|
};
|
|
64
125
|
size: {
|
|
65
126
|
readonly type: PropType<Size>;
|
|
66
127
|
readonly default: "md";
|
|
67
128
|
readonly validator: (value: string) => boolean;
|
|
129
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
68
130
|
};
|
|
69
131
|
color: {
|
|
70
132
|
readonly type: StringConstructor;
|
|
71
133
|
readonly default: string | undefined;
|
|
134
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
72
135
|
};
|
|
73
136
|
};
|
|
74
137
|
export type SelectOption = {
|
|
@@ -92,8 +155,14 @@ export interface SelectTheme extends ThemeComponent<SelectProps, InternalClasses
|
|
|
92
155
|
}
|
|
93
156
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
94
157
|
filter: import('vue').PropType<any>;
|
|
95
|
-
placeholder:
|
|
96
|
-
|
|
158
|
+
placeholder: {
|
|
159
|
+
type: StringConstructor;
|
|
160
|
+
description: string;
|
|
161
|
+
};
|
|
162
|
+
options: {
|
|
163
|
+
type: PropType<SelectOption[]>;
|
|
164
|
+
description: string;
|
|
165
|
+
};
|
|
97
166
|
multiple: import("vue").Prop<boolean | undefined>;
|
|
98
167
|
multipleCheckbox: import("vue").Prop<boolean | undefined>;
|
|
99
168
|
truncate: import("vue").Prop<boolean | undefined>;
|
|
@@ -104,59 +173,116 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
104
173
|
filterPlaceholder: {
|
|
105
174
|
type: StringConstructor;
|
|
106
175
|
default: string;
|
|
176
|
+
description: string;
|
|
107
177
|
};
|
|
108
178
|
filterablePrefix: import("vue").Prop<boolean | undefined>;
|
|
109
179
|
filterableSuffix: import("vue").Prop<boolean | undefined>;
|
|
110
180
|
hideSelectedOptionSlots: import("vue").Prop<boolean | undefined>;
|
|
111
181
|
virtualList: import("vue").Prop<boolean | undefined>;
|
|
112
|
-
virtualListOffsetTop:
|
|
113
|
-
|
|
182
|
+
virtualListOffsetTop: {
|
|
183
|
+
type: NumberConstructor;
|
|
184
|
+
description: string;
|
|
185
|
+
};
|
|
186
|
+
virtualListOffsetBottom: {
|
|
187
|
+
type: NumberConstructor;
|
|
188
|
+
description: string;
|
|
189
|
+
};
|
|
114
190
|
virtualListItemHeight: {
|
|
115
191
|
type: NumberConstructor;
|
|
116
192
|
default: number;
|
|
193
|
+
description: string;
|
|
117
194
|
};
|
|
118
195
|
virtualListOverscan: {
|
|
119
196
|
type: NumberConstructor;
|
|
120
197
|
default: number;
|
|
198
|
+
description: string;
|
|
199
|
+
};
|
|
200
|
+
placement: {
|
|
201
|
+
type: PropType<import("floating-vue").Placement>;
|
|
202
|
+
description: string;
|
|
121
203
|
};
|
|
122
|
-
placement: PropType<import("floating-vue").Placement>;
|
|
123
204
|
modelValue: {
|
|
124
205
|
readonly type: PropType<string | number | boolean | object | any[] | undefined>;
|
|
125
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.";
|
|
126
224
|
};
|
|
127
|
-
id: StringConstructor;
|
|
128
|
-
name: StringConstructor;
|
|
129
|
-
readonly: BooleanConstructor;
|
|
130
|
-
required: BooleanConstructor;
|
|
131
225
|
validateOnInput: {
|
|
132
226
|
readonly type: BooleanConstructor;
|
|
133
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).";
|
|
134
245
|
};
|
|
135
|
-
label: StringConstructor;
|
|
136
|
-
helper: StringConstructor;
|
|
137
|
-
error: StringConstructor;
|
|
138
|
-
hideFooter: BooleanConstructor;
|
|
139
246
|
rules: {
|
|
140
247
|
readonly type: ArrayConstructor;
|
|
141
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.";
|
|
142
270
|
};
|
|
143
|
-
tooltip: StringConstructor;
|
|
144
|
-
skipFormRegistry: BooleanConstructor;
|
|
145
|
-
disabled: BooleanConstructor;
|
|
146
|
-
loading: BooleanConstructor;
|
|
147
|
-
loadingLabel: StringConstructor;
|
|
148
271
|
loadingStatus: {
|
|
149
272
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
150
273
|
readonly default: "active";
|
|
274
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
151
275
|
};
|
|
152
276
|
size: {
|
|
153
277
|
readonly type: PropType<Size>;
|
|
154
278
|
readonly default: "md";
|
|
155
279
|
readonly validator: (value: string) => boolean;
|
|
280
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
156
281
|
};
|
|
157
282
|
color: {
|
|
158
283
|
readonly type: StringConstructor;
|
|
159
284
|
readonly default: string | undefined;
|
|
285
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
160
286
|
};
|
|
161
287
|
}>, {
|
|
162
288
|
focus: () => void | undefined;
|
|
@@ -204,13 +330,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
204
330
|
readonly icon?: string | undefined;
|
|
205
331
|
readonly iconLeft?: string | undefined;
|
|
206
332
|
readonly iconRight?: string | undefined;
|
|
333
|
+
readonly tooltip?: string | undefined;
|
|
207
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;
|
|
215
341
|
readonly clearable?: boolean | undefined;
|
|
216
342
|
readonly max?: string | number | undefined;
|
|
@@ -236,64 +362,139 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
236
362
|
showPasswordToggle: {
|
|
237
363
|
type: BooleanConstructor;
|
|
238
364
|
default: boolean;
|
|
365
|
+
description: string;
|
|
239
366
|
};
|
|
240
367
|
dir: {
|
|
241
368
|
type: PropType<"rtl" | "ltr">;
|
|
242
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;
|
|
243
403
|
};
|
|
244
|
-
icon: StringConstructor;
|
|
245
|
-
iconLeft: StringConstructor;
|
|
246
|
-
iconRight: StringConstructor;
|
|
247
|
-
max: (StringConstructor | NumberConstructor)[];
|
|
248
|
-
maxlength: (StringConstructor | NumberConstructor)[];
|
|
249
|
-
min: (StringConstructor | NumberConstructor)[];
|
|
250
|
-
minlength: (StringConstructor | NumberConstructor)[];
|
|
251
|
-
placeholder: StringConstructor;
|
|
252
404
|
type: {
|
|
253
405
|
type: StringConstructor;
|
|
254
406
|
default: string;
|
|
407
|
+
description: string;
|
|
408
|
+
};
|
|
409
|
+
step: {
|
|
410
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
411
|
+
description: string;
|
|
255
412
|
};
|
|
256
|
-
step: (StringConstructor | NumberConstructor)[];
|
|
257
413
|
block: import("vue").Prop<boolean | undefined>;
|
|
258
414
|
showCounter: import("vue").Prop<boolean | undefined>;
|
|
259
415
|
clearable: import("vue").Prop<boolean | undefined>;
|
|
260
416
|
modelValue: {
|
|
261
417
|
readonly type: PropType<string | number | boolean | object | any[] | undefined>;
|
|
262
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.";
|
|
263
436
|
};
|
|
264
|
-
id: StringConstructor;
|
|
265
|
-
name: StringConstructor;
|
|
266
|
-
readonly: BooleanConstructor;
|
|
267
|
-
required: BooleanConstructor;
|
|
268
437
|
validateOnInput: {
|
|
269
438
|
readonly type: BooleanConstructor;
|
|
270
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).";
|
|
271
457
|
};
|
|
272
|
-
label: StringConstructor;
|
|
273
|
-
helper: StringConstructor;
|
|
274
|
-
error: StringConstructor;
|
|
275
|
-
hideFooter: BooleanConstructor;
|
|
276
458
|
rules: {
|
|
277
459
|
readonly type: ArrayConstructor;
|
|
278
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.";
|
|
279
482
|
};
|
|
280
|
-
tooltip: StringConstructor;
|
|
281
|
-
skipFormRegistry: BooleanConstructor;
|
|
282
|
-
disabled: BooleanConstructor;
|
|
283
|
-
loading: BooleanConstructor;
|
|
284
|
-
loadingLabel: StringConstructor;
|
|
285
483
|
loadingStatus: {
|
|
286
484
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
287
485
|
readonly default: "active";
|
|
486
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
288
487
|
};
|
|
289
488
|
color: {
|
|
290
489
|
readonly type: StringConstructor;
|
|
291
490
|
readonly default: string | undefined;
|
|
491
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
292
492
|
};
|
|
293
493
|
size: {
|
|
294
494
|
readonly type: PropType<Size>;
|
|
295
495
|
readonly default: "md";
|
|
296
496
|
readonly validator: (value: string) => boolean;
|
|
497
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
297
498
|
};
|
|
298
499
|
}>> & Readonly<{
|
|
299
500
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
@@ -359,64 +560,139 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
359
560
|
showPasswordToggle: {
|
|
360
561
|
type: BooleanConstructor;
|
|
361
562
|
default: boolean;
|
|
563
|
+
description: string;
|
|
362
564
|
};
|
|
363
565
|
dir: {
|
|
364
566
|
type: PropType<"rtl" | "ltr">;
|
|
365
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;
|
|
366
601
|
};
|
|
367
|
-
icon: StringConstructor;
|
|
368
|
-
iconLeft: StringConstructor;
|
|
369
|
-
iconRight: StringConstructor;
|
|
370
|
-
max: (StringConstructor | NumberConstructor)[];
|
|
371
|
-
maxlength: (StringConstructor | NumberConstructor)[];
|
|
372
|
-
min: (StringConstructor | NumberConstructor)[];
|
|
373
|
-
minlength: (StringConstructor | NumberConstructor)[];
|
|
374
|
-
placeholder: StringConstructor;
|
|
375
602
|
type: {
|
|
376
603
|
type: StringConstructor;
|
|
377
604
|
default: string;
|
|
605
|
+
description: string;
|
|
606
|
+
};
|
|
607
|
+
step: {
|
|
608
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
609
|
+
description: string;
|
|
378
610
|
};
|
|
379
|
-
step: (StringConstructor | NumberConstructor)[];
|
|
380
611
|
block: import("vue").Prop<boolean | undefined>;
|
|
381
612
|
showCounter: import("vue").Prop<boolean | undefined>;
|
|
382
613
|
clearable: import("vue").Prop<boolean | undefined>;
|
|
383
614
|
modelValue: {
|
|
384
615
|
readonly type: PropType<string | number | boolean | object | any[] | undefined>;
|
|
385
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.";
|
|
386
634
|
};
|
|
387
|
-
id: StringConstructor;
|
|
388
|
-
name: StringConstructor;
|
|
389
|
-
readonly: BooleanConstructor;
|
|
390
|
-
required: BooleanConstructor;
|
|
391
635
|
validateOnInput: {
|
|
392
636
|
readonly type: BooleanConstructor;
|
|
393
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).";
|
|
394
655
|
};
|
|
395
|
-
label: StringConstructor;
|
|
396
|
-
helper: StringConstructor;
|
|
397
|
-
error: StringConstructor;
|
|
398
|
-
hideFooter: BooleanConstructor;
|
|
399
656
|
rules: {
|
|
400
657
|
readonly type: ArrayConstructor;
|
|
401
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.";
|
|
402
680
|
};
|
|
403
|
-
tooltip: StringConstructor;
|
|
404
|
-
skipFormRegistry: BooleanConstructor;
|
|
405
|
-
disabled: BooleanConstructor;
|
|
406
|
-
loading: BooleanConstructor;
|
|
407
|
-
loadingLabel: StringConstructor;
|
|
408
681
|
loadingStatus: {
|
|
409
682
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
410
683
|
readonly default: "active";
|
|
684
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
411
685
|
};
|
|
412
686
|
color: {
|
|
413
687
|
readonly type: StringConstructor;
|
|
414
688
|
readonly default: string | undefined;
|
|
689
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
415
690
|
};
|
|
416
691
|
size: {
|
|
417
692
|
readonly type: PropType<Size>;
|
|
418
693
|
readonly default: "md";
|
|
419
694
|
readonly validator: (value: string) => boolean;
|
|
695
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
420
696
|
};
|
|
421
697
|
}>> & Readonly<{
|
|
422
698
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
@@ -471,13 +747,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
471
747
|
readonly icon?: string | undefined;
|
|
472
748
|
readonly iconLeft?: string | undefined;
|
|
473
749
|
readonly iconRight?: string | undefined;
|
|
750
|
+
readonly tooltip?: string | undefined;
|
|
474
751
|
readonly block?: boolean | undefined;
|
|
475
752
|
readonly loadingLabel?: string | undefined;
|
|
476
753
|
readonly modelValue?: string | number | boolean | object | any[] | undefined;
|
|
477
754
|
readonly id?: string | undefined;
|
|
478
755
|
readonly label?: string | undefined;
|
|
479
756
|
readonly helper?: string | undefined;
|
|
480
|
-
readonly tooltip?: string | undefined;
|
|
481
757
|
readonly placeholder?: string | undefined;
|
|
482
758
|
readonly clearable?: boolean | undefined;
|
|
483
759
|
readonly max?: string | number | undefined;
|
|
@@ -503,64 +779,139 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
503
779
|
showPasswordToggle: {
|
|
504
780
|
type: BooleanConstructor;
|
|
505
781
|
default: boolean;
|
|
782
|
+
description: string;
|
|
506
783
|
};
|
|
507
784
|
dir: {
|
|
508
785
|
type: PropType<"rtl" | "ltr">;
|
|
509
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;
|
|
510
820
|
};
|
|
511
|
-
icon: StringConstructor;
|
|
512
|
-
iconLeft: StringConstructor;
|
|
513
|
-
iconRight: StringConstructor;
|
|
514
|
-
max: (StringConstructor | NumberConstructor)[];
|
|
515
|
-
maxlength: (StringConstructor | NumberConstructor)[];
|
|
516
|
-
min: (StringConstructor | NumberConstructor)[];
|
|
517
|
-
minlength: (StringConstructor | NumberConstructor)[];
|
|
518
|
-
placeholder: StringConstructor;
|
|
519
821
|
type: {
|
|
520
822
|
type: StringConstructor;
|
|
521
823
|
default: string;
|
|
824
|
+
description: string;
|
|
825
|
+
};
|
|
826
|
+
step: {
|
|
827
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
828
|
+
description: string;
|
|
522
829
|
};
|
|
523
|
-
step: (StringConstructor | NumberConstructor)[];
|
|
524
830
|
block: import("vue").Prop<boolean | undefined>;
|
|
525
831
|
showCounter: import("vue").Prop<boolean | undefined>;
|
|
526
832
|
clearable: import("vue").Prop<boolean | undefined>;
|
|
527
833
|
modelValue: {
|
|
528
834
|
readonly type: PropType<string | number | boolean | object | any[] | undefined>;
|
|
529
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.";
|
|
530
853
|
};
|
|
531
|
-
id: StringConstructor;
|
|
532
|
-
name: StringConstructor;
|
|
533
|
-
readonly: BooleanConstructor;
|
|
534
|
-
required: BooleanConstructor;
|
|
535
854
|
validateOnInput: {
|
|
536
855
|
readonly type: BooleanConstructor;
|
|
537
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).";
|
|
538
874
|
};
|
|
539
|
-
label: StringConstructor;
|
|
540
|
-
helper: StringConstructor;
|
|
541
|
-
error: StringConstructor;
|
|
542
|
-
hideFooter: BooleanConstructor;
|
|
543
875
|
rules: {
|
|
544
876
|
readonly type: ArrayConstructor;
|
|
545
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.";
|
|
546
899
|
};
|
|
547
|
-
tooltip: StringConstructor;
|
|
548
|
-
skipFormRegistry: BooleanConstructor;
|
|
549
|
-
disabled: BooleanConstructor;
|
|
550
|
-
loading: BooleanConstructor;
|
|
551
|
-
loadingLabel: StringConstructor;
|
|
552
900
|
loadingStatus: {
|
|
553
901
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
554
902
|
readonly default: "active";
|
|
903
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
555
904
|
};
|
|
556
905
|
color: {
|
|
557
906
|
readonly type: StringConstructor;
|
|
558
907
|
readonly default: string | undefined;
|
|
908
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
559
909
|
};
|
|
560
910
|
size: {
|
|
561
911
|
readonly type: PropType<Size>;
|
|
562
912
|
readonly default: "md";
|
|
563
913
|
readonly validator: (value: string) => boolean;
|
|
914
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
564
915
|
};
|
|
565
916
|
}>> & Readonly<{
|
|
566
917
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
@@ -626,64 +977,139 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
626
977
|
showPasswordToggle: {
|
|
627
978
|
type: BooleanConstructor;
|
|
628
979
|
default: boolean;
|
|
980
|
+
description: string;
|
|
629
981
|
};
|
|
630
982
|
dir: {
|
|
631
983
|
type: PropType<"rtl" | "ltr">;
|
|
632
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;
|
|
633
1018
|
};
|
|
634
|
-
icon: StringConstructor;
|
|
635
|
-
iconLeft: StringConstructor;
|
|
636
|
-
iconRight: StringConstructor;
|
|
637
|
-
max: (StringConstructor | NumberConstructor)[];
|
|
638
|
-
maxlength: (StringConstructor | NumberConstructor)[];
|
|
639
|
-
min: (StringConstructor | NumberConstructor)[];
|
|
640
|
-
minlength: (StringConstructor | NumberConstructor)[];
|
|
641
|
-
placeholder: StringConstructor;
|
|
642
1019
|
type: {
|
|
643
1020
|
type: StringConstructor;
|
|
644
1021
|
default: string;
|
|
1022
|
+
description: string;
|
|
1023
|
+
};
|
|
1024
|
+
step: {
|
|
1025
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1026
|
+
description: string;
|
|
645
1027
|
};
|
|
646
|
-
step: (StringConstructor | NumberConstructor)[];
|
|
647
1028
|
block: import("vue").Prop<boolean | undefined>;
|
|
648
1029
|
showCounter: import("vue").Prop<boolean | undefined>;
|
|
649
1030
|
clearable: import("vue").Prop<boolean | undefined>;
|
|
650
1031
|
modelValue: {
|
|
651
1032
|
readonly type: PropType<string | number | boolean | object | any[] | undefined>;
|
|
652
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.";
|
|
653
1051
|
};
|
|
654
|
-
id: StringConstructor;
|
|
655
|
-
name: StringConstructor;
|
|
656
|
-
readonly: BooleanConstructor;
|
|
657
|
-
required: BooleanConstructor;
|
|
658
1052
|
validateOnInput: {
|
|
659
1053
|
readonly type: BooleanConstructor;
|
|
660
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).";
|
|
661
1072
|
};
|
|
662
|
-
label: StringConstructor;
|
|
663
|
-
helper: StringConstructor;
|
|
664
|
-
error: StringConstructor;
|
|
665
|
-
hideFooter: BooleanConstructor;
|
|
666
1073
|
rules: {
|
|
667
1074
|
readonly type: ArrayConstructor;
|
|
668
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.";
|
|
669
1097
|
};
|
|
670
|
-
tooltip: StringConstructor;
|
|
671
|
-
skipFormRegistry: BooleanConstructor;
|
|
672
|
-
disabled: BooleanConstructor;
|
|
673
|
-
loading: BooleanConstructor;
|
|
674
|
-
loadingLabel: StringConstructor;
|
|
675
1098
|
loadingStatus: {
|
|
676
1099
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
677
1100
|
readonly default: "active";
|
|
1101
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
678
1102
|
};
|
|
679
1103
|
color: {
|
|
680
1104
|
readonly type: StringConstructor;
|
|
681
1105
|
readonly default: string | undefined;
|
|
1106
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
682
1107
|
};
|
|
683
1108
|
size: {
|
|
684
1109
|
readonly type: PropType<Size>;
|
|
685
1110
|
readonly default: "md";
|
|
686
1111
|
readonly validator: (value: string) => boolean;
|
|
1112
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
687
1113
|
};
|
|
688
1114
|
}>> & Readonly<{
|
|
689
1115
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
@@ -701,8 +1127,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
701
1127
|
}) | null>;
|
|
702
1128
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
703
1129
|
filter: import('vue').PropType<any>;
|
|
704
|
-
placeholder:
|
|
705
|
-
|
|
1130
|
+
placeholder: {
|
|
1131
|
+
type: StringConstructor;
|
|
1132
|
+
description: string;
|
|
1133
|
+
};
|
|
1134
|
+
options: {
|
|
1135
|
+
type: PropType<SelectOption[]>;
|
|
1136
|
+
description: string;
|
|
1137
|
+
};
|
|
706
1138
|
multiple: import("vue").Prop<boolean | undefined>;
|
|
707
1139
|
multipleCheckbox: import("vue").Prop<boolean | undefined>;
|
|
708
1140
|
truncate: import("vue").Prop<boolean | undefined>;
|
|
@@ -713,59 +1145,116 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
713
1145
|
filterPlaceholder: {
|
|
714
1146
|
type: StringConstructor;
|
|
715
1147
|
default: string;
|
|
1148
|
+
description: string;
|
|
716
1149
|
};
|
|
717
1150
|
filterablePrefix: import("vue").Prop<boolean | undefined>;
|
|
718
1151
|
filterableSuffix: import("vue").Prop<boolean | undefined>;
|
|
719
1152
|
hideSelectedOptionSlots: import("vue").Prop<boolean | undefined>;
|
|
720
1153
|
virtualList: import("vue").Prop<boolean | undefined>;
|
|
721
|
-
virtualListOffsetTop:
|
|
722
|
-
|
|
1154
|
+
virtualListOffsetTop: {
|
|
1155
|
+
type: NumberConstructor;
|
|
1156
|
+
description: string;
|
|
1157
|
+
};
|
|
1158
|
+
virtualListOffsetBottom: {
|
|
1159
|
+
type: NumberConstructor;
|
|
1160
|
+
description: string;
|
|
1161
|
+
};
|
|
723
1162
|
virtualListItemHeight: {
|
|
724
1163
|
type: NumberConstructor;
|
|
725
1164
|
default: number;
|
|
1165
|
+
description: string;
|
|
726
1166
|
};
|
|
727
1167
|
virtualListOverscan: {
|
|
728
1168
|
type: NumberConstructor;
|
|
729
1169
|
default: number;
|
|
1170
|
+
description: string;
|
|
1171
|
+
};
|
|
1172
|
+
placement: {
|
|
1173
|
+
type: PropType<import("floating-vue").Placement>;
|
|
1174
|
+
description: string;
|
|
730
1175
|
};
|
|
731
|
-
placement: PropType<import("floating-vue").Placement>;
|
|
732
1176
|
modelValue: {
|
|
733
1177
|
readonly type: PropType<string | number | boolean | object | any[] | undefined>;
|
|
734
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.";
|
|
735
1196
|
};
|
|
736
|
-
id: StringConstructor;
|
|
737
|
-
name: StringConstructor;
|
|
738
|
-
readonly: BooleanConstructor;
|
|
739
|
-
required: BooleanConstructor;
|
|
740
1197
|
validateOnInput: {
|
|
741
1198
|
readonly type: BooleanConstructor;
|
|
742
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).";
|
|
743
1217
|
};
|
|
744
|
-
label: StringConstructor;
|
|
745
|
-
helper: StringConstructor;
|
|
746
|
-
error: StringConstructor;
|
|
747
|
-
hideFooter: BooleanConstructor;
|
|
748
1218
|
rules: {
|
|
749
1219
|
readonly type: ArrayConstructor;
|
|
750
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.";
|
|
751
1242
|
};
|
|
752
|
-
tooltip: StringConstructor;
|
|
753
|
-
skipFormRegistry: BooleanConstructor;
|
|
754
|
-
disabled: BooleanConstructor;
|
|
755
|
-
loading: BooleanConstructor;
|
|
756
|
-
loadingLabel: StringConstructor;
|
|
757
1243
|
loadingStatus: {
|
|
758
1244
|
readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
759
1245
|
readonly default: "active";
|
|
1246
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
760
1247
|
};
|
|
761
1248
|
size: {
|
|
762
1249
|
readonly type: PropType<Size>;
|
|
763
1250
|
readonly default: "md";
|
|
764
1251
|
readonly validator: (value: string) => boolean;
|
|
1252
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
765
1253
|
};
|
|
766
1254
|
color: {
|
|
767
1255
|
readonly type: StringConstructor;
|
|
768
1256
|
readonly default: string | undefined;
|
|
1257
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
769
1258
|
};
|
|
770
1259
|
}>> & Readonly<{
|
|
771
1260
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|