@comercti/react-components-hmg 0.8.10 → 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 +1219 -1213
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +6 -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>;
|
|
@@ -114,6 +115,7 @@ backgroundColor: string;
|
|
|
114
115
|
titleColor: string;
|
|
115
116
|
disabledSubmit: boolean;
|
|
116
117
|
disabledClear: boolean;
|
|
118
|
+
showClearButton: boolean;
|
|
117
119
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
118
120
|
menuRef: HTMLDivElement;
|
|
119
121
|
}, HTMLDivElement>;
|
|
@@ -563,6 +565,8 @@ declare type __VLS_Props_22 = {
|
|
|
563
565
|
disabledSubmit?: boolean;
|
|
564
566
|
/**Desabilita o botão de limpar */
|
|
565
567
|
disabledClear?: boolean;
|
|
568
|
+
/** Define se o botão de limpar será exibido */
|
|
569
|
+
showClearButton?: boolean;
|
|
566
570
|
};
|
|
567
571
|
|
|
568
572
|
declare type __VLS_Props_23 = {
|
|
@@ -1624,6 +1628,8 @@ declare type DataTableProps = {
|
|
|
1624
1628
|
orderByServer?: boolean;
|
|
1625
1629
|
/**Permitir a expansão da linha */
|
|
1626
1630
|
expandLine?: boolean;
|
|
1631
|
+
/** Define o estilo compacto da tabela */
|
|
1632
|
+
soft?: boolean;
|
|
1627
1633
|
};
|
|
1628
1634
|
|
|
1629
1635
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|