@syncfusion/ej2-schedule 32.1.22 → 32.1.25-810416

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.
Files changed (144) hide show
  1. package/.eslintrc.json +243 -262
  2. package/.gitleaksignore +4 -4
  3. package/README.md +91 -91
  4. package/dist/ej2-schedule.umd.min.js +1 -10
  5. package/dist/ej2-schedule.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-schedule.es2015.js +98 -107
  7. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  8. package/dist/es6/ej2-schedule.es5.js +562 -574
  9. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  10. package/ej2-schedule-component.sln +32 -0
  11. package/license +9 -9
  12. package/package.json +42 -42
  13. package/src/global.d.ts +1 -0
  14. package/src/recurrence-editor/recurrence-editor-model.d.ts +75 -75
  15. package/src/recurrence-editor/recurrence-editor.js +19 -19
  16. package/src/schedule/actions/action-base.js +1 -1
  17. package/src/schedule/actions/drag.js +13 -13
  18. package/src/schedule/actions/keyboard.js +12 -12
  19. package/src/schedule/actions/resize.js +27 -41
  20. package/src/schedule/base/interface.d.ts +2 -2
  21. package/src/schedule/base/schedule-model.d.ts +886 -886
  22. package/src/schedule/base/schedule.js +19 -19
  23. package/src/schedule/event-renderer/agenda-base.js +13 -13
  24. package/src/schedule/event-renderer/event-base.js +6 -4
  25. package/src/schedule/event-renderer/month.js +13 -13
  26. package/src/schedule/event-renderer/timeline-view.js +13 -13
  27. package/src/schedule/event-renderer/vertical-view.js +13 -13
  28. package/src/schedule/event-renderer/year.js +13 -13
  29. package/src/schedule/models/event-settings-model.d.ts +156 -156
  30. package/src/schedule/models/event-settings.js +19 -19
  31. package/src/schedule/models/field-options-model.d.ts +22 -22
  32. package/src/schedule/models/field-options.js +19 -19
  33. package/src/schedule/models/fields-model.d.ts +92 -92
  34. package/src/schedule/models/fields.js +19 -19
  35. package/src/schedule/models/group-model.d.ts +48 -48
  36. package/src/schedule/models/group.js +19 -19
  37. package/src/schedule/models/header-rows-model.d.ts +22 -22
  38. package/src/schedule/models/header-rows.js +19 -19
  39. package/src/schedule/models/quick-info-templates-model.d.ts +37 -37
  40. package/src/schedule/models/quick-info-templates.js +19 -19
  41. package/src/schedule/models/resources-model.d.ts +85 -85
  42. package/src/schedule/models/resources.js +19 -19
  43. package/src/schedule/models/time-scale-model.d.ts +40 -40
  44. package/src/schedule/models/time-scale.js +19 -19
  45. package/src/schedule/models/toolbar-model.d.ts +187 -187
  46. package/src/schedule/models/toolbar.js +19 -19
  47. package/src/schedule/models/views-model.d.ts +361 -361
  48. package/src/schedule/models/views.js +19 -19
  49. package/src/schedule/models/work-hours-model.d.ts +16 -16
  50. package/src/schedule/models/work-hours.js +19 -19
  51. package/src/schedule/renderer/agenda.js +13 -13
  52. package/src/schedule/renderer/day.js +13 -13
  53. package/src/schedule/renderer/header-renderer.js +11 -11
  54. package/src/schedule/renderer/month-agenda.js +13 -13
  55. package/src/schedule/renderer/month.js +13 -13
  56. package/src/schedule/renderer/timeline-month.js +13 -13
  57. package/src/schedule/renderer/timeline-view.js +13 -13
  58. package/src/schedule/renderer/timeline-year.js +13 -13
  59. package/src/schedule/renderer/vertical-view.js +13 -13
  60. package/src/schedule/renderer/week.js +13 -13
  61. package/src/schedule/renderer/work-week.js +13 -13
  62. package/src/schedule/renderer/year.js +13 -13
  63. package/styles/recurrence-editor/_all.scss +2 -2
  64. package/styles/recurrence-editor/_bds-definition.scss +41 -41
  65. package/styles/recurrence-editor/_bigger.scss +135 -135
  66. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +41 -41
  67. package/styles/recurrence-editor/_bootstrap-definition.scss +41 -41
  68. package/styles/recurrence-editor/_bootstrap4-definition.scss +41 -41
  69. package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +41 -41
  70. package/styles/recurrence-editor/_bootstrap5-definition.scss +41 -41
  71. package/styles/recurrence-editor/_bootstrap5.3-definition.scss +41 -41
  72. package/styles/recurrence-editor/_fabric-dark-definition.scss +41 -41
  73. package/styles/recurrence-editor/_fabric-definition.scss +41 -41
  74. package/styles/recurrence-editor/_fluent-dark-definition.scss +41 -41
  75. package/styles/recurrence-editor/_fluent-definition.scss +41 -41
  76. package/styles/recurrence-editor/_fluent2-definition.scss +41 -41
  77. package/styles/recurrence-editor/_fusionnew-definition.scss +41 -41
  78. package/styles/recurrence-editor/_highcontrast-definition.scss +41 -41
  79. package/styles/recurrence-editor/_highcontrast-light-definition.scss +41 -41
  80. package/styles/recurrence-editor/_layout.scss +426 -426
  81. package/styles/recurrence-editor/_material-dark-definition.scss +41 -41
  82. package/styles/recurrence-editor/_material-definition.scss +41 -41
  83. package/styles/recurrence-editor/_material3-dark-definition.scss +41 -41
  84. package/styles/recurrence-editor/_material3-definition.scss +41 -41
  85. package/styles/recurrence-editor/_tailwind-dark-definition.scss +41 -41
  86. package/styles/recurrence-editor/_tailwind-definition.scss +41 -41
  87. package/styles/recurrence-editor/_tailwind3-definition.scss +41 -41
  88. package/styles/recurrence-editor/_theme.scss +1 -1
  89. package/styles/schedule/_all.scss +2 -2
  90. package/styles/schedule/_bds-definition.scss +381 -381
  91. package/styles/schedule/_bigger.scss +803 -803
  92. package/styles/schedule/_bootstrap-dark-definition.scss +381 -381
  93. package/styles/schedule/_bootstrap-definition.scss +381 -381
  94. package/styles/schedule/_bootstrap4-definition.scss +384 -384
  95. package/styles/schedule/_bootstrap5-dark-definition.scss +385 -385
  96. package/styles/schedule/_bootstrap5-definition.scss +385 -385
  97. package/styles/schedule/_bootstrap5.3-definition.scss +385 -385
  98. package/styles/schedule/_fabric-dark-definition.scss +380 -380
  99. package/styles/schedule/_fabric-definition.scss +381 -381
  100. package/styles/schedule/_fluent-dark-definition.scss +385 -385
  101. package/styles/schedule/_fluent-definition.scss +385 -385
  102. package/styles/schedule/_fluent2-definition.scss +382 -382
  103. package/styles/schedule/_fusionnew-definition.scss +380 -380
  104. package/styles/schedule/_highcontrast-definition.scss +382 -382
  105. package/styles/schedule/_highcontrast-light-definition.scss +382 -382
  106. package/styles/schedule/_layout.scss +3875 -3875
  107. package/styles/schedule/_material-dark-definition.scss +379 -379
  108. package/styles/schedule/_material-definition.scss +379 -379
  109. package/styles/schedule/_material3-dark-definition.scss +384 -384
  110. package/styles/schedule/_material3-definition.scss +384 -384
  111. package/styles/schedule/_tailwind-dark-definition.scss +380 -380
  112. package/styles/schedule/_tailwind-definition.scss +380 -380
  113. package/styles/schedule/_tailwind3-definition.scss +385 -385
  114. package/styles/schedule/_theme.scss +587 -587
  115. package/styles/schedule/icons/_bds.scss +221 -221
  116. package/styles/schedule/icons/_bootstrap-dark.scss +224 -224
  117. package/styles/schedule/icons/_bootstrap.scss +224 -224
  118. package/styles/schedule/icons/_bootstrap4.scss +218 -218
  119. package/styles/schedule/icons/_bootstrap5.3.scss +221 -221
  120. package/styles/schedule/icons/_bootstrap5.scss +221 -221
  121. package/styles/schedule/icons/_fabric-dark.scss +224 -224
  122. package/styles/schedule/icons/_fabric.scss +224 -224
  123. package/styles/schedule/icons/_fluent.scss +221 -221
  124. package/styles/schedule/icons/_fluent2.scss +221 -221
  125. package/styles/schedule/icons/_fusionnew.scss +221 -221
  126. package/styles/schedule/icons/_highcontrast-light.scss +224 -224
  127. package/styles/schedule/icons/_highcontrast.scss +224 -224
  128. package/styles/schedule/icons/_material-dark.scss +224 -224
  129. package/styles/schedule/icons/_material.scss +224 -224
  130. package/styles/schedule/icons/_material3.scss +221 -221
  131. package/styles/schedule/icons/_tailwind.scss +221 -221
  132. package/styles/schedule/icons/_tailwind3.scss +221 -221
  133. package/aceconfig.js +0 -17
  134. package/dist/ej2-schedule.min.js +0 -10
  135. package/dist/global/ej2-schedule.min.js +0 -11
  136. package/dist/global/ej2-schedule.min.js.map +0 -1
  137. package/dist/global/index.d.ts +0 -14
  138. package/helpers/e2e/index.d.ts +0 -5
  139. package/helpers/e2e/index.js +0 -9
  140. package/helpers/e2e/recurrence-editor.d.ts +0 -30
  141. package/helpers/e2e/recurrence-editor.js +0 -42
  142. package/helpers/e2e/schedule.d.ts +0 -50
  143. package/helpers/e2e/schedule.js +0 -45
  144. package/tslint.json +0 -111
@@ -1045,21 +1045,21 @@ var ALLDAY_APPOINTMENT_AUTO = 'e-all-day-auto';
1045
1045
  /** @private */
1046
1046
  var CLIPBOARD_CLASS = 'e-clipboard';
1047
1047
 
1048
- var __assign = (undefined && undefined.__assign) || function () {
1049
- __assign = Object.assign || function(t) {
1050
- for (var s, i = 1, n = arguments.length; i < n; i++) {
1051
- s = arguments[i];
1052
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
1053
- t[p] = s[p];
1054
- }
1055
- return t;
1056
- };
1057
- return __assign.apply(this, arguments);
1058
- };
1048
+ var __assign = (undefined && undefined.__assign) || function () {
1049
+ __assign = Object.assign || function(t) {
1050
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
1051
+ s = arguments[i];
1052
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
1053
+ t[p] = s[p];
1054
+ }
1055
+ return t;
1056
+ };
1057
+ return __assign.apply(this, arguments);
1058
+ };
1059
1059
  /**
1060
1060
  * Header module
1061
1061
  */
1062
- var HeaderRenderer = /** @__PURE__ @class */ (function () {
1062
+ var HeaderRenderer = /** @class */ (function () {
1063
1063
  function HeaderRenderer(parent) {
1064
1064
  this.parent = parent;
1065
1065
  this.l10n = this.parent.localeObj;
@@ -1757,7 +1757,7 @@ var HeaderRenderer = /** @__PURE__ @class */ (function () {
1757
1757
  /**
1758
1758
  * `Scroll` module
1759
1759
  */
1760
- var Scroll = /** @__PURE__ @class */ (function () {
1760
+ var Scroll = /** @class */ (function () {
1761
1761
  /**
1762
1762
  * Constructor for the scrolling.
1763
1763
  *
@@ -1850,7 +1850,7 @@ var Scroll = /** @__PURE__ @class */ (function () {
1850
1850
  /**
1851
1851
  * `touch` module is used to handle touch interactions.
1852
1852
  */
1853
- var ScheduleTouch = /** @__PURE__ @class */ (function () {
1853
+ var ScheduleTouch = /** @class */ (function () {
1854
1854
  function ScheduleTouch(parent) {
1855
1855
  this.parent = parent;
1856
1856
  this.element = this.parent.element.querySelector('.' + TABLE_CONTAINER_CLASS);
@@ -2141,21 +2141,21 @@ var ScheduleTouch = /** @__PURE__ @class */ (function () {
2141
2141
  return ScheduleTouch;
2142
2142
  }());
2143
2143
 
2144
- var __assign$1 = (undefined && undefined.__assign) || function () {
2145
- __assign$1 = Object.assign || function(t) {
2146
- for (var s, i = 1, n = arguments.length; i < n; i++) {
2147
- s = arguments[i];
2148
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
2149
- t[p] = s[p];
2150
- }
2151
- return t;
2152
- };
2153
- return __assign$1.apply(this, arguments);
2154
- };
2144
+ var __assign$1 = (undefined && undefined.__assign) || function () {
2145
+ __assign$1 = Object.assign || function(t) {
2146
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
2147
+ s = arguments[i];
2148
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
2149
+ t[p] = s[p];
2150
+ }
2151
+ return t;
2152
+ };
2153
+ return __assign$1.apply(this, arguments);
2154
+ };
2155
2155
  /**
2156
2156
  * Keyboard interaction
2157
2157
  */
2158
- var KeyboardInteraction = /** @__PURE__ @class */ (function () {
2158
+ var KeyboardInteraction = /** @class */ (function () {
2159
2159
  function KeyboardInteraction(parent) {
2160
2160
  this.selectedCells = [];
2161
2161
  this.isCutContentPasted = false;
@@ -3269,7 +3269,7 @@ var KeyboardInteraction = /** @__PURE__ @class */ (function () {
3269
3269
  var activeEle = document.activeElement;
3270
3270
  if (this.parent.currentView === 'MonthAgenda' || (!isNullOrUndefined(activeEle) && closest(activeEle, '.' + POPUP_WRAPPER_CLASS))) {
3271
3271
  var selectedEle = this.parent.eventBase.getSelectedEvents().element;
3272
- activeEle = ((selectedEle && isNullOrUndefined(selectedEle.length)) ? selectedEle : selectedEle[0]);
3272
+ activeEle = ((selectedEle && selectedEle.length > 0) ? selectedEle[0] : selectedEle);
3273
3273
  }
3274
3274
  if (activeEle && activeEle.classList.contains(APPOINTMENT_CLASS)) {
3275
3275
  addClass([activeEle], APPOINTMENT_BORDER);
@@ -3601,7 +3601,7 @@ var KeyboardInteraction = /** @__PURE__ @class */ (function () {
3601
3601
  *
3602
3602
  * @private
3603
3603
  */
3604
- var Data = /** @__PURE__ @class */ (function () {
3604
+ var Data = /** @class */ (function () {
3605
3605
  /**
3606
3606
  * Constructor for data module
3607
3607
  *
@@ -3711,7 +3711,7 @@ var Data = /** @__PURE__ @class */ (function () {
3711
3711
 
3712
3712
  /* eslint-disable @typescript-eslint/no-explicit-any */
3713
3713
  /** @private */
3714
- var Gregorian = /** @__PURE__ @class */ (function () {
3714
+ var Gregorian = /** @class */ (function () {
3715
3715
  function Gregorian() {
3716
3716
  }
3717
3717
  Gregorian.prototype.firstDateOfMonth = function (date) {
@@ -3796,7 +3796,7 @@ var Gregorian = /** @__PURE__ @class */ (function () {
3796
3796
  return Gregorian;
3797
3797
  }());
3798
3798
  /** @private */
3799
- var Islamic = /** @__PURE__ @class */ (function () {
3799
+ var Islamic = /** @class */ (function () {
3800
3800
  function Islamic() {
3801
3801
  }
3802
3802
  Islamic.prototype.firstDateOfMonth = function (date) {
@@ -3938,7 +3938,7 @@ var Islamic = /** @__PURE__ @class */ (function () {
3938
3938
  /**
3939
3939
  * Time zone
3940
3940
  */
3941
- var Timezone = /** @__PURE__ @class */ (function () {
3941
+ var Timezone = /** @class */ (function () {
3942
3942
  function Timezone() {
3943
3943
  this.timezoneData = [];
3944
3944
  this.timezoneData = this.getTimezoneData();
@@ -5874,7 +5874,7 @@ function roundDateValues(date) {
5874
5874
  /**
5875
5875
  * EventBase for appointment rendering
5876
5876
  */
5877
- var EventBase = /** @__PURE__ @class */ (function () {
5877
+ var EventBase = /** @class */ (function () {
5878
5878
  /**
5879
5879
  * Constructor for EventBase
5880
5880
  *
@@ -6319,6 +6319,8 @@ var EventBase = /** @__PURE__ @class */ (function () {
6319
6319
  app.data = { index: index, count: eventLength };
6320
6320
  app.Guid = this.generateGuid();
6321
6321
  app.isSpanned = true;
6322
+ app.data[eventFields.startTime] = event[eventFields.startTime];
6323
+ app.data[eventFields.endTime] = event[eventFields.endTime];
6322
6324
  data.push(app);
6323
6325
  start = end;
6324
6326
  if ((resetTime(new Date(start.getTime())).getTime() === resetTime(new Date(eventEndTime.getTime())).getTime())
@@ -6867,7 +6869,6 @@ var EventBase = /** @__PURE__ @class */ (function () {
6867
6869
  return eventId;
6868
6870
  };
6869
6871
  EventBase.prototype.activeEventData = function (eventData, isMultiple) {
6870
- var _this = this;
6871
6872
  var target = closest(eventData.target, '.' + APPOINTMENT_CLASS);
6872
6873
  var guid = target.getAttribute('data-guid');
6873
6874
  if (isMultiple) {
@@ -6876,9 +6877,10 @@ var EventBase = /** @__PURE__ @class */ (function () {
6876
6877
  }
6877
6878
  var eventObject = this.getEventByGuid(guid);
6878
6879
  if (eventObject && eventObject.isSpanned) {
6879
- eventObject = this.parent.eventsData.filter(function (obj) {
6880
- return obj[_this.parent.eventFields.id] === eventObject[_this.parent.eventFields.id];
6881
- })[0];
6880
+ var clonedEventObject = extend({}, eventObject, null, true);
6881
+ clonedEventObject[this.parent.eventFields.startTime] = eventObject.data[this.parent.eventFields.startTime];
6882
+ clonedEventObject[this.parent.eventFields.endTime] = eventObject.data[this.parent.eventFields.endTime];
6883
+ eventObject = clonedEventObject;
6882
6884
  }
6883
6885
  this.parent.activeEventData = { event: eventObject, element: target };
6884
6886
  };
@@ -7387,23 +7389,23 @@ var EventBase = /** @__PURE__ @class */ (function () {
7387
7389
  return EventBase;
7388
7390
  }());
7389
7391
 
7390
- var __extends = (undefined && undefined.__extends) || (function () {
7391
- var extendStatics = function (d, b) {
7392
- extendStatics = Object.setPrototypeOf ||
7393
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
7394
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
7395
- return extendStatics(d, b);
7396
- };
7397
- return function (d, b) {
7398
- extendStatics(d, b);
7399
- function __() { this.constructor = d; }
7400
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
7401
- };
7402
- })();
7392
+ var __extends = (undefined && undefined.__extends) || (function () {
7393
+ var extendStatics = function (d, b) {
7394
+ extendStatics = Object.setPrototypeOf ||
7395
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
7396
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
7397
+ return extendStatics(d, b);
7398
+ };
7399
+ return function (d, b) {
7400
+ extendStatics(d, b);
7401
+ function __() { this.constructor = d; }
7402
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
7403
+ };
7404
+ })();
7403
7405
  /**
7404
7406
  * Vertical view appointment rendering
7405
7407
  */
7406
- var VerticalEvent = /** @__PURE__ @class */ (function (_super) {
7408
+ var VerticalEvent = /** @class */ (function (_super) {
7407
7409
  __extends(VerticalEvent, _super);
7408
7410
  function VerticalEvent(parent) {
7409
7411
  var _this = _super.call(this, parent) || this;
@@ -8302,24 +8304,24 @@ var VerticalEvent = /** @__PURE__ @class */ (function (_super) {
8302
8304
  return VerticalEvent;
8303
8305
  }(EventBase));
8304
8306
 
8305
- var __extends$1 = (undefined && undefined.__extends) || (function () {
8306
- var extendStatics = function (d, b) {
8307
- extendStatics = Object.setPrototypeOf ||
8308
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
8309
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
8310
- return extendStatics(d, b);
8311
- };
8312
- return function (d, b) {
8313
- extendStatics(d, b);
8314
- function __() { this.constructor = d; }
8315
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
8316
- };
8317
- })();
8307
+ var __extends$1 = (undefined && undefined.__extends) || (function () {
8308
+ var extendStatics = function (d, b) {
8309
+ extendStatics = Object.setPrototypeOf ||
8310
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
8311
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
8312
+ return extendStatics(d, b);
8313
+ };
8314
+ return function (d, b) {
8315
+ extendStatics(d, b);
8316
+ function __() { this.constructor = d; }
8317
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
8318
+ };
8319
+ })();
8318
8320
  var EVENT_GAP = 0;
8319
8321
  /**
8320
8322
  * Month view events render
8321
8323
  */
8322
- var MonthEvent = /** @__PURE__ @class */ (function (_super) {
8324
+ var MonthEvent = /** @class */ (function (_super) {
8323
8325
  __extends$1(MonthEvent, _super);
8324
8326
  function MonthEvent(parent) {
8325
8327
  var _this = _super.call(this, parent) || this;
@@ -9053,26 +9055,26 @@ var MonthEvent = /** @__PURE__ @class */ (function (_super) {
9053
9055
  return MonthEvent;
9054
9056
  }(EventBase));
9055
9057
 
9056
- var __extends$2 = (undefined && undefined.__extends) || (function () {
9057
- var extendStatics = function (d, b) {
9058
- extendStatics = Object.setPrototypeOf ||
9059
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
9060
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
9061
- return extendStatics(d, b);
9062
- };
9063
- return function (d, b) {
9064
- extendStatics(d, b);
9065
- function __() { this.constructor = d; }
9066
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9067
- };
9068
- })();
9058
+ var __extends$2 = (undefined && undefined.__extends) || (function () {
9059
+ var extendStatics = function (d, b) {
9060
+ extendStatics = Object.setPrototypeOf ||
9061
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
9062
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
9063
+ return extendStatics(d, b);
9064
+ };
9065
+ return function (d, b) {
9066
+ extendStatics(d, b);
9067
+ function __() { this.constructor = d; }
9068
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9069
+ };
9070
+ })();
9069
9071
  var EVENT_GAP$1 = 2;
9070
9072
  var BLOCK_INDICATOR_WIDTH = 22;
9071
9073
  var BLOCK_INDICATOR_HEIGHT = 18;
9072
9074
  /**
9073
9075
  * Timeline view events render
9074
9076
  */
9075
- var TimelineEvent = /** @__PURE__ @class */ (function (_super) {
9077
+ var TimelineEvent = /** @class */ (function (_super) {
9076
9078
  __extends$2(TimelineEvent, _super);
9077
9079
  function TimelineEvent(parent, type) {
9078
9080
  var _this = _super.call(this, parent) || this;
@@ -9657,7 +9659,7 @@ var TimelineEvent = /** @__PURE__ @class */ (function (_super) {
9657
9659
  /**
9658
9660
  * Inline Edit interactions
9659
9661
  */
9660
- var InlineEdit = /** @__PURE__ @class */ (function () {
9662
+ var InlineEdit = /** @class */ (function () {
9661
9663
  function InlineEdit(parent) {
9662
9664
  this.parent = parent;
9663
9665
  this.parent.on(inlineClick, this.inlineEdit, this);
@@ -9926,7 +9928,7 @@ var InlineEdit = /** @__PURE__ @class */ (function () {
9926
9928
  /**
9927
9929
  * Appointment window field validation
9928
9930
  */
9929
- var FieldValidator = /** @__PURE__ @class */ (function () {
9931
+ var FieldValidator = /** @class */ (function () {
9930
9932
  function FieldValidator() {
9931
9933
  }
9932
9934
  FieldValidator.prototype.renderFormValidator = function (form, rules, element, locale) {
@@ -10030,7 +10032,7 @@ var EVENT_FIELD = 'e-field';
10030
10032
  /**
10031
10033
  * Quick Popups interactions
10032
10034
  */
10033
- var QuickPopups = /** @__PURE__ @class */ (function () {
10035
+ var QuickPopups = /** @class */ (function () {
10034
10036
  function QuickPopups(parent) {
10035
10037
  this.isMultipleEventSelect = false;
10036
10038
  this.isCrudAction = false;
@@ -11487,7 +11489,7 @@ var QuickPopups = /** @__PURE__ @class */ (function () {
11487
11489
  /**
11488
11490
  * Tooltip for Schedule
11489
11491
  */
11490
- var EventTooltip = /** @__PURE__ @class */ (function () {
11492
+ var EventTooltip = /** @class */ (function () {
11491
11493
  function EventTooltip(parent) {
11492
11494
  this.parent = parent;
11493
11495
  this.tooltipObj = new Tooltip({
@@ -11673,25 +11675,25 @@ var EventTooltip = /** @__PURE__ @class */ (function () {
11673
11675
  return EventTooltip;
11674
11676
  }());
11675
11677
 
11676
- var __extends$3 = (undefined && undefined.__extends) || (function () {
11677
- var extendStatics = function (d, b) {
11678
- extendStatics = Object.setPrototypeOf ||
11679
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
11680
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
11681
- return extendStatics(d, b);
11682
- };
11683
- return function (d, b) {
11684
- extendStatics(d, b);
11685
- function __() { this.constructor = d; }
11686
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
11687
- };
11688
- })();
11689
- var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
11690
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
11691
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
11692
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
11693
- return c > 3 && r && Object.defineProperty(target, key, r), r;
11694
- };
11678
+ var __extends$3 = (undefined && undefined.__extends) || (function () {
11679
+ var extendStatics = function (d, b) {
11680
+ extendStatics = Object.setPrototypeOf ||
11681
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
11682
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
11683
+ return extendStatics(d, b);
11684
+ };
11685
+ return function (d, b) {
11686
+ extendStatics(d, b);
11687
+ function __() { this.constructor = d; }
11688
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
11689
+ };
11690
+ })();
11691
+ var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
11692
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
11693
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
11694
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
11695
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
11696
+ };
11695
11697
  var HEADER = 'e-editor';
11696
11698
  var INPUTWARAPPER = 'e-input-wrapper';
11697
11699
  var INPUTWARAPPERSIDE = 'e-input-wrapper-side';
@@ -11817,7 +11819,7 @@ var endOnDateClassList = [ENDONCOUNTWRAPPER];
11817
11819
  * </script>
11818
11820
  * ```
11819
11821
  */
11820
- var RecurrenceEditor = /** @__PURE__ @class */ (function (_super) {
11822
+ var RecurrenceEditor = /** @class */ (function (_super) {
11821
11823
  __extends$3(RecurrenceEditor, _super);
11822
11824
  /**
11823
11825
  * Constructor for creating the widget
@@ -12843,7 +12845,7 @@ var HIDE_STYLE_CLASS = 'e-hide';
12843
12845
  /**
12844
12846
  * Event editor window
12845
12847
  */
12846
- var EventWindow = /** @__PURE__ @class */ (function () {
12848
+ var EventWindow = /** @class */ (function () {
12847
12849
  function EventWindow(parent) {
12848
12850
  this.parent = parent;
12849
12851
  this.l10n = this.parent.localeObj;
@@ -14893,7 +14895,7 @@ var EventWindow = /** @__PURE__ @class */ (function () {
14893
14895
  /**
14894
14896
  * Virtual Scroll
14895
14897
  */
14896
- var VirtualScroll = /** @__PURE__ @class */ (function () {
14898
+ var VirtualScroll = /** @class */ (function () {
14897
14899
  function VirtualScroll(parent) {
14898
14900
  this.translateY = 0;
14899
14901
  this.itemSize = 60;
@@ -15466,7 +15468,7 @@ var VirtualScroll = /** @__PURE__ @class */ (function () {
15466
15468
  /**
15467
15469
  * Schedule DOM rendering
15468
15470
  */
15469
- var Render = /** @__PURE__ @class */ (function () {
15471
+ var Render = /** @class */ (function () {
15470
15472
  function Render(parent) {
15471
15473
  this.parent = parent;
15472
15474
  }
@@ -15621,29 +15623,29 @@ var Render = /** @__PURE__ @class */ (function () {
15621
15623
  return Render;
15622
15624
  }());
15623
15625
 
15624
- var __extends$4 = (undefined && undefined.__extends) || (function () {
15625
- var extendStatics = function (d, b) {
15626
- extendStatics = Object.setPrototypeOf ||
15627
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15628
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15629
- return extendStatics(d, b);
15630
- };
15631
- return function (d, b) {
15632
- extendStatics(d, b);
15633
- function __() { this.constructor = d; }
15634
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15635
- };
15636
- })();
15637
- var __decorate$1 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15638
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15639
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15640
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
15641
- return c > 3 && r && Object.defineProperty(target, key, r), r;
15642
- };
15626
+ var __extends$4 = (undefined && undefined.__extends) || (function () {
15627
+ var extendStatics = function (d, b) {
15628
+ extendStatics = Object.setPrototypeOf ||
15629
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15630
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15631
+ return extendStatics(d, b);
15632
+ };
15633
+ return function (d, b) {
15634
+ extendStatics(d, b);
15635
+ function __() { this.constructor = d; }
15636
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15637
+ };
15638
+ })();
15639
+ var __decorate$1 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15640
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15641
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15642
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
15643
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
15644
+ };
15643
15645
  /**
15644
15646
  * A class that represents the configuration of working hours related options of scheduler.
15645
15647
  */
15646
- var WorkHours = /** @__PURE__ @class */ (function (_super) {
15648
+ var WorkHours = /** @class */ (function (_super) {
15647
15649
  __extends$4(WorkHours, _super);
15648
15650
  function WorkHours() {
15649
15651
  return _super !== null && _super.apply(this, arguments) || this;
@@ -15660,29 +15662,29 @@ var WorkHours = /** @__PURE__ @class */ (function (_super) {
15660
15662
  return WorkHours;
15661
15663
  }(ChildProperty));
15662
15664
 
15663
- var __extends$5 = (undefined && undefined.__extends) || (function () {
15664
- var extendStatics = function (d, b) {
15665
- extendStatics = Object.setPrototypeOf ||
15666
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15667
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15668
- return extendStatics(d, b);
15669
- };
15670
- return function (d, b) {
15671
- extendStatics(d, b);
15672
- function __() { this.constructor = d; }
15673
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15674
- };
15675
- })();
15676
- var __decorate$2 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15677
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15678
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15679
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
15680
- return c > 3 && r && Object.defineProperty(target, key, r), r;
15681
- };
15665
+ var __extends$5 = (undefined && undefined.__extends) || (function () {
15666
+ var extendStatics = function (d, b) {
15667
+ extendStatics = Object.setPrototypeOf ||
15668
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15669
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15670
+ return extendStatics(d, b);
15671
+ };
15672
+ return function (d, b) {
15673
+ extendStatics(d, b);
15674
+ function __() { this.constructor = d; }
15675
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15676
+ };
15677
+ })();
15678
+ var __decorate$2 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15679
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15680
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15681
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
15682
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
15683
+ };
15682
15684
  /**
15683
15685
  * A class that represents the configuration of options related to timescale on scheduler.
15684
15686
  */
15685
- var TimeScale = /** @__PURE__ @class */ (function (_super) {
15687
+ var TimeScale = /** @class */ (function (_super) {
15686
15688
  __extends$5(TimeScale, _super);
15687
15689
  function TimeScale() {
15688
15690
  return _super !== null && _super.apply(this, arguments) || this;
@@ -15705,29 +15707,29 @@ var TimeScale = /** @__PURE__ @class */ (function (_super) {
15705
15707
  return TimeScale;
15706
15708
  }(ChildProperty));
15707
15709
 
15708
- var __extends$6 = (undefined && undefined.__extends) || (function () {
15709
- var extendStatics = function (d, b) {
15710
- extendStatics = Object.setPrototypeOf ||
15711
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15712
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15713
- return extendStatics(d, b);
15714
- };
15715
- return function (d, b) {
15716
- extendStatics(d, b);
15717
- function __() { this.constructor = d; }
15718
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15719
- };
15720
- })();
15721
- var __decorate$3 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15722
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15723
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15724
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
15725
- return c > 3 && r && Object.defineProperty(target, key, r), r;
15726
- };
15710
+ var __extends$6 = (undefined && undefined.__extends) || (function () {
15711
+ var extendStatics = function (d, b) {
15712
+ extendStatics = Object.setPrototypeOf ||
15713
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15714
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15715
+ return extendStatics(d, b);
15716
+ };
15717
+ return function (d, b) {
15718
+ extendStatics(d, b);
15719
+ function __() { this.constructor = d; }
15720
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15721
+ };
15722
+ })();
15723
+ var __decorate$3 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15724
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15725
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15726
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
15727
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
15728
+ };
15727
15729
  /**
15728
15730
  * A class that defines the template options available to customize the quick popup of scheduler.
15729
15731
  */
15730
- var QuickInfoTemplates = /** @__PURE__ @class */ (function (_super) {
15732
+ var QuickInfoTemplates = /** @class */ (function (_super) {
15731
15733
  __extends$6(QuickInfoTemplates, _super);
15732
15734
  function QuickInfoTemplates() {
15733
15735
  return _super !== null && _super.apply(this, arguments) || this;
@@ -15747,29 +15749,29 @@ var QuickInfoTemplates = /** @__PURE__ @class */ (function (_super) {
15747
15749
  return QuickInfoTemplates;
15748
15750
  }(ChildProperty));
15749
15751
 
15750
- var __extends$7 = (undefined && undefined.__extends) || (function () {
15751
- var extendStatics = function (d, b) {
15752
- extendStatics = Object.setPrototypeOf ||
15753
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15754
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15755
- return extendStatics(d, b);
15756
- };
15757
- return function (d, b) {
15758
- extendStatics(d, b);
15759
- function __() { this.constructor = d; }
15760
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15761
- };
15762
- })();
15763
- var __decorate$4 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15764
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15765
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15766
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
15767
- return c > 3 && r && Object.defineProperty(target, key, r), r;
15768
- };
15752
+ var __extends$7 = (undefined && undefined.__extends) || (function () {
15753
+ var extendStatics = function (d, b) {
15754
+ extendStatics = Object.setPrototypeOf ||
15755
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15756
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15757
+ return extendStatics(d, b);
15758
+ };
15759
+ return function (d, b) {
15760
+ extendStatics(d, b);
15761
+ function __() { this.constructor = d; }
15762
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15763
+ };
15764
+ })();
15765
+ var __decorate$4 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15766
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15767
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15768
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
15769
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
15770
+ };
15769
15771
  /**
15770
15772
  * A class that represents the header rows related configurations on timeline views.
15771
15773
  */
15772
- var HeaderRows = /** @__PURE__ @class */ (function (_super) {
15774
+ var HeaderRows = /** @class */ (function (_super) {
15773
15775
  __extends$7(HeaderRows, _super);
15774
15776
  function HeaderRows() {
15775
15777
  return _super !== null && _super.apply(this, arguments) || this;
@@ -15787,7 +15789,7 @@ var HeaderRows = /** @__PURE__ @class */ (function (_super) {
15787
15789
  /**
15788
15790
  * Schedule CRUD operations
15789
15791
  */
15790
- var Crud = /** @__PURE__ @class */ (function () {
15792
+ var Crud = /** @class */ (function () {
15791
15793
  function Crud(parent) {
15792
15794
  this.parent = parent;
15793
15795
  this.crudObj = { sourceEvent: null, targetEvent: null, isCrudAction: false };
@@ -16621,7 +16623,7 @@ var Crud = /** @__PURE__ @class */ (function () {
16621
16623
  /**
16622
16624
  * Work cell interactions
16623
16625
  */
16624
- var WorkCellInteraction = /** @__PURE__ @class */ (function () {
16626
+ var WorkCellInteraction = /** @class */ (function () {
16625
16627
  function WorkCellInteraction(parent) {
16626
16628
  this.parent = parent;
16627
16629
  EventHandler.add(this.parent.element, 'mouseover', this.onHover, this);
@@ -16760,29 +16762,29 @@ var WorkCellInteraction = /** @__PURE__ @class */ (function () {
16760
16762
  return WorkCellInteraction;
16761
16763
  }());
16762
16764
 
16763
- var __extends$8 = (undefined && undefined.__extends) || (function () {
16764
- var extendStatics = function (d, b) {
16765
- extendStatics = Object.setPrototypeOf ||
16766
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16767
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16768
- return extendStatics(d, b);
16769
- };
16770
- return function (d, b) {
16771
- extendStatics(d, b);
16772
- function __() { this.constructor = d; }
16773
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16774
- };
16775
- })();
16776
- var __decorate$5 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16777
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16778
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16779
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
16780
- return c > 3 && r && Object.defineProperty(target, key, r), r;
16781
- };
16765
+ var __extends$8 = (undefined && undefined.__extends) || (function () {
16766
+ var extendStatics = function (d, b) {
16767
+ extendStatics = Object.setPrototypeOf ||
16768
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16769
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16770
+ return extendStatics(d, b);
16771
+ };
16772
+ return function (d, b) {
16773
+ extendStatics(d, b);
16774
+ function __() { this.constructor = d; }
16775
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16776
+ };
16777
+ })();
16778
+ var __decorate$5 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16779
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16780
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16781
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
16782
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
16783
+ };
16782
16784
  /**
16783
16785
  * Configuration that applies on each appointment field options of scheduler.
16784
16786
  */
16785
- var FieldOptions = /** @__PURE__ @class */ (function (_super) {
16787
+ var FieldOptions = /** @class */ (function (_super) {
16786
16788
  __extends$8(FieldOptions, _super);
16787
16789
  function FieldOptions() {
16788
16790
  return _super !== null && _super.apply(this, arguments) || this;
@@ -16802,25 +16804,25 @@ var FieldOptions = /** @__PURE__ @class */ (function (_super) {
16802
16804
  return FieldOptions;
16803
16805
  }(ChildProperty));
16804
16806
 
16805
- var __extends$9 = (undefined && undefined.__extends) || (function () {
16806
- var extendStatics = function (d, b) {
16807
- extendStatics = Object.setPrototypeOf ||
16808
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16809
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16810
- return extendStatics(d, b);
16811
- };
16812
- return function (d, b) {
16813
- extendStatics(d, b);
16814
- function __() { this.constructor = d; }
16815
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16816
- };
16817
- })();
16818
- var __decorate$6 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16819
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16820
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16821
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
16822
- return c > 3 && r && Object.defineProperty(target, key, r), r;
16823
- };
16807
+ var __extends$9 = (undefined && undefined.__extends) || (function () {
16808
+ var extendStatics = function (d, b) {
16809
+ extendStatics = Object.setPrototypeOf ||
16810
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16811
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16812
+ return extendStatics(d, b);
16813
+ };
16814
+ return function (d, b) {
16815
+ extendStatics(d, b);
16816
+ function __() { this.constructor = d; }
16817
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16818
+ };
16819
+ })();
16820
+ var __decorate$6 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16821
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16822
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16823
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
16824
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
16825
+ };
16824
16826
  /**
16825
16827
  * A class that holds the collection of event fields that requires to be mapped with the dataSource
16826
16828
  * fields along with its available configuration settings. Each field in it accepts both string and object
@@ -16828,7 +16830,7 @@ var __decorate$6 = (undefined && undefined.__decorate) || function (decorators,
16828
16830
  * name is mapped with it. If the `object` type is defined on each fields, then the validation related settings and mapping of
16829
16831
  * those fields with dataSource can be given altogether within it.
16830
16832
  */
16831
- var Field = /** @__PURE__ @class */ (function (_super) {
16833
+ var Field = /** @class */ (function (_super) {
16832
16834
  __extends$9(Field, _super);
16833
16835
  function Field() {
16834
16836
  return _super !== null && _super.apply(this, arguments) || this;
@@ -16881,29 +16883,29 @@ var Field = /** @__PURE__ @class */ (function (_super) {
16881
16883
  return Field;
16882
16884
  }(ChildProperty));
16883
16885
 
16884
- var __extends$a = (undefined && undefined.__extends) || (function () {
16885
- var extendStatics = function (d, b) {
16886
- extendStatics = Object.setPrototypeOf ||
16887
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16888
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16889
- return extendStatics(d, b);
16890
- };
16891
- return function (d, b) {
16892
- extendStatics(d, b);
16893
- function __() { this.constructor = d; }
16894
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16895
- };
16896
- })();
16897
- var __decorate$7 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16898
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16899
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16900
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
16901
- return c > 3 && r && Object.defineProperty(target, key, r), r;
16902
- };
16886
+ var __extends$a = (undefined && undefined.__extends) || (function () {
16887
+ var extendStatics = function (d, b) {
16888
+ extendStatics = Object.setPrototypeOf ||
16889
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16890
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16891
+ return extendStatics(d, b);
16892
+ };
16893
+ return function (d, b) {
16894
+ extendStatics(d, b);
16895
+ function __() { this.constructor = d; }
16896
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16897
+ };
16898
+ })();
16899
+ var __decorate$7 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16900
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16901
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16902
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
16903
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
16904
+ };
16903
16905
  /**
16904
16906
  * Holds the configuration of event related options and dataSource binding to Schedule.
16905
16907
  */
16906
- var EventSettings = /** @__PURE__ @class */ (function (_super) {
16908
+ var EventSettings = /** @class */ (function (_super) {
16907
16909
  __extends$a(EventSettings, _super);
16908
16910
  function EventSettings() {
16909
16911
  return _super !== null && _super.apply(this, arguments) || this;
@@ -16965,29 +16967,29 @@ var EventSettings = /** @__PURE__ @class */ (function (_super) {
16965
16967
  return EventSettings;
16966
16968
  }(ChildProperty));
16967
16969
 
16968
- var __extends$b = (undefined && undefined.__extends) || (function () {
16969
- var extendStatics = function (d, b) {
16970
- extendStatics = Object.setPrototypeOf ||
16971
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16972
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16973
- return extendStatics(d, b);
16974
- };
16975
- return function (d, b) {
16976
- extendStatics(d, b);
16977
- function __() { this.constructor = d; }
16978
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16979
- };
16980
- })();
16981
- var __decorate$8 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16982
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16983
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16984
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
16985
- return c > 3 && r && Object.defineProperty(target, key, r), r;
16986
- };
16970
+ var __extends$b = (undefined && undefined.__extends) || (function () {
16971
+ var extendStatics = function (d, b) {
16972
+ extendStatics = Object.setPrototypeOf ||
16973
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16974
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16975
+ return extendStatics(d, b);
16976
+ };
16977
+ return function (d, b) {
16978
+ extendStatics(d, b);
16979
+ function __() { this.constructor = d; }
16980
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16981
+ };
16982
+ })();
16983
+ var __decorate$8 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16984
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16985
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16986
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
16987
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
16988
+ };
16987
16989
  /**
16988
16990
  * A class that holds the resource grouping related configurations on Schedule.
16989
16991
  */
16990
- var Group = /** @__PURE__ @class */ (function (_super) {
16992
+ var Group = /** @class */ (function (_super) {
16991
16993
  __extends$b(Group, _super);
16992
16994
  function Group() {
16993
16995
  return _super !== null && _super.apply(this, arguments) || this;
@@ -17016,29 +17018,29 @@ var Group = /** @__PURE__ @class */ (function (_super) {
17016
17018
  return Group;
17017
17019
  }(ChildProperty));
17018
17020
 
17019
- var __extends$c = (undefined && undefined.__extends) || (function () {
17020
- var extendStatics = function (d, b) {
17021
- extendStatics = Object.setPrototypeOf ||
17022
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
17023
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
17024
- return extendStatics(d, b);
17025
- };
17026
- return function (d, b) {
17027
- extendStatics(d, b);
17028
- function __() { this.constructor = d; }
17029
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
17030
- };
17031
- })();
17032
- var __decorate$9 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
17033
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
17034
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17035
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
17036
- return c > 3 && r && Object.defineProperty(target, key, r), r;
17037
- };
17021
+ var __extends$c = (undefined && undefined.__extends) || (function () {
17022
+ var extendStatics = function (d, b) {
17023
+ extendStatics = Object.setPrototypeOf ||
17024
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
17025
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
17026
+ return extendStatics(d, b);
17027
+ };
17028
+ return function (d, b) {
17029
+ extendStatics(d, b);
17030
+ function __() { this.constructor = d; }
17031
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
17032
+ };
17033
+ })();
17034
+ var __decorate$9 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
17035
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
17036
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17037
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
17038
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
17039
+ };
17038
17040
  /**
17039
17041
  * A class that represents the resource related configurations and its data binding options.
17040
17042
  */
17041
- var Resources = /** @__PURE__ @class */ (function (_super) {
17043
+ var Resources = /** @class */ (function (_super) {
17042
17044
  __extends$c(Resources, _super);
17043
17045
  function Resources() {
17044
17046
  return _super !== null && _super.apply(this, arguments) || this;
@@ -17092,7 +17094,7 @@ var Resources = /** @__PURE__ @class */ (function (_super) {
17092
17094
  }(ChildProperty));
17093
17095
 
17094
17096
  /* eslint-disable @typescript-eslint/no-explicit-any */
17095
- var ResourceBase = /** @__PURE__ @class */ (function () {
17097
+ var ResourceBase = /** @class */ (function () {
17096
17098
  function ResourceBase(parent) {
17097
17099
  this.resourceCollection = [];
17098
17100
  this.leftPixel = 25;
@@ -18214,26 +18216,26 @@ var ResourceBase = /** @__PURE__ @class */ (function () {
18214
18216
  return ResourceBase;
18215
18217
  }());
18216
18218
 
18217
- var __extends$d = (undefined && undefined.__extends) || (function () {
18218
- var extendStatics = function (d, b) {
18219
- extendStatics = Object.setPrototypeOf ||
18220
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
18221
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
18222
- return extendStatics(d, b);
18223
- };
18224
- return function (d, b) {
18225
- extendStatics(d, b);
18226
- function __() { this.constructor = d; }
18227
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
18228
- };
18229
- })();
18230
- var __decorate$a = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
18231
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
18232
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
18233
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18234
- return c > 3 && r && Object.defineProperty(target, key, r), r;
18235
- };
18236
- var ToolbarItem = /** @__PURE__ @class */ (function (_super) {
18219
+ var __extends$d = (undefined && undefined.__extends) || (function () {
18220
+ var extendStatics = function (d, b) {
18221
+ extendStatics = Object.setPrototypeOf ||
18222
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
18223
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
18224
+ return extendStatics(d, b);
18225
+ };
18226
+ return function (d, b) {
18227
+ extendStatics(d, b);
18228
+ function __() { this.constructor = d; }
18229
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
18230
+ };
18231
+ })();
18232
+ var __decorate$a = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
18233
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
18234
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
18235
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18236
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
18237
+ };
18238
+ var ToolbarItem = /** @class */ (function (_super) {
18237
18239
  __extends$d(ToolbarItem, _super);
18238
18240
  function ToolbarItem() {
18239
18241
  return _super !== null && _super.apply(this, arguments) || this;
@@ -18298,25 +18300,25 @@ var ToolbarItem = /** @__PURE__ @class */ (function (_super) {
18298
18300
  return ToolbarItem;
18299
18301
  }(ChildProperty));
18300
18302
 
18301
- var __extends$e = (undefined && undefined.__extends) || (function () {
18302
- var extendStatics = function (d, b) {
18303
- extendStatics = Object.setPrototypeOf ||
18304
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
18305
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
18306
- return extendStatics(d, b);
18307
- };
18308
- return function (d, b) {
18309
- extendStatics(d, b);
18310
- function __() { this.constructor = d; }
18311
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
18312
- };
18313
- })();
18314
- var __decorate$b = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
18315
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
18316
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
18317
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18318
- return c > 3 && r && Object.defineProperty(target, key, r), r;
18319
- };
18303
+ var __extends$e = (undefined && undefined.__extends) || (function () {
18304
+ var extendStatics = function (d, b) {
18305
+ extendStatics = Object.setPrototypeOf ||
18306
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
18307
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
18308
+ return extendStatics(d, b);
18309
+ };
18310
+ return function (d, b) {
18311
+ extendStatics(d, b);
18312
+ function __() { this.constructor = d; }
18313
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
18314
+ };
18315
+ })();
18316
+ var __decorate$b = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
18317
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
18318
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
18319
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18320
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
18321
+ };
18320
18322
  /**
18321
18323
  * Represents the Schedule component that displays a list of events scheduled against specific date and timings,
18322
18324
  * thus helping us to plan and manage it properly.
@@ -18330,7 +18332,7 @@ var __decorate$b = (undefined && undefined.__decorate) || function (decorators,
18330
18332
  * </script>
18331
18333
  * ```
18332
18334
  */
18333
- var Schedule = /** @__PURE__ @class */ (function (_super) {
18335
+ var Schedule = /** @class */ (function (_super) {
18334
18336
  __extends$e(Schedule, _super);
18335
18337
  /**
18336
18338
  * Constructor for creating the Schedule widget
@@ -21674,7 +21676,7 @@ var Schedule = /** @__PURE__ @class */ (function (_super) {
21674
21676
  /**
21675
21677
  * Base class for the common drag and resize related actions
21676
21678
  */
21677
- var ActionBase = /** @__PURE__ @class */ (function () {
21679
+ var ActionBase = /** @class */ (function () {
21678
21680
  function ActionBase(parent) {
21679
21681
  this.daysVariation = 0;
21680
21682
  this.parent = parent;
@@ -21759,7 +21761,7 @@ var ActionBase = /** @__PURE__ @class */ (function () {
21759
21761
  var startHour = this.parent.activeView.getStartHour();
21760
21762
  var intervalInMS = MS_PER_MINUTE * this.actionObj.interval;
21761
21763
  dateInMS += (startHour.getHours() * 60 + startHour.getMinutes()) * MS_PER_MINUTE + startHour.getSeconds() * 1000;
21762
- dateInMS = dateInMS + ((date.getTime() - dateInMS) / intervalInMS) * intervalInMS;
21764
+ dateInMS = dateInMS + Math.floor((date.getTime() - dateInMS) / intervalInMS) * intervalInMS;
21763
21765
  return new Date(dateInMS);
21764
21766
  };
21765
21767
  ActionBase.prototype.getContentAreaDimension = function () {
@@ -22141,23 +22143,23 @@ var ActionBase = /** @__PURE__ @class */ (function () {
22141
22143
  return ActionBase;
22142
22144
  }());
22143
22145
 
22144
- var __extends$f = (undefined && undefined.__extends) || (function () {
22145
- var extendStatics = function (d, b) {
22146
- extendStatics = Object.setPrototypeOf ||
22147
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
22148
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
22149
- return extendStatics(d, b);
22150
- };
22151
- return function (d, b) {
22152
- extendStatics(d, b);
22153
- function __() { this.constructor = d; }
22154
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
22155
- };
22156
- })();
22146
+ var __extends$f = (undefined && undefined.__extends) || (function () {
22147
+ var extendStatics = function (d, b) {
22148
+ extendStatics = Object.setPrototypeOf ||
22149
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
22150
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
22151
+ return extendStatics(d, b);
22152
+ };
22153
+ return function (d, b) {
22154
+ extendStatics(d, b);
22155
+ function __() { this.constructor = d; }
22156
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
22157
+ };
22158
+ })();
22157
22159
  /**
22158
22160
  * Schedule events resize actions
22159
22161
  */
22160
- var Resize = /** @__PURE__ @class */ (function (_super) {
22162
+ var Resize = /** @class */ (function (_super) {
22161
22163
  __extends$f(Resize, _super);
22162
22164
  function Resize() {
22163
22165
  return _super !== null && _super.apply(this, arguments) || this;
@@ -22545,13 +22547,17 @@ var Resize = /** @__PURE__ @class */ (function (_super) {
22545
22547
  }
22546
22548
  else {
22547
22549
  var cellWidth = this.actionObj.cellWidth;
22548
- cellIndex = isLeft ? Math.round(offset / this.actionObj.cellWidth) :
22550
+ cellIndex = isLeft ? Math.floor(offset / this.actionObj.cellWidth) :
22549
22551
  Math.ceil((offset + (this.parent.getElementWidth(this.actionObj.clone) - cellWidth)) / this.actionObj.cellWidth);
22550
22552
  if (this.parent.enableRtl) {
22551
- var offsetWidth = (Math.round(offset / this.actionObj.cellWidth) *
22552
- this.actionObj.cellWidth) + (isLeft ? 0 : (this.parent.getElementWidth(this.actionObj.clone) -
22553
- this.actionObj.cellWidth));
22554
- cellIndex = Math.ceil(offsetWidth / this.actionObj.cellWidth);
22553
+ var cellOffsetWidth = 0;
22554
+ if (headerName === 'TimelineMonth' || (!this.parent.activeViewOptions.timeScale.enable &&
22555
+ !isTimelineMonth)) {
22556
+ cellOffsetWidth = this.actionObj.cellWidth;
22557
+ }
22558
+ var offsetWidth = (Math.floor(offset / this.actionObj.cellWidth) *
22559
+ this.actionObj.cellWidth) + (isLeft ? 0 : this.parent.getElementWidth(this.actionObj.clone) - cellOffsetWidth);
22560
+ cellIndex = Math.floor(offsetWidth / this.actionObj.cellWidth);
22555
22561
  }
22556
22562
  isLastCell = cellIndex === tdCollections.length;
22557
22563
  cellIndex = this.getIndex(cellIndex);
@@ -22569,29 +22575,13 @@ var Resize = /** @__PURE__ @class */ (function (_super) {
22569
22575
  }
22570
22576
  else {
22571
22577
  if (!isLeft) {
22572
- var cloneWidth = this.parent.getElementWidth(this.actionObj.clone);
22573
- var pixelsPerInterval = this.actionObj.cellWidth /
22574
- (this.actionObj.slotInterval / this.actionObj.interval);
22575
- var numIntervals = Math.round(cloneWidth / pixelsPerInterval);
22576
- cloneWidth = numIntervals * pixelsPerInterval;
22577
- offset = offset + cloneWidth;
22578
+ offset += this.parent.getElementWidth(this.actionObj.clone);
22578
22579
  }
22579
22580
  var spanMinutes = Math.ceil((this.actionObj.slotInterval / this.actionObj.cellWidth) *
22580
22581
  (offset - Math.floor(offset / this.actionObj.cellWidth) * this.actionObj.cellWidth));
22581
- spanMinutes = (isLastCell || (!isLeft && spanMinutes === 0)) ? this.actionObj.slotInterval : spanMinutes;
22582
+ spanMinutes = (isLastCell || (!isLeft && spanMinutes === 0 && !this.parent.enableRtl)) ? this.actionObj.slotInterval : spanMinutes;
22582
22583
  resizeTime = new Date(resizeDate.getTime());
22583
- resizeTime = new Date(resizeDate.getTime() + (spanMinutes * MS_PER_MINUTE));
22584
- var isCustomResizeInterval = this.actionObj.interval !== this.actionObj.slotInterval;
22585
- var initialCellTime = new Date(resizeTime.getTime());
22586
- var intervalInMS = this.actionObj.interval * 60000;
22587
- if (intervalInMS > 0 && isCustomResizeInterval) {
22588
- if (this.resizeEdges.right || this.resizeEdges.left) {
22589
- var eventTime = this.resizeEdges.right ? eventEnd : eventStart;
22590
- var timeDifferenceMs = initialCellTime.getTime() - eventTime.getTime();
22591
- var intervalCount = Math.round(timeDifferenceMs / intervalInMS);
22592
- resizeTime = new Date(eventTime.getTime() + intervalCount * intervalInMS);
22593
- }
22594
- }
22584
+ resizeTime.setMinutes(resizeTime.getMinutes() + spanMinutes);
22595
22585
  this.updateTimePosition(resizeTime);
22596
22586
  }
22597
22587
  }
@@ -22661,12 +22651,11 @@ var Resize = /** @__PURE__ @class */ (function (_super) {
22661
22651
  var slotInterval = (this.actionObj.cellWidth / this.actionObj.slotInterval) * this.actionObj.interval;
22662
22652
  var pageWidth = isLeft ? (this.actionObj.X - this.actionObj.pageX) : (this.actionObj.pageX - this.actionObj.X);
22663
22653
  var targetWidth = isTimelineView ?
22664
- Math.round(this.parent.getElementWidth(this.actionObj.element) / this.actionObj.cellWidth) * this.actionObj.cellWidth :
22654
+ (this.parent.getElementWidth(this.actionObj.element) / this.actionObj.cellWidth) * this.actionObj.cellWidth :
22665
22655
  this.parent.currentView === 'Month' ? this.parent.getElementWidth(this.actionObj.element) :
22666
22656
  Math.ceil(this.parent.getElementWidth(this.actionObj.element) / this.actionObj.cellWidth) * this.actionObj.cellWidth;
22667
22657
  var offsetWidth = targetWidth + (Math.ceil(pageWidth / this.actionObj.cellWidth) * this.actionObj.cellWidth);
22668
22658
  var left = (this.parent.enableRtl) ? parseInt(this.actionObj.element.style.right, 10) : this.actionObj.clone.offsetLeft;
22669
- left = Math.round(left / slotInterval) * slotInterval;
22670
22659
  if (isTimeViews) {
22671
22660
  offsetWidth = targetWidth + (Math.ceil(pageWidth / slotInterval) * slotInterval);
22672
22661
  if (!isLeft) {
@@ -22678,14 +22667,13 @@ var Resize = /** @__PURE__ @class */ (function (_super) {
22678
22667
  }
22679
22668
  this.actionObj.event[this.parent.eventFields.isAllDay] = false;
22680
22669
  }
22681
- var width = !isLeft && (Math.floor(offsetWidth + this.actionObj.clone.offsetLeft) > this.scrollArgs.width) ?
22670
+ var width = !isLeft && ((offsetWidth + this.actionObj.clone.offsetLeft) > this.scrollArgs.width) ?
22682
22671
  this.parent.getElementWidth(this.actionObj.clone) : (offsetWidth < this.actionObj.cellWidth) ? offsetWidth : offsetWidth;
22683
22672
  if (this.parent.enableRtl) {
22684
22673
  var rightValue = isTimelineView ? parseInt(this.actionObj.element.style.right, 10) :
22685
22674
  -(offsetWidth - this.actionObj.cellWidth);
22686
22675
  rightValue = isTimelineView ? rightValue : isLeft ? 0 : rightValue > 0 ? 0 : rightValue;
22687
22676
  if (isTimelineView && !isLeft) {
22688
- rightValue = Math.round(rightValue / slotInterval) * slotInterval;
22689
22677
  rightValue = rightValue - (Math.ceil((this.actionObj.pageX - this.actionObj.X) / slotInterval) * slotInterval);
22690
22678
  if (rightValue < 0) {
22691
22679
  rightValue = parseInt(this.actionObj.clone.style.right, 10);
@@ -22774,24 +22762,24 @@ var Resize = /** @__PURE__ @class */ (function (_super) {
22774
22762
  return Resize;
22775
22763
  }(ActionBase));
22776
22764
 
22777
- var __extends$g = (undefined && undefined.__extends) || (function () {
22778
- var extendStatics = function (d, b) {
22779
- extendStatics = Object.setPrototypeOf ||
22780
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
22781
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
22782
- return extendStatics(d, b);
22783
- };
22784
- return function (d, b) {
22785
- extendStatics(d, b);
22786
- function __() { this.constructor = d; }
22787
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
22788
- };
22789
- })();
22765
+ var __extends$g = (undefined && undefined.__extends) || (function () {
22766
+ var extendStatics = function (d, b) {
22767
+ extendStatics = Object.setPrototypeOf ||
22768
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
22769
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
22770
+ return extendStatics(d, b);
22771
+ };
22772
+ return function (d, b) {
22773
+ extendStatics(d, b);
22774
+ function __() { this.constructor = d; }
22775
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
22776
+ };
22777
+ })();
22790
22778
  var EVENT_GAP$2 = 2;
22791
22779
  /**
22792
22780
  * Year view events render
22793
22781
  */
22794
- var YearEvent = /** @__PURE__ @class */ (function (_super) {
22782
+ var YearEvent = /** @class */ (function (_super) {
22795
22783
  __extends$g(YearEvent, _super);
22796
22784
  function YearEvent(parent) {
22797
22785
  var _this = _super.call(this, parent, 'day') || this;
@@ -23422,24 +23410,24 @@ var YearEvent = /** @__PURE__ @class */ (function (_super) {
23422
23410
  return YearEvent;
23423
23411
  }(TimelineEvent));
23424
23412
 
23425
- var __extends$h = (undefined && undefined.__extends) || (function () {
23426
- var extendStatics = function (d, b) {
23427
- extendStatics = Object.setPrototypeOf ||
23428
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
23429
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
23430
- return extendStatics(d, b);
23431
- };
23432
- return function (d, b) {
23433
- extendStatics(d, b);
23434
- function __() { this.constructor = d; }
23435
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
23436
- };
23437
- })();
23413
+ var __extends$h = (undefined && undefined.__extends) || (function () {
23414
+ var extendStatics = function (d, b) {
23415
+ extendStatics = Object.setPrototypeOf ||
23416
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
23417
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
23418
+ return extendStatics(d, b);
23419
+ };
23420
+ return function (d, b) {
23421
+ extendStatics(d, b);
23422
+ function __() { this.constructor = d; }
23423
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
23424
+ };
23425
+ })();
23438
23426
  var MINUTES_PER_DAY = 1440;
23439
23427
  /**
23440
23428
  * Schedule events drag actions
23441
23429
  */
23442
- var DragAndDrop = /** @__PURE__ @class */ (function (_super) {
23430
+ var DragAndDrop = /** @class */ (function (_super) {
23443
23431
  __extends$h(DragAndDrop, _super);
23444
23432
  function DragAndDrop() {
23445
23433
  var _this = _super !== null && _super.apply(this, arguments) || this;
@@ -24828,7 +24816,7 @@ var DragAndDrop = /** @__PURE__ @class */ (function (_super) {
24828
24816
  /**
24829
24817
  * view base
24830
24818
  */
24831
- var ViewBase = /** @__PURE__ @class */ (function () {
24819
+ var ViewBase = /** @class */ (function () {
24832
24820
  /**
24833
24821
  * Constructor
24834
24822
  *
@@ -25502,23 +25490,23 @@ var ViewBase = /** @__PURE__ @class */ (function () {
25502
25490
  return ViewBase;
25503
25491
  }());
25504
25492
 
25505
- var __extends$i = (undefined && undefined.__extends) || (function () {
25506
- var extendStatics = function (d, b) {
25507
- extendStatics = Object.setPrototypeOf ||
25508
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
25509
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
25510
- return extendStatics(d, b);
25511
- };
25512
- return function (d, b) {
25513
- extendStatics(d, b);
25514
- function __() { this.constructor = d; }
25515
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
25516
- };
25517
- })();
25493
+ var __extends$i = (undefined && undefined.__extends) || (function () {
25494
+ var extendStatics = function (d, b) {
25495
+ extendStatics = Object.setPrototypeOf ||
25496
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
25497
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
25498
+ return extendStatics(d, b);
25499
+ };
25500
+ return function (d, b) {
25501
+ extendStatics(d, b);
25502
+ function __() { this.constructor = d; }
25503
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
25504
+ };
25505
+ })();
25518
25506
  /**
25519
25507
  * vertical view
25520
25508
  */
25521
- var VerticalView = /** @__PURE__ @class */ (function (_super) {
25509
+ var VerticalView = /** @class */ (function (_super) {
25522
25510
  __extends$i(VerticalView, _super);
25523
25511
  function VerticalView(parent) {
25524
25512
  var _this = _super.call(this, parent) || this;
@@ -26391,23 +26379,23 @@ var VerticalView = /** @__PURE__ @class */ (function (_super) {
26391
26379
  return VerticalView;
26392
26380
  }(ViewBase));
26393
26381
 
26394
- var __extends$j = (undefined && undefined.__extends) || (function () {
26395
- var extendStatics = function (d, b) {
26396
- extendStatics = Object.setPrototypeOf ||
26397
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26398
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
26399
- return extendStatics(d, b);
26400
- };
26401
- return function (d, b) {
26402
- extendStatics(d, b);
26403
- function __() { this.constructor = d; }
26404
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
26405
- };
26406
- })();
26382
+ var __extends$j = (undefined && undefined.__extends) || (function () {
26383
+ var extendStatics = function (d, b) {
26384
+ extendStatics = Object.setPrototypeOf ||
26385
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26386
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
26387
+ return extendStatics(d, b);
26388
+ };
26389
+ return function (d, b) {
26390
+ extendStatics(d, b);
26391
+ function __() { this.constructor = d; }
26392
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
26393
+ };
26394
+ })();
26407
26395
  /**
26408
26396
  * day view
26409
26397
  */
26410
- var Day = /** @__PURE__ @class */ (function (_super) {
26398
+ var Day = /** @class */ (function (_super) {
26411
26399
  __extends$j(Day, _super);
26412
26400
  /**
26413
26401
  * Constructor for day view
@@ -26430,23 +26418,23 @@ var Day = /** @__PURE__ @class */ (function (_super) {
26430
26418
  return Day;
26431
26419
  }(VerticalView));
26432
26420
 
26433
- var __extends$k = (undefined && undefined.__extends) || (function () {
26434
- var extendStatics = function (d, b) {
26435
- extendStatics = Object.setPrototypeOf ||
26436
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26437
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
26438
- return extendStatics(d, b);
26439
- };
26440
- return function (d, b) {
26441
- extendStatics(d, b);
26442
- function __() { this.constructor = d; }
26443
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
26444
- };
26445
- })();
26421
+ var __extends$k = (undefined && undefined.__extends) || (function () {
26422
+ var extendStatics = function (d, b) {
26423
+ extendStatics = Object.setPrototypeOf ||
26424
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26425
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
26426
+ return extendStatics(d, b);
26427
+ };
26428
+ return function (d, b) {
26429
+ extendStatics(d, b);
26430
+ function __() { this.constructor = d; }
26431
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
26432
+ };
26433
+ })();
26446
26434
  /**
26447
26435
  * week view
26448
26436
  */
26449
- var Week = /** @__PURE__ @class */ (function (_super) {
26437
+ var Week = /** @class */ (function (_super) {
26450
26438
  __extends$k(Week, _super);
26451
26439
  /**
26452
26440
  * Constructor for week view
@@ -26475,23 +26463,23 @@ var Week = /** @__PURE__ @class */ (function (_super) {
26475
26463
  return Week;
26476
26464
  }(VerticalView));
26477
26465
 
26478
- var __extends$l = (undefined && undefined.__extends) || (function () {
26479
- var extendStatics = function (d, b) {
26480
- extendStatics = Object.setPrototypeOf ||
26481
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26482
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
26483
- return extendStatics(d, b);
26484
- };
26485
- return function (d, b) {
26486
- extendStatics(d, b);
26487
- function __() { this.constructor = d; }
26488
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
26489
- };
26490
- })();
26466
+ var __extends$l = (undefined && undefined.__extends) || (function () {
26467
+ var extendStatics = function (d, b) {
26468
+ extendStatics = Object.setPrototypeOf ||
26469
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26470
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
26471
+ return extendStatics(d, b);
26472
+ };
26473
+ return function (d, b) {
26474
+ extendStatics(d, b);
26475
+ function __() { this.constructor = d; }
26476
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
26477
+ };
26478
+ })();
26491
26479
  /**
26492
26480
  * work week view
26493
26481
  */
26494
- var WorkWeek = /** @__PURE__ @class */ (function (_super) {
26482
+ var WorkWeek = /** @class */ (function (_super) {
26495
26483
  __extends$l(WorkWeek, _super);
26496
26484
  /**
26497
26485
  * Constructor for work week view
@@ -26520,23 +26508,23 @@ var WorkWeek = /** @__PURE__ @class */ (function (_super) {
26520
26508
  return WorkWeek;
26521
26509
  }(VerticalView));
26522
26510
 
26523
- var __extends$m = (undefined && undefined.__extends) || (function () {
26524
- var extendStatics = function (d, b) {
26525
- extendStatics = Object.setPrototypeOf ||
26526
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26527
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
26528
- return extendStatics(d, b);
26529
- };
26530
- return function (d, b) {
26531
- extendStatics(d, b);
26532
- function __() { this.constructor = d; }
26533
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
26534
- };
26535
- })();
26511
+ var __extends$m = (undefined && undefined.__extends) || (function () {
26512
+ var extendStatics = function (d, b) {
26513
+ extendStatics = Object.setPrototypeOf ||
26514
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26515
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
26516
+ return extendStatics(d, b);
26517
+ };
26518
+ return function (d, b) {
26519
+ extendStatics(d, b);
26520
+ function __() { this.constructor = d; }
26521
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
26522
+ };
26523
+ })();
26536
26524
  /**
26537
26525
  * month view
26538
26526
  */
26539
- var Month = /** @__PURE__ @class */ (function (_super) {
26527
+ var Month = /** @class */ (function (_super) {
26540
26528
  __extends$m(Month, _super);
26541
26529
  function Month(parent) {
26542
26530
  var _this = _super.call(this, parent) || this;
@@ -27252,23 +27240,23 @@ var Month = /** @__PURE__ @class */ (function (_super) {
27252
27240
  return Month;
27253
27241
  }(ViewBase));
27254
27242
 
27255
- var __extends$n = (undefined && undefined.__extends) || (function () {
27256
- var extendStatics = function (d, b) {
27257
- extendStatics = Object.setPrototypeOf ||
27258
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
27259
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
27260
- return extendStatics(d, b);
27261
- };
27262
- return function (d, b) {
27263
- extendStatics(d, b);
27264
- function __() { this.constructor = d; }
27265
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
27266
- };
27267
- })();
27243
+ var __extends$n = (undefined && undefined.__extends) || (function () {
27244
+ var extendStatics = function (d, b) {
27245
+ extendStatics = Object.setPrototypeOf ||
27246
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
27247
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
27248
+ return extendStatics(d, b);
27249
+ };
27250
+ return function (d, b) {
27251
+ extendStatics(d, b);
27252
+ function __() { this.constructor = d; }
27253
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
27254
+ };
27255
+ })();
27268
27256
  /**
27269
27257
  * year view
27270
27258
  */
27271
- var Year = /** @__PURE__ @class */ (function (_super) {
27259
+ var Year = /** @class */ (function (_super) {
27272
27260
  __extends$n(Year, _super);
27273
27261
  function Year(parent) {
27274
27262
  var _this = _super.call(this, parent) || this;
@@ -27701,20 +27689,20 @@ var Year = /** @__PURE__ @class */ (function (_super) {
27701
27689
  return Year;
27702
27690
  }(ViewBase));
27703
27691
 
27704
- var __extends$o = (undefined && undefined.__extends) || (function () {
27705
- var extendStatics = function (d, b) {
27706
- extendStatics = Object.setPrototypeOf ||
27707
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
27708
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
27709
- return extendStatics(d, b);
27710
- };
27711
- return function (d, b) {
27712
- extendStatics(d, b);
27713
- function __() { this.constructor = d; }
27714
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
27715
- };
27716
- })();
27717
- var AgendaBase = /** @__PURE__ @class */ (function (_super) {
27692
+ var __extends$o = (undefined && undefined.__extends) || (function () {
27693
+ var extendStatics = function (d, b) {
27694
+ extendStatics = Object.setPrototypeOf ||
27695
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
27696
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
27697
+ return extendStatics(d, b);
27698
+ };
27699
+ return function (d, b) {
27700
+ extendStatics(d, b);
27701
+ function __() { this.constructor = d; }
27702
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
27703
+ };
27704
+ })();
27705
+ var AgendaBase = /** @class */ (function (_super) {
27718
27706
  __extends$o(AgendaBase, _super);
27719
27707
  function AgendaBase(parent) {
27720
27708
  return _super.call(this, parent) || this;
@@ -28129,23 +28117,23 @@ var AgendaBase = /** @__PURE__ @class */ (function (_super) {
28129
28117
  return AgendaBase;
28130
28118
  }(ViewBase));
28131
28119
 
28132
- var __extends$p = (undefined && undefined.__extends) || (function () {
28133
- var extendStatics = function (d, b) {
28134
- extendStatics = Object.setPrototypeOf ||
28135
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
28136
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
28137
- return extendStatics(d, b);
28138
- };
28139
- return function (d, b) {
28140
- extendStatics(d, b);
28141
- function __() { this.constructor = d; }
28142
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
28143
- };
28144
- })();
28120
+ var __extends$p = (undefined && undefined.__extends) || (function () {
28121
+ var extendStatics = function (d, b) {
28122
+ extendStatics = Object.setPrototypeOf ||
28123
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
28124
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
28125
+ return extendStatics(d, b);
28126
+ };
28127
+ return function (d, b) {
28128
+ extendStatics(d, b);
28129
+ function __() { this.constructor = d; }
28130
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
28131
+ };
28132
+ })();
28145
28133
  /**
28146
28134
  * agenda view
28147
28135
  */
28148
- var Agenda = /** @__PURE__ @class */ (function (_super) {
28136
+ var Agenda = /** @class */ (function (_super) {
28149
28137
  __extends$p(Agenda, _super);
28150
28138
  function Agenda(parent) {
28151
28139
  var _this = _super.call(this, parent) || this;
@@ -28642,23 +28630,23 @@ var Agenda = /** @__PURE__ @class */ (function (_super) {
28642
28630
  return Agenda;
28643
28631
  }(AgendaBase));
28644
28632
 
28645
- var __extends$q = (undefined && undefined.__extends) || (function () {
28646
- var extendStatics = function (d, b) {
28647
- extendStatics = Object.setPrototypeOf ||
28648
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
28649
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
28650
- return extendStatics(d, b);
28651
- };
28652
- return function (d, b) {
28653
- extendStatics(d, b);
28654
- function __() { this.constructor = d; }
28655
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
28656
- };
28657
- })();
28633
+ var __extends$q = (undefined && undefined.__extends) || (function () {
28634
+ var extendStatics = function (d, b) {
28635
+ extendStatics = Object.setPrototypeOf ||
28636
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
28637
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
28638
+ return extendStatics(d, b);
28639
+ };
28640
+ return function (d, b) {
28641
+ extendStatics(d, b);
28642
+ function __() { this.constructor = d; }
28643
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
28644
+ };
28645
+ })();
28658
28646
  /**
28659
28647
  * month agenda view
28660
28648
  */
28661
- var MonthAgenda = /** @__PURE__ @class */ (function (_super) {
28649
+ var MonthAgenda = /** @class */ (function (_super) {
28662
28650
  __extends$q(MonthAgenda, _super);
28663
28651
  function MonthAgenda(parent) {
28664
28652
  var _this = _super.call(this, parent) || this;
@@ -28822,7 +28810,7 @@ var MonthAgenda = /** @__PURE__ @class */ (function (_super) {
28822
28810
  /**
28823
28811
  * timeline header rows
28824
28812
  */
28825
- var TimelineHeaderRow = /** @__PURE__ @class */ (function () {
28813
+ var TimelineHeaderRow = /** @class */ (function () {
28826
28814
  function TimelineHeaderRow(parent, renderDates) {
28827
28815
  this.parent = parent;
28828
28816
  this.renderDates = renderDates;
@@ -28945,23 +28933,23 @@ var TimelineHeaderRow = /** @__PURE__ @class */ (function () {
28945
28933
  return TimelineHeaderRow;
28946
28934
  }());
28947
28935
 
28948
- var __extends$r = (undefined && undefined.__extends) || (function () {
28949
- var extendStatics = function (d, b) {
28950
- extendStatics = Object.setPrototypeOf ||
28951
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
28952
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
28953
- return extendStatics(d, b);
28954
- };
28955
- return function (d, b) {
28956
- extendStatics(d, b);
28957
- function __() { this.constructor = d; }
28958
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
28959
- };
28960
- })();
28936
+ var __extends$r = (undefined && undefined.__extends) || (function () {
28937
+ var extendStatics = function (d, b) {
28938
+ extendStatics = Object.setPrototypeOf ||
28939
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
28940
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
28941
+ return extendStatics(d, b);
28942
+ };
28943
+ return function (d, b) {
28944
+ extendStatics(d, b);
28945
+ function __() { this.constructor = d; }
28946
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
28947
+ };
28948
+ })();
28961
28949
  /**
28962
28950
  * timeline views
28963
28951
  */
28964
- var TimelineViews = /** @__PURE__ @class */ (function (_super) {
28952
+ var TimelineViews = /** @class */ (function (_super) {
28965
28953
  __extends$r(TimelineViews, _super);
28966
28954
  function TimelineViews(parent) {
28967
28955
  var _this = _super.call(this, parent) || this;
@@ -29245,23 +29233,23 @@ var TimelineViews = /** @__PURE__ @class */ (function (_super) {
29245
29233
  return TimelineViews;
29246
29234
  }(VerticalView));
29247
29235
 
29248
- var __extends$s = (undefined && undefined.__extends) || (function () {
29249
- var extendStatics = function (d, b) {
29250
- extendStatics = Object.setPrototypeOf ||
29251
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
29252
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
29253
- return extendStatics(d, b);
29254
- };
29255
- return function (d, b) {
29256
- extendStatics(d, b);
29257
- function __() { this.constructor = d; }
29258
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
29259
- };
29260
- })();
29236
+ var __extends$s = (undefined && undefined.__extends) || (function () {
29237
+ var extendStatics = function (d, b) {
29238
+ extendStatics = Object.setPrototypeOf ||
29239
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
29240
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
29241
+ return extendStatics(d, b);
29242
+ };
29243
+ return function (d, b) {
29244
+ extendStatics(d, b);
29245
+ function __() { this.constructor = d; }
29246
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
29247
+ };
29248
+ })();
29261
29249
  /**
29262
29250
  * timeline month view
29263
29251
  */
29264
- var TimelineMonth = /** @__PURE__ @class */ (function (_super) {
29252
+ var TimelineMonth = /** @class */ (function (_super) {
29265
29253
  __extends$s(TimelineMonth, _super);
29266
29254
  function TimelineMonth(parent) {
29267
29255
  var _this = _super.call(this, parent) || this;
@@ -29419,23 +29407,23 @@ var TimelineMonth = /** @__PURE__ @class */ (function (_super) {
29419
29407
  return TimelineMonth;
29420
29408
  }(Month));
29421
29409
 
29422
- var __extends$t = (undefined && undefined.__extends) || (function () {
29423
- var extendStatics = function (d, b) {
29424
- extendStatics = Object.setPrototypeOf ||
29425
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
29426
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
29427
- return extendStatics(d, b);
29428
- };
29429
- return function (d, b) {
29430
- extendStatics(d, b);
29431
- function __() { this.constructor = d; }
29432
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
29433
- };
29434
- })();
29410
+ var __extends$t = (undefined && undefined.__extends) || (function () {
29411
+ var extendStatics = function (d, b) {
29412
+ extendStatics = Object.setPrototypeOf ||
29413
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
29414
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
29415
+ return extendStatics(d, b);
29416
+ };
29417
+ return function (d, b) {
29418
+ extendStatics(d, b);
29419
+ function __() { this.constructor = d; }
29420
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
29421
+ };
29422
+ })();
29435
29423
  /**
29436
29424
  * timeline year view
29437
29425
  */
29438
- var TimelineYear = /** @__PURE__ @class */ (function (_super) {
29426
+ var TimelineYear = /** @class */ (function (_super) {
29439
29427
  __extends$t(TimelineYear, _super);
29440
29428
  function TimelineYear(parent) {
29441
29429
  var _this = _super.call(this, parent) || this;
@@ -29896,7 +29884,7 @@ var TimelineYear = /** @__PURE__ @class */ (function (_super) {
29896
29884
  /**
29897
29885
  * ICalendar Export Module
29898
29886
  */
29899
- var ICalendarExport = /** @__PURE__ @class */ (function () {
29887
+ var ICalendarExport = /** @class */ (function () {
29900
29888
  function ICalendarExport(parent) {
29901
29889
  this.parent = parent;
29902
29890
  }
@@ -30045,7 +30033,7 @@ var ICalendarExport = /** @__PURE__ @class */ (function () {
30045
30033
  /**
30046
30034
  * ICalendar Import Module
30047
30035
  */
30048
- var ICalendarImport = /** @__PURE__ @class */ (function () {
30036
+ var ICalendarImport = /** @class */ (function () {
30049
30037
  function ICalendarImport(parent) {
30050
30038
  this.allDay = false;
30051
30039
  this.parent = parent;
@@ -30310,7 +30298,7 @@ var ICalendarImport = /** @__PURE__ @class */ (function () {
30310
30298
  /**
30311
30299
  * Excel Export Module
30312
30300
  */
30313
- var ExcelExport = /** @__PURE__ @class */ (function () {
30301
+ var ExcelExport = /** @class */ (function () {
30314
30302
  function ExcelExport(parent) {
30315
30303
  this.parent = parent;
30316
30304
  }
@@ -30389,7 +30377,7 @@ var ExcelExport = /** @__PURE__ @class */ (function () {
30389
30377
  /**
30390
30378
  * Print Module
30391
30379
  */
30392
- var Print = /** @__PURE__ @class */ (function () {
30380
+ var Print = /** @class */ (function () {
30393
30381
  function Print(parent) {
30394
30382
  this.parent = parent;
30395
30383
  }