@code-coaching/vuetiful 0.37.1 → 0.41.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/vuetiful.es.mjs +2660 -2583
- package/dist/vuetiful.umd.cjs +35 -10
- package/package.json +1 -1
- package/dist/types/components/atoms/VAvatar.vue.d.ts +0 -45
- package/dist/types/components/atoms/VBadge.vue.d.ts +0 -36
- package/dist/types/components/atoms/VButton.vue.d.ts +0 -48
- package/dist/types/components/atoms/VChip.vue.d.ts +0 -35
- package/dist/types/components/atoms/VPopover.vue.d.ts +0 -51
- package/dist/types/components/atoms/VRadio/VRadioDescription.vue.d.ts +0 -9
- package/dist/types/components/atoms/VRadio/VRadioGroup.vue.d.ts +0 -59
- package/dist/types/components/atoms/VRadio/VRadioItem.vue.d.ts +0 -51
- package/dist/types/components/atoms/VRadio/VRadioLabel.vue.d.ts +0 -9
- package/dist/types/components/atoms/VSwitch/VSwitch.vue.d.ts +0 -58
- package/dist/types/components/atoms/VSwitch/VSwitchDescription.vue.d.ts +0 -35
- package/dist/types/components/atoms/VSwitch/VSwitchGroup.vue.d.ts +0 -35
- package/dist/types/components/atoms/VSwitch/VSwitchLabel.vue.d.ts +0 -36
- package/dist/types/components/atoms/index.d.ts +0 -14
- package/dist/types/components/index.d.ts +0 -2
- package/dist/types/components/molecules/VAccordion/VAccordion.vue.d.ts +0 -43
- package/dist/types/components/molecules/VAccordion/VAccordionItem.vue.d.ts +0 -38
- package/dist/types/components/molecules/VAlert.vue.d.ts +0 -57
- package/dist/types/components/molecules/VCard/VCard.vue.d.ts +0 -41
- package/dist/types/components/molecules/VCard/VCardBody.vue.d.ts +0 -35
- package/dist/types/components/molecules/VCard/VCardFooter.vue.d.ts +0 -39
- package/dist/types/components/molecules/VCard/VCardHeader.vue.d.ts +0 -39
- package/dist/types/components/molecules/VCodeBlock.vue.d.ts +0 -80
- package/dist/types/components/molecules/VDrawer.vue.d.ts +0 -47
- package/dist/types/components/molecules/VListbox/VListbox.vue.d.ts +0 -59
- package/dist/types/components/molecules/VListbox/VListboxButton.vue.d.ts +0 -24
- package/dist/types/components/molecules/VListbox/VListboxItem.vue.d.ts +0 -25
- package/dist/types/components/molecules/VListbox/VListboxItems.vue.d.ts +0 -21
- package/dist/types/components/molecules/VListbox/VListboxLabel.vue.d.ts +0 -9
- package/dist/types/components/molecules/VPreview.vue.d.ts +0 -60
- package/dist/types/components/molecules/VRail/VRail.vue.d.ts +0 -43
- package/dist/types/components/molecules/VRail/VRailTile.vue.d.ts +0 -75
- package/dist/types/components/molecules/VShell.vue.d.ts +0 -118
- package/dist/types/components/molecules/VShellConfigurator.vue.d.ts +0 -99
- package/dist/types/components/molecules/VTabs/VTab.vue.d.ts +0 -55
- package/dist/types/components/molecules/VTabs/VTabPanel.vue.d.ts +0 -9
- package/dist/types/components/molecules/VTabs/VTabs.vue.d.ts +0 -46
- package/dist/types/components/molecules/Vuetiful.vue.d.ts +0 -22
- package/dist/types/components/molecules/index.d.ts +0 -21
- package/dist/types/directives/click-outside-group.d.ts +0 -9
- package/dist/types/directives/click-outside.d.ts +0 -9
- package/dist/types/directives/clipboard.d.ts +0 -3
- package/dist/types/directives/index.d.ts +0 -4
- package/dist/types/index.d.ts +0 -5
- package/dist/types/props/index.d.ts +0 -1
- package/dist/types/props/props.d.ts +0 -1
- package/dist/types/services/drawer.service.d.ts +0 -23
- package/dist/types/services/highlight.service.d.ts +0 -4
- package/dist/types/services/index.d.ts +0 -6
- package/dist/types/services/rail.service.d.ts +0 -4
- package/dist/types/services/settings.service.d.ts +0 -132
- package/dist/types/utils/id-generator.d.ts +0 -1
- package/dist/types/utils/index.d.ts +0 -9
- package/dist/types/utils/platform/platform.service.d.ts +0 -4
- package/dist/types/utils/tailwind-merge.d.ts +0 -3
- package/dist/types/utils/theme/VLightSwitch.vue.d.ts +0 -16
- package/dist/types/utils/theme/VThemeSwitch.vue.d.ts +0 -40
- package/dist/types/utils/theme/dark-mode.service.d.ts +0 -19
- package/dist/types/utils/theme/rocket.theme.d.ts +0 -223
- package/dist/types/utils/theme/theme.service.d.ts +0 -14
- package/dist/types/utils/theme/themes.d.ts +0 -3
- package/dist/types/utils/theme/vuetiful.theme.d.ts +0 -224
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
interface AlertProps {
|
|
2
|
-
class?: string;
|
|
3
|
-
classPre?: string;
|
|
4
|
-
classMessage?: string;
|
|
5
|
-
classClose?: string;
|
|
6
|
-
hideIcon?: boolean;
|
|
7
|
-
showClose?: boolean;
|
|
8
|
-
show?: boolean;
|
|
9
|
-
type?: 'info' | 'success' | 'warning' | 'error' | '';
|
|
10
|
-
}
|
|
11
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<AlertProps>, {
|
|
12
|
-
hideIcon: boolean;
|
|
13
|
-
showClose: boolean;
|
|
14
|
-
show: boolean;
|
|
15
|
-
type: string;
|
|
16
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
|
-
close: (...args: any[]) => void;
|
|
18
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<AlertProps>, {
|
|
19
|
-
hideIcon: boolean;
|
|
20
|
-
showClose: boolean;
|
|
21
|
-
show: boolean;
|
|
22
|
-
type: string;
|
|
23
|
-
}>>> & {
|
|
24
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
25
|
-
}, {
|
|
26
|
-
type: "" | "error" | "info" | "success" | "warning";
|
|
27
|
-
show: boolean;
|
|
28
|
-
hideIcon: boolean;
|
|
29
|
-
showClose: boolean;
|
|
30
|
-
}, {}>, {
|
|
31
|
-
pre?(_: {}): any;
|
|
32
|
-
default?(_: {}): any;
|
|
33
|
-
actions?(_: {}): any;
|
|
34
|
-
}>;
|
|
35
|
-
export default _default;
|
|
36
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
37
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
38
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
39
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
40
|
-
} : {
|
|
41
|
-
type: import('vue').PropType<T[K]>;
|
|
42
|
-
required: true;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
type __VLS_WithDefaults<P, D> = {
|
|
46
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
47
|
-
default: D[K];
|
|
48
|
-
}> : P[K];
|
|
49
|
-
};
|
|
50
|
-
type __VLS_Prettify<T> = {
|
|
51
|
-
[K in keyof T]: T[K];
|
|
52
|
-
} & {};
|
|
53
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
54
|
-
new (): {
|
|
55
|
-
$slots: S;
|
|
56
|
-
};
|
|
57
|
-
};
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
interface CardProps {
|
|
2
|
-
class?: string;
|
|
3
|
-
hideSeparator?: boolean;
|
|
4
|
-
clickable?: boolean;
|
|
5
|
-
}
|
|
6
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CardProps>, {
|
|
7
|
-
class: string;
|
|
8
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
-
click: (...args: any[]) => void;
|
|
10
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CardProps>, {
|
|
11
|
-
class: string;
|
|
12
|
-
}>>> & {
|
|
13
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
14
|
-
}, {
|
|
15
|
-
class: string;
|
|
16
|
-
}, {}>, {
|
|
17
|
-
default?(_: {}): any;
|
|
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
|
-
} & {};
|
|
37
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
38
|
-
new (): {
|
|
39
|
-
$slots: S;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
interface CardBodyProps {
|
|
2
|
-
class?: string;
|
|
3
|
-
}
|
|
4
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CardBodyProps>, {
|
|
5
|
-
class: string;
|
|
6
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CardBodyProps>, {
|
|
7
|
-
class: string;
|
|
8
|
-
}>>>, {
|
|
9
|
-
class: string;
|
|
10
|
-
}, {}>, {
|
|
11
|
-
default?(_: {}): any;
|
|
12
|
-
}>;
|
|
13
|
-
export default _default;
|
|
14
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
15
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
16
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
17
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
18
|
-
} : {
|
|
19
|
-
type: import('vue').PropType<T[K]>;
|
|
20
|
-
required: true;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
type __VLS_WithDefaults<P, D> = {
|
|
24
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
25
|
-
default: D[K];
|
|
26
|
-
}> : P[K];
|
|
27
|
-
};
|
|
28
|
-
type __VLS_Prettify<T> = {
|
|
29
|
-
[K in keyof T]: T[K];
|
|
30
|
-
} & {};
|
|
31
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
32
|
-
new (): {
|
|
33
|
-
$slots: S;
|
|
34
|
-
};
|
|
35
|
-
};
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
interface CardFooterProps {
|
|
2
|
-
class?: string;
|
|
3
|
-
classSeparator?: string;
|
|
4
|
-
}
|
|
5
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CardFooterProps>, {
|
|
6
|
-
class: string;
|
|
7
|
-
classSeparator: string;
|
|
8
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CardFooterProps>, {
|
|
9
|
-
class: string;
|
|
10
|
-
classSeparator: string;
|
|
11
|
-
}>>>, {
|
|
12
|
-
class: string;
|
|
13
|
-
classSeparator: string;
|
|
14
|
-
}, {}>, {
|
|
15
|
-
default?(_: {}): any;
|
|
16
|
-
}>;
|
|
17
|
-
export default _default;
|
|
18
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
19
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
20
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
21
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
22
|
-
} : {
|
|
23
|
-
type: import('vue').PropType<T[K]>;
|
|
24
|
-
required: true;
|
|
25
|
-
};
|
|
26
|
-
};
|
|
27
|
-
type __VLS_WithDefaults<P, D> = {
|
|
28
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
29
|
-
default: D[K];
|
|
30
|
-
}> : P[K];
|
|
31
|
-
};
|
|
32
|
-
type __VLS_Prettify<T> = {
|
|
33
|
-
[K in keyof T]: T[K];
|
|
34
|
-
} & {};
|
|
35
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
36
|
-
new (): {
|
|
37
|
-
$slots: S;
|
|
38
|
-
};
|
|
39
|
-
};
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
interface CardHeaderProps {
|
|
2
|
-
class?: string;
|
|
3
|
-
classSeparator?: string;
|
|
4
|
-
}
|
|
5
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CardHeaderProps>, {
|
|
6
|
-
class: string;
|
|
7
|
-
classSeparator: string;
|
|
8
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CardHeaderProps>, {
|
|
9
|
-
class: string;
|
|
10
|
-
classSeparator: string;
|
|
11
|
-
}>>>, {
|
|
12
|
-
class: string;
|
|
13
|
-
classSeparator: string;
|
|
14
|
-
}, {}>, {
|
|
15
|
-
default?(_: {}): any;
|
|
16
|
-
}>;
|
|
17
|
-
export default _default;
|
|
18
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
19
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
20
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
21
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
22
|
-
} : {
|
|
23
|
-
type: import('vue').PropType<T[K]>;
|
|
24
|
-
required: true;
|
|
25
|
-
};
|
|
26
|
-
};
|
|
27
|
-
type __VLS_WithDefaults<P, D> = {
|
|
28
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
29
|
-
default: D[K];
|
|
30
|
-
}> : P[K];
|
|
31
|
-
};
|
|
32
|
-
type __VLS_Prettify<T> = {
|
|
33
|
-
[K in keyof T]: T[K];
|
|
34
|
-
} & {};
|
|
35
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
36
|
-
new (): {
|
|
37
|
-
$slots: S;
|
|
38
|
-
};
|
|
39
|
-
};
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
interface CodeBlockProps {
|
|
2
|
-
class?: string;
|
|
3
|
-
language?: string;
|
|
4
|
-
code: string;
|
|
5
|
-
fileName?: string;
|
|
6
|
-
preventOverflow?: boolean;
|
|
7
|
-
classHeader?: string;
|
|
8
|
-
classLanguage?: string;
|
|
9
|
-
classPre?: string;
|
|
10
|
-
classCode?: string;
|
|
11
|
-
classFileName?: string;
|
|
12
|
-
classButton?: string;
|
|
13
|
-
buttonText?: string;
|
|
14
|
-
buttonCopiedText?: string;
|
|
15
|
-
}
|
|
16
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CodeBlockProps>, {
|
|
17
|
-
class: string;
|
|
18
|
-
language: string;
|
|
19
|
-
code: string;
|
|
20
|
-
fileName: string;
|
|
21
|
-
preventOverflow: boolean;
|
|
22
|
-
classHeader: string;
|
|
23
|
-
classLanguage: string;
|
|
24
|
-
classPre: string;
|
|
25
|
-
classCode: string;
|
|
26
|
-
classFileName: string;
|
|
27
|
-
classButton: string;
|
|
28
|
-
buttonText: string;
|
|
29
|
-
buttonCopiedText: string;
|
|
30
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
31
|
-
copy: () => void;
|
|
32
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CodeBlockProps>, {
|
|
33
|
-
class: string;
|
|
34
|
-
language: string;
|
|
35
|
-
code: string;
|
|
36
|
-
fileName: string;
|
|
37
|
-
preventOverflow: boolean;
|
|
38
|
-
classHeader: string;
|
|
39
|
-
classLanguage: string;
|
|
40
|
-
classPre: string;
|
|
41
|
-
classCode: string;
|
|
42
|
-
classFileName: string;
|
|
43
|
-
classButton: string;
|
|
44
|
-
buttonText: string;
|
|
45
|
-
buttonCopiedText: string;
|
|
46
|
-
}>>> & {
|
|
47
|
-
onCopy?: (() => any) | undefined;
|
|
48
|
-
}, {
|
|
49
|
-
class: string;
|
|
50
|
-
code: string;
|
|
51
|
-
classHeader: string;
|
|
52
|
-
classButton: string;
|
|
53
|
-
classPre: string;
|
|
54
|
-
language: string;
|
|
55
|
-
fileName: string;
|
|
56
|
-
preventOverflow: boolean;
|
|
57
|
-
classLanguage: string;
|
|
58
|
-
classCode: string;
|
|
59
|
-
classFileName: string;
|
|
60
|
-
buttonText: string;
|
|
61
|
-
buttonCopiedText: string;
|
|
62
|
-
}, {}>;
|
|
63
|
-
export default _default;
|
|
64
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
65
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
66
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
67
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
68
|
-
} : {
|
|
69
|
-
type: import('vue').PropType<T[K]>;
|
|
70
|
-
required: true;
|
|
71
|
-
};
|
|
72
|
-
};
|
|
73
|
-
type __VLS_WithDefaults<P, D> = {
|
|
74
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
75
|
-
default: D[K];
|
|
76
|
-
}> : P[K];
|
|
77
|
-
};
|
|
78
|
-
type __VLS_Prettify<T> = {
|
|
79
|
-
[K in keyof T]: T[K];
|
|
80
|
-
} & {};
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
interface DrawerProps {
|
|
2
|
-
classBackdrop?: string;
|
|
3
|
-
classDrawer?: string;
|
|
4
|
-
labelledby?: string;
|
|
5
|
-
describedby?: string;
|
|
6
|
-
}
|
|
7
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<DrawerProps>, {
|
|
8
|
-
classBackdrop: string;
|
|
9
|
-
classDrawer: string;
|
|
10
|
-
labelledby: string;
|
|
11
|
-
describedby: string;
|
|
12
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<DrawerProps>, {
|
|
13
|
-
classBackdrop: string;
|
|
14
|
-
classDrawer: string;
|
|
15
|
-
labelledby: string;
|
|
16
|
-
describedby: string;
|
|
17
|
-
}>>>, {
|
|
18
|
-
classBackdrop: string;
|
|
19
|
-
classDrawer: string;
|
|
20
|
-
labelledby: string;
|
|
21
|
-
describedby: string;
|
|
22
|
-
}, {}>, {
|
|
23
|
-
default?(_: {}): any;
|
|
24
|
-
}>;
|
|
25
|
-
export default _default;
|
|
26
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
27
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
28
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
29
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
30
|
-
} : {
|
|
31
|
-
type: import('vue').PropType<T[K]>;
|
|
32
|
-
required: true;
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
type __VLS_WithDefaults<P, D> = {
|
|
36
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
37
|
-
default: D[K];
|
|
38
|
-
}> : P[K];
|
|
39
|
-
};
|
|
40
|
-
type __VLS_Prettify<T> = {
|
|
41
|
-
[K in keyof T]: T[K];
|
|
42
|
-
} & {};
|
|
43
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
44
|
-
new (): {
|
|
45
|
-
$slots: S;
|
|
46
|
-
};
|
|
47
|
-
};
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
interface ListboxProps {
|
|
2
|
-
class?: string;
|
|
3
|
-
classLabel?: string;
|
|
4
|
-
classButton?: string;
|
|
5
|
-
classItem?: string;
|
|
6
|
-
classItemActive?: string;
|
|
7
|
-
classItemHover?: string;
|
|
8
|
-
classItemDisabled?: string;
|
|
9
|
-
classItems?: string;
|
|
10
|
-
modelValue?: any;
|
|
11
|
-
by?: string;
|
|
12
|
-
display?: string;
|
|
13
|
-
textLabel?: string;
|
|
14
|
-
textButton?: string;
|
|
15
|
-
horizontal?: boolean;
|
|
16
|
-
multiple?: boolean;
|
|
17
|
-
}
|
|
18
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ListboxProps>, {
|
|
19
|
-
classItemActive: string;
|
|
20
|
-
classItemHover: string;
|
|
21
|
-
textButton: string;
|
|
22
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
|
-
"update:modelValue": (...args: any[]) => void;
|
|
24
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ListboxProps>, {
|
|
25
|
-
classItemActive: string;
|
|
26
|
-
classItemHover: string;
|
|
27
|
-
textButton: string;
|
|
28
|
-
}>>> & {
|
|
29
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
30
|
-
}, {
|
|
31
|
-
classItemActive: string;
|
|
32
|
-
classItemHover: string;
|
|
33
|
-
textButton: string;
|
|
34
|
-
}, {}>, {
|
|
35
|
-
default?(_: {}): any;
|
|
36
|
-
}>;
|
|
37
|
-
export default _default;
|
|
38
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
39
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
40
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
41
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
42
|
-
} : {
|
|
43
|
-
type: import('vue').PropType<T[K]>;
|
|
44
|
-
required: true;
|
|
45
|
-
};
|
|
46
|
-
};
|
|
47
|
-
type __VLS_WithDefaults<P, D> = {
|
|
48
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
49
|
-
default: D[K];
|
|
50
|
-
}> : P[K];
|
|
51
|
-
};
|
|
52
|
-
type __VLS_Prettify<T> = {
|
|
53
|
-
[K in keyof T]: T[K];
|
|
54
|
-
} & {};
|
|
55
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
56
|
-
new (): {
|
|
57
|
-
$slots: S;
|
|
58
|
-
};
|
|
59
|
-
};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
interface ListboxButtonProps {
|
|
2
|
-
class?: string;
|
|
3
|
-
hideIcon?: boolean;
|
|
4
|
-
}
|
|
5
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<ListboxButtonProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ListboxButtonProps>>>, {}, {}>, {
|
|
6
|
-
default?(_: {}): any;
|
|
7
|
-
"open-icon"?(_: {}): any;
|
|
8
|
-
"close-icon"?(_: {}): any;
|
|
9
|
-
}>;
|
|
10
|
-
export default _default;
|
|
11
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
12
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
13
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
14
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
15
|
-
} : {
|
|
16
|
-
type: import('vue').PropType<T[K]>;
|
|
17
|
-
required: true;
|
|
18
|
-
};
|
|
19
|
-
};
|
|
20
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
21
|
-
new (): {
|
|
22
|
-
$slots: S;
|
|
23
|
-
};
|
|
24
|
-
};
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
interface ListboxItemProps {
|
|
2
|
-
class?: string;
|
|
3
|
-
classActive?: string;
|
|
4
|
-
classHover?: string;
|
|
5
|
-
classDisabled?: string;
|
|
6
|
-
value: string | number | boolean | object;
|
|
7
|
-
}
|
|
8
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<ListboxItemProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ListboxItemProps>>>, {}, {}>, {
|
|
9
|
-
default?(_: {}): any;
|
|
10
|
-
}>;
|
|
11
|
-
export default _default;
|
|
12
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
13
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
14
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
15
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
16
|
-
} : {
|
|
17
|
-
type: import('vue').PropType<T[K]>;
|
|
18
|
-
required: true;
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
22
|
-
new (): {
|
|
23
|
-
$slots: S;
|
|
24
|
-
};
|
|
25
|
-
};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
interface ListboxItemsProps {
|
|
2
|
-
class?: string;
|
|
3
|
-
}
|
|
4
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<ListboxItemsProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ListboxItemsProps>>>, {}, {}>, {
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
}>;
|
|
7
|
-
export default _default;
|
|
8
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
9
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
10
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
11
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
12
|
-
} : {
|
|
13
|
-
type: import('vue').PropType<T[K]>;
|
|
14
|
-
required: true;
|
|
15
|
-
};
|
|
16
|
-
};
|
|
17
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
18
|
-
new (): {
|
|
19
|
-
$slots: S;
|
|
20
|
-
};
|
|
21
|
-
};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
|
|
2
|
-
default?(_: {}): any;
|
|
3
|
-
}>;
|
|
4
|
-
export default _default;
|
|
5
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
6
|
-
new (): {
|
|
7
|
-
$slots: S;
|
|
8
|
-
};
|
|
9
|
-
};
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
interface PreviewProps {
|
|
2
|
-
class?: string;
|
|
3
|
-
classHeader?: string;
|
|
4
|
-
classRadioGroupWrapper?: string;
|
|
5
|
-
classPreviewTab?: string;
|
|
6
|
-
classPreviewTabArea?: string;
|
|
7
|
-
classPreviewAreaMobile?: string;
|
|
8
|
-
classPreviewAreaDesktop?: string;
|
|
9
|
-
classPreviewTabFooter?: string;
|
|
10
|
-
classPreviewTabSource?: string;
|
|
11
|
-
classSwatchToggle?: string;
|
|
12
|
-
classSwatchToggleActive?: string;
|
|
13
|
-
classSwatchToggleInactive?: string;
|
|
14
|
-
classSwatches?: string;
|
|
15
|
-
classSwatch?: string;
|
|
16
|
-
hideMobileToggle?: boolean;
|
|
17
|
-
hideSwatches?: boolean;
|
|
18
|
-
background?: string;
|
|
19
|
-
}
|
|
20
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PreviewProps>, {
|
|
21
|
-
background: string;
|
|
22
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PreviewProps>, {
|
|
23
|
-
background: string;
|
|
24
|
-
}>>>, {
|
|
25
|
-
background: string;
|
|
26
|
-
}, {}>, {
|
|
27
|
-
"preview-item"?(_: {}): any;
|
|
28
|
-
"code-item"?(_: {}): any;
|
|
29
|
-
"mobile-item"?(_: {}): any;
|
|
30
|
-
"desktop-item"?(_: {}): any;
|
|
31
|
-
"swatchbook-item"?(_: {}): any;
|
|
32
|
-
"cancel-item"?(_: {}): any;
|
|
33
|
-
"selected-item"?(_: {}): any;
|
|
34
|
-
preview?(_: {}): any;
|
|
35
|
-
footer?(_: {}): any;
|
|
36
|
-
source?(_: {}): any;
|
|
37
|
-
}>;
|
|
38
|
-
export default _default;
|
|
39
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
40
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
41
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
42
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
43
|
-
} : {
|
|
44
|
-
type: import('vue').PropType<T[K]>;
|
|
45
|
-
required: true;
|
|
46
|
-
};
|
|
47
|
-
};
|
|
48
|
-
type __VLS_WithDefaults<P, D> = {
|
|
49
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
50
|
-
default: D[K];
|
|
51
|
-
}> : P[K];
|
|
52
|
-
};
|
|
53
|
-
type __VLS_Prettify<T> = {
|
|
54
|
-
[K in keyof T]: T[K];
|
|
55
|
-
} & {};
|
|
56
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
57
|
-
new (): {
|
|
58
|
-
$slots: S;
|
|
59
|
-
};
|
|
60
|
-
};
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
interface RailProps {
|
|
2
|
-
class?: string;
|
|
3
|
-
classItemActive?: string;
|
|
4
|
-
classItemHover?: string;
|
|
5
|
-
}
|
|
6
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<RailProps>, {
|
|
7
|
-
class: string;
|
|
8
|
-
classItemActive: string;
|
|
9
|
-
classItemHover: string;
|
|
10
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<RailProps>, {
|
|
11
|
-
class: string;
|
|
12
|
-
classItemActive: string;
|
|
13
|
-
classItemHover: string;
|
|
14
|
-
}>>>, {
|
|
15
|
-
class: string;
|
|
16
|
-
classItemActive: string;
|
|
17
|
-
classItemHover: string;
|
|
18
|
-
}, {}>, {
|
|
19
|
-
default?(_: {}): any;
|
|
20
|
-
}>;
|
|
21
|
-
export default _default;
|
|
22
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
23
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
24
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
25
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
26
|
-
} : {
|
|
27
|
-
type: import('vue').PropType<T[K]>;
|
|
28
|
-
required: true;
|
|
29
|
-
};
|
|
30
|
-
};
|
|
31
|
-
type __VLS_WithDefaults<P, D> = {
|
|
32
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
33
|
-
default: D[K];
|
|
34
|
-
}> : P[K];
|
|
35
|
-
};
|
|
36
|
-
type __VLS_Prettify<T> = {
|
|
37
|
-
[K in keyof T]: T[K];
|
|
38
|
-
} & {};
|
|
39
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
40
|
-
new (): {
|
|
41
|
-
$slots: S;
|
|
42
|
-
};
|
|
43
|
-
};
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
-
class: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
classIcon: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
classLabel: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
default: string;
|
|
13
|
-
};
|
|
14
|
-
classActive: {
|
|
15
|
-
type: () => string;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
classHover: {
|
|
19
|
-
type: () => string;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
value: {
|
|
23
|
-
type: StringConstructor;
|
|
24
|
-
default: string;
|
|
25
|
-
};
|
|
26
|
-
label: {
|
|
27
|
-
type: () => string;
|
|
28
|
-
default: string;
|
|
29
|
-
};
|
|
30
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
-
class: {
|
|
32
|
-
type: StringConstructor;
|
|
33
|
-
default: string;
|
|
34
|
-
};
|
|
35
|
-
classIcon: {
|
|
36
|
-
type: StringConstructor;
|
|
37
|
-
default: string;
|
|
38
|
-
};
|
|
39
|
-
classLabel: {
|
|
40
|
-
type: StringConstructor;
|
|
41
|
-
default: string;
|
|
42
|
-
};
|
|
43
|
-
classActive: {
|
|
44
|
-
type: () => string;
|
|
45
|
-
default: string;
|
|
46
|
-
};
|
|
47
|
-
classHover: {
|
|
48
|
-
type: () => string;
|
|
49
|
-
default: string;
|
|
50
|
-
};
|
|
51
|
-
value: {
|
|
52
|
-
type: StringConstructor;
|
|
53
|
-
default: string;
|
|
54
|
-
};
|
|
55
|
-
label: {
|
|
56
|
-
type: () => string;
|
|
57
|
-
default: string;
|
|
58
|
-
};
|
|
59
|
-
}>>, {
|
|
60
|
-
class: string;
|
|
61
|
-
label: string;
|
|
62
|
-
value: string;
|
|
63
|
-
classIcon: string;
|
|
64
|
-
classActive: string;
|
|
65
|
-
classHover: string;
|
|
66
|
-
classLabel: string;
|
|
67
|
-
}, {}>, {
|
|
68
|
-
default?(_: {}): any;
|
|
69
|
-
}>;
|
|
70
|
-
export default _default;
|
|
71
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
72
|
-
new (): {
|
|
73
|
-
$slots: S;
|
|
74
|
-
};
|
|
75
|
-
};
|