@uzum-tech/ui 1.2.2 → 1.2.4
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/dist/index.js +12 -2
- package/dist/index.prod.js +1 -1
- package/es/auto-complete/src/AutoComplete.d.ts +13 -0
- package/es/auto-complete/src/AutoComplete.js +4 -1
- package/es/date-picker/src/DatePicker.js +5 -0
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/auto-complete/src/AutoComplete.d.ts +13 -0
- package/lib/auto-complete/src/AutoComplete.js +4 -1
- package/lib/date-picker/src/DatePicker.js +5 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +2 -2
- package/web-types.json +11 -1
package/dist/index.js
CHANGED
|
@@ -45418,6 +45418,10 @@
|
|
|
45418
45418
|
type: Boolean,
|
|
45419
45419
|
default: void 0
|
|
45420
45420
|
},
|
|
45421
|
+
resetMenuOnOptionsChange: {
|
|
45422
|
+
type: Boolean,
|
|
45423
|
+
default: true
|
|
45424
|
+
},
|
|
45421
45425
|
placeholder: String,
|
|
45422
45426
|
placement: {
|
|
45423
45427
|
type: String,
|
|
@@ -45772,7 +45776,8 @@
|
|
|
45772
45776
|
renderOption: this.renderOption,
|
|
45773
45777
|
size: "medium",
|
|
45774
45778
|
onToggle: this.handleToggle,
|
|
45775
|
-
onScroll: this.handleMenuScroll
|
|
45779
|
+
onScroll: this.handleMenuScroll,
|
|
45780
|
+
resetMenuOnOptionsChange: this.resetMenuOnOptionsChange
|
|
45776
45781
|
}
|
|
45777
45782
|
),
|
|
45778
45783
|
[
|
|
@@ -74927,6 +74932,11 @@
|
|
|
74927
74932
|
}
|
|
74928
74933
|
}
|
|
74929
74934
|
function doUpdateValue(value, options) {
|
|
74935
|
+
if (Array.isArray(value)) {
|
|
74936
|
+
const [start, end] = value;
|
|
74937
|
+
if (start && end && start > end)
|
|
74938
|
+
return;
|
|
74939
|
+
}
|
|
74930
74940
|
const {
|
|
74931
74941
|
"onUpdate:value": _onUpdateValue,
|
|
74932
74942
|
onUpdateValue,
|
|
@@ -106762,7 +106772,7 @@
|
|
|
106762
106772
|
watermarkProps: watermarkProps
|
|
106763
106773
|
});
|
|
106764
106774
|
|
|
106765
|
-
var version = "1.2.
|
|
106775
|
+
var version = "1.2.4";
|
|
106766
106776
|
|
|
106767
106777
|
function create({
|
|
106768
106778
|
componentPrefix = "U",
|