@roku-ui/vue 0.1.2 → 0.3.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/dist/components/AspectRatio.vue.d.ts +36 -0
- package/dist/components/Btn.vue.d.ts +6 -1
- package/dist/components/ChatContainer.vue.d.ts +9 -0
- package/dist/components/ChatMessage.vue.d.ts +51 -0
- package/dist/components/ChatSystem.vue.d.ts +45 -0
- package/dist/components/Chip.vue.d.ts +12 -12
- package/dist/components/ColorInput.vue.d.ts +6 -0
- package/dist/components/ColorSwatch.vue.d.ts +36 -0
- package/dist/components/Drawer.vue.d.ts +41 -0
- package/dist/components/Dropzone.vue.d.ts +45 -0
- package/dist/components/FullscreenOverlay.vue.d.ts +38 -0
- package/dist/components/Image.vue.d.ts +49 -0
- package/dist/components/Indicator.vue.d.ts +3 -3
- package/dist/components/Modal.vue.d.ts +3 -0
- package/dist/components/Overlay.vue.d.ts +52 -0
- package/dist/components/Paper.vue.d.ts +1 -1
- package/dist/components/Progress.vue.d.ts +2 -2
- package/dist/components/Slider.vue.d.ts +29 -23
- package/dist/components/Switch.vue.d.ts +19 -19
- package/dist/components/TextField.vue.d.ts +1 -1
- package/dist/components/index.d.ts +28 -18
- package/dist/composables/index.d.ts +3 -2
- package/dist/index.js +1977 -1476
- package/dist/index.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +13 -12
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
ratio?: number | undefined;
|
|
3
|
+
}>, {
|
|
4
|
+
ratio: number;
|
|
5
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
ratio?: number | undefined;
|
|
7
|
+
}>, {
|
|
8
|
+
ratio: number;
|
|
9
|
+
}>>>, {
|
|
10
|
+
ratio: number;
|
|
11
|
+
}, {}>, {
|
|
12
|
+
default?(_: {}): any;
|
|
13
|
+
}>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
16
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
17
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
18
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
19
|
+
} : {
|
|
20
|
+
type: import('vue').PropType<T[K]>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
type __VLS_WithDefaults<P, D> = {
|
|
25
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
26
|
+
default: D[K];
|
|
27
|
+
}> : P[K];
|
|
28
|
+
};
|
|
29
|
+
type __VLS_Prettify<T> = {
|
|
30
|
+
[K in keyof T]: T[K];
|
|
31
|
+
} & {};
|
|
32
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
33
|
+
new (): {
|
|
34
|
+
$slots: S;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
@@ -8,6 +8,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
8
8
|
color?: "primary" | "secondary" | "tertiary" | "error" | undefined;
|
|
9
9
|
animate?: boolean | undefined;
|
|
10
10
|
rounded?: "sm" | "md" | "lg" | "none" | "full" | undefined;
|
|
11
|
+
disabled?: boolean | undefined;
|
|
11
12
|
}>, {
|
|
12
13
|
rounded: string;
|
|
13
14
|
type: string;
|
|
@@ -15,6 +16,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
16
|
is: string;
|
|
16
17
|
icon: boolean;
|
|
17
18
|
pressEffect: string;
|
|
19
|
+
disabled: boolean;
|
|
18
20
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
19
21
|
type?: "button" | "submit" | "reset" | undefined;
|
|
20
22
|
size?: "sm" | "md" | "lg" | undefined;
|
|
@@ -25,6 +27,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
25
27
|
color?: "primary" | "secondary" | "tertiary" | "error" | undefined;
|
|
26
28
|
animate?: boolean | undefined;
|
|
27
29
|
rounded?: "sm" | "md" | "lg" | "none" | "full" | undefined;
|
|
30
|
+
disabled?: boolean | undefined;
|
|
28
31
|
}>, {
|
|
29
32
|
rounded: string;
|
|
30
33
|
type: string;
|
|
@@ -32,13 +35,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
32
35
|
is: string;
|
|
33
36
|
icon: boolean;
|
|
34
37
|
pressEffect: string;
|
|
38
|
+
disabled: boolean;
|
|
35
39
|
}>>>, {
|
|
36
40
|
type: "button" | "submit" | "reset";
|
|
37
|
-
size: "sm" | "md" | "lg";
|
|
38
41
|
is: string | globalThis.Component;
|
|
42
|
+
size: "sm" | "md" | "lg";
|
|
39
43
|
icon: boolean;
|
|
40
44
|
pressEffect: "translate" | "scale";
|
|
41
45
|
rounded: "sm" | "md" | "lg" | "none" | "full";
|
|
46
|
+
disabled: boolean;
|
|
42
47
|
}, {}>, {
|
|
43
48
|
leftSection?(_: {}): any;
|
|
44
49
|
default?(_: {}): any;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{}>>, {}, {}>, {
|
|
2
|
+
default?(_: {}): any;
|
|
3
|
+
}>;
|
|
4
|
+
export default _default;
|
|
5
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
6
|
+
new (): {
|
|
7
|
+
$slots: S;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
avatar?: string | undefined;
|
|
3
|
+
position?: "left" | "right" | undefined;
|
|
4
|
+
color?: string | undefined;
|
|
5
|
+
variant?: "default" | "fill" | "transparent" | undefined;
|
|
6
|
+
withBorder?: boolean | undefined;
|
|
7
|
+
}>, {
|
|
8
|
+
position: string;
|
|
9
|
+
variant: string;
|
|
10
|
+
withBorder: boolean;
|
|
11
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
12
|
+
avatar?: string | undefined;
|
|
13
|
+
position?: "left" | "right" | undefined;
|
|
14
|
+
color?: string | undefined;
|
|
15
|
+
variant?: "default" | "fill" | "transparent" | undefined;
|
|
16
|
+
withBorder?: boolean | undefined;
|
|
17
|
+
}>, {
|
|
18
|
+
position: string;
|
|
19
|
+
variant: string;
|
|
20
|
+
withBorder: boolean;
|
|
21
|
+
}>>>, {
|
|
22
|
+
variant: "default" | "fill" | "transparent";
|
|
23
|
+
position: "left" | "right";
|
|
24
|
+
withBorder: boolean;
|
|
25
|
+
}, {}>, {
|
|
26
|
+
avatar?(_: {}): any;
|
|
27
|
+
default?(_: {}): any;
|
|
28
|
+
}>;
|
|
29
|
+
export default _default;
|
|
30
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
31
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
32
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
33
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
34
|
+
} : {
|
|
35
|
+
type: import('vue').PropType<T[K]>;
|
|
36
|
+
required: true;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
type __VLS_WithDefaults<P, D> = {
|
|
40
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
41
|
+
default: D[K];
|
|
42
|
+
}> : P[K];
|
|
43
|
+
};
|
|
44
|
+
type __VLS_Prettify<T> = {
|
|
45
|
+
[K in keyof T]: T[K];
|
|
46
|
+
} & {};
|
|
47
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
48
|
+
new (): {
|
|
49
|
+
$slots: S;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
position?: "left" | "right" | undefined;
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
variant?: "default" | "fill" | "transparent" | undefined;
|
|
5
|
+
withBorder?: boolean | undefined;
|
|
6
|
+
}>, {
|
|
7
|
+
variant: string;
|
|
8
|
+
withBorder: boolean;
|
|
9
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
10
|
+
position?: "left" | "right" | undefined;
|
|
11
|
+
color?: string | undefined;
|
|
12
|
+
variant?: "default" | "fill" | "transparent" | undefined;
|
|
13
|
+
withBorder?: boolean | undefined;
|
|
14
|
+
}>, {
|
|
15
|
+
variant: string;
|
|
16
|
+
withBorder: boolean;
|
|
17
|
+
}>>>, {
|
|
18
|
+
variant: "default" | "fill" | "transparent";
|
|
19
|
+
withBorder: boolean;
|
|
20
|
+
}, {}>, {
|
|
21
|
+
default?(_: {}): any;
|
|
22
|
+
}>;
|
|
23
|
+
export default _default;
|
|
24
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
25
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
26
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
27
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
28
|
+
} : {
|
|
29
|
+
type: import('vue').PropType<T[K]>;
|
|
30
|
+
required: true;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
type __VLS_WithDefaults<P, D> = {
|
|
34
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
35
|
+
default: D[K];
|
|
36
|
+
}> : P[K];
|
|
37
|
+
};
|
|
38
|
+
type __VLS_Prettify<T> = {
|
|
39
|
+
[K in keyof T]: T[K];
|
|
40
|
+
} & {};
|
|
41
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
42
|
+
new (): {
|
|
43
|
+
$slots: S;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
2
|
modelValue: globalThis.PropType<boolean>;
|
|
3
|
+
style: {
|
|
4
|
+
type: globalThis.PropType<any>;
|
|
5
|
+
};
|
|
6
|
+
class: {
|
|
7
|
+
type: globalThis.PropType<any>;
|
|
8
|
+
};
|
|
3
9
|
is: {
|
|
4
10
|
type: globalThis.PropType<string | globalThis.Component>;
|
|
5
11
|
default: string;
|
|
@@ -11,18 +17,18 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
11
17
|
type: globalThis.PropType<string | number>;
|
|
12
18
|
default: string;
|
|
13
19
|
};
|
|
14
|
-
style: {
|
|
15
|
-
type: globalThis.PropType<any>;
|
|
16
|
-
};
|
|
17
|
-
class: {
|
|
18
|
-
type: globalThis.PropType<any>;
|
|
19
|
-
};
|
|
20
20
|
rounded: {
|
|
21
21
|
type: globalThis.PropType<string | number>;
|
|
22
22
|
default: string;
|
|
23
23
|
};
|
|
24
24
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
25
25
|
modelValue: globalThis.PropType<boolean>;
|
|
26
|
+
style: {
|
|
27
|
+
type: globalThis.PropType<any>;
|
|
28
|
+
};
|
|
29
|
+
class: {
|
|
30
|
+
type: globalThis.PropType<any>;
|
|
31
|
+
};
|
|
26
32
|
is: {
|
|
27
33
|
type: globalThis.PropType<string | globalThis.Component>;
|
|
28
34
|
default: string;
|
|
@@ -34,12 +40,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
34
40
|
type: globalThis.PropType<string | number>;
|
|
35
41
|
default: string;
|
|
36
42
|
};
|
|
37
|
-
style: {
|
|
38
|
-
type: globalThis.PropType<any>;
|
|
39
|
-
};
|
|
40
|
-
class: {
|
|
41
|
-
type: globalThis.PropType<any>;
|
|
42
|
-
};
|
|
43
43
|
rounded: {
|
|
44
44
|
type: globalThis.PropType<string | number>;
|
|
45
45
|
default: string;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
modelValue: globalThis.PropType<string>;
|
|
3
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
4
|
+
modelValue: globalThis.PropType<string>;
|
|
5
|
+
}>>, {}, {}>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
color: string;
|
|
3
|
+
is?: string | globalThis.Component | undefined;
|
|
4
|
+
withBorder?: boolean | undefined;
|
|
5
|
+
}>, {
|
|
6
|
+
is: string;
|
|
7
|
+
withBorder: boolean;
|
|
8
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
+
color: string;
|
|
10
|
+
is?: string | globalThis.Component | undefined;
|
|
11
|
+
withBorder?: boolean | undefined;
|
|
12
|
+
}>, {
|
|
13
|
+
is: string;
|
|
14
|
+
withBorder: boolean;
|
|
15
|
+
}>>>, {
|
|
16
|
+
is: string | Component;
|
|
17
|
+
withBorder: boolean;
|
|
18
|
+
}, {}>;
|
|
19
|
+
export default _default;
|
|
20
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
21
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
22
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
23
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
24
|
+
} : {
|
|
25
|
+
type: import('vue').PropType<T[K]>;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
type __VLS_WithDefaults<P, D> = {
|
|
30
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
31
|
+
default: D[K];
|
|
32
|
+
}> : P[K];
|
|
33
|
+
};
|
|
34
|
+
type __VLS_Prettify<T> = {
|
|
35
|
+
[K in keyof T]: T[K];
|
|
36
|
+
} & {};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
+
modelValue: globalThis.PropType<boolean>;
|
|
3
|
+
position: {
|
|
4
|
+
type: globalThis.PropType<"left" | "right">;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
persistent: {
|
|
8
|
+
type: globalThis.PropType<boolean>;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
blur: {
|
|
12
|
+
type: globalThis.PropType<boolean | "sm" | "md" | "lg">;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
16
|
+
modelValue: globalThis.PropType<boolean>;
|
|
17
|
+
position: {
|
|
18
|
+
type: globalThis.PropType<"left" | "right">;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
persistent: {
|
|
22
|
+
type: globalThis.PropType<boolean>;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
blur: {
|
|
26
|
+
type: globalThis.PropType<boolean | "sm" | "md" | "lg">;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>>, {
|
|
30
|
+
position: "left" | "right";
|
|
31
|
+
persistent: boolean;
|
|
32
|
+
blur: boolean | "sm" | "md" | "lg";
|
|
33
|
+
}, {}>, {
|
|
34
|
+
default?(_: {}): any;
|
|
35
|
+
}>;
|
|
36
|
+
export default _default;
|
|
37
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
38
|
+
new (): {
|
|
39
|
+
$slots: S;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
dashed?: boolean | undefined;
|
|
3
|
+
accept?: string | undefined;
|
|
4
|
+
}>, {
|
|
5
|
+
dashed: boolean;
|
|
6
|
+
accept: string;
|
|
7
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
+
drop: (files: File[] | null) => void;
|
|
9
|
+
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
10
|
+
dashed?: boolean | undefined;
|
|
11
|
+
accept?: string | undefined;
|
|
12
|
+
}>, {
|
|
13
|
+
dashed: boolean;
|
|
14
|
+
accept: string;
|
|
15
|
+
}>>> & {
|
|
16
|
+
onDrop?: ((files: File[] | null) => any) | undefined;
|
|
17
|
+
}, {
|
|
18
|
+
dashed: boolean;
|
|
19
|
+
accept: string;
|
|
20
|
+
}, {}>, {
|
|
21
|
+
default?(_: {}): any;
|
|
22
|
+
}>;
|
|
23
|
+
export default _default;
|
|
24
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
25
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
26
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
27
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
28
|
+
} : {
|
|
29
|
+
type: import('vue').PropType<T[K]>;
|
|
30
|
+
required: true;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
type __VLS_WithDefaults<P, D> = {
|
|
34
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
35
|
+
default: D[K];
|
|
36
|
+
}> : P[K];
|
|
37
|
+
};
|
|
38
|
+
type __VLS_Prettify<T> = {
|
|
39
|
+
[K in keyof T]: T[K];
|
|
40
|
+
} & {};
|
|
41
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
42
|
+
new (): {
|
|
43
|
+
$slots: S;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
+
modelValue: globalThis.PropType<boolean>;
|
|
3
|
+
persistent: {
|
|
4
|
+
type: globalThis.PropType<boolean>;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
blur: {
|
|
8
|
+
type: globalThis.PropType<boolean | "sm" | "md" | "lg">;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
wrapperClass: {
|
|
12
|
+
type: globalThis.PropType<string>;
|
|
13
|
+
};
|
|
14
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
15
|
+
modelValue: globalThis.PropType<boolean>;
|
|
16
|
+
persistent: {
|
|
17
|
+
type: globalThis.PropType<boolean>;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
blur: {
|
|
21
|
+
type: globalThis.PropType<boolean | "sm" | "md" | "lg">;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
wrapperClass: {
|
|
25
|
+
type: globalThis.PropType<string>;
|
|
26
|
+
};
|
|
27
|
+
}>>, {
|
|
28
|
+
persistent: boolean;
|
|
29
|
+
blur: boolean | "sm" | "md" | "lg";
|
|
30
|
+
}, {}>, {
|
|
31
|
+
default?(_: {}): any;
|
|
32
|
+
}>;
|
|
33
|
+
export default _default;
|
|
34
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
35
|
+
new (): {
|
|
36
|
+
$slots: S;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import type { Component } from 'vue';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
+
is?: string | Component | undefined;
|
|
4
|
+
src?: string | undefined;
|
|
5
|
+
style?: any;
|
|
6
|
+
class?: any;
|
|
7
|
+
width?: string | number | undefined;
|
|
8
|
+
maxWidth?: string | number | undefined;
|
|
9
|
+
height?: string | number | undefined;
|
|
10
|
+
maxHeight?: string | number | undefined;
|
|
11
|
+
rounded?: string | number | undefined;
|
|
12
|
+
}>, {
|
|
13
|
+
is: string;
|
|
14
|
+
rounded: string;
|
|
15
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
16
|
+
is?: string | Component | undefined;
|
|
17
|
+
src?: string | undefined;
|
|
18
|
+
style?: any;
|
|
19
|
+
class?: any;
|
|
20
|
+
width?: string | number | undefined;
|
|
21
|
+
maxWidth?: string | number | undefined;
|
|
22
|
+
height?: string | number | undefined;
|
|
23
|
+
maxHeight?: string | number | undefined;
|
|
24
|
+
rounded?: string | number | undefined;
|
|
25
|
+
}>, {
|
|
26
|
+
is: string;
|
|
27
|
+
rounded: string;
|
|
28
|
+
}>>>, {
|
|
29
|
+
is: string | Component;
|
|
30
|
+
rounded: 'none' | 'sm' | 'md' | 'lg' | 'full' | string | number;
|
|
31
|
+
}, {}>;
|
|
32
|
+
export default _default;
|
|
33
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
34
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
35
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
36
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
37
|
+
} : {
|
|
38
|
+
type: import('vue').PropType<T[K]>;
|
|
39
|
+
required: true;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
type __VLS_WithDefaults<P, D> = {
|
|
43
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
44
|
+
default: D[K];
|
|
45
|
+
}> : P[K];
|
|
46
|
+
};
|
|
47
|
+
type __VLS_Prettify<T> = {
|
|
48
|
+
[K in keyof T]: T[K];
|
|
49
|
+
} & {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
color?: "primary" | "secondary" | "tertiary" | "error" | undefined;
|
|
3
3
|
size?: string | number | undefined;
|
|
4
|
-
position?: "
|
|
4
|
+
position?: "left" | "right" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top" | "bottom" | undefined;
|
|
5
5
|
ping?: boolean | undefined;
|
|
6
6
|
}>, {
|
|
7
7
|
size: string;
|
|
@@ -10,7 +10,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
10
10
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
11
11
|
color?: "primary" | "secondary" | "tertiary" | "error" | undefined;
|
|
12
12
|
size?: string | number | undefined;
|
|
13
|
-
position?: "
|
|
13
|
+
position?: "left" | "right" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top" | "bottom" | undefined;
|
|
14
14
|
ping?: boolean | undefined;
|
|
15
15
|
}>, {
|
|
16
16
|
size: string;
|
|
@@ -19,7 +19,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
19
19
|
}>>>, {
|
|
20
20
|
size: string | number;
|
|
21
21
|
color: "primary" | "secondary" | "tertiary" | "error";
|
|
22
|
-
position: "
|
|
22
|
+
position: "left" | "right" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top" | "bottom";
|
|
23
23
|
}, {}>, {
|
|
24
24
|
label?(_: {}): any;
|
|
25
25
|
default?(_: {}): any;
|
|
@@ -6,6 +6,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
6
6
|
};
|
|
7
7
|
blur: {
|
|
8
8
|
type: globalThis.PropType<boolean | "sm" | "md" | "lg">;
|
|
9
|
+
default: boolean;
|
|
9
10
|
};
|
|
10
11
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
11
12
|
modelValue: globalThis.PropType<boolean>;
|
|
@@ -15,9 +16,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
15
16
|
};
|
|
16
17
|
blur: {
|
|
17
18
|
type: globalThis.PropType<boolean | "sm" | "md" | "lg">;
|
|
19
|
+
default: boolean;
|
|
18
20
|
};
|
|
19
21
|
}>>, {
|
|
20
22
|
persistent: boolean;
|
|
23
|
+
blur: boolean | "sm" | "md" | "lg";
|
|
21
24
|
}, {}>, {
|
|
22
25
|
default?(_: {}): any;
|
|
23
26
|
}>;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
blur?: boolean | "sm" | "md" | "lg" | undefined;
|
|
3
|
+
rounded?: string | number | undefined;
|
|
4
|
+
opacity?: number | undefined;
|
|
5
|
+
color?: string | undefined;
|
|
6
|
+
}>, {
|
|
7
|
+
blur: boolean;
|
|
8
|
+
rounded: string;
|
|
9
|
+
opacity: number;
|
|
10
|
+
color: string;
|
|
11
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
12
|
+
blur?: boolean | "sm" | "md" | "lg" | undefined;
|
|
13
|
+
rounded?: string | number | undefined;
|
|
14
|
+
opacity?: number | undefined;
|
|
15
|
+
color?: string | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
blur: boolean;
|
|
18
|
+
rounded: string;
|
|
19
|
+
opacity: number;
|
|
20
|
+
color: string;
|
|
21
|
+
}>>>, {
|
|
22
|
+
color: string;
|
|
23
|
+
rounded: string | number;
|
|
24
|
+
blur: boolean | "sm" | "md" | "lg";
|
|
25
|
+
opacity: number;
|
|
26
|
+
}, {}>, {
|
|
27
|
+
default?(_: {}): any;
|
|
28
|
+
content?(_: {}): any;
|
|
29
|
+
}>;
|
|
30
|
+
export default _default;
|
|
31
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
32
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
33
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
34
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
35
|
+
} : {
|
|
36
|
+
type: import('vue').PropType<T[K]>;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
type __VLS_WithDefaults<P, D> = {
|
|
41
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
42
|
+
default: D[K];
|
|
43
|
+
}> : P[K];
|
|
44
|
+
};
|
|
45
|
+
type __VLS_Prettify<T> = {
|
|
46
|
+
[K in keyof T]: T[K];
|
|
47
|
+
} & {};
|
|
48
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
49
|
+
new (): {
|
|
50
|
+
$slots: S;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
@@ -19,10 +19,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
19
19
|
withBorder: boolean;
|
|
20
20
|
is: string;
|
|
21
21
|
}>>>, {
|
|
22
|
+
is: string | globalThis.Component;
|
|
22
23
|
size: string | number;
|
|
23
24
|
rounded: string | number;
|
|
24
25
|
withBorder: boolean;
|
|
25
|
-
is: string | globalThis.Component;
|
|
26
26
|
}, {}>, {
|
|
27
27
|
default?(_: {}): any;
|
|
28
28
|
}>;
|
|
@@ -35,9 +35,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
35
35
|
color: string;
|
|
36
36
|
rounded: 'none' | 'sm' | 'md' | 'lg' | 'full' | string | number;
|
|
37
37
|
loading: boolean;
|
|
38
|
-
min: number;
|
|
39
|
-
max: number;
|
|
40
38
|
value: number;
|
|
39
|
+
max: number;
|
|
40
|
+
min: number;
|
|
41
41
|
}, {}>;
|
|
42
42
|
export default _default;
|
|
43
43
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|