@comercti/web-components-hmg 0.3.9 → 0.3.11
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 +898 -881
- package/comerc-style-guide.umd.js +7 -7
- package/index.d.ts +16 -16
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -78,19 +78,6 @@ declare module 'vue' {
|
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
|
|
81
|
-
declare module 'vue' {
|
|
82
|
-
interface GlobalComponents {
|
|
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;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
|
|
94
81
|
declare module 'vue' {
|
|
95
82
|
interface GlobalComponents {
|
|
96
83
|
'ce-banners': typeof BannersComponent;
|
|
@@ -104,9 +91,13 @@ declare module 'vue' {
|
|
|
104
91
|
|
|
105
92
|
declare module 'vue' {
|
|
106
93
|
interface GlobalComponents {
|
|
107
|
-
'ce-
|
|
108
|
-
'ce-
|
|
109
|
-
'ce-
|
|
94
|
+
'ce-card': typeof CardComponent;
|
|
95
|
+
'ce-card-header': typeof CardHeaderComponent;
|
|
96
|
+
'ce-card-text': typeof CardTextComponent;
|
|
97
|
+
'ce-content-divider': typeof ContentDividerComponent;
|
|
98
|
+
'ce-footer': typeof FooterComponent;
|
|
99
|
+
'ce-layout': typeof LayoutComponent;
|
|
100
|
+
'ce-section-footer': typeof SectionFooterComponent;
|
|
110
101
|
}
|
|
111
102
|
}
|
|
112
103
|
|
|
@@ -120,3 +111,12 @@ declare module 'vue' {
|
|
|
120
111
|
'ce-items-per-page': typeof ItemsPerPageComponent;
|
|
121
112
|
}
|
|
122
113
|
}
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
declare module 'vue' {
|
|
117
|
+
interface GlobalComponents {
|
|
118
|
+
'ce-avatar': typeof AvatarComponent;
|
|
119
|
+
'ce-filter-group': typeof FilterGroupComponent;
|
|
120
|
+
'ce-badge': typeof BadgeComponent;
|
|
121
|
+
}
|
|
122
|
+
}
|