@ldmjs/ui 1.0.48 → 1.0.49
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 +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7471,6 +7471,7 @@ let DatepickerComponent = class DatepickerComponent extends (0,external_vue_clas
|
|
|
7471
7471
|
}
|
|
7472
7472
|
onMinDateChanged(newVal) {
|
|
7473
7473
|
if (!newVal) {
|
|
7474
|
+
this.currentMinDate = null;
|
|
7474
7475
|
return;
|
|
7475
7476
|
}
|
|
7476
7477
|
if (!this.date && !this.currentMinDate) {
|
|
@@ -7490,6 +7491,7 @@ let DatepickerComponent = class DatepickerComponent extends (0,external_vue_clas
|
|
|
7490
7491
|
}
|
|
7491
7492
|
onMaxDateChanged(newVal) {
|
|
7492
7493
|
if (!newVal) {
|
|
7494
|
+
this.currentMaxDate = null;
|
|
7493
7495
|
return;
|
|
7494
7496
|
}
|
|
7495
7497
|
if (!this.date && !this.currentMaxDate) {
|