@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.
@@ -10134,7 +10134,8 @@ class QuickPopups {
10134
10134
  this.dialogEvent = event;
10135
10135
  }
10136
10136
  this.quickPopupHide();
10137
- if (isNullOrUndefined(event) || (!isNullOrUndefined(event) && event.action !== 'escape')) {
10137
+ if (isNullOrUndefined(event) || (!isNullOrUndefined(event) && event.action !== 'escape') ||
10138
+ (this.parent.inlineModule && this.parent.element.querySelector('.' + INLINE_APPOINTMENT_CLASS))) {
10138
10139
  this.parent.eventBase.focusElement();
10139
10140
  }
10140
10141
  }
@@ -10229,7 +10230,7 @@ class EventTooltip {
10229
10230
  cssClass: this.parent.cssClass + ' ' + EVENT_TOOLTIP_ROOT_CLASS,
10230
10231
  target: this.getTargets(),
10231
10232
  beforeRender: this.onBeforeRender.bind(this),
10232
- beforeClose: this.onBeforeClose.bind(this),
10233
+ afterClose: this.onTooltipClose.bind(this),
10233
10234
  enableRtl: this.parent.enableRtl,
10234
10235
  enableHtmlSanitizer: this.parent.enableHtmlSanitizer
10235
10236
  });
@@ -10337,7 +10338,7 @@ class EventTooltip {
10337
10338
  }
10338
10339
  this.parent.renderTemplates();
10339
10340
  }
10340
- onBeforeClose() {
10341
+ onTooltipClose() {
10341
10342
  this.parent.resetTemplates(['tooltipTemplate', 'headerTooltipTemplate']);
10342
10343
  }
10343
10344
  setContent(content) {