@canvas-components/list-table 0.2.4 → 0.2.6
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/README.md +1 -1
- package/dist/index.cjs +231 -62
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +20 -9
- package/dist/index.d.ts +20 -9
- package/dist/index.js +232 -63
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -411,7 +411,7 @@ type ListTableFormRules<RecordType = Record<string, unknown>> = ListTableFormRul
|
|
|
411
411
|
* 单元格内容片段样式。
|
|
412
412
|
*/
|
|
413
413
|
interface ListTableContentStyle {
|
|
414
|
-
display?: "block" | "inline-block";
|
|
414
|
+
display?: "none" | "block" | "inline-block";
|
|
415
415
|
textAlign?: CanvasTextAlign;
|
|
416
416
|
fontSize?: number;
|
|
417
417
|
fontWeight?: string;
|
|
@@ -430,6 +430,8 @@ interface ListTableContentStyle {
|
|
|
430
430
|
*/
|
|
431
431
|
interface ListTableBaseCellContent<RecordType = any> {
|
|
432
432
|
key?: string;
|
|
433
|
+
/** 是否展示内容,默认展示。 */
|
|
434
|
+
visible?: boolean;
|
|
433
435
|
style?: ListTableContentStyle;
|
|
434
436
|
cursor?: string;
|
|
435
437
|
onClick?: (context: ListTableCellContentClickContext<RecordType>) => void;
|
|
@@ -1408,9 +1410,8 @@ interface ListTableScrollbarOptions {
|
|
|
1408
1410
|
verticalBottom?: number;
|
|
1409
1411
|
/**
|
|
1410
1412
|
* 滚动条可见性。
|
|
1411
|
-
* - `true`:
|
|
1413
|
+
* - `true` / `undefined`: 始终显示(默认)
|
|
1412
1414
|
* - `false`: 始终隐藏
|
|
1413
|
-
* - `undefined`: 自动模式(滚动/悬停时显示,随后自动隐藏)
|
|
1414
1415
|
*/
|
|
1415
1416
|
visible?: boolean;
|
|
1416
1417
|
}
|
|
@@ -1618,6 +1619,8 @@ interface ListTableUiOptions {
|
|
|
1618
1619
|
onSearchRequest?: (request: ListTableSearchRequest | null) => void;
|
|
1619
1620
|
onImagePreviewRequest?: (request: ListTableImagePreviewRequest | null) => void;
|
|
1620
1621
|
onDangerConfirmRequest?: (request: ListTableDangerConfirmRequest | null) => void;
|
|
1622
|
+
/** 持久化配置或内部操作改变表格密度时通知适配层。 */
|
|
1623
|
+
onDensityChange?: (density: 32 | 48 | 56) => void;
|
|
1621
1624
|
}
|
|
1622
1625
|
/**
|
|
1623
1626
|
* 行选择器配置。
|
|
@@ -1679,14 +1682,16 @@ interface ListTableOptions<RecordType = Record<string, unknown>> {
|
|
|
1679
1682
|
* 数据行高度。
|
|
1680
1683
|
*
|
|
1681
1684
|
* - 传入数字时使用固定高度
|
|
1682
|
-
* -
|
|
1683
|
-
* -
|
|
1685
|
+
* - 传入 `auto` 时按当前列宽和单元格内容自动计算
|
|
1686
|
+
* - 未传时默认使用紧凑密度 `32px`
|
|
1687
|
+
* - 未单独配置时,表头、汇总行和分组栏同步采用该高度
|
|
1684
1688
|
*
|
|
1685
|
-
* @default
|
|
1689
|
+
* @default 32
|
|
1686
1690
|
*/
|
|
1687
1691
|
rowHeight?: number | "auto";
|
|
1692
|
+
/** 表头行高,未传时采用 `rowHeight`。 */
|
|
1688
1693
|
headerRowHeight?: number;
|
|
1689
|
-
/**
|
|
1694
|
+
/** 汇总行高度,未传时采用 `rowHeight`。 */
|
|
1690
1695
|
summaryRowHeight?: number;
|
|
1691
1696
|
overscanRowCount?: number;
|
|
1692
1697
|
query?: ListTableQueryOptions<RecordType>;
|
|
@@ -1712,7 +1717,7 @@ interface ListTableOptions<RecordType = Record<string, unknown>> {
|
|
|
1712
1717
|
*/
|
|
1713
1718
|
resizable?: boolean;
|
|
1714
1719
|
/**
|
|
1715
|
-
*
|
|
1720
|
+
* 列配置持久化存储键。设置后列宽、固定、排序、过滤、缩放和表格密度会自动保存到 IndexDB。
|
|
1716
1721
|
*/
|
|
1717
1722
|
storageKey?: string;
|
|
1718
1723
|
draggable?: boolean;
|
|
@@ -1743,6 +1748,8 @@ interface ListTableScrollToOptions {
|
|
|
1743
1748
|
colIndex?: number;
|
|
1744
1749
|
behavior?: "auto" | "smooth";
|
|
1745
1750
|
}
|
|
1751
|
+
/** ListTable 内置表格密度对应的行高。 */
|
|
1752
|
+
type ListTableDensity = 32 | 48 | 56;
|
|
1746
1753
|
/**
|
|
1747
1754
|
* XLSX 导出参数。
|
|
1748
1755
|
*/
|
|
@@ -1805,6 +1812,10 @@ declare class ListTable<RecordType = Record<string, unknown>> {
|
|
|
1805
1812
|
* 重置筛选状态。
|
|
1806
1813
|
*/
|
|
1807
1814
|
resetFilter(): void;
|
|
1815
|
+
/**
|
|
1816
|
+
* 设置并持久化内置表格密度。
|
|
1817
|
+
*/
|
|
1818
|
+
changeDensity(density: ListTableDensity): void;
|
|
1808
1819
|
/**
|
|
1809
1820
|
* 销毁实例。
|
|
1810
1821
|
*/
|
|
@@ -1840,4 +1851,4 @@ interface ListTableValidationTarget {
|
|
|
1840
1851
|
columnKey: string;
|
|
1841
1852
|
}
|
|
1842
1853
|
|
|
1843
|
-
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 ListTableDataFormat, type ListTableDataFormatOptions, 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 ListTableGroupingOptions, 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 ListTablePerformanceMetric, 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 ListTableRowSelectorOptions, type ListTableScrollToOptions, type ListTableScrollbarOptions, type ListTableSearchRequest, type ListTableSelectionState, type ListTableSortItem, type ListTableSortState, type ListTableSparklineChartCellContent, type ListTableSparklineSize, type ListTableSummaryConfig, type ListTableSummaryRoundingMode, type ListTableSummaryType, type ListTableSymbolType, type ListTableTagCellContent, type ListTableTheme, type ListTableTooltipAdapter, type ListTableTooltipRequest, type ListTableUiOptions, type ListTableValidationError, type ListTableValidationErrorField, type ListTableValidationFailure, type ListTableValidationTarget, type PaginationConfig, type RenderCellDescriptor };
|
|
1854
|
+
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 ListTableDataFormat, type ListTableDataFormatOptions, type ListTableDataFormatType, type ListTableDebugOptions, type ListTableDebugSnapshot, type ListTableDensity, 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 ListTableGroupingOptions, 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 ListTablePerformanceMetric, 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 ListTableRowSelectorOptions, type ListTableScrollToOptions, type ListTableScrollbarOptions, type ListTableSearchRequest, type ListTableSelectionState, type ListTableSortItem, type ListTableSortState, type ListTableSparklineChartCellContent, type ListTableSparklineSize, type ListTableSummaryConfig, type ListTableSummaryRoundingMode, type ListTableSummaryType, 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
|
@@ -411,7 +411,7 @@ type ListTableFormRules<RecordType = Record<string, unknown>> = ListTableFormRul
|
|
|
411
411
|
* 单元格内容片段样式。
|
|
412
412
|
*/
|
|
413
413
|
interface ListTableContentStyle {
|
|
414
|
-
display?: "block" | "inline-block";
|
|
414
|
+
display?: "none" | "block" | "inline-block";
|
|
415
415
|
textAlign?: CanvasTextAlign;
|
|
416
416
|
fontSize?: number;
|
|
417
417
|
fontWeight?: string;
|
|
@@ -430,6 +430,8 @@ interface ListTableContentStyle {
|
|
|
430
430
|
*/
|
|
431
431
|
interface ListTableBaseCellContent<RecordType = any> {
|
|
432
432
|
key?: string;
|
|
433
|
+
/** 是否展示内容,默认展示。 */
|
|
434
|
+
visible?: boolean;
|
|
433
435
|
style?: ListTableContentStyle;
|
|
434
436
|
cursor?: string;
|
|
435
437
|
onClick?: (context: ListTableCellContentClickContext<RecordType>) => void;
|
|
@@ -1408,9 +1410,8 @@ interface ListTableScrollbarOptions {
|
|
|
1408
1410
|
verticalBottom?: number;
|
|
1409
1411
|
/**
|
|
1410
1412
|
* 滚动条可见性。
|
|
1411
|
-
* - `true`:
|
|
1413
|
+
* - `true` / `undefined`: 始终显示(默认)
|
|
1412
1414
|
* - `false`: 始终隐藏
|
|
1413
|
-
* - `undefined`: 自动模式(滚动/悬停时显示,随后自动隐藏)
|
|
1414
1415
|
*/
|
|
1415
1416
|
visible?: boolean;
|
|
1416
1417
|
}
|
|
@@ -1618,6 +1619,8 @@ interface ListTableUiOptions {
|
|
|
1618
1619
|
onSearchRequest?: (request: ListTableSearchRequest | null) => void;
|
|
1619
1620
|
onImagePreviewRequest?: (request: ListTableImagePreviewRequest | null) => void;
|
|
1620
1621
|
onDangerConfirmRequest?: (request: ListTableDangerConfirmRequest | null) => void;
|
|
1622
|
+
/** 持久化配置或内部操作改变表格密度时通知适配层。 */
|
|
1623
|
+
onDensityChange?: (density: 32 | 48 | 56) => void;
|
|
1621
1624
|
}
|
|
1622
1625
|
/**
|
|
1623
1626
|
* 行选择器配置。
|
|
@@ -1679,14 +1682,16 @@ interface ListTableOptions<RecordType = Record<string, unknown>> {
|
|
|
1679
1682
|
* 数据行高度。
|
|
1680
1683
|
*
|
|
1681
1684
|
* - 传入数字时使用固定高度
|
|
1682
|
-
* -
|
|
1683
|
-
* -
|
|
1685
|
+
* - 传入 `auto` 时按当前列宽和单元格内容自动计算
|
|
1686
|
+
* - 未传时默认使用紧凑密度 `32px`
|
|
1687
|
+
* - 未单独配置时,表头、汇总行和分组栏同步采用该高度
|
|
1684
1688
|
*
|
|
1685
|
-
* @default
|
|
1689
|
+
* @default 32
|
|
1686
1690
|
*/
|
|
1687
1691
|
rowHeight?: number | "auto";
|
|
1692
|
+
/** 表头行高,未传时采用 `rowHeight`。 */
|
|
1688
1693
|
headerRowHeight?: number;
|
|
1689
|
-
/**
|
|
1694
|
+
/** 汇总行高度,未传时采用 `rowHeight`。 */
|
|
1690
1695
|
summaryRowHeight?: number;
|
|
1691
1696
|
overscanRowCount?: number;
|
|
1692
1697
|
query?: ListTableQueryOptions<RecordType>;
|
|
@@ -1712,7 +1717,7 @@ interface ListTableOptions<RecordType = Record<string, unknown>> {
|
|
|
1712
1717
|
*/
|
|
1713
1718
|
resizable?: boolean;
|
|
1714
1719
|
/**
|
|
1715
|
-
*
|
|
1720
|
+
* 列配置持久化存储键。设置后列宽、固定、排序、过滤、缩放和表格密度会自动保存到 IndexDB。
|
|
1716
1721
|
*/
|
|
1717
1722
|
storageKey?: string;
|
|
1718
1723
|
draggable?: boolean;
|
|
@@ -1743,6 +1748,8 @@ interface ListTableScrollToOptions {
|
|
|
1743
1748
|
colIndex?: number;
|
|
1744
1749
|
behavior?: "auto" | "smooth";
|
|
1745
1750
|
}
|
|
1751
|
+
/** ListTable 内置表格密度对应的行高。 */
|
|
1752
|
+
type ListTableDensity = 32 | 48 | 56;
|
|
1746
1753
|
/**
|
|
1747
1754
|
* XLSX 导出参数。
|
|
1748
1755
|
*/
|
|
@@ -1805,6 +1812,10 @@ declare class ListTable<RecordType = Record<string, unknown>> {
|
|
|
1805
1812
|
* 重置筛选状态。
|
|
1806
1813
|
*/
|
|
1807
1814
|
resetFilter(): void;
|
|
1815
|
+
/**
|
|
1816
|
+
* 设置并持久化内置表格密度。
|
|
1817
|
+
*/
|
|
1818
|
+
changeDensity(density: ListTableDensity): void;
|
|
1808
1819
|
/**
|
|
1809
1820
|
* 销毁实例。
|
|
1810
1821
|
*/
|
|
@@ -1840,4 +1851,4 @@ interface ListTableValidationTarget {
|
|
|
1840
1851
|
columnKey: string;
|
|
1841
1852
|
}
|
|
1842
1853
|
|
|
1843
|
-
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 ListTableDataFormat, type ListTableDataFormatOptions, 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 ListTableGroupingOptions, 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 ListTablePerformanceMetric, 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 ListTableRowSelectorOptions, type ListTableScrollToOptions, type ListTableScrollbarOptions, type ListTableSearchRequest, type ListTableSelectionState, type ListTableSortItem, type ListTableSortState, type ListTableSparklineChartCellContent, type ListTableSparklineSize, type ListTableSummaryConfig, type ListTableSummaryRoundingMode, type ListTableSummaryType, type ListTableSymbolType, type ListTableTagCellContent, type ListTableTheme, type ListTableTooltipAdapter, type ListTableTooltipRequest, type ListTableUiOptions, type ListTableValidationError, type ListTableValidationErrorField, type ListTableValidationFailure, type ListTableValidationTarget, type PaginationConfig, type RenderCellDescriptor };
|
|
1854
|
+
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 ListTableDataFormat, type ListTableDataFormatOptions, type ListTableDataFormatType, type ListTableDebugOptions, type ListTableDebugSnapshot, type ListTableDensity, 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 ListTableGroupingOptions, 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 ListTablePerformanceMetric, 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 ListTableRowSelectorOptions, type ListTableScrollToOptions, type ListTableScrollbarOptions, type ListTableSearchRequest, type ListTableSelectionState, type ListTableSortItem, type ListTableSortState, type ListTableSparklineChartCellContent, type ListTableSparklineSize, type ListTableSummaryConfig, type ListTableSummaryRoundingMode, type ListTableSummaryType, type ListTableSymbolType, type ListTableTagCellContent, type ListTableTheme, type ListTableTooltipAdapter, type ListTableTooltipRequest, type ListTableUiOptions, type ListTableValidationError, type ListTableValidationErrorField, type ListTableValidationFailure, type ListTableValidationTarget, type PaginationConfig, type RenderCellDescriptor };
|