@procore/data-table 14.29.0 → 14.31.0-cdn.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 +765 -1795
- package/dist/legacy/index.d.cts +5 -2
- package/dist/legacy/index.d.ts +5 -2
- package/dist/legacy/index.js +765 -1795
- package/dist/modern/index.cjs +765 -1795
- package/dist/modern/index.d.cts +5 -2
- package/dist/modern/index.d.ts +5 -2
- package/dist/modern/index.js +765 -1795
- package/package.json +14 -12
package/dist/modern/index.d.cts
CHANGED
|
@@ -1148,6 +1148,7 @@ interface DataTableProps {
|
|
|
1148
1148
|
showExpandCollapseAllToggle?: boolean;
|
|
1149
1149
|
translations?: DataTableTranslations;
|
|
1150
1150
|
enableCellTextSelection?: boolean;
|
|
1151
|
+
enableCDN?: boolean;
|
|
1151
1152
|
}
|
|
1152
1153
|
interface ClientSideDataTableProps extends Omit<DataTableProps, 'onServerSideDataRequest' | 'showExpandCollapseAllToggle'> {
|
|
1153
1154
|
}
|
|
@@ -1416,6 +1417,7 @@ interface SearchProps {
|
|
|
1416
1417
|
/** The placeholder to the Search input */
|
|
1417
1418
|
placeholder?: string;
|
|
1418
1419
|
disabled?: boolean;
|
|
1420
|
+
debounceDelay?: number;
|
|
1419
1421
|
}
|
|
1420
1422
|
|
|
1421
1423
|
interface QuickControlsProps extends Omit<SearchProps, 'disabled'> {
|
|
@@ -1435,10 +1437,11 @@ interface BulkActionProps {
|
|
|
1435
1437
|
showAlways?: boolean;
|
|
1436
1438
|
showEditButtonLabel?: boolean;
|
|
1437
1439
|
editButtonText?: string;
|
|
1440
|
+
excludeGroupRowCount?: boolean;
|
|
1438
1441
|
style?: React__default.CSSProperties;
|
|
1439
1442
|
}
|
|
1440
1443
|
|
|
1441
|
-
declare const _default$1: (({ analytics, children, columnDefinitions: _columnDefinitions, customBulkEditorFields, enableDynamicRowHeight, enableGroupEditAndValidation, filterGroups, getRowId, initialTableConfig: _initialTableConfig, onBulkEditUpdate, onTableConfigChange, translations, enableCellTextSelection, localStoragePersistenceKey, }: React__default.PropsWithChildren<ClientSideDataTableProps>) => React__default.JSX.Element) & {
|
|
1444
|
+
declare const _default$1: (({ analytics, children, columnDefinitions: _columnDefinitions, customBulkEditorFields, enableDynamicRowHeight, enableGroupEditAndValidation, filterGroups, getRowId, initialTableConfig: _initialTableConfig, onBulkEditUpdate, onTableConfigChange, translations, enableCellTextSelection, localStoragePersistenceKey, enableCDN, }: React__default.PropsWithChildren<ClientSideDataTableProps>) => React__default.JSX.Element) & {
|
|
1442
1445
|
BulkActions: React__default.FunctionComponent<React__default.PropsWithChildren<BulkActionProps>>;
|
|
1443
1446
|
BulkEditActionButton: React__default.FunctionComponent<ActionButtonProps>;
|
|
1444
1447
|
ConfigPanelButton: React__default.FC<{}>;
|
|
@@ -1475,7 +1478,7 @@ declare const MultiSelectQuickFilterRenderer: (props: FilterProps<any[]>) => Rea
|
|
|
1475
1478
|
|
|
1476
1479
|
declare const SingleSelectQuickFilterRenderer: (props: FilterProps<any[]>) => React__default.JSX.Element;
|
|
1477
1480
|
|
|
1478
|
-
declare const _default: (({ analytics, children, columnDefinitions: _columnDefinitions, customBulkEditorFields, enableDynamicRowHeight, enableGroupEditAndValidation, filterGroups, getRowId, initialTableConfig: _initialTableConfig, onBulkEditUpdate, onServerSideDataRequest, onTableConfigChange, enableCellTextSelection, showExpandCollapseAllToggle, translations, localStoragePersistenceKey, }: React__default.PropsWithChildren<DataTableProps>) => React__default.JSX.Element) & {
|
|
1481
|
+
declare const _default: (({ analytics, children, columnDefinitions: _columnDefinitions, customBulkEditorFields, enableDynamicRowHeight, enableGroupEditAndValidation, filterGroups, getRowId, initialTableConfig: _initialTableConfig, onBulkEditUpdate, onServerSideDataRequest, onTableConfigChange, enableCellTextSelection, showExpandCollapseAllToggle, translations, localStoragePersistenceKey, enableCDN, }: React__default.PropsWithChildren<DataTableProps>) => React__default.JSX.Element) & {
|
|
1479
1482
|
BulkActions: React__default.FunctionComponent<React__default.PropsWithChildren<BulkActionProps>>;
|
|
1480
1483
|
BulkEditActionButton: React__default.FunctionComponent<ActionButtonProps>;
|
|
1481
1484
|
ConfigPanelButton: React__default.FC<{}>;
|
package/dist/modern/index.d.ts
CHANGED
|
@@ -1148,6 +1148,7 @@ interface DataTableProps {
|
|
|
1148
1148
|
showExpandCollapseAllToggle?: boolean;
|
|
1149
1149
|
translations?: DataTableTranslations;
|
|
1150
1150
|
enableCellTextSelection?: boolean;
|
|
1151
|
+
enableCDN?: boolean;
|
|
1151
1152
|
}
|
|
1152
1153
|
interface ClientSideDataTableProps extends Omit<DataTableProps, 'onServerSideDataRequest' | 'showExpandCollapseAllToggle'> {
|
|
1153
1154
|
}
|
|
@@ -1416,6 +1417,7 @@ interface SearchProps {
|
|
|
1416
1417
|
/** The placeholder to the Search input */
|
|
1417
1418
|
placeholder?: string;
|
|
1418
1419
|
disabled?: boolean;
|
|
1420
|
+
debounceDelay?: number;
|
|
1419
1421
|
}
|
|
1420
1422
|
|
|
1421
1423
|
interface QuickControlsProps extends Omit<SearchProps, 'disabled'> {
|
|
@@ -1435,10 +1437,11 @@ interface BulkActionProps {
|
|
|
1435
1437
|
showAlways?: boolean;
|
|
1436
1438
|
showEditButtonLabel?: boolean;
|
|
1437
1439
|
editButtonText?: string;
|
|
1440
|
+
excludeGroupRowCount?: boolean;
|
|
1438
1441
|
style?: React__default.CSSProperties;
|
|
1439
1442
|
}
|
|
1440
1443
|
|
|
1441
|
-
declare const _default$1: (({ analytics, children, columnDefinitions: _columnDefinitions, customBulkEditorFields, enableDynamicRowHeight, enableGroupEditAndValidation, filterGroups, getRowId, initialTableConfig: _initialTableConfig, onBulkEditUpdate, onTableConfigChange, translations, enableCellTextSelection, localStoragePersistenceKey, }: React__default.PropsWithChildren<ClientSideDataTableProps>) => React__default.JSX.Element) & {
|
|
1444
|
+
declare const _default$1: (({ analytics, children, columnDefinitions: _columnDefinitions, customBulkEditorFields, enableDynamicRowHeight, enableGroupEditAndValidation, filterGroups, getRowId, initialTableConfig: _initialTableConfig, onBulkEditUpdate, onTableConfigChange, translations, enableCellTextSelection, localStoragePersistenceKey, enableCDN, }: React__default.PropsWithChildren<ClientSideDataTableProps>) => React__default.JSX.Element) & {
|
|
1442
1445
|
BulkActions: React__default.FunctionComponent<React__default.PropsWithChildren<BulkActionProps>>;
|
|
1443
1446
|
BulkEditActionButton: React__default.FunctionComponent<ActionButtonProps>;
|
|
1444
1447
|
ConfigPanelButton: React__default.FC<{}>;
|
|
@@ -1475,7 +1478,7 @@ declare const MultiSelectQuickFilterRenderer: (props: FilterProps<any[]>) => Rea
|
|
|
1475
1478
|
|
|
1476
1479
|
declare const SingleSelectQuickFilterRenderer: (props: FilterProps<any[]>) => React__default.JSX.Element;
|
|
1477
1480
|
|
|
1478
|
-
declare const _default: (({ analytics, children, columnDefinitions: _columnDefinitions, customBulkEditorFields, enableDynamicRowHeight, enableGroupEditAndValidation, filterGroups, getRowId, initialTableConfig: _initialTableConfig, onBulkEditUpdate, onServerSideDataRequest, onTableConfigChange, enableCellTextSelection, showExpandCollapseAllToggle, translations, localStoragePersistenceKey, }: React__default.PropsWithChildren<DataTableProps>) => React__default.JSX.Element) & {
|
|
1481
|
+
declare const _default: (({ analytics, children, columnDefinitions: _columnDefinitions, customBulkEditorFields, enableDynamicRowHeight, enableGroupEditAndValidation, filterGroups, getRowId, initialTableConfig: _initialTableConfig, onBulkEditUpdate, onServerSideDataRequest, onTableConfigChange, enableCellTextSelection, showExpandCollapseAllToggle, translations, localStoragePersistenceKey, enableCDN, }: React__default.PropsWithChildren<DataTableProps>) => React__default.JSX.Element) & {
|
|
1479
1482
|
BulkActions: React__default.FunctionComponent<React__default.PropsWithChildren<BulkActionProps>>;
|
|
1480
1483
|
BulkEditActionButton: React__default.FunctionComponent<ActionButtonProps>;
|
|
1481
1484
|
ConfigPanelButton: React__default.FC<{}>;
|