@comercti/react-components-hmg 0.8.22 → 0.8.24
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 +3 -3
- package/comerc-style-guide.es.js +682 -686
- package/comerc-style-guide.umd.js +5 -5
- package/index.d.ts +24 -21
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -755,6 +755,8 @@ declare type __VLS_Props_7 = {
|
|
|
755
755
|
block?: boolean;
|
|
756
756
|
/** Controla o estado visual indeterminate */
|
|
757
757
|
indeterminate?: boolean;
|
|
758
|
+
/** Se o checkbox deve reservar espaço para feedback de erro */
|
|
759
|
+
reserveSpaceFeedback?: boolean;
|
|
758
760
|
};
|
|
759
761
|
|
|
760
762
|
declare type __VLS_Props_8 = {
|
|
@@ -1668,6 +1670,7 @@ invalid: boolean;
|
|
|
1668
1670
|
disabled: boolean;
|
|
1669
1671
|
block: boolean;
|
|
1670
1672
|
indeterminate: boolean;
|
|
1673
|
+
reserveSpaceFeedback: boolean;
|
|
1671
1674
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
1672
1675
|
inputRef: HTMLInputElement;
|
|
1673
1676
|
}, any>;
|
|
@@ -2080,17 +2083,6 @@ data: IData | null;
|
|
|
2080
2083
|
export { }
|
|
2081
2084
|
|
|
2082
2085
|
|
|
2083
|
-
declare module 'vue' {
|
|
2084
|
-
interface GlobalComponents {
|
|
2085
|
-
'ce-pagination': typeof PaginationComponent;
|
|
2086
|
-
'ce-progress-indicator': typeof ProgressIndicatorComponent;
|
|
2087
|
-
'ce-progress-steps': typeof ProgressStepsComponent;
|
|
2088
|
-
'ce-data-table': typeof DataTableComponent;
|
|
2089
|
-
'ce-items-per-page': typeof ItemsPerPageComponent;
|
|
2090
|
-
}
|
|
2091
|
-
}
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
2086
|
declare module 'vue' {
|
|
2095
2087
|
interface GlobalComponents {
|
|
2096
2088
|
'ce-autocomplete': typeof AutocompleteComponent;
|
|
@@ -2134,9 +2126,13 @@ declare module 'vue' {
|
|
|
2134
2126
|
|
|
2135
2127
|
declare module 'vue' {
|
|
2136
2128
|
interface GlobalComponents {
|
|
2137
|
-
'ce-
|
|
2138
|
-
'ce-
|
|
2139
|
-
'ce-
|
|
2129
|
+
'ce-card': typeof CardComponent;
|
|
2130
|
+
'ce-card-header': typeof CardHeaderComponent;
|
|
2131
|
+
'ce-card-text': typeof CardTextComponent;
|
|
2132
|
+
'ce-content-divider': typeof ContentDividerComponent;
|
|
2133
|
+
'ce-footer': typeof FooterComponent;
|
|
2134
|
+
'ce-layout': typeof LayoutComponent;
|
|
2135
|
+
'ce-section-footer': typeof SectionFooterComponent;
|
|
2140
2136
|
}
|
|
2141
2137
|
}
|
|
2142
2138
|
|
|
@@ -2154,12 +2150,19 @@ declare module 'vue' {
|
|
|
2154
2150
|
|
|
2155
2151
|
declare module 'vue' {
|
|
2156
2152
|
interface GlobalComponents {
|
|
2157
|
-
'ce-
|
|
2158
|
-
'ce-
|
|
2159
|
-
'ce-
|
|
2160
|
-
'ce-
|
|
2161
|
-
'ce-
|
|
2162
|
-
|
|
2163
|
-
|
|
2153
|
+
'ce-pagination': typeof PaginationComponent;
|
|
2154
|
+
'ce-progress-indicator': typeof ProgressIndicatorComponent;
|
|
2155
|
+
'ce-progress-steps': typeof ProgressStepsComponent;
|
|
2156
|
+
'ce-data-table': typeof DataTableComponent;
|
|
2157
|
+
'ce-items-per-page': typeof ItemsPerPageComponent;
|
|
2158
|
+
}
|
|
2159
|
+
}
|
|
2160
|
+
|
|
2161
|
+
|
|
2162
|
+
declare module 'vue' {
|
|
2163
|
+
interface GlobalComponents {
|
|
2164
|
+
'ce-avatar': typeof AvatarComponent;
|
|
2165
|
+
'ce-filter-group': typeof FilterGroupComponent;
|
|
2166
|
+
'ce-badge': typeof BadgeComponent;
|
|
2164
2167
|
}
|
|
2165
2168
|
}
|