@canvas-components/list-table 0.2.6 → 0.3.1
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.cjs +500 -142
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +24 -5
- package/dist/index.d.ts +24 -5
- package/dist/index.js +500 -142
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -31,6 +31,14 @@ type ListTableFilterConditionRelation$1 = "and" | "or";
|
|
|
31
31
|
* 条件运算符。
|
|
32
32
|
*/
|
|
33
33
|
type ListTableFilterConditionOperator$1 = "none" | "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "between" | "notBetween" | "startsWith" | "notStartsWith" | "endsWith" | "notEndsWith" | "includes" | "notIncludes" | "blank" | "notBlank";
|
|
34
|
+
/**
|
|
35
|
+
* 单个条件过滤项。
|
|
36
|
+
*/
|
|
37
|
+
interface ListTableFilterCondition$1 {
|
|
38
|
+
operator: ListTableFilterConditionOperator$1;
|
|
39
|
+
value?: string;
|
|
40
|
+
secondValue?: string;
|
|
41
|
+
}
|
|
34
42
|
/**
|
|
35
43
|
* 过滤值定义。
|
|
36
44
|
*/
|
|
@@ -47,6 +55,8 @@ interface ListTableFilterValue$1 {
|
|
|
47
55
|
secondConditionOperator?: ListTableFilterConditionOperator$1;
|
|
48
56
|
secondConditionValue?: string;
|
|
49
57
|
secondConditionSecondValue?: string;
|
|
58
|
+
/** 动态条件列表;存在时优先于旧的两条件字段。 */
|
|
59
|
+
conditions?: ListTableFilterCondition$1[];
|
|
50
60
|
}
|
|
51
61
|
/**
|
|
52
62
|
* 过滤状态。
|
|
@@ -878,6 +888,11 @@ type ListTableFilterMatchMode = "fuzzy" | "exact";
|
|
|
878
888
|
type ListTableFilterType = "value" | "condition";
|
|
879
889
|
type ListTableFilterConditionRelation = "and" | "or";
|
|
880
890
|
type ListTableFilterConditionOperator = "none" | "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "between" | "notBetween" | "startsWith" | "notStartsWith" | "endsWith" | "notEndsWith" | "includes" | "notIncludes" | "blank" | "notBlank";
|
|
891
|
+
interface ListTableFilterCondition {
|
|
892
|
+
operator: ListTableFilterConditionOperator;
|
|
893
|
+
value?: string;
|
|
894
|
+
secondValue?: string;
|
|
895
|
+
}
|
|
881
896
|
interface ListTableFilterValue {
|
|
882
897
|
keyword: string;
|
|
883
898
|
mode: ListTableFilterMatchMode;
|
|
@@ -891,6 +906,7 @@ interface ListTableFilterValue {
|
|
|
891
906
|
secondConditionOperator?: ListTableFilterConditionOperator;
|
|
892
907
|
secondConditionValue?: string;
|
|
893
908
|
secondConditionSecondValue?: string;
|
|
909
|
+
conditions?: ListTableFilterCondition[];
|
|
894
910
|
}
|
|
895
911
|
interface FilterPanelOptionItem {
|
|
896
912
|
label: string;
|
|
@@ -920,6 +936,9 @@ interface FilterPanelTexts {
|
|
|
920
936
|
relationOrLabel: string;
|
|
921
937
|
resetAction: string;
|
|
922
938
|
applyAction: string;
|
|
939
|
+
conditionLabel?: string;
|
|
940
|
+
addConditionAction?: string;
|
|
941
|
+
deleteConditionAction?: string;
|
|
923
942
|
}
|
|
924
943
|
interface FilterPanelConfig {
|
|
925
944
|
columnTitle: string;
|
|
@@ -986,7 +1005,7 @@ interface HeaderContextMenuColumnItem {
|
|
|
986
1005
|
disabled?: boolean;
|
|
987
1006
|
children?: HeaderContextMenuColumnItem[];
|
|
988
1007
|
}
|
|
989
|
-
type HeaderContextMenuDensity = "comfortable" | "middle" | "compact";
|
|
1008
|
+
type HeaderContextMenuDensity = "comfortable" | "middle" | "compact" | "auto";
|
|
990
1009
|
interface HeaderContextMenuConfig {
|
|
991
1010
|
x: number;
|
|
992
1011
|
y: number;
|
|
@@ -1620,7 +1639,7 @@ interface ListTableUiOptions {
|
|
|
1620
1639
|
onImagePreviewRequest?: (request: ListTableImagePreviewRequest | null) => void;
|
|
1621
1640
|
onDangerConfirmRequest?: (request: ListTableDangerConfirmRequest | null) => void;
|
|
1622
1641
|
/** 持久化配置或内部操作改变表格密度时通知适配层。 */
|
|
1623
|
-
onDensityChange?: (density: 32 | 48 | 56) => void;
|
|
1642
|
+
onDensityChange?: (density: 32 | 48 | 56 | "auto") => void;
|
|
1624
1643
|
}
|
|
1625
1644
|
/**
|
|
1626
1645
|
* 行选择器配置。
|
|
@@ -1748,8 +1767,8 @@ interface ListTableScrollToOptions {
|
|
|
1748
1767
|
colIndex?: number;
|
|
1749
1768
|
behavior?: "auto" | "smooth";
|
|
1750
1769
|
}
|
|
1751
|
-
/** ListTable
|
|
1752
|
-
type ListTableDensity = 32 | 48 | 56;
|
|
1770
|
+
/** ListTable 内置表格密度对应的行高或自适应模式。 */
|
|
1771
|
+
type ListTableDensity = 32 | 48 | 56 | "auto";
|
|
1753
1772
|
/**
|
|
1754
1773
|
* XLSX 导出参数。
|
|
1755
1774
|
*/
|
|
@@ -1851,4 +1870,4 @@ interface ListTableValidationTarget {
|
|
|
1851
1870
|
columnKey: string;
|
|
1852
1871
|
}
|
|
1853
1872
|
|
|
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 };
|
|
1873
|
+
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 ListTableFilterCondition$1 as ListTableFilterCondition, 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
|
@@ -31,6 +31,14 @@ type ListTableFilterConditionRelation$1 = "and" | "or";
|
|
|
31
31
|
* 条件运算符。
|
|
32
32
|
*/
|
|
33
33
|
type ListTableFilterConditionOperator$1 = "none" | "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "between" | "notBetween" | "startsWith" | "notStartsWith" | "endsWith" | "notEndsWith" | "includes" | "notIncludes" | "blank" | "notBlank";
|
|
34
|
+
/**
|
|
35
|
+
* 单个条件过滤项。
|
|
36
|
+
*/
|
|
37
|
+
interface ListTableFilterCondition$1 {
|
|
38
|
+
operator: ListTableFilterConditionOperator$1;
|
|
39
|
+
value?: string;
|
|
40
|
+
secondValue?: string;
|
|
41
|
+
}
|
|
34
42
|
/**
|
|
35
43
|
* 过滤值定义。
|
|
36
44
|
*/
|
|
@@ -47,6 +55,8 @@ interface ListTableFilterValue$1 {
|
|
|
47
55
|
secondConditionOperator?: ListTableFilterConditionOperator$1;
|
|
48
56
|
secondConditionValue?: string;
|
|
49
57
|
secondConditionSecondValue?: string;
|
|
58
|
+
/** 动态条件列表;存在时优先于旧的两条件字段。 */
|
|
59
|
+
conditions?: ListTableFilterCondition$1[];
|
|
50
60
|
}
|
|
51
61
|
/**
|
|
52
62
|
* 过滤状态。
|
|
@@ -878,6 +888,11 @@ type ListTableFilterMatchMode = "fuzzy" | "exact";
|
|
|
878
888
|
type ListTableFilterType = "value" | "condition";
|
|
879
889
|
type ListTableFilterConditionRelation = "and" | "or";
|
|
880
890
|
type ListTableFilterConditionOperator = "none" | "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "between" | "notBetween" | "startsWith" | "notStartsWith" | "endsWith" | "notEndsWith" | "includes" | "notIncludes" | "blank" | "notBlank";
|
|
891
|
+
interface ListTableFilterCondition {
|
|
892
|
+
operator: ListTableFilterConditionOperator;
|
|
893
|
+
value?: string;
|
|
894
|
+
secondValue?: string;
|
|
895
|
+
}
|
|
881
896
|
interface ListTableFilterValue {
|
|
882
897
|
keyword: string;
|
|
883
898
|
mode: ListTableFilterMatchMode;
|
|
@@ -891,6 +906,7 @@ interface ListTableFilterValue {
|
|
|
891
906
|
secondConditionOperator?: ListTableFilterConditionOperator;
|
|
892
907
|
secondConditionValue?: string;
|
|
893
908
|
secondConditionSecondValue?: string;
|
|
909
|
+
conditions?: ListTableFilterCondition[];
|
|
894
910
|
}
|
|
895
911
|
interface FilterPanelOptionItem {
|
|
896
912
|
label: string;
|
|
@@ -920,6 +936,9 @@ interface FilterPanelTexts {
|
|
|
920
936
|
relationOrLabel: string;
|
|
921
937
|
resetAction: string;
|
|
922
938
|
applyAction: string;
|
|
939
|
+
conditionLabel?: string;
|
|
940
|
+
addConditionAction?: string;
|
|
941
|
+
deleteConditionAction?: string;
|
|
923
942
|
}
|
|
924
943
|
interface FilterPanelConfig {
|
|
925
944
|
columnTitle: string;
|
|
@@ -986,7 +1005,7 @@ interface HeaderContextMenuColumnItem {
|
|
|
986
1005
|
disabled?: boolean;
|
|
987
1006
|
children?: HeaderContextMenuColumnItem[];
|
|
988
1007
|
}
|
|
989
|
-
type HeaderContextMenuDensity = "comfortable" | "middle" | "compact";
|
|
1008
|
+
type HeaderContextMenuDensity = "comfortable" | "middle" | "compact" | "auto";
|
|
990
1009
|
interface HeaderContextMenuConfig {
|
|
991
1010
|
x: number;
|
|
992
1011
|
y: number;
|
|
@@ -1620,7 +1639,7 @@ interface ListTableUiOptions {
|
|
|
1620
1639
|
onImagePreviewRequest?: (request: ListTableImagePreviewRequest | null) => void;
|
|
1621
1640
|
onDangerConfirmRequest?: (request: ListTableDangerConfirmRequest | null) => void;
|
|
1622
1641
|
/** 持久化配置或内部操作改变表格密度时通知适配层。 */
|
|
1623
|
-
onDensityChange?: (density: 32 | 48 | 56) => void;
|
|
1642
|
+
onDensityChange?: (density: 32 | 48 | 56 | "auto") => void;
|
|
1624
1643
|
}
|
|
1625
1644
|
/**
|
|
1626
1645
|
* 行选择器配置。
|
|
@@ -1748,8 +1767,8 @@ interface ListTableScrollToOptions {
|
|
|
1748
1767
|
colIndex?: number;
|
|
1749
1768
|
behavior?: "auto" | "smooth";
|
|
1750
1769
|
}
|
|
1751
|
-
/** ListTable
|
|
1752
|
-
type ListTableDensity = 32 | 48 | 56;
|
|
1770
|
+
/** ListTable 内置表格密度对应的行高或自适应模式。 */
|
|
1771
|
+
type ListTableDensity = 32 | 48 | 56 | "auto";
|
|
1753
1772
|
/**
|
|
1754
1773
|
* XLSX 导出参数。
|
|
1755
1774
|
*/
|
|
@@ -1851,4 +1870,4 @@ interface ListTableValidationTarget {
|
|
|
1851
1870
|
columnKey: string;
|
|
1852
1871
|
}
|
|
1853
1872
|
|
|
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 };
|
|
1873
|
+
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 ListTableFilterCondition$1 as ListTableFilterCondition, 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 };
|