@indielayer/ui 1.0.0-alpha.8 → 1.0.1
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/README.md +6 -3
- package/lib/common/icons.d.ts +15 -0
- package/lib/common/utils.d.ts +32 -0
- package/lib/components/alert/Alert.theme.d.ts +8 -0
- package/lib/components/alert/Alert.vue.d.ts +1 -12
- package/lib/components/alert/__tests__/Alert.spec.d.ts +1 -0
- package/lib/components/avatar/Avatar.theme.d.ts +8 -0
- package/lib/components/avatar/Avatar.vue.d.ts +5 -8
- package/lib/components/avatar/__tests__/Avatar.spec.d.ts +1 -0
- package/lib/components/badge/Badge.theme.d.ts +8 -0
- package/lib/components/badge/Badge.vue.d.ts +5 -6
- package/lib/components/badge/__tests__/Badge.spec.d.ts +1 -0
- package/lib/components/breadcrumbs/Breadcrumbs.theme.d.ts +8 -0
- package/lib/components/breadcrumbs/Breadcrumbs.vue.d.ts +19 -8
- package/lib/components/breadcrumbs/__tests__/Breadcrumbs.spec.d.ts +1 -0
- package/lib/components/button/Button.theme.d.ts +10 -0
- package/lib/components/button/Button.vue.d.ts +10 -16
- package/lib/components/button/ButtonGroup.theme.d.ts +6 -0
- package/lib/components/button/ButtonGroup.vue.d.ts +5 -2
- package/lib/components/button/__tests__/ Button.spec.d.ts +1 -0
- package/lib/components/button/__tests__/ ButtonGroup.spec.d.ts +1 -0
- package/lib/components/card/Card.theme.d.ts +7 -0
- package/lib/components/card/Card.vue.d.ts +2 -2
- package/lib/components/card/__tests__/Card.spec.d.ts +1 -0
- package/lib/components/checkbox/Checkbox.theme.d.ts +11 -0
- package/lib/components/checkbox/Checkbox.vue.d.ts +10 -14
- package/lib/components/checkbox/__tests__/Checkbox.spec.d.ts +1 -0
- package/lib/components/collapse/Collapse.theme.d.ts +9 -0
- package/lib/components/collapse/Collapse.vue.d.ts +12 -19
- package/lib/components/collapse/__tests__/Collapse.spec.d.ts +1 -0
- package/lib/components/container/Container.theme.d.ts +6 -0
- package/lib/components/container/Container.vue.d.ts +1 -1
- package/lib/components/container/__tests__/Container.spec.d.ts +1 -0
- package/lib/components/divider/Divider.theme.d.ts +9 -0
- package/lib/components/divider/Divider.vue.d.ts +1 -1
- package/lib/components/divider/__tests__/Divider.spec.d.ts +1 -0
- package/lib/components/drawer/Drawer.theme.d.ts +7 -0
- package/lib/components/drawer/Drawer.vue.d.ts +3 -15
- package/lib/components/drawer/__tests__/Drawer.spec.d.ts +1 -0
- package/lib/components/form/Form.theme.d.ts +6 -0
- package/lib/components/form/Form.vue.d.ts +9 -7
- package/lib/components/form/__tests__/Form.spec.d.ts +1 -0
- package/lib/components/helpers/InputError.d.ts +8 -0
- package/lib/components/icon/Icon.theme.d.ts +7 -0
- package/lib/components/icon/Icon.vue.d.ts +4 -8
- package/lib/components/icon/__tests__/Icon.spec.d.ts +1 -0
- package/lib/components/image/Image.theme.d.ts +6 -0
- package/lib/components/image/Image.vue.d.ts +1 -3
- package/lib/components/image/__tests__/Image.spec.d.ts +1 -0
- package/lib/components/index.d.ts +3 -3
- package/lib/components/input/Input.theme.d.ts +11 -0
- package/lib/components/input/Input.vue.d.ts +27 -25
- package/lib/components/input/__tests__/Input.spec.d.ts +1 -0
- package/lib/components/link/Link.theme.d.ts +8 -0
- package/lib/components/link/Link.vue.d.ts +3 -5
- package/lib/components/link/__tests__/Link.spec.d.ts +1 -0
- package/lib/components/menu/Menu.theme.d.ts +6 -0
- package/lib/components/menu/Menu.vue.d.ts +6 -3
- package/lib/components/menu/MenuItem.theme.d.ts +8 -0
- package/lib/components/menu/MenuItem.vue.d.ts +5 -30
- package/lib/components/menu/__tests__/Menu.spec.d.ts +1 -0
- package/lib/components/menu/__tests__/MenuItem.spec.d.ts +1 -0
- package/lib/components/modal/Modal.theme.d.ts +13 -0
- package/lib/components/modal/Modal.vue.d.ts +1 -6
- package/lib/components/modal/__tests__/Modal.spec.d.ts +1 -0
- package/lib/components/notifications/Notifications.theme.d.ts +8 -0
- package/lib/components/notifications/Notifications.vue.d.ts +11 -24
- package/lib/components/notifications/__tests__/Notifications.spec.d.ts +1 -0
- package/lib/components/pagination/Pagination.theme.d.ts +9 -0
- package/lib/components/pagination/Pagination.vue.d.ts +7 -16
- package/lib/components/pagination/PaginationItem.theme.d.ts +7 -0
- package/lib/components/pagination/PaginationItem.vue.d.ts +4 -3
- package/lib/components/pagination/__tests__/Pagination.spec.d.ts +1 -0
- package/lib/components/pagination/__tests__/PaginationItem.spec.d.ts +1 -0
- package/lib/components/popover/Popover.theme.d.ts +7 -0
- package/lib/components/popover/Popover.vue.d.ts +13 -13
- package/lib/components/popover/PopoverContainer.theme.d.ts +6 -0
- package/lib/components/popover/PopoverContainer.vue.d.ts +1 -1
- package/lib/components/popover/__tests__/Popover.spec.d.ts +1 -0
- package/lib/components/popover/__tests__/PopoverContainer.spec.d.ts +1 -0
- package/lib/components/progress/Progress.theme.d.ts +10 -0
- package/lib/components/progress/Progress.vue.d.ts +1 -3
- package/lib/components/progress/__tests__/Progress.spec.d.ts +1 -0
- package/lib/components/radio/Radio.theme.d.ts +12 -0
- package/lib/components/radio/Radio.vue.d.ts +12 -13
- package/lib/components/radio/__tests__/Radio.spec.d.ts +1 -0
- package/lib/components/scroll/Scroll.theme.d.ts +6 -0
- package/lib/components/scroll/Scroll.vue.d.ts +1 -7
- package/lib/components/scroll/__tests__/Scroll.spec.d.ts +1 -0
- package/lib/components/select/Select.theme.d.ts +13 -0
- package/lib/components/select/Select.vue.d.ts +8 -28
- package/lib/components/select/__tests__/Select.spec.d.ts +1 -0
- package/lib/components/skeleton/Skeleton.theme.d.ts +6 -0
- package/lib/components/skeleton/Skeleton.vue.d.ts +1 -1
- package/lib/components/skeleton/__tests__/Skeleton.spec.d.ts +1 -0
- package/lib/components/slider/Slider.theme.d.ts +10 -0
- package/lib/components/slider/Slider.vue.d.ts +8 -17
- package/lib/components/slider/__tests__/Slider.spec.d.ts +1 -0
- package/lib/components/spacer/Spacer.d.ts +2 -0
- package/lib/components/spacer/__tests__/Spacer.spec.d.ts +1 -0
- package/lib/components/spinner/Spinner.vue.d.ts +15 -6
- package/lib/components/spinner/__tests__/Spinner.spec.d.ts +1 -0
- package/lib/components/tab/Tab.theme.d.ts +9 -0
- package/lib/components/tab/Tab.vue.d.ts +4 -13
- package/lib/components/tab/TabGroup.theme.d.ts +10 -0
- package/lib/components/tab/TabGroup.vue.d.ts +4 -8
- package/lib/components/tab/__tests__/Tab.spec.d.ts +1 -0
- package/lib/components/tab/__tests__/TabGroup.spec.d.ts +1 -0
- package/lib/components/table/Table.theme.d.ts +8 -0
- package/lib/components/table/Table.vue.d.ts +6 -10
- package/lib/components/table/TableBody.d.ts +2 -0
- package/lib/components/table/TableCell.theme.d.ts +7 -0
- package/lib/components/table/TableCell.vue.d.ts +1 -1
- package/lib/components/table/TableHead.d.ts +2 -0
- package/lib/components/table/TableHeader.vue.d.ts +2 -2
- package/lib/components/table/TableRow.vue.d.ts +1 -1
- package/lib/components/table/__tests__/Table.spec.d.ts +1 -0
- package/lib/components/tag/Tag.theme.d.ts +9 -0
- package/lib/components/tag/Tag.vue.d.ts +5 -5
- package/lib/components/tag/__tests__/Tag.spec.d.ts +1 -0
- package/lib/components/textarea/Textarea.theme.d.ts +10 -0
- package/lib/components/textarea/Textarea.vue.d.ts +18 -24
- package/lib/components/textarea/__tests__/Textarea.spec.d.ts +1 -0
- package/lib/components/toggle/Toggle.theme.d.ts +11 -0
- package/lib/components/toggle/Toggle.vue.d.ts +10 -11
- package/lib/components/toggle/__tests__/Toggle.spec.d.ts +1 -0
- package/lib/components/tooltip/Tooltip.theme.d.ts +11 -0
- package/lib/components/tooltip/__tests__/Tooltip.spec.d.ts +1 -0
- package/lib/composables/colors-utils.d.ts +0 -1
- package/lib/composables/colors.d.ts +8 -4
- package/lib/composables/common.d.ts +1 -0
- package/lib/composables/css.d.ts +6 -5
- package/lib/composables/index.d.ts +1 -1
- package/lib/composables/inputtable.d.ts +1 -1
- package/lib/composables/interactive.d.ts +7 -2
- package/lib/composables/keys.d.ts +1 -0
- package/lib/composables/notifications.d.ts +1 -0
- package/lib/composables/theme.d.ts +20 -0
- package/lib/create.d.ts +3 -2
- package/lib/index.cjs.js +1 -15
- package/lib/index.es.js +4451 -3649
- package/lib/nuxt.js +2 -1
- package/lib/version.d.ts +1 -1
- package/package.json +16 -6
- package/src/common/icons.ts +15 -0
- package/src/common/utils.ts +68 -0
- package/src/components/alert/Alert.theme.ts +57 -0
- package/src/components/alert/Alert.vue +51 -127
- package/src/components/alert/__tests__/Alert.spec.ts +14 -0
- package/src/components/avatar/Avatar.theme.ts +39 -0
- package/src/components/avatar/Avatar.vue +58 -96
- package/src/components/avatar/__tests__/Avatar.spec.ts +11 -0
- package/src/components/badge/Badge.theme.ts +13 -0
- package/src/components/badge/Badge.vue +58 -65
- package/src/components/badge/__tests__/Badge.spec.ts +11 -0
- package/src/components/breadcrumbs/Breadcrumbs.theme.ts +9 -0
- package/src/components/breadcrumbs/Breadcrumbs.vue +34 -24
- package/src/components/breadcrumbs/__tests__/Breadcrumbs.spec.ts +11 -0
- package/src/components/button/Button.theme.ts +234 -0
- package/src/components/button/Button.vue +94 -356
- package/src/components/button/ButtonGroup.theme.ts +5 -0
- package/src/components/button/ButtonGroup.vue +30 -29
- package/src/components/button/__tests__/ Button.spec.ts +11 -0
- package/src/components/button/__tests__/ ButtonGroup.spec.ts +11 -0
- package/src/components/card/Card.theme.ts +7 -0
- package/src/components/card/Card.vue +18 -11
- package/src/components/card/__tests__/Card.spec.ts +11 -0
- package/src/components/checkbox/Checkbox.theme.ts +92 -0
- package/src/components/checkbox/Checkbox.vue +69 -156
- package/src/components/checkbox/__tests__/Checkbox.spec.ts +11 -0
- package/src/components/collapse/Collapse.theme.ts +11 -0
- package/src/components/collapse/Collapse.vue +99 -118
- package/src/components/collapse/__tests__/Collapse.spec.ts +11 -0
- package/src/components/container/Container.theme.ts +7 -0
- package/src/components/container/Container.vue +17 -9
- package/src/components/container/__tests__/Container.spec.ts +11 -0
- package/src/components/divider/Divider.theme.ts +11 -0
- package/src/components/divider/Divider.vue +22 -18
- package/src/components/divider/__tests__/Divider.spec.ts +11 -0
- package/src/components/drawer/Drawer.theme.ts +9 -0
- package/src/components/drawer/Drawer.vue +160 -177
- package/src/components/drawer/__tests__/Drawer.spec.ts +11 -0
- package/src/components/form/Form.theme.ts +7 -0
- package/src/components/form/Form.vue +90 -73
- package/src/components/form/__tests__/Form.spec.ts +11 -0
- package/src/components/helpers/InputError.tsx +14 -0
- package/src/components/icon/Icon.theme.ts +16 -0
- package/src/components/icon/Icon.vue +72 -88
- package/src/components/icon/__tests__/Icon.spec.ts +11 -0
- package/src/components/image/Image.theme.ts +7 -0
- package/src/components/image/Image.vue +22 -23
- package/src/components/image/__tests__/Image.spec.ts +11 -0
- package/src/components/index.ts +3 -3
- package/src/components/input/Input.theme.ts +44 -0
- package/src/components/input/Input.vue +97 -130
- package/src/components/input/__tests__/Input.spec.ts +11 -0
- package/src/components/link/Link.theme.ts +26 -0
- package/src/components/link/Link.vue +41 -66
- package/src/components/link/__tests__/Link.spec.ts +11 -0
- package/src/components/menu/Menu.theme.ts +7 -0
- package/src/components/menu/Menu.vue +54 -45
- package/src/components/menu/MenuItem.theme.ts +107 -0
- package/src/components/menu/MenuItem.vue +97 -199
- package/src/components/menu/__tests__/Menu.spec.ts +11 -0
- package/src/components/menu/__tests__/MenuItem.spec.ts +11 -0
- package/src/components/modal/Modal.theme.ts +29 -0
- package/src/components/modal/Modal.vue +78 -101
- package/src/components/modal/__tests__/Modal.spec.ts +11 -0
- package/src/components/notifications/Notifications.theme.ts +11 -0
- package/src/components/notifications/Notifications.vue +233 -247
- package/src/components/notifications/__tests__/Notifications.spec.ts +11 -0
- package/src/components/pagination/Pagination.theme.ts +27 -0
- package/src/components/pagination/Pagination.vue +142 -164
- package/src/components/pagination/PaginationItem.theme.ts +14 -0
- package/src/components/pagination/PaginationItem.vue +26 -33
- package/src/components/pagination/__tests__/Pagination.spec.ts +11 -0
- package/src/components/pagination/__tests__/PaginationItem.spec.ts +11 -0
- package/src/components/popover/Popover.theme.ts +9 -0
- package/src/components/popover/Popover.vue +153 -101
- package/src/components/popover/PopoverContainer.theme.ts +7 -0
- package/src/components/popover/PopoverContainer.vue +17 -9
- package/src/components/popover/__tests__/Popover.spec.ts +11 -0
- package/src/components/popover/__tests__/PopoverContainer.spec.ts +11 -0
- package/src/components/progress/Progress.theme.ts +26 -0
- package/src/components/progress/Progress.vue +29 -53
- package/src/components/progress/__tests__/Progress.spec.ts +11 -0
- package/src/components/radio/Radio.theme.ts +121 -0
- package/src/components/radio/Radio.vue +81 -158
- package/src/components/radio/__tests__/Radio.spec.ts +11 -0
- package/src/components/scroll/Scroll.theme.ts +7 -0
- package/src/components/scroll/Scroll.vue +34 -36
- package/src/components/scroll/__tests__/Scroll.spec.ts +11 -0
- package/src/components/select/Select.theme.ts +54 -0
- package/src/components/select/Select.vue +219 -273
- package/src/components/select/__tests__/Select.spec.ts +11 -0
- package/src/components/skeleton/Skeleton.theme.ts +7 -0
- package/src/components/skeleton/Skeleton.vue +17 -9
- package/src/components/skeleton/__tests__/Skeleton.spec.ts +11 -0
- package/src/components/slider/Slider.theme.ts +30 -0
- package/src/components/slider/Slider.vue +135 -168
- package/src/components/slider/__tests__/Slider.spec.ts +11 -0
- package/src/components/spacer/{Spacer.vue → Spacer.tsx} +3 -6
- package/src/components/spacer/__tests__/Spacer.spec.ts +11 -0
- package/src/components/spinner/Spinner.vue +10 -34
- package/src/components/spinner/__tests__/Spinner.spec.ts +11 -0
- package/src/components/tab/Tab.theme.ts +22 -0
- package/src/components/tab/Tab.vue +89 -93
- package/src/components/tab/TabGroup.theme.ts +43 -0
- package/src/components/tab/TabGroup.vue +94 -127
- package/src/components/tab/__tests__/Tab.spec.ts +11 -0
- package/src/components/tab/__tests__/TabGroup.spec.ts +11 -0
- package/src/components/table/Table.theme.ts +19 -0
- package/src/components/table/Table.vue +136 -147
- package/src/components/table/{TableBody.vue → TableBody.tsx} +3 -8
- package/src/components/table/TableCell.theme.ts +27 -0
- package/src/components/table/TableCell.vue +30 -58
- package/src/components/table/TableHead.tsx +14 -0
- package/src/components/table/TableHeader.vue +18 -20
- package/src/components/table/TableRow.vue +23 -20
- package/src/components/table/__tests__/Table.spec.ts +11 -0
- package/src/components/tag/Tag.theme.ts +32 -0
- package/src/components/tag/Tag.vue +40 -68
- package/src/components/tag/__tests__/Tag.spec.ts +11 -0
- package/src/components/textarea/Textarea.theme.ts +62 -0
- package/src/components/textarea/Textarea.vue +100 -115
- package/src/components/textarea/__tests__/Textarea.spec.ts +11 -0
- package/src/components/toggle/Toggle.theme.ts +51 -0
- package/src/components/toggle/Toggle.vue +51 -81
- package/src/components/toggle/__tests__/Toggle.spec.ts +11 -0
- package/src/components/tooltip/Tooltip.theme.ts +51 -0
- package/src/components/tooltip/Tooltip.vue +9 -14
- package/src/components/tooltip/__tests__/Tooltip.spec.ts +11 -0
- package/src/composables/colors-utils.ts +68 -68
- package/src/composables/colors.ts +18 -6
- package/src/composables/common.ts +1 -0
- package/src/composables/css.ts +7 -2
- package/src/composables/index.ts +1 -1
- package/src/composables/inputtable.ts +1 -1
- package/src/composables/interactive.ts +8 -4
- package/src/composables/keys.ts +1 -0
- package/src/composables/notifications.ts +10 -0
- package/src/composables/theme.ts +88 -0
- package/src/create.ts +8 -3
- package/src/exports/nuxt.js +2 -1
- package/src/version.ts +1 -1
- package/volar.d.ts +1 -0
- package/lib/components/spacer/Spacer.vue.d.ts +0 -2
- package/lib/components/table/TableBody.vue.d.ts +0 -2
- package/lib/components/table/TableHead.vue.d.ts +0 -2
- package/lib/composables/notification.d.ts +0 -1
- package/lib/style.css +0 -1
- package/src/components/table/TableHead.vue +0 -15
- package/src/composables/notification.ts +0 -10
package/README.md
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|

|
|
2
2
|

|
|
3
3
|
|
|
4
|
+
|
|
4
5
|
<p>
|
|
5
|
-
<a href="https://github.com/indielayer/ui/actions/workflows/
|
|
6
|
-
<a href="https://www.npmjs.com/package/@indielayer/ui
|
|
7
|
-
<a href="https://www.npmjs.com/package/@indielayer/ui
|
|
6
|
+
<a href="https://github.com/indielayer/ui/actions/workflows/build.yml"><img src="https://github.com/indielayer/ui/actions/workflows/build.yml/badge.svg?branch=main&event=push" alt="ci"></a>
|
|
7
|
+
<a href="https://www.npmjs.com/package/@indielayer/ui"><img src="https://badgen.net/npm/dm/@indielayer/ui" alt="Downloads"></a>
|
|
8
|
+
<a href="https://www.npmjs.com/package/@indielayer/ui"><img src="https://badgen.net/npm/v/@indielayer/ui/latest" alt="Version"></a>
|
|
8
9
|
<a href="https://www.npmjs.com/package/@indielayer/ui"><img src="https://badgen.net/npm/license/@indielayer/ui" alt="License"></a>
|
|
9
10
|
</p>
|
|
10
11
|
|
|
@@ -38,3 +39,5 @@ The documentation is located inside [/packages/docs](./packages/docs)
|
|
|
38
39
|
## License
|
|
39
40
|
|
|
40
41
|
[MIT](./LICENSE)
|
|
42
|
+
|
|
43
|
+
Copyright (c) 2022, Indielayer
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const infoIcon = "<path d=\"M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z\" />";
|
|
2
|
+
export declare const successIcon = "<path d=\"M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z\" />";
|
|
3
|
+
export declare const errorIcon = "<path d=\"M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z\" />";
|
|
4
|
+
export declare const warningIcon = "<path d=\"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z\" />";
|
|
5
|
+
export declare const closeIcon = "<path d=\"M6 18L18 6M6 6l12 12\" />";
|
|
6
|
+
export declare const avatarIcon = "<path d=\"M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z\" />";
|
|
7
|
+
export declare const arrowRightIcon = "<path d=\"M13 7l5 5m0 0l-5 5m5-5H6\" />";
|
|
8
|
+
export declare const eyeIcon = "<path d=\"M15 12a3 3 0 11-6 0 3 3 0 016 0z\" /><path d=\"M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z\" />";
|
|
9
|
+
export declare const eyeVisibleIcon = "<path d=\"M13.875 18.825A10.05 10.05 0 0112 19c-4.478 0-8.268-2.943-9.543-7a9.97 9.97 0 011.563-3.029m5.858.908a3 3 0 114.243 4.243M9.878 9.878l4.242 4.242M9.88 9.88l-3.29-3.29m7.532 7.532l3.29 3.29M3 3l3.59 3.59m0 0A9.953 9.953 0 0112 5c4.478 0 8.268 2.943 9.543 7a10.025 10.025 0 01-4.132 5.411m0 0L21 21\" />";
|
|
10
|
+
export declare const dotsIcon = "<path d=\"M5 12h.01M12 12h.01M19 12h.01M6 12a1 1 0 11-2 0 1 1 0 012 0zm7 0a1 1 0 11-2 0 1 1 0 012 0zm7 0a1 1 0 11-2 0 1 1 0 012 0z\" />";
|
|
11
|
+
export declare const prevIcon = "<path d=\"M15 19l-7-7 7-7\" />";
|
|
12
|
+
export declare const nextIcon = "<path d=\"M9 5l7 7-7 7\" />";
|
|
13
|
+
export declare const checkIcon = "<path d=\"M5 13l4 4L19 7\" />";
|
|
14
|
+
export declare const chevronDownIcon = "<path d=\"M8 9l4-4 4 4m0 6l-4 4-4-4\" />";
|
|
15
|
+
export declare const externalIcon = "<line x1=\"7\" y1=\"17\" x2=\"17\" y2=\"7\" /><polyline points=\"7 7 17 7 17 17\" />";
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Deeply unref a value, recursing into objects and arrays.
|
|
3
|
+
*
|
|
4
|
+
* @param {Mixed} val - The value to deeply unref.
|
|
5
|
+
*
|
|
6
|
+
* @return {Mixed}
|
|
7
|
+
*/
|
|
8
|
+
export declare const deepUnref: (val: any) => any;
|
|
9
|
+
/**
|
|
10
|
+
* Unref a value, recursing into it if it's an object.
|
|
11
|
+
*
|
|
12
|
+
* @param {Mixed} val - The value to unref.
|
|
13
|
+
*
|
|
14
|
+
* @return {Mixed}
|
|
15
|
+
*/
|
|
16
|
+
export declare const smartUnref: (val: any) => any;
|
|
17
|
+
/**
|
|
18
|
+
* Unref an array, recursively.
|
|
19
|
+
*
|
|
20
|
+
* @param {Array} arr - The array to unref.
|
|
21
|
+
*
|
|
22
|
+
* @return {Array}
|
|
23
|
+
*/
|
|
24
|
+
export declare const unrefArray: any;
|
|
25
|
+
/**
|
|
26
|
+
* Unref an object, recursively.
|
|
27
|
+
*
|
|
28
|
+
* @param {Object} obj - The object to unref.
|
|
29
|
+
*
|
|
30
|
+
* @return {Object}
|
|
31
|
+
*/
|
|
32
|
+
export declare const unrefObject: (obj: any) => any;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { type PropType } from 'vue';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
|
-
tag: {
|
|
4
|
-
type: StringConstructor;
|
|
5
|
-
default: string;
|
|
6
|
-
};
|
|
7
3
|
type: PropType<"success" | "warning" | "error" | "info" | undefined>;
|
|
8
4
|
glow: BooleanConstructor;
|
|
9
5
|
light: BooleanConstructor;
|
|
@@ -13,13 +9,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13
9
|
readonly type: StringConstructor;
|
|
14
10
|
readonly default: string | undefined;
|
|
15
11
|
};
|
|
16
|
-
}, {
|
|
17
|
-
styles: import("vue").ComputedRef<(string | object)[]>;
|
|
18
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "remove"[], "remove", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
-
tag: {
|
|
20
|
-
type: StringConstructor;
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
12
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "remove"[], "remove", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
13
|
type: PropType<"success" | "warning" | "error" | "info" | undefined>;
|
|
24
14
|
glow: BooleanConstructor;
|
|
25
15
|
light: BooleanConstructor;
|
|
@@ -32,7 +22,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
22
|
}>> & {
|
|
33
23
|
onRemove?: ((...args: any[]) => any) | undefined;
|
|
34
24
|
}, {
|
|
35
|
-
tag: string;
|
|
36
25
|
glow: boolean;
|
|
37
26
|
light: boolean;
|
|
38
27
|
outlined: boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -14,15 +14,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14
14
|
};
|
|
15
15
|
size: {
|
|
16
16
|
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
17
|
+
readonly default: "md";
|
|
17
18
|
readonly validator: (value: string) => boolean;
|
|
18
19
|
};
|
|
19
|
-
}, {
|
|
20
|
-
avatarIcon: string;
|
|
21
|
-
source: import("vue").Ref<string | undefined>;
|
|
22
|
-
initials: import("vue").ComputedRef<string>;
|
|
23
|
-
sizeClasses: import("vue").ComputedRef<"h-6 w-6 text-xs" | "h-9 w-9 text-sm" | "h-12 w-12 text-lg" | "h-[3.75rem] w-[3.75rem] text-xl" | "h-10 w-10">;
|
|
24
|
-
styles: import("vue").ComputedRef<Record<string, string>>;
|
|
25
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
21
|
tag: {
|
|
27
22
|
type: StringConstructor;
|
|
28
23
|
default: string;
|
|
@@ -38,12 +33,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
38
33
|
};
|
|
39
34
|
size: {
|
|
40
35
|
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
36
|
+
readonly default: "md";
|
|
41
37
|
readonly validator: (value: string) => boolean;
|
|
42
38
|
};
|
|
43
39
|
}>>, {
|
|
44
|
-
|
|
40
|
+
size: import("../../composables/common").Size;
|
|
45
41
|
outlined: boolean;
|
|
46
42
|
color: string;
|
|
43
|
+
tag: string;
|
|
47
44
|
rounded: boolean;
|
|
48
45
|
}>;
|
|
49
46
|
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -27,13 +27,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
27
27
|
};
|
|
28
28
|
size: {
|
|
29
29
|
readonly type: PropType<import("../../composables/common").Size>;
|
|
30
|
+
readonly default: "md";
|
|
30
31
|
readonly validator: (value: string) => boolean;
|
|
31
32
|
};
|
|
32
|
-
}, {
|
|
33
|
-
styles: import("vue").ComputedRef<string>;
|
|
34
|
-
offsetStyle: import("vue").ComputedRef<any>;
|
|
35
|
-
positionClasses: import("vue").ComputedRef<string[]>;
|
|
36
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
37
34
|
tag: {
|
|
38
35
|
type: StringConstructor;
|
|
39
36
|
default: string;
|
|
@@ -61,12 +58,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
61
58
|
};
|
|
62
59
|
size: {
|
|
63
60
|
readonly type: PropType<import("../../composables/common").Size>;
|
|
61
|
+
readonly default: "md";
|
|
64
62
|
readonly validator: (value: string) => boolean;
|
|
65
63
|
};
|
|
66
64
|
}>>, {
|
|
67
|
-
|
|
65
|
+
size: import("../../composables/common").Size;
|
|
68
66
|
outlined: boolean;
|
|
69
67
|
color: string;
|
|
68
|
+
tag: string;
|
|
70
69
|
position: "top" | "bottom";
|
|
71
70
|
align: "left" | "right";
|
|
72
71
|
animated: boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -10,20 +10,31 @@ export declare type BreadcrumbItem = {
|
|
|
10
10
|
};
|
|
11
11
|
declare const _default: import("vue").DefineComponent<{
|
|
12
12
|
items: PropType<BreadcrumbItem[]>;
|
|
13
|
-
icon:
|
|
14
|
-
|
|
13
|
+
icon: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
15
17
|
shadow: BooleanConstructor;
|
|
16
18
|
underline: BooleanConstructor;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
19
|
+
color: {
|
|
20
|
+
readonly type: StringConstructor;
|
|
21
|
+
readonly default: string | undefined;
|
|
22
|
+
};
|
|
23
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
24
|
items: PropType<BreadcrumbItem[]>;
|
|
22
|
-
icon:
|
|
23
|
-
|
|
25
|
+
icon: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
24
29
|
shadow: BooleanConstructor;
|
|
25
30
|
underline: BooleanConstructor;
|
|
31
|
+
color: {
|
|
32
|
+
readonly type: StringConstructor;
|
|
33
|
+
readonly default: string | undefined;
|
|
34
|
+
};
|
|
26
35
|
}>>, {
|
|
36
|
+
icon: string;
|
|
37
|
+
color: string;
|
|
27
38
|
shadow: boolean;
|
|
28
39
|
underline: boolean;
|
|
29
40
|
}>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { ThemeParams } from '../../composables/theme';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
classes: {
|
|
4
|
+
wrapper({ props, slots, data }: ThemeParams): string[];
|
|
5
|
+
iconLeft: ({ slots }: ThemeParams) => "mr-2" | "m-0.5";
|
|
6
|
+
iconRight: ({ slots }: ThemeParams) => "m-0.5" | "ml-2";
|
|
7
|
+
};
|
|
8
|
+
styles({ props, colors, css, data }: ThemeParams): (string | object)[];
|
|
9
|
+
};
|
|
10
|
+
export default _default;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export declare type Size = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined;
|
|
2
1
|
declare const _default: import("vue").DefineComponent<{
|
|
3
2
|
tag: {
|
|
4
3
|
type: StringConstructor;
|
|
@@ -9,6 +8,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9
8
|
default: string;
|
|
10
9
|
};
|
|
11
10
|
icon: StringConstructor;
|
|
11
|
+
iconLeft: StringConstructor;
|
|
12
12
|
iconRight: StringConstructor;
|
|
13
13
|
to: StringConstructor;
|
|
14
14
|
outlined: BooleanConstructor;
|
|
@@ -26,21 +26,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
26
26
|
};
|
|
27
27
|
size: {
|
|
28
28
|
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
29
|
+
readonly default: "md";
|
|
29
30
|
readonly validator: (value: string) => boolean;
|
|
30
31
|
};
|
|
31
32
|
}, {
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
styles: import("vue").ComputedRef<(string | object)[]>;
|
|
35
|
-
htmlTag: import("vue").ComputedRef<string>;
|
|
36
|
-
isButtonGroup: any;
|
|
37
|
-
computedSize: import("vue").ComputedRef<any>;
|
|
38
|
-
computedFlat: import("vue").ComputedRef<any>;
|
|
39
|
-
computedGhost: import("vue").ComputedRef<any>;
|
|
40
|
-
computedLight: import("vue").ComputedRef<any>;
|
|
41
|
-
computedOutlined: import("vue").ComputedRef<any>;
|
|
42
|
-
computedDisabled: import("vue").ComputedRef<any>;
|
|
43
|
-
focus: () => void;
|
|
33
|
+
focus: () => void | undefined;
|
|
34
|
+
blur: () => void | undefined;
|
|
44
35
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
45
36
|
tag: {
|
|
46
37
|
type: StringConstructor;
|
|
@@ -51,6 +42,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
42
|
default: string;
|
|
52
43
|
};
|
|
53
44
|
icon: StringConstructor;
|
|
45
|
+
iconLeft: StringConstructor;
|
|
54
46
|
iconRight: StringConstructor;
|
|
55
47
|
to: StringConstructor;
|
|
56
48
|
outlined: BooleanConstructor;
|
|
@@ -68,19 +60,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
68
60
|
};
|
|
69
61
|
size: {
|
|
70
62
|
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
63
|
+
readonly default: "md";
|
|
71
64
|
readonly validator: (value: string) => boolean;
|
|
72
65
|
};
|
|
73
66
|
}>>, {
|
|
74
|
-
|
|
67
|
+
flat: boolean;
|
|
68
|
+
size: import("../../composables/common").Size;
|
|
69
|
+
type: string;
|
|
75
70
|
glow: boolean;
|
|
76
71
|
light: boolean;
|
|
77
72
|
outlined: boolean;
|
|
78
|
-
type: string;
|
|
79
73
|
color: string;
|
|
74
|
+
tag: string;
|
|
80
75
|
rounded: boolean;
|
|
81
76
|
ghost: boolean;
|
|
82
77
|
block: boolean;
|
|
83
|
-
flat: boolean;
|
|
84
78
|
disabled: boolean;
|
|
85
79
|
loading: boolean;
|
|
86
80
|
}>;
|
|
@@ -15,9 +15,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15
15
|
};
|
|
16
16
|
size: {
|
|
17
17
|
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
18
|
+
readonly default: "md";
|
|
18
19
|
readonly validator: (value: string) => boolean;
|
|
19
20
|
};
|
|
20
|
-
},
|
|
21
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
22
|
tag: {
|
|
22
23
|
type: StringConstructor;
|
|
23
24
|
default: string;
|
|
@@ -34,13 +35,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
34
35
|
};
|
|
35
36
|
size: {
|
|
36
37
|
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
38
|
+
readonly default: "md";
|
|
37
39
|
readonly validator: (value: string) => boolean;
|
|
38
40
|
};
|
|
39
41
|
}>>, {
|
|
40
|
-
|
|
42
|
+
size: import("../../composables/common").Size;
|
|
41
43
|
light: boolean;
|
|
42
44
|
outlined: boolean;
|
|
43
45
|
color: string;
|
|
46
|
+
tag: string;
|
|
44
47
|
rounded: boolean;
|
|
45
48
|
ghost: boolean;
|
|
46
49
|
disabled: boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -4,14 +4,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4
4
|
default: string;
|
|
5
5
|
};
|
|
6
6
|
flat: BooleanConstructor;
|
|
7
|
-
},
|
|
7
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
8
|
tag: {
|
|
9
9
|
type: StringConstructor;
|
|
10
10
|
default: string;
|
|
11
11
|
};
|
|
12
12
|
flat: BooleanConstructor;
|
|
13
13
|
}>>, {
|
|
14
|
-
tag: string;
|
|
15
14
|
flat: boolean;
|
|
15
|
+
tag: string;
|
|
16
16
|
}>;
|
|
17
17
|
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ThemeParams } from '../../composables/theme';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
classes: {
|
|
4
|
+
wrapper: string;
|
|
5
|
+
box: ({ props }: ThemeParams) => string[];
|
|
6
|
+
icon: ({ props }: ThemeParams) => string[];
|
|
7
|
+
label: ({ props }: ThemeParams) => string[];
|
|
8
|
+
};
|
|
9
|
+
styles({ props, colors, css, data }: ThemeParams): Record<string, string> | (string | object)[];
|
|
10
|
+
};
|
|
11
|
+
export default _default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { type StyleValue } from 'vue';
|
|
2
1
|
declare const _default: import("vue").DefineComponent<{
|
|
3
2
|
label: StringConstructor;
|
|
3
|
+
helper: StringConstructor;
|
|
4
4
|
glow: BooleanConstructor;
|
|
5
|
-
modelValue: import("vue").PropType<
|
|
5
|
+
modelValue: import("vue").PropType<string | number | boolean | object | any[] | undefined>;
|
|
6
6
|
name: StringConstructor;
|
|
7
7
|
readonly: BooleanConstructor;
|
|
8
8
|
required: BooleanConstructor;
|
|
@@ -23,27 +23,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
23
|
};
|
|
24
24
|
size: {
|
|
25
25
|
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
26
|
+
readonly default: "md";
|
|
26
27
|
readonly validator: (value: string) => boolean;
|
|
27
28
|
};
|
|
28
29
|
}, {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
sizeClasses: import("vue").ComputedRef<"h-4 w-4" | "h-6 w-6" | "h-5 w-5">;
|
|
32
|
-
iconSizeClasses: import("vue").ComputedRef<"h-3 w-3" | "h-4 w-4" | "h-2 w-2">;
|
|
33
|
-
cssVariables: import("vue").ComputedRef<Record<string, string> | StyleValue>;
|
|
30
|
+
focus: () => void | undefined;
|
|
31
|
+
blur: () => void | undefined;
|
|
34
32
|
toggle: () => void;
|
|
35
|
-
isFirstValidation: import("vue").Ref<boolean>;
|
|
36
|
-
errorInternal: any;
|
|
37
|
-
isInsideForm: any;
|
|
38
|
-
inputListeners: {};
|
|
39
33
|
reset: () => void;
|
|
40
34
|
validate: (val: any) => boolean;
|
|
41
35
|
setError: (val: string) => void;
|
|
42
|
-
focus: () => void;
|
|
43
36
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
37
|
label: StringConstructor;
|
|
38
|
+
helper: StringConstructor;
|
|
45
39
|
glow: BooleanConstructor;
|
|
46
|
-
modelValue: import("vue").PropType<
|
|
40
|
+
modelValue: import("vue").PropType<string | number | boolean | object | any[] | undefined>;
|
|
47
41
|
name: StringConstructor;
|
|
48
42
|
readonly: BooleanConstructor;
|
|
49
43
|
required: BooleanConstructor;
|
|
@@ -64,14 +58,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
64
58
|
};
|
|
65
59
|
size: {
|
|
66
60
|
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
61
|
+
readonly default: "md";
|
|
67
62
|
readonly validator: (value: string) => boolean;
|
|
68
63
|
};
|
|
69
64
|
}>> & {
|
|
70
65
|
[x: string & `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
71
66
|
}, {
|
|
72
67
|
readonly: boolean;
|
|
73
|
-
|
|
68
|
+
size: import("../../composables/common").Size;
|
|
74
69
|
required: boolean;
|
|
70
|
+
glow: boolean;
|
|
75
71
|
color: string;
|
|
76
72
|
disabled: boolean;
|
|
77
73
|
loading: boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -5,24 +5,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5
5
|
};
|
|
6
6
|
disabled: BooleanConstructor;
|
|
7
7
|
expanded: BooleanConstructor;
|
|
8
|
-
showIcon:
|
|
9
|
-
type: BooleanConstructor;
|
|
10
|
-
default: boolean;
|
|
11
|
-
};
|
|
8
|
+
showIcon: BooleanConstructor;
|
|
12
9
|
icon: StringConstructor;
|
|
13
|
-
color:
|
|
10
|
+
color: {
|
|
11
|
+
readonly type: StringConstructor;
|
|
12
|
+
readonly default: string | undefined;
|
|
13
|
+
};
|
|
14
14
|
}, {
|
|
15
|
-
collapsed: import("vue").Ref<boolean>;
|
|
16
|
-
onBeforeEnter: (el: HTMLElement) => void;
|
|
17
|
-
onEnter: (el: HTMLElement, done: () => void) => void;
|
|
18
|
-
onAfterEnter: (el: HTMLElement) => void;
|
|
19
|
-
onBeforeLeave: (el: HTMLElement) => void;
|
|
20
|
-
onLeave: (el: HTMLElement, done: () => void) => void;
|
|
21
|
-
onAfterLeave: (el: HTMLElement) => void;
|
|
22
|
-
onExpand: (anim?: boolean) => void;
|
|
23
15
|
toggle: () => void;
|
|
24
|
-
close: (anim?: boolean) => void;
|
|
25
16
|
open: (anim?: boolean) => void;
|
|
17
|
+
close: (anim?: boolean) => void;
|
|
26
18
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "expand"[], "expand", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
19
|
tag: {
|
|
28
20
|
type: StringConstructor;
|
|
@@ -30,15 +22,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
30
22
|
};
|
|
31
23
|
disabled: BooleanConstructor;
|
|
32
24
|
expanded: BooleanConstructor;
|
|
33
|
-
showIcon:
|
|
34
|
-
type: BooleanConstructor;
|
|
35
|
-
default: boolean;
|
|
36
|
-
};
|
|
25
|
+
showIcon: BooleanConstructor;
|
|
37
26
|
icon: StringConstructor;
|
|
38
|
-
color:
|
|
27
|
+
color: {
|
|
28
|
+
readonly type: StringConstructor;
|
|
29
|
+
readonly default: string | undefined;
|
|
30
|
+
};
|
|
39
31
|
}>> & {
|
|
40
32
|
onExpand?: ((...args: any[]) => any) | undefined;
|
|
41
33
|
}, {
|
|
34
|
+
color: string;
|
|
42
35
|
tag: string;
|
|
43
36
|
disabled: boolean;
|
|
44
37
|
expanded: boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -3,7 +3,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
default: string;
|
|
5
5
|
};
|
|
6
|
-
},
|
|
6
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
7
|
tag: {
|
|
8
8
|
type: StringConstructor;
|
|
9
9
|
default: string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
|
2
2
|
label: StringConstructor;
|
|
3
3
|
vertical: BooleanConstructor;
|
|
4
|
-
},
|
|
4
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5
5
|
label: StringConstructor;
|
|
6
6
|
vertical: BooleanConstructor;
|
|
7
7
|
}>>, {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|