@comercti/web-components-hmg 0.23.16 → 0.23.17
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 +1 -1
- package/comerc-style-guide.es.js +4 -2
- package/comerc-style-guide.umd.js +1 -1
- package/index.d.ts +11 -11
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -83,6 +83,17 @@ declare module 'vue' {
|
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
|
|
86
|
+
declare module 'vue' {
|
|
87
|
+
interface GlobalComponents {
|
|
88
|
+
'ce-banners': typeof BannersComponent;
|
|
89
|
+
'ce-modal': typeof ModalComponent;
|
|
90
|
+
'ce-toast': typeof ToastComponent;
|
|
91
|
+
'ce-tooltip': typeof TooltipComponent;
|
|
92
|
+
'ce-loading': typeof LoadingComponent;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
|
|
86
97
|
declare module 'vue' {
|
|
87
98
|
interface GlobalComponents {
|
|
88
99
|
'ce-card': typeof CardComponent;
|
|
@@ -97,17 +108,6 @@ declare module 'vue' {
|
|
|
97
108
|
}
|
|
98
109
|
|
|
99
110
|
|
|
100
|
-
declare module 'vue' {
|
|
101
|
-
interface GlobalComponents {
|
|
102
|
-
'ce-banners': typeof BannersComponent;
|
|
103
|
-
'ce-modal': typeof ModalComponent;
|
|
104
|
-
'ce-toast': typeof ToastComponent;
|
|
105
|
-
'ce-tooltip': typeof TooltipComponent;
|
|
106
|
-
'ce-loading': typeof LoadingComponent;
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
|
|
111
111
|
declare module 'vue' {
|
|
112
112
|
interface GlobalComponents {
|
|
113
113
|
'ce-pagination': typeof PaginationComponent;
|