@code-coaching/vuetiful 0.15.2 → 0.16.1
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 +689 -11
- package/dist/types/components/atoms/VCodeBlock.test.d.ts +1 -0
- package/dist/types/components/atoms/VLightSwitch.test.d.ts +1 -0
- package/dist/types/components/molecules/VDrawer.test.d.ts +1 -0
- package/dist/types/components/molecules/VPreview.test.d.ts +1 -0
- package/dist/types/components/molecules/VPreview.vue.d.ts +77 -0
- package/dist/types/components/molecules/VRail.test.d.ts +1 -0
- package/dist/types/components/molecules/VRailTile.test.d.ts +1 -0
- package/dist/types/components/molecules/VShell.test.d.ts +1 -0
- package/dist/types/components/molecules/index.d.ts +2 -1
- package/dist/vuetiful.es.mjs +332 -72
- package/dist/vuetiful.umd.js +11 -11
- package/package.json +1 -1
- package/src/components/atoms/VCodeBlock.test.ts +14 -0
- package/src/components/atoms/VCodeBlock.vue +5 -5
- package/src/components/atoms/VLightSwitch.test.ts +20 -0
- package/src/components/atoms/VRadio/VRadioItem.vue +3 -3
- package/src/components/molecules/VDrawer.test.ts +14 -0
- package/src/components/molecules/VPreview.test.ts +93 -0
- package/src/components/molecules/VPreview.vue +231 -0
- package/src/components/molecules/VRail.test.ts +14 -0
- package/src/components/molecules/VRailTile.test.ts +14 -0
- package/src/components/molecules/VShell.test.ts +14 -0
- package/src/components/molecules/index.ts +2 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
hideMobileToggle: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
hideSwatches: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
background: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
regionHeader: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
regionViewport: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
regionPreview: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
regionFooter: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
regionSource: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
}, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
35
|
+
hideMobileToggle: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
hideSwatches: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
background: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
regionHeader: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
regionViewport: {
|
|
52
|
+
type: StringConstructor;
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
regionPreview: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
regionFooter: {
|
|
60
|
+
type: StringConstructor;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
regionSource: {
|
|
64
|
+
type: StringConstructor;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
67
|
+
}>>, {
|
|
68
|
+
background: string;
|
|
69
|
+
hideMobileToggle: boolean;
|
|
70
|
+
hideSwatches: boolean;
|
|
71
|
+
regionHeader: string;
|
|
72
|
+
regionViewport: string;
|
|
73
|
+
regionPreview: string;
|
|
74
|
+
regionFooter: string;
|
|
75
|
+
regionSource: string;
|
|
76
|
+
}>;
|
|
77
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -2,4 +2,5 @@ import VDrawer from "./VDrawer.vue";
|
|
|
2
2
|
import VRail from "./VRail.vue";
|
|
3
3
|
import VRailTile from "./VRailTile.vue";
|
|
4
4
|
import VShell from "./VShell.vue";
|
|
5
|
-
|
|
5
|
+
import VPreview from "./VPreview.vue";
|
|
6
|
+
export { VRail, VRailTile, VShell, VDrawer, VPreview };
|