@cgboiler/biz-mobile 1.17.10 → 1.17.11
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/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/org-picker/OrgPicker.js +5 -0
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/org-picker/OrgPicker.js +5 -0
- package/package.json +1 -1
package/es/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ declare namespace _default {
|
|
|
7
7
|
}
|
|
8
8
|
export default _default;
|
|
9
9
|
export function install(app: any): void;
|
|
10
|
-
export const version: "1.17.
|
|
10
|
+
export const version: "1.17.10";
|
|
11
11
|
import MdPreview from './md-preview';
|
|
12
12
|
import OrgPicker from './org-picker';
|
|
13
13
|
import ProjectSelect from './project-select';
|
package/es/index.js
CHANGED
|
@@ -53,6 +53,7 @@ var stdin_default = defineComponent({
|
|
|
53
53
|
immediate: true
|
|
54
54
|
});
|
|
55
55
|
const handleSelect = (item) => {
|
|
56
|
+
var _a;
|
|
56
57
|
if (item.type === "dept") {
|
|
57
58
|
getOrgList(item.id);
|
|
58
59
|
return;
|
|
@@ -70,6 +71,10 @@ var stdin_default = defineComponent({
|
|
|
70
71
|
emit("update:show", false);
|
|
71
72
|
setRecentUsers(selectedItems.value);
|
|
72
73
|
}
|
|
74
|
+
if (keyword.value) {
|
|
75
|
+
keyword.value = "";
|
|
76
|
+
(_a = searchRef.value) == null ? void 0 : _a.focus();
|
|
77
|
+
}
|
|
73
78
|
};
|
|
74
79
|
const handleHistorySelect = (item) => {
|
|
75
80
|
selectedItems.value = item.selectedUsers;
|
package/lib/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ declare namespace _default {
|
|
|
7
7
|
}
|
|
8
8
|
export default _default;
|
|
9
9
|
export function install(app: any): void;
|
|
10
|
-
export const version: "1.17.
|
|
10
|
+
export const version: "1.17.10";
|
|
11
11
|
import MdPreview from './md-preview';
|
|
12
12
|
import OrgPicker from './org-picker';
|
|
13
13
|
import ProjectSelect from './project-select';
|
package/lib/index.js
CHANGED
|
@@ -42,7 +42,7 @@ var import_project_select = __toESM(require("./project-select"));
|
|
|
42
42
|
__reExport(stdin_exports, require("./md-preview"), module.exports);
|
|
43
43
|
__reExport(stdin_exports, require("./org-picker"), module.exports);
|
|
44
44
|
__reExport(stdin_exports, require("./project-select"), module.exports);
|
|
45
|
-
const version = "1.17.
|
|
45
|
+
const version = "1.17.10";
|
|
46
46
|
function install(app) {
|
|
47
47
|
const components = [
|
|
48
48
|
import_md_preview.default,
|
|
@@ -85,6 +85,7 @@ var stdin_default = (0, import_vue2.defineComponent)({
|
|
|
85
85
|
immediate: true
|
|
86
86
|
});
|
|
87
87
|
const handleSelect = (item) => {
|
|
88
|
+
var _a;
|
|
88
89
|
if (item.type === "dept") {
|
|
89
90
|
getOrgList(item.id);
|
|
90
91
|
return;
|
|
@@ -102,6 +103,10 @@ var stdin_default = (0, import_vue2.defineComponent)({
|
|
|
102
103
|
emit("update:show", false);
|
|
103
104
|
setRecentUsers(selectedItems.value);
|
|
104
105
|
}
|
|
106
|
+
if (keyword.value) {
|
|
107
|
+
keyword.value = "";
|
|
108
|
+
(_a = searchRef.value) == null ? void 0 : _a.focus();
|
|
109
|
+
}
|
|
105
110
|
};
|
|
106
111
|
const handleHistorySelect = (item) => {
|
|
107
112
|
selectedItems.value = item.selectedUsers;
|