@comercti/react-components-hmg 0.10.17 → 0.10.20
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 +1349 -1338
- package/comerc-style-guide.umd.js +3 -3
- package/index.d.ts +3 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ expandLine: boolean;
|
|
|
33
33
|
compact: boolean;
|
|
34
34
|
loading: boolean;
|
|
35
35
|
loadingType: "spinner" | "semi-circle" | "dots";
|
|
36
|
+
truncated: boolean;
|
|
36
37
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
37
38
|
rootRef: HTMLDivElement;
|
|
38
39
|
}, HTMLDivElement>;
|
|
@@ -1666,6 +1667,8 @@ declare type DataTableProps = {
|
|
|
1666
1667
|
loading?: boolean;
|
|
1667
1668
|
/** tipo do loading na tabela */
|
|
1668
1669
|
loadingType?: 'spinner' | 'semi-circle' | 'dots';
|
|
1670
|
+
/** Define se o texto das células será truncado */
|
|
1671
|
+
truncated?: boolean;
|
|
1669
1672
|
};
|
|
1670
1673
|
|
|
1671
1674
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|