inviton-powerduck 0.0.180 → 0.0.181
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.
|
@@ -187,13 +187,13 @@ class DaterangePickerComponent extends TsxComponent<DaterangePickerArgs> impleme
|
|
|
187
187
|
this.getInputElement().parent().on('click', async () => {
|
|
188
188
|
const uuid = `drp-modal-${PortalUtils.randomString(6)}`;
|
|
189
189
|
const handle = await DialogUtils.showDialogEx({
|
|
190
|
-
title: this.label,
|
|
190
|
+
title: this.label || '',
|
|
191
191
|
cssClass: 'daterangepicker-modal pd-modal-mobile-input',
|
|
192
192
|
message: `<div><div id="${uuid}"></div></div>`,
|
|
193
193
|
buttons: [],
|
|
194
194
|
onHidden: () => {
|
|
195
195
|
this.tryDestroyPickerInstance();
|
|
196
|
-
}
|
|
196
|
+
},
|
|
197
197
|
});
|
|
198
198
|
|
|
199
199
|
const $modalRoot = $(document.getElementById(uuid));
|
|
@@ -2960,7 +2960,7 @@ import { globalState } from '../../../../app/global-state';
|
|
|
2960
2960
|
}
|
|
2961
2961
|
|
|
2962
2962
|
while (weekCount < 6) {
|
|
2963
|
-
html.push('<tr><td colspan="7"><div color="transparent" class="day" time="-1" style="visibility:hidden;">42</div></td></tr>');
|
|
2963
|
+
html.push('<tr><td colspan="7"><div color="transparent" class="day daterangepicker-dummy-row-item" time="-1" style="visibility:hidden;">42</div></td></tr>');
|
|
2964
2964
|
weekCount += 1;
|
|
2965
2965
|
}
|
|
2966
2966
|
|