@comercti/web-components 0.6.0 → 0.8.0
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 +8 -8
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +11 -11
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -78,6 +78,17 @@ declare module 'vue' {
|
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
|
|
81
|
+
declare module 'vue' {
|
|
82
|
+
interface GlobalComponents {
|
|
83
|
+
'ce-banners': typeof BannersComponent;
|
|
84
|
+
'ce-modal': typeof ModalComponent;
|
|
85
|
+
'ce-toast': typeof ToastComponent;
|
|
86
|
+
'ce-tooltip': typeof TooltipComponent;
|
|
87
|
+
'ce-loading': typeof LoadingComponent;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
|
|
81
92
|
declare module 'vue' {
|
|
82
93
|
interface GlobalComponents {
|
|
83
94
|
'ce-card': typeof CardComponent;
|
|
@@ -102,17 +113,6 @@ declare module 'vue' {
|
|
|
102
113
|
}
|
|
103
114
|
|
|
104
115
|
|
|
105
|
-
declare module 'vue' {
|
|
106
|
-
interface GlobalComponents {
|
|
107
|
-
'ce-banners': typeof BannersComponent;
|
|
108
|
-
'ce-modal': typeof ModalComponent;
|
|
109
|
-
'ce-toast': typeof ToastComponent;
|
|
110
|
-
'ce-tooltip': typeof TooltipComponent;
|
|
111
|
-
'ce-loading': typeof LoadingComponent;
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
|
|
116
116
|
declare module 'vue' {
|
|
117
117
|
interface GlobalComponents {
|
|
118
118
|
'ce-avatar': typeof AvatarComponent;
|