@canvas-components/list-table 0.2.1 → 0.2.2

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
  */
@@ -1561,6 +1585,15 @@ interface ListTableScrollToOptions {
1561
1585
  colIndex?: number;
1562
1586
  behavior?: "auto" | "smooth";
1563
1587
  }
1588
+ /**
1589
+ * XLSX 导出参数。
1590
+ */
1591
+ interface ListTableExportXlsxOptions {
1592
+ /** 导出文件名,可省略 `.xlsx` 扩展名。 */
1593
+ fileName?: string;
1594
+ /** 是否在数据末尾追加按当前列配置计算的汇总行。 */
1595
+ includeSummary?: boolean;
1596
+ }
1564
1597
 
1565
1598
  /**
1566
1599
  * ListTable 原生入口。
@@ -1601,7 +1634,7 @@ declare class ListTable<RecordType = Record<string, unknown>> {
1601
1634
  /**
1602
1635
  * 异步导出全部原始数据为 XLSX。
1603
1636
  */
1604
- exportXlsx(): void;
1637
+ exportXlsx(options?: ListTableExportXlsxOptions): void;
1605
1638
  /**
1606
1639
  * 滚动到指定行。
1607
1640
  */
@@ -1649,4 +1682,4 @@ interface ListTableValidationTarget {
1649
1682
  columnKey: string;
1650
1683
  }
1651
1684
 
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 };
1685
+ 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 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
  */
@@ -1561,6 +1585,15 @@ interface ListTableScrollToOptions {
1561
1585
  colIndex?: number;
1562
1586
  behavior?: "auto" | "smooth";
1563
1587
  }
1588
+ /**
1589
+ * XLSX 导出参数。
1590
+ */
1591
+ interface ListTableExportXlsxOptions {
1592
+ /** 导出文件名,可省略 `.xlsx` 扩展名。 */
1593
+ fileName?: string;
1594
+ /** 是否在数据末尾追加按当前列配置计算的汇总行。 */
1595
+ includeSummary?: boolean;
1596
+ }
1564
1597
 
1565
1598
  /**
1566
1599
  * ListTable 原生入口。
@@ -1601,7 +1634,7 @@ declare class ListTable<RecordType = Record<string, unknown>> {
1601
1634
  /**
1602
1635
  * 异步导出全部原始数据为 XLSX。
1603
1636
  */
1604
- exportXlsx(): void;
1637
+ exportXlsx(options?: ListTableExportXlsxOptions): void;
1605
1638
  /**
1606
1639
  * 滚动到指定行。
1607
1640
  */
@@ -1649,4 +1682,4 @@ interface ListTableValidationTarget {
1649
1682
  columnKey: string;
1650
1683
  }
1651
1684
 
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 };
1685
+ 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 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 };