jobsys-explore 4.6.1 → 4.6.3
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/.changeset/odd-ghosts-walk.md +5 -0
- package/.changeset/silly-fishes-teach.md +5 -0
- package/CHANGELOG.md +21 -0
- package/components/form/ExForm.jsx +4 -1
- package/dist/jobsys-explore.cjs +1 -1
- package/dist/jobsys-explore.cjs.map +1 -1
- package/dist/jobsys-explore.js +74 -72
- package/dist/jobsys-explore.js.map +1 -1
- package/package.json +2 -2
- package/playground/TestForm.vue +47 -7
- package/vite.config.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# jobsys-explore
|
|
2
2
|
|
|
3
|
+
## 4.6.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Add useFindOptionByValue
|
|
8
|
+
- Upgrade
|
|
9
|
+
- Adjust vue version
|
|
10
|
+
- Downgrade vue
|
|
11
|
+
- AA
|
|
12
|
+
- Add fieldNames support for options
|
|
13
|
+
|
|
14
|
+
## 4.6.2
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Add useFindOptionByValue
|
|
19
|
+
- Upgrade
|
|
20
|
+
- Adjust vue version
|
|
21
|
+
- Downgrade vue
|
|
22
|
+
- Add fieldNames support for options
|
|
23
|
+
|
|
3
24
|
## 4.5.5
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -283,7 +283,10 @@ export default defineComponent({
|
|
|
283
283
|
} else if (formProvider.afterFetched && isFunction(formProvider.afterFetched)) {
|
|
284
284
|
res = formProvider.afterFetched(res)
|
|
285
285
|
}
|
|
286
|
-
|
|
286
|
+
//有可能出现 isInitializing 未生效 skeleton 还未关闭的情况
|
|
287
|
+
nextTick(() => {
|
|
288
|
+
initFormData(res)
|
|
289
|
+
})
|
|
287
290
|
})
|
|
288
291
|
})
|
|
289
292
|
.finally(() => {
|