@code-coaching/vuetiful 0.13.1 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +55 -2
- package/dist/style.css +10 -0
- package/dist/styles/all.css +6458 -0
- package/dist/types/components/atoms/VBadge.test.d.ts +1 -0
- package/dist/types/components/atoms/VChip.test.d.ts +1 -0
- package/dist/types/components/atoms/VSwitch/VSwitch.test.d.ts +1 -0
- package/dist/types/components/atoms/VSwitch/VSwitch.vue.d.ts +70 -0
- package/dist/types/components/atoms/VSwitch/VSwitchDescription.test.d.ts +1 -0
- package/dist/types/components/atoms/VSwitch/VSwitchDescription.vue.d.ts +14 -0
- package/dist/types/components/atoms/VSwitch/VSwitchGroup.test.d.ts +1 -0
- package/dist/types/components/atoms/VSwitch/VSwitchGroup.vue.d.ts +14 -0
- package/dist/types/components/atoms/VSwitch/VSwitchLabel.test.d.ts +1 -0
- package/dist/types/components/atoms/VSwitch/VSwitchLabel.vue.d.ts +23 -0
- package/dist/types/components/atoms/index.d.ts +5 -1
- package/dist/vuetiful.es.mjs +48082 -0
- package/dist/vuetiful.umd.js +21 -0
- package/package.json +1 -1
- package/src/components/atoms/VBadge.test.ts +18 -0
- package/src/components/atoms/VButton.test.ts +32 -32
- package/src/components/atoms/VChip.test.ts +18 -0
- package/src/components/atoms/VSwitch/VSwitch.test.ts +121 -0
- package/src/components/atoms/VSwitch/VSwitch.vue +97 -0
- package/src/components/atoms/VSwitch/VSwitchDescription.test.ts +56 -0
- package/src/components/atoms/VSwitch/VSwitchDescription.vue +16 -0
- package/src/components/atoms/VSwitch/VSwitchGroup.test.ts +26 -0
- package/src/components/atoms/VSwitch/VSwitchGroup.vue +16 -0
- package/src/components/atoms/VSwitch/VSwitchLabel.test.ts +89 -0
- package/src/components/atoms/VSwitch/VSwitchLabel.vue +20 -0
- package/src/components/atoms/index.ts +18 -1
- package/src/components/molecules/VRail.vue +1 -1
- package/src/utils/theme/remove.test.ts +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
modelValue: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
disabled: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
size: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
switchClass: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
thumbClass: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
as: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
name: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
}, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
modelValue: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
disabled: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
size: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
43
|
+
switchClass: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
thumbClass: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
as: {
|
|
52
|
+
type: StringConstructor;
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
name: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
}>> & {
|
|
60
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
61
|
+
}, {
|
|
62
|
+
as: string;
|
|
63
|
+
disabled: boolean;
|
|
64
|
+
modelValue: boolean;
|
|
65
|
+
name: string;
|
|
66
|
+
size: string;
|
|
67
|
+
switchClass: string;
|
|
68
|
+
thumbClass: string;
|
|
69
|
+
}>;
|
|
70
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
as: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
}, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
as: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>>, {
|
|
12
|
+
as: string;
|
|
13
|
+
}>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
as: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
}, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
as: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>>, {
|
|
12
|
+
as: string;
|
|
13
|
+
}>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
as: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
passive: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
}, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
as: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
passive: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
}>>, {
|
|
20
|
+
as: string;
|
|
21
|
+
passive: boolean;
|
|
22
|
+
}>;
|
|
23
|
+
export default _default;
|
|
@@ -5,4 +5,8 @@ import VRadioDescription from "./VRadio/VRadioDescription.vue";
|
|
|
5
5
|
import VRadioGroup from "./VRadio/VRadioGroup.vue";
|
|
6
6
|
import VRadioItem from "./VRadio/VRadioItem.vue";
|
|
7
7
|
import VRadioLabel from "./VRadio/VRadioLabel.vue";
|
|
8
|
-
|
|
8
|
+
import VSwitch from "./VSwitch/VSwitch.vue";
|
|
9
|
+
import VSwitchDescription from "./VSwitch/VSwitchDescription.vue";
|
|
10
|
+
import VSwitchGroup from "./VSwitch/VSwitchGroup.vue";
|
|
11
|
+
import VSwitchLabel from "./VSwitch/VSwitchLabel.vue";
|
|
12
|
+
export { VButton, VBadge, VChip, VRadioGroup, VRadioItem, VRadioLabel, VRadioDescription, VSwitchGroup, VSwitchLabel, VSwitchDescription, VSwitch, };
|