@comercti/web-components 0.5.0 → 0.6.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 +1197 -1201
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +18 -18
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -60,20 +60,20 @@ declare module 'vue' {
|
|
|
60
60
|
|
|
61
61
|
declare module 'vue' {
|
|
62
62
|
interface GlobalComponents {
|
|
63
|
-
'ce-
|
|
64
|
-
'ce-
|
|
65
|
-
'ce-
|
|
66
|
-
'ce-tab': typeof TabComponent;
|
|
67
|
-
'ce-tab-item': typeof TabItemComponent;
|
|
63
|
+
'ce-col': typeof ColComponent;
|
|
64
|
+
'ce-row': typeof RowComponent;
|
|
65
|
+
'ce-container': typeof ContainerComponent;
|
|
68
66
|
}
|
|
69
67
|
}
|
|
70
68
|
|
|
71
69
|
|
|
72
70
|
declare module 'vue' {
|
|
73
71
|
interface GlobalComponents {
|
|
74
|
-
'ce-
|
|
75
|
-
'ce-
|
|
76
|
-
'ce-
|
|
72
|
+
'ce-menu-sidebar': typeof MenuSidebarComponent;
|
|
73
|
+
'ce-menu-header': typeof MenuHeaderComponent;
|
|
74
|
+
'ce-breadcrumbs': typeof BreadcrumbsComponent;
|
|
75
|
+
'ce-tab': typeof TabComponent;
|
|
76
|
+
'ce-tab-item': typeof TabItemComponent;
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
|
|
@@ -93,22 +93,22 @@ declare module 'vue' {
|
|
|
93
93
|
|
|
94
94
|
declare module 'vue' {
|
|
95
95
|
interface GlobalComponents {
|
|
96
|
-
'ce-
|
|
97
|
-
'ce-
|
|
98
|
-
'ce-
|
|
99
|
-
'ce-
|
|
100
|
-
'ce-
|
|
96
|
+
'ce-pagination': typeof PaginationComponent;
|
|
97
|
+
'ce-progress-indicator': typeof ProgressIndicatorComponent;
|
|
98
|
+
'ce-progress-steps': typeof ProgressStepsComponent;
|
|
99
|
+
'ce-data-table': typeof DataTableComponent;
|
|
100
|
+
'ce-items-per-page': typeof ItemsPerPageComponent;
|
|
101
101
|
}
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
|
|
105
105
|
declare module 'vue' {
|
|
106
106
|
interface GlobalComponents {
|
|
107
|
-
'ce-
|
|
108
|
-
'ce-
|
|
109
|
-
'ce-
|
|
110
|
-
'ce-
|
|
111
|
-
'ce-
|
|
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
112
|
}
|
|
113
113
|
}
|
|
114
114
|
|