@juzhenfe/page-model 3.21.5 → 3.21.7
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/components/buttons-renderer/index.vue.d.ts +9 -9
- package/dist/components/column-filter-tools/index.vue.d.ts +31 -21
- package/dist/components/column-sort-tools/index.vue.d.ts +40 -30
- package/dist/components/draggable-list/index.vue.d.ts +7 -7
- package/dist/components/editable-table/components/table-cell/index.vue.d.ts +3 -3
- package/dist/components/form/components/col-container/components/module-container/index.vue.d.ts +20 -20
- package/dist/components/form/components/col-container/components/section-title-els/index.vue.d.ts +9 -9
- package/dist/components/form/components/col-container/components/tabs-mode-container/index.vue.d.ts +15 -15
- package/dist/components/form/components/col-container/index.vue.d.ts +33 -33
- package/dist/components/form/components/column-tools/use-setting.d.ts +2 -2
- package/dist/components/form/components/container-component/index.vue.d.ts +37 -37
- package/dist/components/form-container/components/dialog-mode/index.vue.d.ts +16 -16
- package/dist/components/form-container/components/drawer-mode/index.vue.d.ts +16 -16
- package/dist/components/form-container/components/full-page/index.vue.d.ts +8 -8
- package/dist/components/form-container/index.vue.d.ts +7 -7
- package/dist/components/form-dialog/index.vue.d.ts +8 -8
- package/dist/components/form-drawer/index.vue.d.ts +7 -7
- package/dist/components/form-item-renderer/index.vue.d.ts +6 -6
- package/dist/components/line-clamp-tools/index.vue.d.ts +25 -19
- package/dist/components/normal-tab/index.vue.d.ts +8 -7
- package/dist/components/normal-tab/type.d.ts +1 -0
- package/dist/components/page-model/components/selectable-operate/index.vue.d.ts +15 -15
- package/dist/components/page-model/components/top-tabs/index.vue.d.ts +8 -8
- package/dist/components/scenes-tab/index.vue.d.ts +1 -1
- package/dist/components/search-form/components/search-form-full/index.vue.d.ts +22 -22
- package/dist/components/search-form/use-detect-item-width.d.ts +2 -2
- package/dist/components/simple-popover/index.vue.d.ts +11 -11
- package/dist/components/table/components/column-tools/use-setting.d.ts +2 -2
- package/dist/components/table/components/column-tools/use-user-config.d.ts +2 -2
- package/dist/components/table/components/column-tools/use-user-show-row-config.d.ts +16 -0
- package/dist/components/table/components/context-column-summary/index.vue.d.ts +20 -20
- package/dist/components/table/components/context-menu/index.vue.d.ts +25 -25
- package/dist/components/table/components/empty-data/index.vue.d.ts +3 -3
- package/dist/components/table/components/export-form/use.d.ts +2 -2
- package/dist/components/table/components/selections-table/use.d.ts +2 -2
- package/dist/components/table/components/table-column/components/filter-zone/index.vue.d.ts +35 -13
- package/dist/components/table/components/table-column/index.vue.d.ts +68 -46
- package/dist/components/table/constructor.d.ts +1 -1
- package/dist/components/table-cell-renderer/index.vue.d.ts +4 -4
- package/dist/components/table-toolsbox/index.vue.d.ts +14 -14
- package/dist/index.es.js +683 -722
- package/dist/index.umd.js +3 -3
- package/dist/types/common.d.ts +2 -0
- package/dist/types/form-item-types/jz-td-map.d.ts +13 -0
- package/package.json +56 -57
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
* @onUserConfigClosed 表格关闭的回调
|
|
8
8
|
*/
|
|
9
9
|
export declare const useUserConfig: () => {
|
|
10
|
-
isRenderUserConfig: import("vue").Ref<boolean>;
|
|
11
|
-
userConfigRef: import("vue").Ref<any>;
|
|
10
|
+
isRenderUserConfig: import("vue").Ref<boolean, boolean>;
|
|
11
|
+
userConfigRef: import("vue").Ref<any, any>;
|
|
12
12
|
showUserConfig: (els: PageModel.PageModelUserConfig) => void;
|
|
13
13
|
onUserConfigClosed: () => void;
|
|
14
14
|
};
|
|
@@ -4,16 +4,32 @@
|
|
|
4
4
|
export declare const rowShowRowsOption: import("vue").Ref<{
|
|
5
5
|
label: string;
|
|
6
6
|
value: number;
|
|
7
|
+
}[], {
|
|
8
|
+
label: string;
|
|
9
|
+
value: number;
|
|
10
|
+
}[] | {
|
|
11
|
+
label: string;
|
|
12
|
+
value: number;
|
|
7
13
|
}[]>;
|
|
8
14
|
export declare const useUserShowRowConfig: (tableEls: any[]) => {
|
|
9
15
|
rowShowRowsOption: import("vue").Ref<{
|
|
10
16
|
label: string;
|
|
11
17
|
value: number;
|
|
18
|
+
}[], {
|
|
19
|
+
label: string;
|
|
20
|
+
value: number;
|
|
21
|
+
}[] | {
|
|
22
|
+
label: string;
|
|
23
|
+
value: number;
|
|
12
24
|
}[]>;
|
|
13
25
|
userConfig: import("vue").Ref<{
|
|
14
26
|
showRowNumbers?: number;
|
|
15
27
|
searchOnValueChange?: boolean;
|
|
16
28
|
enterSearch?: boolean;
|
|
29
|
+
}, PageModel.PageModelUserConfig | {
|
|
30
|
+
showRowNumbers?: number;
|
|
31
|
+
searchOnValueChange?: boolean;
|
|
32
|
+
enterSearch?: boolean;
|
|
17
33
|
}>;
|
|
18
34
|
updateUserConfig: (config: PageModel.PageModelUserConfig) => void;
|
|
19
35
|
};
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { SummaryTypeEnum } from "../../utils/use-static-summary";
|
|
2
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
3
|
els: {
|
|
4
4
|
type: ArrayConstructor;
|
|
5
5
|
required: true;
|
|
6
6
|
};
|
|
7
|
-
}
|
|
7
|
+
}>, {
|
|
8
8
|
props: any;
|
|
9
9
|
emit: (event: "save-columns", ...args: any[]) => void;
|
|
10
|
-
simplePopoverRef: import("vue").Ref<any>;
|
|
11
|
-
currentColumnProp: import("vue").Ref<string>;
|
|
12
|
-
currentColumnConfig: import("vue").Ref<any>;
|
|
10
|
+
simplePopoverRef: import("vue").Ref<any, any>;
|
|
11
|
+
currentColumnProp: import("vue").Ref<string, string>;
|
|
12
|
+
currentColumnConfig: import("vue").Ref<any, any>;
|
|
13
13
|
options: {
|
|
14
14
|
label: string;
|
|
15
15
|
value: SummaryTypeEnum;
|
|
@@ -17,7 +17,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
17
17
|
show: (event: MouseEvent, columnProp: string) => void;
|
|
18
18
|
hide: () => void;
|
|
19
19
|
handleItemClick: (summaryType: SummaryTypeEnum) => void;
|
|
20
|
-
SimplePopover: import("vue").DefineComponent<{
|
|
20
|
+
SimplePopover: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
21
21
|
width: {
|
|
22
22
|
type: NumberConstructor;
|
|
23
23
|
required: false;
|
|
@@ -35,18 +35,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
35
35
|
type: NumberConstructor;
|
|
36
36
|
required: false;
|
|
37
37
|
};
|
|
38
|
-
}
|
|
38
|
+
}>, {
|
|
39
39
|
BEMSpace: string;
|
|
40
40
|
props: any;
|
|
41
41
|
emit: (event: "closed", ...args: any[]) => void;
|
|
42
|
-
visible: import("vue").Ref<boolean>;
|
|
43
|
-
isShow: import("vue").Ref<boolean>;
|
|
42
|
+
visible: import("vue").Ref<boolean, boolean>;
|
|
43
|
+
isShow: import("vue").Ref<boolean, boolean>;
|
|
44
44
|
_debounceUpdateShow: (...rest: any[]) => void;
|
|
45
45
|
currentTriggerElement: HTMLElement;
|
|
46
|
-
popoverRectInfo: import("vue").Ref<any>;
|
|
46
|
+
popoverRectInfo: import("vue").Ref<any, any>;
|
|
47
47
|
getPopoverTriggerElementRectInfo: (element: HTMLElement) => void;
|
|
48
|
-
popoverRef: import("vue").Ref<HTMLElement>;
|
|
49
|
-
popoverElementRect: import("vue").Ref<DOMRect>;
|
|
48
|
+
popoverRef: import("vue").Ref<HTMLElement, HTMLElement>;
|
|
49
|
+
popoverElementRect: import("vue").Ref<DOMRect, DOMRect>;
|
|
50
50
|
getPopoverElementRect: () => void;
|
|
51
51
|
popoverStyle: import("vue").ComputedRef<{
|
|
52
52
|
top?: undefined;
|
|
@@ -66,7 +66,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
66
66
|
hide: () => void;
|
|
67
67
|
getZIndex: () => any;
|
|
68
68
|
show: (element: HTMLElement | DOMRect) => void;
|
|
69
|
-
},
|
|
69
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "closed"[], "closed", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
70
70
|
width: {
|
|
71
71
|
type: NumberConstructor;
|
|
72
72
|
required: false;
|
|
@@ -84,19 +84,19 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
84
84
|
type: NumberConstructor;
|
|
85
85
|
required: false;
|
|
86
86
|
};
|
|
87
|
-
}>> & {
|
|
87
|
+
}>> & Readonly<{
|
|
88
88
|
onClosed?: (...args: any[]) => any;
|
|
89
|
-
}
|
|
89
|
+
}>, {
|
|
90
90
|
width: number;
|
|
91
91
|
placement: string;
|
|
92
|
-
}, {}>;
|
|
93
|
-
readonly Select: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
94
|
-
},
|
|
92
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
93
|
+
readonly Select: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
94
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "save-columns"[], "save-columns", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
95
95
|
els: {
|
|
96
96
|
type: ArrayConstructor;
|
|
97
97
|
required: true;
|
|
98
98
|
};
|
|
99
|
-
}>> & {
|
|
99
|
+
}>> & Readonly<{
|
|
100
100
|
"onSave-columns"?: (...args: any[]) => any;
|
|
101
|
-
}, {}, {}>;
|
|
101
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
102
102
|
export default _sfc_main;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
2
|
emit: (event: "add" | "upd" | "del" | "custom", ...args: any[]) => void;
|
|
3
|
-
simplePopoverRef: import("vue").Ref<any>;
|
|
4
|
-
currentOpt: import("vue").Ref<any>;
|
|
5
|
-
buttonCount: import("vue").Ref<number>;
|
|
3
|
+
simplePopoverRef: import("vue").Ref<any, any>;
|
|
4
|
+
currentOpt: import("vue").Ref<any, any>;
|
|
5
|
+
buttonCount: import("vue").Ref<number, number>;
|
|
6
6
|
handleCountChange: (count: number) => void;
|
|
7
7
|
contextMenuHeight: import("vue").ComputedRef<string>;
|
|
8
8
|
show: (event: MouseEvent, opt: {
|
|
@@ -12,7 +12,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
12
12
|
}) => void;
|
|
13
13
|
hide: () => void;
|
|
14
14
|
handleItemClick: (item: any, index: number) => void;
|
|
15
|
-
SimplePopover: import("vue").DefineComponent<{
|
|
15
|
+
SimplePopover: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
16
16
|
width: {
|
|
17
17
|
/**
|
|
18
18
|
* 当前渲染的按钮
|
|
@@ -33,18 +33,18 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
33
33
|
type: NumberConstructor;
|
|
34
34
|
required: false;
|
|
35
35
|
};
|
|
36
|
-
}
|
|
36
|
+
}>, {
|
|
37
37
|
BEMSpace: string;
|
|
38
38
|
props: any;
|
|
39
39
|
emit: (event: "closed", ...args: any[]) => void;
|
|
40
|
-
visible: import("vue").Ref<boolean>;
|
|
41
|
-
isShow: import("vue").Ref<boolean>;
|
|
40
|
+
visible: import("vue").Ref<boolean, boolean>;
|
|
41
|
+
isShow: import("vue").Ref<boolean, boolean>;
|
|
42
42
|
_debounceUpdateShow: (...rest: any[]) => void;
|
|
43
43
|
currentTriggerElement: HTMLElement;
|
|
44
|
-
popoverRectInfo: import("vue").Ref<any>;
|
|
44
|
+
popoverRectInfo: import("vue").Ref<any, any>;
|
|
45
45
|
getPopoverTriggerElementRectInfo: (element: HTMLElement) => void;
|
|
46
|
-
popoverRef: import("vue").Ref<HTMLElement>;
|
|
47
|
-
popoverElementRect: import("vue").Ref<DOMRect>;
|
|
46
|
+
popoverRef: import("vue").Ref<HTMLElement, HTMLElement>;
|
|
47
|
+
popoverElementRect: import("vue").Ref<DOMRect, DOMRect>;
|
|
48
48
|
getPopoverElementRect: () => void;
|
|
49
49
|
popoverStyle: import("vue").ComputedRef<{
|
|
50
50
|
top?: undefined;
|
|
@@ -64,7 +64,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
64
64
|
hide: () => void;
|
|
65
65
|
getZIndex: () => any;
|
|
66
66
|
show: (element: HTMLElement | DOMRect) => void;
|
|
67
|
-
},
|
|
67
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "closed"[], "closed", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
68
68
|
width: {
|
|
69
69
|
/**
|
|
70
70
|
* 当前渲染的按钮
|
|
@@ -85,13 +85,13 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
85
85
|
type: NumberConstructor;
|
|
86
86
|
required: false;
|
|
87
87
|
};
|
|
88
|
-
}>> & {
|
|
88
|
+
}>> & Readonly<{
|
|
89
89
|
onClosed?: (...args: any[]) => any;
|
|
90
|
-
}
|
|
90
|
+
}>, {
|
|
91
91
|
width: number;
|
|
92
92
|
placement: string;
|
|
93
|
-
}, {}>;
|
|
94
|
-
ButtonRenderer: import("vue").DefineComponent<{
|
|
93
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
94
|
+
ButtonRenderer: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
95
95
|
els: {
|
|
96
96
|
type: ArrayConstructor;
|
|
97
97
|
required: true;
|
|
@@ -110,17 +110,17 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
110
110
|
required: false;
|
|
111
111
|
default: string;
|
|
112
112
|
};
|
|
113
|
-
}
|
|
113
|
+
}>, {
|
|
114
114
|
props: any;
|
|
115
|
-
isOpenAuthButton: import("vue").Ref<boolean>;
|
|
116
|
-
authButtons: import("vue").Ref<string[]>;
|
|
115
|
+
isOpenAuthButton: import("vue").Ref<boolean, boolean>;
|
|
116
|
+
authButtons: import("vue").Ref<string[], string[]>;
|
|
117
117
|
showEls: import("vue").ComputedRef<any>;
|
|
118
118
|
BEMSpace: string;
|
|
119
119
|
createBEMName: (name: string) => string;
|
|
120
120
|
emit: (event: "add" | "upd" | "del" | "custom" | "count-change", ...args: any[]) => void;
|
|
121
121
|
handleCommand: (command: string) => void;
|
|
122
122
|
handleButtonClick: (index: number) => void;
|
|
123
|
-
readonly ArrowDown: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
123
|
+
readonly ArrowDown: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
124
124
|
ButtonItemRender: {
|
|
125
125
|
name: string;
|
|
126
126
|
props: {
|
|
@@ -143,7 +143,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
143
143
|
};
|
|
144
144
|
render(): any;
|
|
145
145
|
};
|
|
146
|
-
},
|
|
146
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("add" | "upd" | "del" | "custom" | "count-change")[], "add" | "upd" | "del" | "custom" | "count-change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
147
147
|
els: {
|
|
148
148
|
type: ArrayConstructor;
|
|
149
149
|
required: true;
|
|
@@ -162,23 +162,23 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
162
162
|
required: false;
|
|
163
163
|
default: string;
|
|
164
164
|
};
|
|
165
|
-
}>> & {
|
|
165
|
+
}>> & Readonly<{
|
|
166
166
|
onAdd?: (...args: any[]) => any;
|
|
167
167
|
onUpd?: (...args: any[]) => any;
|
|
168
168
|
onDel?: (...args: any[]) => any;
|
|
169
169
|
onImport?: (...args: any[]) => any;
|
|
170
170
|
onCustom?: (...args: any[]) => any;
|
|
171
171
|
"onCount-change"?: (...args: any[]) => any;
|
|
172
|
-
}
|
|
172
|
+
}>, {
|
|
173
173
|
context: any;
|
|
174
174
|
executeData: unknown[];
|
|
175
175
|
direction: string;
|
|
176
|
-
}, {}>;
|
|
177
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("add" | "upd" | "del" | "custom")[], "add" | "upd" | "del" | "custom", import("vue").PublicProps, Readonly<
|
|
176
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
177
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("add" | "upd" | "del" | "custom")[], "add" | "upd" | "del" | "custom", import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
178
178
|
onAdd?: (...args: any[]) => any;
|
|
179
179
|
onUpd?: (...args: any[]) => any;
|
|
180
180
|
onDel?: (...args: any[]) => any;
|
|
181
181
|
onImport?: (...args: any[]) => any;
|
|
182
182
|
onCustom?: (...args: any[]) => any;
|
|
183
|
-
}, {}, {}>;
|
|
183
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
184
184
|
export default _sfc_main;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
text: {
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
required: false;
|
|
5
5
|
};
|
|
6
|
-
}
|
|
6
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
7
|
text: {
|
|
8
8
|
type: StringConstructor;
|
|
9
9
|
required: false;
|
|
10
10
|
};
|
|
11
|
-
}
|
|
11
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
12
|
export default _sfc_main;
|
|
@@ -10,8 +10,8 @@ export type ExportFormUseData = {
|
|
|
10
10
|
* @showExportForm 显示选择表格
|
|
11
11
|
*/
|
|
12
12
|
export declare const useExportForm: () => {
|
|
13
|
-
isRenderExportForm: import("vue").Ref<boolean>;
|
|
14
|
-
exportFormRef: import("vue").Ref<any>;
|
|
13
|
+
isRenderExportForm: import("vue").Ref<boolean, boolean>;
|
|
14
|
+
exportFormRef: import("vue").Ref<any, any>;
|
|
15
15
|
showExportForm: (data: ExportFormUseData) => void;
|
|
16
16
|
onExportFormClosed: () => void;
|
|
17
17
|
};
|
|
@@ -8,8 +8,8 @@ export type SelectionsTableUseData = {
|
|
|
8
8
|
* @showSelectionsTable 显示选择表格
|
|
9
9
|
*/
|
|
10
10
|
export declare const useSelectionsTable: () => {
|
|
11
|
-
isRenderSelectionsTable: import("vue").Ref<boolean>;
|
|
12
|
-
selectionsTableRef: import("vue").Ref<any>;
|
|
11
|
+
isRenderSelectionsTable: import("vue").Ref<boolean, boolean>;
|
|
12
|
+
selectionsTableRef: import("vue").Ref<any, any>;
|
|
13
13
|
showSelectionsTable: (data: SelectionsTableUseData) => void;
|
|
14
14
|
onSelectionsTableClosed: () => void;
|
|
15
15
|
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { FilterItemTypeEnum, FilterMatchModeEnum } from "./utils";
|
|
2
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
3
|
tableManager: {
|
|
4
4
|
type: ObjectConstructor;
|
|
5
5
|
required: true;
|
|
6
6
|
};
|
|
7
|
-
}
|
|
7
|
+
}>, {
|
|
8
8
|
props: any;
|
|
9
9
|
emit: (event: "screen", ...args: any[]) => void;
|
|
10
|
-
tableManager: import("vue").Ref<any>;
|
|
10
|
+
tableManager: import("vue").Ref<any, any>;
|
|
11
11
|
BEMSpace: string;
|
|
12
12
|
createBEMName: (name: string) => string;
|
|
13
13
|
currentColumn: import("vue").Ref<{
|
|
@@ -16,11 +16,23 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
16
16
|
filterType: string;
|
|
17
17
|
filterLabel: string;
|
|
18
18
|
filterOptions: any[];
|
|
19
|
+
}, {
|
|
20
|
+
filterMultiple: boolean;
|
|
21
|
+
prop: string;
|
|
22
|
+
filterType: string;
|
|
23
|
+
filterLabel: string;
|
|
24
|
+
filterOptions: any[];
|
|
25
|
+
} | {
|
|
26
|
+
filterMultiple: boolean;
|
|
27
|
+
prop: string;
|
|
28
|
+
filterType: string;
|
|
29
|
+
filterLabel: string;
|
|
30
|
+
filterOptions: any[];
|
|
19
31
|
}>;
|
|
20
|
-
filterMultiple: import("vue").Ref<boolean>;
|
|
21
|
-
hasCompare: import("vue").Ref<boolean>;
|
|
22
|
-
isShowFilter: import("vue").Ref<boolean>;
|
|
23
|
-
filterKeywords: import("vue").Ref<string>;
|
|
32
|
+
filterMultiple: import("vue").Ref<boolean, boolean>;
|
|
33
|
+
hasCompare: import("vue").Ref<boolean, boolean>;
|
|
34
|
+
isShowFilter: import("vue").Ref<boolean, boolean>;
|
|
35
|
+
filterKeywords: import("vue").Ref<string, string>;
|
|
24
36
|
filterList: import("vue").Ref<{
|
|
25
37
|
prop: string;
|
|
26
38
|
filterType?: FilterItemTypeEnum;
|
|
@@ -31,6 +43,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
31
43
|
}[];
|
|
32
44
|
condition?: FilterMatchModeEnum;
|
|
33
45
|
value?: any;
|
|
46
|
+
}[], PageModel.TableColumnParamsItem[] | {
|
|
47
|
+
prop: string;
|
|
48
|
+
filterType?: FilterItemTypeEnum;
|
|
49
|
+
filterLabel?: string;
|
|
50
|
+
filterOptions?: {
|
|
51
|
+
label: string;
|
|
52
|
+
value: string | number | boolean;
|
|
53
|
+
}[];
|
|
54
|
+
condition?: FilterMatchModeEnum;
|
|
55
|
+
value?: any;
|
|
34
56
|
}[]>;
|
|
35
57
|
filterOptions: import("vue").ComputedRef<any[]>;
|
|
36
58
|
multSelectDatas: import("vue").ComputedRef<{
|
|
@@ -54,9 +76,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
54
76
|
handleScreen: () => void;
|
|
55
77
|
handleClear: () => void;
|
|
56
78
|
handleAddFilterItem: () => void;
|
|
57
|
-
readonly Plus: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
58
|
-
readonly Remove: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
59
|
-
readonly Search: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
79
|
+
readonly Plus: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
80
|
+
readonly Remove: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
81
|
+
readonly Search: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
60
82
|
readonly FilterItemTypeEnum: typeof FilterItemTypeEnum;
|
|
61
83
|
readonly compareOptions: {
|
|
62
84
|
string: {
|
|
@@ -76,12 +98,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
76
98
|
}[];
|
|
77
99
|
};
|
|
78
100
|
readonly noValueOptions: FilterMatchModeEnum[];
|
|
79
|
-
},
|
|
101
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "screen"[], "screen", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
80
102
|
tableManager: {
|
|
81
103
|
type: ObjectConstructor;
|
|
82
104
|
required: true;
|
|
83
105
|
};
|
|
84
|
-
}>> & {
|
|
106
|
+
}>> & Readonly<{
|
|
85
107
|
onScreen?: (...args: any[]) => any;
|
|
86
|
-
}, {}, {}>;
|
|
108
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
87
109
|
export default _sfc_main;
|