@comercti/react-components-hmg 0.28.1 → 0.31.1
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 +10 -7
- package/comerc-style-guide.es.js +2212 -2193
- package/comerc-style-guide.umd.js +10 -7
- 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, any>[];
|
|
28
29
|
striped: boolean;
|
|
29
30
|
orderByServer: boolean;
|
|
30
31
|
expandLine: boolean;
|
|
@@ -2243,7 +2244,7 @@ declare interface IFields {
|
|
|
2243
2244
|
}
|
|
2244
2245
|
|
|
2245
2246
|
declare interface IItems {
|
|
2246
|
-
id: number;
|
|
2247
|
+
id: number | string;
|
|
2247
2248
|
title: string;
|
|
2248
2249
|
description: string;
|
|
2249
2250
|
status: keyof IStatus;
|