@procore/data-table 15.0.0-alpha.4 → 15.0.0-alpha.5
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/CHANGELOG.md +30 -0
- package/dist/legacy/index.cjs +265 -74
- package/dist/legacy/index.d.cts +2 -0
- package/dist/legacy/index.d.ts +2 -0
- package/dist/legacy/index.js +265 -74
- package/dist/modern/index.cjs +265 -74
- package/dist/modern/index.d.cts +2 -0
- package/dist/modern/index.d.ts +2 -0
- package/dist/modern/index.js +265 -74
- package/package.json +2 -5
package/dist/modern/index.d.cts
CHANGED
|
@@ -1382,6 +1382,7 @@ interface InternalTableContext {
|
|
|
1382
1382
|
getColumnDefinition: (field: string) => ColumnDefinition | undefined;
|
|
1383
1383
|
totalRowCount: number;
|
|
1384
1384
|
setTotalRowCount: React$1.Dispatch<React$1.SetStateAction<number>>;
|
|
1385
|
+
hasDuplicateRowIds: boolean;
|
|
1385
1386
|
setSelectedGroupIndex?: React$1.Dispatch<React$1.SetStateAction<string | null>>;
|
|
1386
1387
|
headerCheckboxSelection?: boolean | HeaderCheckboxSelectionCallback;
|
|
1387
1388
|
}
|
|
@@ -1440,6 +1441,7 @@ interface BulkActionProps {
|
|
|
1440
1441
|
showAlways?: boolean;
|
|
1441
1442
|
showEditButtonLabel?: boolean;
|
|
1442
1443
|
editButtonText?: string;
|
|
1444
|
+
excludeGroupRowCount?: boolean;
|
|
1443
1445
|
style?: React$1.CSSProperties;
|
|
1444
1446
|
}
|
|
1445
1447
|
|
package/dist/modern/index.d.ts
CHANGED
|
@@ -1382,6 +1382,7 @@ interface InternalTableContext {
|
|
|
1382
1382
|
getColumnDefinition: (field: string) => ColumnDefinition | undefined;
|
|
1383
1383
|
totalRowCount: number;
|
|
1384
1384
|
setTotalRowCount: React$1.Dispatch<React$1.SetStateAction<number>>;
|
|
1385
|
+
hasDuplicateRowIds: boolean;
|
|
1385
1386
|
setSelectedGroupIndex?: React$1.Dispatch<React$1.SetStateAction<string | null>>;
|
|
1386
1387
|
headerCheckboxSelection?: boolean | HeaderCheckboxSelectionCallback;
|
|
1387
1388
|
}
|
|
@@ -1440,6 +1441,7 @@ interface BulkActionProps {
|
|
|
1440
1441
|
showAlways?: boolean;
|
|
1441
1442
|
showEditButtonLabel?: boolean;
|
|
1442
1443
|
editButtonText?: string;
|
|
1444
|
+
excludeGroupRowCount?: boolean;
|
|
1443
1445
|
style?: React$1.CSSProperties;
|
|
1444
1446
|
}
|
|
1445
1447
|
|