@comercti/react-components-hmg 0.8.11 → 0.8.12
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 +2 -2
- package/comerc-style-guide.es.js +1080 -1081
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +3 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ selectable: boolean;
|
|
|
30
30
|
striped: boolean;
|
|
31
31
|
orderByServer: boolean;
|
|
32
32
|
expandLine: boolean;
|
|
33
|
+
soft: boolean;
|
|
33
34
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
34
35
|
rootRef: HTMLDivElement;
|
|
35
36
|
}, HTMLDivElement>;
|
|
@@ -1627,6 +1628,8 @@ declare type DataTableProps = {
|
|
|
1627
1628
|
orderByServer?: boolean;
|
|
1628
1629
|
/**Permitir a expansão da linha */
|
|
1629
1630
|
expandLine?: boolean;
|
|
1631
|
+
/** Define o estilo compacto da tabela */
|
|
1632
|
+
soft?: boolean;
|
|
1630
1633
|
};
|
|
1631
1634
|
|
|
1632
1635
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|