@comercti/web-components-hmg 0.22.5 → 0.22.8
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/comerc-style-guide.cjs.js +29 -29
- package/comerc-style-guide.es.js +2239 -2148
- package/comerc-style-guide.umd.js +28 -28
- package/index.d.ts +11 -9
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -37,6 +37,8 @@ id: number;
|
|
|
37
37
|
data: IData | null;
|
|
38
38
|
}[]>;
|
|
39
39
|
|
|
40
|
+
export declare const updateProgress: (file: File, progress: number | "error" | "done", status?: "uploading" | "success" | "error") => void;
|
|
41
|
+
|
|
40
42
|
export { }
|
|
41
43
|
|
|
42
44
|
|
|
@@ -63,6 +65,15 @@ declare module 'vue' {
|
|
|
63
65
|
}
|
|
64
66
|
|
|
65
67
|
|
|
68
|
+
declare module 'vue' {
|
|
69
|
+
interface GlobalComponents {
|
|
70
|
+
'ce-col': typeof ColComponent;
|
|
71
|
+
'ce-row': typeof RowComponent;
|
|
72
|
+
'ce-container': typeof ContainerComponent;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
|
|
66
77
|
declare module 'vue' {
|
|
67
78
|
interface GlobalComponents {
|
|
68
79
|
'ce-menu-sidebar': typeof MenuSidebarComponent;
|
|
@@ -88,15 +99,6 @@ declare module 'vue' {
|
|
|
88
99
|
}
|
|
89
100
|
|
|
90
101
|
|
|
91
|
-
declare module 'vue' {
|
|
92
|
-
interface GlobalComponents {
|
|
93
|
-
'ce-col': typeof ColComponent;
|
|
94
|
-
'ce-row': typeof RowComponent;
|
|
95
|
-
'ce-container': typeof ContainerComponent;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
|
|
100
102
|
declare module 'vue' {
|
|
101
103
|
interface GlobalComponents {
|
|
102
104
|
'ce-banners': typeof BannersComponent;
|