@comercti/web-components-hmg 0.10.21 → 0.10.22
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 +22 -22
- package/comerc-style-guide.es.js +512 -509
- package/comerc-style-guide.umd.js +22 -22
- package/index.d.ts +21 -21
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -37,6 +37,27 @@ data: IData | null;
|
|
|
37
37
|
export { }
|
|
38
38
|
|
|
39
39
|
|
|
40
|
+
declare module 'vue' {
|
|
41
|
+
interface GlobalComponents {
|
|
42
|
+
'ce-autocomplete': typeof AutocompleteComponent;
|
|
43
|
+
'ce-button': typeof ButtonComponent;
|
|
44
|
+
'ce-checkbox': typeof CheckboxComponent;
|
|
45
|
+
'ce-checkbox-group': typeof CheckboxGroupComponent;
|
|
46
|
+
'ce-date-picker': typeof DatePickerComponent;
|
|
47
|
+
'ce-input': typeof InputComponent;
|
|
48
|
+
'ce-button-groups': typeof ButtonGroupsComponent;
|
|
49
|
+
'ce-dropdown': typeof DropdownComponent;
|
|
50
|
+
'ce-file-upload': typeof FileUploadComponent;
|
|
51
|
+
'ce-radio-group': typeof RadioGroupComponent;
|
|
52
|
+
'ce-select': typeof SelectComponent;
|
|
53
|
+
'ce-slider': typeof SliderComponent;
|
|
54
|
+
'ce-toggle': typeof ToggleComponent;
|
|
55
|
+
'ce-button-wrapper': typeof ButtonWrapperComponent;
|
|
56
|
+
'ce-button-pagination': typeof ButtonPaginationComponent;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
|
|
40
61
|
declare module 'vue' {
|
|
41
62
|
interface GlobalComponents {
|
|
42
63
|
'ce-col': typeof ColComponent;
|
|
@@ -70,27 +91,6 @@ declare module 'vue' {
|
|
|
70
91
|
}
|
|
71
92
|
|
|
72
93
|
|
|
73
|
-
declare module 'vue' {
|
|
74
|
-
interface GlobalComponents {
|
|
75
|
-
'ce-autocomplete': typeof AutocompleteComponent;
|
|
76
|
-
'ce-button': typeof ButtonComponent;
|
|
77
|
-
'ce-checkbox': typeof CheckboxComponent;
|
|
78
|
-
'ce-checkbox-group': typeof CheckboxGroupComponent;
|
|
79
|
-
'ce-date-picker': typeof DatePickerComponent;
|
|
80
|
-
'ce-input': typeof InputComponent;
|
|
81
|
-
'ce-button-groups': typeof ButtonGroupsComponent;
|
|
82
|
-
'ce-dropdown': typeof DropdownComponent;
|
|
83
|
-
'ce-file-upload': typeof FileUploadComponent;
|
|
84
|
-
'ce-radio-group': typeof RadioGroupComponent;
|
|
85
|
-
'ce-select': typeof SelectComponent;
|
|
86
|
-
'ce-slider': typeof SliderComponent;
|
|
87
|
-
'ce-toggle': typeof ToggleComponent;
|
|
88
|
-
'ce-button-wrapper': typeof ButtonWrapperComponent;
|
|
89
|
-
'ce-button-pagination': typeof ButtonPaginationComponent;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
|
|
94
94
|
declare module 'vue' {
|
|
95
95
|
interface GlobalComponents {
|
|
96
96
|
'ce-banners': typeof BannersComponent;
|