@roku-ui/vue 0.2.0 → 0.4.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 +44 -0
- package/dist/components/Btn.vue.d.ts +9 -4
- package/dist/components/{Dragzone.vue.d.ts → ChatContainer.vue.d.ts} +1 -5
- 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/Notification.vue.d.ts +20 -3
- package/dist/components/Overlay.vue.d.ts +52 -0
- package/dist/components/Progress.vue.d.ts +9 -9
- package/dist/components/Select.vue.d.ts +9 -9
- package/dist/components/Slider.vue.d.ts +29 -23
- package/dist/components/Switch.vue.d.ts +21 -15
- package/dist/components/TextField.vue.d.ts +1 -1
- package/dist/components/index.d.ts +28 -19
- package/dist/composables/index.d.ts +3 -2
- package/dist/index.js +1969 -1533
- package/dist/index.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +13 -12
- /package/dist/components/{ThemeSwitch.vue.d.ts → SchemeSwitch.vue.d.ts} +0 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
ratio?: number | undefined;
|
|
3
|
+
width?: string | number | undefined;
|
|
4
|
+
maxWidth?: string | number | undefined;
|
|
5
|
+
height?: string | number | undefined;
|
|
6
|
+
maxHeight?: string | number | undefined;
|
|
7
|
+
}>, {
|
|
8
|
+
ratio: number;
|
|
9
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
10
|
+
ratio?: number | undefined;
|
|
11
|
+
width?: string | number | undefined;
|
|
12
|
+
maxWidth?: string | number | undefined;
|
|
13
|
+
height?: string | number | undefined;
|
|
14
|
+
maxHeight?: string | number | undefined;
|
|
15
|
+
}>, {
|
|
16
|
+
ratio: number;
|
|
17
|
+
}>>>, {
|
|
18
|
+
ratio: number;
|
|
19
|
+
}, {}>, {
|
|
20
|
+
default?(_: {}): any;
|
|
21
|
+
}>;
|
|
22
|
+
export default _default;
|
|
23
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
24
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
25
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
26
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
27
|
+
} : {
|
|
28
|
+
type: import('vue').PropType<T[K]>;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
type __VLS_WithDefaults<P, D> = {
|
|
33
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
34
|
+
default: D[K];
|
|
35
|
+
}> : P[K];
|
|
36
|
+
};
|
|
37
|
+
type __VLS_Prettify<T> = {
|
|
38
|
+
[K in keyof T]: T[K];
|
|
39
|
+
} & {};
|
|
40
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
41
|
+
new (): {
|
|
42
|
+
$slots: S;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
@@ -7,7 +7,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
7
7
|
variant?: "default" | "filled" | "light" | "outline" | "subtle" | "transparent" | "ghost" | "constrast" | undefined;
|
|
8
8
|
color?: "primary" | "secondary" | "tertiary" | "error" | undefined;
|
|
9
9
|
animate?: boolean | undefined;
|
|
10
|
-
rounded?: "
|
|
10
|
+
rounded?: "none" | "sm" | "md" | "lg" | "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;
|
|
@@ -24,7 +26,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
24
26
|
variant?: "default" | "filled" | "light" | "outline" | "subtle" | "transparent" | "ghost" | "constrast" | undefined;
|
|
25
27
|
color?: "primary" | "secondary" | "tertiary" | "error" | undefined;
|
|
26
28
|
animate?: boolean | undefined;
|
|
27
|
-
rounded?: "
|
|
29
|
+
rounded?: "none" | "sm" | "md" | "lg" | "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
|
}>>>, {
|
|
40
|
+
type: "button" | "submit" | "reset";
|
|
36
41
|
is: string | globalThis.Component;
|
|
37
42
|
size: "sm" | "md" | "lg";
|
|
38
|
-
type: "button" | "submit" | "reset";
|
|
39
43
|
icon: boolean;
|
|
40
44
|
pressEffect: "translate" | "scale";
|
|
41
|
-
rounded: "
|
|
45
|
+
rounded: "none" | "sm" | "md" | "lg" | "full";
|
|
46
|
+
disabled: boolean;
|
|
42
47
|
}, {}>, {
|
|
43
48
|
leftSection?(_: {}): any;
|
|
44
49
|
default?(_: {}): any;
|
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2
|
-
drop: (files: File[] | null) => void;
|
|
3
|
-
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{}>> & {
|
|
4
|
-
onDrop?: ((files: File[] | null) => any) | undefined;
|
|
5
|
-
}, {}, {}>, {
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{}>>, {}, {}>, {
|
|
6
2
|
default?(_: {}): any;
|
|
7
3
|
}>;
|
|
8
4
|
export default _default;
|
|
@@ -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" | "filled" | "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" | "filled" | "transparent" | undefined;
|
|
16
|
+
withBorder?: boolean | undefined;
|
|
17
|
+
}>, {
|
|
18
|
+
position: string;
|
|
19
|
+
variant: string;
|
|
20
|
+
withBorder: boolean;
|
|
21
|
+
}>>>, {
|
|
22
|
+
variant: "default" | "filled" | "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
|
}>;
|
|
@@ -1,15 +1,19 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
title?: string | undefined;
|
|
3
3
|
message?: string | undefined;
|
|
4
4
|
icon?: string | undefined;
|
|
5
5
|
loading?: boolean | undefined;
|
|
6
6
|
withBorder?: boolean | undefined;
|
|
7
7
|
closeable?: boolean | undefined;
|
|
8
|
+
rounded?: string | number | undefined;
|
|
9
|
+
block?: boolean | undefined;
|
|
8
10
|
color?: "primary" | "secondary" | "tertiary" | "error" | undefined;
|
|
9
11
|
}>, {
|
|
10
12
|
type: string;
|
|
11
13
|
border: boolean;
|
|
12
14
|
color: string;
|
|
15
|
+
rounded: string;
|
|
16
|
+
block: boolean;
|
|
13
17
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
18
|
close: (...args: any[]) => void;
|
|
15
19
|
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
@@ -19,16 +23,24 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
19
23
|
loading?: boolean | undefined;
|
|
20
24
|
withBorder?: boolean | undefined;
|
|
21
25
|
closeable?: boolean | undefined;
|
|
26
|
+
rounded?: string | number | undefined;
|
|
27
|
+
block?: boolean | undefined;
|
|
22
28
|
color?: "primary" | "secondary" | "tertiary" | "error" | undefined;
|
|
23
29
|
}>, {
|
|
24
30
|
type: string;
|
|
25
31
|
border: boolean;
|
|
26
32
|
color: string;
|
|
33
|
+
rounded: string;
|
|
34
|
+
block: boolean;
|
|
27
35
|
}>>> & {
|
|
28
36
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
29
37
|
}, {
|
|
30
|
-
color:
|
|
31
|
-
|
|
38
|
+
color: "primary" | "secondary" | "tertiary" | "error";
|
|
39
|
+
rounded: string | number;
|
|
40
|
+
block: boolean;
|
|
41
|
+
}, {}>, {
|
|
42
|
+
message?(_: {}): any;
|
|
43
|
+
}>;
|
|
32
44
|
export default _default;
|
|
33
45
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
34
46
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -47,3 +59,8 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
47
59
|
type __VLS_Prettify<T> = {
|
|
48
60
|
[K in keyof T]: T[K];
|
|
49
61
|
} & {};
|
|
62
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
63
|
+
new (): {
|
|
64
|
+
$slots: S;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
@@ -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
|
+
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
value?: number | undefined;
|
|
3
|
-
max?: number | undefined;
|
|
4
|
-
min?: number | undefined;
|
|
2
|
+
value?: string | number | undefined;
|
|
3
|
+
max?: string | number | undefined;
|
|
4
|
+
min?: string | number | undefined;
|
|
5
5
|
size?: "sm" | "md" | "lg" | undefined;
|
|
6
6
|
color?: string | undefined;
|
|
7
7
|
rounded?: string | number | undefined;
|
|
@@ -15,9 +15,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
15
15
|
rounded: string;
|
|
16
16
|
loading: boolean;
|
|
17
17
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
18
|
-
value?: number | undefined;
|
|
19
|
-
max?: number | undefined;
|
|
20
|
-
min?: number | undefined;
|
|
18
|
+
value?: string | number | undefined;
|
|
19
|
+
max?: string | number | undefined;
|
|
20
|
+
min?: string | number | undefined;
|
|
21
21
|
size?: "sm" | "md" | "lg" | undefined;
|
|
22
22
|
color?: string | undefined;
|
|
23
23
|
rounded?: string | number | undefined;
|
|
@@ -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
|
-
|
|
39
|
-
max: number;
|
|
40
|
-
|
|
38
|
+
value: number | string;
|
|
39
|
+
max: number | string;
|
|
40
|
+
min: number | string;
|
|
41
41
|
}, {}>;
|
|
42
42
|
export default _default;
|
|
43
43
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|