@comercti/vue-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 +6 -6
- package/comerc-style-guide.es.js +443 -447
- package/comerc-style-guide.umd.js +6 -6
- package/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ order: "asc" | "desc";
|
|
|
24
24
|
search: boolean;
|
|
25
25
|
selectable: boolean;
|
|
26
26
|
singleSelect: boolean;
|
|
27
|
+
initialSelectedRows: Record<string, unknown>[];
|
|
27
28
|
striped: boolean;
|
|
28
29
|
orderByServer: boolean;
|
|
29
30
|
expandLine: boolean;
|
|
@@ -2001,7 +2002,7 @@ declare type DataTableProps = {
|
|
|
2001
2002
|
/** Ativa a opção de selecinar apenas um conteúdo da tabela */
|
|
2002
2003
|
singleSelect?: boolean;
|
|
2003
2004
|
/** Array de objetos que estão inicialmente selecionados na tabela */
|
|
2004
|
-
initialSelectedRows?: Record<string,
|
|
2005
|
+
initialSelectedRows?: Record<string, unknown>[];
|
|
2005
2006
|
/** Ativa o input de pesquisa da tabela */
|
|
2006
2007
|
search?: boolean;
|
|
2007
2008
|
/** Array de objetos que serão exibidos na tabela */
|