@procore/data-table 14.29.0 → 14.31.0
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 +737 -1787
- package/dist/legacy/index.d.cts +2 -0
- package/dist/legacy/index.d.ts +2 -0
- package/dist/legacy/index.js +737 -1787
- package/dist/modern/index.cjs +737 -1787
- package/dist/modern/index.d.cts +2 -0
- package/dist/modern/index.d.ts +2 -0
- package/dist/modern/index.js +737 -1787
- package/package.json +13 -12
package/dist/legacy/index.d.cts
CHANGED
|
@@ -1416,6 +1416,7 @@ interface SearchProps {
|
|
|
1416
1416
|
/** The placeholder to the Search input */
|
|
1417
1417
|
placeholder?: string;
|
|
1418
1418
|
disabled?: boolean;
|
|
1419
|
+
debounceDelay?: number;
|
|
1419
1420
|
}
|
|
1420
1421
|
|
|
1421
1422
|
interface QuickControlsProps extends Omit<SearchProps, 'disabled'> {
|
|
@@ -1435,6 +1436,7 @@ interface BulkActionProps {
|
|
|
1435
1436
|
showAlways?: boolean;
|
|
1436
1437
|
showEditButtonLabel?: boolean;
|
|
1437
1438
|
editButtonText?: string;
|
|
1439
|
+
excludeGroupRowCount?: boolean;
|
|
1438
1440
|
style?: React__default.CSSProperties;
|
|
1439
1441
|
}
|
|
1440
1442
|
|
package/dist/legacy/index.d.ts
CHANGED
|
@@ -1416,6 +1416,7 @@ interface SearchProps {
|
|
|
1416
1416
|
/** The placeholder to the Search input */
|
|
1417
1417
|
placeholder?: string;
|
|
1418
1418
|
disabled?: boolean;
|
|
1419
|
+
debounceDelay?: number;
|
|
1419
1420
|
}
|
|
1420
1421
|
|
|
1421
1422
|
interface QuickControlsProps extends Omit<SearchProps, 'disabled'> {
|
|
@@ -1435,6 +1436,7 @@ interface BulkActionProps {
|
|
|
1435
1436
|
showAlways?: boolean;
|
|
1436
1437
|
showEditButtonLabel?: boolean;
|
|
1437
1438
|
editButtonText?: string;
|
|
1439
|
+
excludeGroupRowCount?: boolean;
|
|
1438
1440
|
style?: React__default.CSSProperties;
|
|
1439
1441
|
}
|
|
1440
1442
|
|