@canvas-components/list-table 0.2.1 → 0.2.3

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/dist/index.d.cts CHANGED
@@ -234,6 +234,8 @@ interface ListTableTheme {
234
234
  * - `max`:取当前列最大值
235
235
  */
236
236
  type ListTableSummaryType = "sum" | "avg" | "count" | "unionCount" | "rowCount" | "mergedRowCount" | "min" | "max";
237
+ type ListTableHorizontalAlign = "left" | "center" | "right";
238
+ type ListTableDataFormatType = "default" | "number" | "thousands" | "money";
237
239
  type ListTableFilterOptionValue = string | number | null;
238
240
  interface ListTableFilterOption {
239
241
  label: string;
@@ -621,7 +623,7 @@ interface ListTableNestedTableColumn {
621
623
  title: string;
622
624
  dataIndex: TableColumnDataIndex;
623
625
  width?: number;
624
- align?: "left" | "center" | "right";
626
+ align?: ListTableHorizontalAlign;
625
627
  }
626
628
  /**
627
629
  * 单元格内嵌表格片段。
@@ -730,9 +732,20 @@ interface ListTableColumn<RecordType = Record<string, unknown>> {
730
732
  width?: number;
731
733
  minWidth?: number;
732
734
  maxWidth?: number;
733
- align?: "left" | "center" | "right";
735
+ /** 表体水平对齐。 */
736
+ align?: ListTableHorizontalAlign;
737
+ /** 表头水平对齐,未传时回退到 `align`。 */
738
+ headerAlign?: ListTableHorizontalAlign;
734
739
  fixed?: "left" | "right";
735
740
  hidden?: boolean;
741
+ /** 列设置中使用的标题,未传时使用 `title`。 */
742
+ settingTitle?: string;
743
+ /** 首次创建表格时是否默认隐藏。显式传入 `hidden` 时以 `hidden` 为准。 */
744
+ initialHide?: boolean;
745
+ /** 是否不在列设置中展示该列及其子列。 */
746
+ hideInSetting?: boolean;
747
+ /** 是否禁止用户通过列设置隐藏该列。 */
748
+ disableHide?: boolean;
736
749
  ellipsis?: boolean;
737
750
  /** 是否允许进入编辑输入态。 */
738
751
  editable?: ListTableEditable<RecordType>;
@@ -763,6 +776,8 @@ interface ListTableColumn<RecordType = Record<string, unknown>> {
763
776
  cellStyle?: ListTableCellStyle;
764
777
  /** 金额单元格格式配置,仅在 `cellType: "money"` 时生效。 */
765
778
  moneyFormat?: ListTableMoneyFormatOptions;
779
+ /** 通过列设置覆盖的数据显示格式。 */
780
+ dataFormat?: ListTableDataFormatType;
766
781
  headerStyle?: ListTableCellStyle;
767
782
  /** 汇总行配置。设为 `true` 等效于 `{ type: "sum" }`。 */
768
783
  summary?: boolean | ListTableSummaryConfig<RecordType>;
@@ -940,6 +955,15 @@ interface HeaderContextMenuConfig {
940
955
  */
941
956
  onChangeZoom?: (zoom: number) => void;
942
957
  onToggleColumn?: (columnKey: string, visible: boolean) => void;
958
+ alignment?: {
959
+ headerHorizontal: ListTableHorizontalAlign;
960
+ headerVertical: "top" | "middle" | "bottom";
961
+ bodyHorizontal: ListTableHorizontalAlign;
962
+ bodyVertical: "top" | "middle" | "bottom";
963
+ };
964
+ onChangeAlignment?: (area: "header" | "body", axis: "horizontal" | "vertical", value: ListTableHorizontalAlign | "top" | "middle" | "bottom") => void;
965
+ dataFormat?: ListTableDataFormatType;
966
+ onChangeDataFormat?: (dataFormat: ListTableDataFormatType) => void;
943
967
  summaryVisible?: boolean;
944
968
  summaryColumnKey?: string;
945
969
  summaryType?: ListTableSummaryType;
@@ -1235,7 +1259,7 @@ type ListTableHighlightMode = "cell" | "row" | "column" | "cross";
1235
1259
  /**
1236
1260
  * 右键菜单功能项。
1237
1261
  */
1238
- type ListTableContextMenuFeature = "copy" | "export" | "downloadContent" | "rowCollapse" | "columnCollapse" | "freeze" | "reset" | "density" | "zoom" | "columnVisibility";
1262
+ type ListTableContextMenuFeature = "copy" | "export" | "downloadContent" | "rowCollapse" | "columnCollapse" | "freeze" | "reset" | "density" | "zoom" | "alignment" | "dataFormat" | "columnVisibility";
1239
1263
  /**
1240
1264
  * 右键菜单配置。
1241
1265
  */
@@ -1388,6 +1412,12 @@ interface ListTablePaginationOptions {
1388
1412
  interface ListTableRowSelectionRecordProps {
1389
1413
  disabled?: boolean;
1390
1414
  }
1415
+ /**
1416
+ * 行事件配置。
1417
+ */
1418
+ interface ListTableRowEventProps {
1419
+ onClick?: (event: MouseEvent) => void;
1420
+ }
1391
1421
  /**
1392
1422
  * 行选择变更信息。
1393
1423
  */
@@ -1399,6 +1429,12 @@ interface ListTableRowSelectionChangeInfo {
1399
1429
  */
1400
1430
  interface ListTableRowSelectionOptions<RecordType> {
1401
1431
  type?: "checkbox" | "radio";
1432
+ /**
1433
+ * 点击普通表体区域时是否切换当前行选择状态。
1434
+ *
1435
+ * @default false
1436
+ */
1437
+ selectRowByClick?: boolean;
1402
1438
  selectedRowKeys?: Array<string | number>;
1403
1439
  defaultSelectedRowKeys?: Array<string | number>;
1404
1440
  fixed?: "left" | "right";
@@ -1483,6 +1519,8 @@ interface ListTableOptions<RecordType = Record<string, unknown>> {
1483
1519
  height?: number | string;
1484
1520
  columns: ListTableColumn<RecordType>[];
1485
1521
  dataSource: RecordType[];
1522
+ /** AntD Table 风格的行事件配置。 */
1523
+ onRow?: (record: RecordType, rowIndex: number) => ListTableRowEventProps | null | undefined;
1486
1524
  emptyText?: string;
1487
1525
  theme?: Partial<ListTableTheme>;
1488
1526
  /**
@@ -1561,6 +1599,15 @@ interface ListTableScrollToOptions {
1561
1599
  colIndex?: number;
1562
1600
  behavior?: "auto" | "smooth";
1563
1601
  }
1602
+ /**
1603
+ * XLSX 导出参数。
1604
+ */
1605
+ interface ListTableExportXlsxOptions {
1606
+ /** 导出文件名,可省略 `.xlsx` 扩展名。 */
1607
+ fileName?: string;
1608
+ /** 是否在数据末尾追加按当前列配置计算的汇总行。 */
1609
+ includeSummary?: boolean;
1610
+ }
1564
1611
 
1565
1612
  /**
1566
1613
  * ListTable 原生入口。
@@ -1601,7 +1648,7 @@ declare class ListTable<RecordType = Record<string, unknown>> {
1601
1648
  /**
1602
1649
  * 异步导出全部原始数据为 XLSX。
1603
1650
  */
1604
- exportXlsx(): void;
1651
+ exportXlsx(options?: ListTableExportXlsxOptions): void;
1605
1652
  /**
1606
1653
  * 滚动到指定行。
1607
1654
  */
@@ -1649,4 +1696,4 @@ interface ListTableValidationTarget {
1649
1696
  columnKey: string;
1650
1697
  }
1651
1698
 
1652
- export { type CreateCellEditorSessionParams, type DebugHitTestResult, type FilterPanelConfig, type FilterPanelOptionItem, type FilterPanelTexts, type FixedPopupConfig, type HeaderContextMenuColumnItem, type HeaderContextMenuConfig, type HeaderContextMenuDensity, ListTable, type ListTableAutoMergeRule, type ListTableBarcodeCellContent, type ListTableBarcodeFormat, type ListTableButtonCellContent, type ListTableButtonPopconfirmOptions, type ListTableButtonSize, type ListTableButtonType, type ListTableCarouselScrollOptions, type ListTableCellContent, type ListTableCellContentClickContext, type ListTableCellEditorSession, type ListTableCellSpan, type ListTableCellStyle, type ListTableChartCellContent, type ListTableChartSize, type ListTableChartType, type ListTableColorCellContent, type ListTableColumn, type ListTableContextMenuFeature, type ListTableContextMenuOptions, type ListTableCustomChartCellContent, type ListTableDangerConfirmRequest, type ListTableDebugOptions, type ListTableDebugSnapshot, type ListTableEditAutoCompleteEnter, type ListTableEditFilterOption, type ListTableEditOption, type ListTableEditValueType, type ListTableEditable, type ListTableEditorAutoCompleteEnter, type ListTableEditorConfig, type ListTableEditorFactory, type ListTableEditorFilterOption, type ListTableEditorNavigateDirection, type ListTableEditorOption, type ListTableEditorRect, type ListTableEditorRequest, type ListTableEditorTheme, type ListTableEditorValueType, type ListTableFilterConditionOperator, type ListTableFilterConditionRelation, type ListTableFilterMatchMode, type ListTableFilterOption, type ListTableFilterOptionValue, type ListTableFilterPanelAdapter, type ListTableFilterState, type ListTableFilterType, type ListTableFilterValue$1 as ListTableFilterValue, type ListTableFixedPopupAdapter, type ListTableFormItemProps, type ListTableFormItemPropsConfig, type ListTableFormRule, type ListTableFormRules, type ListTableHeaderContextMenuAdapter, type ListTableHighlightMode, type ListTableIconCellContent, type ListTableImageCellContent, type ListTableImageObjectFit, type ListTableImagePreviewRequest, type ListTableLoadingAdapter, type ListTableLoadingRequest, type ListTableMergeCellOptions, type ListTableNestedTableCellContent, type ListTableNestedTableColumn, type ListTableOptions, type ListTablePaginationAdapter, type ListTablePaginationOptions, type ListTableProgressCellContent, type ListTableProgressShape, type ListTableProgressSize, type ListTableQrCodeCellContent, type ListTableQrCodeLevel, type ListTableQueryChange, type ListTableQueryChangeExtra, type ListTableQueryFilters, type ListTableQueryOptions, type ListTableQueryPagination, type ListTableQuerySorter, type ListTableRateCellContent, type ListTableRateSize, type ListTableRowDragMode, type ListTableRowDragOptions, type ListTableRowDragPayload, type ListTableRowDragSourceInfo, type ListTableRowDragZone, type ListTableRowSelectionChangeInfo, type ListTableRowSelectionOptions, type ListTableScrollToOptions, type ListTableScrollbarOptions, type ListTableSelectionState, type ListTableSortItem, type ListTableSortState, type ListTableSparklineChartCellContent, type ListTableSparklineSize, type ListTableSymbolType, type ListTableTagCellContent, type ListTableTheme, type ListTableTooltipAdapter, type ListTableTooltipRequest, type ListTableUiOptions, type ListTableValidationError, type ListTableValidationErrorField, type ListTableValidationFailure, type ListTableValidationTarget, type PaginationConfig, type RenderCellDescriptor };
1699
+ export { type CreateCellEditorSessionParams, type DebugHitTestResult, type FilterPanelConfig, type FilterPanelOptionItem, type FilterPanelTexts, type FixedPopupConfig, type HeaderContextMenuColumnItem, type HeaderContextMenuConfig, type HeaderContextMenuDensity, ListTable, type ListTableAutoMergeRule, type ListTableBarcodeCellContent, type ListTableBarcodeFormat, type ListTableButtonCellContent, type ListTableButtonPopconfirmOptions, type ListTableButtonSize, type ListTableButtonType, type ListTableCarouselScrollOptions, type ListTableCellContent, type ListTableCellContentClickContext, type ListTableCellEditorSession, type ListTableCellSpan, type ListTableCellStyle, type ListTableChartCellContent, type ListTableChartSize, type ListTableChartType, type ListTableColorCellContent, type ListTableColumn, type ListTableContextMenuFeature, type ListTableContextMenuOptions, type ListTableCustomChartCellContent, type ListTableDangerConfirmRequest, type ListTableDataFormatType, type ListTableDebugOptions, type ListTableDebugSnapshot, type ListTableEditAutoCompleteEnter, type ListTableEditFilterOption, type ListTableEditOption, type ListTableEditValueType, type ListTableEditable, type ListTableEditorAutoCompleteEnter, type ListTableEditorConfig, type ListTableEditorFactory, type ListTableEditorFilterOption, type ListTableEditorNavigateDirection, type ListTableEditorOption, type ListTableEditorRect, type ListTableEditorRequest, type ListTableEditorTheme, type ListTableEditorValueType, type ListTableExportXlsxOptions, type ListTableFilterConditionOperator, type ListTableFilterConditionRelation, type ListTableFilterMatchMode, type ListTableFilterOption, type ListTableFilterOptionValue, type ListTableFilterPanelAdapter, type ListTableFilterState, type ListTableFilterType, type ListTableFilterValue$1 as ListTableFilterValue, type ListTableFixedPopupAdapter, type ListTableFormItemProps, type ListTableFormItemPropsConfig, type ListTableFormRule, type ListTableFormRules, type ListTableHeaderContextMenuAdapter, type ListTableHighlightMode, type ListTableHorizontalAlign, type ListTableIconCellContent, type ListTableImageCellContent, type ListTableImageObjectFit, type ListTableImagePreviewRequest, type ListTableLoadingAdapter, type ListTableLoadingRequest, type ListTableMergeCellOptions, type ListTableNestedTableCellContent, type ListTableNestedTableColumn, type ListTableOptions, type ListTablePaginationAdapter, type ListTablePaginationOptions, type ListTableProgressCellContent, type ListTableProgressShape, type ListTableProgressSize, type ListTableQrCodeCellContent, type ListTableQrCodeLevel, type ListTableQueryChange, type ListTableQueryChangeExtra, type ListTableQueryFilters, type ListTableQueryOptions, type ListTableQueryPagination, type ListTableQuerySorter, type ListTableRateCellContent, type ListTableRateSize, type ListTableRowDragMode, type ListTableRowDragOptions, type ListTableRowDragPayload, type ListTableRowDragSourceInfo, type ListTableRowDragZone, type ListTableRowEventProps, type ListTableRowSelectionChangeInfo, type ListTableRowSelectionOptions, type ListTableScrollToOptions, type ListTableScrollbarOptions, type ListTableSelectionState, type ListTableSortItem, type ListTableSortState, type ListTableSparklineChartCellContent, type ListTableSparklineSize, type ListTableSymbolType, type ListTableTagCellContent, type ListTableTheme, type ListTableTooltipAdapter, type ListTableTooltipRequest, type ListTableUiOptions, type ListTableValidationError, type ListTableValidationErrorField, type ListTableValidationFailure, type ListTableValidationTarget, type PaginationConfig, type RenderCellDescriptor };
package/dist/index.d.ts CHANGED
@@ -234,6 +234,8 @@ interface ListTableTheme {
234
234
  * - `max`:取当前列最大值
235
235
  */
236
236
  type ListTableSummaryType = "sum" | "avg" | "count" | "unionCount" | "rowCount" | "mergedRowCount" | "min" | "max";
237
+ type ListTableHorizontalAlign = "left" | "center" | "right";
238
+ type ListTableDataFormatType = "default" | "number" | "thousands" | "money";
237
239
  type ListTableFilterOptionValue = string | number | null;
238
240
  interface ListTableFilterOption {
239
241
  label: string;
@@ -621,7 +623,7 @@ interface ListTableNestedTableColumn {
621
623
  title: string;
622
624
  dataIndex: TableColumnDataIndex;
623
625
  width?: number;
624
- align?: "left" | "center" | "right";
626
+ align?: ListTableHorizontalAlign;
625
627
  }
626
628
  /**
627
629
  * 单元格内嵌表格片段。
@@ -730,9 +732,20 @@ interface ListTableColumn<RecordType = Record<string, unknown>> {
730
732
  width?: number;
731
733
  minWidth?: number;
732
734
  maxWidth?: number;
733
- align?: "left" | "center" | "right";
735
+ /** 表体水平对齐。 */
736
+ align?: ListTableHorizontalAlign;
737
+ /** 表头水平对齐,未传时回退到 `align`。 */
738
+ headerAlign?: ListTableHorizontalAlign;
734
739
  fixed?: "left" | "right";
735
740
  hidden?: boolean;
741
+ /** 列设置中使用的标题,未传时使用 `title`。 */
742
+ settingTitle?: string;
743
+ /** 首次创建表格时是否默认隐藏。显式传入 `hidden` 时以 `hidden` 为准。 */
744
+ initialHide?: boolean;
745
+ /** 是否不在列设置中展示该列及其子列。 */
746
+ hideInSetting?: boolean;
747
+ /** 是否禁止用户通过列设置隐藏该列。 */
748
+ disableHide?: boolean;
736
749
  ellipsis?: boolean;
737
750
  /** 是否允许进入编辑输入态。 */
738
751
  editable?: ListTableEditable<RecordType>;
@@ -763,6 +776,8 @@ interface ListTableColumn<RecordType = Record<string, unknown>> {
763
776
  cellStyle?: ListTableCellStyle;
764
777
  /** 金额单元格格式配置,仅在 `cellType: "money"` 时生效。 */
765
778
  moneyFormat?: ListTableMoneyFormatOptions;
779
+ /** 通过列设置覆盖的数据显示格式。 */
780
+ dataFormat?: ListTableDataFormatType;
766
781
  headerStyle?: ListTableCellStyle;
767
782
  /** 汇总行配置。设为 `true` 等效于 `{ type: "sum" }`。 */
768
783
  summary?: boolean | ListTableSummaryConfig<RecordType>;
@@ -940,6 +955,15 @@ interface HeaderContextMenuConfig {
940
955
  */
941
956
  onChangeZoom?: (zoom: number) => void;
942
957
  onToggleColumn?: (columnKey: string, visible: boolean) => void;
958
+ alignment?: {
959
+ headerHorizontal: ListTableHorizontalAlign;
960
+ headerVertical: "top" | "middle" | "bottom";
961
+ bodyHorizontal: ListTableHorizontalAlign;
962
+ bodyVertical: "top" | "middle" | "bottom";
963
+ };
964
+ onChangeAlignment?: (area: "header" | "body", axis: "horizontal" | "vertical", value: ListTableHorizontalAlign | "top" | "middle" | "bottom") => void;
965
+ dataFormat?: ListTableDataFormatType;
966
+ onChangeDataFormat?: (dataFormat: ListTableDataFormatType) => void;
943
967
  summaryVisible?: boolean;
944
968
  summaryColumnKey?: string;
945
969
  summaryType?: ListTableSummaryType;
@@ -1235,7 +1259,7 @@ type ListTableHighlightMode = "cell" | "row" | "column" | "cross";
1235
1259
  /**
1236
1260
  * 右键菜单功能项。
1237
1261
  */
1238
- type ListTableContextMenuFeature = "copy" | "export" | "downloadContent" | "rowCollapse" | "columnCollapse" | "freeze" | "reset" | "density" | "zoom" | "columnVisibility";
1262
+ type ListTableContextMenuFeature = "copy" | "export" | "downloadContent" | "rowCollapse" | "columnCollapse" | "freeze" | "reset" | "density" | "zoom" | "alignment" | "dataFormat" | "columnVisibility";
1239
1263
  /**
1240
1264
  * 右键菜单配置。
1241
1265
  */
@@ -1388,6 +1412,12 @@ interface ListTablePaginationOptions {
1388
1412
  interface ListTableRowSelectionRecordProps {
1389
1413
  disabled?: boolean;
1390
1414
  }
1415
+ /**
1416
+ * 行事件配置。
1417
+ */
1418
+ interface ListTableRowEventProps {
1419
+ onClick?: (event: MouseEvent) => void;
1420
+ }
1391
1421
  /**
1392
1422
  * 行选择变更信息。
1393
1423
  */
@@ -1399,6 +1429,12 @@ interface ListTableRowSelectionChangeInfo {
1399
1429
  */
1400
1430
  interface ListTableRowSelectionOptions<RecordType> {
1401
1431
  type?: "checkbox" | "radio";
1432
+ /**
1433
+ * 点击普通表体区域时是否切换当前行选择状态。
1434
+ *
1435
+ * @default false
1436
+ */
1437
+ selectRowByClick?: boolean;
1402
1438
  selectedRowKeys?: Array<string | number>;
1403
1439
  defaultSelectedRowKeys?: Array<string | number>;
1404
1440
  fixed?: "left" | "right";
@@ -1483,6 +1519,8 @@ interface ListTableOptions<RecordType = Record<string, unknown>> {
1483
1519
  height?: number | string;
1484
1520
  columns: ListTableColumn<RecordType>[];
1485
1521
  dataSource: RecordType[];
1522
+ /** AntD Table 风格的行事件配置。 */
1523
+ onRow?: (record: RecordType, rowIndex: number) => ListTableRowEventProps | null | undefined;
1486
1524
  emptyText?: string;
1487
1525
  theme?: Partial<ListTableTheme>;
1488
1526
  /**
@@ -1561,6 +1599,15 @@ interface ListTableScrollToOptions {
1561
1599
  colIndex?: number;
1562
1600
  behavior?: "auto" | "smooth";
1563
1601
  }
1602
+ /**
1603
+ * XLSX 导出参数。
1604
+ */
1605
+ interface ListTableExportXlsxOptions {
1606
+ /** 导出文件名,可省略 `.xlsx` 扩展名。 */
1607
+ fileName?: string;
1608
+ /** 是否在数据末尾追加按当前列配置计算的汇总行。 */
1609
+ includeSummary?: boolean;
1610
+ }
1564
1611
 
1565
1612
  /**
1566
1613
  * ListTable 原生入口。
@@ -1601,7 +1648,7 @@ declare class ListTable<RecordType = Record<string, unknown>> {
1601
1648
  /**
1602
1649
  * 异步导出全部原始数据为 XLSX。
1603
1650
  */
1604
- exportXlsx(): void;
1651
+ exportXlsx(options?: ListTableExportXlsxOptions): void;
1605
1652
  /**
1606
1653
  * 滚动到指定行。
1607
1654
  */
@@ -1649,4 +1696,4 @@ interface ListTableValidationTarget {
1649
1696
  columnKey: string;
1650
1697
  }
1651
1698
 
1652
- export { type CreateCellEditorSessionParams, type DebugHitTestResult, type FilterPanelConfig, type FilterPanelOptionItem, type FilterPanelTexts, type FixedPopupConfig, type HeaderContextMenuColumnItem, type HeaderContextMenuConfig, type HeaderContextMenuDensity, ListTable, type ListTableAutoMergeRule, type ListTableBarcodeCellContent, type ListTableBarcodeFormat, type ListTableButtonCellContent, type ListTableButtonPopconfirmOptions, type ListTableButtonSize, type ListTableButtonType, type ListTableCarouselScrollOptions, type ListTableCellContent, type ListTableCellContentClickContext, type ListTableCellEditorSession, type ListTableCellSpan, type ListTableCellStyle, type ListTableChartCellContent, type ListTableChartSize, type ListTableChartType, type ListTableColorCellContent, type ListTableColumn, type ListTableContextMenuFeature, type ListTableContextMenuOptions, type ListTableCustomChartCellContent, type ListTableDangerConfirmRequest, type ListTableDebugOptions, type ListTableDebugSnapshot, type ListTableEditAutoCompleteEnter, type ListTableEditFilterOption, type ListTableEditOption, type ListTableEditValueType, type ListTableEditable, type ListTableEditorAutoCompleteEnter, type ListTableEditorConfig, type ListTableEditorFactory, type ListTableEditorFilterOption, type ListTableEditorNavigateDirection, type ListTableEditorOption, type ListTableEditorRect, type ListTableEditorRequest, type ListTableEditorTheme, type ListTableEditorValueType, type ListTableFilterConditionOperator, type ListTableFilterConditionRelation, type ListTableFilterMatchMode, type ListTableFilterOption, type ListTableFilterOptionValue, type ListTableFilterPanelAdapter, type ListTableFilterState, type ListTableFilterType, type ListTableFilterValue$1 as ListTableFilterValue, type ListTableFixedPopupAdapter, type ListTableFormItemProps, type ListTableFormItemPropsConfig, type ListTableFormRule, type ListTableFormRules, type ListTableHeaderContextMenuAdapter, type ListTableHighlightMode, type ListTableIconCellContent, type ListTableImageCellContent, type ListTableImageObjectFit, type ListTableImagePreviewRequest, type ListTableLoadingAdapter, type ListTableLoadingRequest, type ListTableMergeCellOptions, type ListTableNestedTableCellContent, type ListTableNestedTableColumn, type ListTableOptions, type ListTablePaginationAdapter, type ListTablePaginationOptions, type ListTableProgressCellContent, type ListTableProgressShape, type ListTableProgressSize, type ListTableQrCodeCellContent, type ListTableQrCodeLevel, type ListTableQueryChange, type ListTableQueryChangeExtra, type ListTableQueryFilters, type ListTableQueryOptions, type ListTableQueryPagination, type ListTableQuerySorter, type ListTableRateCellContent, type ListTableRateSize, type ListTableRowDragMode, type ListTableRowDragOptions, type ListTableRowDragPayload, type ListTableRowDragSourceInfo, type ListTableRowDragZone, type ListTableRowSelectionChangeInfo, type ListTableRowSelectionOptions, type ListTableScrollToOptions, type ListTableScrollbarOptions, type ListTableSelectionState, type ListTableSortItem, type ListTableSortState, type ListTableSparklineChartCellContent, type ListTableSparklineSize, type ListTableSymbolType, type ListTableTagCellContent, type ListTableTheme, type ListTableTooltipAdapter, type ListTableTooltipRequest, type ListTableUiOptions, type ListTableValidationError, type ListTableValidationErrorField, type ListTableValidationFailure, type ListTableValidationTarget, type PaginationConfig, type RenderCellDescriptor };
1699
+ export { type CreateCellEditorSessionParams, type DebugHitTestResult, type FilterPanelConfig, type FilterPanelOptionItem, type FilterPanelTexts, type FixedPopupConfig, type HeaderContextMenuColumnItem, type HeaderContextMenuConfig, type HeaderContextMenuDensity, ListTable, type ListTableAutoMergeRule, type ListTableBarcodeCellContent, type ListTableBarcodeFormat, type ListTableButtonCellContent, type ListTableButtonPopconfirmOptions, type ListTableButtonSize, type ListTableButtonType, type ListTableCarouselScrollOptions, type ListTableCellContent, type ListTableCellContentClickContext, type ListTableCellEditorSession, type ListTableCellSpan, type ListTableCellStyle, type ListTableChartCellContent, type ListTableChartSize, type ListTableChartType, type ListTableColorCellContent, type ListTableColumn, type ListTableContextMenuFeature, type ListTableContextMenuOptions, type ListTableCustomChartCellContent, type ListTableDangerConfirmRequest, type ListTableDataFormatType, type ListTableDebugOptions, type ListTableDebugSnapshot, type ListTableEditAutoCompleteEnter, type ListTableEditFilterOption, type ListTableEditOption, type ListTableEditValueType, type ListTableEditable, type ListTableEditorAutoCompleteEnter, type ListTableEditorConfig, type ListTableEditorFactory, type ListTableEditorFilterOption, type ListTableEditorNavigateDirection, type ListTableEditorOption, type ListTableEditorRect, type ListTableEditorRequest, type ListTableEditorTheme, type ListTableEditorValueType, type ListTableExportXlsxOptions, type ListTableFilterConditionOperator, type ListTableFilterConditionRelation, type ListTableFilterMatchMode, type ListTableFilterOption, type ListTableFilterOptionValue, type ListTableFilterPanelAdapter, type ListTableFilterState, type ListTableFilterType, type ListTableFilterValue$1 as ListTableFilterValue, type ListTableFixedPopupAdapter, type ListTableFormItemProps, type ListTableFormItemPropsConfig, type ListTableFormRule, type ListTableFormRules, type ListTableHeaderContextMenuAdapter, type ListTableHighlightMode, type ListTableHorizontalAlign, type ListTableIconCellContent, type ListTableImageCellContent, type ListTableImageObjectFit, type ListTableImagePreviewRequest, type ListTableLoadingAdapter, type ListTableLoadingRequest, type ListTableMergeCellOptions, type ListTableNestedTableCellContent, type ListTableNestedTableColumn, type ListTableOptions, type ListTablePaginationAdapter, type ListTablePaginationOptions, type ListTableProgressCellContent, type ListTableProgressShape, type ListTableProgressSize, type ListTableQrCodeCellContent, type ListTableQrCodeLevel, type ListTableQueryChange, type ListTableQueryChangeExtra, type ListTableQueryFilters, type ListTableQueryOptions, type ListTableQueryPagination, type ListTableQuerySorter, type ListTableRateCellContent, type ListTableRateSize, type ListTableRowDragMode, type ListTableRowDragOptions, type ListTableRowDragPayload, type ListTableRowDragSourceInfo, type ListTableRowDragZone, type ListTableRowEventProps, type ListTableRowSelectionChangeInfo, type ListTableRowSelectionOptions, type ListTableScrollToOptions, type ListTableScrollbarOptions, type ListTableSelectionState, type ListTableSortItem, type ListTableSortState, type ListTableSparklineChartCellContent, type ListTableSparklineSize, type ListTableSymbolType, type ListTableTagCellContent, type ListTableTheme, type ListTableTooltipAdapter, type ListTableTooltipRequest, type ListTableUiOptions, type ListTableValidationError, type ListTableValidationErrorField, type ListTableValidationFailure, type ListTableValidationTarget, type PaginationConfig, type RenderCellDescriptor };