vsyswin-ui 0.2.70 → 0.2.71
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/lib/vsyswin-ui.common.js +54 -50
- package/lib/vsyswin-ui.common.js.map +1 -1
- package/lib/vsyswin-ui.umd.js +54 -50
- package/lib/vsyswin-ui.umd.js.map +1 -1
- package/lib/vsyswin-ui.umd.min.js +7 -7
- package/lib/vsyswin-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/packages/search-bar/src/search-bar.vue +3 -0
package/package.json
CHANGED
|
@@ -864,10 +864,13 @@ export default {
|
|
|
864
864
|
} else {
|
|
865
865
|
v.value = ele.value
|
|
866
866
|
}
|
|
867
|
+
if (ele.value) v.isActive = true
|
|
867
868
|
} else if (v.type === 'month' || v.type === 'year') {
|
|
868
869
|
v.value = ele.value
|
|
870
|
+
if (ele.value) v.isActive = true
|
|
869
871
|
} else if (v.type === 'daterange' || v.type === 'monthrange' || v.type === 'datetimerange') {
|
|
870
872
|
v.value = ele.value
|
|
873
|
+
if (ele.value.length && ele.value[0]) v.isActive = true
|
|
871
874
|
}
|
|
872
875
|
})
|
|
873
876
|
}
|