@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
|
@@ -6,11 +6,13 @@ declare const skeletonProps: {
|
|
|
6
6
|
tag: {
|
|
7
7
|
type: StringConstructor;
|
|
8
8
|
default: string;
|
|
9
|
+
description: string;
|
|
9
10
|
};
|
|
10
11
|
shape: {
|
|
11
12
|
type: PropType<"line" | "circle">;
|
|
12
13
|
default: string;
|
|
13
14
|
validator: (val: SkeletonShape) => boolean;
|
|
15
|
+
description: string;
|
|
14
16
|
};
|
|
15
17
|
};
|
|
16
18
|
export type SkeletonProps = ExtractPublicPropTypes<typeof skeletonProps>;
|
|
@@ -21,21 +23,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
21
23
|
tag: {
|
|
22
24
|
type: StringConstructor;
|
|
23
25
|
default: string;
|
|
26
|
+
description: string;
|
|
24
27
|
};
|
|
25
28
|
shape: {
|
|
26
29
|
type: PropType<"line" | "circle">;
|
|
27
30
|
default: string;
|
|
28
31
|
validator: (val: "line" | "circle") => boolean;
|
|
32
|
+
description: string;
|
|
29
33
|
};
|
|
30
34
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
35
|
tag: {
|
|
32
36
|
type: StringConstructor;
|
|
33
37
|
default: string;
|
|
38
|
+
description: string;
|
|
34
39
|
};
|
|
35
40
|
shape: {
|
|
36
41
|
type: PropType<"line" | "circle">;
|
|
37
42
|
default: string;
|
|
38
43
|
validator: (val: "line" | "circle") => boolean;
|
|
44
|
+
description: string;
|
|
39
45
|
};
|
|
40
46
|
}>> & Readonly<{}>, {
|
|
41
47
|
tag: string;
|
|
@@ -4,15 +4,18 @@ import { createBlock as t, createTextVNode as n, defineComponent as r, normalize
|
|
|
4
4
|
var u = { shape: ["line", "circle"] }, d = /* @__PURE__ */ r({
|
|
5
5
|
name: "XSkeleton",
|
|
6
6
|
validators: u,
|
|
7
|
+
docs: {},
|
|
7
8
|
props: {
|
|
8
9
|
tag: {
|
|
9
10
|
type: String,
|
|
10
|
-
default: "div"
|
|
11
|
+
default: "div",
|
|
12
|
+
description: "Root element tag."
|
|
11
13
|
},
|
|
12
14
|
shape: {
|
|
13
15
|
type: String,
|
|
14
16
|
default: "line",
|
|
15
|
-
validator: (e) => u.shape.includes(e)
|
|
17
|
+
validator: (e) => u.shape.includes(e),
|
|
18
|
+
description: "Placeholder shape (line or circle)."
|
|
16
19
|
}
|
|
17
20
|
},
|
|
18
21
|
setup(r) {
|
|
@@ -2,6 +2,6 @@ import e from "../../_virtual/_plugin-vue_export-helper.js";
|
|
|
2
2
|
import t from "./Slider.vue_vue_type_script_setup_true_lang.js";
|
|
3
3
|
/* empty css */
|
|
4
4
|
//#region src/components/slider/Slider.vue
|
|
5
|
-
var n = /* @__PURE__ */ e(t, [["__scopeId", "data-v-
|
|
5
|
+
var n = /* @__PURE__ */ e(t, [["__scopeId", "data-v-5680a60a"]]);
|
|
6
6
|
//#endregion
|
|
7
7
|
export { n as default };
|
|
@@ -4,47 +4,94 @@ declare const sliderProps: {
|
|
|
4
4
|
min: {
|
|
5
5
|
type: (StringConstructor | NumberConstructor)[];
|
|
6
6
|
default: number;
|
|
7
|
+
description: string;
|
|
7
8
|
};
|
|
8
9
|
max: {
|
|
9
10
|
type: (StringConstructor | NumberConstructor)[];
|
|
10
11
|
default: number;
|
|
12
|
+
description: string;
|
|
11
13
|
};
|
|
12
14
|
step: {
|
|
13
15
|
type: (StringConstructor | NumberConstructor)[];
|
|
14
16
|
default: number;
|
|
17
|
+
description: string;
|
|
15
18
|
};
|
|
16
19
|
modelValue: {
|
|
17
20
|
readonly type: import("vue").PropType<string | number | boolean | object | any[] | undefined>;
|
|
18
21
|
readonly default: undefined;
|
|
22
|
+
readonly description: "Bound value (v-model).";
|
|
23
|
+
};
|
|
24
|
+
id: {
|
|
25
|
+
readonly type: StringConstructor;
|
|
26
|
+
readonly description: "Native id attribute for the input element.";
|
|
27
|
+
};
|
|
28
|
+
name: {
|
|
29
|
+
readonly type: StringConstructor;
|
|
30
|
+
readonly description: "Native name attribute for form submission.";
|
|
31
|
+
};
|
|
32
|
+
readonly: {
|
|
33
|
+
readonly type: BooleanConstructor;
|
|
34
|
+
readonly description: "Makes the field read-only without disabling it.";
|
|
35
|
+
};
|
|
36
|
+
required: {
|
|
37
|
+
readonly type: BooleanConstructor;
|
|
38
|
+
readonly description: "Marks the field as required for validation.";
|
|
19
39
|
};
|
|
20
|
-
id: StringConstructor;
|
|
21
|
-
name: StringConstructor;
|
|
22
|
-
readonly: BooleanConstructor;
|
|
23
|
-
required: BooleanConstructor;
|
|
24
40
|
validateOnInput: {
|
|
25
41
|
readonly type: BooleanConstructor;
|
|
26
42
|
readonly default: true;
|
|
43
|
+
readonly description: "Runs validation on each input event when true.";
|
|
44
|
+
};
|
|
45
|
+
label: {
|
|
46
|
+
readonly type: StringConstructor;
|
|
47
|
+
readonly description: "Visible label text for the field.";
|
|
48
|
+
};
|
|
49
|
+
helper: {
|
|
50
|
+
readonly type: StringConstructor;
|
|
51
|
+
readonly description: "Helper text shown below the field.";
|
|
52
|
+
};
|
|
53
|
+
error: {
|
|
54
|
+
readonly type: StringConstructor;
|
|
55
|
+
readonly description: "External error message; overrides rule errors when set.";
|
|
56
|
+
};
|
|
57
|
+
hideFooter: {
|
|
58
|
+
readonly type: BooleanConstructor;
|
|
59
|
+
readonly description: "Hides the footer area (helper / error).";
|
|
27
60
|
};
|
|
28
|
-
label: StringConstructor;
|
|
29
|
-
helper: StringConstructor;
|
|
30
|
-
error: StringConstructor;
|
|
31
|
-
hideFooter: BooleanConstructor;
|
|
32
61
|
rules: {
|
|
33
62
|
readonly type: ArrayConstructor;
|
|
34
63
|
readonly default: () => never[];
|
|
64
|
+
readonly description: "Validation rule functions or rule descriptors.";
|
|
65
|
+
};
|
|
66
|
+
tooltip: {
|
|
67
|
+
readonly type: StringConstructor;
|
|
68
|
+
readonly description: "Optional tooltip text next to the label.";
|
|
69
|
+
};
|
|
70
|
+
skipFormRegistry: {
|
|
71
|
+
readonly type: BooleanConstructor;
|
|
72
|
+
readonly description: "Skips registering this field with a parent x-form.";
|
|
73
|
+
};
|
|
74
|
+
disabled: {
|
|
75
|
+
readonly type: BooleanConstructor;
|
|
76
|
+
readonly description: "Disables interaction and applies disabled styling.";
|
|
77
|
+
};
|
|
78
|
+
loading: {
|
|
79
|
+
readonly type: BooleanConstructor;
|
|
80
|
+
readonly description: "Shows a loading indicator and blocks interaction.";
|
|
81
|
+
};
|
|
82
|
+
loadingLabel: {
|
|
83
|
+
readonly type: StringConstructor;
|
|
84
|
+
readonly description: "Accessible label announced while loading.";
|
|
35
85
|
};
|
|
36
|
-
tooltip: StringConstructor;
|
|
37
|
-
skipFormRegistry: BooleanConstructor;
|
|
38
|
-
disabled: BooleanConstructor;
|
|
39
|
-
loading: BooleanConstructor;
|
|
40
|
-
loadingLabel: StringConstructor;
|
|
41
86
|
loadingStatus: {
|
|
42
87
|
readonly type: import("vue").PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
43
88
|
readonly default: "active";
|
|
89
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
44
90
|
};
|
|
45
91
|
color: {
|
|
46
92
|
readonly type: StringConstructor;
|
|
47
93
|
readonly default: string | undefined;
|
|
94
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
48
95
|
};
|
|
49
96
|
};
|
|
50
97
|
export type SliderProps = ExtractPublicPropTypes<typeof sliderProps>;
|
|
@@ -55,47 +102,94 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
55
102
|
min: {
|
|
56
103
|
type: (StringConstructor | NumberConstructor)[];
|
|
57
104
|
default: number;
|
|
105
|
+
description: string;
|
|
58
106
|
};
|
|
59
107
|
max: {
|
|
60
108
|
type: (StringConstructor | NumberConstructor)[];
|
|
61
109
|
default: number;
|
|
110
|
+
description: string;
|
|
62
111
|
};
|
|
63
112
|
step: {
|
|
64
113
|
type: (StringConstructor | NumberConstructor)[];
|
|
65
114
|
default: number;
|
|
115
|
+
description: string;
|
|
66
116
|
};
|
|
67
117
|
modelValue: {
|
|
68
118
|
readonly type: import("vue").PropType<string | number | boolean | object | any[] | undefined>;
|
|
69
119
|
readonly default: undefined;
|
|
120
|
+
readonly description: "Bound value (v-model).";
|
|
121
|
+
};
|
|
122
|
+
id: {
|
|
123
|
+
readonly type: StringConstructor;
|
|
124
|
+
readonly description: "Native id attribute for the input element.";
|
|
125
|
+
};
|
|
126
|
+
name: {
|
|
127
|
+
readonly type: StringConstructor;
|
|
128
|
+
readonly description: "Native name attribute for form submission.";
|
|
129
|
+
};
|
|
130
|
+
readonly: {
|
|
131
|
+
readonly type: BooleanConstructor;
|
|
132
|
+
readonly description: "Makes the field read-only without disabling it.";
|
|
133
|
+
};
|
|
134
|
+
required: {
|
|
135
|
+
readonly type: BooleanConstructor;
|
|
136
|
+
readonly description: "Marks the field as required for validation.";
|
|
70
137
|
};
|
|
71
|
-
id: StringConstructor;
|
|
72
|
-
name: StringConstructor;
|
|
73
|
-
readonly: BooleanConstructor;
|
|
74
|
-
required: BooleanConstructor;
|
|
75
138
|
validateOnInput: {
|
|
76
139
|
readonly type: BooleanConstructor;
|
|
77
140
|
readonly default: true;
|
|
141
|
+
readonly description: "Runs validation on each input event when true.";
|
|
142
|
+
};
|
|
143
|
+
label: {
|
|
144
|
+
readonly type: StringConstructor;
|
|
145
|
+
readonly description: "Visible label text for the field.";
|
|
146
|
+
};
|
|
147
|
+
helper: {
|
|
148
|
+
readonly type: StringConstructor;
|
|
149
|
+
readonly description: "Helper text shown below the field.";
|
|
150
|
+
};
|
|
151
|
+
error: {
|
|
152
|
+
readonly type: StringConstructor;
|
|
153
|
+
readonly description: "External error message; overrides rule errors when set.";
|
|
154
|
+
};
|
|
155
|
+
hideFooter: {
|
|
156
|
+
readonly type: BooleanConstructor;
|
|
157
|
+
readonly description: "Hides the footer area (helper / error).";
|
|
78
158
|
};
|
|
79
|
-
label: StringConstructor;
|
|
80
|
-
helper: StringConstructor;
|
|
81
|
-
error: StringConstructor;
|
|
82
|
-
hideFooter: BooleanConstructor;
|
|
83
159
|
rules: {
|
|
84
160
|
readonly type: ArrayConstructor;
|
|
85
161
|
readonly default: () => never[];
|
|
162
|
+
readonly description: "Validation rule functions or rule descriptors.";
|
|
163
|
+
};
|
|
164
|
+
tooltip: {
|
|
165
|
+
readonly type: StringConstructor;
|
|
166
|
+
readonly description: "Optional tooltip text next to the label.";
|
|
167
|
+
};
|
|
168
|
+
skipFormRegistry: {
|
|
169
|
+
readonly type: BooleanConstructor;
|
|
170
|
+
readonly description: "Skips registering this field with a parent x-form.";
|
|
171
|
+
};
|
|
172
|
+
disabled: {
|
|
173
|
+
readonly type: BooleanConstructor;
|
|
174
|
+
readonly description: "Disables interaction and applies disabled styling.";
|
|
175
|
+
};
|
|
176
|
+
loading: {
|
|
177
|
+
readonly type: BooleanConstructor;
|
|
178
|
+
readonly description: "Shows a loading indicator and blocks interaction.";
|
|
179
|
+
};
|
|
180
|
+
loadingLabel: {
|
|
181
|
+
readonly type: StringConstructor;
|
|
182
|
+
readonly description: "Accessible label announced while loading.";
|
|
86
183
|
};
|
|
87
|
-
tooltip: StringConstructor;
|
|
88
|
-
skipFormRegistry: BooleanConstructor;
|
|
89
|
-
disabled: BooleanConstructor;
|
|
90
|
-
loading: BooleanConstructor;
|
|
91
|
-
loadingLabel: StringConstructor;
|
|
92
184
|
loadingStatus: {
|
|
93
185
|
readonly type: import("vue").PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
94
186
|
readonly default: "active";
|
|
187
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
95
188
|
};
|
|
96
189
|
color: {
|
|
97
190
|
readonly type: StringConstructor;
|
|
98
191
|
readonly default: string | undefined;
|
|
192
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
99
193
|
};
|
|
100
194
|
}>, {
|
|
101
195
|
focus: () => void | undefined;
|
|
@@ -107,47 +201,94 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
107
201
|
min: {
|
|
108
202
|
type: (StringConstructor | NumberConstructor)[];
|
|
109
203
|
default: number;
|
|
204
|
+
description: string;
|
|
110
205
|
};
|
|
111
206
|
max: {
|
|
112
207
|
type: (StringConstructor | NumberConstructor)[];
|
|
113
208
|
default: number;
|
|
209
|
+
description: string;
|
|
114
210
|
};
|
|
115
211
|
step: {
|
|
116
212
|
type: (StringConstructor | NumberConstructor)[];
|
|
117
213
|
default: number;
|
|
214
|
+
description: string;
|
|
118
215
|
};
|
|
119
216
|
modelValue: {
|
|
120
217
|
readonly type: import("vue").PropType<string | number | boolean | object | any[] | undefined>;
|
|
121
218
|
readonly default: undefined;
|
|
219
|
+
readonly description: "Bound value (v-model).";
|
|
220
|
+
};
|
|
221
|
+
id: {
|
|
222
|
+
readonly type: StringConstructor;
|
|
223
|
+
readonly description: "Native id attribute for the input element.";
|
|
224
|
+
};
|
|
225
|
+
name: {
|
|
226
|
+
readonly type: StringConstructor;
|
|
227
|
+
readonly description: "Native name attribute for form submission.";
|
|
228
|
+
};
|
|
229
|
+
readonly: {
|
|
230
|
+
readonly type: BooleanConstructor;
|
|
231
|
+
readonly description: "Makes the field read-only without disabling it.";
|
|
232
|
+
};
|
|
233
|
+
required: {
|
|
234
|
+
readonly type: BooleanConstructor;
|
|
235
|
+
readonly description: "Marks the field as required for validation.";
|
|
122
236
|
};
|
|
123
|
-
id: StringConstructor;
|
|
124
|
-
name: StringConstructor;
|
|
125
|
-
readonly: BooleanConstructor;
|
|
126
|
-
required: BooleanConstructor;
|
|
127
237
|
validateOnInput: {
|
|
128
238
|
readonly type: BooleanConstructor;
|
|
129
239
|
readonly default: true;
|
|
240
|
+
readonly description: "Runs validation on each input event when true.";
|
|
241
|
+
};
|
|
242
|
+
label: {
|
|
243
|
+
readonly type: StringConstructor;
|
|
244
|
+
readonly description: "Visible label text for the field.";
|
|
245
|
+
};
|
|
246
|
+
helper: {
|
|
247
|
+
readonly type: StringConstructor;
|
|
248
|
+
readonly description: "Helper text shown below the field.";
|
|
249
|
+
};
|
|
250
|
+
error: {
|
|
251
|
+
readonly type: StringConstructor;
|
|
252
|
+
readonly description: "External error message; overrides rule errors when set.";
|
|
253
|
+
};
|
|
254
|
+
hideFooter: {
|
|
255
|
+
readonly type: BooleanConstructor;
|
|
256
|
+
readonly description: "Hides the footer area (helper / error).";
|
|
130
257
|
};
|
|
131
|
-
label: StringConstructor;
|
|
132
|
-
helper: StringConstructor;
|
|
133
|
-
error: StringConstructor;
|
|
134
|
-
hideFooter: BooleanConstructor;
|
|
135
258
|
rules: {
|
|
136
259
|
readonly type: ArrayConstructor;
|
|
137
260
|
readonly default: () => never[];
|
|
261
|
+
readonly description: "Validation rule functions or rule descriptors.";
|
|
262
|
+
};
|
|
263
|
+
tooltip: {
|
|
264
|
+
readonly type: StringConstructor;
|
|
265
|
+
readonly description: "Optional tooltip text next to the label.";
|
|
266
|
+
};
|
|
267
|
+
skipFormRegistry: {
|
|
268
|
+
readonly type: BooleanConstructor;
|
|
269
|
+
readonly description: "Skips registering this field with a parent x-form.";
|
|
270
|
+
};
|
|
271
|
+
disabled: {
|
|
272
|
+
readonly type: BooleanConstructor;
|
|
273
|
+
readonly description: "Disables interaction and applies disabled styling.";
|
|
274
|
+
};
|
|
275
|
+
loading: {
|
|
276
|
+
readonly type: BooleanConstructor;
|
|
277
|
+
readonly description: "Shows a loading indicator and blocks interaction.";
|
|
278
|
+
};
|
|
279
|
+
loadingLabel: {
|
|
280
|
+
readonly type: StringConstructor;
|
|
281
|
+
readonly description: "Accessible label announced while loading.";
|
|
138
282
|
};
|
|
139
|
-
tooltip: StringConstructor;
|
|
140
|
-
skipFormRegistry: BooleanConstructor;
|
|
141
|
-
disabled: BooleanConstructor;
|
|
142
|
-
loading: BooleanConstructor;
|
|
143
|
-
loadingLabel: StringConstructor;
|
|
144
283
|
loadingStatus: {
|
|
145
284
|
readonly type: import("vue").PropType<import("../loader/Loader.vue").LoaderStatus>;
|
|
146
285
|
readonly default: "active";
|
|
286
|
+
readonly description: "Loader visual status (for example active or indeterminate).";
|
|
147
287
|
};
|
|
148
288
|
color: {
|
|
149
289
|
readonly type: StringConstructor;
|
|
150
290
|
readonly default: string | undefined;
|
|
291
|
+
readonly description: "Theme or CSS color used for the control accents.";
|
|
151
292
|
};
|
|
152
293
|
}>> & Readonly<{
|
|
153
294
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
@@ -22,19 +22,30 @@ var S = { class: "flex items-center relative w-full gap-2 min-h-[1.25rem]" }, C
|
|
|
22
22
|
...i.props(),
|
|
23
23
|
min: {
|
|
24
24
|
type: [Number, String],
|
|
25
|
-
default: 0
|
|
25
|
+
default: 0,
|
|
26
|
+
description: "Minimum value of the range."
|
|
26
27
|
},
|
|
27
28
|
max: {
|
|
28
29
|
type: [Number, String],
|
|
29
|
-
default: 100
|
|
30
|
+
default: 100,
|
|
31
|
+
description: "Maximum value of the range."
|
|
30
32
|
},
|
|
31
33
|
step: {
|
|
32
34
|
type: [Number, String],
|
|
33
|
-
default: 1
|
|
35
|
+
default: 1,
|
|
36
|
+
description: "Increment between selectable values."
|
|
34
37
|
}
|
|
35
38
|
}, E = /* @__PURE__ */ d({
|
|
36
39
|
name: "XSlider",
|
|
37
40
|
validators: { ...n.validators() },
|
|
41
|
+
docs: {
|
|
42
|
+
slots: {
|
|
43
|
+
prefix: "Content before the track (`value`).",
|
|
44
|
+
suffix: "Content after the track (`value`)."
|
|
45
|
+
},
|
|
46
|
+
emits: { ...i.emitDocs() },
|
|
47
|
+
methods: { ...i.methodDocs() }
|
|
48
|
+
},
|
|
38
49
|
props: T,
|
|
39
50
|
emits: i.emits(),
|
|
40
51
|
setup(e, { expose: n, emit: d }) {
|
|
@@ -3,11 +3,13 @@ declare const spinnerProps: {
|
|
|
3
3
|
icon: {
|
|
4
4
|
type: StringConstructor;
|
|
5
5
|
default: string;
|
|
6
|
+
description: string;
|
|
6
7
|
};
|
|
7
8
|
size: {
|
|
8
9
|
readonly type: import("vue").PropType<import("../../composables/useCommon").Size>;
|
|
9
10
|
readonly default: "md";
|
|
10
11
|
readonly validator: (value: string) => boolean;
|
|
12
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
11
13
|
};
|
|
12
14
|
};
|
|
13
15
|
export type SpinnerProps = ExtractPublicPropTypes<typeof spinnerProps>;
|
|
@@ -15,21 +17,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
15
17
|
icon: {
|
|
16
18
|
type: StringConstructor;
|
|
17
19
|
default: string;
|
|
20
|
+
description: string;
|
|
18
21
|
};
|
|
19
22
|
size: {
|
|
20
23
|
readonly type: import("vue").PropType<import("../../composables/useCommon").Size>;
|
|
21
24
|
readonly default: "md";
|
|
22
25
|
readonly validator: (value: string) => boolean;
|
|
26
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
23
27
|
};
|
|
24
28
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25
29
|
icon: {
|
|
26
30
|
type: StringConstructor;
|
|
27
31
|
default: string;
|
|
32
|
+
description: string;
|
|
28
33
|
};
|
|
29
34
|
size: {
|
|
30
35
|
readonly type: import("vue").PropType<import("../../composables/useCommon").Size>;
|
|
31
36
|
readonly default: "md";
|
|
32
37
|
readonly validator: (value: string) => boolean;
|
|
38
|
+
readonly description: "Control size. One of xs, sm, md, lg, xl.";
|
|
33
39
|
};
|
|
34
40
|
}>> & Readonly<{}>, {
|
|
35
41
|
icon: string;
|
|
@@ -6,11 +6,13 @@ var a = {
|
|
|
6
6
|
...e.props(),
|
|
7
7
|
icon: {
|
|
8
8
|
type: String,
|
|
9
|
-
default: "<g stroke-width=\"0\"><path fill=\"currentColor\" d=\"M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,19a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z\" opacity=\".25\"/><path fill=\"currentColor\" d=\"M10.72,19.9a8,8,0,0,1-6.5-9.79A7.77,7.77,0,0,1,10.4,4.16a8,8,0,0,1,9.49,6.52A1.54,1.54,0,0,0,21.38,12h.13a1.37,1.37,0,0,0,1.38-1.54,11,11,0,1,0-12.7,12.39A1.54,1.54,0,0,0,12,21.34h0A1.47,1.47,0,0,0,10.72,19.9Z\"><animateTransform attributeName=\"transform\" dur=\"0.65s\" repeatCount=\"indefinite\" type=\"rotate\" values=\"0 12 12;360 12 12\"/></path></g>"
|
|
9
|
+
default: "<g stroke-width=\"0\"><path fill=\"currentColor\" d=\"M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,19a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z\" opacity=\".25\"/><path fill=\"currentColor\" d=\"M10.72,19.9a8,8,0,0,1-6.5-9.79A7.77,7.77,0,0,1,10.4,4.16a8,8,0,0,1,9.49,6.52A1.54,1.54,0,0,0,21.38,12h.13a1.37,1.37,0,0,0,1.38-1.54,11,11,0,1,0-12.7,12.39A1.54,1.54,0,0,0,12,21.34h0A1.47,1.47,0,0,0,10.72,19.9Z\"><animateTransform attributeName=\"transform\" dur=\"0.65s\" repeatCount=\"indefinite\" type=\"rotate\" values=\"0 12 12;360 12 12\"/></path></g>",
|
|
10
|
+
description: "SVG markup or icon name used for the spinner."
|
|
10
11
|
}
|
|
11
12
|
}, o = /* @__PURE__ */ r({
|
|
12
13
|
name: "XSpinner",
|
|
13
14
|
validators: { ...e.validators() },
|
|
15
|
+
docs: {},
|
|
14
16
|
props: a,
|
|
15
17
|
setup(e) {
|
|
16
18
|
return (e, r) => (i(), n(t, {
|