bm-admin-ui 1.0.6-alpha → 1.0.7-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/multi-cascader-compose/index.d.ts +3 -3
- package/es/components/multi-cascader-compose/src/multi-cascader-compose.vue.d.ts +3 -3
- package/es/components/search-filter/index.d.ts +2 -4
- package/es/components/search-filter/index.js +3 -2
- package/es/components/search-filter/src/search-filter.vue.d.ts +2 -4
- package/es/components/shops-filter/index.d.ts +1 -1
- package/es/components/shops-filter/src/shops-filter.vue.d.ts +1 -1
- package/es/components/staffs-selector/index.js +1 -1
- package/es/components/upload/index.js +2 -2
- package/index.esm.js +345 -163
- package/index.js +343 -161
- package/lib/components/multi-cascader-compose/index.d.ts +3 -3
- package/lib/components/multi-cascader-compose/src/multi-cascader-compose.vue.d.ts +3 -3
- package/lib/components/search-filter/index.d.ts +2 -4
- package/lib/components/search-filter/index.js +3 -2
- package/lib/components/search-filter/src/search-filter.vue.d.ts +2 -4
- package/lib/components/shops-filter/index.d.ts +1 -1
- package/lib/components/shops-filter/src/shops-filter.vue.d.ts +1 -1
- package/lib/components/staffs-selector/index.js +1 -1
- package/lib/components/upload/index.js +2 -2
- package/package.json +1 -1
- package/types/components/multi-cascader-compose/index.d.ts +3 -3
- package/types/components/multi-cascader-compose/src/multi-cascader-compose.vue.d.ts +3 -3
- package/types/components/search-filter/index.d.ts +2 -4
- package/types/components/search-filter/src/search-filter.vue.d.ts +2 -4
- package/types/components/shops-filter/index.d.ts +1 -1
- package/types/components/shops-filter/src/shops-filter.vue.d.ts +1 -1
- package/theme-chalk/feedback.css +0 -1
- package/theme-chalk/float-table.css +0 -1
- package/theme-chalk/floating-vue.css +0 -1
- package/theme-chalk/flow-designer.css +0 -1
- package/theme-chalk/index.css +0 -1
- package/theme-chalk/modal.css +0 -1
- package/theme-chalk/multi-cascader-compose.css +0 -1
- package/theme-chalk/over-tooltips.css +0 -1
- package/theme-chalk/search-filter.css +0 -1
- package/theme-chalk/shops-filter.css +0 -1
- package/theme-chalk/staffs-selector.css +0 -1
- package/theme-chalk/timeline.css +0 -1
- package/theme-chalk/upload.css +0 -1
|
@@ -77,7 +77,7 @@ declare const BmMultiCascaderCompose: import("bm-admin-ui/es/utils/with-install"
|
|
|
77
77
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
78
78
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
79
79
|
}>>;
|
|
80
|
-
emits: (event: "
|
|
80
|
+
emits: (event: "update:modelValue" | "change", ...args: any[]) => void;
|
|
81
81
|
path: import("vue").Ref<{
|
|
82
82
|
[x: string]: any;
|
|
83
83
|
index: number;
|
|
@@ -106,7 +106,7 @@ declare const BmMultiCascaderCompose: import("bm-admin-ui/es/utils/with-install"
|
|
|
106
106
|
RightOutlined: import("@ant-design/icons-vue/lib/icons/RightOutlined").RightOutlinedIconType;
|
|
107
107
|
DownOutlined: import("@ant-design/icons-vue/lib/icons/DownOutlined").DownOutlinedIconType;
|
|
108
108
|
CloseCircleFilled: import("@ant-design/icons-vue/lib/icons/CloseCircleFilled").CloseCircleFilledIconType;
|
|
109
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
109
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
110
110
|
options: {
|
|
111
111
|
type: import("vue").PropType<import("./types").MutilCascaderItem[]>;
|
|
112
112
|
default(): import("./types").MutilCascaderItem[];
|
|
@@ -148,12 +148,12 @@ declare const BmMultiCascaderCompose: import("bm-admin-ui/es/utils/with-install"
|
|
|
148
148
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
149
149
|
}, {
|
|
150
150
|
placeholder: string;
|
|
151
|
-
allowClear: boolean;
|
|
152
151
|
options: import("./types").MutilCascaderItem[];
|
|
153
152
|
modelValue: string[];
|
|
154
153
|
optionValueName: string;
|
|
155
154
|
optionLabelName: string;
|
|
156
155
|
maxTagCount: number;
|
|
156
|
+
allowClear: boolean;
|
|
157
157
|
emptyImage: JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
158
158
|
[key: string]: any;
|
|
159
159
|
}> | null | undefined) | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
@@ -78,7 +78,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
78
78
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
79
79
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
80
80
|
}>>;
|
|
81
|
-
emits: (event: "
|
|
81
|
+
emits: (event: "update:modelValue" | "change", ...args: any[]) => void;
|
|
82
82
|
path: import("vue").Ref<{
|
|
83
83
|
[x: string]: any;
|
|
84
84
|
index: number;
|
|
@@ -107,7 +107,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
107
107
|
RightOutlined: import("@ant-design/icons-vue/lib/icons/RightOutlined").RightOutlinedIconType;
|
|
108
108
|
DownOutlined: import("@ant-design/icons-vue/lib/icons/DownOutlined").DownOutlinedIconType;
|
|
109
109
|
CloseCircleFilled: import("@ant-design/icons-vue/lib/icons/CloseCircleFilled").CloseCircleFilledIconType;
|
|
110
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
110
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
111
111
|
options: {
|
|
112
112
|
type: import("vue").PropType<MutilCascaderItem[]>;
|
|
113
113
|
default(): MutilCascaderItem[];
|
|
@@ -149,12 +149,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
149
149
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
150
150
|
}, {
|
|
151
151
|
placeholder: string;
|
|
152
|
-
allowClear: boolean;
|
|
153
152
|
options: MutilCascaderItem[];
|
|
154
153
|
modelValue: string[];
|
|
155
154
|
optionValueName: string;
|
|
156
155
|
optionLabelName: string;
|
|
157
156
|
maxTagCount: number;
|
|
157
|
+
allowClear: boolean;
|
|
158
158
|
emptyImage: JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
159
159
|
[key: string]: any;
|
|
160
160
|
}> | null | undefined) | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
@@ -97,9 +97,7 @@ declare const BmSearchFilter: import("bm-admin-ui/es/utils/with-install").SFCWit
|
|
|
97
97
|
gutter: number[];
|
|
98
98
|
};
|
|
99
99
|
form: {
|
|
100
|
-
labelCol:
|
|
101
|
-
[x: string]: any;
|
|
102
|
-
};
|
|
100
|
+
labelCol: Record<string, any>;
|
|
103
101
|
labelAlign: string;
|
|
104
102
|
wrapperCol: {
|
|
105
103
|
span: number;
|
|
@@ -154,10 +152,10 @@ declare const BmSearchFilter: import("bm-admin-ui/es/utils/with-install").SFCWit
|
|
|
154
152
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
155
153
|
onExpand?: ((...args: any[]) => any) | undefined;
|
|
156
154
|
}, {
|
|
155
|
+
value: Record<string, any>;
|
|
157
156
|
showExpandBtn: boolean;
|
|
158
157
|
userRule: unknown[];
|
|
159
158
|
labelCol: Record<string, any>;
|
|
160
|
-
value: Record<string, any>;
|
|
161
159
|
ruleSpan: Record<string, any>;
|
|
162
160
|
fixedCount: number;
|
|
163
161
|
fixedFields: string[];
|
|
@@ -1237,7 +1237,7 @@ const searchFilterProps = Object.assign({ userRule: {
|
|
|
1237
1237
|
},
|
|
1238
1238
|
}, fixedCount: {
|
|
1239
1239
|
type: Number,
|
|
1240
|
-
default:
|
|
1240
|
+
default: 999999,
|
|
1241
1241
|
}, fixedFields: {
|
|
1242
1242
|
type: Array,
|
|
1243
1243
|
default() {
|
|
@@ -1261,6 +1261,7 @@ const _hoisted_2$1 = { class: "bm-search-filter-actions" };
|
|
|
1261
1261
|
const _hoisted_3$1 = /* @__PURE__ */ createTextVNode("\u91CD\u7F6E");
|
|
1262
1262
|
const _hoisted_4$1 = /* @__PURE__ */ createTextVNode("\u67E5\u8BE2");
|
|
1263
1263
|
const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
1264
|
+
name: "search-reset-btn",
|
|
1264
1265
|
props: searchResetBtnProps,
|
|
1265
1266
|
emits: ["submit", "reset", "expand"],
|
|
1266
1267
|
setup(__props, { emit: emits }) {
|
|
@@ -1947,7 +1948,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1947
1948
|
"onUpdate:api": _cache[0] || (_cache[0] = ($event) => fApi.value = $event),
|
|
1948
1949
|
"model-value": props.value,
|
|
1949
1950
|
rule: unref(rule),
|
|
1950
|
-
option
|
|
1951
|
+
option,
|
|
1951
1952
|
onChange: handleChange
|
|
1952
1953
|
}, null, 8, ["api", "model-value", "rule", "option"])
|
|
1953
1954
|
], 2);
|
|
@@ -97,9 +97,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
97
97
|
gutter: number[];
|
|
98
98
|
};
|
|
99
99
|
form: {
|
|
100
|
-
labelCol:
|
|
101
|
-
[x: string]: any;
|
|
102
|
-
};
|
|
100
|
+
labelCol: Record<string, any>;
|
|
103
101
|
labelAlign: string;
|
|
104
102
|
wrapperCol: {
|
|
105
103
|
span: number;
|
|
@@ -154,10 +152,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
154
152
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
155
153
|
onExpand?: ((...args: any[]) => any) | undefined;
|
|
156
154
|
}, {
|
|
155
|
+
value: Record<string, any>;
|
|
157
156
|
showExpandBtn: boolean;
|
|
158
157
|
userRule: unknown[];
|
|
159
158
|
labelCol: Record<string, any>;
|
|
160
|
-
value: Record<string, any>;
|
|
161
159
|
ruleSpan: Record<string, any>;
|
|
162
160
|
fixedCount: number;
|
|
163
161
|
fixedFields: string[];
|
|
@@ -58,7 +58,7 @@ declare const BmShopsFilter: import("bm-admin-ui/es/utils/with-install").SFCWith
|
|
|
58
58
|
label?: string | undefined;
|
|
59
59
|
multiple?: boolean | undefined;
|
|
60
60
|
}[]>;
|
|
61
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
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
62
|
labelTitle: {
|
|
63
63
|
type: StringConstructor;
|
|
64
64
|
default: string;
|
|
@@ -58,7 +58,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
58
58
|
label?: string | undefined;
|
|
59
59
|
multiple?: boolean | undefined;
|
|
60
60
|
}[]>;
|
|
61
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
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
62
|
labelTitle: {
|
|
63
63
|
type: StringConstructor;
|
|
64
64
|
default: string;
|
|
@@ -1715,7 +1715,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1715
1715
|
key: 1,
|
|
1716
1716
|
file: item
|
|
1717
1717
|
})
|
|
1718
|
-
],
|
|
1718
|
+
], 64)) : createCommentVNode("v-if", true),
|
|
1719
1719
|
createCommentVNode(" \u56FE\u7247\u9519\u8BEF\u5C55\u793A "),
|
|
1720
1720
|
item.status === "error" ? (openBlock(), createElementBlock("div", {
|
|
1721
1721
|
key: 2,
|
|
@@ -1761,7 +1761,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1761
1761
|
}, 8, ["class", "disabled"]),
|
|
1762
1762
|
_ctx.extraConfigs.tips && _ctx.extraConfigs.showTips ? (openBlock(), createElementBlock("div", _hoisted_23, toDisplayString(_ctx.extraConfigs.tips), 1)) : createCommentVNode("v-if", true)
|
|
1763
1763
|
])) : createCommentVNode("v-if", true)
|
|
1764
|
-
],
|
|
1764
|
+
], 64))
|
|
1765
1765
|
]),
|
|
1766
1766
|
_: 3
|
|
1767
1767
|
}, 16, ["class"])) : createCommentVNode("v-if", true),
|