@comercti/web-components-hmg 0.22.9 → 0.22.11
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 +30 -30
- package/comerc-style-guide.es.js +2566 -2562
- package/comerc-style-guide.umd.js +29 -29
- package/index.d.ts +10 -12
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -37,8 +37,6 @@ 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
|
-
|
|
42
40
|
export { }
|
|
43
41
|
|
|
44
42
|
|
|
@@ -101,22 +99,22 @@ declare module 'vue' {
|
|
|
101
99
|
|
|
102
100
|
declare module 'vue' {
|
|
103
101
|
interface GlobalComponents {
|
|
104
|
-
'ce-
|
|
105
|
-
'ce-
|
|
106
|
-
'ce-
|
|
107
|
-
'ce-
|
|
108
|
-
'ce-
|
|
102
|
+
'ce-pagination': typeof PaginationComponent;
|
|
103
|
+
'ce-progress-indicator': typeof ProgressIndicatorComponent;
|
|
104
|
+
'ce-progress-steps': typeof ProgressStepsComponent;
|
|
105
|
+
'ce-data-table': typeof DataTableComponent;
|
|
106
|
+
'ce-items-per-page': typeof ItemsPerPageComponent;
|
|
109
107
|
}
|
|
110
108
|
}
|
|
111
109
|
|
|
112
110
|
|
|
113
111
|
declare module 'vue' {
|
|
114
112
|
interface GlobalComponents {
|
|
115
|
-
'ce-
|
|
116
|
-
'ce-
|
|
117
|
-
'ce-
|
|
118
|
-
'ce-
|
|
119
|
-
'ce-
|
|
113
|
+
'ce-banners': typeof BannersComponent;
|
|
114
|
+
'ce-modal': typeof ModalComponent;
|
|
115
|
+
'ce-toast': typeof ToastComponent;
|
|
116
|
+
'ce-tooltip': typeof TooltipComponent;
|
|
117
|
+
'ce-loading': typeof LoadingComponent;
|
|
120
118
|
}
|
|
121
119
|
}
|
|
122
120
|
|