@koi-design/uxd-ui 14.0.4 → 14.0.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/es/components/Calendar/Calendar.vue.d.ts +15 -0
- package/es/components/Calendar/Header.vue.d.ts +15 -0
- package/es/components/Calendar/index.d.ts +30 -0
- package/es/components/Radio/Radio.mjs +5 -4
- package/es/components/Radio/Radio.mjs.map +1 -1
- package/es/components/Radio/Radio.type.d.ts +4 -0
- package/es/components/Radio/Radio.type.mjs +4 -0
- package/es/components/Radio/Radio.type.mjs.map +1 -1
- package/es/components/Radio/Radio.vue.d.ts +9 -0
- package/es/components/Radio/index.d.ts +15 -0
- package/es/components/Table/BaseTable.mjs +20 -6
- package/es/components/Table/BaseTable.mjs.map +1 -1
- package/es/components/Table/BaseTable.vue.d.ts +44 -9
- package/es/components/Table/BodyTable.vue.d.ts +44 -9
- package/es/components/Table/HeadTable.vue.d.ts +44 -9
- package/es/components/Table/Table.mjs +8 -9
- package/es/components/Table/Table.mjs.map +1 -1
- package/es/components/Table/Table.type.d.ts +7 -5
- package/es/components/Table/Table.type.mjs.map +1 -1
- package/es/components/Table/Table.vue.d.ts +88 -18
- package/es/components/Table/TableBox.vue.d.ts +88 -18
- package/es/components/Table/hooks/useTableResize.d.ts +1 -1
- package/es/components/Table/hooks/useTableResize.mjs +13 -71
- package/es/components/Table/hooks/useTableResize.mjs.map +1 -1
- package/es/components/Table/tableUnits/ColGroup.mjs +8 -5
- package/es/components/Table/tableUnits/ColGroup.mjs.map +1 -1
- package/es/components/Table/tableUnits/ExpandIcon.mjs +2 -2
- package/es/components/Table/tableUnits/ExpandIcon.mjs.map +1 -1
- package/es/components/Table/tableUnits/ExpandIcon.vue.d.ts +3 -3
- package/es/components/Table/tableUnits/ExpandRows.mjs.map +1 -1
- package/es/components/Table/tableUnits/ExpandRows.vue.d.ts +21 -3
- package/es/components/Table/tableUnits/SelectionBox.vue.d.ts +15 -0
- package/es/components/Table/tableUnits/TableBody.vue.d.ts +42 -6
- package/es/components/Table/tableUnits/TableCell.mjs +108 -95
- package/es/components/Table/tableUnits/TableCell.mjs.map +1 -1
- package/es/components/Table/tableUnits/TableCell.vue.d.ts +21 -3
- package/es/components/Table/tableUnits/TableRow.vue.d.ts +21 -3
- package/es/components/Tabs/TabNav.mjs +4 -5
- package/es/components/Tabs/TabNav.mjs.map +1 -1
- package/es/components/Tabs/TabNav.vue.d.ts +1 -1
- package/es/components/Tabs/Tabs.d.ts +1 -1
- package/es/components/Tabs/index.d.ts +3 -3
- package/es/components/base/ResizeObserver.mjs +1 -1
- package/es/components/base/ResizeObserver.mjs.map +1 -1
- package/lib/components/Calendar/Calendar.vue.d.ts +15 -0
- package/lib/components/Calendar/Header.vue.d.ts +15 -0
- package/lib/components/Calendar/index.d.ts +30 -0
- package/lib/components/Radio/Radio.js +4 -3
- package/lib/components/Radio/Radio.js.map +1 -1
- package/lib/components/Radio/Radio.type.d.ts +4 -0
- package/lib/components/Radio/Radio.type.js +4 -0
- package/lib/components/Radio/Radio.type.js.map +1 -1
- package/lib/components/Radio/Radio.vue.d.ts +9 -0
- package/lib/components/Radio/index.d.ts +15 -0
- package/lib/components/Table/BaseTable.js +20 -6
- package/lib/components/Table/BaseTable.js.map +1 -1
- package/lib/components/Table/BaseTable.vue.d.ts +44 -9
- package/lib/components/Table/BodyTable.vue.d.ts +44 -9
- package/lib/components/Table/HeadTable.vue.d.ts +44 -9
- package/lib/components/Table/Table.js +7 -8
- package/lib/components/Table/Table.js.map +1 -1
- package/lib/components/Table/Table.type.d.ts +7 -5
- package/lib/components/Table/Table.type.js.map +1 -1
- package/lib/components/Table/Table.vue.d.ts +88 -18
- package/lib/components/Table/TableBox.vue.d.ts +88 -18
- package/lib/components/Table/hooks/useTableResize.d.ts +1 -1
- package/lib/components/Table/hooks/useTableResize.js +11 -69
- package/lib/components/Table/hooks/useTableResize.js.map +1 -1
- package/lib/components/Table/tableUnits/ColGroup.js +8 -5
- package/lib/components/Table/tableUnits/ColGroup.js.map +1 -1
- package/lib/components/Table/tableUnits/ExpandIcon.js +1 -1
- package/lib/components/Table/tableUnits/ExpandIcon.js.map +1 -1
- package/lib/components/Table/tableUnits/ExpandIcon.vue.d.ts +3 -3
- package/lib/components/Table/tableUnits/ExpandRows.js.map +1 -1
- package/lib/components/Table/tableUnits/ExpandRows.vue.d.ts +21 -3
- package/lib/components/Table/tableUnits/SelectionBox.vue.d.ts +15 -0
- package/lib/components/Table/tableUnits/TableBody.vue.d.ts +42 -6
- package/lib/components/Table/tableUnits/TableCell.js +107 -94
- package/lib/components/Table/tableUnits/TableCell.js.map +1 -1
- package/lib/components/Table/tableUnits/TableCell.vue.d.ts +21 -3
- package/lib/components/Table/tableUnits/TableRow.vue.d.ts +21 -3
- package/lib/components/Tabs/TabNav.js +3 -4
- package/lib/components/Tabs/TabNav.js.map +1 -1
- package/lib/components/Tabs/TabNav.vue.d.ts +1 -1
- package/lib/components/Tabs/Tabs.d.ts +1 -1
- package/lib/components/Tabs/index.d.ts +3 -3
- package/lib/components/base/ResizeObserver.js +1 -1
- package/lib/components/base/ResizeObserver.js.map +1 -1
- package/package.json +1 -1
- package/styles/components/alert/index.css +1 -1
- package/styles/components/autoComplete/index.css +1 -1
- package/styles/components/avatar/index.css +1 -1
- package/styles/components/button/index.css +1 -1
- package/styles/components/carousel/index.css +1 -1
- package/styles/components/cascader/index.css +1 -1
- package/styles/components/datePicker/index.css +1 -1
- package/styles/components/dropdown/index.css +1 -1
- package/styles/components/dropdown/index.less +2 -3
- package/styles/components/form/index.css +1 -1
- package/styles/components/icon/index.css +1 -1
- package/styles/components/input/index.css +1 -1
- package/styles/components/inputNumber/index.css +1 -1
- package/styles/components/link/index.css +1 -1
- package/styles/components/mentions/index.css +1 -1
- package/styles/components/modal/index.css +1 -1
- package/styles/components/select/index.css +1 -1
- package/styles/components/spin/index.css +1 -1
- package/styles/components/table/index.css +1 -1
- package/styles/components/table/index.less +106 -242
- package/styles/components/table/var.less +16 -31
- package/styles/components/tabs/borderCard.less +23 -27
- package/styles/components/tabs/card.less +18 -37
- package/styles/components/tabs/index.css +1 -1
- package/styles/components/tabs/index.less +103 -72
- package/styles/components/tabs/var.less +16 -71
- package/styles/components/timePicker/index.css +1 -1
- package/styles/cssVariable.css +1 -1
- package/styles/cssVariable.less +1 -1
- package/styles/index.css +1 -1
- package/types/components/Calendar/Calendar.vue.d.ts +15 -0
- package/types/components/Calendar/Header.vue.d.ts +15 -0
- package/types/components/Calendar/index.d.ts +30 -0
- package/types/components/Radio/Radio.type.d.ts +4 -0
- package/types/components/Radio/Radio.vue.d.ts +9 -0
- package/types/components/Radio/index.d.ts +15 -0
- package/types/components/Table/BaseTable.vue.d.ts +44 -9
- package/types/components/Table/BodyTable.vue.d.ts +44 -9
- package/types/components/Table/HeadTable.vue.d.ts +44 -9
- package/types/components/Table/Table.type.d.ts +7 -5
- package/types/components/Table/Table.vue.d.ts +88 -18
- package/types/components/Table/TableBox.vue.d.ts +88 -18
- package/types/components/Table/hooks/useTableResize.d.ts +1 -1
- package/types/components/Table/tableUnits/ExpandIcon.vue.d.ts +3 -3
- package/types/components/Table/tableUnits/ExpandRows.vue.d.ts +21 -3
- package/types/components/Table/tableUnits/SelectionBox.vue.d.ts +15 -0
- package/types/components/Table/tableUnits/TableBody.vue.d.ts +42 -6
- package/types/components/Table/tableUnits/TableCell.vue.d.ts +21 -3
- package/types/components/Table/tableUnits/TableRow.vue.d.ts +21 -3
- package/types/components/Tabs/TabNav.vue.d.ts +1 -1
- package/types/components/Tabs/Tabs.d.ts +1 -1
- package/types/components/Tabs/index.d.ts +3 -3
- package/uxd-ui.css +1 -1
- package/uxd-ui.esm.min.mjs +6 -6
- package/uxd-ui.esm.mjs +164 -191
- package/uxd-ui.umd.js +164 -191
- package/uxd-ui.umd.min.js +6 -6
|
@@ -50,8 +50,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
50
50
|
title?: string;
|
|
51
51
|
dataIndex?: string;
|
|
52
52
|
width?: string | number;
|
|
53
|
-
minWidth?:
|
|
54
|
-
maxWidth?: string | number;
|
|
53
|
+
minWidth?: number;
|
|
55
54
|
fixed?: import("./Table.type").ColumnFixed;
|
|
56
55
|
align?: import("./Table.type").ColumnAlign;
|
|
57
56
|
ellipsis?: boolean;
|
|
@@ -62,7 +61,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
62
61
|
filterable?: boolean;
|
|
63
62
|
filters?: import("./Table.type").ColumnFilter[];
|
|
64
63
|
filterFn?: import("./Table.type").ColumnFilterFn;
|
|
65
|
-
filterIcon?: string
|
|
64
|
+
filterIcon?: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
66
65
|
filterIconStyle?: import("vue").CSSProperties;
|
|
67
66
|
filterMultiple?: boolean;
|
|
68
67
|
filteredValue?: (string | number)[];
|
|
@@ -4446,6 +4445,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4446
4445
|
cellRef: import("vue").Ref<any, any>;
|
|
4447
4446
|
ellipsisSpanRef: import("vue").Ref<any, any>;
|
|
4448
4447
|
isOverflow: import("vue").Ref<boolean, boolean>;
|
|
4448
|
+
debouncedHandleResize: import("../../utils").DebounceReturn;
|
|
4449
4449
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
4450
4450
|
prefixCls: {
|
|
4451
4451
|
type: StringConstructor;
|
|
@@ -4502,7 +4502,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4502
4502
|
};
|
|
4503
4503
|
expandIcon: {
|
|
4504
4504
|
type: PropType<import("../..").IconPropType>;
|
|
4505
|
-
default:
|
|
4505
|
+
default: any;
|
|
4506
4506
|
};
|
|
4507
4507
|
needIndentSpaced: {
|
|
4508
4508
|
type: BooleanConstructor;
|
|
@@ -4528,7 +4528,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4528
4528
|
};
|
|
4529
4529
|
expandIcon: {
|
|
4530
4530
|
type: PropType<import("../..").IconPropType>;
|
|
4531
|
-
default:
|
|
4531
|
+
default: any;
|
|
4532
4532
|
};
|
|
4533
4533
|
needIndentSpaced: {
|
|
4534
4534
|
type: BooleanConstructor;
|
|
@@ -4543,7 +4543,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4543
4543
|
"onAsync-expand"?: (...args: any[]) => any;
|
|
4544
4544
|
}>, {
|
|
4545
4545
|
expanded: boolean;
|
|
4546
|
-
expandIcon:
|
|
4546
|
+
expandIcon: any;
|
|
4547
4547
|
expandable: boolean;
|
|
4548
4548
|
needIndentSpaced: boolean;
|
|
4549
4549
|
needLoading: boolean;
|
|
@@ -5520,6 +5520,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5520
5520
|
}, {}, {
|
|
5521
5521
|
ImageIcon: import("vue").FunctionalComponent<import("lucide-vue-next").LucideProps, {}, any, {}>;
|
|
5522
5522
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5523
|
+
ResizeObserver: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5524
|
+
disabled: {
|
|
5525
|
+
type: BooleanConstructor;
|
|
5526
|
+
default: boolean;
|
|
5527
|
+
};
|
|
5528
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
5529
|
+
[key: string]: any;
|
|
5530
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "resize"[], "resize", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5531
|
+
disabled: {
|
|
5532
|
+
type: BooleanConstructor;
|
|
5533
|
+
default: boolean;
|
|
5534
|
+
};
|
|
5535
|
+
}>> & Readonly<{
|
|
5536
|
+
onResize?: (...args: any[]) => any;
|
|
5537
|
+
}>, {
|
|
5538
|
+
disabled: boolean;
|
|
5539
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5523
5540
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5524
5541
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5525
5542
|
ExpandRows: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -5727,6 +5744,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5727
5744
|
cellRef: import("vue").Ref<any, any>;
|
|
5728
5745
|
ellipsisSpanRef: import("vue").Ref<any, any>;
|
|
5729
5746
|
isOverflow: import("vue").Ref<boolean, boolean>;
|
|
5747
|
+
debouncedHandleResize: import("../../utils").DebounceReturn;
|
|
5730
5748
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5731
5749
|
prefixCls: {
|
|
5732
5750
|
type: StringConstructor;
|
|
@@ -5783,7 +5801,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5783
5801
|
};
|
|
5784
5802
|
expandIcon: {
|
|
5785
5803
|
type: PropType<import("../..").IconPropType>;
|
|
5786
|
-
default:
|
|
5804
|
+
default: any;
|
|
5787
5805
|
};
|
|
5788
5806
|
needIndentSpaced: {
|
|
5789
5807
|
type: BooleanConstructor;
|
|
@@ -5809,7 +5827,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5809
5827
|
};
|
|
5810
5828
|
expandIcon: {
|
|
5811
5829
|
type: PropType<import("../..").IconPropType>;
|
|
5812
|
-
default:
|
|
5830
|
+
default: any;
|
|
5813
5831
|
};
|
|
5814
5832
|
needIndentSpaced: {
|
|
5815
5833
|
type: BooleanConstructor;
|
|
@@ -5824,7 +5842,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5824
5842
|
"onAsync-expand"?: (...args: any[]) => any;
|
|
5825
5843
|
}>, {
|
|
5826
5844
|
expanded: boolean;
|
|
5827
|
-
expandIcon:
|
|
5845
|
+
expandIcon: any;
|
|
5828
5846
|
expandable: boolean;
|
|
5829
5847
|
needIndentSpaced: boolean;
|
|
5830
5848
|
needLoading: boolean;
|
|
@@ -6801,6 +6819,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6801
6819
|
}, {}, {
|
|
6802
6820
|
ImageIcon: import("vue").FunctionalComponent<import("lucide-vue-next").LucideProps, {}, any, {}>;
|
|
6803
6821
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6822
|
+
ResizeObserver: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6823
|
+
disabled: {
|
|
6824
|
+
type: BooleanConstructor;
|
|
6825
|
+
default: boolean;
|
|
6826
|
+
};
|
|
6827
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
6828
|
+
[key: string]: any;
|
|
6829
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "resize"[], "resize", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6830
|
+
disabled: {
|
|
6831
|
+
type: BooleanConstructor;
|
|
6832
|
+
default: boolean;
|
|
6833
|
+
};
|
|
6834
|
+
}>> & Readonly<{
|
|
6835
|
+
onResize?: (...args: any[]) => any;
|
|
6836
|
+
}>, {
|
|
6837
|
+
disabled: boolean;
|
|
6838
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6804
6839
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6805
6840
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6806
6841
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ComputedRef, CSSProperties, ExtractPropTypes, PropType, Ref, Slot, Slots, VNodeChild } from 'vue';
|
|
1
|
+
import type { Component, ComputedRef, CSSProperties, ExtractPropTypes, PropType, Ref, Slot, Slots, VNodeChild } from 'vue';
|
|
2
2
|
import type { JSX } from 'vue/jsx-runtime';
|
|
3
3
|
import type { EmitFn } from '../../utils/globalType';
|
|
4
4
|
import type { TableLocal } from '../locale/default';
|
|
@@ -25,6 +25,8 @@ export interface TableColProps {
|
|
|
25
25
|
width: string;
|
|
26
26
|
key: string;
|
|
27
27
|
fixed: boolean;
|
|
28
|
+
minWidth: string;
|
|
29
|
+
resizeWidth: string;
|
|
28
30
|
}
|
|
29
31
|
export interface ColumnFilterSlotParams {
|
|
30
32
|
selectedKeys: (string | number)[];
|
|
@@ -41,8 +43,7 @@ export interface TableColumn {
|
|
|
41
43
|
title?: string;
|
|
42
44
|
dataIndex?: string;
|
|
43
45
|
width?: number | string;
|
|
44
|
-
minWidth?: number
|
|
45
|
-
maxWidth?: number | string;
|
|
46
|
+
minWidth?: number;
|
|
46
47
|
children?: TableColumn[];
|
|
47
48
|
fixed?: ColumnFixed;
|
|
48
49
|
align?: ColumnAlign;
|
|
@@ -54,7 +55,7 @@ export interface TableColumn {
|
|
|
54
55
|
filterable?: boolean;
|
|
55
56
|
filters?: ColumnFilter[];
|
|
56
57
|
filterFn?: ColumnFilterFn;
|
|
57
|
-
filterIcon?: string;
|
|
58
|
+
filterIcon?: string | Component;
|
|
58
59
|
filterIconStyle?: CSSProperties;
|
|
59
60
|
filterMultiple?: boolean;
|
|
60
61
|
filteredValue?: (string | number)[];
|
|
@@ -278,6 +279,7 @@ export interface TableContext {
|
|
|
278
279
|
expandIndent: Ref<boolean>;
|
|
279
280
|
headerSticky: Ref<number | undefined>;
|
|
280
281
|
loading: Ref<boolean>;
|
|
282
|
+
width: Ref<string | number | undefined>;
|
|
281
283
|
};
|
|
282
284
|
slots: Slots;
|
|
283
285
|
expand: {
|
|
@@ -291,7 +293,7 @@ export interface TableContext {
|
|
|
291
293
|
};
|
|
292
294
|
size: {
|
|
293
295
|
tableWidth: Ref<number>;
|
|
294
|
-
|
|
296
|
+
resizeColumns: Ref<InnerColumn[]>;
|
|
295
297
|
isScrollX: ComputedRef<boolean>;
|
|
296
298
|
setResizeWidth: (column: InnerColumn, width: number) => void;
|
|
297
299
|
handleColumnResize: (columnWidth: number, changeWidth: number, column: InnerColumn, event: Event) => void;
|
|
@@ -404,8 +404,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
404
404
|
title?: string;
|
|
405
405
|
dataIndex?: string;
|
|
406
406
|
width?: string | number;
|
|
407
|
-
minWidth?:
|
|
408
|
-
maxWidth?: string | number;
|
|
407
|
+
minWidth?: number;
|
|
409
408
|
fixed?: import("./Table.type").ColumnFixed;
|
|
410
409
|
align?: import("./Table.type").ColumnAlign;
|
|
411
410
|
ellipsis?: boolean;
|
|
@@ -416,7 +415,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
416
415
|
filterable?: boolean;
|
|
417
416
|
filters?: import("./Table.type").ColumnFilter[];
|
|
418
417
|
filterFn?: import("./Table.type").ColumnFilterFn;
|
|
419
|
-
filterIcon?: string
|
|
418
|
+
filterIcon?: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
420
419
|
filterIconStyle?: import("vue").CSSProperties;
|
|
421
420
|
filterMultiple?: boolean;
|
|
422
421
|
filteredValue?: (string | number)[];
|
|
@@ -4800,6 +4799,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4800
4799
|
cellRef: import("vue").Ref<any, any>;
|
|
4801
4800
|
ellipsisSpanRef: import("vue").Ref<any, any>;
|
|
4802
4801
|
isOverflow: import("vue").Ref<boolean, boolean>;
|
|
4802
|
+
debouncedHandleResize: import("../../utils/tools").DebounceReturn;
|
|
4803
4803
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
4804
4804
|
prefixCls: {
|
|
4805
4805
|
type: StringConstructor;
|
|
@@ -4856,7 +4856,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4856
4856
|
};
|
|
4857
4857
|
expandIcon: {
|
|
4858
4858
|
type: import("vue").PropType<import("../..").IconPropType>;
|
|
4859
|
-
default:
|
|
4859
|
+
default: any;
|
|
4860
4860
|
};
|
|
4861
4861
|
needIndentSpaced: {
|
|
4862
4862
|
type: BooleanConstructor;
|
|
@@ -4882,7 +4882,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4882
4882
|
};
|
|
4883
4883
|
expandIcon: {
|
|
4884
4884
|
type: import("vue").PropType<import("../..").IconPropType>;
|
|
4885
|
-
default:
|
|
4885
|
+
default: any;
|
|
4886
4886
|
};
|
|
4887
4887
|
needIndentSpaced: {
|
|
4888
4888
|
type: BooleanConstructor;
|
|
@@ -4897,7 +4897,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4897
4897
|
"onAsync-expand"?: (...args: any[]) => any;
|
|
4898
4898
|
}>, {
|
|
4899
4899
|
expanded: boolean;
|
|
4900
|
-
expandIcon:
|
|
4900
|
+
expandIcon: any;
|
|
4901
4901
|
expandable: boolean;
|
|
4902
4902
|
needIndentSpaced: boolean;
|
|
4903
4903
|
needLoading: boolean;
|
|
@@ -5874,6 +5874,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5874
5874
|
}, {}, {
|
|
5875
5875
|
ImageIcon: import("vue").FunctionalComponent<import("lucide-vue-next").LucideProps, {}, any, {}>;
|
|
5876
5876
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5877
|
+
ResizeObserver: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5878
|
+
disabled: {
|
|
5879
|
+
type: BooleanConstructor;
|
|
5880
|
+
default: boolean;
|
|
5881
|
+
};
|
|
5882
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
5883
|
+
[key: string]: any;
|
|
5884
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "resize"[], "resize", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5885
|
+
disabled: {
|
|
5886
|
+
type: BooleanConstructor;
|
|
5887
|
+
default: boolean;
|
|
5888
|
+
};
|
|
5889
|
+
}>> & Readonly<{
|
|
5890
|
+
onResize?: (...args: any[]) => any;
|
|
5891
|
+
}>, {
|
|
5892
|
+
disabled: boolean;
|
|
5893
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5877
5894
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5878
5895
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5879
5896
|
ExpandRows: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -6081,6 +6098,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6081
6098
|
cellRef: import("vue").Ref<any, any>;
|
|
6082
6099
|
ellipsisSpanRef: import("vue").Ref<any, any>;
|
|
6083
6100
|
isOverflow: import("vue").Ref<boolean, boolean>;
|
|
6101
|
+
debouncedHandleResize: import("../../utils/tools").DebounceReturn;
|
|
6084
6102
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6085
6103
|
prefixCls: {
|
|
6086
6104
|
type: StringConstructor;
|
|
@@ -6137,7 +6155,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6137
6155
|
};
|
|
6138
6156
|
expandIcon: {
|
|
6139
6157
|
type: import("vue").PropType<import("../..").IconPropType>;
|
|
6140
|
-
default:
|
|
6158
|
+
default: any;
|
|
6141
6159
|
};
|
|
6142
6160
|
needIndentSpaced: {
|
|
6143
6161
|
type: BooleanConstructor;
|
|
@@ -6163,7 +6181,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6163
6181
|
};
|
|
6164
6182
|
expandIcon: {
|
|
6165
6183
|
type: import("vue").PropType<import("../..").IconPropType>;
|
|
6166
|
-
default:
|
|
6184
|
+
default: any;
|
|
6167
6185
|
};
|
|
6168
6186
|
needIndentSpaced: {
|
|
6169
6187
|
type: BooleanConstructor;
|
|
@@ -6178,7 +6196,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6178
6196
|
"onAsync-expand"?: (...args: any[]) => any;
|
|
6179
6197
|
}>, {
|
|
6180
6198
|
expanded: boolean;
|
|
6181
|
-
expandIcon:
|
|
6199
|
+
expandIcon: any;
|
|
6182
6200
|
expandable: boolean;
|
|
6183
6201
|
needIndentSpaced: boolean;
|
|
6184
6202
|
needLoading: boolean;
|
|
@@ -7155,6 +7173,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7155
7173
|
}, {}, {
|
|
7156
7174
|
ImageIcon: import("vue").FunctionalComponent<import("lucide-vue-next").LucideProps, {}, any, {}>;
|
|
7157
7175
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7176
|
+
ResizeObserver: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7177
|
+
disabled: {
|
|
7178
|
+
type: BooleanConstructor;
|
|
7179
|
+
default: boolean;
|
|
7180
|
+
};
|
|
7181
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
7182
|
+
[key: string]: any;
|
|
7183
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "resize"[], "resize", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7184
|
+
disabled: {
|
|
7185
|
+
type: BooleanConstructor;
|
|
7186
|
+
default: boolean;
|
|
7187
|
+
};
|
|
7188
|
+
}>> & Readonly<{
|
|
7189
|
+
onResize?: (...args: any[]) => any;
|
|
7190
|
+
}>, {
|
|
7191
|
+
disabled: boolean;
|
|
7192
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7158
7193
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7159
7194
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7160
7195
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -7326,8 +7361,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7326
7361
|
title?: string;
|
|
7327
7362
|
dataIndex?: string;
|
|
7328
7363
|
width?: string | number;
|
|
7329
|
-
minWidth?:
|
|
7330
|
-
maxWidth?: string | number;
|
|
7364
|
+
minWidth?: number;
|
|
7331
7365
|
fixed?: import("./Table.type").ColumnFixed;
|
|
7332
7366
|
align?: import("./Table.type").ColumnAlign;
|
|
7333
7367
|
ellipsis?: boolean;
|
|
@@ -7338,7 +7372,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7338
7372
|
filterable?: boolean;
|
|
7339
7373
|
filters?: import("./Table.type").ColumnFilter[];
|
|
7340
7374
|
filterFn?: import("./Table.type").ColumnFilterFn;
|
|
7341
|
-
filterIcon?: string
|
|
7375
|
+
filterIcon?: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>;
|
|
7342
7376
|
filterIconStyle?: import("vue").CSSProperties;
|
|
7343
7377
|
filterMultiple?: boolean;
|
|
7344
7378
|
filteredValue?: (string | number)[];
|
|
@@ -11722,6 +11756,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
11722
11756
|
cellRef: import("vue").Ref<any, any>;
|
|
11723
11757
|
ellipsisSpanRef: import("vue").Ref<any, any>;
|
|
11724
11758
|
isOverflow: import("vue").Ref<boolean, boolean>;
|
|
11759
|
+
debouncedHandleResize: import("../../utils/tools").DebounceReturn;
|
|
11725
11760
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11726
11761
|
prefixCls: {
|
|
11727
11762
|
type: StringConstructor;
|
|
@@ -11778,7 +11813,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
11778
11813
|
};
|
|
11779
11814
|
expandIcon: {
|
|
11780
11815
|
type: import("vue").PropType<import("../..").IconPropType>;
|
|
11781
|
-
default:
|
|
11816
|
+
default: any;
|
|
11782
11817
|
};
|
|
11783
11818
|
needIndentSpaced: {
|
|
11784
11819
|
type: BooleanConstructor;
|
|
@@ -11804,7 +11839,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
11804
11839
|
};
|
|
11805
11840
|
expandIcon: {
|
|
11806
11841
|
type: import("vue").PropType<import("../..").IconPropType>;
|
|
11807
|
-
default:
|
|
11842
|
+
default: any;
|
|
11808
11843
|
};
|
|
11809
11844
|
needIndentSpaced: {
|
|
11810
11845
|
type: BooleanConstructor;
|
|
@@ -11819,7 +11854,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
11819
11854
|
"onAsync-expand"?: (...args: any[]) => any;
|
|
11820
11855
|
}>, {
|
|
11821
11856
|
expanded: boolean;
|
|
11822
|
-
expandIcon:
|
|
11857
|
+
expandIcon: any;
|
|
11823
11858
|
expandable: boolean;
|
|
11824
11859
|
needIndentSpaced: boolean;
|
|
11825
11860
|
needLoading: boolean;
|
|
@@ -12796,6 +12831,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
12796
12831
|
}, {}, {
|
|
12797
12832
|
ImageIcon: import("vue").FunctionalComponent<import("lucide-vue-next").LucideProps, {}, any, {}>;
|
|
12798
12833
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12834
|
+
ResizeObserver: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
12835
|
+
disabled: {
|
|
12836
|
+
type: BooleanConstructor;
|
|
12837
|
+
default: boolean;
|
|
12838
|
+
};
|
|
12839
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
12840
|
+
[key: string]: any;
|
|
12841
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "resize"[], "resize", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12842
|
+
disabled: {
|
|
12843
|
+
type: BooleanConstructor;
|
|
12844
|
+
default: boolean;
|
|
12845
|
+
};
|
|
12846
|
+
}>> & Readonly<{
|
|
12847
|
+
onResize?: (...args: any[]) => any;
|
|
12848
|
+
}>, {
|
|
12849
|
+
disabled: boolean;
|
|
12850
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12799
12851
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12800
12852
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12801
12853
|
ExpandRows: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -13003,6 +13055,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13003
13055
|
cellRef: import("vue").Ref<any, any>;
|
|
13004
13056
|
ellipsisSpanRef: import("vue").Ref<any, any>;
|
|
13005
13057
|
isOverflow: import("vue").Ref<boolean, boolean>;
|
|
13058
|
+
debouncedHandleResize: import("../../utils/tools").DebounceReturn;
|
|
13006
13059
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13007
13060
|
prefixCls: {
|
|
13008
13061
|
type: StringConstructor;
|
|
@@ -13059,7 +13112,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13059
13112
|
};
|
|
13060
13113
|
expandIcon: {
|
|
13061
13114
|
type: import("vue").PropType<import("../..").IconPropType>;
|
|
13062
|
-
default:
|
|
13115
|
+
default: any;
|
|
13063
13116
|
};
|
|
13064
13117
|
needIndentSpaced: {
|
|
13065
13118
|
type: BooleanConstructor;
|
|
@@ -13085,7 +13138,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13085
13138
|
};
|
|
13086
13139
|
expandIcon: {
|
|
13087
13140
|
type: import("vue").PropType<import("../..").IconPropType>;
|
|
13088
|
-
default:
|
|
13141
|
+
default: any;
|
|
13089
13142
|
};
|
|
13090
13143
|
needIndentSpaced: {
|
|
13091
13144
|
type: BooleanConstructor;
|
|
@@ -13100,7 +13153,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13100
13153
|
"onAsync-expand"?: (...args: any[]) => any;
|
|
13101
13154
|
}>, {
|
|
13102
13155
|
expanded: boolean;
|
|
13103
|
-
expandIcon:
|
|
13156
|
+
expandIcon: any;
|
|
13104
13157
|
expandable: boolean;
|
|
13105
13158
|
needIndentSpaced: boolean;
|
|
13106
13159
|
needLoading: boolean;
|
|
@@ -14077,6 +14130,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
14077
14130
|
}, {}, {
|
|
14078
14131
|
ImageIcon: import("vue").FunctionalComponent<import("lucide-vue-next").LucideProps, {}, any, {}>;
|
|
14079
14132
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14133
|
+
ResizeObserver: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
14134
|
+
disabled: {
|
|
14135
|
+
type: BooleanConstructor;
|
|
14136
|
+
default: boolean;
|
|
14137
|
+
};
|
|
14138
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
14139
|
+
[key: string]: any;
|
|
14140
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "resize"[], "resize", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14141
|
+
disabled: {
|
|
14142
|
+
type: BooleanConstructor;
|
|
14143
|
+
default: boolean;
|
|
14144
|
+
};
|
|
14145
|
+
}>> & Readonly<{
|
|
14146
|
+
onResize?: (...args: any[]) => any;
|
|
14147
|
+
}>, {
|
|
14148
|
+
disabled: boolean;
|
|
14149
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14080
14150
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14081
14151
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14082
14152
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|