jobsys-explore 4.2.11 → 4.2.13
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/flat-buckets-taste.md +5 -0
- package/.changeset/unlucky-onions-dance.md +5 -0
- package/CHANGELOG.md +35 -0
- package/components/form/ExField.jsx +1 -1
- package/components/form/utils.js +1 -1
- package/dist/jobsys-explore.cjs +1 -1
- package/dist/jobsys-explore.cjs.map +1 -1
- package/dist/jobsys-explore.js +139 -138
- package/dist/jobsys-explore.js.map +1 -1
- package/package.json +1 -1
- package/playground/App.vue +2 -2
- package/playground/TestForm.vue +1 -1
- package/playground/TestPagination.vue +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# jobsys-explore
|
|
2
2
|
|
|
3
|
+
## 4.2.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- page
|
|
8
|
+
- select
|
|
9
|
+
- pagination add pullrefresh
|
|
10
|
+
- form help
|
|
11
|
+
- d
|
|
12
|
+
- fixed format date
|
|
13
|
+
- page
|
|
14
|
+
- useFormFormat
|
|
15
|
+
- rate default null
|
|
16
|
+
- use Dayjs
|
|
17
|
+
- select
|
|
18
|
+
- upload format
|
|
19
|
+
- page
|
|
20
|
+
|
|
21
|
+
## 4.2.12
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- page
|
|
26
|
+
- select
|
|
27
|
+
- pagination add pullrefresh
|
|
28
|
+
- form help
|
|
29
|
+
- d
|
|
30
|
+
- fixed format date
|
|
31
|
+
- page
|
|
32
|
+
- useFormFormat
|
|
33
|
+
- rate default null
|
|
34
|
+
- use Dayjs
|
|
35
|
+
- select
|
|
36
|
+
- page
|
|
37
|
+
|
|
3
38
|
## 4.2.11
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|
|
@@ -54,7 +54,7 @@ export default defineComponent({
|
|
|
54
54
|
/****************** render **********************/
|
|
55
55
|
|
|
56
56
|
const helpElem = () => {
|
|
57
|
-
if (props.
|
|
57
|
+
if (props.help) {
|
|
58
58
|
return (
|
|
59
59
|
<Popover v-model:show={state.showHelp} theme={"dark"} placement={"bottom-start"}>
|
|
60
60
|
{{
|
package/components/form/utils.js
CHANGED
|
@@ -43,7 +43,7 @@ const initItemDefaultValue = (item, existingData, submitForm, provider) => {
|
|
|
43
43
|
if (item.defaultProps && item.defaultProps.maxNum && item.defaultProps.maxNum > 1) {
|
|
44
44
|
value = value || []
|
|
45
45
|
} else {
|
|
46
|
-
value = value || { [uploaderProvider
|
|
46
|
+
value = value || { [uploaderProvider?.defaultFileItem?.path]: "", [uploaderProvider?.defaultFileItem?.url]: "" }
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
|