@comercti/web-components-hmg 0.21.6 → 0.21.7
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 +2 -2
- package/comerc-style-guide.es.js +10 -7
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +17 -17
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -37,6 +37,15 @@ data: IData | null;
|
|
|
37
37
|
export { }
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
declare module 'vue' {
|
|
41
|
+
interface GlobalComponents {
|
|
42
|
+
'ce-col': typeof ColComponent;
|
|
43
|
+
'ce-row': typeof RowComponent;
|
|
44
|
+
'ce-container': typeof ContainerComponent;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
|
|
40
49
|
declare module 'vue' {
|
|
41
50
|
interface GlobalComponents {
|
|
42
51
|
'ce-autocomplete': typeof AutocompleteComponent;
|
|
@@ -61,9 +70,14 @@ declare module 'vue' {
|
|
|
61
70
|
|
|
62
71
|
declare module 'vue' {
|
|
63
72
|
interface GlobalComponents {
|
|
64
|
-
'ce-
|
|
65
|
-
'ce-
|
|
66
|
-
'ce-
|
|
73
|
+
'ce-card': typeof CardComponent;
|
|
74
|
+
'ce-card-header': typeof CardHeaderComponent;
|
|
75
|
+
'ce-card-text': typeof CardTextComponent;
|
|
76
|
+
'ce-content-divider': typeof ContentDividerComponent;
|
|
77
|
+
'ce-footer': typeof FooterComponent;
|
|
78
|
+
'ce-layout': typeof LayoutComponent;
|
|
79
|
+
'ce-section-footer': typeof SectionFooterComponent;
|
|
80
|
+
'ce-collapse': typeof CollapseComponent;
|
|
67
81
|
}
|
|
68
82
|
}
|
|
69
83
|
|
|
@@ -90,20 +104,6 @@ declare module 'vue' {
|
|
|
90
104
|
}
|
|
91
105
|
|
|
92
106
|
|
|
93
|
-
declare module 'vue' {
|
|
94
|
-
interface GlobalComponents {
|
|
95
|
-
'ce-card': typeof CardComponent;
|
|
96
|
-
'ce-card-header': typeof CardHeaderComponent;
|
|
97
|
-
'ce-card-text': typeof CardTextComponent;
|
|
98
|
-
'ce-content-divider': typeof ContentDividerComponent;
|
|
99
|
-
'ce-footer': typeof FooterComponent;
|
|
100
|
-
'ce-layout': typeof LayoutComponent;
|
|
101
|
-
'ce-section-footer': typeof SectionFooterComponent;
|
|
102
|
-
'ce-collapse': typeof CollapseComponent;
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
|
|
107
107
|
declare module 'vue' {
|
|
108
108
|
interface GlobalComponents {
|
|
109
109
|
'ce-pagination': typeof PaginationComponent;
|