@comercti/web-components-hmg 0.32.11 → 0.32.13
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 +14 -10
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +16 -16
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -64,6 +64,17 @@ declare module 'vue' {
|
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
|
|
67
|
+
declare module 'vue' {
|
|
68
|
+
interface GlobalComponents {
|
|
69
|
+
'ce-menu-sidebar': typeof MenuSidebarComponent;
|
|
70
|
+
'ce-menu-header': typeof MenuHeaderComponent;
|
|
71
|
+
'ce-breadcrumbs': typeof BreadcrumbsComponent;
|
|
72
|
+
'ce-tab': typeof TabComponent;
|
|
73
|
+
'ce-tab-item': typeof TabItemComponent;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
|
|
67
78
|
declare module 'vue' {
|
|
68
79
|
interface GlobalComponents {
|
|
69
80
|
'ce-col': typeof ColComponent;
|
|
@@ -75,11 +86,11 @@ declare module 'vue' {
|
|
|
75
86
|
|
|
76
87
|
declare module 'vue' {
|
|
77
88
|
interface GlobalComponents {
|
|
78
|
-
'ce-
|
|
79
|
-
'ce-
|
|
80
|
-
'ce-
|
|
81
|
-
'ce-
|
|
82
|
-
'ce-
|
|
89
|
+
'ce-banners': typeof BannersComponent;
|
|
90
|
+
'ce-modal': typeof ModalComponent;
|
|
91
|
+
'ce-toast': typeof ToastComponent;
|
|
92
|
+
'ce-tooltip': typeof TooltipComponent;
|
|
93
|
+
'ce-loading': typeof LoadingComponent;
|
|
83
94
|
}
|
|
84
95
|
}
|
|
85
96
|
|
|
@@ -98,17 +109,6 @@ declare module 'vue' {
|
|
|
98
109
|
}
|
|
99
110
|
|
|
100
111
|
|
|
101
|
-
declare module 'vue' {
|
|
102
|
-
interface GlobalComponents {
|
|
103
|
-
'ce-banners': typeof BannersComponent;
|
|
104
|
-
'ce-modal': typeof ModalComponent;
|
|
105
|
-
'ce-toast': typeof ToastComponent;
|
|
106
|
-
'ce-tooltip': typeof TooltipComponent;
|
|
107
|
-
'ce-loading': typeof LoadingComponent;
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
|
|
112
112
|
declare module 'vue' {
|
|
113
113
|
interface GlobalComponents {
|
|
114
114
|
'ce-pagination': typeof PaginationComponent;
|