@comercti/web-components-hmg 0.15.2 → 0.15.4
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 +1253 -1251
- package/comerc-style-guide.umd.js +3 -3
- package/index.d.ts +19 -19
- 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;
|
|
@@ -70,22 +61,20 @@ declare module 'vue' {
|
|
|
70
61
|
|
|
71
62
|
declare module 'vue' {
|
|
72
63
|
interface GlobalComponents {
|
|
73
|
-
'ce-
|
|
74
|
-
'ce-
|
|
75
|
-
'ce-
|
|
76
|
-
'ce-tab': typeof TabComponent;
|
|
77
|
-
'ce-tab-item': typeof TabItemComponent;
|
|
64
|
+
'ce-col': typeof ColComponent;
|
|
65
|
+
'ce-row': typeof RowComponent;
|
|
66
|
+
'ce-container': typeof ContainerComponent;
|
|
78
67
|
}
|
|
79
68
|
}
|
|
80
69
|
|
|
81
70
|
|
|
82
71
|
declare module 'vue' {
|
|
83
72
|
interface GlobalComponents {
|
|
84
|
-
'ce-
|
|
85
|
-
'ce-
|
|
86
|
-
'ce-
|
|
87
|
-
'ce-
|
|
88
|
-
'ce-
|
|
73
|
+
'ce-menu-sidebar': typeof MenuSidebarComponent;
|
|
74
|
+
'ce-menu-header': typeof MenuHeaderComponent;
|
|
75
|
+
'ce-breadcrumbs': typeof BreadcrumbsComponent;
|
|
76
|
+
'ce-tab': typeof TabComponent;
|
|
77
|
+
'ce-tab-item': typeof TabItemComponent;
|
|
89
78
|
}
|
|
90
79
|
}
|
|
91
80
|
|
|
@@ -103,6 +92,17 @@ declare module 'vue' {
|
|
|
103
92
|
}
|
|
104
93
|
|
|
105
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;
|