bm-admin-ui 1.0.3-alpha → 1.0.6-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/es/components/feedback/index.d.ts +1037 -0
- package/es/components/feedback/index.js +1559 -0
- package/es/components/feedback/src/bmAlert.vue.d.ts +193 -0
- package/es/components/feedback/src/bmModal.vue.d.ts +839 -0
- package/es/components/index.d.ts +1 -0
- package/es/components/index.js +1 -0
- package/es/components/multi-cascader-compose/index.js +4 -4
- package/es/components/search-filter/index.d.ts +48 -5
- package/es/components/search-filter/index.js +73 -49
- package/es/components/search-filter/src/search-filter.vue.d.ts +48 -5
- package/es/components/search-filter/src/search-reset-btn.vue.d.ts +2 -6
- package/es/components/search-filter/src/serach-filter.d.ts +13 -1
- package/es/components/shops-filter/index.js +55 -49
- package/es/components/staffs-selector/index.js +4 -4
- package/es/components/upload/index.js +4 -4
- package/index.esm.js +32475 -27977
- package/index.js +32478 -27975
- package/lib/components/feedback/index.d.ts +1037 -0
- package/lib/components/feedback/index.js +1573 -0
- package/lib/components/feedback/src/bmAlert.vue.d.ts +193 -0
- package/lib/components/feedback/src/bmModal.vue.d.ts +839 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/components/index.js +7 -0
- package/lib/components/multi-cascader-compose/index.js +4 -4
- package/lib/components/search-filter/index.d.ts +48 -5
- package/lib/components/search-filter/index.js +72 -48
- package/lib/components/search-filter/src/search-filter.vue.d.ts +48 -5
- package/lib/components/search-filter/src/search-reset-btn.vue.d.ts +2 -6
- package/lib/components/search-filter/src/serach-filter.d.ts +13 -1
- package/lib/components/shops-filter/index.js +54 -48
- package/lib/components/staffs-selector/index.js +4 -4
- package/lib/components/upload/index.js +4 -4
- package/package.json +2 -2
- package/theme-chalk/alert.css +1 -0
- package/theme-chalk/button.css +1 -1
- package/theme-chalk/feedback.css +1 -0
- package/theme-chalk/float-table.css +1 -1
- package/theme-chalk/floating-vue.css +1 -1
- package/theme-chalk/flow-designer.css +1 -1
- package/theme-chalk/index.css +1 -1
- package/theme-chalk/modal.css +1 -0
- package/theme-chalk/multi-cascader-compose.css +1 -1
- package/theme-chalk/over-tooltips.css +1 -1
- package/theme-chalk/search-filter.css +1 -1
- package/theme-chalk/timeline.css +1 -1
- package/theme-chalk/upload.css +1 -1
- package/types/components/feedback/index.d.ts +1037 -0
- package/types/components/feedback/src/bmAlert.vue.d.ts +193 -0
- package/types/components/feedback/src/bmModal.vue.d.ts +839 -0
- package/types/components/index.d.ts +1 -0
- package/types/components/search-filter/index.d.ts +48 -5
- package/types/components/search-filter/src/search-filter.vue.d.ts +48 -5
- package/types/components/search-filter/src/search-reset-btn.vue.d.ts +2 -6
- package/types/components/search-filter/src/serach-filter.d.ts +13 -1
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
type: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
message: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
description: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
}, {
|
|
15
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
+
type: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
message: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
description: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
}>> & {
|
|
29
|
+
[x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
30
|
+
}>>;
|
|
31
|
+
getIconCmp: import("vue").ComputedRef<import("@ant-design/icons-vue/lib/icons/CheckCircleFilled").CheckCircleFilledIconType | undefined>;
|
|
32
|
+
AAlert: {
|
|
33
|
+
new (...args: any[]): {
|
|
34
|
+
$: import("vue").ComponentInternalInstance;
|
|
35
|
+
$data: {};
|
|
36
|
+
$props: Partial<{
|
|
37
|
+
showIcon: boolean;
|
|
38
|
+
closable: boolean;
|
|
39
|
+
banner: boolean;
|
|
40
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
41
|
+
type: import("vue-types").VueTypeDef<"success" | "error" | "info" | "warning">;
|
|
42
|
+
closable: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
default: any;
|
|
45
|
+
};
|
|
46
|
+
closeText: import("vue-types").VueTypeValidableDef<any>;
|
|
47
|
+
message: import("vue-types").VueTypeValidableDef<any>;
|
|
48
|
+
description: import("vue-types").VueTypeValidableDef<any>;
|
|
49
|
+
afterClose: import("vue").PropType<() => void>;
|
|
50
|
+
showIcon: {
|
|
51
|
+
type: BooleanConstructor;
|
|
52
|
+
default: any;
|
|
53
|
+
};
|
|
54
|
+
prefixCls: StringConstructor;
|
|
55
|
+
banner: {
|
|
56
|
+
type: BooleanConstructor;
|
|
57
|
+
default: any;
|
|
58
|
+
};
|
|
59
|
+
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
60
|
+
closeIcon: import("vue-types").VueTypeValidableDef<any>;
|
|
61
|
+
onClose: import("vue").PropType<import("ant-design-vue/lib/vc-tree/contextTypes").NodeMouseEventHandler>;
|
|
62
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "closable" | "showIcon" | "banner">;
|
|
63
|
+
$attrs: {
|
|
64
|
+
[x: string]: unknown;
|
|
65
|
+
};
|
|
66
|
+
$refs: {
|
|
67
|
+
[x: string]: unknown;
|
|
68
|
+
};
|
|
69
|
+
$slots: Readonly<{
|
|
70
|
+
[name: string]: import("vue").Slot;
|
|
71
|
+
}>;
|
|
72
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
73
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
74
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
75
|
+
$el: any;
|
|
76
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
77
|
+
type: import("vue-types").VueTypeDef<"success" | "error" | "info" | "warning">;
|
|
78
|
+
closable: {
|
|
79
|
+
type: BooleanConstructor;
|
|
80
|
+
default: any;
|
|
81
|
+
};
|
|
82
|
+
closeText: import("vue-types").VueTypeValidableDef<any>;
|
|
83
|
+
message: import("vue-types").VueTypeValidableDef<any>;
|
|
84
|
+
description: import("vue-types").VueTypeValidableDef<any>;
|
|
85
|
+
afterClose: import("vue").PropType<() => void>;
|
|
86
|
+
showIcon: {
|
|
87
|
+
type: BooleanConstructor;
|
|
88
|
+
default: any;
|
|
89
|
+
};
|
|
90
|
+
prefixCls: StringConstructor;
|
|
91
|
+
banner: {
|
|
92
|
+
type: BooleanConstructor;
|
|
93
|
+
default: any;
|
|
94
|
+
};
|
|
95
|
+
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
96
|
+
closeIcon: import("vue-types").VueTypeValidableDef<any>;
|
|
97
|
+
onClose: import("vue").PropType<import("ant-design-vue/lib/vc-tree/contextTypes").NodeMouseEventHandler>;
|
|
98
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
99
|
+
showIcon: boolean;
|
|
100
|
+
closable: boolean;
|
|
101
|
+
banner: boolean;
|
|
102
|
+
}> & {
|
|
103
|
+
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
104
|
+
created?: (() => void) | (() => void)[] | undefined;
|
|
105
|
+
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
106
|
+
mounted?: (() => void) | (() => void)[] | undefined;
|
|
107
|
+
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
108
|
+
updated?: (() => void) | (() => void)[] | undefined;
|
|
109
|
+
activated?: (() => void) | (() => void)[] | undefined;
|
|
110
|
+
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
111
|
+
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
112
|
+
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
113
|
+
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
114
|
+
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
115
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[] | undefined;
|
|
116
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[] | undefined;
|
|
117
|
+
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;
|
|
118
|
+
};
|
|
119
|
+
$forceUpdate: () => void;
|
|
120
|
+
$nextTick: typeof import("vue").nextTick;
|
|
121
|
+
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
122
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
123
|
+
type: import("vue-types").VueTypeDef<"success" | "error" | "info" | "warning">;
|
|
124
|
+
closable: {
|
|
125
|
+
type: BooleanConstructor;
|
|
126
|
+
default: any;
|
|
127
|
+
};
|
|
128
|
+
closeText: import("vue-types").VueTypeValidableDef<any>;
|
|
129
|
+
message: import("vue-types").VueTypeValidableDef<any>;
|
|
130
|
+
description: import("vue-types").VueTypeValidableDef<any>;
|
|
131
|
+
afterClose: import("vue").PropType<() => void>;
|
|
132
|
+
showIcon: {
|
|
133
|
+
type: BooleanConstructor;
|
|
134
|
+
default: any;
|
|
135
|
+
};
|
|
136
|
+
prefixCls: StringConstructor;
|
|
137
|
+
banner: {
|
|
138
|
+
type: BooleanConstructor;
|
|
139
|
+
default: any;
|
|
140
|
+
};
|
|
141
|
+
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
142
|
+
closeIcon: import("vue-types").VueTypeValidableDef<any>;
|
|
143
|
+
onClose: import("vue").PropType<import("ant-design-vue/lib/vc-tree/contextTypes").NodeMouseEventHandler>;
|
|
144
|
+
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & import("vue").ComponentCustomProperties;
|
|
145
|
+
__isFragment?: undefined;
|
|
146
|
+
__isTeleport?: undefined;
|
|
147
|
+
__isSuspense?: undefined;
|
|
148
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
149
|
+
type: import("vue-types").VueTypeDef<"success" | "error" | "info" | "warning">;
|
|
150
|
+
closable: {
|
|
151
|
+
type: BooleanConstructor;
|
|
152
|
+
default: any;
|
|
153
|
+
};
|
|
154
|
+
closeText: import("vue-types").VueTypeValidableDef<any>;
|
|
155
|
+
message: import("vue-types").VueTypeValidableDef<any>;
|
|
156
|
+
description: import("vue-types").VueTypeValidableDef<any>;
|
|
157
|
+
afterClose: import("vue").PropType<() => void>;
|
|
158
|
+
showIcon: {
|
|
159
|
+
type: BooleanConstructor;
|
|
160
|
+
default: any;
|
|
161
|
+
};
|
|
162
|
+
prefixCls: StringConstructor;
|
|
163
|
+
banner: {
|
|
164
|
+
type: BooleanConstructor;
|
|
165
|
+
default: any;
|
|
166
|
+
};
|
|
167
|
+
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
168
|
+
closeIcon: import("vue-types").VueTypeValidableDef<any>;
|
|
169
|
+
onClose: import("vue").PropType<import("ant-design-vue/lib/vc-tree/contextTypes").NodeMouseEventHandler>;
|
|
170
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
171
|
+
showIcon: boolean;
|
|
172
|
+
closable: boolean;
|
|
173
|
+
banner: boolean;
|
|
174
|
+
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
|
|
175
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
176
|
+
type: {
|
|
177
|
+
type: StringConstructor;
|
|
178
|
+
default: string;
|
|
179
|
+
};
|
|
180
|
+
message: {
|
|
181
|
+
type: StringConstructor;
|
|
182
|
+
default: string;
|
|
183
|
+
};
|
|
184
|
+
description: {
|
|
185
|
+
type: StringConstructor;
|
|
186
|
+
default: string;
|
|
187
|
+
};
|
|
188
|
+
}>>, {
|
|
189
|
+
type: string;
|
|
190
|
+
message: string;
|
|
191
|
+
description: string;
|
|
192
|
+
}>;
|
|
193
|
+
export default _default;
|