@procore/data-table 14.23.1 → 15.0.0-alpha.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.
@@ -1,10 +1,11 @@
1
1
  import * as _ag_grid_community_core from '@ag-grid-community/core';
2
- import { ICellRendererParams, NumberFilterModel as NumberFilterModel$1, ColDef, IRowNode, ICellEditorParams, RowDataTransaction, RowNodeTransaction, ServerSideTransaction, GridApi, ICellEditor, RefreshCellsParams, RowNode as RowNode$1, Column, SelectionEventSourceType, ColumnPinnedType, RowHeightParams, CheckboxSelectionCallbackParams, ExcelDataType, CellFocusedEvent, RowGroupOpenedEvent, Module, RowSelectedEvent, ColumnEverythingChangedEvent, TabToNextCellParams, CellPosition, GetRowIdParams, ColumnApi, IFilter, IScalarFilterParams, ISimpleFilterParams } from '@ag-grid-community/core';
3
- import * as React$1 from 'react';
4
- import React__default from 'react';
5
- import { AgGridReactProps, AgReactUiProps } from '@ag-grid-community/react';
2
+ import { ICellRendererParams, NumberFilterModel as NumberFilterModel$1, ColDef, IRowNode, RowDataTransaction, RowNodeTransaction, ServerSideTransaction, GridApi, ICellEditor, RefreshCellsParams, RowNode as RowNode$1, Column, SelectionEventSourceType, ColumnPinnedType, RowHeightParams, CheckboxSelectionCallbackParams, ExcelDataType, RowGroupOpenedEvent, Module, RowSelectedEvent, GridReadyEvent, ColumnEverythingChangedEvent, CellFocusedEvent, TabToNextCellParams, CellPosition, GetRowIdParams, HeaderCheckboxSelectionCallback, IFilter, IScalarFilterParams, ISimpleFilterParams } from '@ag-grid-community/core';
3
+ import React$1 from 'react';
4
+ import * as _ag_grid_community_react from '@ag-grid-community/react';
5
+ import { CustomCellEditorProps, AgGridReactProps, AgReactUiProps } from '@ag-grid-community/react';
6
6
  import { DropdownFlyoutOption, FormSelectProps, FormMultiSelectProps, FormCurrencyProps, TypographyProps, InputProps, DateTimeFormatTypes, PillColor, TextAreaProps, ComponentWithFieldProp, FormFieldValueComponentProps } from '@procore/core-react';
7
7
  import { FormatConfig } from '@procore/labs-financials-utils/dist/configs';
8
+ import * as _procore_labs_group_by_select from '@procore/labs-group-by-select';
8
9
 
9
10
  interface RequestInfo extends RequestInit {
10
11
  headers: Record<string, any>;
@@ -48,7 +49,7 @@ interface AnalyticsBulkConfig extends AnalyticsConfig$1 {
48
49
 
49
50
  interface GrandTotalsLabelRendererProps extends ICellRendererParams {
50
51
  }
51
- declare const GrandTotalsLabelRenderer: React__default.FunctionComponent<GrandTotalsLabelRendererProps>;
52
+ declare const GrandTotalsLabelRenderer: React$1.FunctionComponent<GrandTotalsLabelRendererProps>;
52
53
 
53
54
  declare const columnSort: {
54
55
  readonly asc: "asc";
@@ -77,7 +78,7 @@ type NumberFilterValue = {
77
78
  filterTo?: number;
78
79
  } | undefined;
79
80
  type NumberFilterProps = FilterComponentProps<unknown, NumberFilterValue>;
80
- declare const NumberFilterRenderer: React__default.NamedExoticComponent<NumberFilterProps>;
81
+ declare const NumberFilterRenderer: React$1.NamedExoticComponent<NumberFilterProps>;
81
82
 
82
83
  interface MenuDropdownOption extends Omit<DropdownFlyoutOption, 'children'> {
83
84
  action?: (params: ColDef | null) => void;
@@ -196,7 +197,7 @@ interface DataTableCellRendererProps<TValue = any, TColumnDefinition extends Col
196
197
  }
197
198
  interface DataTableCellEditorProps<TValue = any, TColumnDefinition extends ColumnDefinition = ColumnDefinition<TValue>> extends DataTableCellRendererProps<TValue, TColumnDefinition> {
198
199
  eventKey: string | null;
199
- ref?: ((instance: HTMLElement | null) => void) | React__default.MutableRefObject<HTMLElement | null> | null;
200
+ ref?: ((instance: HTMLElement | null) => void) | React$1.MutableRefObject<HTMLElement | null> | null;
200
201
  setDataValue: (field: string, newValue: TValue) => void;
201
202
  stopEditing: (relatedTarget?: HTMLElement | null) => void;
202
203
  }
@@ -207,16 +208,16 @@ interface BooleanCellRendererParams {
207
208
  type BooleanCellColumnDefinition<TValue = boolean> = ColumnDefinition<TValue, typeof BooleanCellRenderer, BooleanCellRendererParams>;
208
209
  interface BooleanCellRendererProps<TValue = boolean> extends DataTableCellRendererProps<TValue, BooleanCellColumnDefinition<TValue>> {
209
210
  }
210
- declare const BooleanCellRenderer: React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
211
+ declare const BooleanCellRenderer: React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
211
212
  interface BooleanCellEditorProps<TValue = boolean> extends DataTableCellEditorProps<TValue, BooleanCellColumnDefinition<TValue>> {
212
213
  }
213
- declare const BooleanCellEditor: React__default.ForwardRefExoticComponent<_ag_grid_community_core.ICellEditorParams<any, any, any>>;
214
+ declare const BooleanCellEditor: React$1.ForwardRefExoticComponent<_ag_grid_community_react.CustomCellEditorProps<any, any, any>>;
214
215
 
215
216
  interface ButtonsCellRendererParams {
216
- buttons: React__default.FunctionComponent<DataTableCellRendererProps>[];
217
+ buttons: React$1.FunctionComponent<DataTableCellRendererProps>[];
217
218
  }
218
219
  type ButtonsCellColumnDefinition<TValue = undefined> = GranularRequired<ColumnDefinition<TValue, typeof ButtonsCellRenderer, ButtonsCellRendererParams>, 'cellRendererParams'>;
219
- declare const ButtonsCellRenderer: React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
220
+ declare const ButtonsCellRenderer: React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
220
221
 
221
222
  interface CompanyCellRendererParams<TValue> {
222
223
  typographyProps?: TypographyProps;
@@ -228,7 +229,7 @@ never, // editor does not exist
228
229
  TFilterOption, TFilterValue>;
229
230
  interface CompanyCellRendererProps<TValue = any> extends DataTableCellRendererProps<TValue, CompanyCellColumnDefinition> {
230
231
  }
231
- declare const CompanyCellRenderer: React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
232
+ declare const CompanyCellRenderer: React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
232
233
 
233
234
  interface CurrencyCellRendererParams {
234
235
  typographyProps?: TypographyProps;
@@ -239,14 +240,14 @@ type CurrencyCellColumnDefinition<TValue = any> = ColumnDefinition<TValue, typeo
239
240
  };
240
241
  interface CurrencyCellRendererProps<TValue = string> extends DataTableCellRendererProps<TValue, CurrencyCellColumnDefinition<TValue>> {
241
242
  }
242
- declare const CurrencyCellRenderer: React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
243
+ declare const CurrencyCellRenderer: React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
243
244
  interface CurrencyCellEditorParams {
244
245
  inputProps?: InputProps;
245
246
  formatConfig?: Partial<FormatConfig>;
246
247
  }
247
248
  interface CurrencyCellEditorProps<TValue = string> extends DataTableCellEditorProps<TValue, CurrencyCellColumnDefinition<TValue>> {
248
249
  }
249
- declare const CurrencyCellEditor: React__default.ForwardRefExoticComponent<_ag_grid_community_core.ICellEditorParams<any, any, any>>;
250
+ declare const CurrencyCellEditor: React$1.ForwardRefExoticComponent<_ag_grid_community_react.CustomCellEditorProps<any, any, any>>;
250
251
 
251
252
  type PickedDateTimeFormatTypes = Extract<DateTimeFormatTypes, 'abbr-weekday-abbr-date' | 'date' | 'numeric-date' | 'weekday-date'>;
252
253
  interface DateCellRendererParams {
@@ -258,14 +259,14 @@ interface DateCellColumnDefinition<TValue = string | Date | undefined> extends D
258
259
  }
259
260
  interface DateCellRendererProps<TValue = string | Date | undefined> extends DataTableCellRendererProps<TValue, DateCellColumnDefinition<TValue>> {
260
261
  }
261
- declare const DateCellRenderer: React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
262
+ declare const DateCellRenderer: React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
262
263
  interface DateCellEditorParams {
263
264
  disabledDate?: ((date: Date, today: Date) => boolean) | undefined;
264
265
  timeZone?: string;
265
266
  }
266
267
  interface DateCellEditorProps<TValue = string | Date | undefined> extends DataTableCellEditorProps<TValue, DateCellColumnDefinition<TValue>> {
267
268
  }
268
- declare const DateCellEditor: React__default.ForwardRefExoticComponent<_ag_grid_community_core.ICellEditorParams<any, any, any>>;
269
+ declare const DateCellEditor: React$1.ForwardRefExoticComponent<_ag_grid_community_react.CustomCellEditorProps<any, any, any>>;
269
270
 
270
271
  type GroupCellRendererParams<TInnerRendererParams> = {
271
272
  /**
@@ -298,7 +299,7 @@ type GroupCellRendererParams<TInnerRendererParams> = {
298
299
  footerValueGetter?: string | ((value: any) => string);
299
300
  } & TInnerRendererParams;
300
301
  type GroupCellColumnDefinition<TValue = any, TInnerRendererParams = object> = ColumnDefinition<TValue, typeof GroupCellRenderer, GroupCellRendererParams<TInnerRendererParams>>;
301
- declare const GroupCellRenderer: React$1.FC<any>;
302
+ declare const GroupCellRenderer: React.FC<GroupCellRendererParams<any>>;
302
303
 
303
304
  interface LinkCellRendererParams<TValue> {
304
305
  typographyProps?: TypographyProps;
@@ -308,7 +309,7 @@ interface LinkCellRendererParams<TValue> {
308
309
  type LinkCellColumnDefinition<TValue = any> = GranularRequired<ColumnDefinition<TValue, typeof LinkCellRenderer, LinkCellRendererParams<TValue>>, 'cellRendererParams'>;
309
310
  interface LinkCellRendererProps<TValue = any> extends DataTableCellRendererProps<TValue, LinkCellColumnDefinition> {
310
311
  }
311
- declare const LinkCellRenderer: React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
312
+ declare const LinkCellRenderer: React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
312
313
 
313
314
  interface MultiSelectCellRendererParams<TValue, OptionValue> {
314
315
  getId?: (cellValue: OptionValue) => string | number;
@@ -318,7 +319,7 @@ interface MultiSelectCellRendererParams<TValue, OptionValue> {
318
319
  }
319
320
  type OnSearchParams$1 = {
320
321
  data: MultiSelectCellEditorProps['data'];
321
- event: React__default.ChangeEvent<HTMLInputElement>;
322
+ event: React$1.ChangeEvent<HTMLInputElement>;
322
323
  };
323
324
  interface MultiSelectCellEditorParams<TValue> {
324
325
  getId?: (cellValue: TValue) => number | string;
@@ -332,8 +333,8 @@ interface MultiSelectCellEditorProps<TValue = any> extends DataTableCellEditorPr
332
333
  type MultiSelectCellColumnDefinition<TValue = any[], OptionValue = any, TFilterOption = any, TFilterValue = number | string> = ColumnDefinition<TValue, typeof MultiSelectCellRenderer, MultiSelectCellRendererParams<TValue, OptionValue>, typeof MultiSelectCellEditor, MultiSelectCellEditorParams<TValue>, TFilterOption, TFilterValue, 'multiSelect', MultiSelectBulkEditorParams>;
333
334
  interface MultiSelectCellRendererProps<TValue = any[], OptionValue = any> extends DataTableCellRendererProps<TValue, MultiSelectCellColumnDefinition<TValue, OptionValue>> {
334
335
  }
335
- declare const MultiSelectCellRenderer: React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
336
- declare const MultiSelectCellEditor: React__default.ForwardRefExoticComponent<_ag_grid_community_core.ICellEditorParams<any, any, any>>;
336
+ declare const MultiSelectCellRenderer: React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
337
+ declare const MultiSelectCellEditor: React$1.ForwardRefExoticComponent<_ag_grid_community_react.CustomCellEditorProps<any, any, any>>;
337
338
 
338
339
  interface NumberCellRendererParams {
339
340
  typographyProps?: TypographyProps;
@@ -342,13 +343,13 @@ interface NumberCellRendererParams {
342
343
  type NumberCellColumnDefinition<TValue = number> = ColumnDefinition<TValue, typeof NumberCellRenderer, NumberCellRendererParams, typeof NumberCellEditor, NumberCellEditorParams>;
343
344
  interface NumberCellRendererProps<TValue = number | string> extends DataTableCellRendererProps<TValue, NumberCellColumnDefinition<TValue>> {
344
345
  }
345
- declare const NumberCellRenderer: React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
346
+ declare const NumberCellRenderer: React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
346
347
  interface NumberCellEditorParams {
347
348
  inputProps?: InputProps;
348
349
  }
349
350
  interface NumberCellEditorProps<TValue = number> extends DataTableCellEditorProps<TValue, NumberCellColumnDefinition<TValue>> {
350
351
  }
351
- declare const NumberCellEditor: React__default.ForwardRefExoticComponent<_ag_grid_community_core.ICellEditorParams<any, any, any>>;
352
+ declare const NumberCellEditor: React$1.ForwardRefExoticComponent<_ag_grid_community_react.CustomCellEditorProps<any, any, any>>;
352
353
 
353
354
  interface PeopleCellRendererParams<TValue, PersonValue> extends AvatarStackItemFilter {
354
355
  getCompanyName?: (person: PersonValue) => string;
@@ -363,7 +364,7 @@ never, // editor does not exist
363
364
  TFilterOption, TFilterValue>;
364
365
  interface PeopleCellRendererProps<TValue = any[], PersonValue = any> extends DataTableCellRendererProps<TValue, PeopleCellColumnDefinition<TValue, PersonValue>> {
365
366
  }
366
- declare const PeopleCellRenderer: React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
367
+ declare const PeopleCellRenderer: React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
367
368
 
368
369
  interface PercentCellRendererParams {
369
370
  typographyProps?: TypographyProps;
@@ -378,10 +379,10 @@ type PercentCellColumnDefinition<TValue = any> = ColumnDefinition<TValue, typeof
378
379
  };
379
380
  interface PercentCellRendererProps<TValue = string> extends DataTableCellRendererProps<TValue, PercentCellColumnDefinition<TValue>> {
380
381
  }
381
- declare const PercentCellRenderer: React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
382
+ declare const PercentCellRenderer: React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
382
383
  interface PercentCellEditorProps<TValue = string> extends DataTableCellEditorProps<TValue, PercentCellColumnDefinition<TValue>> {
383
384
  }
384
- declare const PercentCellEditor: React__default.ForwardRefExoticComponent<_ag_grid_community_core.ICellEditorParams<any, any, any>>;
385
+ declare const PercentCellEditor: React$1.ForwardRefExoticComponent<_ag_grid_community_react.CustomCellEditorProps<any, any, any>>;
385
386
 
386
387
  interface PillCellRendererParams<TValue> {
387
388
  getColor: (item: TValue) => PillColor;
@@ -391,7 +392,7 @@ interface PillCellRendererParams<TValue> {
391
392
  type PillCellColumnDefinition<TValue = any, TFilterOption = any, TFilterValue = number | string> = GranularRequired<ColumnDefinition<TValue, typeof PillCellRenderer, PillCellRendererParams<TValue>, typeof PillSelectCellEditor, PillCellEditorParams<TValue>, TFilterOption, TFilterValue>, 'cellRendererParams'>;
392
393
  interface PillCellRendererProps<TValue = any> extends DataTableCellRendererProps<TValue, PillCellColumnDefinition<TValue>> {
393
394
  }
394
- declare const PillCellRenderer: React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
395
+ declare const PillCellRenderer: React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
395
396
  interface PillCellEditorParams<TValue> {
396
397
  clearable?: boolean;
397
398
  getId?: (item: TValue) => number | string;
@@ -401,7 +402,7 @@ interface PillCellEditorParams<TValue> {
401
402
  }
402
403
  interface PillSelectCellEditorProps<TValue = any> extends DataTableCellEditorProps<TValue, PillCellColumnDefinition<TValue>> {
403
404
  }
404
- declare const PillSelectCellEditor: React__default.ForwardRefExoticComponent<_ag_grid_community_core.ICellEditorParams<any, any, any>>;
405
+ declare const PillSelectCellEditor: React$1.ForwardRefExoticComponent<_ag_grid_community_react.CustomCellEditorProps<any, any, any>>;
405
406
 
406
407
  type SelectCellColumnDefinition<TValue = any, TFilterOption = any, TFilterValue = number | string> = GranularRequired<ColumnDefinition<TValue, typeof SelectCellRenderer, {
407
408
  typographyProps?: TypographyProps;
@@ -409,10 +410,10 @@ type SelectCellColumnDefinition<TValue = any, TFilterOption = any, TFilterValue
409
410
  }, typeof SelectCellEditor, SelectCellEditorParams<TValue>, TFilterOption, TFilterValue, 'select', SelectBulkEditorParams>, 'cellEditor' | 'cellEditorParams'>;
410
411
  interface SelectCellRendererProps<TValue = any> extends DataTableCellRendererProps<TValue, SelectCellColumnDefinition<TValue>> {
411
412
  }
412
- declare const SelectCellRenderer: React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
413
+ declare const SelectCellRenderer: React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
413
414
  type OnSearchParams = {
414
415
  data: SelectCellEditorProps['data'];
415
- event: React__default.ChangeEvent<HTMLInputElement>;
416
+ event: React$1.ChangeEvent<HTMLInputElement>;
416
417
  };
417
418
  interface SelectCellEditorParams<TValue> {
418
419
  clearable?: boolean;
@@ -424,7 +425,7 @@ interface SelectCellEditorParams<TValue> {
424
425
  }
425
426
  interface SelectCellEditorProps<TValue = unknown> extends DataTableCellEditorProps<TValue, SelectCellColumnDefinition<TValue>> {
426
427
  }
427
- declare const SelectCellEditor: React__default.ForwardRefExoticComponent<_ag_grid_community_core.ICellEditorParams<any, any, any>>;
428
+ declare const SelectCellEditor: React$1.ForwardRefExoticComponent<_ag_grid_community_react.CustomCellEditorProps<any, any, any>>;
428
429
 
429
430
  interface TextAreaCellRendererParams {
430
431
  typographyProps?: TypographyProps;
@@ -438,8 +439,8 @@ interface TextAreaCellRendererProps<TValue = string> extends DataTableCellRender
438
439
  }
439
440
  interface TextAreaCellEditorProps<TValue = string> extends DataTableCellEditorProps<TValue, TextAreaCellColumnDefinition<TValue>> {
440
441
  }
441
- declare const TextAreaCellEditor: React__default.ForwardRefExoticComponent<_ag_grid_community_core.ICellEditorParams<any, any, any>>;
442
- declare const TextAreaCellRenderer: React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
442
+ declare const TextAreaCellEditor: React$1.ForwardRefExoticComponent<_ag_grid_community_react.CustomCellEditorProps<any, any, any>>;
443
+ declare const TextAreaCellRenderer: React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
443
444
 
444
445
  interface TextCellRendererParams {
445
446
  typographyProps?: TypographyProps;
@@ -451,15 +452,15 @@ type TextCellColumnDefinition<TValue = string, TFilterOption = any, TFilterValue
451
452
  interface TextCellRendererProps<TValue = string> extends DataTableCellRendererProps<TValue, TextCellColumnDefinition<TValue>> {
452
453
  node?: RowNode;
453
454
  }
454
- declare const TextCellRenderer: React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
455
+ declare const TextCellRenderer: React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
455
456
  interface TextCellEditorProps<TValue = string> extends DataTableCellEditorProps<TValue, TextCellColumnDefinition<TValue>> {
456
457
  }
457
- declare const TextCellEditor: React__default.ForwardRefExoticComponent<_ag_grid_community_core.ICellEditorParams<any, any, any>>;
458
+ declare const TextCellEditor: React$1.ForwardRefExoticComponent<_ag_grid_community_react.CustomCellEditorProps<any, any, any>>;
458
459
 
459
460
  type GranularRequired<T, K extends keyof T> = Omit<T, K> & Required<Pick<T, K>>;
460
461
  type GranularPartial<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
461
462
  /** Column Definitions */
462
- interface ColumnDefinition<TValue = any, TRenderer = React.FC<ICellRendererParams<any, TValue>>, TRendererParams = any, TEditor = React.ForwardRefExoticComponent<ICellEditorParams<any, TValue>>, TEditorParams = any, TFilterOption = TValue, TFilterValue = number | string | LocationFilterOpt | {
463
+ interface ColumnDefinition<TValue = any, TRenderer = React.FC<ICellRendererParams<any, TValue>>, TRendererParams = any, TEditor = React.ForwardRefExoticComponent<CustomCellEditorProps<any, TValue>>, TEditorParams = any, TFilterOption = TValue, TFilterValue = number | string | LocationFilterOpt | {
463
464
  date: Date;
464
465
  } | NumberFilterValue, TBulkEditor = string, TBulkEditorParams = any> {
465
466
  aggFunc?: string | AggregationFunction<TValue>;
@@ -517,9 +518,11 @@ interface ColumnDefinition<TValue = any, TRenderer = React.FC<ICellRendererParam
517
518
  rightAlign?: boolean;
518
519
  rowGroup?: boolean;
519
520
  sortable?: boolean;
521
+ /** @deprecated please use suppressHeaderMenuButton instead */
520
522
  suppressMenu?: boolean;
521
523
  suppressMovable?: boolean;
522
524
  suppressSizeToFit?: boolean;
525
+ suppressHeaderMenuButton?: boolean;
523
526
  valueGetter?: (params: ValueGetterParams) => TValue;
524
527
  valueParser?: (params: ValueParserParams) => TValue;
525
528
  valueSetter?: (params: ValueSetterParams) => boolean;
@@ -693,7 +696,6 @@ interface FirstDataRenderedEvent<TData = any, TContext = any> {
693
696
  firstRow: number;
694
697
  lastRow: number;
695
698
  api: GridApi<TData>;
696
- columnApi: ColumnApi;
697
699
  context: TContext;
698
700
  type: string;
699
701
  }
@@ -752,7 +754,7 @@ interface DetailRowConfig<TRow = any> {
752
754
  rowSelectionEnabled?: boolean | ((params: CheckboxSelectionCallbackParams<TRow>) => boolean);
753
755
  rowSelection?: 'multiple' | 'single';
754
756
  rowMultiSelectWithClick?: boolean;
755
- suppressRowClickSelection?: boolean;
757
+ enableClickSelection?: boolean | 'enableSelection' | 'enableDeselection';
756
758
  }
757
759
  type CustomRendererCell = {
758
760
  component: React.ComponentType<any>;
@@ -930,11 +932,6 @@ interface DTExcelFormats {
930
932
  dataType?: ExcelDataType;
931
933
  }
932
934
  type ISearchState = string;
933
- interface DTCellFocusedEvent extends CellFocusedEvent {
934
- column: Column;
935
- api: GridApi;
936
- rowIndex: number;
937
- }
938
935
  declare enum SelectAllState {
939
936
  All = "all",
940
937
  None = "none",
@@ -997,8 +994,9 @@ interface TableProps<TRow = any, TBottomRow = any> {
997
994
  onRowSelected?: (event: RowSelectedEvent) => void;
998
995
  onSelectAll?: (param: SelectAllState.All | SelectAllState.None) => void;
999
996
  onTableReady?: (tableApi: TableApi, tableApiRef: React.RefObject<TableApi>) => void;
997
+ onGridReady?: (event: GridReadyEvent) => void;
1000
998
  onColumnEverythingChanged?: (changeEvent: ColumnEverythingChangedEvent) => void;
1001
- onCellFocused?: (event: DTCellFocusedEvent) => void;
999
+ onCellFocused?: (event: CellFocusedEvent) => void;
1002
1000
  onFirstDataRendered?: (event: FirstDataRenderedEvent) => void;
1003
1001
  paginateChildRows?: boolean;
1004
1002
  pagination?: boolean;
@@ -1032,7 +1030,14 @@ interface TableProps<TRow = any, TBottomRow = any> {
1032
1030
  suppressExpandGroupsButton?: boolean;
1033
1031
  suppressFieldDotNotation?: boolean;
1034
1032
  suppressResetColumnsOption?: boolean;
1035
- suppressRowClickSelection?: boolean;
1033
+ /**
1034
+ * Choosing `'enableSelection'` allows selection of a row by clicking the row itself.
1035
+ * Choosing `'enableDeselection'` allows deselection of a row by CTRL-clicking the row itself.
1036
+ * Choosing `true` allows both selection and deselection of a row by clicking.
1037
+ * Choosing `false` prevents rows from being selected or deselected by clicking.
1038
+ * @default false
1039
+ */
1040
+ enableClickSelection?: boolean | 'enableSelection' | 'enableDeselection';
1036
1041
  stickyExpandedGroupRows?: boolean;
1037
1042
  /**
1038
1043
  * Allows overriding the default behaviour for when user hits Tab key when a cell is focused
@@ -1042,11 +1047,7 @@ interface TableProps<TRow = any, TBottomRow = any> {
1042
1047
  type AggregationFunction<TValue> = (params: {
1043
1048
  columnDefinition: ColumnDefinition;
1044
1049
  values: TValue[];
1045
- rowNode: {
1046
- allLeafChildren: {
1047
- data: TValue;
1048
- }[];
1049
- };
1050
+ rowNode: IRowNode<TValue>;
1050
1051
  /**
1051
1052
  * If rendering in a nested table, this is the id of the parent row
1052
1053
  */
@@ -1145,6 +1146,7 @@ interface DataTableProps {
1145
1146
  showExpandCollapseAllToggle?: boolean;
1146
1147
  translations?: DataTableTranslations;
1147
1148
  enableCellTextSelection?: boolean;
1149
+ headerCheckboxSelection?: boolean | HeaderCheckboxSelectionCallback;
1148
1150
  }
1149
1151
  interface ClientSideDataTableProps extends Omit<DataTableProps, 'onServerSideDataRequest' | 'showExpandCollapseAllToggle'> {
1150
1152
  }
@@ -1178,18 +1180,18 @@ declare function useFilterState({ columnDefinitions, gridApi, enabled, }: {
1178
1180
  }): {
1179
1181
  allAvailableFilters: FilterRecord<any[] | NumberFilterModel>[];
1180
1182
  changeFilterValue: typeof changeFilterValue;
1181
- filterableColumns: ColumnDefinition<any, React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>, any, React__default.ForwardRefExoticComponent<_ag_grid_community_core.ICellEditorParams<any, any, any>>, any, any, string | number | NumberFilterValue | LocationFilterOpt | {
1183
+ filterableColumns: ColumnDefinition<any, React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>, any, React$1.ForwardRefExoticComponent<_ag_grid_community_react.CustomCellEditorProps<any, any, any>>, any, any, string | number | NumberFilterValue | LocationFilterOpt | {
1182
1184
  date: Date;
1183
1185
  }, string, any>[];
1184
1186
  };
1185
- declare function changeFilterValue(fieldName: string, values: string[] | NumberFilterModel | undefined, tableRef: React__default.RefObject<TableApi> | null): void;
1187
+ declare function changeFilterValue(fieldName: string, values: string[] | NumberFilterModel | undefined, tableRef: React$1.RefObject<TableApi> | null): void;
1186
1188
 
1187
1189
  type DateFilterComponentProps = FilterComponentProps<{
1188
1190
  date: Date;
1189
1191
  }, Array<{
1190
1192
  date: Date;
1191
1193
  }>>;
1192
- declare const DateFilterRenderer: (props: DateFilterComponentProps) => React__default.JSX.Element | null;
1194
+ declare const DateFilterRenderer: (props: DateFilterComponentProps) => React$1.JSX.Element | null;
1193
1195
 
1194
1196
  type LocationFilterProps = FilterComponentProps<LocationOption, LocationOption[]>;
1195
1197
  interface LocationOption {
@@ -1198,9 +1200,9 @@ interface LocationOption {
1198
1200
  id: string | number;
1199
1201
  sublocations?: Omit<LocationOption, 'sublocations'>[];
1200
1202
  }
1201
- declare const LocationFilterRenderer: (props: LocationFilterProps) => React__default.JSX.Element | null;
1203
+ declare const LocationFilterRenderer: (props: LocationFilterProps) => React$1.JSX.Element | null;
1202
1204
 
1203
- declare const MultiSelectFilterRenderer: (props: FilterComponentProps) => React__default.JSX.Element | null;
1205
+ declare const MultiSelectFilterRenderer: (props: FilterComponentProps) => React$1.JSX.Element | null;
1204
1206
 
1205
1207
  interface IFilterProps<Opt = any, Val = number | string | null> {
1206
1208
  columnDefinition: ColumnDefinition;
@@ -1312,7 +1314,6 @@ interface ISearchStorage {
1312
1314
 
1313
1315
  interface InternalTableContext {
1314
1316
  analytics?: AnalyticsConfig;
1315
- columnApi?: ColumnApi;
1316
1317
  columnDefinitions: ColumnDefinition[];
1317
1318
  contextPanel: ContextPanelApi;
1318
1319
  customBulkEditorFields?: CustomBulkEditorFields;
@@ -1323,7 +1324,7 @@ interface InternalTableContext {
1323
1324
  getRowHeight: GetRowHeightWithFooters;
1324
1325
  getRowId?: DataTableProps['getRowId'];
1325
1326
  gridApi?: GridApi;
1326
- grandTotalsLabelInnerRenderer?: React__default.FunctionComponent<GrandTotalsLabelRendererProps>;
1327
+ grandTotalsLabelInnerRenderer?: React$1.FunctionComponent<GrandTotalsLabelRendererProps>;
1327
1328
  initialTableConfig?: DataTableConfig;
1328
1329
  filterState: ReturnType<typeof useFilterState>;
1329
1330
  filterStorage: IFilterStorage;
@@ -1333,38 +1334,38 @@ interface InternalTableContext {
1333
1334
  localStoragePersistenceKey?: string;
1334
1335
  onTableConfigChange: () => void;
1335
1336
  rowHeight: RowSize;
1336
- rowSelectionRef?: React__default.MutableRefObject<RowSelectionRef>;
1337
+ rowSelectionRef?: React$1.MutableRefObject<RowSelectionRef>;
1337
1338
  searchStorage: ISearchStorage;
1338
1339
  selectedGroupIndex?: string | null;
1339
- setColumnApi: (columnApi: ColumnApi) => void;
1340
1340
  setGridApi: (gridApi: GridApi) => void;
1341
1341
  setRowHeight: (rowHeight: RowSize, createTrackEvent?: boolean, triggerTableConfigChange?: boolean) => void;
1342
1342
  showExpandCollapseAllToggle: boolean;
1343
- expandCollapseStateRef: React__default.MutableRefObject<{
1343
+ expandCollapseStateRef: React$1.MutableRefObject<{
1344
1344
  expandedRoutes: string[];
1345
1345
  collapsedRoutes: string[];
1346
1346
  }> | null;
1347
- tableRef: React__default.RefObject<TableApi> | null;
1347
+ tableRef: React$1.RefObject<TableApi> | null;
1348
1348
  getColumnDefinition: (field: string) => ColumnDefinition | undefined;
1349
1349
  totalRowCount: number;
1350
- setTotalRowCount: React__default.Dispatch<React__default.SetStateAction<number>>;
1351
- setSelectedGroupIndex?: React__default.Dispatch<React__default.SetStateAction<string | null>>;
1350
+ setTotalRowCount: React$1.Dispatch<React$1.SetStateAction<number>>;
1351
+ setSelectedGroupIndex?: React$1.Dispatch<React$1.SetStateAction<string | null>>;
1352
+ headerCheckboxSelection?: boolean | HeaderCheckboxSelectionCallback;
1352
1353
  }
1353
- declare const InternalTableContext: React__default.Context<InternalTableContext>;
1354
+ declare const InternalTableContext: React$1.Context<InternalTableContext>;
1354
1355
 
1355
- type AnalyticsProviderProps = React__default.PropsWithChildren<{
1356
+ type AnalyticsProviderProps = React$1.PropsWithChildren<{
1356
1357
  analytics?: Analytics;
1357
1358
  }>;
1358
1359
  type HydratedContextValue = Pick<Analytics, 'trackEvent'>;
1359
1360
  type DefaultContextValue = {};
1360
1361
  type ContextValue = HydratedContextValue | DefaultContextValue;
1361
- declare function AnalyticsProvider({ analytics, children, }: AnalyticsProviderProps): React__default.JSX.Element;
1362
+ declare function AnalyticsProvider({ analytics, children, }: AnalyticsProviderProps): React$1.JSX.Element;
1362
1363
  declare const useAnalyticsContext: () => HydratedContextValue;
1363
1364
  declare const _default$2: {
1364
1365
  Client: typeof Analytics;
1365
- Consumer: React__default.Consumer<ContextValue>;
1366
+ Consumer: React$1.Consumer<ContextValue>;
1366
1367
  Provider: typeof AnalyticsProvider;
1367
- Context: React__default.Context<ContextValue>;
1368
+ Context: React$1.Context<ContextValue>;
1368
1369
  };
1369
1370
 
1370
1371
  declare class AnalyticsBulkClient extends _default$2.Client {
@@ -1376,20 +1377,20 @@ declare class AnalyticsBulkClient extends _default$2.Client {
1376
1377
  sendAllEvents(): Promise<void>;
1377
1378
  }
1378
1379
 
1379
- declare const DateTimeCellRenderer: React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
1380
- declare const DateTimeCellEditor: React__default.ForwardRefExoticComponent<_ag_grid_community_core.ICellEditorParams<any, any, any>>;
1380
+ declare const DateTimeCellRenderer: React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
1381
+ declare const DateTimeCellEditor: React$1.ForwardRefExoticComponent<_ag_grid_community_react.CustomCellEditorProps<any, any, any>>;
1381
1382
 
1382
- declare const PersonCellRenderer: React__default.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
1383
+ declare const PersonCellRenderer: React$1.FC<_ag_grid_community_core.ICellRendererParams<any, any, any>>;
1383
1384
 
1384
1385
  interface SearchProps {
1385
- onSearch?: React__default.ChangeEventHandler<HTMLInputElement>;
1386
+ onSearch?: React$1.ChangeEventHandler<HTMLInputElement>;
1386
1387
  /** The placeholder to the Search input */
1387
1388
  placeholder?: string;
1388
1389
  disabled?: boolean;
1389
1390
  }
1390
1391
 
1391
1392
  interface QuickControlsProps extends Omit<SearchProps, 'disabled'> {
1392
- style?: React__default.CSSProperties;
1393
+ style?: React$1.CSSProperties;
1393
1394
  disabledSearch?: boolean;
1394
1395
  filterOverlayMatchesTriggerWidth?: boolean;
1395
1396
  }
@@ -1405,72 +1406,64 @@ interface BulkActionProps {
1405
1406
  showAlways?: boolean;
1406
1407
  showEditButtonLabel?: boolean;
1407
1408
  editButtonText?: string;
1408
- style?: React__default.CSSProperties;
1409
+ style?: React$1.CSSProperties;
1409
1410
  }
1410
1411
 
1411
- 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) & {
1412
- BulkActions: React__default.FunctionComponent<React__default.PropsWithChildren<BulkActionProps>>;
1413
- BulkEditActionButton: React__default.FunctionComponent<ActionButtonProps>;
1414
- ConfigPanelButton: React__default.FC<{}>;
1415
- ContextPanel: React__default.FC<TablePanelProps>;
1416
- QuickControls: React__default.FunctionComponent<QuickControlsProps>;
1417
- QuickFilters: React__default.FunctionComponent<{
1418
- overlayMatchesTriggerWidth?: boolean | undefined;
1412
+ declare const _default$1: (({ analytics, children, columnDefinitions: _columnDefinitions, customBulkEditorFields, enableDynamicRowHeight, enableGroupEditAndValidation, filterGroups, getRowId, initialTableConfig: _initialTableConfig, onBulkEditUpdate, onTableConfigChange, translations, enableCellTextSelection, localStoragePersistenceKey, headerCheckboxSelection, }: React$1.PropsWithChildren<ClientSideDataTableProps>) => React$1.JSX.Element) & {
1413
+ BulkActions: React$1.FunctionComponent<React$1.PropsWithChildren<BulkActionProps>>;
1414
+ BulkEditActionButton: React$1.FunctionComponent<ActionButtonProps>;
1415
+ ConfigPanelButton: React$1.FC<{}>;
1416
+ ContextPanel: React$1.FC<TablePanelProps>;
1417
+ QuickControls: React$1.FunctionComponent<QuickControlsProps>;
1418
+ QuickFilters: React$1.FunctionComponent<{
1419
+ overlayMatchesTriggerWidth?: boolean;
1419
1420
  }>;
1420
- RowGroupSelector: React__default.FC<{
1421
- localeText: {
1422
- reset: string;
1423
- placeholder: string;
1424
- selectedItemsPrefix?: string | undefined;
1425
- };
1421
+ RowGroupSelector: React$1.FC<{
1422
+ localeText: _procore_labs_group_by_select.GroupBySelectProps["localeText"];
1426
1423
  }>;
1427
- Search: React__default.FunctionComponent<SearchProps>;
1428
- Table: React__default.FC<Omit<TableProps<any, any>, "selectionSSREnabled" | "modules">>;
1429
- FiltersPanel: React__default.FunctionComponent<TablePanelProps>;
1430
- FiltersPanelButton: React__default.FunctionComponent<{}>;
1424
+ Search: React$1.FunctionComponent<SearchProps>;
1425
+ Table: React$1.FC<Omit<TableProps<any, any>, "selectionSSREnabled" | "modules">>;
1426
+ FiltersPanel: React$1.FunctionComponent<TablePanelProps>;
1427
+ FiltersPanelButton: React$1.FunctionComponent<{}>;
1431
1428
  };
1432
1429
 
1433
1430
  type EmptyRendererProps = {
1434
- children?: React__default.ReactNode;
1431
+ children?: React$1.ReactNode;
1435
1432
  hasFilters?: boolean;
1436
1433
  hasSearch?: boolean;
1437
1434
  itemsLabel?: string;
1438
1435
  };
1439
1436
 
1440
- declare const QuickDateFilterRenderer: (props: ServerSideFilterProps) => React__default.JSX.Element | null;
1437
+ declare const QuickDateFilterRenderer: (props: ServerSideFilterProps) => React$1.JSX.Element | null;
1441
1438
 
1442
- declare const LocationQuickFilterRenderer: React__default.FC<FilterProps>;
1439
+ declare const LocationQuickFilterRenderer: React$1.FC<FilterProps>;
1443
1440
 
1444
- declare const MultiSelectQuickFilterRenderer: (props: FilterProps<any[]>) => React__default.JSX.Element;
1441
+ declare const MultiSelectQuickFilterRenderer: (props: FilterProps<any[]>) => React$1.JSX.Element;
1445
1442
 
1446
- declare const SingleSelectQuickFilterRenderer: (props: FilterProps<any[]>) => React__default.JSX.Element;
1443
+ declare const SingleSelectQuickFilterRenderer: (props: FilterProps<any[]>) => React$1.JSX.Element;
1447
1444
 
1448
- 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) & {
1449
- BulkActions: React__default.FunctionComponent<React__default.PropsWithChildren<BulkActionProps>>;
1450
- BulkEditActionButton: React__default.FunctionComponent<ActionButtonProps>;
1451
- ConfigPanelButton: React__default.FC<{}>;
1452
- ContextPanel: React__default.FC<TablePanelProps>;
1453
- QuickControls: React__default.FunctionComponent<QuickControlsProps>;
1454
- QuickFilters: React__default.FunctionComponent<{
1455
- overlayMatchesTriggerWidth?: boolean | undefined;
1445
+ declare const _default: (({ analytics, children, columnDefinitions: _columnDefinitions, customBulkEditorFields, enableDynamicRowHeight, enableGroupEditAndValidation, filterGroups, getRowId, initialTableConfig: _initialTableConfig, onBulkEditUpdate, onServerSideDataRequest, onTableConfigChange, enableCellTextSelection, showExpandCollapseAllToggle, translations, localStoragePersistenceKey, headerCheckboxSelection, }: React$1.PropsWithChildren<DataTableProps>) => React$1.JSX.Element) & {
1446
+ BulkActions: React$1.FunctionComponent<React$1.PropsWithChildren<BulkActionProps>>;
1447
+ BulkEditActionButton: React$1.FunctionComponent<ActionButtonProps>;
1448
+ ConfigPanelButton: React$1.FC<{}>;
1449
+ ContextPanel: React$1.FC<TablePanelProps>;
1450
+ QuickControls: React$1.FunctionComponent<QuickControlsProps>;
1451
+ QuickFilters: React$1.FunctionComponent<{
1452
+ overlayMatchesTriggerWidth?: boolean;
1456
1453
  }>;
1457
- RowGroupSelector: React__default.FC<{
1458
- localeText: {
1459
- reset: string;
1460
- placeholder: string;
1461
- selectedItemsPrefix?: string | undefined;
1462
- };
1454
+ RowGroupSelector: React$1.FC<{
1455
+ localeText: _procore_labs_group_by_select.GroupBySelectProps["localeText"];
1463
1456
  }>;
1464
- Search: React__default.FunctionComponent<SearchProps>;
1465
- Table: React__default.FC<Omit<TableProps<any, any>, "rows" | "modules">>;
1466
- FiltersPanel: React__default.FunctionComponent<TablePanelProps>;
1467
- FiltersPanelButton: React__default.FunctionComponent<{}>;
1457
+ Search: React$1.FunctionComponent<SearchProps>;
1458
+ Table: React$1.FC<Omit<TableProps<any, any>, "rows" | "modules">>;
1459
+ FiltersPanel: React$1.FunctionComponent<TablePanelProps>;
1460
+ FiltersPanelButton: React$1.FunctionComponent<{}>;
1468
1461
  };
1469
1462
 
1470
1463
  declare const useRowSelectionState: () => IRowNode<any>[];
1471
1464
 
1472
- declare function withDataTableEditor(Component: React__default.ForwardRefExoticComponent<any>, editorType: 'input' | 'select' | 'date' | 'textarea'): React__default.ForwardRefExoticComponent<ICellEditorParams>;
1473
- declare function withDataTableRenderer(Component: React__default.ComponentType<any>, editorType?: 'input' | 'select' | 'date' | 'textarea'): React__default.FC<ICellRendererParams>;
1465
+ declare function withDataTableEditor(Component: React$1.ForwardRefExoticComponent<any>, editorType: 'input' | 'select' | 'date' | 'textarea'): React$1.ForwardRefExoticComponent<CustomCellEditorProps>;
1466
+ declare function withDataTableRenderer(Component: React$1.ComponentType<any>, editorType?: 'input' | 'select' | 'date' | 'textarea'): React$1.FC<ICellRendererParams>;
1474
1467
 
1475
1468
  declare function assignAlphabeticalFilterIndices(columnDefinitions: ColumnDefinition[]): ColumnDefinition[];
1476
1469
 
@@ -1486,4 +1479,4 @@ declare const waitForAsyncCondition: (condition: Function, maxAttempts?: number,
1486
1479
  */
1487
1480
  declare const UNSAFE_useTableContext: () => InternalTableContext;
1488
1481
 
1489
- export { type AgDomLayout, type AgGetDetailRowDataParams, type AgSort, type AggregationFunction, type AnalyticEvent, _default$2 as Analytics, AnalyticsBulkClient, type AnalyticsBulkConfig, type AnalyticsClient, type AnalyticsConfig$1 as AnalyticsConfig, type AvatarStackItemFilter, type BooleanCellColumnDefinition, BooleanCellEditor, type BooleanCellEditorProps, BooleanCellRenderer, type BooleanCellRendererProps, type ButtonsCellColumnDefinition, ButtonsCellRenderer, type CSVExportConfig, type CellValueChangeParams, _default$1 as ClientSideDataTable, type ClientSideDataTableProps, type ColumnConfig, type ColumnDefinition, type ColumnGroupStateConfig, type CompanyCellColumnDefinition, CompanyCellRenderer, type CompanyCellRendererProps, type ContextPanelApi, type ContextPanelContent, type CurrencyCellColumnDefinition, CurrencyCellEditor, type CurrencyCellEditorProps, CurrencyCellRenderer, type CurrencyCellRendererProps, type CustomBulkEditorFields, type CustomEditorCell, type CustomFilter, type CustomFooterConfig, type CustomRendererCell, type DTCellFocusedEvent, type DTExcelFormats, type DataTableCellEditorProps, type DataTableCellRendererProps, type DataTableConfig, type DataTableProps, type DataTableTranslations, type DateCellColumnDefinition, DateCellEditor, type DateCellEditorProps, DateCellRenderer, type DateCellRendererProps, DateFilterRenderer, type DateFilterSelectionType, QuickDateFilterRenderer as DateQuickFilterRenderer, type DateTimeCellColumnDefinition, DateTimeCellEditor, DateTimeCellRenderer, type DetailRowConfig, type EmptyRendererProps, type ExcelExportConfig, type ExtendedColDef, type FilterGroup, type FrameworkComponents, type GetDetailRowDataParams, type GetRowHeightWithFooters, GrandTotalsLabelRenderer, type GranularPartial, type GranularRequired, type GroupCellColumnDefinition, GroupCellRenderer, type HTMLStringExportConfig, type ISearchState, type IServerFilter, type IsEditableParams, type IsRowSelectable, type LinkCellColumnDefinition, LinkCellRenderer, type LinkCellRendererProps, type LocationColumnDefinition, type LocationFilterOpt, LocationFilterRenderer, LocationQuickFilterRenderer, type MultiSelectCellColumnDefinition, MultiSelectCellEditor, MultiSelectCellRenderer, type MultiSelectCellRendererProps, MultiSelectFilterRenderer, MultiSelectQuickFilterRenderer, type NestedColumnDefinition, type NumberCellColumnDefinition, NumberCellEditor, type NumberCellEditorProps, NumberCellRenderer, type NumberCellRendererProps, NumberFilterRenderer, type PartialTableApi, type PeopleCellColumnDefinition, PeopleCellRenderer, type PeopleCellRendererProps, type PercentCellColumnDefinition, PercentCellEditor, type PercentCellEditorProps, PercentCellRenderer, type PercentCellRendererProps, PersonCellRenderer, type PillCellColumnDefinition, PillCellRenderer, type PillCellRendererProps, PillSelectCellEditor, type PillSelectCellEditorProps, type PinnedBottomRow, type RefreshServerSideDataParams, type RowActionsConfig, type RowActivePredicateParams, type RowGroupToggledEvent, type RowNode, type RowSelectablePredicateParams, type RowSelectionRef, SelectAllState, type SelectCellColumnDefinition, SelectCellEditor, type SelectCellEditorProps, SelectCellRenderer, type SelectCellRendererProps, _default as ServerSideDataTable, type DataTableProps as ServerSideDataTableProps, type ServerSideGetRowsParams, type ServerSideGetRowsRequest, type ServerSideParamsOptions, SingleSelectQuickFilterRenderer, type SortModel, type SuccessParams, type TableApi, type TableFrameworkComponents, type TablePanelProps, type TableProps, type TextAreaCellColumnDefinition, type TextAreaCellEditorProps, type TextAreaCellRendererProps, type TextCellColumnDefinition, TextCellEditor, type TextCellEditorProps, TextCellRenderer, type TextCellRendererProps, UNSAFE_useTableContext, type UpdateServerSideDataSourceParams, type ValueGetterParams, type ValueParserParams, type ValueSetterParams, type ValueValidator, type ValueValidatorParams, assignAlphabeticalFilterIndices, rowSize, useAnalyticsContext, useRowSelectionState, waitForAsyncCondition, withDataTableEditor, withDataTableRenderer };
1482
+ export { type AgDomLayout, type AgGetDetailRowDataParams, type AgSort, type AggregationFunction, type AnalyticEvent, _default$2 as Analytics, AnalyticsBulkClient, type AnalyticsBulkConfig, type AnalyticsClient, type AnalyticsConfig$1 as AnalyticsConfig, type AvatarStackItemFilter, type BooleanCellColumnDefinition, BooleanCellEditor, type BooleanCellEditorProps, BooleanCellRenderer, type BooleanCellRendererProps, type ButtonsCellColumnDefinition, ButtonsCellRenderer, type CSVExportConfig, type CellValueChangeParams, _default$1 as ClientSideDataTable, type ClientSideDataTableProps, type ColumnConfig, type ColumnDefinition, type ColumnGroupStateConfig, type CompanyCellColumnDefinition, CompanyCellRenderer, type CompanyCellRendererProps, type ContextPanelApi, type ContextPanelContent, type CurrencyCellColumnDefinition, CurrencyCellEditor, type CurrencyCellEditorProps, CurrencyCellRenderer, type CurrencyCellRendererProps, type CustomBulkEditorFields, type CustomEditorCell, type CustomFilter, type CustomFooterConfig, type CustomRendererCell, type DTExcelFormats, type DataTableCellEditorProps, type DataTableCellRendererProps, type DataTableConfig, type DataTableProps, type DataTableTranslations, type DateCellColumnDefinition, DateCellEditor, type DateCellEditorProps, DateCellRenderer, type DateCellRendererProps, DateFilterRenderer, type DateFilterSelectionType, QuickDateFilterRenderer as DateQuickFilterRenderer, type DateTimeCellColumnDefinition, DateTimeCellEditor, DateTimeCellRenderer, type DetailRowConfig, type EmptyRendererProps, type ExcelExportConfig, type ExtendedColDef, type FilterGroup, type FrameworkComponents, type GetDetailRowDataParams, type GetRowHeightWithFooters, GrandTotalsLabelRenderer, type GranularPartial, type GranularRequired, type GroupCellColumnDefinition, GroupCellRenderer, type HTMLStringExportConfig, type ISearchState, type IServerFilter, type IsEditableParams, type IsRowSelectable, type LinkCellColumnDefinition, LinkCellRenderer, type LinkCellRendererProps, type LocationColumnDefinition, type LocationFilterOpt, LocationFilterRenderer, LocationQuickFilterRenderer, type MultiSelectCellColumnDefinition, MultiSelectCellEditor, MultiSelectCellRenderer, type MultiSelectCellRendererProps, MultiSelectFilterRenderer, MultiSelectQuickFilterRenderer, type NestedColumnDefinition, type NumberCellColumnDefinition, NumberCellEditor, type NumberCellEditorProps, NumberCellRenderer, type NumberCellRendererProps, NumberFilterRenderer, type PartialTableApi, type PeopleCellColumnDefinition, PeopleCellRenderer, type PeopleCellRendererProps, type PercentCellColumnDefinition, PercentCellEditor, type PercentCellEditorProps, PercentCellRenderer, type PercentCellRendererProps, PersonCellRenderer, type PillCellColumnDefinition, PillCellRenderer, type PillCellRendererProps, PillSelectCellEditor, type PillSelectCellEditorProps, type PinnedBottomRow, type RefreshServerSideDataParams, type RowActionsConfig, type RowActivePredicateParams, type RowGroupToggledEvent, type RowNode, type RowSelectablePredicateParams, type RowSelectionRef, SelectAllState, type SelectCellColumnDefinition, SelectCellEditor, type SelectCellEditorProps, SelectCellRenderer, type SelectCellRendererProps, _default as ServerSideDataTable, type DataTableProps as ServerSideDataTableProps, type ServerSideGetRowsParams, type ServerSideGetRowsRequest, type ServerSideParamsOptions, SingleSelectQuickFilterRenderer, type SortModel, type SuccessParams, type TableApi, type TableFrameworkComponents, type TablePanelProps, type TableProps, type TextAreaCellColumnDefinition, type TextAreaCellEditorProps, type TextAreaCellRendererProps, type TextCellColumnDefinition, TextCellEditor, type TextCellEditorProps, TextCellRenderer, type TextCellRendererProps, UNSAFE_useTableContext, type UpdateServerSideDataSourceParams, type ValueGetterParams, type ValueParserParams, type ValueSetterParams, type ValueValidator, type ValueValidatorParams, assignAlphabeticalFilterIndices, rowSize, useAnalyticsContext, useRowSelectionState, waitForAsyncCondition, withDataTableEditor, withDataTableRenderer };