@comercti/vue-components-hmg 0.8.26 → 0.9.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/index.d.ts +21 -21
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1952,6 +1952,17 @@ data: IData | null;
|
|
|
1952
1952
|
export { }
|
|
1953
1953
|
|
|
1954
1954
|
|
|
1955
|
+
declare module 'vue' {
|
|
1956
|
+
interface GlobalComponents {
|
|
1957
|
+
'ce-pagination': typeof PaginationComponent;
|
|
1958
|
+
'ce-progress-indicator': typeof ProgressIndicatorComponent;
|
|
1959
|
+
'ce-progress-steps': typeof ProgressStepsComponent;
|
|
1960
|
+
'ce-data-table': typeof DataTableComponent;
|
|
1961
|
+
'ce-items-per-page': typeof ItemsPerPageComponent;
|
|
1962
|
+
}
|
|
1963
|
+
}
|
|
1964
|
+
|
|
1965
|
+
|
|
1955
1966
|
declare module 'vue' {
|
|
1956
1967
|
interface GlobalComponents {
|
|
1957
1968
|
'ce-autocomplete': typeof AutocompleteComponent;
|
|
@@ -1995,13 +2006,9 @@ declare module 'vue' {
|
|
|
1995
2006
|
|
|
1996
2007
|
declare module 'vue' {
|
|
1997
2008
|
interface GlobalComponents {
|
|
1998
|
-
'ce-
|
|
1999
|
-
'ce-
|
|
2000
|
-
'ce-
|
|
2001
|
-
'ce-content-divider': typeof ContentDividerComponent;
|
|
2002
|
-
'ce-footer': typeof FooterComponent;
|
|
2003
|
-
'ce-layout': typeof LayoutComponent;
|
|
2004
|
-
'ce-section-footer': typeof SectionFooterComponent;
|
|
2009
|
+
'ce-avatar': typeof AvatarComponent;
|
|
2010
|
+
'ce-filter-group': typeof FilterGroupComponent;
|
|
2011
|
+
'ce-badge': typeof BadgeComponent;
|
|
2005
2012
|
}
|
|
2006
2013
|
}
|
|
2007
2014
|
|
|
@@ -2019,19 +2026,12 @@ declare module 'vue' {
|
|
|
2019
2026
|
|
|
2020
2027
|
declare module 'vue' {
|
|
2021
2028
|
interface GlobalComponents {
|
|
2022
|
-
'ce-
|
|
2023
|
-
'ce-
|
|
2024
|
-
'ce-
|
|
2025
|
-
'ce-
|
|
2026
|
-
'ce-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
declare module 'vue' {
|
|
2032
|
-
interface GlobalComponents {
|
|
2033
|
-
'ce-avatar': typeof AvatarComponent;
|
|
2034
|
-
'ce-filter-group': typeof FilterGroupComponent;
|
|
2035
|
-
'ce-badge': typeof BadgeComponent;
|
|
2029
|
+
'ce-card': typeof CardComponent;
|
|
2030
|
+
'ce-card-header': typeof CardHeaderComponent;
|
|
2031
|
+
'ce-card-text': typeof CardTextComponent;
|
|
2032
|
+
'ce-content-divider': typeof ContentDividerComponent;
|
|
2033
|
+
'ce-footer': typeof FooterComponent;
|
|
2034
|
+
'ce-layout': typeof LayoutComponent;
|
|
2035
|
+
'ce-section-footer': typeof SectionFooterComponent;
|
|
2036
2036
|
}
|
|
2037
2037
|
}
|