@canvas-components/list-table 0.2.7 → 0.3.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/README.md +3 -1
- package/dist/index.cjs +562 -207
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +28 -7
- package/dist/index.d.ts +28 -7
- package/dist/index.js +562 -207
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
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
|
* 过滤状态。
|
|
@@ -368,7 +378,9 @@ type ListTableSparklineSize = "small" | "medium" | number | [number, number] | {
|
|
|
368
378
|
type ListTableChartType = "sparkline" | (string & {});
|
|
369
379
|
type ListTableChartSize = ListTableSparklineSize;
|
|
370
380
|
type ListTableRateSize = "small" | "medium" | "large" | number;
|
|
371
|
-
type
|
|
381
|
+
type ListTableRateSymbolType = "star" | "sun" | "moon";
|
|
382
|
+
/** 单元格内置图标名称。 */
|
|
383
|
+
type ListTableSymbolType = ListTableRateSymbolType | "check" | "close";
|
|
372
384
|
type ListTableButtonType = "primary" | "default" | "dashed" | "text" | "link";
|
|
373
385
|
type ListTableButtonSize = "small" | "middle" | "medium" | "large";
|
|
374
386
|
/**
|
|
@@ -572,7 +584,7 @@ interface ListTableRateCellContent<RecordType = any> extends ListTableBaseCellCo
|
|
|
572
584
|
count?: number;
|
|
573
585
|
allowHalf?: boolean;
|
|
574
586
|
/** 评分图形,默认星星。 */
|
|
575
|
-
shape?:
|
|
587
|
+
shape?: ListTableRateSymbolType;
|
|
576
588
|
size?: ListTableRateSize;
|
|
577
589
|
color?: string;
|
|
578
590
|
backgroundColor?: string;
|
|
@@ -878,6 +890,11 @@ type ListTableFilterMatchMode = "fuzzy" | "exact";
|
|
|
878
890
|
type ListTableFilterType = "value" | "condition";
|
|
879
891
|
type ListTableFilterConditionRelation = "and" | "or";
|
|
880
892
|
type ListTableFilterConditionOperator = "none" | "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "between" | "notBetween" | "startsWith" | "notStartsWith" | "endsWith" | "notEndsWith" | "includes" | "notIncludes" | "blank" | "notBlank";
|
|
893
|
+
interface ListTableFilterCondition {
|
|
894
|
+
operator: ListTableFilterConditionOperator;
|
|
895
|
+
value?: string;
|
|
896
|
+
secondValue?: string;
|
|
897
|
+
}
|
|
881
898
|
interface ListTableFilterValue {
|
|
882
899
|
keyword: string;
|
|
883
900
|
mode: ListTableFilterMatchMode;
|
|
@@ -891,6 +908,7 @@ interface ListTableFilterValue {
|
|
|
891
908
|
secondConditionOperator?: ListTableFilterConditionOperator;
|
|
892
909
|
secondConditionValue?: string;
|
|
893
910
|
secondConditionSecondValue?: string;
|
|
911
|
+
conditions?: ListTableFilterCondition[];
|
|
894
912
|
}
|
|
895
913
|
interface FilterPanelOptionItem {
|
|
896
914
|
label: string;
|
|
@@ -920,6 +938,9 @@ interface FilterPanelTexts {
|
|
|
920
938
|
relationOrLabel: string;
|
|
921
939
|
resetAction: string;
|
|
922
940
|
applyAction: string;
|
|
941
|
+
conditionLabel?: string;
|
|
942
|
+
addConditionAction?: string;
|
|
943
|
+
deleteConditionAction?: string;
|
|
923
944
|
}
|
|
924
945
|
interface FilterPanelConfig {
|
|
925
946
|
columnTitle: string;
|
|
@@ -986,7 +1007,7 @@ interface HeaderContextMenuColumnItem {
|
|
|
986
1007
|
disabled?: boolean;
|
|
987
1008
|
children?: HeaderContextMenuColumnItem[];
|
|
988
1009
|
}
|
|
989
|
-
type HeaderContextMenuDensity = "comfortable" | "middle" | "compact";
|
|
1010
|
+
type HeaderContextMenuDensity = "comfortable" | "middle" | "compact" | "auto";
|
|
990
1011
|
interface HeaderContextMenuConfig {
|
|
991
1012
|
x: number;
|
|
992
1013
|
y: number;
|
|
@@ -1620,7 +1641,7 @@ interface ListTableUiOptions {
|
|
|
1620
1641
|
onImagePreviewRequest?: (request: ListTableImagePreviewRequest | null) => void;
|
|
1621
1642
|
onDangerConfirmRequest?: (request: ListTableDangerConfirmRequest | null) => void;
|
|
1622
1643
|
/** 持久化配置或内部操作改变表格密度时通知适配层。 */
|
|
1623
|
-
onDensityChange?: (density: 32 | 48 | 56) => void;
|
|
1644
|
+
onDensityChange?: (density: 32 | 48 | 56 | "auto") => void;
|
|
1624
1645
|
}
|
|
1625
1646
|
/**
|
|
1626
1647
|
* 行选择器配置。
|
|
@@ -1748,8 +1769,8 @@ interface ListTableScrollToOptions {
|
|
|
1748
1769
|
colIndex?: number;
|
|
1749
1770
|
behavior?: "auto" | "smooth";
|
|
1750
1771
|
}
|
|
1751
|
-
/** ListTable
|
|
1752
|
-
type ListTableDensity = 32 | 48 | 56;
|
|
1772
|
+
/** ListTable 内置表格密度对应的行高或自适应模式。 */
|
|
1773
|
+
type ListTableDensity = 32 | 48 | 56 | "auto";
|
|
1753
1774
|
/**
|
|
1754
1775
|
* XLSX 导出参数。
|
|
1755
1776
|
*/
|
|
@@ -1851,4 +1872,4 @@ interface ListTableValidationTarget {
|
|
|
1851
1872
|
columnKey: string;
|
|
1852
1873
|
}
|
|
1853
1874
|
|
|
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 };
|
|
1875
|
+
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 ListTableRateSymbolType, 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
|
* 过滤状态。
|
|
@@ -368,7 +378,9 @@ type ListTableSparklineSize = "small" | "medium" | number | [number, number] | {
|
|
|
368
378
|
type ListTableChartType = "sparkline" | (string & {});
|
|
369
379
|
type ListTableChartSize = ListTableSparklineSize;
|
|
370
380
|
type ListTableRateSize = "small" | "medium" | "large" | number;
|
|
371
|
-
type
|
|
381
|
+
type ListTableRateSymbolType = "star" | "sun" | "moon";
|
|
382
|
+
/** 单元格内置图标名称。 */
|
|
383
|
+
type ListTableSymbolType = ListTableRateSymbolType | "check" | "close";
|
|
372
384
|
type ListTableButtonType = "primary" | "default" | "dashed" | "text" | "link";
|
|
373
385
|
type ListTableButtonSize = "small" | "middle" | "medium" | "large";
|
|
374
386
|
/**
|
|
@@ -572,7 +584,7 @@ interface ListTableRateCellContent<RecordType = any> extends ListTableBaseCellCo
|
|
|
572
584
|
count?: number;
|
|
573
585
|
allowHalf?: boolean;
|
|
574
586
|
/** 评分图形,默认星星。 */
|
|
575
|
-
shape?:
|
|
587
|
+
shape?: ListTableRateSymbolType;
|
|
576
588
|
size?: ListTableRateSize;
|
|
577
589
|
color?: string;
|
|
578
590
|
backgroundColor?: string;
|
|
@@ -878,6 +890,11 @@ type ListTableFilterMatchMode = "fuzzy" | "exact";
|
|
|
878
890
|
type ListTableFilterType = "value" | "condition";
|
|
879
891
|
type ListTableFilterConditionRelation = "and" | "or";
|
|
880
892
|
type ListTableFilterConditionOperator = "none" | "eq" | "neq" | "gt" | "gte" | "lt" | "lte" | "between" | "notBetween" | "startsWith" | "notStartsWith" | "endsWith" | "notEndsWith" | "includes" | "notIncludes" | "blank" | "notBlank";
|
|
893
|
+
interface ListTableFilterCondition {
|
|
894
|
+
operator: ListTableFilterConditionOperator;
|
|
895
|
+
value?: string;
|
|
896
|
+
secondValue?: string;
|
|
897
|
+
}
|
|
881
898
|
interface ListTableFilterValue {
|
|
882
899
|
keyword: string;
|
|
883
900
|
mode: ListTableFilterMatchMode;
|
|
@@ -891,6 +908,7 @@ interface ListTableFilterValue {
|
|
|
891
908
|
secondConditionOperator?: ListTableFilterConditionOperator;
|
|
892
909
|
secondConditionValue?: string;
|
|
893
910
|
secondConditionSecondValue?: string;
|
|
911
|
+
conditions?: ListTableFilterCondition[];
|
|
894
912
|
}
|
|
895
913
|
interface FilterPanelOptionItem {
|
|
896
914
|
label: string;
|
|
@@ -920,6 +938,9 @@ interface FilterPanelTexts {
|
|
|
920
938
|
relationOrLabel: string;
|
|
921
939
|
resetAction: string;
|
|
922
940
|
applyAction: string;
|
|
941
|
+
conditionLabel?: string;
|
|
942
|
+
addConditionAction?: string;
|
|
943
|
+
deleteConditionAction?: string;
|
|
923
944
|
}
|
|
924
945
|
interface FilterPanelConfig {
|
|
925
946
|
columnTitle: string;
|
|
@@ -986,7 +1007,7 @@ interface HeaderContextMenuColumnItem {
|
|
|
986
1007
|
disabled?: boolean;
|
|
987
1008
|
children?: HeaderContextMenuColumnItem[];
|
|
988
1009
|
}
|
|
989
|
-
type HeaderContextMenuDensity = "comfortable" | "middle" | "compact";
|
|
1010
|
+
type HeaderContextMenuDensity = "comfortable" | "middle" | "compact" | "auto";
|
|
990
1011
|
interface HeaderContextMenuConfig {
|
|
991
1012
|
x: number;
|
|
992
1013
|
y: number;
|
|
@@ -1620,7 +1641,7 @@ interface ListTableUiOptions {
|
|
|
1620
1641
|
onImagePreviewRequest?: (request: ListTableImagePreviewRequest | null) => void;
|
|
1621
1642
|
onDangerConfirmRequest?: (request: ListTableDangerConfirmRequest | null) => void;
|
|
1622
1643
|
/** 持久化配置或内部操作改变表格密度时通知适配层。 */
|
|
1623
|
-
onDensityChange?: (density: 32 | 48 | 56) => void;
|
|
1644
|
+
onDensityChange?: (density: 32 | 48 | 56 | "auto") => void;
|
|
1624
1645
|
}
|
|
1625
1646
|
/**
|
|
1626
1647
|
* 行选择器配置。
|
|
@@ -1748,8 +1769,8 @@ interface ListTableScrollToOptions {
|
|
|
1748
1769
|
colIndex?: number;
|
|
1749
1770
|
behavior?: "auto" | "smooth";
|
|
1750
1771
|
}
|
|
1751
|
-
/** ListTable
|
|
1752
|
-
type ListTableDensity = 32 | 48 | 56;
|
|
1772
|
+
/** ListTable 内置表格密度对应的行高或自适应模式。 */
|
|
1773
|
+
type ListTableDensity = 32 | 48 | 56 | "auto";
|
|
1753
1774
|
/**
|
|
1754
1775
|
* XLSX 导出参数。
|
|
1755
1776
|
*/
|
|
@@ -1851,4 +1872,4 @@ interface ListTableValidationTarget {
|
|
|
1851
1872
|
columnKey: string;
|
|
1852
1873
|
}
|
|
1853
1874
|
|
|
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 };
|
|
1875
|
+
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 ListTableRateSymbolType, 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 };
|