@uzum-tech/ui 1.2.3 → 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 +6 -1
- package/dist/index.prod.js +1 -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/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 +1 -1
package/dist/index.js
CHANGED
|
@@ -74932,6 +74932,11 @@
|
|
|
74932
74932
|
}
|
|
74933
74933
|
}
|
|
74934
74934
|
function doUpdateValue(value, options) {
|
|
74935
|
+
if (Array.isArray(value)) {
|
|
74936
|
+
const [start, end] = value;
|
|
74937
|
+
if (start && end && start > end)
|
|
74938
|
+
return;
|
|
74939
|
+
}
|
|
74935
74940
|
const {
|
|
74936
74941
|
"onUpdate:value": _onUpdateValue,
|
|
74937
74942
|
onUpdateValue,
|
|
@@ -106767,7 +106772,7 @@
|
|
|
106767
106772
|
watermarkProps: watermarkProps
|
|
106768
106773
|
});
|
|
106769
106774
|
|
|
106770
|
-
var version = "1.2.
|
|
106775
|
+
var version = "1.2.4";
|
|
106771
106776
|
|
|
106772
106777
|
function create({
|
|
106773
106778
|
componentPrefix = "U",
|