@comercti/web-components-hmg 0.8.4 → 0.8.6
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 +4 -4
- package/comerc-style-guide.es.js +867 -858
- package/comerc-style-guide.umd.js +5 -5
- package/index.d.ts +16 -16
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -58,6 +58,15 @@ declare module 'vue' {
|
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
|
|
61
|
+
declare module 'vue' {
|
|
62
|
+
interface GlobalComponents {
|
|
63
|
+
'ce-col': typeof ColComponent;
|
|
64
|
+
'ce-row': typeof RowComponent;
|
|
65
|
+
'ce-container': typeof ContainerComponent;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
|
|
61
70
|
declare module 'vue' {
|
|
62
71
|
interface GlobalComponents {
|
|
63
72
|
'ce-menu-sidebar': typeof MenuSidebarComponent;
|
|
@@ -71,9 +80,13 @@ declare module 'vue' {
|
|
|
71
80
|
|
|
72
81
|
declare module 'vue' {
|
|
73
82
|
interface GlobalComponents {
|
|
74
|
-
'ce-
|
|
75
|
-
'ce-
|
|
76
|
-
'ce-
|
|
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;
|
|
77
90
|
}
|
|
78
91
|
}
|
|
79
92
|
|
|
@@ -100,19 +113,6 @@ declare module 'vue' {
|
|
|
100
113
|
}
|
|
101
114
|
|
|
102
115
|
|
|
103
|
-
declare module 'vue' {
|
|
104
|
-
interface GlobalComponents {
|
|
105
|
-
'ce-card': typeof CardComponent;
|
|
106
|
-
'ce-card-header': typeof CardHeaderComponent;
|
|
107
|
-
'ce-card-text': typeof CardTextComponent;
|
|
108
|
-
'ce-content-divider': typeof ContentDividerComponent;
|
|
109
|
-
'ce-footer': typeof FooterComponent;
|
|
110
|
-
'ce-layout': typeof LayoutComponent;
|
|
111
|
-
'ce-section-footer': typeof SectionFooterComponent;
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
|
|
116
116
|
declare module 'vue' {
|
|
117
117
|
interface GlobalComponents {
|
|
118
118
|
'ce-avatar': typeof AvatarComponent;
|