@gx-design-vue/pro-table 0.2.0-beta.138 → 0.2.0-beta.139
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/ProTable.d.ts +17 -19
- package/dist/components/ListToolBar/index.d.ts +9 -9
- package/dist/components/ToolBar/index.d.ts +3 -6
- package/dist/pro-table.js +284 -286
- package/dist/pro-table.umd.cjs +2 -2
- package/dist/props.d.ts +6 -12
- package/dist/types/TableTypings.d.ts +2 -2
- package/package.json +1 -1
package/dist/ProTable.d.ts
CHANGED
|
@@ -79,12 +79,16 @@ declare const ProTable: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
79
79
|
placement: string;
|
|
80
80
|
};
|
|
81
81
|
};
|
|
82
|
+
headerAfter: {
|
|
83
|
+
type: import("vue").PropType<import("./types/TableTypings").ProTableProps["headerAfter"]>;
|
|
84
|
+
default: () => undefined;
|
|
85
|
+
};
|
|
82
86
|
headerTitle: {
|
|
83
87
|
type: import("vue").PropType<import("./types/TableTypings").ProTableProps["headerTitle"]>;
|
|
84
88
|
default: () => undefined;
|
|
85
89
|
};
|
|
86
|
-
|
|
87
|
-
type: import("vue").PropType<import("./types/TableTypings").ProTableProps["
|
|
90
|
+
headerTitleTip: {
|
|
91
|
+
type: import("vue").PropType<import("./types/TableTypings").ProTableProps["headerTitleTip"]>;
|
|
88
92
|
default: () => undefined;
|
|
89
93
|
};
|
|
90
94
|
titleTipText: {
|
|
@@ -95,10 +99,6 @@ declare const ProTable: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
95
99
|
type: import("vue").PropType<import("./types/TableTypings").ProTableProps["options"]>;
|
|
96
100
|
default: boolean;
|
|
97
101
|
};
|
|
98
|
-
settingExtra: {
|
|
99
|
-
type: import("vue").PropType<import("./types/TableTypings").ProTableProps["settingExtra"]>;
|
|
100
|
-
default: () => undefined;
|
|
101
|
-
};
|
|
102
102
|
keepAliveReload: {
|
|
103
103
|
type: import("vue").PropType<import("./types/TableTypings").ProTableProps["keepAliveReload"]>;
|
|
104
104
|
default: boolean;
|
|
@@ -242,12 +242,16 @@ declare const ProTable: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
242
242
|
placement: string;
|
|
243
243
|
};
|
|
244
244
|
};
|
|
245
|
+
headerAfter: {
|
|
246
|
+
type: import("vue").PropType<import("./types/TableTypings").ProTableProps["headerAfter"]>;
|
|
247
|
+
default: () => undefined;
|
|
248
|
+
};
|
|
245
249
|
headerTitle: {
|
|
246
250
|
type: import("vue").PropType<import("./types/TableTypings").ProTableProps["headerTitle"]>;
|
|
247
251
|
default: () => undefined;
|
|
248
252
|
};
|
|
249
|
-
|
|
250
|
-
type: import("vue").PropType<import("./types/TableTypings").ProTableProps["
|
|
253
|
+
headerTitleTip: {
|
|
254
|
+
type: import("vue").PropType<import("./types/TableTypings").ProTableProps["headerTitleTip"]>;
|
|
251
255
|
default: () => undefined;
|
|
252
256
|
};
|
|
253
257
|
titleTipText: {
|
|
@@ -258,10 +262,6 @@ declare const ProTable: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
258
262
|
type: import("vue").PropType<import("./types/TableTypings").ProTableProps["options"]>;
|
|
259
263
|
default: boolean;
|
|
260
264
|
};
|
|
261
|
-
settingExtra: {
|
|
262
|
-
type: import("vue").PropType<import("./types/TableTypings").ProTableProps["settingExtra"]>;
|
|
263
|
-
default: () => undefined;
|
|
264
|
-
};
|
|
265
265
|
keepAliveReload: {
|
|
266
266
|
type: import("vue").PropType<import("./types/TableTypings").ProTableProps["keepAliveReload"]>;
|
|
267
267
|
default: boolean;
|
|
@@ -371,8 +371,6 @@ declare const ProTable: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
371
371
|
align: import("ant-design-vue/es/vc-table/interface").AlignType | undefined;
|
|
372
372
|
customRender: import("./types/SlotsTypings").CustomDataRender | undefined;
|
|
373
373
|
headerTitle: import("./types/SlotsTypings").DefaultRender;
|
|
374
|
-
titleTip: import("./types/SlotsTypings").DefaultRender;
|
|
375
|
-
settingExtra: import("./types/SlotsTypings").DefaultRender;
|
|
376
374
|
pageItemRender: import("./types/SlotsTypings").PageItemRender | undefined;
|
|
377
375
|
tableProps: {
|
|
378
376
|
class?: string;
|
|
@@ -402,15 +400,15 @@ declare const ProTable: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
402
400
|
autoRequest: boolean | undefined;
|
|
403
401
|
params: RecordType | undefined;
|
|
404
402
|
searchMap: import("./types/ColumnTypings").ProSearchMap<undefined, string>[] | undefined;
|
|
403
|
+
headerTitleTip: import("./types/SlotsTypings").DefaultRender;
|
|
404
|
+
headerAfter: import("./types/SlotsTypings").DefaultRender;
|
|
405
405
|
}, SlotsType<{
|
|
406
406
|
form(): any;
|
|
407
407
|
actions(): any;
|
|
408
|
-
bodyCell(): any;
|
|
409
|
-
bodyCell(props: ProTableBodyCellProps<any>): any;
|
|
410
408
|
emptyText(): any;
|
|
411
|
-
settingExtra(): any;
|
|
412
|
-
titleTip(): any;
|
|
413
409
|
headerTitle(): any;
|
|
410
|
+
headerTitleTip(): any;
|
|
411
|
+
headerAfter(): any;
|
|
414
412
|
default(): any;
|
|
415
413
|
pageItemRender(params: {
|
|
416
414
|
page: number;
|
|
@@ -422,11 +420,11 @@ declare const ProTable: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
422
420
|
dataSource: any[];
|
|
423
421
|
}): any;
|
|
424
422
|
expandIcon(props: RenderExpandIconProps<any>): any;
|
|
425
|
-
title(): any;
|
|
426
423
|
footer(): any;
|
|
427
424
|
summary(): any;
|
|
428
425
|
expandedRowRender(): any;
|
|
429
426
|
expandColumnTitle(): any;
|
|
427
|
+
bodyCell(props: ProTableBodyCellProps<any>): any;
|
|
430
428
|
headerCell(props: {
|
|
431
429
|
title: any;
|
|
432
430
|
column: ColumnType;
|
|
@@ -10,15 +10,15 @@ export interface ListToolBarSetting {
|
|
|
10
10
|
declare const ListToolBar: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
11
11
|
actions: PropType<VueNode[]>;
|
|
12
12
|
settings: PropType<VueNode[]>;
|
|
13
|
-
titleTip: {
|
|
14
|
-
type: PropType<import("../../types/TableTypings").ProTableProps["titleTip"]>;
|
|
15
|
-
default: () => undefined;
|
|
16
|
-
};
|
|
17
13
|
prefixCls: StringConstructor;
|
|
18
14
|
headerTitle: {
|
|
19
15
|
type: PropType<import("../../types/TableTypings").ProTableProps["headerTitle"]>;
|
|
20
16
|
default: () => undefined;
|
|
21
17
|
};
|
|
18
|
+
headerTitleTip: {
|
|
19
|
+
type: PropType<import("../../types/TableTypings").ProTableProps["headerTitleTip"]>;
|
|
20
|
+
default: () => undefined;
|
|
21
|
+
};
|
|
22
22
|
titleTipText: {
|
|
23
23
|
type: PropType<import("../../types/TableTypings").ProTableProps["titleTipText"]>;
|
|
24
24
|
default: string;
|
|
@@ -27,15 +27,15 @@ declare const ListToolBar: import("vue").DefineComponent<import("vue").ExtractPr
|
|
|
27
27
|
}>, () => import("ant-design-vue/es/_util/type").VueNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
28
28
|
actions: PropType<VueNode[]>;
|
|
29
29
|
settings: PropType<VueNode[]>;
|
|
30
|
-
titleTip: {
|
|
31
|
-
type: PropType<import("../../types/TableTypings").ProTableProps["titleTip"]>;
|
|
32
|
-
default: () => undefined;
|
|
33
|
-
};
|
|
34
30
|
prefixCls: StringConstructor;
|
|
35
31
|
headerTitle: {
|
|
36
32
|
type: PropType<import("../../types/TableTypings").ProTableProps["headerTitle"]>;
|
|
37
33
|
default: () => undefined;
|
|
38
34
|
};
|
|
35
|
+
headerTitleTip: {
|
|
36
|
+
type: PropType<import("../../types/TableTypings").ProTableProps["headerTitleTip"]>;
|
|
37
|
+
default: () => undefined;
|
|
38
|
+
};
|
|
39
39
|
titleTipText: {
|
|
40
40
|
type: PropType<import("../../types/TableTypings").ProTableProps["titleTipText"]>;
|
|
41
41
|
default: string;
|
|
@@ -43,7 +43,7 @@ declare const ListToolBar: import("vue").DefineComponent<import("vue").ExtractPr
|
|
|
43
43
|
actionsPlacement: PropType<TableActionPlacement>;
|
|
44
44
|
}>> & Readonly<{}>, {
|
|
45
45
|
headerTitle: import("../../types/SlotsTypings").DefaultRender;
|
|
46
|
-
titleTip: import("../../types/SlotsTypings").DefaultRender;
|
|
47
46
|
titleTipText: string | undefined;
|
|
47
|
+
headerTitleTip: import("../../types/SlotsTypings").DefaultRender;
|
|
48
48
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
49
49
|
export default ListToolBar;
|
|
@@ -4,24 +4,21 @@ export type OptionsFunctionType = () => void;
|
|
|
4
4
|
export interface ToolBarProps {
|
|
5
5
|
actionsRender?: VNode[];
|
|
6
6
|
headerTitle?: ProTableProps['headerTitle'];
|
|
7
|
-
|
|
7
|
+
headerTitleTip?: ProTableProps['headerTitleTip'];
|
|
8
8
|
titleTipText?: ProTableProps['titleTipText'];
|
|
9
|
-
settingExtra?: ProTableProps['settingExtra'];
|
|
10
9
|
options?: OptionConfig | boolean;
|
|
11
10
|
}
|
|
12
11
|
declare const ToolbarRender: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
13
12
|
options: PropType<ProTableProps["options"]>;
|
|
14
13
|
actionsPlacement: PropType<TableActionPlacement>;
|
|
15
|
-
|
|
16
|
-
settingExtra: PropType<ProTableProps["settingExtra"]>;
|
|
14
|
+
headerTitleTip: PropType<ProTableProps["headerTitleTip"]>;
|
|
17
15
|
titleTipText: PropType<ProTableProps["titleTipText"]>;
|
|
18
16
|
actionsRender: PropType<ToolBarProps["actionsRender"]>;
|
|
19
17
|
headerTitle: PropType<ProTableProps["headerTitle"]>;
|
|
20
18
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
19
|
options: PropType<ProTableProps["options"]>;
|
|
22
20
|
actionsPlacement: PropType<TableActionPlacement>;
|
|
23
|
-
|
|
24
|
-
settingExtra: PropType<ProTableProps["settingExtra"]>;
|
|
21
|
+
headerTitleTip: PropType<ProTableProps["headerTitleTip"]>;
|
|
25
22
|
titleTipText: PropType<ProTableProps["titleTipText"]>;
|
|
26
23
|
actionsRender: PropType<ToolBarProps["actionsRender"]>;
|
|
27
24
|
headerTitle: PropType<ProTableProps["headerTitle"]>;
|