@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,118 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @slot fixedHeader - Insert fixed header content, such as Skeleton's App Bar component.
|
|
3
|
-
* @slot sidebarLeft - Hidden when empty. Allows you to set fixed left sidebar content.
|
|
4
|
-
* @slot sidebarRight - Hidden when empty. Allows you to set fixed right sidebar content.
|
|
5
|
-
* @slot pageHeader - Insert content that resides above your page content. Great for global alerts.
|
|
6
|
-
* @slot pageFooter - Insert content that resides below your page content. Recommended for most layouts.
|
|
7
|
-
* @slot fixedFooter - Insert fixed footer content. Not recommended for most layouts.
|
|
8
|
-
*/
|
|
9
|
-
export type CssClasses = string;
|
|
10
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
11
|
-
fixedHeaderHeight: {
|
|
12
|
-
type: StringConstructor;
|
|
13
|
-
default: string;
|
|
14
|
-
};
|
|
15
|
-
fixedFooterHeight: {
|
|
16
|
-
type: StringConstructor;
|
|
17
|
-
default: string;
|
|
18
|
-
};
|
|
19
|
-
class: {
|
|
20
|
-
type: StringConstructor;
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
|
-
classFixedHeader: {
|
|
24
|
-
type: StringConstructor;
|
|
25
|
-
default: string;
|
|
26
|
-
};
|
|
27
|
-
classPageContainer: {
|
|
28
|
-
type: StringConstructor;
|
|
29
|
-
default: string;
|
|
30
|
-
};
|
|
31
|
-
classPageSidebarLeft: {
|
|
32
|
-
type: StringConstructor;
|
|
33
|
-
default: string;
|
|
34
|
-
};
|
|
35
|
-
classPageSidebarRight: {
|
|
36
|
-
type: StringConstructor;
|
|
37
|
-
default: string;
|
|
38
|
-
};
|
|
39
|
-
classPageHeader: {
|
|
40
|
-
type: StringConstructor;
|
|
41
|
-
default: string;
|
|
42
|
-
};
|
|
43
|
-
classPageContent: {
|
|
44
|
-
type: StringConstructor;
|
|
45
|
-
default: string;
|
|
46
|
-
};
|
|
47
|
-
classPageFooter: {
|
|
48
|
-
type: StringConstructor;
|
|
49
|
-
default: string;
|
|
50
|
-
};
|
|
51
|
-
classFixedFooter: {
|
|
52
|
-
type: StringConstructor;
|
|
53
|
-
default: string;
|
|
54
|
-
};
|
|
55
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
56
|
-
fixedHeaderHeight: {
|
|
57
|
-
type: StringConstructor;
|
|
58
|
-
default: string;
|
|
59
|
-
};
|
|
60
|
-
fixedFooterHeight: {
|
|
61
|
-
type: StringConstructor;
|
|
62
|
-
default: string;
|
|
63
|
-
};
|
|
64
|
-
class: {
|
|
65
|
-
type: StringConstructor;
|
|
66
|
-
default: string;
|
|
67
|
-
};
|
|
68
|
-
classFixedHeader: {
|
|
69
|
-
type: StringConstructor;
|
|
70
|
-
default: string;
|
|
71
|
-
};
|
|
72
|
-
classPageContainer: {
|
|
73
|
-
type: StringConstructor;
|
|
74
|
-
default: string;
|
|
75
|
-
};
|
|
76
|
-
classPageSidebarLeft: {
|
|
77
|
-
type: StringConstructor;
|
|
78
|
-
default: string;
|
|
79
|
-
};
|
|
80
|
-
classPageSidebarRight: {
|
|
81
|
-
type: StringConstructor;
|
|
82
|
-
default: string;
|
|
83
|
-
};
|
|
84
|
-
classPageHeader: {
|
|
85
|
-
type: StringConstructor;
|
|
86
|
-
default: string;
|
|
87
|
-
};
|
|
88
|
-
classPageContent: {
|
|
89
|
-
type: StringConstructor;
|
|
90
|
-
default: string;
|
|
91
|
-
};
|
|
92
|
-
classPageFooter: {
|
|
93
|
-
type: StringConstructor;
|
|
94
|
-
default: string;
|
|
95
|
-
};
|
|
96
|
-
classFixedFooter: {
|
|
97
|
-
type: StringConstructor;
|
|
98
|
-
default: string;
|
|
99
|
-
};
|
|
100
|
-
}>>, {
|
|
101
|
-
class: string;
|
|
102
|
-
fixedHeaderHeight: string;
|
|
103
|
-
fixedFooterHeight: string;
|
|
104
|
-
classFixedHeader: string;
|
|
105
|
-
classPageContainer: string;
|
|
106
|
-
classPageSidebarLeft: string;
|
|
107
|
-
classPageSidebarRight: string;
|
|
108
|
-
classPageHeader: string;
|
|
109
|
-
classPageContent: string;
|
|
110
|
-
classPageFooter: string;
|
|
111
|
-
classFixedFooter: string;
|
|
112
|
-
}, {}>, Readonly<Record<string, any>> & Record<string, any>>;
|
|
113
|
-
export default _default;
|
|
114
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
115
|
-
new (): {
|
|
116
|
-
$slots: S;
|
|
117
|
-
};
|
|
118
|
-
};
|
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @slot fixedHeader - Insert fixed header content, such as Skeleton's App Bar component.
|
|
3
|
-
* @slot sidebarLeft - Hidden when empty. Allows you to set fixed left sidebar content.
|
|
4
|
-
* @slot sidebarRight - Hidden when empty. Allows you to set fixed right sidebar content.
|
|
5
|
-
* @slot pageHeader - Insert content that resides above your page content. Great for global alerts.
|
|
6
|
-
* @slot pageFooter - Insert content that resides below your page content. Recommended for most layouts.
|
|
7
|
-
* @slot fixedFooter - Insert fixed footer content. Not recommended for most layouts.
|
|
8
|
-
*/
|
|
9
|
-
export type CssClasses = string;
|
|
10
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
11
|
-
regionPage: {
|
|
12
|
-
type: () => string;
|
|
13
|
-
default: string;
|
|
14
|
-
};
|
|
15
|
-
slotFixedHeader: {
|
|
16
|
-
type: () => string;
|
|
17
|
-
default: string;
|
|
18
|
-
};
|
|
19
|
-
slotSidebarLeft: {
|
|
20
|
-
type: () => string;
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
|
-
slotSidebarRight: {
|
|
24
|
-
type: () => string;
|
|
25
|
-
default: string;
|
|
26
|
-
};
|
|
27
|
-
slotPageHeader: {
|
|
28
|
-
type: () => string;
|
|
29
|
-
default: string;
|
|
30
|
-
};
|
|
31
|
-
slotPageContent: {
|
|
32
|
-
type: () => string;
|
|
33
|
-
default: string;
|
|
34
|
-
};
|
|
35
|
-
slotPageFooter: {
|
|
36
|
-
type: () => string;
|
|
37
|
-
default: string;
|
|
38
|
-
};
|
|
39
|
-
slotFixedFooter: {
|
|
40
|
-
type: () => string;
|
|
41
|
-
default: string;
|
|
42
|
-
};
|
|
43
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
|
-
regionPage: {
|
|
45
|
-
type: () => string;
|
|
46
|
-
default: string;
|
|
47
|
-
};
|
|
48
|
-
slotFixedHeader: {
|
|
49
|
-
type: () => string;
|
|
50
|
-
default: string;
|
|
51
|
-
};
|
|
52
|
-
slotSidebarLeft: {
|
|
53
|
-
type: () => string;
|
|
54
|
-
default: string;
|
|
55
|
-
};
|
|
56
|
-
slotSidebarRight: {
|
|
57
|
-
type: () => string;
|
|
58
|
-
default: string;
|
|
59
|
-
};
|
|
60
|
-
slotPageHeader: {
|
|
61
|
-
type: () => string;
|
|
62
|
-
default: string;
|
|
63
|
-
};
|
|
64
|
-
slotPageContent: {
|
|
65
|
-
type: () => string;
|
|
66
|
-
default: string;
|
|
67
|
-
};
|
|
68
|
-
slotPageFooter: {
|
|
69
|
-
type: () => string;
|
|
70
|
-
default: string;
|
|
71
|
-
};
|
|
72
|
-
slotFixedFooter: {
|
|
73
|
-
type: () => string;
|
|
74
|
-
default: string;
|
|
75
|
-
};
|
|
76
|
-
}>>, {
|
|
77
|
-
regionPage: string;
|
|
78
|
-
slotFixedHeader: string;
|
|
79
|
-
slotSidebarLeft: string;
|
|
80
|
-
slotSidebarRight: string;
|
|
81
|
-
slotPageHeader: string;
|
|
82
|
-
slotPageContent: string;
|
|
83
|
-
slotPageFooter: string;
|
|
84
|
-
slotFixedFooter: string;
|
|
85
|
-
}, {}>, {
|
|
86
|
-
fixedHeader?(_: {}): any;
|
|
87
|
-
sidebarLeft?(_: {}): any;
|
|
88
|
-
pageHeader?(_: {}): any;
|
|
89
|
-
default?(_: {}): any;
|
|
90
|
-
pageFooter?(_: {}): any;
|
|
91
|
-
sidebarRight?(_: {}): any;
|
|
92
|
-
fixedFooter?(_: {}): any;
|
|
93
|
-
}>;
|
|
94
|
-
export default _default;
|
|
95
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
96
|
-
new (): {
|
|
97
|
-
$slots: S;
|
|
98
|
-
};
|
|
99
|
-
};
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
interface TabProps {
|
|
2
|
-
class?: string;
|
|
3
|
-
classActive?: string;
|
|
4
|
-
classHover?: string;
|
|
5
|
-
classTab?: string;
|
|
6
|
-
classSeparator?: string;
|
|
7
|
-
disabled?: boolean;
|
|
8
|
-
}
|
|
9
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TabProps>, {
|
|
10
|
-
class: string;
|
|
11
|
-
classActive: string;
|
|
12
|
-
classHover: string;
|
|
13
|
-
classTab: string;
|
|
14
|
-
classSeparator: string;
|
|
15
|
-
disabled: boolean;
|
|
16
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TabProps>, {
|
|
17
|
-
class: string;
|
|
18
|
-
classActive: string;
|
|
19
|
-
classHover: string;
|
|
20
|
-
classTab: string;
|
|
21
|
-
classSeparator: string;
|
|
22
|
-
disabled: boolean;
|
|
23
|
-
}>>>, {
|
|
24
|
-
class: string;
|
|
25
|
-
disabled: boolean;
|
|
26
|
-
classActive: string;
|
|
27
|
-
classHover: string;
|
|
28
|
-
classTab: string;
|
|
29
|
-
classSeparator: string;
|
|
30
|
-
}, {}>, {
|
|
31
|
-
default?(_: {}): any;
|
|
32
|
-
}>;
|
|
33
|
-
export default _default;
|
|
34
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
35
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
36
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
37
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
38
|
-
} : {
|
|
39
|
-
type: import('vue').PropType<T[K]>;
|
|
40
|
-
required: true;
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
|
-
type __VLS_WithDefaults<P, D> = {
|
|
44
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
45
|
-
default: D[K];
|
|
46
|
-
}> : P[K];
|
|
47
|
-
};
|
|
48
|
-
type __VLS_Prettify<T> = {
|
|
49
|
-
[K in keyof T]: T[K];
|
|
50
|
-
} & {};
|
|
51
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
52
|
-
new (): {
|
|
53
|
-
$slots: S;
|
|
54
|
-
};
|
|
55
|
-
};
|
|
@@ -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,46 +0,0 @@
|
|
|
1
|
-
interface TabsProps {
|
|
2
|
-
class?: string;
|
|
3
|
-
classPanels?: string;
|
|
4
|
-
classTabs?: string;
|
|
5
|
-
classTab?: string;
|
|
6
|
-
classTabActive?: string;
|
|
7
|
-
classTabHover?: string;
|
|
8
|
-
classSeparator?: string;
|
|
9
|
-
classTabSeparator?: string;
|
|
10
|
-
hideSeparator?: boolean;
|
|
11
|
-
vertical?: boolean;
|
|
12
|
-
defaultIndex?: number;
|
|
13
|
-
}
|
|
14
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TabsProps>, {
|
|
15
|
-
defaultIndex: number;
|
|
16
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TabsProps>, {
|
|
17
|
-
defaultIndex: number;
|
|
18
|
-
}>>>, {
|
|
19
|
-
defaultIndex: number;
|
|
20
|
-
}, {}>, {
|
|
21
|
-
tabs?(_: {}): any;
|
|
22
|
-
default?(_: {}): any;
|
|
23
|
-
}>;
|
|
24
|
-
export default _default;
|
|
25
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
26
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
27
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
28
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
29
|
-
} : {
|
|
30
|
-
type: import('vue').PropType<T[K]>;
|
|
31
|
-
required: true;
|
|
32
|
-
};
|
|
33
|
-
};
|
|
34
|
-
type __VLS_WithDefaults<P, D> = {
|
|
35
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
36
|
-
default: D[K];
|
|
37
|
-
}> : P[K];
|
|
38
|
-
};
|
|
39
|
-
type __VLS_Prettify<T> = {
|
|
40
|
-
[K in keyof T]: T[K];
|
|
41
|
-
} & {};
|
|
42
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
43
|
-
new (): {
|
|
44
|
-
$slots: S;
|
|
45
|
-
};
|
|
46
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
idGenerator?: (() => string) | undefined;
|
|
3
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
-
idGenerator?: (() => string) | undefined;
|
|
5
|
-
}>>>, {}, {}>, {
|
|
6
|
-
default?(_: {}): any;
|
|
7
|
-
}>;
|
|
8
|
-
export default _default;
|
|
9
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
10
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
11
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
12
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
13
|
-
} : {
|
|
14
|
-
type: import('vue').PropType<T[K]>;
|
|
15
|
-
required: true;
|
|
16
|
-
};
|
|
17
|
-
};
|
|
18
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
-
new (): {
|
|
20
|
-
$slots: S;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import VDrawer from './VDrawer.vue';
|
|
2
|
-
import VPreview from './VPreview.vue';
|
|
3
|
-
import VRail from './VRail/VRail.vue';
|
|
4
|
-
import VRailTile from './VRail/VRailTile.vue';
|
|
5
|
-
import VShell from './VShell.vue';
|
|
6
|
-
import VShellConfigurator from './VShellConfigurator.vue';
|
|
7
|
-
import VListbox from './VListbox/VListbox.vue';
|
|
8
|
-
import VListboxItem from './VListbox/VListboxItem.vue';
|
|
9
|
-
import VTab from './VTabs/VTab.vue';
|
|
10
|
-
import VTabPanel from './VTabs/VTabPanel.vue';
|
|
11
|
-
import VTabs from './VTabs/VTabs.vue';
|
|
12
|
-
import VAccordion from './VAccordion/VAccordion.vue';
|
|
13
|
-
import VAccordionItem from './VAccordion/VAccordionItem.vue';
|
|
14
|
-
import VAlert from './VAlert.vue';
|
|
15
|
-
import VCard from './VCard/VCard.vue';
|
|
16
|
-
import VCardBody from './VCard/VCardBody.vue';
|
|
17
|
-
import VCardFooter from './VCard/VCardFooter.vue';
|
|
18
|
-
import VCardHeader from './VCard/VCardHeader.vue';
|
|
19
|
-
import VCodeBlock from './VCodeBlock.vue';
|
|
20
|
-
import Vuetiful from './Vuetiful.vue';
|
|
21
|
-
export { VAccordion, VAccordionItem, VAlert, VCard, VCardBody, VCardFooter, VCardHeader, VCodeBlock, VDrawer, VListbox, VListboxItem, VPreview, VRail, VRailTile, VShell, VShellConfigurator, VTab, VTabPanel, VTabs, Vuetiful };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type DirectiveBinding } from 'vue';
|
|
2
|
-
interface HTMLElementWithClickOutsideHandler extends HTMLElement {
|
|
3
|
-
_clickOutsideHandler?: (event: MouseEvent) => void;
|
|
4
|
-
}
|
|
5
|
-
declare const clickOutsideGroup: {
|
|
6
|
-
mounted(el: HTMLElementWithClickOutsideHandler, binding: DirectiveBinding): void;
|
|
7
|
-
beforeUnmount(el: HTMLElementWithClickOutsideHandler): void;
|
|
8
|
-
};
|
|
9
|
-
export default clickOutsideGroup;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type DirectiveBinding } from 'vue';
|
|
2
|
-
interface HTMLElementWithClickOutsideHandler extends HTMLElement {
|
|
3
|
-
_clickOutsideHandler?: (event: MouseEvent) => void;
|
|
4
|
-
}
|
|
5
|
-
declare const clickOutside: {
|
|
6
|
-
mounted(el: HTMLElementWithClickOutsideHandler, binding: DirectiveBinding): void;
|
|
7
|
-
beforeUnmount(el: HTMLElementWithClickOutsideHandler): void;
|
|
8
|
-
};
|
|
9
|
-
export default clickOutside;
|
package/dist/types/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './props';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type SizeProp = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
export interface DrawerSettings {
|
|
2
|
-
id?: string;
|
|
3
|
-
open?: boolean;
|
|
4
|
-
position?: 'left' | 'top' | 'right' | 'bottom';
|
|
5
|
-
duration?: 150 | 300;
|
|
6
|
-
regionBackdrop?: string;
|
|
7
|
-
regionDrawer?: string;
|
|
8
|
-
[key: string]: unknown;
|
|
9
|
-
}
|
|
10
|
-
declare const useDrawer: () => {
|
|
11
|
-
drawer: {
|
|
12
|
-
readonly [x: string]: Readonly<unknown>;
|
|
13
|
-
readonly id?: string | undefined;
|
|
14
|
-
readonly open?: boolean | undefined;
|
|
15
|
-
readonly position?: "bottom" | "left" | "right" | "top" | undefined;
|
|
16
|
-
readonly duration?: 150 | 300 | undefined;
|
|
17
|
-
readonly regionBackdrop?: string | undefined;
|
|
18
|
-
readonly regionDrawer?: string | undefined;
|
|
19
|
-
};
|
|
20
|
-
open: (settings?: DrawerSettings) => void;
|
|
21
|
-
close: () => void;
|
|
22
|
-
};
|
|
23
|
-
export { useDrawer };
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { useDrawer } from './drawer.service';
|
|
2
|
-
import { useHighlight } from './highlight.service';
|
|
3
|
-
import { useRail } from './rail.service';
|
|
4
|
-
import { useSettings, type VuetifulSettings } from './settings.service';
|
|
5
|
-
export { useDrawer, useHighlight, useRail, useSettings };
|
|
6
|
-
export type { VuetifulSettings };
|
|
@@ -1,132 +0,0 @@
|
|
|
1
|
-
interface UnstyledSettings {
|
|
2
|
-
unstyled: boolean;
|
|
3
|
-
}
|
|
4
|
-
interface GlobalSettings extends UnstyledSettings {
|
|
5
|
-
}
|
|
6
|
-
interface RadioGroupSettings extends UnstyledSettings {
|
|
7
|
-
}
|
|
8
|
-
interface RadioItemSettings extends UnstyledSettings {
|
|
9
|
-
}
|
|
10
|
-
interface AccordionSettings extends UnstyledSettings {
|
|
11
|
-
}
|
|
12
|
-
interface AccordionItemSettings extends UnstyledSettings {
|
|
13
|
-
}
|
|
14
|
-
interface AlertSettings extends UnstyledSettings {
|
|
15
|
-
}
|
|
16
|
-
interface AvatarSettings extends UnstyledSettings {
|
|
17
|
-
}
|
|
18
|
-
interface BadgeSettings extends UnstyledSettings {
|
|
19
|
-
}
|
|
20
|
-
interface ButtonSettings extends UnstyledSettings {
|
|
21
|
-
}
|
|
22
|
-
interface ListboxSettings extends UnstyledSettings {
|
|
23
|
-
}
|
|
24
|
-
interface ListboxItemSettings extends UnstyledSettings {
|
|
25
|
-
}
|
|
26
|
-
interface CodeBlockSettings extends UnstyledSettings {
|
|
27
|
-
}
|
|
28
|
-
interface SwitchSettings extends UnstyledSettings {
|
|
29
|
-
}
|
|
30
|
-
interface CardSettings extends UnstyledSettings {
|
|
31
|
-
}
|
|
32
|
-
interface CardHeaderSettings extends UnstyledSettings {
|
|
33
|
-
}
|
|
34
|
-
interface CardBodySettings extends UnstyledSettings {
|
|
35
|
-
}
|
|
36
|
-
interface CardFooterSettings extends UnstyledSettings {
|
|
37
|
-
}
|
|
38
|
-
interface TabsSettings extends UnstyledSettings {
|
|
39
|
-
}
|
|
40
|
-
interface TabSettings extends UnstyledSettings {
|
|
41
|
-
}
|
|
42
|
-
export interface VuetifulSettings {
|
|
43
|
-
global: GlobalSettings;
|
|
44
|
-
components: Partial<{
|
|
45
|
-
avatar: AvatarSettings;
|
|
46
|
-
alert: AlertSettings;
|
|
47
|
-
badge: BadgeSettings;
|
|
48
|
-
button: ButtonSettings;
|
|
49
|
-
codeBlock: CodeBlockSettings;
|
|
50
|
-
switch: SwitchSettings;
|
|
51
|
-
accordion: AccordionSettings;
|
|
52
|
-
accordionItem: AccordionItemSettings;
|
|
53
|
-
listbox: ListboxSettings;
|
|
54
|
-
listboxItem: ListboxItemSettings;
|
|
55
|
-
radioGroup: RadioGroupSettings;
|
|
56
|
-
radioItem: RadioItemSettings;
|
|
57
|
-
card: CardSettings;
|
|
58
|
-
cardHeader: CardHeaderSettings;
|
|
59
|
-
cardBody: CardBodySettings;
|
|
60
|
-
cardFooter: CardFooterSettings;
|
|
61
|
-
tabs: TabsSettings;
|
|
62
|
-
tab: TabSettings;
|
|
63
|
-
}>;
|
|
64
|
-
}
|
|
65
|
-
declare const useSettings: () => {
|
|
66
|
-
updateSettings: (partialSettings: Partial<VuetifulSettings>) => void;
|
|
67
|
-
settings: {
|
|
68
|
-
global: {
|
|
69
|
-
unstyled: boolean;
|
|
70
|
-
};
|
|
71
|
-
components: {
|
|
72
|
-
radioGroup: {
|
|
73
|
-
unstyled: boolean;
|
|
74
|
-
};
|
|
75
|
-
radioItem: {
|
|
76
|
-
unstyled: boolean;
|
|
77
|
-
};
|
|
78
|
-
switch: {
|
|
79
|
-
unstyled: boolean;
|
|
80
|
-
};
|
|
81
|
-
avatar: {
|
|
82
|
-
unstyled: boolean;
|
|
83
|
-
};
|
|
84
|
-
badge: {
|
|
85
|
-
unstyled: boolean;
|
|
86
|
-
};
|
|
87
|
-
button: {
|
|
88
|
-
unstyled: boolean;
|
|
89
|
-
};
|
|
90
|
-
chip: {
|
|
91
|
-
unstyled: boolean;
|
|
92
|
-
};
|
|
93
|
-
codeBlock: {
|
|
94
|
-
unstyled: boolean;
|
|
95
|
-
};
|
|
96
|
-
listbox: {
|
|
97
|
-
unstyled: boolean;
|
|
98
|
-
};
|
|
99
|
-
listboxItem: {
|
|
100
|
-
unstyled: boolean;
|
|
101
|
-
};
|
|
102
|
-
accordion: {
|
|
103
|
-
unstyled: boolean;
|
|
104
|
-
};
|
|
105
|
-
accordionItem: {
|
|
106
|
-
unstyled: boolean;
|
|
107
|
-
};
|
|
108
|
-
alert: {
|
|
109
|
-
unstyled: boolean;
|
|
110
|
-
};
|
|
111
|
-
card: {
|
|
112
|
-
unstyled: boolean;
|
|
113
|
-
};
|
|
114
|
-
cardHeader: {
|
|
115
|
-
unstyled: boolean;
|
|
116
|
-
};
|
|
117
|
-
cardBody: {
|
|
118
|
-
unstyled: boolean;
|
|
119
|
-
};
|
|
120
|
-
cardFooter: {
|
|
121
|
-
unstyled: boolean;
|
|
122
|
-
};
|
|
123
|
-
tabs: {
|
|
124
|
-
unstyled: boolean;
|
|
125
|
-
};
|
|
126
|
-
tab: {
|
|
127
|
-
unstyled: boolean;
|
|
128
|
-
};
|
|
129
|
-
};
|
|
130
|
-
};
|
|
131
|
-
};
|
|
132
|
-
export { useSettings };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const idGenerator: (prefix?: string) => string;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { usePlatform } from './platform/platform.service';
|
|
2
|
-
import { useDarkMode, type Mode } from './theme/dark-mode.service';
|
|
3
|
-
import VLightSwitch from './theme/VLightSwitch.vue';
|
|
4
|
-
import VThemeSwitch from './theme/VThemeSwitch.vue';
|
|
5
|
-
import { useTheme } from './theme/theme.service';
|
|
6
|
-
import { idGenerator } from './id-generator';
|
|
7
|
-
import { tm } from './tailwind-merge';
|
|
8
|
-
export { VThemeSwitch, usePlatform, useTheme, idGenerator, tm, useDarkMode, VLightSwitch };
|
|
9
|
-
export type { Mode };
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
interface LightSwitchProps {
|
|
2
|
-
class?: string;
|
|
3
|
-
classThumb?: string;
|
|
4
|
-
classIcon?: string;
|
|
5
|
-
}
|
|
6
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<LightSwitchProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<LightSwitchProps>>>, {}, {}>;
|
|
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
|
-
};
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
interface ThemeSwitchProps {
|
|
2
|
-
class?: string;
|
|
3
|
-
classButton?: string;
|
|
4
|
-
classItem?: string;
|
|
5
|
-
classItemActive?: string;
|
|
6
|
-
}
|
|
7
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ThemeSwitchProps>, {
|
|
8
|
-
class: string;
|
|
9
|
-
classButton: string;
|
|
10
|
-
classItem: string;
|
|
11
|
-
classItemActive: string;
|
|
12
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ThemeSwitchProps>, {
|
|
13
|
-
class: string;
|
|
14
|
-
classButton: string;
|
|
15
|
-
classItem: string;
|
|
16
|
-
classItemActive: string;
|
|
17
|
-
}>>>, {
|
|
18
|
-
class: string;
|
|
19
|
-
classItemActive: string;
|
|
20
|
-
classItem: string;
|
|
21
|
-
classButton: string;
|
|
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
|
-
} & {};
|