@procore/data-table 14.30.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 +23 -0
- package/dist/legacy/index.cjs +667 -1780
- package/dist/legacy/index.d.cts +4 -2
- package/dist/legacy/index.d.ts +4 -2
- package/dist/legacy/index.js +667 -1780
- package/dist/modern/index.cjs +667 -1780
- package/dist/modern/index.d.cts +4 -2
- package/dist/modern/index.d.ts +4 -2
- package/dist/modern/index.js +667 -1780
- package/package.json +14 -12
package/dist/legacy/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'> {
|
|
@@ -1439,7 +1441,7 @@ interface BulkActionProps {
|
|
|
1439
1441
|
style?: React__default.CSSProperties;
|
|
1440
1442
|
}
|
|
1441
1443
|
|
|
1442
|
-
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) & {
|
|
1443
1445
|
BulkActions: React__default.FunctionComponent<React__default.PropsWithChildren<BulkActionProps>>;
|
|
1444
1446
|
BulkEditActionButton: React__default.FunctionComponent<ActionButtonProps>;
|
|
1445
1447
|
ConfigPanelButton: React__default.FC<{}>;
|
|
@@ -1476,7 +1478,7 @@ declare const MultiSelectQuickFilterRenderer: (props: FilterProps<any[]>) => Rea
|
|
|
1476
1478
|
|
|
1477
1479
|
declare const SingleSelectQuickFilterRenderer: (props: FilterProps<any[]>) => React__default.JSX.Element;
|
|
1478
1480
|
|
|
1479
|
-
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) & {
|
|
1480
1482
|
BulkActions: React__default.FunctionComponent<React__default.PropsWithChildren<BulkActionProps>>;
|
|
1481
1483
|
BulkEditActionButton: React__default.FunctionComponent<ActionButtonProps>;
|
|
1482
1484
|
ConfigPanelButton: React__default.FC<{}>;
|
package/dist/legacy/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'> {
|
|
@@ -1439,7 +1441,7 @@ interface BulkActionProps {
|
|
|
1439
1441
|
style?: React__default.CSSProperties;
|
|
1440
1442
|
}
|
|
1441
1443
|
|
|
1442
|
-
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) & {
|
|
1443
1445
|
BulkActions: React__default.FunctionComponent<React__default.PropsWithChildren<BulkActionProps>>;
|
|
1444
1446
|
BulkEditActionButton: React__default.FunctionComponent<ActionButtonProps>;
|
|
1445
1447
|
ConfigPanelButton: React__default.FC<{}>;
|
|
@@ -1476,7 +1478,7 @@ declare const MultiSelectQuickFilterRenderer: (props: FilterProps<any[]>) => Rea
|
|
|
1476
1478
|
|
|
1477
1479
|
declare const SingleSelectQuickFilterRenderer: (props: FilterProps<any[]>) => React__default.JSX.Element;
|
|
1478
1480
|
|
|
1479
|
-
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) & {
|
|
1480
1482
|
BulkActions: React__default.FunctionComponent<React__default.PropsWithChildren<BulkActionProps>>;
|
|
1481
1483
|
BulkEditActionButton: React__default.FunctionComponent<ActionButtonProps>;
|
|
1482
1484
|
ConfigPanelButton: React__default.FC<{}>;
|