@roku-ui/vue 0.21.0 → 0.22.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 +33 -33
- package/dist/components/AppShell.vue.d.ts +55 -0
- package/dist/components/Calendar.vue.d.ts +40 -0
- package/dist/components/Checkbox.vue.d.ts +33 -0
- package/dist/components/Drawer.vue.d.ts +1 -1
- package/dist/components/FullscreenOverlay.vue.d.ts +1 -1
- package/dist/components/Modal.vue.d.ts +1 -1
- package/dist/components/Notification.vue.d.ts +2 -0
- package/dist/components/NotificationSystem.vue.d.ts +1 -1
- package/dist/components/Overlay.vue.d.ts +2 -0
- package/dist/components/SchemeSwitch.vue.d.ts +7 -0
- package/dist/components/ScrollArea.vue.d.ts +8 -6
- package/dist/components/SelectArea.vue.d.ts +2 -5
- package/dist/components/Slider.vue.d.ts +3 -0
- package/dist/components/Switch.vue.d.ts +6 -5
- package/dist/components/index.d.ts +3 -0
- package/dist/index.css +1 -1
- package/dist/index.js +3935 -4183
- package/dist/index.umd.cjs +1 -1
- package/dist/shared/index.d.ts +7 -7
- package/dist/test/demo/AppShellDemo.vue.d.ts +2 -0
- package/dist/test/demo/AvatarDemo.vue.d.ts +2 -0
- package/dist/test/demo/ButtonDemo.vue.d.ts +2 -0
- package/dist/test/demo/CalendarDemo.vue.d.ts +2 -0
- package/dist/test/demo/ChatDemo.vue.d.ts +2 -0
- package/dist/test/demo/FormDemo.vue.d.ts +2 -0
- package/dist/test/demo/LayoutDemo.vue.d.ts +2 -0
- package/dist/test/demo/MediaDemo.vue.d.ts +2 -0
- package/dist/test/demo/ModalDemo.vue.d.ts +2 -0
- package/dist/test/demo/NavigationDemo.vue.d.ts +2 -0
- package/dist/test/demo/NotificationDemo.vue.d.ts +2 -0
- package/dist/test/demo/SliderDemo.vue.d.ts +2 -0
- package/dist/test/demo/SwitchDemo.vue.d.ts +2 -0
- package/dist/test/demo/TooltipDemo.vue.d.ts +2 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/utils/modals.d.ts +2 -0
- package/package.json +18 -18
package/README.md
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
# Max Min Vue
|
|
2
|
-
|
|
3
|
-
## Usage
|
|
4
|
-
|
|
5
|
-
### Install
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
pnpm install
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
### Development
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
pnpm dev
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
### Build
|
|
18
|
-
|
|
19
|
-
```bash
|
|
20
|
-
pnpm build
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
### Lint
|
|
24
|
-
|
|
25
|
-
```bash
|
|
26
|
-
pnpm lint
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
### Test
|
|
30
|
-
|
|
31
|
-
```bash
|
|
32
|
-
pnpm test
|
|
33
|
-
```
|
|
1
|
+
# Max Min Vue
|
|
2
|
+
|
|
3
|
+
## Usage
|
|
4
|
+
|
|
5
|
+
### Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm install
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
### Development
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
pnpm dev
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### Build
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pnpm build
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Lint
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
pnpm lint
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Test
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pnpm test
|
|
33
|
+
```
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export interface AppShellProps {
|
|
2
|
+
headerHeight?: string;
|
|
3
|
+
footerHeight?: string;
|
|
4
|
+
navbarWidth?: string;
|
|
5
|
+
asideWidth?: string;
|
|
6
|
+
headerSpansNav?: boolean;
|
|
7
|
+
headerSpansAside?: boolean;
|
|
8
|
+
footerSpansNav?: boolean;
|
|
9
|
+
footerSpansAside?: boolean;
|
|
10
|
+
padding?: string | number;
|
|
11
|
+
gap?: string | number;
|
|
12
|
+
}
|
|
13
|
+
declare function __VLS_template(): {
|
|
14
|
+
attrs: Partial<{}>;
|
|
15
|
+
slots: {
|
|
16
|
+
header?(_: {}): any;
|
|
17
|
+
header?(_: {}): any;
|
|
18
|
+
header?(_: {}): any;
|
|
19
|
+
header?(_: {}): any;
|
|
20
|
+
navbar?(_: {}): any;
|
|
21
|
+
navbar?(_: {}): any;
|
|
22
|
+
default?(_: {}): any;
|
|
23
|
+
default?(_: {}): any;
|
|
24
|
+
footer?(_: {}): any;
|
|
25
|
+
footer?(_: {}): any;
|
|
26
|
+
footer?(_: {}): any;
|
|
27
|
+
footer?(_: {}): any;
|
|
28
|
+
footer?(_: {}): any;
|
|
29
|
+
footer?(_: {}): any;
|
|
30
|
+
aside?(_: {}): any;
|
|
31
|
+
aside?(_: {}): any;
|
|
32
|
+
};
|
|
33
|
+
refs: {};
|
|
34
|
+
rootEl: HTMLDivElement;
|
|
35
|
+
};
|
|
36
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
37
|
+
declare const __VLS_component: import('vue').DefineComponent<AppShellProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<AppShellProps> & Readonly<{}>, {
|
|
38
|
+
headerHeight: string;
|
|
39
|
+
footerHeight: string;
|
|
40
|
+
navbarWidth: string;
|
|
41
|
+
asideWidth: string;
|
|
42
|
+
headerSpansNav: boolean;
|
|
43
|
+
headerSpansAside: boolean;
|
|
44
|
+
footerSpansNav: boolean;
|
|
45
|
+
footerSpansAside: boolean;
|
|
46
|
+
padding: string | number;
|
|
47
|
+
gap: string | number;
|
|
48
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
49
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
50
|
+
export default _default;
|
|
51
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
52
|
+
new (): {
|
|
53
|
+
$slots: S;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { CalendarMode, Color } from '../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
modelValue?: Date | Date[] | {
|
|
4
|
+
start: Date;
|
|
5
|
+
end: Date;
|
|
6
|
+
};
|
|
7
|
+
mode?: CalendarMode;
|
|
8
|
+
minDate?: Date;
|
|
9
|
+
maxDate?: Date;
|
|
10
|
+
disabledDates?: Date[] | ((date: Date) => boolean);
|
|
11
|
+
showWeekNumbers?: boolean;
|
|
12
|
+
firstDayOfWeek?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
13
|
+
locale?: string;
|
|
14
|
+
size?: 'sm' | 'md' | 'lg';
|
|
15
|
+
color?: Color;
|
|
16
|
+
variant?: 'default' | 'filled' | 'light';
|
|
17
|
+
rounded?: 'none' | 'sm' | 'md' | 'lg' | 'full' | string | number;
|
|
18
|
+
animate?: boolean;
|
|
19
|
+
};
|
|
20
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
|
+
"update:modelValue": (value: Date | Date[] | {
|
|
22
|
+
start: Date;
|
|
23
|
+
end: Date;
|
|
24
|
+
} | undefined) => any;
|
|
25
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
26
|
+
"onUpdate:modelValue"?: ((value: Date | Date[] | {
|
|
27
|
+
start: Date;
|
|
28
|
+
end: Date;
|
|
29
|
+
} | undefined) => any) | undefined;
|
|
30
|
+
}>, {
|
|
31
|
+
animate: boolean;
|
|
32
|
+
mode: CalendarMode;
|
|
33
|
+
color: Color;
|
|
34
|
+
size: "sm" | "md" | "lg";
|
|
35
|
+
variant: "default" | "filled" | "light";
|
|
36
|
+
rounded: "none" | "sm" | "md" | "lg" | "full" | string | number;
|
|
37
|
+
firstDayOfWeek: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
38
|
+
locale: string;
|
|
39
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
40
|
+
export default _default;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Component } from 'vue';
|
|
2
|
+
import { Color } from '../types';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
size?: 'sm' | 'md' | 'lg';
|
|
5
|
+
animate?: boolean;
|
|
6
|
+
label?: string;
|
|
7
|
+
id?: string;
|
|
8
|
+
rounded?: 'none' | 'sm' | 'md' | 'lg' | 'full' | string | number;
|
|
9
|
+
color?: Color;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
icon?: string | Component;
|
|
12
|
+
indeterminate?: boolean;
|
|
13
|
+
indeterminateIcon?: string | Component;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_PublicProps = {
|
|
16
|
+
modelValue?: boolean;
|
|
17
|
+
} & __VLS_Props;
|
|
18
|
+
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
|
+
"update:modelValue": (value: boolean) => any;
|
|
20
|
+
change: (args_0: boolean) => any;
|
|
21
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
23
|
+
onChange?: ((args_0: boolean) => any) | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
animate: boolean;
|
|
26
|
+
color: Color;
|
|
27
|
+
size: "sm" | "md" | "lg";
|
|
28
|
+
rounded: "none" | "sm" | "md" | "lg" | "full" | string | number;
|
|
29
|
+
indeterminate: boolean;
|
|
30
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
31
|
+
wrapperRef: HTMLDivElement;
|
|
32
|
+
}, any>;
|
|
33
|
+
export default _default;
|
|
@@ -21,8 +21,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
21
21
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
22
22
|
}>, {
|
|
23
23
|
position: "left" | "right";
|
|
24
|
-
persistent: boolean;
|
|
25
24
|
blur: "sm" | "md" | "lg" | boolean;
|
|
25
|
+
persistent: boolean;
|
|
26
26
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
27
27
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
28
28
|
export default _default;
|
|
@@ -22,8 +22,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
22
22
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
23
23
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
24
24
|
}>, {
|
|
25
|
-
persistent: boolean;
|
|
26
25
|
blur: "sm" | "md" | "lg" | boolean;
|
|
26
|
+
persistent: boolean;
|
|
27
27
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
28
28
|
wrapperRef: HTMLDivElement;
|
|
29
29
|
}, any>;
|
|
@@ -23,8 +23,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
23
23
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
24
24
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
25
25
|
}>, {
|
|
26
|
-
persistent: boolean;
|
|
27
26
|
blur: "sm" | "md" | "lg" | boolean;
|
|
27
|
+
persistent: boolean;
|
|
28
28
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
29
29
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
30
30
|
export default _default;
|
|
@@ -12,6 +12,7 @@ type __VLS_Props = {
|
|
|
12
12
|
size?: Size;
|
|
13
13
|
complete?: number;
|
|
14
14
|
total?: number;
|
|
15
|
+
showLeftIndicator?: boolean;
|
|
15
16
|
};
|
|
16
17
|
declare function __VLS_template(): {
|
|
17
18
|
attrs: Partial<{}>;
|
|
@@ -36,6 +37,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
36
37
|
rounded: "sm" | "md" | "lg" | "none" | string | number;
|
|
37
38
|
block: boolean;
|
|
38
39
|
total: number;
|
|
40
|
+
showLeftIndicator: boolean;
|
|
39
41
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
40
42
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
41
43
|
export default _default;
|
|
@@ -10,10 +10,10 @@ type __VLS_Props = {
|
|
|
10
10
|
pb?: number;
|
|
11
11
|
};
|
|
12
12
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
13
|
+
gap: number;
|
|
13
14
|
progress: boolean;
|
|
14
15
|
position: NotificationPosition;
|
|
15
16
|
topN: number;
|
|
16
|
-
gap: number;
|
|
17
17
|
pt: number;
|
|
18
18
|
pl: number;
|
|
19
19
|
pr: number;
|
|
@@ -3,6 +3,7 @@ type __VLS_Props = {
|
|
|
3
3
|
rounded?: 'none' | 'sm' | 'md' | 'lg' | 'full' | string | number;
|
|
4
4
|
opacity?: number;
|
|
5
5
|
color?: string;
|
|
6
|
+
animation?: boolean;
|
|
6
7
|
};
|
|
7
8
|
declare function __VLS_template(): {
|
|
8
9
|
attrs: Partial<{}>;
|
|
@@ -17,6 +18,7 @@ declare function __VLS_template(): {
|
|
|
17
18
|
};
|
|
18
19
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
19
20
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
21
|
+
animation: boolean;
|
|
20
22
|
color: string;
|
|
21
23
|
rounded: "none" | "sm" | "md" | "lg" | "full" | string | number;
|
|
22
24
|
blur: boolean | "sm" | "md" | "lg";
|
|
@@ -1,9 +1,16 @@
|
|
|
1
|
+
import { Component } from 'vue';
|
|
1
2
|
type __VLS_Props = {
|
|
2
3
|
disableViewTranslation?: boolean;
|
|
3
4
|
circleTranslation?: boolean;
|
|
5
|
+
animation?: boolean;
|
|
6
|
+
onIcon?: string | Component;
|
|
7
|
+
offIcon?: string | Component;
|
|
4
8
|
};
|
|
5
9
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
10
|
+
animation: boolean;
|
|
6
11
|
disableViewTranslation: boolean;
|
|
7
12
|
circleTranslation: boolean;
|
|
13
|
+
onIcon: string | Component;
|
|
14
|
+
offIcon: string | Component;
|
|
8
15
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
9
16
|
export default _default;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
|
-
height?: number
|
|
2
|
+
height?: number;
|
|
3
3
|
barWidth?: number;
|
|
4
4
|
threshold?: number;
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
stopPropagation?: boolean;
|
|
6
|
+
capture?: boolean;
|
|
7
|
+
minBarHeight?: number;
|
|
7
8
|
};
|
|
8
9
|
declare function __VLS_template(): {
|
|
9
10
|
attrs: Partial<{}>;
|
|
@@ -11,7 +12,6 @@ declare function __VLS_template(): {
|
|
|
11
12
|
default?(_: {}): any;
|
|
12
13
|
};
|
|
13
14
|
refs: {
|
|
14
|
-
wrapperRef: HTMLDivElement;
|
|
15
15
|
scrollBarIndicatorRef: HTMLDivElement;
|
|
16
16
|
scrollDomRef: HTMLDivElement;
|
|
17
17
|
};
|
|
@@ -19,12 +19,14 @@ declare function __VLS_template(): {
|
|
|
19
19
|
};
|
|
20
20
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
21
21
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
22
|
-
$el: import('vue').Ref<HTMLElement |
|
|
22
|
+
$el: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
23
23
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
24
24
|
barWidth: number;
|
|
25
25
|
threshold: number;
|
|
26
|
+
stopPropagation: boolean;
|
|
27
|
+
capture: boolean;
|
|
28
|
+
minBarHeight: number;
|
|
26
29
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
27
|
-
wrapperRef: HTMLDivElement;
|
|
28
30
|
scrollBarIndicatorRef: HTMLDivElement;
|
|
29
31
|
scrollDomRef: HTMLDivElement;
|
|
30
32
|
}, HTMLDivElement>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
|
-
target?: HTMLElement;
|
|
3
|
-
color?: string;
|
|
2
|
+
target?: HTMLElement | null;
|
|
4
3
|
};
|
|
5
4
|
export interface Area {
|
|
6
5
|
left: number;
|
|
@@ -40,7 +39,5 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
40
39
|
shift: boolean;
|
|
41
40
|
ctrl: boolean;
|
|
42
41
|
}) => any) | undefined;
|
|
43
|
-
}>, {
|
|
44
|
-
color: string;
|
|
45
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
42
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
46
43
|
export default _default;
|
|
@@ -7,9 +7,11 @@ type __VLS_Props = {
|
|
|
7
7
|
max?: number;
|
|
8
8
|
step?: number;
|
|
9
9
|
tickNum?: number;
|
|
10
|
+
ticks?: number[];
|
|
10
11
|
color?: string;
|
|
11
12
|
minWidth?: number;
|
|
12
13
|
reverse?: boolean;
|
|
14
|
+
alignTicksToStep?: boolean;
|
|
13
15
|
};
|
|
14
16
|
type __VLS_PublicProps = {
|
|
15
17
|
modelValue?: any;
|
|
@@ -27,6 +29,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
27
29
|
min: number;
|
|
28
30
|
step: number;
|
|
29
31
|
minWidth: number;
|
|
32
|
+
alignTicksToStep: boolean;
|
|
30
33
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
31
34
|
wrapper: HTMLDivElement;
|
|
32
35
|
indicator: HTMLDivElement;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Component } from 'vue';
|
|
1
2
|
import { Color } from '../types';
|
|
2
3
|
type __VLS_Props = {
|
|
3
4
|
size?: 'sm' | 'md' | 'lg';
|
|
@@ -8,11 +9,11 @@ type __VLS_Props = {
|
|
|
8
9
|
rounded?: 'none' | 'sm' | 'md' | 'lg' | 'full' | string | number;
|
|
9
10
|
color?: Color;
|
|
10
11
|
disabled?: boolean;
|
|
11
|
-
offIcon?: string;
|
|
12
|
-
onIcon?: string;
|
|
13
|
-
indicatorIcon?: string;
|
|
14
|
-
onIndicatorIcon?: string;
|
|
15
|
-
offIndicatorIcon?: string;
|
|
12
|
+
offIcon?: string | Component;
|
|
13
|
+
onIcon?: string | Component;
|
|
14
|
+
indicatorIcon?: string | Component;
|
|
15
|
+
onIndicatorIcon?: string | Component;
|
|
16
|
+
offIndicatorIcon?: string | Component;
|
|
16
17
|
};
|
|
17
18
|
type __VLS_PublicProps = {
|
|
18
19
|
modelValue?: boolean;
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
+
export { default as AppShell } from './AppShell.vue';
|
|
1
2
|
export { default as AspectRatio } from './AspectRatio.vue';
|
|
2
3
|
export { default as AutoHeightTransition } from './AutoHeightTransition.vue';
|
|
3
4
|
export { default as Avatar } from './Avatar.vue';
|
|
4
5
|
export { default as Btn } from './Btn.vue';
|
|
5
6
|
export { default as BtnGroup } from './BtnGroup.vue';
|
|
7
|
+
export { default as Calendar } from './Calendar.vue';
|
|
6
8
|
export { default as ChatContainer } from './ChatContainer.vue';
|
|
7
9
|
export { default as ChatMessage } from './ChatMessage.vue';
|
|
8
10
|
export { default as ChatSystem } from './ChatSystem.vue';
|
|
11
|
+
export { default as Checkbox } from './Checkbox.vue';
|
|
9
12
|
export { default as Chip } from './Chip.vue';
|
|
10
13
|
export { default as ColorInput } from './ColorInput.vue';
|
|
11
14
|
export { default as ColorSwatch } from './ColorSwatch.vue';
|