@indielayer/ui 1.0.0-alpha.9 → 1.0.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/README.md +6 -3
- package/lib/index.cjs.js +1 -15
- package/lib/index.es.js +4451 -3650
- package/lib/nuxt.js +2 -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 -249
- 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/alert/Alert.vue.d.ts +0 -42
- package/lib/components/avatar/Avatar.vue.d.ts +0 -49
- package/lib/components/badge/Badge.vue.d.ts +0 -75
- package/lib/components/breadcrumbs/Breadcrumbs.vue.d.ts +0 -30
- package/lib/components/button/Button.vue.d.ts +0 -87
- package/lib/components/button/ButtonGroup.vue.d.ts +0 -49
- package/lib/components/card/Card.vue.d.ts +0 -17
- package/lib/components/checkbox/Checkbox.vue.d.ts +0 -81
- package/lib/components/collapse/Collapse.vue.d.ts +0 -47
- package/lib/components/container/Container.vue.d.ts +0 -14
- package/lib/components/divider/Divider.vue.d.ts +0 -10
- package/lib/components/drawer/Drawer.vue.d.ts +0 -73
- package/lib/components/form/Form.vue.d.ts +0 -46
- package/lib/components/icon/Icon.vue.d.ts +0 -40
- package/lib/components/image/Image.vue.d.ts +0 -8
- package/lib/components/index.d.ts +0 -45
- package/lib/components/input/Input.vue.d.ts +0 -117
- package/lib/components/link/Link.vue.d.ts +0 -36
- package/lib/components/menu/Menu.vue.d.ts +0 -62
- package/lib/components/menu/MenuItem.vue.d.ts +0 -114
- package/lib/components/modal/Modal.vue.d.ts +0 -34
- package/lib/components/notifications/Notifications.vue.d.ts +0 -104
- package/lib/components/pagination/Pagination.vue.d.ts +0 -58
- package/lib/components/pagination/PaginationItem.vue.d.ts +0 -32
- package/lib/components/popover/Popover.vue.d.ts +0 -64
- package/lib/components/popover/PopoverContainer.vue.d.ts +0 -14
- package/lib/components/progress/Progress.vue.d.ts +0 -42
- package/lib/components/radio/Radio.vue.d.ts +0 -79
- package/lib/components/scroll/Scroll.vue.d.ts +0 -29
- package/lib/components/select/Select.vue.d.ts +0 -100
- package/lib/components/skeleton/Skeleton.vue.d.ts +0 -14
- package/lib/components/slider/Slider.vue.d.ts +0 -96
- package/lib/components/spacer/Spacer.vue.d.ts +0 -2
- package/lib/components/spinner/Spinner.vue.d.ts +0 -16
- package/lib/components/tab/Tab.vue.d.ts +0 -52
- package/lib/components/tab/TabGroup.vue.d.ts +0 -61
- package/lib/components/table/Table.vue.d.ts +0 -82
- package/lib/components/table/TableBody.vue.d.ts +0 -2
- package/lib/components/table/TableCell.vue.d.ts +0 -33
- package/lib/components/table/TableHead.vue.d.ts +0 -2
- package/lib/components/table/TableHeader.vue.d.ts +0 -33
- package/lib/components/table/TableRow.vue.d.ts +0 -23
- package/lib/components/tag/Tag.vue.d.ts +0 -45
- package/lib/components/textarea/Textarea.vue.d.ts +0 -106
- package/lib/components/toggle/Toggle.vue.d.ts +0 -79
- package/lib/components/tooltip/Tooltip.vue.d.ts +0 -2
- package/lib/composables/colors-utils.d.ts +0 -8
- package/lib/composables/colors.d.ts +0 -26
- package/lib/composables/common.d.ts +0 -14
- package/lib/composables/css.d.ts +0 -5
- package/lib/composables/index.d.ts +0 -7
- package/lib/composables/inputtable.d.ts +0 -37
- package/lib/composables/interactive.d.ts +0 -10
- package/lib/composables/keys.d.ts +0 -7
- package/lib/composables/notification.d.ts +0 -1
- package/lib/create.d.ts +0 -12
- package/lib/index.d.ts +0 -6
- package/lib/install.d.ts +0 -4
- package/lib/style.css +0 -1
- package/lib/version.d.ts +0 -2
- package/src/components/table/TableHead.vue +0 -15
- package/src/composables/notification.ts +0 -10
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { computed, inject, unref, useSlots, type StyleValue } from 'vue'
|
|
2
|
+
import { injectThemeKey } from './keys'
|
|
3
|
+
import { useColors, type ColorComposition } from './colors'
|
|
4
|
+
import { useCSS, type CSSComposition } from './css'
|
|
5
|
+
import * as R from 'ramda'
|
|
6
|
+
import { smartUnref } from '../common/utils'
|
|
7
|
+
|
|
8
|
+
import type { Slots } from 'vue'
|
|
9
|
+
|
|
10
|
+
export type ThemeParams = {
|
|
11
|
+
props: any
|
|
12
|
+
slots: Slots
|
|
13
|
+
colors: ColorComposition
|
|
14
|
+
css: CSSComposition
|
|
15
|
+
rtl?: boolean
|
|
16
|
+
data?: any
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export const useTheme = (namespace: string, defaultTheme: any = {}, props: any, data?: any) => {
|
|
20
|
+
const userTheme = inject(injectThemeKey, false)
|
|
21
|
+
|
|
22
|
+
const rawClasses = computed(() => {
|
|
23
|
+
if (unref(userTheme)?.[namespace]) return R.mergeRight(defaultTheme.classes, unref(userTheme)[namespace].classes || {})
|
|
24
|
+
|
|
25
|
+
return defaultTheme.classes
|
|
26
|
+
})
|
|
27
|
+
|
|
28
|
+
const classPrefix = computed(() => unref(userTheme)?.classPrefix ?? 'x-')
|
|
29
|
+
const className = computed(() => `${classPrefix.value}${namespace}`)
|
|
30
|
+
|
|
31
|
+
const rtl = computed(() => unref(userTheme)?.rtl ?? false)
|
|
32
|
+
|
|
33
|
+
// compute theme
|
|
34
|
+
const slots = useSlots()
|
|
35
|
+
const colors = useColors()
|
|
36
|
+
const css = useCSS(namespace)
|
|
37
|
+
|
|
38
|
+
const classes = computed(() => getClasses(rawClasses.value, {
|
|
39
|
+
props: unref(props),
|
|
40
|
+
slots,
|
|
41
|
+
data: smartUnref(data),
|
|
42
|
+
colors,
|
|
43
|
+
css,
|
|
44
|
+
rtl: unref(rtl),
|
|
45
|
+
}))
|
|
46
|
+
|
|
47
|
+
const styles = computed(() => {
|
|
48
|
+
const componentTheme = unref(userTheme)?.[namespace] || {}
|
|
49
|
+
const params = {
|
|
50
|
+
props: unref(props),
|
|
51
|
+
slots,
|
|
52
|
+
data: smartUnref(data),
|
|
53
|
+
colors,
|
|
54
|
+
css,
|
|
55
|
+
rtl: unref(rtl),
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
return [
|
|
59
|
+
getStyles(defaultTheme.styles, params),
|
|
60
|
+
getStyles(componentTheme.styles, params),
|
|
61
|
+
] as StyleValue
|
|
62
|
+
})
|
|
63
|
+
|
|
64
|
+
return {
|
|
65
|
+
classPrefix,
|
|
66
|
+
className,
|
|
67
|
+
colors,
|
|
68
|
+
classes,
|
|
69
|
+
styles,
|
|
70
|
+
css,
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
function getClasses(xs: any, params: ThemeParams): any {
|
|
75
|
+
return R.map((x) => R.is(Function, x)
|
|
76
|
+
? x(params)
|
|
77
|
+
: R.is(Object, x) || R.is(Array, x)
|
|
78
|
+
? getClasses(x, params)
|
|
79
|
+
: x, xs)
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
function getStyles(styles: any, params: ThemeParams) {
|
|
83
|
+
return R.is(Function, styles)
|
|
84
|
+
? styles(params) || {}
|
|
85
|
+
: R.is(Object, styles)
|
|
86
|
+
? styles
|
|
87
|
+
: {}
|
|
88
|
+
}
|
package/src/create.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import type { App } from 'vue'
|
|
2
2
|
import type { ColorLibrary } from './composables/colors'
|
|
3
|
-
import { injectColorsKey, injectIconsKey } from './composables/keys'
|
|
3
|
+
import { injectColorsKey, injectIconsKey, injectThemeKey } from './composables/keys'
|
|
4
4
|
|
|
5
|
-
export
|
|
5
|
+
export type IndielayerUIOptions = {
|
|
6
6
|
prefix?: string,
|
|
7
7
|
components?: any,
|
|
8
8
|
colors?: ColorLibrary,
|
|
9
9
|
icons?: any
|
|
10
|
+
theme?: any
|
|
10
11
|
}
|
|
11
12
|
|
|
12
13
|
const defaultOptions: IndielayerUIOptions = {
|
|
@@ -23,11 +24,15 @@ const create = (createOptions: IndielayerUIOptions = {}) => {
|
|
|
23
24
|
|
|
24
25
|
if (options.components)
|
|
25
26
|
options.components.forEach((component: any) => {
|
|
26
|
-
|
|
27
|
+
// TODO: remove me
|
|
28
|
+
const name = component.name.startsWith('X') ? component.name.slice(1) : component.name
|
|
29
|
+
|
|
30
|
+
app.component(`${options.prefix}${name}`, component)
|
|
27
31
|
})
|
|
28
32
|
|
|
29
33
|
app.provide(injectColorsKey, options.colors)
|
|
30
34
|
app.provide(injectIconsKey, options.icons || {})
|
|
35
|
+
app.provide(injectThemeKey, options.theme || {})
|
|
31
36
|
}
|
|
32
37
|
|
|
33
38
|
return {
|
package/src/exports/nuxt.js
CHANGED
|
@@ -6,7 +6,7 @@ export default defineNuxtModule({
|
|
|
6
6
|
name: '@indielayer/ui',
|
|
7
7
|
configKey: 'indielayer',
|
|
8
8
|
compatibility: {
|
|
9
|
-
nuxt: '^3.0.0',
|
|
9
|
+
nuxt: '^3.0.0-rc.1',
|
|
10
10
|
},
|
|
11
11
|
},
|
|
12
12
|
defaults: {
|
|
@@ -25,6 +25,7 @@ export default defineNuxtModule({
|
|
|
25
25
|
nuxt.hook('components:dirs', (dirs) => {
|
|
26
26
|
dirs.push({
|
|
27
27
|
path: fileURLToPath(new URL('../src/components', import.meta.url)),
|
|
28
|
+
extensions: ['vue', 'tsx'],
|
|
28
29
|
prefix: options?.prefix ? options?.prefix : 'X',
|
|
29
30
|
})
|
|
30
31
|
})
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '1.0.0
|
|
1
|
+
export default '1.0.0'
|
package/volar.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ declare module 'vue' {
|
|
|
15
15
|
XForm: typeof import('@indielayer/ui')['XForm']
|
|
16
16
|
XIcon: typeof import('@indielayer/ui')['XIcon']
|
|
17
17
|
XImage: typeof import('@indielayer/ui')['XImage']
|
|
18
|
+
XAbac: typeof import('@indielayer/ui')['XAbac']
|
|
18
19
|
XInput: typeof import('@indielayer/ui')['XInput']
|
|
19
20
|
XLink: typeof import('@indielayer/ui')['XLink']
|
|
20
21
|
XMenu: typeof import('@indielayer/ui')['XMenu']
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { type PropType } from 'vue';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<{
|
|
3
|
-
tag: {
|
|
4
|
-
type: StringConstructor;
|
|
5
|
-
default: string;
|
|
6
|
-
};
|
|
7
|
-
type: PropType<"success" | "warning" | "error" | "info" | undefined>;
|
|
8
|
-
glow: BooleanConstructor;
|
|
9
|
-
light: BooleanConstructor;
|
|
10
|
-
outlined: BooleanConstructor;
|
|
11
|
-
removable: BooleanConstructor;
|
|
12
|
-
color: {
|
|
13
|
-
readonly type: StringConstructor;
|
|
14
|
-
readonly default: string | undefined;
|
|
15
|
-
};
|
|
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
|
-
};
|
|
23
|
-
type: PropType<"success" | "warning" | "error" | "info" | undefined>;
|
|
24
|
-
glow: BooleanConstructor;
|
|
25
|
-
light: BooleanConstructor;
|
|
26
|
-
outlined: BooleanConstructor;
|
|
27
|
-
removable: BooleanConstructor;
|
|
28
|
-
color: {
|
|
29
|
-
readonly type: StringConstructor;
|
|
30
|
-
readonly default: string | undefined;
|
|
31
|
-
};
|
|
32
|
-
}>> & {
|
|
33
|
-
onRemove?: ((...args: any[]) => any) | undefined;
|
|
34
|
-
}, {
|
|
35
|
-
tag: string;
|
|
36
|
-
glow: boolean;
|
|
37
|
-
light: boolean;
|
|
38
|
-
outlined: boolean;
|
|
39
|
-
removable: boolean;
|
|
40
|
-
color: string;
|
|
41
|
-
}>;
|
|
42
|
-
export default _default;
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
tag: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
name: StringConstructor;
|
|
7
|
-
alt: StringConstructor;
|
|
8
|
-
image: StringConstructor;
|
|
9
|
-
outlined: BooleanConstructor;
|
|
10
|
-
rounded: BooleanConstructor;
|
|
11
|
-
color: {
|
|
12
|
-
readonly type: StringConstructor;
|
|
13
|
-
readonly default: string | undefined;
|
|
14
|
-
};
|
|
15
|
-
size: {
|
|
16
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
17
|
-
readonly validator: (value: string) => boolean;
|
|
18
|
-
};
|
|
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<{
|
|
26
|
-
tag: {
|
|
27
|
-
type: StringConstructor;
|
|
28
|
-
default: string;
|
|
29
|
-
};
|
|
30
|
-
name: StringConstructor;
|
|
31
|
-
alt: StringConstructor;
|
|
32
|
-
image: StringConstructor;
|
|
33
|
-
outlined: BooleanConstructor;
|
|
34
|
-
rounded: BooleanConstructor;
|
|
35
|
-
color: {
|
|
36
|
-
readonly type: StringConstructor;
|
|
37
|
-
readonly default: string | undefined;
|
|
38
|
-
};
|
|
39
|
-
size: {
|
|
40
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
41
|
-
readonly validator: (value: string) => boolean;
|
|
42
|
-
};
|
|
43
|
-
}>>, {
|
|
44
|
-
tag: string;
|
|
45
|
-
outlined: boolean;
|
|
46
|
-
color: string;
|
|
47
|
-
rounded: boolean;
|
|
48
|
-
}>;
|
|
49
|
-
export default _default;
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
import { type PropType } from 'vue';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<{
|
|
3
|
-
tag: {
|
|
4
|
-
type: StringConstructor;
|
|
5
|
-
default: string;
|
|
6
|
-
};
|
|
7
|
-
position: {
|
|
8
|
-
type: PropType<"top" | "bottom">;
|
|
9
|
-
default: string;
|
|
10
|
-
};
|
|
11
|
-
align: {
|
|
12
|
-
type: PropType<"left" | "right">;
|
|
13
|
-
default: string;
|
|
14
|
-
};
|
|
15
|
-
offsetX: (NumberConstructor | StringConstructor)[];
|
|
16
|
-
offsetY: (NumberConstructor | StringConstructor)[];
|
|
17
|
-
animated: BooleanConstructor;
|
|
18
|
-
outlined: BooleanConstructor;
|
|
19
|
-
icon: StringConstructor;
|
|
20
|
-
show: {
|
|
21
|
-
type: BooleanConstructor;
|
|
22
|
-
default: boolean;
|
|
23
|
-
};
|
|
24
|
-
color: {
|
|
25
|
-
readonly type: StringConstructor;
|
|
26
|
-
readonly default: string | undefined;
|
|
27
|
-
};
|
|
28
|
-
size: {
|
|
29
|
-
readonly type: PropType<import("../../composables/common").Size>;
|
|
30
|
-
readonly validator: (value: string) => boolean;
|
|
31
|
-
};
|
|
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<{
|
|
37
|
-
tag: {
|
|
38
|
-
type: StringConstructor;
|
|
39
|
-
default: string;
|
|
40
|
-
};
|
|
41
|
-
position: {
|
|
42
|
-
type: PropType<"top" | "bottom">;
|
|
43
|
-
default: string;
|
|
44
|
-
};
|
|
45
|
-
align: {
|
|
46
|
-
type: PropType<"left" | "right">;
|
|
47
|
-
default: string;
|
|
48
|
-
};
|
|
49
|
-
offsetX: (NumberConstructor | StringConstructor)[];
|
|
50
|
-
offsetY: (NumberConstructor | StringConstructor)[];
|
|
51
|
-
animated: BooleanConstructor;
|
|
52
|
-
outlined: BooleanConstructor;
|
|
53
|
-
icon: StringConstructor;
|
|
54
|
-
show: {
|
|
55
|
-
type: BooleanConstructor;
|
|
56
|
-
default: boolean;
|
|
57
|
-
};
|
|
58
|
-
color: {
|
|
59
|
-
readonly type: StringConstructor;
|
|
60
|
-
readonly default: string | undefined;
|
|
61
|
-
};
|
|
62
|
-
size: {
|
|
63
|
-
readonly type: PropType<import("../../composables/common").Size>;
|
|
64
|
-
readonly validator: (value: string) => boolean;
|
|
65
|
-
};
|
|
66
|
-
}>>, {
|
|
67
|
-
tag: string;
|
|
68
|
-
outlined: boolean;
|
|
69
|
-
color: string;
|
|
70
|
-
position: "top" | "bottom";
|
|
71
|
-
align: "left" | "right";
|
|
72
|
-
animated: boolean;
|
|
73
|
-
show: boolean;
|
|
74
|
-
}>;
|
|
75
|
-
export default _default;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { type PropType } from 'vue';
|
|
2
|
-
export declare type BreadcrumbItem = {
|
|
3
|
-
label: string;
|
|
4
|
-
to?: string | object;
|
|
5
|
-
href?: string;
|
|
6
|
-
color?: string;
|
|
7
|
-
icon?: string;
|
|
8
|
-
shadow?: boolean;
|
|
9
|
-
underline?: boolean;
|
|
10
|
-
};
|
|
11
|
-
declare const _default: import("vue").DefineComponent<{
|
|
12
|
-
items: PropType<BreadcrumbItem[]>;
|
|
13
|
-
icon: StringConstructor;
|
|
14
|
-
color: StringConstructor;
|
|
15
|
-
shadow: BooleanConstructor;
|
|
16
|
-
underline: BooleanConstructor;
|
|
17
|
-
}, {
|
|
18
|
-
arrowIcon: string;
|
|
19
|
-
lastItem: import("vue").ComputedRef<BreadcrumbItem | undefined>;
|
|
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<{
|
|
21
|
-
items: PropType<BreadcrumbItem[]>;
|
|
22
|
-
icon: StringConstructor;
|
|
23
|
-
color: StringConstructor;
|
|
24
|
-
shadow: BooleanConstructor;
|
|
25
|
-
underline: BooleanConstructor;
|
|
26
|
-
}>>, {
|
|
27
|
-
shadow: boolean;
|
|
28
|
-
underline: boolean;
|
|
29
|
-
}>;
|
|
30
|
-
export default _default;
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
export declare type Size = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined;
|
|
2
|
-
declare const _default: import("vue").DefineComponent<{
|
|
3
|
-
tag: {
|
|
4
|
-
type: StringConstructor;
|
|
5
|
-
default: string;
|
|
6
|
-
};
|
|
7
|
-
type: {
|
|
8
|
-
type: StringConstructor;
|
|
9
|
-
default: string;
|
|
10
|
-
};
|
|
11
|
-
icon: StringConstructor;
|
|
12
|
-
iconRight: StringConstructor;
|
|
13
|
-
to: StringConstructor;
|
|
14
|
-
outlined: BooleanConstructor;
|
|
15
|
-
rounded: BooleanConstructor;
|
|
16
|
-
glow: BooleanConstructor;
|
|
17
|
-
ghost: BooleanConstructor;
|
|
18
|
-
light: BooleanConstructor;
|
|
19
|
-
block: BooleanConstructor;
|
|
20
|
-
flat: BooleanConstructor;
|
|
21
|
-
disabled: BooleanConstructor;
|
|
22
|
-
loading: BooleanConstructor;
|
|
23
|
-
color: {
|
|
24
|
-
readonly type: StringConstructor;
|
|
25
|
-
readonly default: string | undefined;
|
|
26
|
-
};
|
|
27
|
-
size: {
|
|
28
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
29
|
-
readonly validator: (value: string) => boolean;
|
|
30
|
-
};
|
|
31
|
-
}, {
|
|
32
|
-
elRef: import("vue").Ref<HTMLElement | undefined>;
|
|
33
|
-
sizeClasses: import("vue").ComputedRef<string>;
|
|
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;
|
|
44
|
-
}, 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
|
-
tag: {
|
|
46
|
-
type: StringConstructor;
|
|
47
|
-
default: string;
|
|
48
|
-
};
|
|
49
|
-
type: {
|
|
50
|
-
type: StringConstructor;
|
|
51
|
-
default: string;
|
|
52
|
-
};
|
|
53
|
-
icon: StringConstructor;
|
|
54
|
-
iconRight: StringConstructor;
|
|
55
|
-
to: StringConstructor;
|
|
56
|
-
outlined: BooleanConstructor;
|
|
57
|
-
rounded: BooleanConstructor;
|
|
58
|
-
glow: BooleanConstructor;
|
|
59
|
-
ghost: BooleanConstructor;
|
|
60
|
-
light: BooleanConstructor;
|
|
61
|
-
block: BooleanConstructor;
|
|
62
|
-
flat: BooleanConstructor;
|
|
63
|
-
disabled: BooleanConstructor;
|
|
64
|
-
loading: BooleanConstructor;
|
|
65
|
-
color: {
|
|
66
|
-
readonly type: StringConstructor;
|
|
67
|
-
readonly default: string | undefined;
|
|
68
|
-
};
|
|
69
|
-
size: {
|
|
70
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
71
|
-
readonly validator: (value: string) => boolean;
|
|
72
|
-
};
|
|
73
|
-
}>>, {
|
|
74
|
-
tag: string;
|
|
75
|
-
glow: boolean;
|
|
76
|
-
light: boolean;
|
|
77
|
-
outlined: boolean;
|
|
78
|
-
type: string;
|
|
79
|
-
color: string;
|
|
80
|
-
rounded: boolean;
|
|
81
|
-
ghost: boolean;
|
|
82
|
-
block: boolean;
|
|
83
|
-
flat: boolean;
|
|
84
|
-
disabled: boolean;
|
|
85
|
-
loading: boolean;
|
|
86
|
-
}>;
|
|
87
|
-
export default _default;
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
tag: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
outlined: BooleanConstructor;
|
|
7
|
-
rounded: BooleanConstructor;
|
|
8
|
-
ghost: BooleanConstructor;
|
|
9
|
-
light: BooleanConstructor;
|
|
10
|
-
disabled: BooleanConstructor;
|
|
11
|
-
loading: BooleanConstructor;
|
|
12
|
-
color: {
|
|
13
|
-
readonly type: StringConstructor;
|
|
14
|
-
readonly default: string | undefined;
|
|
15
|
-
};
|
|
16
|
-
size: {
|
|
17
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
18
|
-
readonly validator: (value: string) => boolean;
|
|
19
|
-
};
|
|
20
|
-
}, void, 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
|
-
tag: {
|
|
22
|
-
type: StringConstructor;
|
|
23
|
-
default: string;
|
|
24
|
-
};
|
|
25
|
-
outlined: BooleanConstructor;
|
|
26
|
-
rounded: BooleanConstructor;
|
|
27
|
-
ghost: BooleanConstructor;
|
|
28
|
-
light: BooleanConstructor;
|
|
29
|
-
disabled: BooleanConstructor;
|
|
30
|
-
loading: BooleanConstructor;
|
|
31
|
-
color: {
|
|
32
|
-
readonly type: StringConstructor;
|
|
33
|
-
readonly default: string | undefined;
|
|
34
|
-
};
|
|
35
|
-
size: {
|
|
36
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
37
|
-
readonly validator: (value: string) => boolean;
|
|
38
|
-
};
|
|
39
|
-
}>>, {
|
|
40
|
-
tag: string;
|
|
41
|
-
light: boolean;
|
|
42
|
-
outlined: boolean;
|
|
43
|
-
color: string;
|
|
44
|
-
rounded: boolean;
|
|
45
|
-
ghost: boolean;
|
|
46
|
-
disabled: boolean;
|
|
47
|
-
loading: boolean;
|
|
48
|
-
}>;
|
|
49
|
-
export default _default;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
tag: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
flat: BooleanConstructor;
|
|
7
|
-
}, unknown, 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
|
-
tag: {
|
|
9
|
-
type: StringConstructor;
|
|
10
|
-
default: string;
|
|
11
|
-
};
|
|
12
|
-
flat: BooleanConstructor;
|
|
13
|
-
}>>, {
|
|
14
|
-
tag: string;
|
|
15
|
-
flat: boolean;
|
|
16
|
-
}>;
|
|
17
|
-
export default _default;
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
import { type StyleValue } from 'vue';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<{
|
|
3
|
-
label: StringConstructor;
|
|
4
|
-
glow: BooleanConstructor;
|
|
5
|
-
modelValue: import("vue").PropType<[string, number, boolean, object, []]>;
|
|
6
|
-
name: StringConstructor;
|
|
7
|
-
readonly: BooleanConstructor;
|
|
8
|
-
required: BooleanConstructor;
|
|
9
|
-
validateOnInput: {
|
|
10
|
-
readonly type: BooleanConstructor;
|
|
11
|
-
readonly default: true;
|
|
12
|
-
};
|
|
13
|
-
error: StringConstructor;
|
|
14
|
-
rules: {
|
|
15
|
-
readonly type: ArrayConstructor;
|
|
16
|
-
readonly default: () => never[];
|
|
17
|
-
};
|
|
18
|
-
disabled: BooleanConstructor;
|
|
19
|
-
loading: BooleanConstructor;
|
|
20
|
-
color: {
|
|
21
|
-
readonly type: StringConstructor;
|
|
22
|
-
readonly default: string | undefined;
|
|
23
|
-
};
|
|
24
|
-
size: {
|
|
25
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
26
|
-
readonly validator: (value: string) => boolean;
|
|
27
|
-
};
|
|
28
|
-
}, {
|
|
29
|
-
elRef: import("vue").Ref<HTMLElement | undefined>;
|
|
30
|
-
checked: import("vue").Ref<boolean>;
|
|
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>;
|
|
34
|
-
toggle: () => void;
|
|
35
|
-
isFirstValidation: import("vue").Ref<boolean>;
|
|
36
|
-
errorInternal: any;
|
|
37
|
-
isInsideForm: any;
|
|
38
|
-
inputListeners: {};
|
|
39
|
-
reset: () => void;
|
|
40
|
-
validate: (val: any) => boolean;
|
|
41
|
-
setError: (val: string) => void;
|
|
42
|
-
focus: () => void;
|
|
43
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
|
-
label: StringConstructor;
|
|
45
|
-
glow: BooleanConstructor;
|
|
46
|
-
modelValue: import("vue").PropType<[string, number, boolean, object, []]>;
|
|
47
|
-
name: StringConstructor;
|
|
48
|
-
readonly: BooleanConstructor;
|
|
49
|
-
required: BooleanConstructor;
|
|
50
|
-
validateOnInput: {
|
|
51
|
-
readonly type: BooleanConstructor;
|
|
52
|
-
readonly default: true;
|
|
53
|
-
};
|
|
54
|
-
error: StringConstructor;
|
|
55
|
-
rules: {
|
|
56
|
-
readonly type: ArrayConstructor;
|
|
57
|
-
readonly default: () => never[];
|
|
58
|
-
};
|
|
59
|
-
disabled: BooleanConstructor;
|
|
60
|
-
loading: BooleanConstructor;
|
|
61
|
-
color: {
|
|
62
|
-
readonly type: StringConstructor;
|
|
63
|
-
readonly default: string | undefined;
|
|
64
|
-
};
|
|
65
|
-
size: {
|
|
66
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
67
|
-
readonly validator: (value: string) => boolean;
|
|
68
|
-
};
|
|
69
|
-
}>> & {
|
|
70
|
-
[x: string & `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
71
|
-
}, {
|
|
72
|
-
readonly: boolean;
|
|
73
|
-
glow: boolean;
|
|
74
|
-
required: boolean;
|
|
75
|
-
color: string;
|
|
76
|
-
disabled: boolean;
|
|
77
|
-
loading: boolean;
|
|
78
|
-
validateOnInput: boolean;
|
|
79
|
-
rules: unknown[];
|
|
80
|
-
}>;
|
|
81
|
-
export default _default;
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
tag: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
disabled: BooleanConstructor;
|
|
7
|
-
expanded: BooleanConstructor;
|
|
8
|
-
showIcon: {
|
|
9
|
-
type: BooleanConstructor;
|
|
10
|
-
default: boolean;
|
|
11
|
-
};
|
|
12
|
-
icon: StringConstructor;
|
|
13
|
-
color: StringConstructor;
|
|
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
|
-
toggle: () => void;
|
|
24
|
-
close: (anim?: boolean) => void;
|
|
25
|
-
open: (anim?: boolean) => void;
|
|
26
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "expand"[], "expand", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
-
tag: {
|
|
28
|
-
type: StringConstructor;
|
|
29
|
-
default: string;
|
|
30
|
-
};
|
|
31
|
-
disabled: BooleanConstructor;
|
|
32
|
-
expanded: BooleanConstructor;
|
|
33
|
-
showIcon: {
|
|
34
|
-
type: BooleanConstructor;
|
|
35
|
-
default: boolean;
|
|
36
|
-
};
|
|
37
|
-
icon: StringConstructor;
|
|
38
|
-
color: StringConstructor;
|
|
39
|
-
}>> & {
|
|
40
|
-
onExpand?: ((...args: any[]) => any) | undefined;
|
|
41
|
-
}, {
|
|
42
|
-
tag: string;
|
|
43
|
-
disabled: boolean;
|
|
44
|
-
expanded: boolean;
|
|
45
|
-
showIcon: boolean;
|
|
46
|
-
}>;
|
|
47
|
-
export default _default;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
tag: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
}, unknown, 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
|
-
tag: {
|
|
8
|
-
type: StringConstructor;
|
|
9
|
-
default: string;
|
|
10
|
-
};
|
|
11
|
-
}>>, {
|
|
12
|
-
tag: string;
|
|
13
|
-
}>;
|
|
14
|
-
export default _default;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
label: StringConstructor;
|
|
3
|
-
vertical: BooleanConstructor;
|
|
4
|
-
}, unknown, 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
|
-
label: StringConstructor;
|
|
6
|
-
vertical: BooleanConstructor;
|
|
7
|
-
}>>, {
|
|
8
|
-
vertical: boolean;
|
|
9
|
-
}>;
|
|
10
|
-
export default _default;
|