@comercti/react-components-hmg 0.30.1 → 0.31.2
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 +478 -482
- package/comerc-style-guide.umd.js +3 -3
- package/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ order: "asc" | "desc";
|
|
|
25
25
|
search: boolean;
|
|
26
26
|
selectable: boolean;
|
|
27
27
|
singleSelect: boolean;
|
|
28
|
+
initialSelectedRows: Record<string, unknown>[];
|
|
28
29
|
striped: boolean;
|
|
29
30
|
orderByServer: boolean;
|
|
30
31
|
expandLine: boolean;
|
|
@@ -1825,7 +1826,7 @@ declare type DataTableProps = {
|
|
|
1825
1826
|
/** Ativa a opção de selecinar apenas um conteúdo da tabela */
|
|
1826
1827
|
singleSelect?: boolean;
|
|
1827
1828
|
/** Array de objetos que estão inicialmente selecionados na tabela */
|
|
1828
|
-
initialSelectedRows?: Record<string,
|
|
1829
|
+
initialSelectedRows?: Record<string, unknown>[];
|
|
1829
1830
|
/** Ativa o input de pesquisa da tabela */
|
|
1830
1831
|
search?: boolean;
|
|
1831
1832
|
/** Array de objetos que serão exibidos na tabela */
|