@comercti/web-components-hmg 0.9.8 → 0.9.9
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/index.d.ts +21 -21
- 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-banners': typeof BannersComponent;
|
|
73
|
+
'ce-modal': typeof ModalComponent;
|
|
74
|
+
'ce-toast': typeof ToastComponent;
|
|
75
|
+
'ce-tooltip': typeof TooltipComponent;
|
|
76
|
+
'ce-loading': typeof LoadingComponent;
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
|
|
@@ -93,30 +93,30 @@ 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-menu-sidebar': typeof MenuSidebarComponent;
|
|
97
|
+
'ce-menu-header': typeof MenuHeaderComponent;
|
|
98
|
+
'ce-breadcrumbs': typeof BreadcrumbsComponent;
|
|
99
|
+
'ce-tab': typeof TabComponent;
|
|
100
|
+
'ce-tab-item': typeof TabItemComponent;
|
|
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-data-table': typeof DataTableComponent;
|
|
111
|
-
'ce-items-per-page': typeof ItemsPerPageComponent;
|
|
107
|
+
'ce-avatar': typeof AvatarComponent;
|
|
108
|
+
'ce-filter-group': typeof FilterGroupComponent;
|
|
109
|
+
'ce-badge': typeof BadgeComponent;
|
|
112
110
|
}
|
|
113
111
|
}
|
|
114
112
|
|
|
115
113
|
|
|
116
114
|
declare module 'vue' {
|
|
117
115
|
interface GlobalComponents {
|
|
118
|
-
'ce-
|
|
119
|
-
'ce-
|
|
120
|
-
'ce-
|
|
116
|
+
'ce-pagination': typeof PaginationComponent;
|
|
117
|
+
'ce-progress-indicator': typeof ProgressIndicatorComponent;
|
|
118
|
+
'ce-progress-steps': typeof ProgressStepsComponent;
|
|
119
|
+
'ce-data-table': typeof DataTableComponent;
|
|
120
|
+
'ce-items-per-page': typeof ItemsPerPageComponent;
|
|
121
121
|
}
|
|
122
122
|
}
|