@comercti/web-components-hmg 0.3.10 → 0.6.1
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 +1022 -1032
- package/comerc-style-guide.umd.js +8 -8
- package/index.d.ts +22 -22
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -69,46 +69,46 @@ declare module 'vue' {
|
|
|
69
69
|
|
|
70
70
|
declare module 'vue' {
|
|
71
71
|
interface GlobalComponents {
|
|
72
|
-
'ce-
|
|
73
|
-
'ce-
|
|
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
|
|
|
80
80
|
|
|
81
81
|
declare module 'vue' {
|
|
82
82
|
interface GlobalComponents {
|
|
83
|
-
'ce-
|
|
84
|
-
'ce-
|
|
85
|
-
'ce-
|
|
86
|
-
'ce-
|
|
87
|
-
'ce-
|
|
88
|
-
'ce-layout': typeof LayoutComponent;
|
|
89
|
-
'ce-section-footer': typeof SectionFooterComponent;
|
|
83
|
+
'ce-pagination': typeof PaginationComponent;
|
|
84
|
+
'ce-progress-indicator': typeof ProgressIndicatorComponent;
|
|
85
|
+
'ce-progress-steps': typeof ProgressStepsComponent;
|
|
86
|
+
'ce-data-table': typeof DataTableComponent;
|
|
87
|
+
'ce-items-per-page': typeof ItemsPerPageComponent;
|
|
90
88
|
}
|
|
91
89
|
}
|
|
92
90
|
|
|
93
91
|
|
|
94
92
|
declare module 'vue' {
|
|
95
93
|
interface GlobalComponents {
|
|
96
|
-
'ce-
|
|
97
|
-
'ce-
|
|
98
|
-
'ce-
|
|
99
|
-
'ce-
|
|
100
|
-
'ce-
|
|
94
|
+
'ce-menu-sidebar': typeof MenuSidebarComponent;
|
|
95
|
+
'ce-menu-header': typeof MenuHeaderComponent;
|
|
96
|
+
'ce-breadcrumbs': typeof BreadcrumbsComponent;
|
|
97
|
+
'ce-tab': typeof TabComponent;
|
|
98
|
+
'ce-tab-item': typeof TabItemComponent;
|
|
101
99
|
}
|
|
102
100
|
}
|
|
103
101
|
|
|
104
102
|
|
|
105
103
|
declare module 'vue' {
|
|
106
104
|
interface GlobalComponents {
|
|
107
|
-
'ce-
|
|
108
|
-
'ce-
|
|
109
|
-
'ce-
|
|
110
|
-
'ce-
|
|
111
|
-
'ce-
|
|
105
|
+
'ce-card': typeof CardComponent;
|
|
106
|
+
'ce-card-header': typeof CardHeaderComponent;
|
|
107
|
+
'ce-card-text': typeof CardTextComponent;
|
|
108
|
+
'ce-content-divider': typeof ContentDividerComponent;
|
|
109
|
+
'ce-footer': typeof FooterComponent;
|
|
110
|
+
'ce-layout': typeof LayoutComponent;
|
|
111
|
+
'ce-section-footer': typeof SectionFooterComponent;
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
114
|
|