@comercti/web-components-hmg 0.8.8 → 0.8.10
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 +1 -1
- package/comerc-style-guide.es.js +1 -1
- package/comerc-style-guide.umd.js +1 -1
- package/index.d.ts +12 -12
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -80,11 +80,13 @@ declare module 'vue' {
|
|
|
80
80
|
|
|
81
81
|
declare module 'vue' {
|
|
82
82
|
interface GlobalComponents {
|
|
83
|
-
'ce-
|
|
84
|
-
'ce-
|
|
85
|
-
'ce-
|
|
86
|
-
'ce-
|
|
87
|
-
'ce-
|
|
83
|
+
'ce-card': typeof CardComponent;
|
|
84
|
+
'ce-card-header': typeof CardHeaderComponent;
|
|
85
|
+
'ce-card-text': typeof CardTextComponent;
|
|
86
|
+
'ce-content-divider': typeof ContentDividerComponent;
|
|
87
|
+
'ce-footer': typeof FooterComponent;
|
|
88
|
+
'ce-layout': typeof LayoutComponent;
|
|
89
|
+
'ce-section-footer': typeof SectionFooterComponent;
|
|
88
90
|
}
|
|
89
91
|
}
|
|
90
92
|
|
|
@@ -102,13 +104,11 @@ declare module 'vue' {
|
|
|
102
104
|
|
|
103
105
|
declare module 'vue' {
|
|
104
106
|
interface GlobalComponents {
|
|
105
|
-
'ce-
|
|
106
|
-
'ce-
|
|
107
|
-
'ce-
|
|
108
|
-
'ce-
|
|
109
|
-
'ce-
|
|
110
|
-
'ce-layout': typeof LayoutComponent;
|
|
111
|
-
'ce-section-footer': typeof SectionFooterComponent;
|
|
107
|
+
'ce-pagination': typeof PaginationComponent;
|
|
108
|
+
'ce-progress-indicator': typeof ProgressIndicatorComponent;
|
|
109
|
+
'ce-progress-steps': typeof ProgressStepsComponent;
|
|
110
|
+
'ce-data-table': typeof DataTableComponent;
|
|
111
|
+
'ce-items-per-page': typeof ItemsPerPageComponent;
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
114
|
|