@code-coaching/vuetiful 0.12.0 → 0.13.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/style.css +1 -1
- package/dist/styles/all.css +280 -51
- package/dist/types/components/atoms/VRadio/VRadioDescription.vue.d.ts +8 -0
- package/dist/types/components/atoms/VRadio/VRadioGroup.vue.d.ts +55 -0
- package/dist/types/components/atoms/VRadio/VRadioItem.vue.d.ts +12 -0
- package/dist/types/components/atoms/VRadio/VRadioLabel.vue.d.ts +14 -0
- package/dist/types/components/atoms/index.d.ts +5 -1
- package/dist/types/components/index.d.ts +2 -3
- package/dist/vuetiful.es.mjs +666 -111
- package/dist/vuetiful.umd.js +14 -11
- package/package.json +2 -1
- package/src/components/atoms/VRadio/VRadioDescription.vue +11 -0
- package/src/components/atoms/VRadio/VRadioGroup.vue +60 -0
- package/src/components/atoms/VRadio/VRadioItem.vue +26 -0
- package/src/components/atoms/VRadio/VRadioLabel.vue +16 -0
- package/src/components/atoms/index.ts +6 -3
- package/src/components/index.ts +2 -4
- package/src/components/atoms/VRadioGroup.vue +0 -42
- package/src/components/atoms/VRadioItem.vue +0 -154
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
as: any;
|
|
3
|
+
}, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
+
as: any;
|
|
5
|
+
}>>, {
|
|
6
|
+
as: any;
|
|
7
|
+
}>;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
as: any;
|
|
3
|
+
disabled: any;
|
|
4
|
+
by: any;
|
|
5
|
+
modelValue: any;
|
|
6
|
+
active: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
hover: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
background: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
text: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
}, () => 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<{
|
|
23
|
+
as: any;
|
|
24
|
+
disabled: any;
|
|
25
|
+
by: any;
|
|
26
|
+
modelValue: any;
|
|
27
|
+
active: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
hover: {
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
background: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
text: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
43
|
+
}>> & {
|
|
44
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
45
|
+
}, {
|
|
46
|
+
as: any;
|
|
47
|
+
disabled: any;
|
|
48
|
+
by: any;
|
|
49
|
+
modelValue: any;
|
|
50
|
+
active: string;
|
|
51
|
+
hover: string;
|
|
52
|
+
background: string;
|
|
53
|
+
text: string;
|
|
54
|
+
}>;
|
|
55
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
value: {
|
|
3
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
4
|
+
required: true;
|
|
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
|
+
value: {
|
|
8
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
}>>, {}>;
|
|
12
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
as: {
|
|
3
|
+
type: any;
|
|
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: any;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>>, {
|
|
12
|
+
as: any;
|
|
13
|
+
}>;
|
|
14
|
+
export default _default;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import VBadge from "./VBadge.vue";
|
|
2
2
|
import VButton from "./VButton.vue";
|
|
3
3
|
import VChip from "./VChip.vue";
|
|
4
|
-
|
|
4
|
+
import VRadioDescription from "./VRadio/VRadioDescription.vue";
|
|
5
|
+
import VRadioGroup from "./VRadio/VRadioGroup.vue";
|
|
6
|
+
import VRadioItem from "./VRadio/VRadioItem.vue";
|
|
7
|
+
import VRadioLabel from "./VRadio/VRadioLabel.vue";
|
|
8
|
+
export { VButton, VBadge, VChip, VRadioGroup, VRadioItem, VRadioLabel, VRadioDescription };
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export { VButton, VRail, VRailTile, VShell, VDrawer, VBadge, VChip };
|
|
1
|
+
export * from './atoms';
|
|
2
|
+
export * from './molecules';
|