@comercti/web-components-hmg 0.3.3 → 0.3.5
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 +25 -25
- package/comerc-style-guide.es.js +1317 -1310
- package/comerc-style-guide.umd.js +25 -25
- package/index.d.ts +13 -13
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -67,6 +67,19 @@ declare module 'vue' {
|
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
|
|
70
|
+
declare module 'vue' {
|
|
71
|
+
interface GlobalComponents {
|
|
72
|
+
'ce-card': typeof CardComponent;
|
|
73
|
+
'ce-card-header': typeof CardHeaderComponent;
|
|
74
|
+
'ce-card-text': typeof CardTextComponent;
|
|
75
|
+
'ce-content-divider': typeof ContentDividerComponent;
|
|
76
|
+
'ce-footer': typeof FooterComponent;
|
|
77
|
+
'ce-layout': typeof LayoutComponent;
|
|
78
|
+
'ce-section-footer': typeof SectionFooterComponent;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
|
|
70
83
|
declare module 'vue' {
|
|
71
84
|
interface GlobalComponents {
|
|
72
85
|
'ce-menu-sidebar': typeof MenuSidebarComponent;
|
|
@@ -89,19 +102,6 @@ declare module 'vue' {
|
|
|
89
102
|
}
|
|
90
103
|
|
|
91
104
|
|
|
92
|
-
declare module 'vue' {
|
|
93
|
-
interface GlobalComponents {
|
|
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;
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
|
|
105
105
|
declare module 'vue' {
|
|
106
106
|
interface GlobalComponents {
|
|
107
107
|
'ce-pagination': typeof PaginationComponent;
|