@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.
@@ -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
 
@@ -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