@syncfusion/ej2-schedule 22.1.34 → 22.1.38
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/CHANGELOG.md +6 -0
- package/dist/ej2-schedule.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-schedule.es2015.js +4 -3
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +4 -3
- package/dist/es6/ej2-schedule.es5.js.map +1 -1
- package/dist/global/ej2-schedule.min.js +2 -2
- package/dist/global/ej2-schedule.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +13 -13
- package/src/schedule/popups/event-tooltip.d.ts +1 -1
- package/src/schedule/popups/event-tooltip.js +2 -2
- package/src/schedule/popups/quick-popups.js +2 -1
- package/styles/material3-dark.css +20 -11
- package/styles/material3.css +20 -11
- package/styles/recurrence-editor/material3-dark.css +20 -11
- package/styles/recurrence-editor/material3.css +20 -11
- package/styles/schedule/material3-dark.css +20 -11
- package/styles/schedule/material3.css +20 -11
|
@@ -10363,7 +10363,8 @@ var QuickPopups = /** @__PURE__ @class */ (function () {
|
|
|
10363
10363
|
this.dialogEvent = event;
|
|
10364
10364
|
}
|
|
10365
10365
|
this.quickPopupHide();
|
|
10366
|
-
if (isNullOrUndefined(event) || (!isNullOrUndefined(event) && event.action !== 'escape')
|
|
10366
|
+
if (isNullOrUndefined(event) || (!isNullOrUndefined(event) && event.action !== 'escape') ||
|
|
10367
|
+
(this.parent.inlineModule && this.parent.element.querySelector('.' + INLINE_APPOINTMENT_CLASS))) {
|
|
10367
10368
|
this.parent.eventBase.focusElement();
|
|
10368
10369
|
}
|
|
10369
10370
|
};
|
|
@@ -10460,7 +10461,7 @@ var EventTooltip = /** @__PURE__ @class */ (function () {
|
|
|
10460
10461
|
cssClass: this.parent.cssClass + ' ' + EVENT_TOOLTIP_ROOT_CLASS,
|
|
10461
10462
|
target: this.getTargets(),
|
|
10462
10463
|
beforeRender: this.onBeforeRender.bind(this),
|
|
10463
|
-
|
|
10464
|
+
afterClose: this.onTooltipClose.bind(this),
|
|
10464
10465
|
enableRtl: this.parent.enableRtl,
|
|
10465
10466
|
enableHtmlSanitizer: this.parent.enableHtmlSanitizer
|
|
10466
10467
|
});
|
|
@@ -10568,7 +10569,7 @@ var EventTooltip = /** @__PURE__ @class */ (function () {
|
|
|
10568
10569
|
}
|
|
10569
10570
|
this.parent.renderTemplates();
|
|
10570
10571
|
};
|
|
10571
|
-
EventTooltip.prototype.
|
|
10572
|
+
EventTooltip.prototype.onTooltipClose = function () {
|
|
10572
10573
|
this.parent.resetTemplates(['tooltipTemplate', 'headerTooltipTemplate']);
|
|
10573
10574
|
};
|
|
10574
10575
|
EventTooltip.prototype.setContent = function (content) {
|