@shival99/z-ui 1.3.16 → 1.3.17
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/fesm2022/shival99-z-ui-components-z-calendar.mjs +5 -0
- package/fesm2022/shival99-z-ui-components-z-calendar.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-components-z-drawer.mjs +7 -0
- package/fesm2022/shival99-z-ui-components-z-drawer.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-components-z-modal.mjs +6 -1
- package/fesm2022/shival99-z-ui-components-z-modal.mjs.map +1 -1
- package/package.json +1 -1
- package/types/shival99-z-ui-components-z-drawer.d.ts +1 -0
- package/types/shival99-z-ui-components-z-modal.d.ts +2 -1
- package/types/shival99-z-ui-components-z-select.d.ts +1 -1
|
@@ -1405,6 +1405,11 @@ class ZCalendarComponent {
|
|
|
1405
1405
|
if (range.start && range.end) {
|
|
1406
1406
|
this._currentMonth.set(range.start);
|
|
1407
1407
|
this._endMonth.set(isSameMonth(range.start, range.end) ? addMonths(range.end, 1) : range.end);
|
|
1408
|
+
// Sync time signals for range mode
|
|
1409
|
+
if (this.zShowTime()) {
|
|
1410
|
+
this._syncTimeSignals(range.start);
|
|
1411
|
+
this._syncEndTimeSignals(range.end);
|
|
1412
|
+
}
|
|
1408
1413
|
}
|
|
1409
1414
|
this._inputDisplayStart.set(this.displayValueStart());
|
|
1410
1415
|
this._inputDisplayEnd.set(this.displayValueEnd());
|