bm-admin-ui 0.1.1-8 → 1.0.1-alpha
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/.pnpm-debug.log +16 -0
- package/es/components/button/index.d.ts +48 -26
- package/es/components/button/index.js +18 -9
- package/es/components/button/src/button.d.ts +10 -1
- package/es/components/button/src/button.vue.d.ts +54 -30
- package/es/components/float-table/index.d.ts +5 -0
- package/es/components/float-table/index.js +448 -0
- package/es/components/float-table/src/float-table.vue.d.ts +500 -0
- package/es/components/flow-designer/index.js +1 -1
- package/es/components/form-designer/index.js +1 -1
- package/es/components/index.d.ts +7 -0
- package/es/components/index.js +7 -0
- package/es/components/multi-cascader-compose/index.d.ts +135 -0
- package/es/components/multi-cascader-compose/index.js +1699 -0
- package/es/components/multi-cascader-compose/src/multi-cascader-compose.vue.d.ts +135 -0
- package/es/components/multi-cascader-compose/src/props.d.ts +32 -0
- package/es/components/multi-cascader-compose/types.d.ts +10 -0
- package/es/components/over-tooltips/index.d.ts +35 -0
- package/es/components/over-tooltips/index.js +117 -0
- package/es/components/over-tooltips/src/over-tooltips.vue.d.ts +34 -0
- package/es/components/search-filter/index.d.ts +23 -5249
- package/es/components/search-filter/index.js +599 -33
- package/es/components/search-filter/src/search-filter.vue.d.ts +23 -5250
- package/es/components/search-filter/src/search-reset-btn.vue.d.ts +0 -270
- package/es/components/search-filter/src/serach-filter.d.ts +3 -4
- package/es/components/shops-filter/index.d.ts +99 -0
- package/es/components/shops-filter/index.js +1614 -0
- package/es/components/shops-filter/src/shops-filter.d.ts +25 -0
- package/es/components/shops-filter/src/shops-filter.vue.d.ts +98 -0
- package/es/components/staffs-selector/index.d.ts +82 -0
- package/es/components/staffs-selector/index.js +1991 -0
- package/es/components/staffs-selector/src/multipleCmp.vue.d.ts +79 -0
- package/es/components/staffs-selector/src/radioCmp.vue.d.ts +31 -0
- package/es/components/staffs-selector/src/staffs-selector.vue.d.ts +81 -0
- package/es/components/staffs-selector/src/variedCmp.vue.d.ts +62 -0
- package/es/components/timeline/index.d.ts +93 -0
- package/es/components/timeline/index.js +164 -0
- package/es/components/timeline/src/props.d.ts +20 -0
- package/es/components/timeline/src/timeline-item.vue.d.ts +51 -0
- package/es/components/timeline/src/timeline.vue.d.ts +42 -0
- package/es/components/upload/index.d.ts +126 -0
- package/es/components/upload/index.js +1839 -0
- package/es/components/upload/src/icons.d.ts +13 -0
- package/es/components/upload/src/upload.vue.d.ts +125 -0
- package/es/components/upload/utils/index.d.ts +7 -0
- package/index.esm.js +62465 -4061
- package/index.js +62573 -4161
- package/lib/components/button/index.d.ts +48 -26
- package/lib/components/button/index.js +17 -8
- package/lib/components/button/src/button.d.ts +10 -1
- package/lib/components/button/src/button.vue.d.ts +54 -30
- package/lib/components/float-table/index.d.ts +5 -0
- package/lib/components/float-table/index.js +459 -0
- package/lib/components/float-table/src/float-table.vue.d.ts +500 -0
- package/lib/components/flow-designer/index.js +1 -1
- package/lib/components/form-designer/index.js +1 -1
- package/lib/components/index.d.ts +7 -0
- package/lib/components/index.js +49 -0
- package/lib/components/multi-cascader-compose/index.d.ts +135 -0
- package/lib/components/multi-cascader-compose/index.js +1704 -0
- package/lib/components/multi-cascader-compose/src/multi-cascader-compose.vue.d.ts +135 -0
- package/lib/components/multi-cascader-compose/src/props.d.ts +32 -0
- package/lib/components/multi-cascader-compose/types.d.ts +10 -0
- package/lib/components/over-tooltips/index.d.ts +35 -0
- package/lib/components/over-tooltips/index.js +122 -0
- package/lib/components/over-tooltips/src/over-tooltips.vue.d.ts +34 -0
- package/lib/components/search-filter/index.d.ts +23 -5249
- package/lib/components/search-filter/index.js +598 -32
- package/lib/components/search-filter/src/search-filter.vue.d.ts +23 -5250
- package/lib/components/search-filter/src/search-reset-btn.vue.d.ts +0 -270
- package/lib/components/search-filter/src/serach-filter.d.ts +3 -4
- package/lib/components/shops-filter/index.d.ts +99 -0
- package/lib/components/shops-filter/index.js +1626 -0
- package/lib/components/shops-filter/src/shops-filter.d.ts +25 -0
- package/lib/components/shops-filter/src/shops-filter.vue.d.ts +98 -0
- package/lib/components/staffs-selector/index.d.ts +82 -0
- package/lib/components/staffs-selector/index.js +2005 -0
- package/lib/components/staffs-selector/src/multipleCmp.vue.d.ts +79 -0
- package/lib/components/staffs-selector/src/radioCmp.vue.d.ts +31 -0
- package/lib/components/staffs-selector/src/staffs-selector.vue.d.ts +81 -0
- package/lib/components/staffs-selector/src/variedCmp.vue.d.ts +62 -0
- package/lib/components/timeline/index.d.ts +93 -0
- package/lib/components/timeline/index.js +170 -0
- package/lib/components/timeline/src/props.d.ts +20 -0
- package/lib/components/timeline/src/timeline-item.vue.d.ts +51 -0
- package/lib/components/timeline/src/timeline.vue.d.ts +42 -0
- package/lib/components/upload/index.d.ts +126 -0
- package/lib/components/upload/index.js +1844 -0
- package/lib/components/upload/src/icons.d.ts +13 -0
- package/lib/components/upload/src/upload.vue.d.ts +125 -0
- package/lib/components/upload/utils/index.d.ts +7 -0
- package/package.json +8 -5
- package/theme-chalk/button.css +1 -1
- package/theme-chalk/float-table.css +1 -0
- package/theme-chalk/floating-vue.css +1 -0
- package/theme-chalk/flow-designer.css +1 -1
- package/theme-chalk/index.css +1 -1
- package/theme-chalk/multi-cascader-compose.css +1 -0
- package/theme-chalk/over-tooltips.css +1 -0
- package/theme-chalk/search-filter.css +1 -1
- package/theme-chalk/shops-filter.css +1 -0
- package/theme-chalk/staffs-selector.css +1 -0
- package/theme-chalk/timeline.css +1 -0
- package/theme-chalk/upload.css +1 -0
- package/types/components/button/index.d.ts +48 -26
- package/types/components/button/src/button.d.ts +10 -1
- package/types/components/button/src/button.vue.d.ts +54 -30
- package/types/components/float-table/index.d.ts +5 -0
- package/types/components/float-table/src/float-table.vue.d.ts +500 -0
- package/types/components/index.d.ts +7 -0
- package/types/components/multi-cascader-compose/index.d.ts +135 -0
- package/types/components/multi-cascader-compose/src/multi-cascader-compose.vue.d.ts +135 -0
- package/types/components/multi-cascader-compose/src/props.d.ts +32 -0
- package/types/components/multi-cascader-compose/types.d.ts +10 -0
- package/types/components/over-tooltips/index.d.ts +35 -0
- package/types/components/over-tooltips/src/over-tooltips.vue.d.ts +34 -0
- package/types/components/search-filter/index.d.ts +23 -5249
- package/types/components/search-filter/src/search-filter.vue.d.ts +23 -5250
- package/types/components/search-filter/src/search-reset-btn.vue.d.ts +0 -270
- package/types/components/search-filter/src/serach-filter.d.ts +3 -4
- package/types/components/shops-filter/index.d.ts +99 -0
- package/types/components/shops-filter/src/shops-filter.d.ts +25 -0
- package/types/components/shops-filter/src/shops-filter.vue.d.ts +98 -0
- package/types/components/staffs-selector/index.d.ts +82 -0
- package/types/components/staffs-selector/src/multipleCmp.vue.d.ts +79 -0
- package/types/components/staffs-selector/src/radioCmp.vue.d.ts +31 -0
- package/types/components/staffs-selector/src/staffs-selector.vue.d.ts +81 -0
- package/types/components/staffs-selector/src/variedCmp.vue.d.ts +62 -0
- package/types/components/timeline/index.d.ts +93 -0
- package/types/components/timeline/src/props.d.ts +20 -0
- package/types/components/timeline/src/timeline-item.vue.d.ts +51 -0
- package/types/components/timeline/src/timeline.vue.d.ts +42 -0
- package/types/components/upload/index.d.ts +126 -0
- package/types/components/upload/src/icons.d.ts +13 -0
- package/types/components/upload/src/upload.vue.d.ts +125 -0
- package/types/components/upload/utils/index.d.ts +7 -0
|
@@ -23,276 +23,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
23
|
handleExpandBtnChange: () => void;
|
|
24
24
|
handleSubmit: () => void;
|
|
25
25
|
handleReset: () => void;
|
|
26
|
-
AButton: {
|
|
27
|
-
new (...args: any[]): {
|
|
28
|
-
$: import("vue").ComponentInternalInstance;
|
|
29
|
-
$data: {};
|
|
30
|
-
$props: Partial<{
|
|
31
|
-
block: boolean;
|
|
32
|
-
disabled: boolean;
|
|
33
|
-
ghost: boolean;
|
|
34
|
-
danger: boolean;
|
|
35
|
-
htmlType: import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType;
|
|
36
|
-
loading: boolean | {
|
|
37
|
-
delay?: number | undefined;
|
|
38
|
-
};
|
|
39
|
-
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
40
|
-
prefixCls: StringConstructor;
|
|
41
|
-
type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonType>;
|
|
42
|
-
htmlType: {
|
|
43
|
-
type: import("vue").PropType<import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType>;
|
|
44
|
-
default: string;
|
|
45
|
-
};
|
|
46
|
-
shape: {
|
|
47
|
-
type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonShape>;
|
|
48
|
-
};
|
|
49
|
-
size: {
|
|
50
|
-
type: import("vue").PropType<import("ant-design-vue/lib/config-provider").SizeType>;
|
|
51
|
-
};
|
|
52
|
-
loading: {
|
|
53
|
-
type: import("vue").PropType<boolean | {
|
|
54
|
-
delay?: number | undefined;
|
|
55
|
-
}>;
|
|
56
|
-
default: () => boolean | {
|
|
57
|
-
delay?: number | undefined;
|
|
58
|
-
};
|
|
59
|
-
};
|
|
60
|
-
disabled: {
|
|
61
|
-
type: BooleanConstructor;
|
|
62
|
-
default: any;
|
|
63
|
-
};
|
|
64
|
-
ghost: {
|
|
65
|
-
type: BooleanConstructor;
|
|
66
|
-
default: any;
|
|
67
|
-
};
|
|
68
|
-
block: {
|
|
69
|
-
type: BooleanConstructor;
|
|
70
|
-
default: any;
|
|
71
|
-
};
|
|
72
|
-
danger: {
|
|
73
|
-
type: BooleanConstructor;
|
|
74
|
-
default: any;
|
|
75
|
-
};
|
|
76
|
-
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
77
|
-
href: StringConstructor;
|
|
78
|
-
target: StringConstructor;
|
|
79
|
-
title: StringConstructor;
|
|
80
|
-
onClick: {
|
|
81
|
-
type: import("vue").PropType<(event: MouseEvent) => void>;
|
|
82
|
-
};
|
|
83
|
-
onMousedown: {
|
|
84
|
-
type: import("vue").PropType<(event: MouseEvent) => void>;
|
|
85
|
-
};
|
|
86
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "htmlType" | "loading" | "disabled" | "ghost" | "block" | "danger">;
|
|
87
|
-
$attrs: {
|
|
88
|
-
[x: string]: unknown;
|
|
89
|
-
};
|
|
90
|
-
$refs: {
|
|
91
|
-
[x: string]: unknown;
|
|
92
|
-
};
|
|
93
|
-
$slots: Readonly<{
|
|
94
|
-
[name: string]: import("vue").Slot;
|
|
95
|
-
}>;
|
|
96
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
97
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
98
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
99
|
-
$el: any;
|
|
100
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
101
|
-
prefixCls: StringConstructor;
|
|
102
|
-
type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonType>;
|
|
103
|
-
htmlType: {
|
|
104
|
-
type: import("vue").PropType<import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType>;
|
|
105
|
-
default: string;
|
|
106
|
-
};
|
|
107
|
-
shape: {
|
|
108
|
-
type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonShape>;
|
|
109
|
-
};
|
|
110
|
-
size: {
|
|
111
|
-
type: import("vue").PropType<import("ant-design-vue/lib/config-provider").SizeType>;
|
|
112
|
-
};
|
|
113
|
-
loading: {
|
|
114
|
-
type: import("vue").PropType<boolean | {
|
|
115
|
-
delay?: number | undefined;
|
|
116
|
-
}>;
|
|
117
|
-
default: () => boolean | {
|
|
118
|
-
delay?: number | undefined;
|
|
119
|
-
};
|
|
120
|
-
};
|
|
121
|
-
disabled: {
|
|
122
|
-
type: BooleanConstructor;
|
|
123
|
-
default: any;
|
|
124
|
-
};
|
|
125
|
-
ghost: {
|
|
126
|
-
type: BooleanConstructor;
|
|
127
|
-
default: any;
|
|
128
|
-
};
|
|
129
|
-
block: {
|
|
130
|
-
type: BooleanConstructor;
|
|
131
|
-
default: any;
|
|
132
|
-
};
|
|
133
|
-
danger: {
|
|
134
|
-
type: BooleanConstructor;
|
|
135
|
-
default: any;
|
|
136
|
-
};
|
|
137
|
-
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
138
|
-
href: StringConstructor;
|
|
139
|
-
target: StringConstructor;
|
|
140
|
-
title: StringConstructor;
|
|
141
|
-
onClick: {
|
|
142
|
-
type: import("vue").PropType<(event: MouseEvent) => void>;
|
|
143
|
-
};
|
|
144
|
-
onMousedown: {
|
|
145
|
-
type: import("vue").PropType<(event: MouseEvent) => void>;
|
|
146
|
-
};
|
|
147
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
148
|
-
block: boolean;
|
|
149
|
-
disabled: boolean;
|
|
150
|
-
ghost: boolean;
|
|
151
|
-
danger: boolean;
|
|
152
|
-
htmlType: import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType;
|
|
153
|
-
loading: boolean | {
|
|
154
|
-
delay?: number | undefined;
|
|
155
|
-
};
|
|
156
|
-
}> & {
|
|
157
|
-
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
158
|
-
created?: (() => void) | (() => void)[] | undefined;
|
|
159
|
-
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
160
|
-
mounted?: (() => void) | (() => void)[] | undefined;
|
|
161
|
-
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
162
|
-
updated?: (() => void) | (() => void)[] | undefined;
|
|
163
|
-
activated?: (() => void) | (() => void)[] | undefined;
|
|
164
|
-
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
165
|
-
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
166
|
-
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
167
|
-
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
168
|
-
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
169
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[] | undefined;
|
|
170
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[] | undefined;
|
|
171
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[] | undefined;
|
|
172
|
-
};
|
|
173
|
-
$forceUpdate: () => void;
|
|
174
|
-
$nextTick: typeof import("vue").nextTick;
|
|
175
|
-
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
176
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
177
|
-
prefixCls: StringConstructor;
|
|
178
|
-
type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonType>;
|
|
179
|
-
htmlType: {
|
|
180
|
-
type: import("vue").PropType<import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType>;
|
|
181
|
-
default: string;
|
|
182
|
-
};
|
|
183
|
-
shape: {
|
|
184
|
-
type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonShape>;
|
|
185
|
-
};
|
|
186
|
-
size: {
|
|
187
|
-
type: import("vue").PropType<import("ant-design-vue/lib/config-provider").SizeType>;
|
|
188
|
-
};
|
|
189
|
-
loading: {
|
|
190
|
-
type: import("vue").PropType<boolean | {
|
|
191
|
-
delay?: number | undefined;
|
|
192
|
-
}>;
|
|
193
|
-
default: () => boolean | {
|
|
194
|
-
delay?: number | undefined;
|
|
195
|
-
};
|
|
196
|
-
};
|
|
197
|
-
disabled: {
|
|
198
|
-
type: BooleanConstructor;
|
|
199
|
-
default: any;
|
|
200
|
-
};
|
|
201
|
-
ghost: {
|
|
202
|
-
type: BooleanConstructor;
|
|
203
|
-
default: any;
|
|
204
|
-
};
|
|
205
|
-
block: {
|
|
206
|
-
type: BooleanConstructor;
|
|
207
|
-
default: any;
|
|
208
|
-
};
|
|
209
|
-
danger: {
|
|
210
|
-
type: BooleanConstructor;
|
|
211
|
-
default: any;
|
|
212
|
-
};
|
|
213
|
-
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
214
|
-
href: StringConstructor;
|
|
215
|
-
target: StringConstructor;
|
|
216
|
-
title: StringConstructor;
|
|
217
|
-
onClick: {
|
|
218
|
-
type: import("vue").PropType<(event: MouseEvent) => void>;
|
|
219
|
-
};
|
|
220
|
-
onMousedown: {
|
|
221
|
-
type: import("vue").PropType<(event: MouseEvent) => void>;
|
|
222
|
-
};
|
|
223
|
-
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & import("vue").ComponentCustomProperties;
|
|
224
|
-
__isFragment?: undefined;
|
|
225
|
-
__isTeleport?: undefined;
|
|
226
|
-
__isSuspense?: undefined;
|
|
227
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
228
|
-
prefixCls: StringConstructor;
|
|
229
|
-
type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonType>;
|
|
230
|
-
htmlType: {
|
|
231
|
-
type: import("vue").PropType<import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType>;
|
|
232
|
-
default: string;
|
|
233
|
-
};
|
|
234
|
-
shape: {
|
|
235
|
-
type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonShape>;
|
|
236
|
-
};
|
|
237
|
-
size: {
|
|
238
|
-
type: import("vue").PropType<import("ant-design-vue/lib/config-provider").SizeType>;
|
|
239
|
-
};
|
|
240
|
-
loading: {
|
|
241
|
-
type: import("vue").PropType<boolean | {
|
|
242
|
-
delay?: number | undefined;
|
|
243
|
-
}>;
|
|
244
|
-
default: () => boolean | {
|
|
245
|
-
delay?: number | undefined;
|
|
246
|
-
};
|
|
247
|
-
};
|
|
248
|
-
disabled: {
|
|
249
|
-
type: BooleanConstructor;
|
|
250
|
-
default: any;
|
|
251
|
-
};
|
|
252
|
-
ghost: {
|
|
253
|
-
type: BooleanConstructor;
|
|
254
|
-
default: any;
|
|
255
|
-
};
|
|
256
|
-
block: {
|
|
257
|
-
type: BooleanConstructor;
|
|
258
|
-
default: any;
|
|
259
|
-
};
|
|
260
|
-
danger: {
|
|
261
|
-
type: BooleanConstructor;
|
|
262
|
-
default: any;
|
|
263
|
-
};
|
|
264
|
-
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
265
|
-
href: StringConstructor;
|
|
266
|
-
target: StringConstructor;
|
|
267
|
-
title: StringConstructor;
|
|
268
|
-
onClick: {
|
|
269
|
-
type: import("vue").PropType<(event: MouseEvent) => void>;
|
|
270
|
-
};
|
|
271
|
-
onMousedown: {
|
|
272
|
-
type: import("vue").PropType<(event: MouseEvent) => void>;
|
|
273
|
-
};
|
|
274
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
275
|
-
block: boolean;
|
|
276
|
-
disabled: boolean;
|
|
277
|
-
ghost: boolean;
|
|
278
|
-
danger: boolean;
|
|
279
|
-
htmlType: import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType;
|
|
280
|
-
loading: boolean | {
|
|
281
|
-
delay?: number | undefined;
|
|
282
|
-
};
|
|
283
|
-
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & {
|
|
284
|
-
readonly Group: import("vue").DefineComponent<{
|
|
285
|
-
prefixCls: StringConstructor;
|
|
286
|
-
size: {
|
|
287
|
-
type: import("vue").PropType<import("ant-design-vue/lib/config-provider").SizeType>;
|
|
288
|
-
};
|
|
289
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
290
|
-
prefixCls: StringConstructor;
|
|
291
|
-
size: {
|
|
292
|
-
type: import("vue").PropType<import("ant-design-vue/lib/config-provider").SizeType>;
|
|
293
|
-
};
|
|
294
|
-
}>>, {}>;
|
|
295
|
-
};
|
|
296
26
|
DownOutlined: import("@ant-design/icons-vue/lib/icons/DownOutlined").DownOutlinedIconType;
|
|
297
27
|
UpOutlined: import("@ant-design/icons-vue/lib/icons/UpOutlined").UpOutlinedIconType;
|
|
298
28
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("submit" | "reset" | "expand")[], "submit" | "reset" | "expand", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import type { ExtractPropTypes
|
|
2
|
-
import type { Rule } from '@form-create/ant-design-vue';
|
|
1
|
+
import type { ExtractPropTypes } from 'vue';
|
|
3
2
|
export declare const searchResetBtnProps: {
|
|
4
3
|
showExpandBtn: {
|
|
5
4
|
type: BooleanConstructor;
|
|
@@ -12,7 +11,7 @@ export declare const searchFilterProps: {
|
|
|
12
11
|
default: boolean;
|
|
13
12
|
};
|
|
14
13
|
userRule: {
|
|
15
|
-
type:
|
|
14
|
+
type: ArrayConstructor;
|
|
16
15
|
default(): never[];
|
|
17
16
|
};
|
|
18
17
|
labelCol: {
|
|
@@ -23,7 +22,7 @@ export declare const searchFilterProps: {
|
|
|
23
22
|
};
|
|
24
23
|
value: {
|
|
25
24
|
type: ObjectConstructor;
|
|
26
|
-
|
|
25
|
+
default(): {};
|
|
27
26
|
};
|
|
28
27
|
ruleSpan: {
|
|
29
28
|
type: ObjectConstructor;
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
declare const BmShopsFilter: import("bm-admin-ui/es/utils/with-install").SFCWithInstall<import("vue").DefineComponent<{
|
|
2
|
+
labelTitle: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
showAlways: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
displayParams: {
|
|
11
|
+
type: ObjectConstructor;
|
|
12
|
+
default: () => {
|
|
13
|
+
width: string;
|
|
14
|
+
labelOffset: string;
|
|
15
|
+
labelWidth: string;
|
|
16
|
+
searchWidth: string;
|
|
17
|
+
listMaxHeight: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
loadFilter: {
|
|
21
|
+
type: FunctionConstructor;
|
|
22
|
+
default: () => Promise<never[]>;
|
|
23
|
+
};
|
|
24
|
+
loadData: {
|
|
25
|
+
type: FunctionConstructor;
|
|
26
|
+
default: () => Promise<never>;
|
|
27
|
+
};
|
|
28
|
+
}, {
|
|
29
|
+
triggleActive(): void;
|
|
30
|
+
outSideClick(): void;
|
|
31
|
+
changeFilterSelect(index: any, code: any): void;
|
|
32
|
+
onCheckAllChange(e: any): void;
|
|
33
|
+
checkboxChange(): void;
|
|
34
|
+
invertChange(): void;
|
|
35
|
+
clearAll(): void;
|
|
36
|
+
fetchData(): void;
|
|
37
|
+
clearAllSelected(e: any): void;
|
|
38
|
+
filterIsActive(filterIndex: any, code: any): boolean;
|
|
39
|
+
isActive: import("vue").Ref<boolean>;
|
|
40
|
+
searchVal: import("vue").Ref<string>;
|
|
41
|
+
selected: import("vue").Ref<any[]>;
|
|
42
|
+
shopList: import("vue").Ref<{
|
|
43
|
+
shopCode: string;
|
|
44
|
+
shopName: string;
|
|
45
|
+
}[]>;
|
|
46
|
+
shopListByCode: import("vue").Ref<{}>;
|
|
47
|
+
checkAll: import("vue").Ref<boolean>;
|
|
48
|
+
hasCheck: import("vue").Ref<boolean>;
|
|
49
|
+
inverSelect: import("vue").Ref<boolean>;
|
|
50
|
+
shopCheck: import("vue").Ref<{}>;
|
|
51
|
+
filterSelects: import("vue").Ref<never[]>;
|
|
52
|
+
filterArr: import("vue").Ref<{
|
|
53
|
+
list: {
|
|
54
|
+
code: string;
|
|
55
|
+
label: string;
|
|
56
|
+
}[];
|
|
57
|
+
paramsStr: string;
|
|
58
|
+
label?: string | undefined;
|
|
59
|
+
multiple?: boolean | undefined;
|
|
60
|
+
}[]>;
|
|
61
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:selected")[], "change" | "update:selected", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
62
|
+
labelTitle: {
|
|
63
|
+
type: StringConstructor;
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
showAlways: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
70
|
+
displayParams: {
|
|
71
|
+
type: ObjectConstructor;
|
|
72
|
+
default: () => {
|
|
73
|
+
width: string;
|
|
74
|
+
labelOffset: string;
|
|
75
|
+
labelWidth: string;
|
|
76
|
+
searchWidth: string;
|
|
77
|
+
listMaxHeight: string;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
loadFilter: {
|
|
81
|
+
type: FunctionConstructor;
|
|
82
|
+
default: () => Promise<never[]>;
|
|
83
|
+
};
|
|
84
|
+
loadData: {
|
|
85
|
+
type: FunctionConstructor;
|
|
86
|
+
default: () => Promise<never>;
|
|
87
|
+
};
|
|
88
|
+
}>> & {
|
|
89
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
90
|
+
"onUpdate:selected"?: ((...args: any[]) => any) | undefined;
|
|
91
|
+
}, {
|
|
92
|
+
labelTitle: string;
|
|
93
|
+
showAlways: boolean;
|
|
94
|
+
displayParams: Record<string, any>;
|
|
95
|
+
loadFilter: Function;
|
|
96
|
+
loadData: Function;
|
|
97
|
+
}>>;
|
|
98
|
+
export { BmShopsFilter };
|
|
99
|
+
export default BmShopsFilter;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { ExtractPropTypes } from 'vue';
|
|
2
|
+
export declare const shopsFilterProps: {
|
|
3
|
+
labelTitle: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
showAlways: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
displayParams: {
|
|
12
|
+
type: ObjectConstructor;
|
|
13
|
+
default: () => {
|
|
14
|
+
width: string;
|
|
15
|
+
labelOffset: string;
|
|
16
|
+
labelWidth: string;
|
|
17
|
+
searchWidth: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
filterArr: {
|
|
21
|
+
type: PromiseConstructor;
|
|
22
|
+
default: () => never[];
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
export declare type ShopsFilterProps = ExtractPropTypes<typeof shopsFilterProps>;
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
labelTitle: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
showAlways: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
displayParams: {
|
|
11
|
+
type: ObjectConstructor;
|
|
12
|
+
default: () => {
|
|
13
|
+
width: string;
|
|
14
|
+
labelOffset: string;
|
|
15
|
+
labelWidth: string;
|
|
16
|
+
searchWidth: string;
|
|
17
|
+
listMaxHeight: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
loadFilter: {
|
|
21
|
+
type: FunctionConstructor;
|
|
22
|
+
default: () => Promise<never[]>;
|
|
23
|
+
};
|
|
24
|
+
loadData: {
|
|
25
|
+
type: FunctionConstructor;
|
|
26
|
+
default: () => Promise<never>;
|
|
27
|
+
};
|
|
28
|
+
}, {
|
|
29
|
+
triggleActive(): void;
|
|
30
|
+
outSideClick(): void;
|
|
31
|
+
changeFilterSelect(index: any, code: any): void;
|
|
32
|
+
onCheckAllChange(e: any): void;
|
|
33
|
+
checkboxChange(): void;
|
|
34
|
+
invertChange(): void;
|
|
35
|
+
clearAll(): void;
|
|
36
|
+
fetchData(): void;
|
|
37
|
+
clearAllSelected(e: any): void;
|
|
38
|
+
filterIsActive(filterIndex: any, code: any): boolean;
|
|
39
|
+
isActive: import("vue").Ref<boolean>;
|
|
40
|
+
searchVal: import("vue").Ref<string>;
|
|
41
|
+
selected: import("vue").Ref<any[]>;
|
|
42
|
+
shopList: import("vue").Ref<{
|
|
43
|
+
shopCode: string;
|
|
44
|
+
shopName: string;
|
|
45
|
+
}[]>;
|
|
46
|
+
shopListByCode: import("vue").Ref<{}>;
|
|
47
|
+
checkAll: import("vue").Ref<boolean>;
|
|
48
|
+
hasCheck: import("vue").Ref<boolean>;
|
|
49
|
+
inverSelect: import("vue").Ref<boolean>;
|
|
50
|
+
shopCheck: import("vue").Ref<{}>;
|
|
51
|
+
filterSelects: import("vue").Ref<never[]>;
|
|
52
|
+
filterArr: import("vue").Ref<{
|
|
53
|
+
list: {
|
|
54
|
+
code: string;
|
|
55
|
+
label: string;
|
|
56
|
+
}[];
|
|
57
|
+
paramsStr: string;
|
|
58
|
+
label?: string | undefined;
|
|
59
|
+
multiple?: boolean | undefined;
|
|
60
|
+
}[]>;
|
|
61
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:selected")[], "change" | "update:selected", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
62
|
+
labelTitle: {
|
|
63
|
+
type: StringConstructor;
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
showAlways: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
70
|
+
displayParams: {
|
|
71
|
+
type: ObjectConstructor;
|
|
72
|
+
default: () => {
|
|
73
|
+
width: string;
|
|
74
|
+
labelOffset: string;
|
|
75
|
+
labelWidth: string;
|
|
76
|
+
searchWidth: string;
|
|
77
|
+
listMaxHeight: string;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
loadFilter: {
|
|
81
|
+
type: FunctionConstructor;
|
|
82
|
+
default: () => Promise<never[]>;
|
|
83
|
+
};
|
|
84
|
+
loadData: {
|
|
85
|
+
type: FunctionConstructor;
|
|
86
|
+
default: () => Promise<never>;
|
|
87
|
+
};
|
|
88
|
+
}>> & {
|
|
89
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
90
|
+
"onUpdate:selected"?: ((...args: any[]) => any) | undefined;
|
|
91
|
+
}, {
|
|
92
|
+
labelTitle: string;
|
|
93
|
+
showAlways: boolean;
|
|
94
|
+
displayParams: Record<string, any>;
|
|
95
|
+
loadFilter: Function;
|
|
96
|
+
loadData: Function;
|
|
97
|
+
}>;
|
|
98
|
+
export default _default;
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
declare const BmStaffsSelector: import("bm-admin-ui/es/utils/with-install").SFCWithInstall<import("vue").DefineComponent<{
|
|
2
|
+
visible: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
mode: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
limit: {
|
|
11
|
+
type: NumberConstructor;
|
|
12
|
+
default: number;
|
|
13
|
+
};
|
|
14
|
+
title: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
load: {
|
|
19
|
+
type: FunctionConstructor;
|
|
20
|
+
default: () => Promise<never[]>;
|
|
21
|
+
};
|
|
22
|
+
select: {
|
|
23
|
+
type: ArrayConstructor;
|
|
24
|
+
defualt: () => never[];
|
|
25
|
+
};
|
|
26
|
+
forceStatic: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
}, {
|
|
31
|
+
list: import("vue").Ref<any[]>;
|
|
32
|
+
selected: import("vue").Ref<any>;
|
|
33
|
+
dataMap: import("vue").Ref<Map<any, any>>;
|
|
34
|
+
curlistKeys: import("vue").Ref<Set<unknown>>;
|
|
35
|
+
multipTree: import("vue").Ref<boolean>;
|
|
36
|
+
width: import("vue").Ref<648 | 480>;
|
|
37
|
+
modalCancel(): void;
|
|
38
|
+
fetch(params: any): void;
|
|
39
|
+
flatListFunc(list: any): Map<any, any>;
|
|
40
|
+
summitSelect(): void;
|
|
41
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:visible" | "update:select")[], "update:visible" | "update:select", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
42
|
+
visible: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
mode: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
limit: {
|
|
51
|
+
type: NumberConstructor;
|
|
52
|
+
default: number;
|
|
53
|
+
};
|
|
54
|
+
title: {
|
|
55
|
+
type: StringConstructor;
|
|
56
|
+
default: string;
|
|
57
|
+
};
|
|
58
|
+
load: {
|
|
59
|
+
type: FunctionConstructor;
|
|
60
|
+
default: () => Promise<never[]>;
|
|
61
|
+
};
|
|
62
|
+
select: {
|
|
63
|
+
type: ArrayConstructor;
|
|
64
|
+
defualt: () => never[];
|
|
65
|
+
};
|
|
66
|
+
forceStatic: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
70
|
+
}>> & {
|
|
71
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
72
|
+
"onUpdate:select"?: ((...args: any[]) => any) | undefined;
|
|
73
|
+
}, {
|
|
74
|
+
title: string;
|
|
75
|
+
visible: boolean;
|
|
76
|
+
mode: string;
|
|
77
|
+
limit: number;
|
|
78
|
+
load: Function;
|
|
79
|
+
forceStatic: boolean;
|
|
80
|
+
}>>;
|
|
81
|
+
export { BmStaffsSelector };
|
|
82
|
+
export default BmStaffsSelector;
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
limit: {
|
|
3
|
+
type: NumberConstructor;
|
|
4
|
+
default: number;
|
|
5
|
+
};
|
|
6
|
+
list: {
|
|
7
|
+
type: ArrayConstructor;
|
|
8
|
+
default: () => never[];
|
|
9
|
+
};
|
|
10
|
+
selected: {
|
|
11
|
+
type: ArrayConstructor;
|
|
12
|
+
default: () => never[];
|
|
13
|
+
};
|
|
14
|
+
dataMap: {
|
|
15
|
+
type: MapConstructor;
|
|
16
|
+
default: () => Map<any, any>;
|
|
17
|
+
};
|
|
18
|
+
isTree: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
22
|
+
curlistKeys: {
|
|
23
|
+
type: SetConstructor;
|
|
24
|
+
default: () => Set<unknown>;
|
|
25
|
+
};
|
|
26
|
+
}, {
|
|
27
|
+
changeAllOption(): void;
|
|
28
|
+
search(): void;
|
|
29
|
+
setState(): void;
|
|
30
|
+
deleteOption(key: any): void;
|
|
31
|
+
getSelectName(key: any): any;
|
|
32
|
+
searchVal: import("vue").Ref<string>;
|
|
33
|
+
selectAll: import("vue").Ref<boolean>;
|
|
34
|
+
indeterminate: import("vue").Ref<boolean>;
|
|
35
|
+
emptyPic: import("vue").Ref<JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
36
|
+
[key: string]: any;
|
|
37
|
+
}> | null | undefined) | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
38
|
+
[key: string]: any;
|
|
39
|
+
}> | null | undefined)[]>;
|
|
40
|
+
listChecked: import("vue").Ref<{}>;
|
|
41
|
+
isFulfill: import("vue").Ref<boolean>;
|
|
42
|
+
departmentChecked: import("vue").Ref<any>;
|
|
43
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:selected" | "fetchList")[], "update:selected" | "fetchList", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
|
+
limit: {
|
|
45
|
+
type: NumberConstructor;
|
|
46
|
+
default: number;
|
|
47
|
+
};
|
|
48
|
+
list: {
|
|
49
|
+
type: ArrayConstructor;
|
|
50
|
+
default: () => never[];
|
|
51
|
+
};
|
|
52
|
+
selected: {
|
|
53
|
+
type: ArrayConstructor;
|
|
54
|
+
default: () => never[];
|
|
55
|
+
};
|
|
56
|
+
dataMap: {
|
|
57
|
+
type: MapConstructor;
|
|
58
|
+
default: () => Map<any, any>;
|
|
59
|
+
};
|
|
60
|
+
isTree: {
|
|
61
|
+
type: BooleanConstructor;
|
|
62
|
+
default: boolean;
|
|
63
|
+
};
|
|
64
|
+
curlistKeys: {
|
|
65
|
+
type: SetConstructor;
|
|
66
|
+
default: () => Set<unknown>;
|
|
67
|
+
};
|
|
68
|
+
}>> & {
|
|
69
|
+
"onUpdate:selected"?: ((...args: any[]) => any) | undefined;
|
|
70
|
+
onFetchList?: ((...args: any[]) => any) | undefined;
|
|
71
|
+
}, {
|
|
72
|
+
selected: unknown[];
|
|
73
|
+
list: unknown[];
|
|
74
|
+
limit: number;
|
|
75
|
+
dataMap: Map<unknown, unknown>;
|
|
76
|
+
isTree: boolean;
|
|
77
|
+
curlistKeys: Set<unknown>;
|
|
78
|
+
}>;
|
|
79
|
+
export default _default;
|