@comercti/web-components-hmg 0.15.2 → 0.18.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/comerc-style-guide.cjs.js +3 -3
- package/comerc-style-guide.es.js +2035 -1977
- package/comerc-style-guide.umd.js +3 -3
- package/index.d.ts +20 -20
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -37,15 +37,6 @@ data: IData | null;
|
|
|
37
37
|
export { }
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
declare module 'vue' {
|
|
41
|
-
interface GlobalComponents {
|
|
42
|
-
'ce-col': typeof ColComponent;
|
|
43
|
-
'ce-row': typeof RowComponent;
|
|
44
|
-
'ce-container': typeof ContainerComponent;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
|
|
49
40
|
declare module 'vue' {
|
|
50
41
|
interface GlobalComponents {
|
|
51
42
|
'ce-autocomplete': typeof AutocompleteComponent;
|
|
@@ -79,17 +70,6 @@ declare module 'vue' {
|
|
|
79
70
|
}
|
|
80
71
|
|
|
81
72
|
|
|
82
|
-
declare module 'vue' {
|
|
83
|
-
interface GlobalComponents {
|
|
84
|
-
'ce-banners': typeof BannersComponent;
|
|
85
|
-
'ce-modal': typeof ModalComponent;
|
|
86
|
-
'ce-toast': typeof ToastComponent;
|
|
87
|
-
'ce-tooltip': typeof TooltipComponent;
|
|
88
|
-
'ce-loading': typeof LoadingComponent;
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
|
|
93
73
|
declare module 'vue' {
|
|
94
74
|
interface GlobalComponents {
|
|
95
75
|
'ce-card': typeof CardComponent;
|
|
@@ -103,6 +83,26 @@ declare module 'vue' {
|
|
|
103
83
|
}
|
|
104
84
|
|
|
105
85
|
|
|
86
|
+
declare module 'vue' {
|
|
87
|
+
interface GlobalComponents {
|
|
88
|
+
'ce-col': typeof ColComponent;
|
|
89
|
+
'ce-row': typeof RowComponent;
|
|
90
|
+
'ce-container': typeof ContainerComponent;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
declare module 'vue' {
|
|
96
|
+
interface GlobalComponents {
|
|
97
|
+
'ce-banners': typeof BannersComponent;
|
|
98
|
+
'ce-modal': typeof ModalComponent;
|
|
99
|
+
'ce-toast': typeof ToastComponent;
|
|
100
|
+
'ce-tooltip': typeof TooltipComponent;
|
|
101
|
+
'ce-loading': typeof LoadingComponent;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
|
|
106
106
|
declare module 'vue' {
|
|
107
107
|
interface GlobalComponents {
|
|
108
108
|
'ce-pagination': typeof PaginationComponent;
|