@comercti/web-components-hmg 0.23.23 → 0.23.31
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 +8 -11
- package/comerc-style-guide.es.js +2928 -3066
- package/comerc-style-guide.umd.js +10 -13
- package/index.d.ts +18 -18
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -65,20 +65,20 @@ declare module 'vue' {
|
|
|
65
65
|
|
|
66
66
|
declare module 'vue' {
|
|
67
67
|
interface GlobalComponents {
|
|
68
|
-
'ce-
|
|
69
|
-
'ce-
|
|
70
|
-
'ce-
|
|
71
|
-
'ce-tab': typeof TabComponent;
|
|
72
|
-
'ce-tab-item': typeof TabItemComponent;
|
|
68
|
+
'ce-col': typeof ColComponent;
|
|
69
|
+
'ce-row': typeof RowComponent;
|
|
70
|
+
'ce-container': typeof ContainerComponent;
|
|
73
71
|
}
|
|
74
72
|
}
|
|
75
73
|
|
|
76
74
|
|
|
77
75
|
declare module 'vue' {
|
|
78
76
|
interface GlobalComponents {
|
|
79
|
-
'ce-
|
|
80
|
-
'ce-
|
|
81
|
-
'ce-
|
|
77
|
+
'ce-menu-sidebar': typeof MenuSidebarComponent;
|
|
78
|
+
'ce-menu-header': typeof MenuHeaderComponent;
|
|
79
|
+
'ce-breadcrumbs': typeof BreadcrumbsComponent;
|
|
80
|
+
'ce-tab': typeof TabComponent;
|
|
81
|
+
'ce-tab-item': typeof TabItemComponent;
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
|
|
@@ -99,22 +99,22 @@ declare module 'vue' {
|
|
|
99
99
|
|
|
100
100
|
declare module 'vue' {
|
|
101
101
|
interface GlobalComponents {
|
|
102
|
-
'ce-
|
|
103
|
-
'ce-
|
|
104
|
-
'ce-
|
|
105
|
-
'ce-
|
|
106
|
-
'ce-
|
|
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
107
|
}
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
|
|
111
111
|
declare module 'vue' {
|
|
112
112
|
interface GlobalComponents {
|
|
113
|
-
'ce-
|
|
114
|
-
'ce-
|
|
115
|
-
'ce-
|
|
116
|
-
'ce-
|
|
117
|
-
'ce-
|
|
113
|
+
'ce-pagination': typeof PaginationComponent;
|
|
114
|
+
'ce-progress-indicator': typeof ProgressIndicatorComponent;
|
|
115
|
+
'ce-progress-steps': typeof ProgressStepsComponent;
|
|
116
|
+
'ce-data-table': typeof DataTableComponent;
|
|
117
|
+
'ce-items-per-page': typeof ItemsPerPageComponent;
|
|
118
118
|
}
|
|
119
119
|
}
|
|
120
120
|
|