@comercti/react-components-hmg 0.8.20 → 0.8.22
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 +228 -229
- package/comerc-style-guide.umd.js +1 -1
- package/index.d.ts +21 -21
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2080,6 +2080,17 @@ data: IData | null;
|
|
|
2080
2080
|
export { }
|
|
2081
2081
|
|
|
2082
2082
|
|
|
2083
|
+
declare module 'vue' {
|
|
2084
|
+
interface GlobalComponents {
|
|
2085
|
+
'ce-pagination': typeof PaginationComponent;
|
|
2086
|
+
'ce-progress-indicator': typeof ProgressIndicatorComponent;
|
|
2087
|
+
'ce-progress-steps': typeof ProgressStepsComponent;
|
|
2088
|
+
'ce-data-table': typeof DataTableComponent;
|
|
2089
|
+
'ce-items-per-page': typeof ItemsPerPageComponent;
|
|
2090
|
+
}
|
|
2091
|
+
}
|
|
2092
|
+
|
|
2093
|
+
|
|
2083
2094
|
declare module 'vue' {
|
|
2084
2095
|
interface GlobalComponents {
|
|
2085
2096
|
'ce-autocomplete': typeof AutocompleteComponent;
|
|
@@ -2123,13 +2134,9 @@ declare module 'vue' {
|
|
|
2123
2134
|
|
|
2124
2135
|
declare module 'vue' {
|
|
2125
2136
|
interface GlobalComponents {
|
|
2126
|
-
'ce-
|
|
2127
|
-
'ce-
|
|
2128
|
-
'ce-
|
|
2129
|
-
'ce-content-divider': typeof ContentDividerComponent;
|
|
2130
|
-
'ce-footer': typeof FooterComponent;
|
|
2131
|
-
'ce-layout': typeof LayoutComponent;
|
|
2132
|
-
'ce-section-footer': typeof SectionFooterComponent;
|
|
2137
|
+
'ce-avatar': typeof AvatarComponent;
|
|
2138
|
+
'ce-filter-group': typeof FilterGroupComponent;
|
|
2139
|
+
'ce-badge': typeof BadgeComponent;
|
|
2133
2140
|
}
|
|
2134
2141
|
}
|
|
2135
2142
|
|
|
@@ -2147,19 +2154,12 @@ declare module 'vue' {
|
|
|
2147
2154
|
|
|
2148
2155
|
declare module 'vue' {
|
|
2149
2156
|
interface GlobalComponents {
|
|
2150
|
-
'ce-
|
|
2151
|
-
'ce-
|
|
2152
|
-
'ce-
|
|
2153
|
-
'ce-
|
|
2154
|
-
'ce-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
declare module 'vue' {
|
|
2160
|
-
interface GlobalComponents {
|
|
2161
|
-
'ce-avatar': typeof AvatarComponent;
|
|
2162
|
-
'ce-filter-group': typeof FilterGroupComponent;
|
|
2163
|
-
'ce-badge': typeof BadgeComponent;
|
|
2157
|
+
'ce-card': typeof CardComponent;
|
|
2158
|
+
'ce-card-header': typeof CardHeaderComponent;
|
|
2159
|
+
'ce-card-text': typeof CardTextComponent;
|
|
2160
|
+
'ce-content-divider': typeof ContentDividerComponent;
|
|
2161
|
+
'ce-footer': typeof FooterComponent;
|
|
2162
|
+
'ce-layout': typeof LayoutComponent;
|
|
2163
|
+
'ce-section-footer': typeof SectionFooterComponent;
|
|
2164
2164
|
}
|
|
2165
2165
|
}
|