@comercti/web-components-hmg 0.21.4 → 0.21.6
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 +2 -2
- package/comerc-style-guide.es.js +1170 -1163
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +11 -11
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -79,6 +79,17 @@ declare module 'vue' {
|
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
|
|
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
|
+
|
|
82
93
|
declare module 'vue' {
|
|
83
94
|
interface GlobalComponents {
|
|
84
95
|
'ce-card': typeof CardComponent;
|
|
@@ -93,17 +104,6 @@ declare module 'vue' {
|
|
|
93
104
|
}
|
|
94
105
|
|
|
95
106
|
|
|
96
|
-
declare module 'vue' {
|
|
97
|
-
interface GlobalComponents {
|
|
98
|
-
'ce-banners': typeof BannersComponent;
|
|
99
|
-
'ce-modal': typeof ModalComponent;
|
|
100
|
-
'ce-toast': typeof ToastComponent;
|
|
101
|
-
'ce-tooltip': typeof TooltipComponent;
|
|
102
|
-
'ce-loading': typeof LoadingComponent;
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
|
|
107
107
|
declare module 'vue' {
|
|
108
108
|
interface GlobalComponents {
|
|
109
109
|
'ce-pagination': typeof PaginationComponent;
|