bm-admin-ui 1.0.78-alpha → 1.0.80-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/float-table/index.js +3077 -1
- package/es/components/float-table/src/rowDrag.d.ts +1 -0
- package/es/components/form-designer/index.js +1 -1
- package/es/components/search-filter/index.js +161 -5
- package/es/components/search-filter/src/form-select-all.vue.d.ts +741 -0
- package/es/components/select-all/index.js +1 -1
- package/es/components/staffs-selector/index.d.ts +1 -81
- package/es/components/staffs-selector/index.js +52 -377
- package/es/components/staffs-selector/src/action.d.ts +8 -3
- package/es/components/staffs-selector/src/departmentCmp.vue.d.ts +1 -5
- package/es/components/staffs-selector/src/multipleCmp.vue.d.ts +0 -5
- package/es/components/staffs-selector/src/staffs-selector.vue.d.ts +1 -81
- package/es/components/staffs-selector/src/variedCmp.vue.d.ts +1 -4
- package/lib/components/float-table/index.js +3076 -0
- package/lib/components/float-table/src/rowDrag.d.ts +1 -0
- package/lib/components/form-designer/index.js +1 -1
- package/lib/components/search-filter/index.js +161 -4
- package/lib/components/search-filter/src/form-select-all.vue.d.ts +741 -0
- package/lib/components/select-all/index.js +1 -1
- package/lib/components/staffs-selector/index.d.ts +1 -81
- package/lib/components/staffs-selector/index.js +50 -375
- package/lib/components/staffs-selector/src/action.d.ts +8 -3
- package/lib/components/staffs-selector/src/departmentCmp.vue.d.ts +1 -5
- package/lib/components/staffs-selector/src/multipleCmp.vue.d.ts +0 -5
- package/lib/components/staffs-selector/src/staffs-selector.vue.d.ts +1 -81
- package/lib/components/staffs-selector/src/variedCmp.vue.d.ts +1 -4
- package/package.json +1 -1
- package/theme-chalk/float-table.css +1 -1
- package/theme-chalk/index.css +1 -1
- package/types/components/float-table/src/rowDrag.d.ts +1 -0
- package/types/components/search-filter/src/form-select-all.vue.d.ts +741 -0
- package/types/components/staffs-selector/index.d.ts +1 -81
- package/types/components/staffs-selector/src/action.d.ts +8 -3
- package/types/components/staffs-selector/src/departmentCmp.vue.d.ts +1 -5
- package/types/components/staffs-selector/src/multipleCmp.vue.d.ts +0 -5
- package/types/components/staffs-selector/src/staffs-selector.vue.d.ts +1 -81
- package/types/components/staffs-selector/src/variedCmp.vue.d.ts +1 -4
|
@@ -147,7 +147,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
147
147
|
]),
|
|
148
148
|
createElementVNode("div", null, [
|
|
149
149
|
createTextVNode(" \u5DF2\u9009\u62E9 "),
|
|
150
|
-
createElementVNode("span", _hoisted_7, toDisplayString(unref(selectValue)
|
|
150
|
+
createElementVNode("span", _hoisted_7, toDisplayString(unref(selectValue)?.length), 1),
|
|
151
151
|
createTextVNode(" \u9879 ")
|
|
152
152
|
])
|
|
153
153
|
]),
|
|
@@ -92,7 +92,6 @@ declare const BmStaffsSelector: import("bm-admin-ui/es/utils/with-install").SFCW
|
|
|
92
92
|
multipTree: import("vue").Ref<boolean>;
|
|
93
93
|
width: import("vue").ComputedRef<648 | 480>;
|
|
94
94
|
modalCancel: () => void;
|
|
95
|
-
isCurrentFetch: (area: string) => any;
|
|
96
95
|
fetch: (params: {
|
|
97
96
|
searchVal?: string | undefined;
|
|
98
97
|
area?: string | undefined;
|
|
@@ -895,14 +894,9 @@ declare const BmStaffsSelector: import("bm-admin-ui/es/utils/with-install").SFCW
|
|
|
895
894
|
setState(): void;
|
|
896
895
|
list: any;
|
|
897
896
|
multipleChecked: import("vue").Ref<any>;
|
|
898
|
-
departmentChecked: import("vue").Ref<string[]>;
|
|
899
897
|
multipDepartment: import("vue").Ref<string[]>;
|
|
900
|
-
staffsChecked: import("vue").Ref<any>;
|
|
901
|
-
shopChecked: import("vue").Ref<any>;
|
|
902
|
-
groupChecked: import("vue").Ref<any>;
|
|
903
898
|
dataMap: import("vue").Ref<Map<string, any>>;
|
|
904
899
|
curlistKeys: import("vue").Ref<Set<string>>;
|
|
905
|
-
activeKey: import("vue").Ref<number>;
|
|
906
900
|
fetchLoading: import("vue").Ref<boolean>;
|
|
907
901
|
searched: import("vue").Ref<boolean>;
|
|
908
902
|
searchVal: import("vue").Ref<string>;
|
|
@@ -961,76 +955,6 @@ declare const BmStaffsSelector: import("bm-admin-ui/es/utils/with-install").SFCW
|
|
|
961
955
|
list: unknown[];
|
|
962
956
|
selected: string;
|
|
963
957
|
}>;
|
|
964
|
-
VariedCmp: import("vue").DefineComponent<{
|
|
965
|
-
list: {
|
|
966
|
-
type: ArrayConstructor;
|
|
967
|
-
default: () => any;
|
|
968
|
-
};
|
|
969
|
-
selected: {
|
|
970
|
-
type: ArrayConstructor;
|
|
971
|
-
default: () => never[];
|
|
972
|
-
};
|
|
973
|
-
dataMap: {
|
|
974
|
-
type: MapConstructor;
|
|
975
|
-
default: () => Map<any, any>;
|
|
976
|
-
};
|
|
977
|
-
curlistKeys: {
|
|
978
|
-
type: SetConstructor;
|
|
979
|
-
default: () => Set<unknown>;
|
|
980
|
-
};
|
|
981
|
-
}, {
|
|
982
|
-
multipleChecked: import("vue").Ref<any>;
|
|
983
|
-
departmentChecked: import("vue").Ref<string[]>;
|
|
984
|
-
multipDepartment: import("vue").Ref<string[]>;
|
|
985
|
-
staffsChecked: import("vue").Ref<any>;
|
|
986
|
-
shopChecked: import("vue").Ref<any>;
|
|
987
|
-
groupChecked: import("vue").Ref<any>;
|
|
988
|
-
dataMap: import("vue").Ref<Map<string, any>>;
|
|
989
|
-
curlistKeys: import("vue").Ref<Set<string>>;
|
|
990
|
-
activeKey: import("vue").Ref<number>;
|
|
991
|
-
fetchLoading: import("vue").Ref<boolean>;
|
|
992
|
-
searched: import("vue").Ref<boolean>;
|
|
993
|
-
indicator: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
994
|
-
[key: string]: any;
|
|
995
|
-
}>;
|
|
996
|
-
loading: import("vue").Ref<boolean>;
|
|
997
|
-
emptyPic: import("ant-design-vue/lib/_util/type").VueNode;
|
|
998
|
-
areas: readonly {
|
|
999
|
-
readonly title: string;
|
|
1000
|
-
readonly key: number;
|
|
1001
|
-
readonly paramStr: string;
|
|
1002
|
-
}[];
|
|
1003
|
-
searchVal: import("vue").Ref<string>;
|
|
1004
|
-
search: () => void;
|
|
1005
|
-
changeArea: (item: any) => void;
|
|
1006
|
-
inputPlaceHolder: import("vue").ComputedRef<"请输入部门搜索" | "请输入工作组搜索" | "请输入店铺搜索" | "请输入人名搜索">;
|
|
1007
|
-
changeTreeCheck: (checkedKeys: any) => void;
|
|
1008
|
-
}, 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<{
|
|
1009
|
-
list: {
|
|
1010
|
-
type: ArrayConstructor;
|
|
1011
|
-
default: () => any;
|
|
1012
|
-
};
|
|
1013
|
-
selected: {
|
|
1014
|
-
type: ArrayConstructor;
|
|
1015
|
-
default: () => never[];
|
|
1016
|
-
};
|
|
1017
|
-
dataMap: {
|
|
1018
|
-
type: MapConstructor;
|
|
1019
|
-
default: () => Map<any, any>;
|
|
1020
|
-
};
|
|
1021
|
-
curlistKeys: {
|
|
1022
|
-
type: SetConstructor;
|
|
1023
|
-
default: () => Set<unknown>;
|
|
1024
|
-
};
|
|
1025
|
-
}>> & {
|
|
1026
|
-
"onUpdate:selected"?: ((...args: any[]) => any) | undefined;
|
|
1027
|
-
onFetchList?: ((...args: any[]) => any) | undefined;
|
|
1028
|
-
}, {
|
|
1029
|
-
list: unknown[];
|
|
1030
|
-
selected: unknown[];
|
|
1031
|
-
dataMap: Map<unknown, unknown>;
|
|
1032
|
-
curlistKeys: Set<unknown>;
|
|
1033
|
-
}>;
|
|
1034
958
|
departmentCmp: import("vue").DefineComponent<{
|
|
1035
959
|
limit: {
|
|
1036
960
|
type: NumberConstructor;
|
|
@@ -1042,16 +966,12 @@ declare const BmStaffsSelector: import("bm-admin-ui/es/utils/with-install").SFCW
|
|
|
1042
966
|
};
|
|
1043
967
|
}, {
|
|
1044
968
|
search(): void;
|
|
969
|
+
treeRef: import("vue").Ref<any>;
|
|
1045
970
|
list: any;
|
|
1046
971
|
multipleChecked: import("vue").Ref<any>;
|
|
1047
|
-
departmentChecked: import("vue").Ref<string[]>;
|
|
1048
972
|
multipDepartment: import("vue").Ref<string[]>;
|
|
1049
|
-
staffsChecked: import("vue").Ref<any>;
|
|
1050
|
-
shopChecked: import("vue").Ref<any>;
|
|
1051
|
-
groupChecked: import("vue").Ref<any>;
|
|
1052
973
|
dataMap: import("vue").Ref<Map<string, any>>;
|
|
1053
974
|
curlistKeys: import("vue").Ref<Set<string>>;
|
|
1054
|
-
activeKey: import("vue").Ref<number>;
|
|
1055
975
|
fetchLoading: import("vue").Ref<boolean>;
|
|
1056
976
|
searched: import("vue").Ref<boolean>;
|
|
1057
977
|
searchVal: import("vue").Ref<string>;
|