el-plus 0.0.91 → 0.0.93
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/CHANGELOG.md +12 -0
- package/dist/index.full.js +11 -10
- package/dist/index.full.min.js +4 -4
- package/dist/index.full.min.js.map +1 -1
- package/dist/index.full.min.mjs +4 -4
- package/dist/index.full.min.mjs.map +1 -1
- package/dist/index.full.mjs +11 -10
- package/docs/components/select.md +105 -19
- package/es/components/buttons/index.d.ts +5 -31
- package/es/components/buttons/src/buttons-vue.d.ts +1 -1
- package/es/components/buttons/src/buttons.d.ts +3 -3
- package/es/components/buttons/src/buttons.mjs.map +1 -1
- package/es/components/header/index.d.ts +5 -31
- package/es/components/header/src/header.vue.d.ts +1 -1
- package/es/components/search-list-page/index.d.ts +32 -32
- package/es/components/search-list-page/src/search-list-page.d.ts +3 -2
- package/es/components/search-list-page/src/search-list-page.mjs +2 -2
- package/es/components/search-list-page/src/search-list-page.mjs.map +1 -1
- package/es/components/search-list-page/src/search-list-page.vue.d.ts +9 -9
- package/es/components/search-list-page/src/use-search-list-page.d.ts +9 -8
- package/es/components/search-list-page/src/use-search-list-page.mjs +7 -7
- package/es/components/search-list-page/src/use-search-list-page.mjs.map +1 -1
- package/es/components/table/index.d.ts +5 -5
- package/es/components/table/src/table.vue.d.ts +1 -1
- package/es/components/table/src/use-table.d.ts +1 -1
- package/es/components/title/index.d.ts +5 -31
- package/es/components/title/src/title.vue.d.ts +1 -1
- package/es/package.json.mjs +1 -1
- package/lib/components/buttons/index.d.ts +5 -31
- package/lib/components/buttons/src/buttons-vue.d.ts +1 -1
- package/lib/components/buttons/src/buttons.d.ts +3 -3
- package/lib/components/buttons/src/buttons.js.map +1 -1
- package/lib/components/header/index.d.ts +5 -31
- package/lib/components/header/src/header.vue.d.ts +1 -1
- package/lib/components/search-list-page/index.d.ts +32 -32
- package/lib/components/search-list-page/src/search-list-page.d.ts +3 -2
- package/lib/components/search-list-page/src/search-list-page.js +2 -2
- package/lib/components/search-list-page/src/search-list-page.js.map +1 -1
- package/lib/components/search-list-page/src/search-list-page.vue.d.ts +9 -9
- package/lib/components/search-list-page/src/use-search-list-page.d.ts +9 -8
- package/lib/components/search-list-page/src/use-search-list-page.js +7 -7
- package/lib/components/search-list-page/src/use-search-list-page.js.map +1 -1
- package/lib/components/table/index.d.ts +5 -5
- package/lib/components/table/src/table.vue.d.ts +1 -1
- package/lib/components/table/src/use-table.d.ts +1 -1
- package/lib/components/title/index.d.ts +5 -31
- package/lib/components/title/src/title.vue.d.ts +1 -1
- package/lib/package.json.js +1 -1
- package/package.json +1 -1
|
@@ -1,20 +1,7 @@
|
|
|
1
1
|
export declare const EpTitle: {
|
|
2
2
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
3
3
|
readonly buttons: {
|
|
4
|
-
readonly type: import("vue").PropType<
|
|
5
|
-
name: string;
|
|
6
|
-
prop: string;
|
|
7
|
-
permission: string;
|
|
8
|
-
onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
|
|
9
|
-
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
10
|
-
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
11
|
-
confirm: boolean;
|
|
12
|
-
confirmText: string;
|
|
13
|
-
confirmBefore: () => Promise<void>;
|
|
14
|
-
} & {} & {
|
|
15
|
-
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
16
|
-
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
17
|
-
}>[]>;
|
|
4
|
+
readonly type: import("vue").PropType<import("el-plus/es/index").ButtonProps[]>;
|
|
18
5
|
readonly default: () => never[];
|
|
19
6
|
};
|
|
20
7
|
readonly title: StringConstructor;
|
|
@@ -36,7 +23,7 @@ export declare const EpTitle: {
|
|
|
36
23
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
37
24
|
confirm: boolean;
|
|
38
25
|
confirmText: string;
|
|
39
|
-
confirmBefore: () => Promise<void>;
|
|
26
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
40
27
|
} & {} & {
|
|
41
28
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
42
29
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -51,20 +38,7 @@ export declare const EpTitle: {
|
|
|
51
38
|
Defaults: {};
|
|
52
39
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
53
40
|
readonly buttons: {
|
|
54
|
-
readonly type: import("vue").PropType<
|
|
55
|
-
name: string;
|
|
56
|
-
prop: string;
|
|
57
|
-
permission: string;
|
|
58
|
-
onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
|
|
59
|
-
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
60
|
-
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
61
|
-
confirm: boolean;
|
|
62
|
-
confirmText: string;
|
|
63
|
-
confirmBefore: () => Promise<void>;
|
|
64
|
-
} & {} & {
|
|
65
|
-
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
66
|
-
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
67
|
-
}>[]>;
|
|
41
|
+
readonly type: import("vue").PropType<import("el-plus/es/index").ButtonProps[]>;
|
|
68
42
|
readonly default: () => never[];
|
|
69
43
|
};
|
|
70
44
|
readonly title: StringConstructor;
|
|
@@ -84,7 +58,7 @@ export declare const EpTitle: {
|
|
|
84
58
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
85
59
|
confirm: boolean;
|
|
86
60
|
confirmText: string;
|
|
87
|
-
confirmBefore: () => Promise<void>;
|
|
61
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
88
62
|
} & {} & {
|
|
89
63
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
90
64
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -118,7 +92,7 @@ export declare const EpTitle: {
|
|
|
118
92
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
119
93
|
confirm: boolean;
|
|
120
94
|
confirmText: string;
|
|
121
|
-
confirmBefore: () => Promise<void>;
|
|
95
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
122
96
|
} & {} & {
|
|
123
97
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
124
98
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -48,7 +48,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
48
48
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
49
49
|
confirm: boolean;
|
|
50
50
|
confirmText: string;
|
|
51
|
-
confirmBefore: () => Promise<void>;
|
|
51
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es").TableScope) => Promise<void>;
|
|
52
52
|
} & {} & {
|
|
53
53
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
54
54
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
package/es/package.json.mjs
CHANGED
|
@@ -1,20 +1,7 @@
|
|
|
1
1
|
export declare const EpButtons: {
|
|
2
2
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
3
3
|
readonly list: {
|
|
4
|
-
readonly type: import("vue").PropType<
|
|
5
|
-
name: string;
|
|
6
|
-
prop: string;
|
|
7
|
-
permission: string;
|
|
8
|
-
onClick: (e: MouseEvent | import("el-plus/es").TableScope) => void;
|
|
9
|
-
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
10
|
-
disabled: import("el-plus/es/utils").IDisabled;
|
|
11
|
-
confirm: boolean;
|
|
12
|
-
confirmText: string;
|
|
13
|
-
confirmBefore: () => Promise<void>;
|
|
14
|
-
} & {} & {
|
|
15
|
-
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
16
|
-
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
17
|
-
}>[]>;
|
|
4
|
+
readonly type: import("vue").PropType<import("./src/buttons").ButtonProps[]>;
|
|
18
5
|
readonly default: () => never[];
|
|
19
6
|
};
|
|
20
7
|
readonly size: {
|
|
@@ -64,7 +51,7 @@ export declare const EpButtons: {
|
|
|
64
51
|
disabled: import("el-plus/es/utils").IDisabled;
|
|
65
52
|
confirm: boolean;
|
|
66
53
|
confirmText: string;
|
|
67
|
-
confirmBefore: () => Promise<void>;
|
|
54
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es").TableScope) => Promise<void>;
|
|
68
55
|
} & {} & {
|
|
69
56
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
70
57
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -99,20 +86,7 @@ export declare const EpButtons: {
|
|
|
99
86
|
Defaults: {};
|
|
100
87
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
101
88
|
readonly list: {
|
|
102
|
-
readonly type: import("vue").PropType<
|
|
103
|
-
name: string;
|
|
104
|
-
prop: string;
|
|
105
|
-
permission: string;
|
|
106
|
-
onClick: (e: MouseEvent | import("el-plus/es").TableScope) => void;
|
|
107
|
-
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
108
|
-
disabled: import("el-plus/es/utils").IDisabled;
|
|
109
|
-
confirm: boolean;
|
|
110
|
-
confirmText: string;
|
|
111
|
-
confirmBefore: () => Promise<void>;
|
|
112
|
-
} & {} & {
|
|
113
|
-
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
114
|
-
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
115
|
-
}>[]>;
|
|
89
|
+
readonly type: import("vue").PropType<import("./src/buttons").ButtonProps[]>;
|
|
116
90
|
readonly default: () => never[];
|
|
117
91
|
};
|
|
118
92
|
readonly size: {
|
|
@@ -162,7 +136,7 @@ export declare const EpButtons: {
|
|
|
162
136
|
disabled: import("el-plus/es/utils").IDisabled;
|
|
163
137
|
confirm: boolean;
|
|
164
138
|
confirmText: string;
|
|
165
|
-
confirmBefore: () => Promise<void>;
|
|
139
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es").TableScope) => Promise<void>;
|
|
166
140
|
} & {} & {
|
|
167
141
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
168
142
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -238,7 +212,7 @@ export declare const EpButtons: {
|
|
|
238
212
|
disabled: import("el-plus/es/utils").IDisabled;
|
|
239
213
|
confirm: boolean;
|
|
240
214
|
confirmText: string;
|
|
241
|
-
confirmBefore: () => Promise<void>;
|
|
215
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es").TableScope) => Promise<void>;
|
|
242
216
|
} & {} & {
|
|
243
217
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
244
218
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -93,7 +93,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
93
93
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
94
94
|
confirm: boolean;
|
|
95
95
|
confirmText: string;
|
|
96
|
-
confirmBefore: () => Promise<void>;
|
|
96
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es").TableScope) => Promise<void>;
|
|
97
97
|
} & {} & {
|
|
98
98
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
99
99
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -2,16 +2,16 @@ import type { PropType, ExtractPublicPropTypes, VNode } from 'vue';
|
|
|
2
2
|
import { type ButtonProps as ElButtonProps } from 'element-plus';
|
|
3
3
|
import type { VisibleProps, IDisabled } from 'el-plus/es/utils/props';
|
|
4
4
|
import type { TableScope } from 'el-plus/es/components/table';
|
|
5
|
-
export type ButtonProps = Partial<Omit<ElButtonProps, 'disabled'> & {
|
|
5
|
+
export type ButtonProps<TClickArg = MouseEvent | TableScope> = Partial<Omit<ElButtonProps, 'disabled'> & {
|
|
6
6
|
name: string;
|
|
7
7
|
prop: string;
|
|
8
8
|
permission: string;
|
|
9
|
-
onClick: (e:
|
|
9
|
+
onClick: (e: TClickArg) => void;
|
|
10
10
|
scopedSlots: Record<string, () => VNode>;
|
|
11
11
|
disabled: IDisabled;
|
|
12
12
|
confirm: boolean;
|
|
13
13
|
confirmText: string;
|
|
14
|
-
confirmBefore: () => Promise<void>;
|
|
14
|
+
confirmBefore: (e: TClickArg) => Promise<void>;
|
|
15
15
|
} & VisibleProps>;
|
|
16
16
|
export declare const buttonsProps: {
|
|
17
17
|
readonly list: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"buttons.js","sources":["../../../../../../packages/components/buttons/src/buttons.ts"],"sourcesContent":["import type { PropType, ExtractPublicPropTypes, VNode } from 'vue'\nimport {\n buttonProps as elButtonProps,\n // buttonEmits as elButtonEmits,\n type ButtonProps as ElButtonProps,\n} from 'element-plus'\nimport { disabledProps } from '@el-plus/utils/props'\nimport type { VisibleProps, IDisabled } from '@el-plus/utils/props'\nimport type { TableScope } from '@el-plus/components/table'\n\nexport type ButtonProps = Partial<\n Omit<ElButtonProps, 'disabled'> & {\n name: string\n prop: string // 唯一标识\n permission: string // 权限\n onClick: (e:
|
|
1
|
+
{"version":3,"file":"buttons.js","sources":["../../../../../../packages/components/buttons/src/buttons.ts"],"sourcesContent":["import type { PropType, ExtractPublicPropTypes, VNode } from 'vue'\nimport {\n buttonProps as elButtonProps,\n // buttonEmits as elButtonEmits,\n type ButtonProps as ElButtonProps,\n} from 'element-plus'\nimport { disabledProps } from '@el-plus/utils/props'\nimport type { VisibleProps, IDisabled } from '@el-plus/utils/props'\nimport type { TableScope } from '@el-plus/components/table'\n\nexport type ButtonProps<TClickArg = MouseEvent | TableScope> = Partial<\n Omit<ElButtonProps, 'disabled'> & {\n name: string\n prop: string // 唯一标识\n permission: string // 权限\n onClick: (e: TClickArg) => void\n scopedSlots: Record<string, () => VNode>\n disabled: IDisabled\n confirm: boolean\n confirmText: string\n confirmBefore: (e: TClickArg) => Promise<void>\n } & VisibleProps\n>\nexport const buttonsProps = {\n ...elButtonProps,\n ...disabledProps,\n list: {\n type: Array as PropType<ButtonProps[]>,\n default: () => [],\n },\n size: {\n ...elButtonProps.size,\n default: 'small',\n },\n type: {\n ...elButtonProps.type,\n default: 'default',\n },\n} as const\nexport type ButtonsProps = ExtractPublicPropTypes<typeof buttonsProps>\n// export const buttonsEmits = {\n// ...elButtonEmits,\n// }\n// export type ButtonsEmits = typeof buttonsEmits\n// export const buttonsEmitsKeys = Object.keys(buttonsEmits)\n"],"names":["elButtonProps","disabledProps"],"mappings":";;;;;AAuBO,MAAM,YAAA,GAAe;AAAA,EAC1B,GAAGA,uBAAA;AAAA,EACH,GAAGC,mBAAA;AAAA,EACH,IAAA,EAAM;AAAA,IACJ,IAAA,EAAM,KAAA;AAAA,IACN,OAAA,EAAS,MAAM;AAAC,GAClB;AAAA,EACA,IAAA,EAAM;AAAA,IACJ,GAAGD,uBAAA,CAAc,IAAA;AAAA,IACjB,OAAA,EAAS;AAAA,GACX;AAAA,EACA,IAAA,EAAM;AAAA,IACJ,GAAGA,uBAAA,CAAc,IAAA;AAAA,IACjB,OAAA,EAAS;AAAA;AAEb;;;;"}
|
|
@@ -8,20 +8,7 @@ export declare const EpHeader: {
|
|
|
8
8
|
readonly default: true;
|
|
9
9
|
};
|
|
10
10
|
readonly buttons: {
|
|
11
|
-
readonly type: import("vue").PropType<
|
|
12
|
-
name: string;
|
|
13
|
-
prop: string;
|
|
14
|
-
permission: string;
|
|
15
|
-
onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
|
|
16
|
-
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
17
|
-
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
18
|
-
confirm: boolean;
|
|
19
|
-
confirmText: string;
|
|
20
|
-
confirmBefore: () => Promise<void>;
|
|
21
|
-
} & {} & {
|
|
22
|
-
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
23
|
-
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
24
|
-
}>[]>;
|
|
11
|
+
readonly type: import("vue").PropType<import("el-plus/es/index").ButtonProps[]>;
|
|
25
12
|
readonly default: () => never[];
|
|
26
13
|
};
|
|
27
14
|
readonly name: StringConstructor;
|
|
@@ -51,7 +38,7 @@ export declare const EpHeader: {
|
|
|
51
38
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
52
39
|
confirm: boolean;
|
|
53
40
|
confirmText: string;
|
|
54
|
-
confirmBefore: () => Promise<void>;
|
|
41
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
55
42
|
} & {} & {
|
|
56
43
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
57
44
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -98,20 +85,7 @@ export declare const EpHeader: {
|
|
|
98
85
|
readonly default: true;
|
|
99
86
|
};
|
|
100
87
|
readonly buttons: {
|
|
101
|
-
readonly type: import("vue").PropType<
|
|
102
|
-
name: string;
|
|
103
|
-
prop: string;
|
|
104
|
-
permission: string;
|
|
105
|
-
onClick: (e: MouseEvent | import("el-plus/es/index").TableScope) => void;
|
|
106
|
-
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
107
|
-
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
108
|
-
confirm: boolean;
|
|
109
|
-
confirmText: string;
|
|
110
|
-
confirmBefore: () => Promise<void>;
|
|
111
|
-
} & {} & {
|
|
112
|
-
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
113
|
-
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
114
|
-
}>[]>;
|
|
88
|
+
readonly type: import("vue").PropType<import("el-plus/es/index").ButtonProps[]>;
|
|
115
89
|
readonly default: () => never[];
|
|
116
90
|
};
|
|
117
91
|
readonly name: StringConstructor;
|
|
@@ -141,7 +115,7 @@ export declare const EpHeader: {
|
|
|
141
115
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
142
116
|
confirm: boolean;
|
|
143
117
|
confirmText: string;
|
|
144
|
-
confirmBefore: () => Promise<void>;
|
|
118
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
145
119
|
} & {} & {
|
|
146
120
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
147
121
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -215,7 +189,7 @@ export declare const EpHeader: {
|
|
|
215
189
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
216
190
|
confirm: boolean;
|
|
217
191
|
confirmText: string;
|
|
218
|
-
confirmBefore: () => Promise<void>;
|
|
192
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
219
193
|
} & {} & {
|
|
220
194
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
221
195
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -66,7 +66,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
66
66
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
67
67
|
confirm: boolean;
|
|
68
68
|
confirmText: string;
|
|
69
|
-
confirmBefore: () => Promise<void>;
|
|
69
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es").TableScope) => Promise<void>;
|
|
70
70
|
} & {} & {
|
|
71
71
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
72
72
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -22,12 +22,12 @@ export declare const EpSearchListPage: {
|
|
|
22
22
|
name: string;
|
|
23
23
|
prop: string;
|
|
24
24
|
permission: string;
|
|
25
|
-
onClick: (e:
|
|
25
|
+
onClick: (e: any[]) => void;
|
|
26
26
|
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
27
27
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
28
28
|
confirm: boolean;
|
|
29
29
|
confirmText: string;
|
|
30
|
-
confirmBefore: () => Promise<void>;
|
|
30
|
+
confirmBefore: (e: any[]) => Promise<void>;
|
|
31
31
|
} & {} & {
|
|
32
32
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
33
33
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -68,7 +68,7 @@ export declare const EpSearchListPage: {
|
|
|
68
68
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
69
69
|
confirm: boolean;
|
|
70
70
|
confirmText: string;
|
|
71
|
-
confirmBefore: () => Promise<void>;
|
|
71
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
72
72
|
} & {} & {
|
|
73
73
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
74
74
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -211,7 +211,7 @@ export declare const EpSearchListPage: {
|
|
|
211
211
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
212
212
|
confirm: boolean;
|
|
213
213
|
confirmText: string;
|
|
214
|
-
confirmBefore: () => Promise<void>;
|
|
214
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
215
215
|
} & {} & {
|
|
216
216
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
217
217
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -322,7 +322,7 @@ export declare const EpSearchListPage: {
|
|
|
322
322
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
323
323
|
confirm: boolean;
|
|
324
324
|
confirmText: string;
|
|
325
|
-
confirmBefore: () => Promise<void>;
|
|
325
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
326
326
|
} & {} & {
|
|
327
327
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
328
328
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -477,7 +477,7 @@ export declare const EpSearchListPage: {
|
|
|
477
477
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
478
478
|
confirm: boolean;
|
|
479
479
|
confirmText: string;
|
|
480
|
-
confirmBefore: () => Promise<void>;
|
|
480
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
481
481
|
} & {} & {
|
|
482
482
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
483
483
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -1316,7 +1316,7 @@ export declare const EpSearchListPage: {
|
|
|
1316
1316
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
1317
1317
|
confirm: boolean;
|
|
1318
1318
|
confirmText: string;
|
|
1319
|
-
confirmBefore: () => Promise<void>;
|
|
1319
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
1320
1320
|
} & {} & {
|
|
1321
1321
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
1322
1322
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -1447,7 +1447,7 @@ export declare const EpSearchListPage: {
|
|
|
1447
1447
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
1448
1448
|
confirm: boolean;
|
|
1449
1449
|
confirmText: string;
|
|
1450
|
-
confirmBefore: () => Promise<void>;
|
|
1450
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
1451
1451
|
} & {} & {
|
|
1452
1452
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
1453
1453
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -1545,7 +1545,7 @@ export declare const EpSearchListPage: {
|
|
|
1545
1545
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
1546
1546
|
confirm: boolean;
|
|
1547
1547
|
confirmText: string;
|
|
1548
|
-
confirmBefore: () => Promise<void>;
|
|
1548
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
1549
1549
|
} & {} & {
|
|
1550
1550
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
1551
1551
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -2610,7 +2610,7 @@ export declare const EpSearchListPage: {
|
|
|
2610
2610
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
2611
2611
|
confirm: boolean;
|
|
2612
2612
|
confirmText: string;
|
|
2613
|
-
confirmBefore: () => Promise<void>;
|
|
2613
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
2614
2614
|
} & {} & {
|
|
2615
2615
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
2616
2616
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -2639,12 +2639,12 @@ export declare const EpSearchListPage: {
|
|
|
2639
2639
|
name: string;
|
|
2640
2640
|
prop: string;
|
|
2641
2641
|
permission: string;
|
|
2642
|
-
onClick: (e:
|
|
2642
|
+
onClick: (e: any[]) => void;
|
|
2643
2643
|
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
2644
2644
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
2645
2645
|
confirm: boolean;
|
|
2646
2646
|
confirmText: string;
|
|
2647
|
-
confirmBefore: () => Promise<void>;
|
|
2647
|
+
confirmBefore: (e: any[]) => Promise<void>;
|
|
2648
2648
|
} & {} & {
|
|
2649
2649
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
2650
2650
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -2679,12 +2679,12 @@ export declare const EpSearchListPage: {
|
|
|
2679
2679
|
name: string;
|
|
2680
2680
|
prop: string;
|
|
2681
2681
|
permission: string;
|
|
2682
|
-
onClick: (e:
|
|
2682
|
+
onClick: (e: any[]) => void;
|
|
2683
2683
|
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
2684
2684
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
2685
2685
|
confirm: boolean;
|
|
2686
2686
|
confirmText: string;
|
|
2687
|
-
confirmBefore: () => Promise<void>;
|
|
2687
|
+
confirmBefore: (e: any[]) => Promise<void>;
|
|
2688
2688
|
} & {} & {
|
|
2689
2689
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
2690
2690
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -2725,7 +2725,7 @@ export declare const EpSearchListPage: {
|
|
|
2725
2725
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
2726
2726
|
confirm: boolean;
|
|
2727
2727
|
confirmText: string;
|
|
2728
|
-
confirmBefore: () => Promise<void>;
|
|
2728
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
2729
2729
|
} & {} & {
|
|
2730
2730
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
2731
2731
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -2868,7 +2868,7 @@ export declare const EpSearchListPage: {
|
|
|
2868
2868
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
2869
2869
|
confirm: boolean;
|
|
2870
2870
|
confirmText: string;
|
|
2871
|
-
confirmBefore: () => Promise<void>;
|
|
2871
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
2872
2872
|
} & {} & {
|
|
2873
2873
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
2874
2874
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -2979,7 +2979,7 @@ export declare const EpSearchListPage: {
|
|
|
2979
2979
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
2980
2980
|
confirm: boolean;
|
|
2981
2981
|
confirmText: string;
|
|
2982
|
-
confirmBefore: () => Promise<void>;
|
|
2982
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
2983
2983
|
} & {} & {
|
|
2984
2984
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
2985
2985
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -3134,7 +3134,7 @@ export declare const EpSearchListPage: {
|
|
|
3134
3134
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
3135
3135
|
confirm: boolean;
|
|
3136
3136
|
confirmText: string;
|
|
3137
|
-
confirmBefore: () => Promise<void>;
|
|
3137
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
3138
3138
|
} & {} & {
|
|
3139
3139
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
3140
3140
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -3973,7 +3973,7 @@ export declare const EpSearchListPage: {
|
|
|
3973
3973
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
3974
3974
|
confirm: boolean;
|
|
3975
3975
|
confirmText: string;
|
|
3976
|
-
confirmBefore: () => Promise<void>;
|
|
3976
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
3977
3977
|
} & {} & {
|
|
3978
3978
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
3979
3979
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -4104,7 +4104,7 @@ export declare const EpSearchListPage: {
|
|
|
4104
4104
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
4105
4105
|
confirm: boolean;
|
|
4106
4106
|
confirmText: string;
|
|
4107
|
-
confirmBefore: () => Promise<void>;
|
|
4107
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
4108
4108
|
} & {} & {
|
|
4109
4109
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
4110
4110
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -4202,7 +4202,7 @@ export declare const EpSearchListPage: {
|
|
|
4202
4202
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
4203
4203
|
confirm: boolean;
|
|
4204
4204
|
confirmText: string;
|
|
4205
|
-
confirmBefore: () => Promise<void>;
|
|
4205
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
4206
4206
|
} & {} & {
|
|
4207
4207
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
4208
4208
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -5267,7 +5267,7 @@ export declare const EpSearchListPage: {
|
|
|
5267
5267
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
5268
5268
|
confirm: boolean;
|
|
5269
5269
|
confirmText: string;
|
|
5270
|
-
confirmBefore: () => Promise<void>;
|
|
5270
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
5271
5271
|
} & {} & {
|
|
5272
5272
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
5273
5273
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -5296,12 +5296,12 @@ export declare const EpSearchListPage: {
|
|
|
5296
5296
|
name: string;
|
|
5297
5297
|
prop: string;
|
|
5298
5298
|
permission: string;
|
|
5299
|
-
onClick: (e:
|
|
5299
|
+
onClick: (e: any[]) => void;
|
|
5300
5300
|
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
5301
5301
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
5302
5302
|
confirm: boolean;
|
|
5303
5303
|
confirmText: string;
|
|
5304
|
-
confirmBefore: () => Promise<void>;
|
|
5304
|
+
confirmBefore: (e: any[]) => Promise<void>;
|
|
5305
5305
|
} & {} & {
|
|
5306
5306
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
5307
5307
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -5329,7 +5329,7 @@ export declare const EpSearchListPage: {
|
|
|
5329
5329
|
readonly default: () => import("el-plus/es/index").FormItemProps[];
|
|
5330
5330
|
};
|
|
5331
5331
|
readonly leftButtons: {
|
|
5332
|
-
readonly type: import("vue").PropType<import("el-plus/es/index").ButtonProps[]>;
|
|
5332
|
+
readonly type: import("vue").PropType<import("el-plus/es/index").ButtonProps<any[]>[]>;
|
|
5333
5333
|
readonly default: () => never[];
|
|
5334
5334
|
};
|
|
5335
5335
|
readonly columns: {
|
|
@@ -5470,7 +5470,7 @@ export declare const EpSearchListPage: {
|
|
|
5470
5470
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
5471
5471
|
confirm: boolean;
|
|
5472
5472
|
confirmText: string;
|
|
5473
|
-
confirmBefore: () => Promise<void>;
|
|
5473
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
5474
5474
|
} & {} & {
|
|
5475
5475
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
5476
5476
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -5581,7 +5581,7 @@ export declare const EpSearchListPage: {
|
|
|
5581
5581
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
5582
5582
|
confirm: boolean;
|
|
5583
5583
|
confirmText: string;
|
|
5584
|
-
confirmBefore: () => Promise<void>;
|
|
5584
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
5585
5585
|
} & {} & {
|
|
5586
5586
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
5587
5587
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -6536,7 +6536,7 @@ export declare const EpSearchListPage: {
|
|
|
6536
6536
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
6537
6537
|
confirm: boolean;
|
|
6538
6538
|
confirmText: string;
|
|
6539
|
-
confirmBefore: () => Promise<void>;
|
|
6539
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
6540
6540
|
} & {} & {
|
|
6541
6541
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
6542
6542
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -6667,7 +6667,7 @@ export declare const EpSearchListPage: {
|
|
|
6667
6667
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
6668
6668
|
confirm: boolean;
|
|
6669
6669
|
confirmText: string;
|
|
6670
|
-
confirmBefore: () => Promise<void>;
|
|
6670
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
6671
6671
|
} & {} & {
|
|
6672
6672
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
6673
6673
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -7791,7 +7791,7 @@ export declare const EpSearchListPage: {
|
|
|
7791
7791
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
7792
7792
|
confirm: boolean;
|
|
7793
7793
|
confirmText: string;
|
|
7794
|
-
confirmBefore: () => Promise<void>;
|
|
7794
|
+
confirmBefore: (e: MouseEvent | import("el-plus/es/index").TableScope) => Promise<void>;
|
|
7795
7795
|
} & {} & {
|
|
7796
7796
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
7797
7797
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -7820,12 +7820,12 @@ export declare const EpSearchListPage: {
|
|
|
7820
7820
|
name: string;
|
|
7821
7821
|
prop: string;
|
|
7822
7822
|
permission: string;
|
|
7823
|
-
onClick: (e:
|
|
7823
|
+
onClick: (e: any[]) => void;
|
|
7824
7824
|
scopedSlots: Record<string, () => import("vue").VNode>;
|
|
7825
7825
|
disabled: import("el-plus/es/utils/props").IDisabled;
|
|
7826
7826
|
confirm: boolean;
|
|
7827
7827
|
confirmText: string;
|
|
7828
|
-
confirmBefore: () => Promise<void>;
|
|
7828
|
+
confirmBefore: (e: any[]) => Promise<void>;
|
|
7829
7829
|
} & {} & {
|
|
7830
7830
|
show?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
7831
7831
|
hide?: (boolean | ((T: unknown) => boolean)) | undefined;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { PropType, ExtractPublicPropTypes } from 'vue';
|
|
2
|
+
import type { ButtonProps } from 'el-plus/es/components/buttons';
|
|
2
3
|
export declare const searchListPageProps: {
|
|
3
4
|
readonly customColumnModule: {
|
|
4
5
|
readonly type: PropType<number | string>;
|
|
@@ -17,7 +18,7 @@ export declare const searchListPageProps: {
|
|
|
17
18
|
readonly default: () => import("el-plus/es/components/form").FormItemProps[];
|
|
18
19
|
};
|
|
19
20
|
readonly leftButtons: {
|
|
20
|
-
readonly type: PropType<
|
|
21
|
+
readonly type: PropType<ButtonProps<any[]>[]>;
|
|
21
22
|
readonly default: () => never[];
|
|
22
23
|
};
|
|
23
24
|
readonly columns: {
|
|
@@ -32,7 +33,7 @@ export declare const searchListPageProps: {
|
|
|
32
33
|
readonly default: number;
|
|
33
34
|
};
|
|
34
35
|
readonly actionButtons: {
|
|
35
|
-
readonly type: PropType<
|
|
36
|
+
readonly type: PropType<ButtonProps[]>;
|
|
36
37
|
readonly default: () => never[];
|
|
37
38
|
};
|
|
38
39
|
readonly formatColumns: {
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
var props = require('../../../utils/props.js');
|
|
4
4
|
var table = require('../../table/src/table.js');
|
|
5
|
-
var buttons = require('../../buttons/src/buttons.js');
|
|
6
5
|
var form = require('../../form/src/form.js');
|
|
7
6
|
var customColumn = require('../../custom-column/src/custom-column.js');
|
|
8
7
|
|
|
@@ -26,7 +25,8 @@ const searchListPageProps = {
|
|
|
26
25
|
},
|
|
27
26
|
// 左侧按钮
|
|
28
27
|
leftButtons: {
|
|
29
|
-
|
|
28
|
+
type: Array,
|
|
29
|
+
default: () => []
|
|
30
30
|
},
|
|
31
31
|
// 表格列
|
|
32
32
|
columns: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-list-page.js","sources":["../../../../../../packages/components/search-list-page/src/search-list-page.ts"],"sourcesContent":["import type { PropType, ExtractPublicPropTypes } from 'vue'\nimport { apiProps } from '@el-plus/utils/props'\nimport { formProps } from '@el-plus/components/form'\nimport { buttonsProps } from '@el-plus/components/buttons'\nimport { tableProps } from '@el-plus/components/table'\nimport { customColumnProps } from '@el-plus/components/custom-column'\n\nexport const searchListPageProps = {\n ...apiProps,\n // 自定义列模块\n customColumnModule: {\n ...customColumnProps.module,\n },\n customColumnApi: {\n ...customColumnProps.api,\n },\n customColumnSaveApi: {\n ...customColumnProps.saveApi,\n },\n showOperationColumn: Boolean, // 是否显示操作列\n // 表单列表\n formItemList: {\n ...formProps.formItemList,\n },\n // 左侧按钮\n leftButtons: {\n
|
|
1
|
+
{"version":3,"file":"search-list-page.js","sources":["../../../../../../packages/components/search-list-page/src/search-list-page.ts"],"sourcesContent":["import type { PropType, ExtractPublicPropTypes } from 'vue'\nimport { apiProps } from '@el-plus/utils/props'\nimport { formProps } from '@el-plus/components/form'\nimport { buttonsProps } from '@el-plus/components/buttons'\nimport type { ButtonProps } from '@el-plus/components/buttons'\nimport { tableProps } from '@el-plus/components/table'\nimport { customColumnProps } from '@el-plus/components/custom-column'\n\nexport const searchListPageProps = {\n ...apiProps,\n // 自定义列模块\n customColumnModule: {\n ...customColumnProps.module,\n },\n customColumnApi: {\n ...customColumnProps.api,\n },\n customColumnSaveApi: {\n ...customColumnProps.saveApi,\n },\n showOperationColumn: Boolean, // 是否显示操作列\n // 表单列表\n formItemList: {\n ...formProps.formItemList,\n },\n // 左侧按钮\n leftButtons: {\n type: Array as PropType<ButtonProps<any[]>[]>,\n default: () => [],\n },\n // 表格列\n columns: {\n ...tableProps.columns,\n },\n // 列最小宽度\n minWidth: {\n ...tableProps.minWidth,\n },\n // 操作列宽度\n actionColWidth: {\n ...tableProps.actionColWidth,\n },\n // 操作列\n actionButtons: {\n ...tableProps.actionButtons,\n },\n // 格式化列\n formatColumns: {\n ...tableProps.formatColumns,\n },\n showSelectionCol: Boolean,\n showSingleSelectionCol: Boolean,\n showIndexCol: {\n type: Boolean,\n default: true,\n },\n add: Function, // 新增\n // templateDownloadApi: String, // 模板下载\n // importApi: String, // 导入\n // exportApi: String, // 导出\n // 表格额外距离\n offsetTop: {\n type: Number,\n default: 0,\n },\n formData: {\n type: Object,\n default: () => ({}),\n },\n tableProps: Object,\n formProps: Object,\n buttonsProps: Object,\n name: String, // 权限前缀\n // 是否初始化加载数据\n isInitSearch: {\n type: Boolean,\n default: true,\n },\n} as const\nexport type SearchListPageProps = ExtractPublicPropTypes<\n typeof searchListPageProps\n>\n"],"names":["apiProps","customColumnProps","formProps","tableProps"],"mappings":";;;;;;;AAQO,MAAM,mBAAA,GAAsB;AAAA,EACjC,GAAGA,cAAA;AAAA;AAAA,EAEH,kBAAA,EAAoB;AAAA,IAClB,GAAGC,8BAAA,CAAkB;AAAA,GACvB;AAAA,EACA,eAAA,EAAiB;AAAA,IACf,GAAGA,8BAAA,CAAkB;AAAA,GACvB;AAAA,EACA,mBAAA,EAAqB;AAAA,IACnB,GAAGA,8BAAA,CAAkB;AAAA,GACvB;AAAA,EACA,mBAAA,EAAqB,OAAA;AAAA;AAAA;AAAA,EAErB,YAAA,EAAc;AAAA,IACZ,GAAGC,cAAA,CAAU;AAAA,GACf;AAAA;AAAA,EAEA,WAAA,EAAa;AAAA,IACX,IAAA,EAAM,KAAA;AAAA,IACN,OAAA,EAAS,MAAM;AAAC,GAClB;AAAA;AAAA,EAEA,OAAA,EAAS;AAAA,IACP,GAAGC,gBAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,QAAA,EAAU;AAAA,IACR,GAAGA,gBAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,cAAA,EAAgB;AAAA,IACd,GAAGA,gBAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,aAAA,EAAe;AAAA,IACb,GAAGA,gBAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,aAAA,EAAe;AAAA,IACb,GAAGA,gBAAA,CAAW;AAAA,GAChB;AAAA,EACA,gBAAA,EAAkB,OAAA;AAAA,EAClB,sBAAA,EAAwB,OAAA;AAAA,EACxB,YAAA,EAAc;AAAA,IACZ,IAAA,EAAM,OAAA;AAAA,IACN,OAAA,EAAS;AAAA,GACX;AAAA,EACA,GAAA,EAAK,QAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKL,SAAA,EAAW;AAAA,IACT,IAAA,EAAM,MAAA;AAAA,IACN,OAAA,EAAS;AAAA,GACX;AAAA,EACA,QAAA,EAAU;AAAA,IACR,IAAA,EAAM,MAAA;AAAA,IACN,OAAA,EAAS,OAAO,EAAC;AAAA,GACnB;AAAA,EACA,UAAA,EAAY,MAAA;AAAA,EACZ,SAAA,EAAW,MAAA;AAAA,EACX,YAAA,EAAc,MAAA;AAAA,EACd,IAAA,EAAM,MAAA;AAAA;AAAA;AAAA,EAEN,YAAA,EAAc;AAAA,IACZ,IAAA,EAAM,OAAA;AAAA,IACN,OAAA,EAAS;AAAA;AAEb;;;;"}
|