@syncfusion/ej2-schedule 30.2.4-744881 → 30.2.7

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 (310) hide show
  1. package/.eslintrc.json +262 -243
  2. package/.gitleaksignore +4 -4
  3. package/README.md +83 -83
  4. package/aceconfig.js +17 -0
  5. package/dist/ej2-schedule.min.js +10 -0
  6. package/dist/ej2-schedule.umd.min.js +10 -1
  7. package/dist/ej2-schedule.umd.min.js.map +1 -1
  8. package/dist/es6/ej2-schedule.es2015.js +79 -75
  9. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  10. package/dist/es6/ej2-schedule.es5.js +544 -540
  11. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  12. package/dist/global/ej2-schedule.min.js +11 -0
  13. package/dist/global/ej2-schedule.min.js.map +1 -0
  14. package/dist/global/index.d.ts +14 -0
  15. package/helpers/e2e/index.js +3 -3
  16. package/helpers/e2e/recurrence-editor.js +13 -13
  17. package/helpers/e2e/schedule.js +13 -13
  18. package/license +9 -9
  19. package/package.json +42 -42
  20. package/src/recurrence-editor/recurrence-editor-model.d.ts +75 -75
  21. package/src/recurrence-editor/recurrence-editor.js +19 -19
  22. package/src/schedule/actions/drag.js +13 -13
  23. package/src/schedule/actions/keyboard.js +11 -11
  24. package/src/schedule/actions/resize.js +14 -13
  25. package/src/schedule/actions/virtual-scroll.js +3 -0
  26. package/src/schedule/base/interface.d.ts +2 -2
  27. package/src/schedule/base/schedule-model.d.ts +864 -864
  28. package/src/schedule/base/schedule.js +19 -19
  29. package/src/schedule/event-renderer/agenda-base.js +13 -13
  30. package/src/schedule/event-renderer/month.js +13 -13
  31. package/src/schedule/event-renderer/timeline-view.js +13 -13
  32. package/src/schedule/event-renderer/vertical-view.js +13 -13
  33. package/src/schedule/event-renderer/year.js +13 -13
  34. package/src/schedule/models/event-settings-model.d.ts +156 -156
  35. package/src/schedule/models/event-settings.js +19 -19
  36. package/src/schedule/models/field-options-model.d.ts +22 -22
  37. package/src/schedule/models/field-options.js +19 -19
  38. package/src/schedule/models/fields-model.d.ts +92 -92
  39. package/src/schedule/models/fields.js +19 -19
  40. package/src/schedule/models/group-model.d.ts +48 -48
  41. package/src/schedule/models/group.js +19 -19
  42. package/src/schedule/models/header-rows-model.d.ts +22 -22
  43. package/src/schedule/models/header-rows.js +19 -19
  44. package/src/schedule/models/quick-info-templates-model.d.ts +37 -37
  45. package/src/schedule/models/quick-info-templates.js +19 -19
  46. package/src/schedule/models/resources-model.d.ts +85 -85
  47. package/src/schedule/models/resources.js +19 -19
  48. package/src/schedule/models/time-scale-model.d.ts +40 -40
  49. package/src/schedule/models/time-scale.js +19 -19
  50. package/src/schedule/models/toolbar-model.d.ts +187 -187
  51. package/src/schedule/models/toolbar.js +19 -19
  52. package/src/schedule/models/views-model.d.ts +361 -361
  53. package/src/schedule/models/views.js +19 -19
  54. package/src/schedule/models/work-hours-model.d.ts +16 -16
  55. package/src/schedule/models/work-hours.js +19 -19
  56. package/src/schedule/renderer/agenda.js +13 -13
  57. package/src/schedule/renderer/day.js +13 -13
  58. package/src/schedule/renderer/header-renderer.js +11 -11
  59. package/src/schedule/renderer/month-agenda.js +13 -13
  60. package/src/schedule/renderer/month.js +13 -13
  61. package/src/schedule/renderer/timeline-month.js +13 -13
  62. package/src/schedule/renderer/timeline-view.js +13 -13
  63. package/src/schedule/renderer/timeline-year.js +13 -13
  64. package/src/schedule/renderer/vertical-view.js +13 -13
  65. package/src/schedule/renderer/week.js +13 -13
  66. package/src/schedule/renderer/work-week.js +13 -13
  67. package/src/schedule/renderer/year.js +13 -13
  68. package/styles/bds-lite.css +4446 -0
  69. package/styles/bds-lite.scss +18 -0
  70. package/styles/bds.css +5198 -0
  71. package/styles/bds.scss +20 -0
  72. package/styles/bootstrap-dark-lite.css +4228 -0
  73. package/styles/bootstrap-dark-lite.scss +18 -0
  74. package/styles/bootstrap-dark.css +4980 -0
  75. package/styles/bootstrap-dark.scss +20 -0
  76. package/styles/bootstrap-lite.css +4223 -0
  77. package/styles/bootstrap-lite.scss +18 -0
  78. package/styles/bootstrap.css +4975 -0
  79. package/styles/bootstrap.scss +20 -0
  80. package/styles/bootstrap4-lite.css +4270 -0
  81. package/styles/bootstrap4-lite.scss +18 -0
  82. package/styles/bootstrap4.css +5022 -0
  83. package/styles/bootstrap4.scss +20 -0
  84. package/styles/bootstrap5-dark-lite.css +4273 -0
  85. package/styles/bootstrap5-dark-lite.scss +18 -0
  86. package/styles/bootstrap5-dark.css +5025 -0
  87. package/styles/bootstrap5-dark.scss +20 -0
  88. package/styles/bootstrap5-lite.css +4273 -0
  89. package/styles/bootstrap5-lite.scss +18 -0
  90. package/styles/bootstrap5.3-lite.css +4319 -0
  91. package/styles/bootstrap5.3-lite.scss +18 -0
  92. package/styles/bootstrap5.3.css +5071 -0
  93. package/styles/bootstrap5.3.scss +20 -0
  94. package/styles/bootstrap5.css +5025 -0
  95. package/styles/bootstrap5.scss +20 -0
  96. package/styles/fabric-dark-lite.css +4198 -0
  97. package/styles/fabric-dark-lite.scss +18 -0
  98. package/styles/fabric-dark.css +4950 -0
  99. package/styles/fabric-dark.scss +20 -0
  100. package/styles/fabric-lite.css +4195 -0
  101. package/styles/fabric-lite.scss +18 -0
  102. package/styles/fabric.css +4947 -0
  103. package/styles/fabric.scss +20 -0
  104. package/styles/fluent-dark-lite.css +4261 -0
  105. package/styles/fluent-dark-lite.scss +18 -0
  106. package/styles/fluent-dark.css +5013 -0
  107. package/styles/fluent-dark.scss +20 -0
  108. package/styles/fluent-lite.css +4261 -0
  109. package/styles/fluent-lite.scss +18 -0
  110. package/styles/fluent.css +5013 -0
  111. package/styles/fluent.scss +20 -0
  112. package/styles/fluent2-lite.css +4505 -0
  113. package/styles/fluent2-lite.scss +18 -0
  114. package/styles/fluent2.css +5261 -0
  115. package/styles/fluent2.scss +20 -0
  116. package/styles/highcontrast-light-lite.css +4287 -0
  117. package/styles/highcontrast-light-lite.scss +18 -0
  118. package/styles/highcontrast-light.css +5039 -0
  119. package/styles/highcontrast-light.scss +20 -0
  120. package/styles/highcontrast-lite.css +4296 -0
  121. package/styles/highcontrast-lite.scss +18 -0
  122. package/styles/highcontrast.css +5048 -0
  123. package/styles/highcontrast.scss +20 -0
  124. package/styles/material-dark-lite.css +4275 -0
  125. package/styles/material-dark-lite.scss +18 -0
  126. package/styles/material-dark.css +5027 -0
  127. package/styles/material-dark.scss +20 -0
  128. package/styles/material-lite.css +4310 -0
  129. package/styles/material-lite.scss +18 -0
  130. package/styles/material.css +5062 -0
  131. package/styles/material.scss +20 -0
  132. package/styles/material3-dark-lite.css +4292 -0
  133. package/styles/material3-dark-lite.scss +18 -0
  134. package/styles/material3-dark.css +5045 -0
  135. package/styles/material3-dark.scss +21 -1
  136. package/styles/material3-lite.css +4294 -0
  137. package/styles/material3-lite.scss +18 -0
  138. package/styles/material3.css +5045 -0
  139. package/styles/material3.scss +21 -1
  140. package/styles/recurrence-editor/_all.scss +2 -0
  141. package/styles/recurrence-editor/_bds-definition.scss +14 -0
  142. package/styles/recurrence-editor/_bigger.scss +133 -0
  143. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +14 -0
  144. package/styles/recurrence-editor/_bootstrap-definition.scss +14 -0
  145. package/styles/recurrence-editor/_bootstrap4-definition.scss +14 -0
  146. package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +1 -0
  147. package/styles/recurrence-editor/_bootstrap5-definition.scss +14 -0
  148. package/styles/recurrence-editor/_bootstrap5.3-definition.scss +14 -0
  149. package/styles/recurrence-editor/_fabric-dark-definition.scss +14 -0
  150. package/styles/recurrence-editor/_fabric-definition.scss +14 -0
  151. package/styles/recurrence-editor/_fluent-dark-definition.scss +1 -0
  152. package/styles/recurrence-editor/_fluent-definition.scss +14 -0
  153. package/styles/recurrence-editor/_fluent2-definition.scss +14 -0
  154. package/styles/recurrence-editor/_fusionnew-definition.scss +14 -0
  155. package/styles/recurrence-editor/_highcontrast-definition.scss +14 -0
  156. package/styles/recurrence-editor/_highcontrast-light-definition.scss +14 -0
  157. package/styles/recurrence-editor/_layout.scss +420 -0
  158. package/styles/recurrence-editor/_material-dark-definition.scss +14 -0
  159. package/styles/recurrence-editor/_material-definition.scss +14 -0
  160. package/styles/recurrence-editor/_material3-dark-definition.scss +1 -0
  161. package/styles/recurrence-editor/_material3-definition.scss +14 -0
  162. package/styles/recurrence-editor/_tailwind-dark-definition.scss +1 -0
  163. package/styles/recurrence-editor/_tailwind-definition.scss +14 -0
  164. package/styles/recurrence-editor/_tailwind3-definition.scss +14 -0
  165. package/styles/recurrence-editor/_theme.scss +1 -0
  166. package/styles/recurrence-editor/bds.css +537 -0
  167. package/styles/recurrence-editor/bds.scss +9 -0
  168. package/styles/recurrence-editor/bootstrap-dark.css +462 -0
  169. package/styles/recurrence-editor/bootstrap-dark.scss +9 -0
  170. package/styles/recurrence-editor/bootstrap.css +462 -0
  171. package/styles/recurrence-editor/bootstrap.scss +9 -0
  172. package/styles/recurrence-editor/bootstrap4.css +490 -0
  173. package/styles/recurrence-editor/bootstrap4.scss +9 -0
  174. package/styles/recurrence-editor/bootstrap5-dark.css +500 -0
  175. package/styles/recurrence-editor/bootstrap5-dark.scss +9 -0
  176. package/styles/recurrence-editor/bootstrap5.3.css +504 -0
  177. package/styles/recurrence-editor/bootstrap5.3.scss +9 -0
  178. package/styles/recurrence-editor/bootstrap5.css +500 -0
  179. package/styles/recurrence-editor/bootstrap5.scss +9 -0
  180. package/styles/recurrence-editor/fabric-dark.css +438 -0
  181. package/styles/recurrence-editor/fabric-dark.scss +9 -0
  182. package/styles/recurrence-editor/fabric.css +438 -0
  183. package/styles/recurrence-editor/fabric.scss +9 -0
  184. package/styles/recurrence-editor/fluent-dark.css +493 -0
  185. package/styles/recurrence-editor/fluent-dark.scss +9 -0
  186. package/styles/recurrence-editor/fluent.css +493 -0
  187. package/styles/recurrence-editor/fluent.scss +9 -0
  188. package/styles/recurrence-editor/fluent2.css +483 -0
  189. package/styles/recurrence-editor/fluent2.scss +9 -0
  190. package/styles/recurrence-editor/highcontrast-light.css +447 -0
  191. package/styles/recurrence-editor/highcontrast-light.scss +9 -0
  192. package/styles/recurrence-editor/highcontrast.css +447 -0
  193. package/styles/recurrence-editor/highcontrast.scss +9 -0
  194. package/styles/recurrence-editor/material-dark.css +487 -0
  195. package/styles/recurrence-editor/material-dark.scss +9 -0
  196. package/styles/recurrence-editor/material.css +491 -0
  197. package/styles/recurrence-editor/material.scss +9 -0
  198. package/styles/recurrence-editor/material3-dark.css +499 -0
  199. package/styles/recurrence-editor/material3-dark.scss +10 -0
  200. package/styles/recurrence-editor/material3.css +501 -0
  201. package/styles/recurrence-editor/material3.scss +10 -0
  202. package/styles/recurrence-editor/tailwind-dark.css +474 -0
  203. package/styles/recurrence-editor/tailwind-dark.scss +9 -0
  204. package/styles/recurrence-editor/tailwind.css +474 -0
  205. package/styles/recurrence-editor/tailwind.scss +9 -0
  206. package/styles/recurrence-editor/tailwind3.css +504 -0
  207. package/styles/recurrence-editor/tailwind3.scss +9 -0
  208. package/styles/schedule/_all.scss +2 -0
  209. package/styles/schedule/_bds-definition.scss +274 -0
  210. package/styles/schedule/_bigger.scss +801 -0
  211. package/styles/schedule/_bootstrap-dark-definition.scss +274 -0
  212. package/styles/schedule/_bootstrap-definition.scss +274 -0
  213. package/styles/schedule/_bootstrap4-definition.scss +277 -0
  214. package/styles/schedule/_bootstrap5-dark-definition.scss +1 -0
  215. package/styles/schedule/_bootstrap5-definition.scss +278 -0
  216. package/styles/schedule/_bootstrap5.3-definition.scss +278 -0
  217. package/styles/schedule/_fabric-dark-definition.scss +273 -0
  218. package/styles/schedule/_fabric-definition.scss +274 -0
  219. package/styles/schedule/_fluent-dark-definition.scss +1 -0
  220. package/styles/schedule/_fluent-definition.scss +278 -0
  221. package/styles/schedule/_fluent2-definition.scss +275 -0
  222. package/styles/schedule/_fusionnew-definition.scss +275 -0
  223. package/styles/schedule/_highcontrast-definition.scss +275 -0
  224. package/styles/schedule/_highcontrast-light-definition.scss +275 -0
  225. package/styles/schedule/_layout.scss +3870 -0
  226. package/styles/schedule/_material-dark-definition.scss +272 -0
  227. package/styles/schedule/_material-definition.scss +272 -0
  228. package/styles/schedule/_material3-dark-definition.scss +1 -0
  229. package/styles/schedule/_material3-definition.scss +277 -0
  230. package/styles/schedule/_tailwind-dark-definition.scss +1 -0
  231. package/styles/schedule/_tailwind-definition.scss +273 -0
  232. package/styles/schedule/_tailwind3-definition.scss +278 -0
  233. package/styles/schedule/_theme.scss +585 -0
  234. package/styles/schedule/bds.css +4793 -0
  235. package/styles/schedule/bds.scss +17 -0
  236. package/styles/schedule/bootstrap-dark.css +4575 -0
  237. package/styles/schedule/bootstrap-dark.scss +17 -0
  238. package/styles/schedule/bootstrap.css +4570 -0
  239. package/styles/schedule/bootstrap.scss +17 -0
  240. package/styles/schedule/bootstrap4.css +4617 -0
  241. package/styles/schedule/bootstrap4.scss +17 -0
  242. package/styles/schedule/bootstrap5-dark.css +4620 -0
  243. package/styles/schedule/bootstrap5-dark.scss +16 -0
  244. package/styles/schedule/bootstrap5.3.css +4666 -0
  245. package/styles/schedule/bootstrap5.3.scss +17 -0
  246. package/styles/schedule/bootstrap5.css +4620 -0
  247. package/styles/schedule/bootstrap5.scss +17 -0
  248. package/styles/schedule/fabric-dark.css +4545 -0
  249. package/styles/schedule/fabric-dark.scss +17 -0
  250. package/styles/schedule/fabric.css +4542 -0
  251. package/styles/schedule/fabric.scss +17 -0
  252. package/styles/schedule/fluent-dark.css +4608 -0
  253. package/styles/schedule/fluent-dark.scss +16 -0
  254. package/styles/schedule/fluent.css +4608 -0
  255. package/styles/schedule/fluent.scss +17 -0
  256. package/styles/schedule/fluent2.css +4853 -0
  257. package/styles/schedule/fluent2.scss +17 -0
  258. package/styles/schedule/highcontrast-light.css +4634 -0
  259. package/styles/schedule/highcontrast-light.scss +17 -0
  260. package/styles/schedule/highcontrast.css +4643 -0
  261. package/styles/schedule/highcontrast.scss +17 -0
  262. package/styles/schedule/icons/_bds.scss +220 -0
  263. package/styles/schedule/icons/_bootstrap-dark.scss +223 -0
  264. package/styles/schedule/icons/_bootstrap.scss +223 -0
  265. package/styles/schedule/icons/_bootstrap4.scss +217 -0
  266. package/styles/schedule/icons/_bootstrap5-dark.scss +1 -0
  267. package/styles/schedule/icons/_bootstrap5.3.scss +220 -0
  268. package/styles/schedule/icons/_bootstrap5.scss +220 -0
  269. package/styles/schedule/icons/_fabric-dark.scss +223 -0
  270. package/styles/schedule/icons/_fabric.scss +223 -0
  271. package/styles/schedule/icons/_fluent-dark.scss +1 -0
  272. package/styles/schedule/icons/_fluent.scss +220 -0
  273. package/styles/schedule/icons/_fluent2.scss +220 -0
  274. package/styles/schedule/icons/_fusionnew.scss +220 -0
  275. package/styles/schedule/icons/_highcontrast-light.scss +223 -0
  276. package/styles/schedule/icons/_highcontrast.scss +223 -0
  277. package/styles/schedule/icons/_material-dark.scss +223 -0
  278. package/styles/schedule/icons/_material.scss +223 -0
  279. package/styles/schedule/icons/_material3-dark.scss +1 -0
  280. package/styles/schedule/icons/_material3.scss +220 -0
  281. package/styles/schedule/icons/_tailwind-dark.scss +1 -0
  282. package/styles/schedule/icons/_tailwind.scss +220 -0
  283. package/styles/schedule/icons/_tailwind3.scss +220 -0
  284. package/styles/schedule/material-dark.css +4622 -0
  285. package/styles/schedule/material-dark.scss +17 -0
  286. package/styles/schedule/material.css +4657 -0
  287. package/styles/schedule/material.scss +17 -0
  288. package/styles/schedule/material3-dark.css +4640 -0
  289. package/styles/schedule/material3-dark.scss +17 -0
  290. package/styles/schedule/material3.css +4642 -0
  291. package/styles/schedule/material3.scss +18 -0
  292. package/styles/schedule/tailwind-dark.css +4585 -0
  293. package/styles/schedule/tailwind-dark.scss +16 -0
  294. package/styles/schedule/tailwind.css +4585 -0
  295. package/styles/schedule/tailwind.scss +17 -0
  296. package/styles/schedule/tailwind3.css +4632 -0
  297. package/styles/schedule/tailwind3.scss +17 -0
  298. package/styles/tailwind-dark-lite.css +4238 -0
  299. package/styles/tailwind-dark-lite.scss +18 -0
  300. package/styles/tailwind-dark.css +4990 -0
  301. package/styles/tailwind-dark.scss +20 -0
  302. package/styles/tailwind-lite.css +4238 -0
  303. package/styles/tailwind-lite.scss +18 -0
  304. package/styles/tailwind.css +4990 -0
  305. package/styles/tailwind.scss +20 -0
  306. package/styles/tailwind3-lite.css +4285 -0
  307. package/styles/tailwind3-lite.scss +18 -0
  308. package/styles/tailwind3.css +5037 -0
  309. package/styles/tailwind3.scss +20 -0
  310. package/tslint.json +111 -0
@@ -1043,21 +1043,21 @@ var ALLDAY_APPOINTMENT_AUTO = 'e-all-day-auto';
1043
1043
  /** @private */
1044
1044
  var CLIPBOARD_CLASS = 'e-clipboard';
1045
1045
 
1046
- var __assign = (undefined && undefined.__assign) || function () {
1047
- __assign = Object.assign || function(t) {
1048
- for (var s, i = 1, n = arguments.length; i < n; i++) {
1049
- s = arguments[i];
1050
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
1051
- t[p] = s[p];
1052
- }
1053
- return t;
1054
- };
1055
- return __assign.apply(this, arguments);
1056
- };
1046
+ var __assign = (undefined && undefined.__assign) || function () {
1047
+ __assign = Object.assign || function(t) {
1048
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
1049
+ s = arguments[i];
1050
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
1051
+ t[p] = s[p];
1052
+ }
1053
+ return t;
1054
+ };
1055
+ return __assign.apply(this, arguments);
1056
+ };
1057
1057
  /**
1058
1058
  * Header module
1059
1059
  */
1060
- var HeaderRenderer = /** @class */ (function () {
1060
+ var HeaderRenderer = /** @__PURE__ @class */ (function () {
1061
1061
  function HeaderRenderer(parent) {
1062
1062
  this.parent = parent;
1063
1063
  this.l10n = this.parent.localeObj;
@@ -1755,7 +1755,7 @@ var HeaderRenderer = /** @class */ (function () {
1755
1755
  /**
1756
1756
  * `Scroll` module
1757
1757
  */
1758
- var Scroll = /** @class */ (function () {
1758
+ var Scroll = /** @__PURE__ @class */ (function () {
1759
1759
  /**
1760
1760
  * Constructor for the scrolling.
1761
1761
  *
@@ -1848,7 +1848,7 @@ var Scroll = /** @class */ (function () {
1848
1848
  /**
1849
1849
  * `touch` module is used to handle touch interactions.
1850
1850
  */
1851
- var ScheduleTouch = /** @class */ (function () {
1851
+ var ScheduleTouch = /** @__PURE__ @class */ (function () {
1852
1852
  function ScheduleTouch(parent) {
1853
1853
  this.parent = parent;
1854
1854
  this.element = this.parent.element.querySelector('.' + TABLE_CONTAINER_CLASS);
@@ -2139,21 +2139,21 @@ var ScheduleTouch = /** @class */ (function () {
2139
2139
  return ScheduleTouch;
2140
2140
  }());
2141
2141
 
2142
- var __assign$1 = (undefined && undefined.__assign) || function () {
2143
- __assign$1 = Object.assign || function(t) {
2144
- for (var s, i = 1, n = arguments.length; i < n; i++) {
2145
- s = arguments[i];
2146
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
2147
- t[p] = s[p];
2148
- }
2149
- return t;
2150
- };
2151
- return __assign$1.apply(this, arguments);
2152
- };
2142
+ var __assign$1 = (undefined && undefined.__assign) || function () {
2143
+ __assign$1 = Object.assign || function(t) {
2144
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
2145
+ s = arguments[i];
2146
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
2147
+ t[p] = s[p];
2148
+ }
2149
+ return t;
2150
+ };
2151
+ return __assign$1.apply(this, arguments);
2152
+ };
2153
2153
  /**
2154
2154
  * Keyboard interaction
2155
2155
  */
2156
- var KeyboardInteraction = /** @class */ (function () {
2156
+ var KeyboardInteraction = /** @__PURE__ @class */ (function () {
2157
2157
  function KeyboardInteraction(parent) {
2158
2158
  this.selectedCells = [];
2159
2159
  this.isCutContentPasted = false;
@@ -3598,7 +3598,7 @@ var KeyboardInteraction = /** @class */ (function () {
3598
3598
  *
3599
3599
  * @private
3600
3600
  */
3601
- var Data = /** @class */ (function () {
3601
+ var Data = /** @__PURE__ @class */ (function () {
3602
3602
  /**
3603
3603
  * Constructor for data module
3604
3604
  *
@@ -3708,7 +3708,7 @@ var Data = /** @class */ (function () {
3708
3708
 
3709
3709
  /* eslint-disable @typescript-eslint/no-explicit-any */
3710
3710
  /** @private */
3711
- var Gregorian = /** @class */ (function () {
3711
+ var Gregorian = /** @__PURE__ @class */ (function () {
3712
3712
  function Gregorian() {
3713
3713
  }
3714
3714
  Gregorian.prototype.firstDateOfMonth = function (date) {
@@ -3793,7 +3793,7 @@ var Gregorian = /** @class */ (function () {
3793
3793
  return Gregorian;
3794
3794
  }());
3795
3795
  /** @private */
3796
- var Islamic = /** @class */ (function () {
3796
+ var Islamic = /** @__PURE__ @class */ (function () {
3797
3797
  function Islamic() {
3798
3798
  }
3799
3799
  Islamic.prototype.firstDateOfMonth = function (date) {
@@ -3935,7 +3935,7 @@ var Islamic = /** @class */ (function () {
3935
3935
  /**
3936
3936
  * Time zone
3937
3937
  */
3938
- var Timezone = /** @class */ (function () {
3938
+ var Timezone = /** @__PURE__ @class */ (function () {
3939
3939
  function Timezone() {
3940
3940
  this.timezoneData = [];
3941
3941
  this.timezoneData = this.getTimezoneData();
@@ -5875,7 +5875,7 @@ function roundDateValues(date) {
5875
5875
  /**
5876
5876
  * EventBase for appointment rendering
5877
5877
  */
5878
- var EventBase = /** @class */ (function () {
5878
+ var EventBase = /** @__PURE__ @class */ (function () {
5879
5879
  /**
5880
5880
  * Constructor for EventBase
5881
5881
  *
@@ -7385,23 +7385,23 @@ var EventBase = /** @class */ (function () {
7385
7385
  return EventBase;
7386
7386
  }());
7387
7387
 
7388
- var __extends = (undefined && undefined.__extends) || (function () {
7389
- var extendStatics = function (d, b) {
7390
- extendStatics = Object.setPrototypeOf ||
7391
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
7392
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
7393
- return extendStatics(d, b);
7394
- };
7395
- return function (d, b) {
7396
- extendStatics(d, b);
7397
- function __() { this.constructor = d; }
7398
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
7399
- };
7400
- })();
7388
+ var __extends = (undefined && undefined.__extends) || (function () {
7389
+ var extendStatics = function (d, b) {
7390
+ extendStatics = Object.setPrototypeOf ||
7391
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
7392
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
7393
+ return extendStatics(d, b);
7394
+ };
7395
+ return function (d, b) {
7396
+ extendStatics(d, b);
7397
+ function __() { this.constructor = d; }
7398
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
7399
+ };
7400
+ })();
7401
7401
  /**
7402
7402
  * Vertical view appointment rendering
7403
7403
  */
7404
- var VerticalEvent = /** @class */ (function (_super) {
7404
+ var VerticalEvent = /** @__PURE__ @class */ (function (_super) {
7405
7405
  __extends(VerticalEvent, _super);
7406
7406
  function VerticalEvent(parent) {
7407
7407
  var _this = _super.call(this, parent) || this;
@@ -8296,24 +8296,24 @@ var VerticalEvent = /** @class */ (function (_super) {
8296
8296
  return VerticalEvent;
8297
8297
  }(EventBase));
8298
8298
 
8299
- var __extends$1 = (undefined && undefined.__extends) || (function () {
8300
- var extendStatics = function (d, b) {
8301
- extendStatics = Object.setPrototypeOf ||
8302
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
8303
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
8304
- return extendStatics(d, b);
8305
- };
8306
- return function (d, b) {
8307
- extendStatics(d, b);
8308
- function __() { this.constructor = d; }
8309
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
8310
- };
8311
- })();
8299
+ var __extends$1 = (undefined && undefined.__extends) || (function () {
8300
+ var extendStatics = function (d, b) {
8301
+ extendStatics = Object.setPrototypeOf ||
8302
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
8303
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
8304
+ return extendStatics(d, b);
8305
+ };
8306
+ return function (d, b) {
8307
+ extendStatics(d, b);
8308
+ function __() { this.constructor = d; }
8309
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
8310
+ };
8311
+ })();
8312
8312
  var EVENT_GAP = 0;
8313
8313
  /**
8314
8314
  * Month view events render
8315
8315
  */
8316
- var MonthEvent = /** @class */ (function (_super) {
8316
+ var MonthEvent = /** @__PURE__ @class */ (function (_super) {
8317
8317
  __extends$1(MonthEvent, _super);
8318
8318
  function MonthEvent(parent) {
8319
8319
  var _this = _super.call(this, parent) || this;
@@ -9044,26 +9044,26 @@ var MonthEvent = /** @class */ (function (_super) {
9044
9044
  return MonthEvent;
9045
9045
  }(EventBase));
9046
9046
 
9047
- var __extends$2 = (undefined && undefined.__extends) || (function () {
9048
- var extendStatics = function (d, b) {
9049
- extendStatics = Object.setPrototypeOf ||
9050
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
9051
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
9052
- return extendStatics(d, b);
9053
- };
9054
- return function (d, b) {
9055
- extendStatics(d, b);
9056
- function __() { this.constructor = d; }
9057
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9058
- };
9059
- })();
9047
+ var __extends$2 = (undefined && undefined.__extends) || (function () {
9048
+ var extendStatics = function (d, b) {
9049
+ extendStatics = Object.setPrototypeOf ||
9050
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
9051
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
9052
+ return extendStatics(d, b);
9053
+ };
9054
+ return function (d, b) {
9055
+ extendStatics(d, b);
9056
+ function __() { this.constructor = d; }
9057
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9058
+ };
9059
+ })();
9060
9060
  var EVENT_GAP$1 = 2;
9061
9061
  var BLOCK_INDICATOR_WIDTH = 22;
9062
9062
  var BLOCK_INDICATOR_HEIGHT = 18;
9063
9063
  /**
9064
9064
  * Timeline view events render
9065
9065
  */
9066
- var TimelineEvent = /** @class */ (function (_super) {
9066
+ var TimelineEvent = /** @__PURE__ @class */ (function (_super) {
9067
9067
  __extends$2(TimelineEvent, _super);
9068
9068
  function TimelineEvent(parent, type) {
9069
9069
  var _this = _super.call(this, parent) || this;
@@ -9647,7 +9647,7 @@ var TimelineEvent = /** @class */ (function (_super) {
9647
9647
  /**
9648
9648
  * Inline Edit interactions
9649
9649
  */
9650
- var InlineEdit = /** @class */ (function () {
9650
+ var InlineEdit = /** @__PURE__ @class */ (function () {
9651
9651
  function InlineEdit(parent) {
9652
9652
  this.parent = parent;
9653
9653
  this.parent.on(inlineClick, this.inlineEdit, this);
@@ -9911,7 +9911,7 @@ var InlineEdit = /** @class */ (function () {
9911
9911
  /**
9912
9912
  * Appointment window field validation
9913
9913
  */
9914
- var FieldValidator = /** @class */ (function () {
9914
+ var FieldValidator = /** @__PURE__ @class */ (function () {
9915
9915
  function FieldValidator() {
9916
9916
  }
9917
9917
  FieldValidator.prototype.renderFormValidator = function (form, rules, element, locale) {
@@ -10015,7 +10015,7 @@ var EVENT_FIELD = 'e-field';
10015
10015
  /**
10016
10016
  * Quick Popups interactions
10017
10017
  */
10018
- var QuickPopups = /** @class */ (function () {
10018
+ var QuickPopups = /** @__PURE__ @class */ (function () {
10019
10019
  function QuickPopups(parent) {
10020
10020
  this.isMultipleEventSelect = false;
10021
10021
  this.isCrudAction = false;
@@ -11442,7 +11442,7 @@ var QuickPopups = /** @class */ (function () {
11442
11442
  /**
11443
11443
  * Tooltip for Schedule
11444
11444
  */
11445
- var EventTooltip = /** @class */ (function () {
11445
+ var EventTooltip = /** @__PURE__ @class */ (function () {
11446
11446
  function EventTooltip(parent) {
11447
11447
  this.parent = parent;
11448
11448
  this.tooltipObj = new Tooltip({
@@ -11623,25 +11623,25 @@ var EventTooltip = /** @class */ (function () {
11623
11623
  return EventTooltip;
11624
11624
  }());
11625
11625
 
11626
- var __extends$3 = (undefined && undefined.__extends) || (function () {
11627
- var extendStatics = function (d, b) {
11628
- extendStatics = Object.setPrototypeOf ||
11629
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
11630
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
11631
- return extendStatics(d, b);
11632
- };
11633
- return function (d, b) {
11634
- extendStatics(d, b);
11635
- function __() { this.constructor = d; }
11636
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
11637
- };
11638
- })();
11639
- var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
11640
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
11641
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
11642
- 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;
11643
- return c > 3 && r && Object.defineProperty(target, key, r), r;
11644
- };
11626
+ var __extends$3 = (undefined && undefined.__extends) || (function () {
11627
+ var extendStatics = function (d, b) {
11628
+ extendStatics = Object.setPrototypeOf ||
11629
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
11630
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
11631
+ return extendStatics(d, b);
11632
+ };
11633
+ return function (d, b) {
11634
+ extendStatics(d, b);
11635
+ function __() { this.constructor = d; }
11636
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
11637
+ };
11638
+ })();
11639
+ var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
11640
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
11641
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
11642
+ 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;
11643
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
11644
+ };
11645
11645
  var HEADER = 'e-editor';
11646
11646
  var INPUTWARAPPER = 'e-input-wrapper';
11647
11647
  var INPUTWARAPPERSIDE = 'e-input-wrapper-side';
@@ -11767,7 +11767,7 @@ var endOnDateClassList = [ENDONCOUNTWRAPPER];
11767
11767
  * </script>
11768
11768
  * ```
11769
11769
  */
11770
- var RecurrenceEditor = /** @class */ (function (_super) {
11770
+ var RecurrenceEditor = /** @__PURE__ @class */ (function (_super) {
11771
11771
  __extends$3(RecurrenceEditor, _super);
11772
11772
  /**
11773
11773
  * Constructor for creating the widget
@@ -12793,7 +12793,7 @@ var HIDE_STYLE_CLASS = 'e-hide';
12793
12793
  /**
12794
12794
  * Event editor window
12795
12795
  */
12796
- var EventWindow = /** @class */ (function () {
12796
+ var EventWindow = /** @__PURE__ @class */ (function () {
12797
12797
  function EventWindow(parent) {
12798
12798
  this.parent = parent;
12799
12799
  this.l10n = this.parent.localeObj;
@@ -14830,7 +14830,7 @@ var EventWindow = /** @class */ (function () {
14830
14830
  /**
14831
14831
  * Virtual Scroll
14832
14832
  */
14833
- var VirtualScroll = /** @class */ (function () {
14833
+ var VirtualScroll = /** @__PURE__ @class */ (function () {
14834
14834
  function VirtualScroll(parent) {
14835
14835
  this.translateY = 0;
14836
14836
  this.itemSize = 60;
@@ -15208,6 +15208,9 @@ var VirtualScroll = /** @class */ (function () {
15208
15208
  this.removeObsoleteRows(resWrapRows, currentGroupIndices);
15209
15209
  this.removeObsoleteRows(conWrapRows, currentGroupIndices);
15210
15210
  var resourceRows = this.parent.resourceBase.getContentRows(resCollection, true);
15211
+ if (this.parent.isReact) {
15212
+ this.parent.renderTemplates();
15213
+ }
15211
15214
  var contentRows = this.parent.activeView.getContentRows();
15212
15215
  var eventRows = this.parent.activeView.getEventRows(resCollection.length);
15213
15216
  for (var i = 0; i < newGroupIndices.length; i++) {
@@ -15382,7 +15385,7 @@ var VirtualScroll = /** @class */ (function () {
15382
15385
  /**
15383
15386
  * Schedule DOM rendering
15384
15387
  */
15385
- var Render = /** @class */ (function () {
15388
+ var Render = /** @__PURE__ @class */ (function () {
15386
15389
  function Render(parent) {
15387
15390
  this.parent = parent;
15388
15391
  }
@@ -15537,29 +15540,29 @@ var Render = /** @class */ (function () {
15537
15540
  return Render;
15538
15541
  }());
15539
15542
 
15540
- var __extends$4 = (undefined && undefined.__extends) || (function () {
15541
- var extendStatics = function (d, b) {
15542
- extendStatics = Object.setPrototypeOf ||
15543
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15544
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15545
- return extendStatics(d, b);
15546
- };
15547
- return function (d, b) {
15548
- extendStatics(d, b);
15549
- function __() { this.constructor = d; }
15550
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15551
- };
15552
- })();
15553
- var __decorate$1 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15554
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15555
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15556
- 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;
15557
- return c > 3 && r && Object.defineProperty(target, key, r), r;
15558
- };
15543
+ var __extends$4 = (undefined && undefined.__extends) || (function () {
15544
+ var extendStatics = function (d, b) {
15545
+ extendStatics = Object.setPrototypeOf ||
15546
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15547
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15548
+ return extendStatics(d, b);
15549
+ };
15550
+ return function (d, b) {
15551
+ extendStatics(d, b);
15552
+ function __() { this.constructor = d; }
15553
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15554
+ };
15555
+ })();
15556
+ var __decorate$1 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15557
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15558
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15559
+ 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;
15560
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
15561
+ };
15559
15562
  /**
15560
15563
  * A class that represents the configuration of working hours related options of scheduler.
15561
15564
  */
15562
- var WorkHours = /** @class */ (function (_super) {
15565
+ var WorkHours = /** @__PURE__ @class */ (function (_super) {
15563
15566
  __extends$4(WorkHours, _super);
15564
15567
  function WorkHours() {
15565
15568
  return _super !== null && _super.apply(this, arguments) || this;
@@ -15576,29 +15579,29 @@ var WorkHours = /** @class */ (function (_super) {
15576
15579
  return WorkHours;
15577
15580
  }(ChildProperty));
15578
15581
 
15579
- var __extends$5 = (undefined && undefined.__extends) || (function () {
15580
- var extendStatics = function (d, b) {
15581
- extendStatics = Object.setPrototypeOf ||
15582
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15583
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15584
- return extendStatics(d, b);
15585
- };
15586
- return function (d, b) {
15587
- extendStatics(d, b);
15588
- function __() { this.constructor = d; }
15589
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15590
- };
15591
- })();
15592
- var __decorate$2 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15593
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15594
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15595
- 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;
15596
- return c > 3 && r && Object.defineProperty(target, key, r), r;
15597
- };
15582
+ var __extends$5 = (undefined && undefined.__extends) || (function () {
15583
+ var extendStatics = function (d, b) {
15584
+ extendStatics = Object.setPrototypeOf ||
15585
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15586
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15587
+ return extendStatics(d, b);
15588
+ };
15589
+ return function (d, b) {
15590
+ extendStatics(d, b);
15591
+ function __() { this.constructor = d; }
15592
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15593
+ };
15594
+ })();
15595
+ var __decorate$2 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15596
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15597
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15598
+ 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;
15599
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
15600
+ };
15598
15601
  /**
15599
15602
  * A class that represents the configuration of options related to timescale on scheduler.
15600
15603
  */
15601
- var TimeScale = /** @class */ (function (_super) {
15604
+ var TimeScale = /** @__PURE__ @class */ (function (_super) {
15602
15605
  __extends$5(TimeScale, _super);
15603
15606
  function TimeScale() {
15604
15607
  return _super !== null && _super.apply(this, arguments) || this;
@@ -15621,29 +15624,29 @@ var TimeScale = /** @class */ (function (_super) {
15621
15624
  return TimeScale;
15622
15625
  }(ChildProperty));
15623
15626
 
15624
- var __extends$6 = (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$3 = (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
- };
15627
+ var __extends$6 = (undefined && undefined.__extends) || (function () {
15628
+ var extendStatics = function (d, b) {
15629
+ extendStatics = Object.setPrototypeOf ||
15630
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15631
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15632
+ return extendStatics(d, b);
15633
+ };
15634
+ return function (d, b) {
15635
+ extendStatics(d, b);
15636
+ function __() { this.constructor = d; }
15637
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15638
+ };
15639
+ })();
15640
+ var __decorate$3 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15641
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15642
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15643
+ 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;
15644
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
15645
+ };
15643
15646
  /**
15644
15647
  * A class that defines the template options available to customize the quick popup of scheduler.
15645
15648
  */
15646
- var QuickInfoTemplates = /** @class */ (function (_super) {
15649
+ var QuickInfoTemplates = /** @__PURE__ @class */ (function (_super) {
15647
15650
  __extends$6(QuickInfoTemplates, _super);
15648
15651
  function QuickInfoTemplates() {
15649
15652
  return _super !== null && _super.apply(this, arguments) || this;
@@ -15663,29 +15666,29 @@ var QuickInfoTemplates = /** @class */ (function (_super) {
15663
15666
  return QuickInfoTemplates;
15664
15667
  }(ChildProperty));
15665
15668
 
15666
- var __extends$7 = (undefined && undefined.__extends) || (function () {
15667
- var extendStatics = function (d, b) {
15668
- extendStatics = Object.setPrototypeOf ||
15669
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15670
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15671
- return extendStatics(d, b);
15672
- };
15673
- return function (d, b) {
15674
- extendStatics(d, b);
15675
- function __() { this.constructor = d; }
15676
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15677
- };
15678
- })();
15679
- var __decorate$4 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15680
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15681
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15682
- 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;
15683
- return c > 3 && r && Object.defineProperty(target, key, r), r;
15684
- };
15669
+ var __extends$7 = (undefined && undefined.__extends) || (function () {
15670
+ var extendStatics = function (d, b) {
15671
+ extendStatics = Object.setPrototypeOf ||
15672
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15673
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
15674
+ return extendStatics(d, b);
15675
+ };
15676
+ return function (d, b) {
15677
+ extendStatics(d, b);
15678
+ function __() { this.constructor = d; }
15679
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15680
+ };
15681
+ })();
15682
+ var __decorate$4 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
15683
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15684
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
15685
+ 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;
15686
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
15687
+ };
15685
15688
  /**
15686
15689
  * A class that represents the header rows related configurations on timeline views.
15687
15690
  */
15688
- var HeaderRows = /** @class */ (function (_super) {
15691
+ var HeaderRows = /** @__PURE__ @class */ (function (_super) {
15689
15692
  __extends$7(HeaderRows, _super);
15690
15693
  function HeaderRows() {
15691
15694
  return _super !== null && _super.apply(this, arguments) || this;
@@ -15703,7 +15706,7 @@ var HeaderRows = /** @class */ (function (_super) {
15703
15706
  /**
15704
15707
  * Schedule CRUD operations
15705
15708
  */
15706
- var Crud = /** @class */ (function () {
15709
+ var Crud = /** @__PURE__ @class */ (function () {
15707
15710
  function Crud(parent) {
15708
15711
  this.parent = parent;
15709
15712
  this.crudObj = { sourceEvent: null, targetEvent: null, isCrudAction: false };
@@ -16537,7 +16540,7 @@ var Crud = /** @class */ (function () {
16537
16540
  /**
16538
16541
  * Work cell interactions
16539
16542
  */
16540
- var WorkCellInteraction = /** @class */ (function () {
16543
+ var WorkCellInteraction = /** @__PURE__ @class */ (function () {
16541
16544
  function WorkCellInteraction(parent) {
16542
16545
  this.parent = parent;
16543
16546
  EventHandler.add(this.parent.element, 'mouseover', this.onHover, this);
@@ -16676,29 +16679,29 @@ var WorkCellInteraction = /** @class */ (function () {
16676
16679
  return WorkCellInteraction;
16677
16680
  }());
16678
16681
 
16679
- var __extends$8 = (undefined && undefined.__extends) || (function () {
16680
- var extendStatics = function (d, b) {
16681
- extendStatics = Object.setPrototypeOf ||
16682
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16683
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16684
- return extendStatics(d, b);
16685
- };
16686
- return function (d, b) {
16687
- extendStatics(d, b);
16688
- function __() { this.constructor = d; }
16689
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16690
- };
16691
- })();
16692
- var __decorate$5 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16693
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16694
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16695
- 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;
16696
- return c > 3 && r && Object.defineProperty(target, key, r), r;
16697
- };
16682
+ var __extends$8 = (undefined && undefined.__extends) || (function () {
16683
+ var extendStatics = function (d, b) {
16684
+ extendStatics = Object.setPrototypeOf ||
16685
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16686
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16687
+ return extendStatics(d, b);
16688
+ };
16689
+ return function (d, b) {
16690
+ extendStatics(d, b);
16691
+ function __() { this.constructor = d; }
16692
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16693
+ };
16694
+ })();
16695
+ var __decorate$5 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16696
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16697
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16698
+ 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;
16699
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
16700
+ };
16698
16701
  /**
16699
16702
  * Configuration that applies on each appointment field options of scheduler.
16700
16703
  */
16701
- var FieldOptions = /** @class */ (function (_super) {
16704
+ var FieldOptions = /** @__PURE__ @class */ (function (_super) {
16702
16705
  __extends$8(FieldOptions, _super);
16703
16706
  function FieldOptions() {
16704
16707
  return _super !== null && _super.apply(this, arguments) || this;
@@ -16718,25 +16721,25 @@ var FieldOptions = /** @class */ (function (_super) {
16718
16721
  return FieldOptions;
16719
16722
  }(ChildProperty));
16720
16723
 
16721
- var __extends$9 = (undefined && undefined.__extends) || (function () {
16722
- var extendStatics = function (d, b) {
16723
- extendStatics = Object.setPrototypeOf ||
16724
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16725
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16726
- return extendStatics(d, b);
16727
- };
16728
- return function (d, b) {
16729
- extendStatics(d, b);
16730
- function __() { this.constructor = d; }
16731
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16732
- };
16733
- })();
16734
- var __decorate$6 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16735
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16736
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16737
- 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;
16738
- return c > 3 && r && Object.defineProperty(target, key, r), r;
16739
- };
16724
+ var __extends$9 = (undefined && undefined.__extends) || (function () {
16725
+ var extendStatics = function (d, b) {
16726
+ extendStatics = Object.setPrototypeOf ||
16727
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16728
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16729
+ return extendStatics(d, b);
16730
+ };
16731
+ return function (d, b) {
16732
+ extendStatics(d, b);
16733
+ function __() { this.constructor = d; }
16734
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16735
+ };
16736
+ })();
16737
+ var __decorate$6 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16738
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16739
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16740
+ 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;
16741
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
16742
+ };
16740
16743
  /**
16741
16744
  * A class that holds the collection of event fields that requires to be mapped with the dataSource
16742
16745
  * fields along with its available configuration settings. Each field in it accepts both string and object
@@ -16744,7 +16747,7 @@ var __decorate$6 = (undefined && undefined.__decorate) || function (decorators,
16744
16747
  * name is mapped with it. If the `object` type is defined on each fields, then the validation related settings and mapping of
16745
16748
  * those fields with dataSource can be given altogether within it.
16746
16749
  */
16747
- var Field = /** @class */ (function (_super) {
16750
+ var Field = /** @__PURE__ @class */ (function (_super) {
16748
16751
  __extends$9(Field, _super);
16749
16752
  function Field() {
16750
16753
  return _super !== null && _super.apply(this, arguments) || this;
@@ -16797,29 +16800,29 @@ var Field = /** @class */ (function (_super) {
16797
16800
  return Field;
16798
16801
  }(ChildProperty));
16799
16802
 
16800
- var __extends$a = (undefined && undefined.__extends) || (function () {
16801
- var extendStatics = function (d, b) {
16802
- extendStatics = Object.setPrototypeOf ||
16803
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16804
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16805
- return extendStatics(d, b);
16806
- };
16807
- return function (d, b) {
16808
- extendStatics(d, b);
16809
- function __() { this.constructor = d; }
16810
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16811
- };
16812
- })();
16813
- var __decorate$7 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16814
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16815
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16816
- 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;
16817
- return c > 3 && r && Object.defineProperty(target, key, r), r;
16818
- };
16803
+ var __extends$a = (undefined && undefined.__extends) || (function () {
16804
+ var extendStatics = function (d, b) {
16805
+ extendStatics = Object.setPrototypeOf ||
16806
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16807
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16808
+ return extendStatics(d, b);
16809
+ };
16810
+ return function (d, b) {
16811
+ extendStatics(d, b);
16812
+ function __() { this.constructor = d; }
16813
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16814
+ };
16815
+ })();
16816
+ var __decorate$7 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16817
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16818
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16819
+ 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;
16820
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
16821
+ };
16819
16822
  /**
16820
16823
  * Holds the configuration of event related options and dataSource binding to Schedule.
16821
16824
  */
16822
- var EventSettings = /** @class */ (function (_super) {
16825
+ var EventSettings = /** @__PURE__ @class */ (function (_super) {
16823
16826
  __extends$a(EventSettings, _super);
16824
16827
  function EventSettings() {
16825
16828
  return _super !== null && _super.apply(this, arguments) || this;
@@ -16881,29 +16884,29 @@ var EventSettings = /** @class */ (function (_super) {
16881
16884
  return EventSettings;
16882
16885
  }(ChildProperty));
16883
16886
 
16884
- var __extends$b = (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$8 = (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
- };
16887
+ var __extends$b = (undefined && undefined.__extends) || (function () {
16888
+ var extendStatics = function (d, b) {
16889
+ extendStatics = Object.setPrototypeOf ||
16890
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16891
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16892
+ return extendStatics(d, b);
16893
+ };
16894
+ return function (d, b) {
16895
+ extendStatics(d, b);
16896
+ function __() { this.constructor = d; }
16897
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16898
+ };
16899
+ })();
16900
+ var __decorate$8 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16901
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16902
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16903
+ 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;
16904
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
16905
+ };
16903
16906
  /**
16904
16907
  * A class that holds the resource grouping related configurations on Schedule.
16905
16908
  */
16906
- var Group = /** @class */ (function (_super) {
16909
+ var Group = /** @__PURE__ @class */ (function (_super) {
16907
16910
  __extends$b(Group, _super);
16908
16911
  function Group() {
16909
16912
  return _super !== null && _super.apply(this, arguments) || this;
@@ -16932,29 +16935,29 @@ var Group = /** @class */ (function (_super) {
16932
16935
  return Group;
16933
16936
  }(ChildProperty));
16934
16937
 
16935
- var __extends$c = (undefined && undefined.__extends) || (function () {
16936
- var extendStatics = function (d, b) {
16937
- extendStatics = Object.setPrototypeOf ||
16938
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16939
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16940
- return extendStatics(d, b);
16941
- };
16942
- return function (d, b) {
16943
- extendStatics(d, b);
16944
- function __() { this.constructor = d; }
16945
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16946
- };
16947
- })();
16948
- var __decorate$9 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16949
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16950
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16951
- 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;
16952
- return c > 3 && r && Object.defineProperty(target, key, r), r;
16953
- };
16938
+ var __extends$c = (undefined && undefined.__extends) || (function () {
16939
+ var extendStatics = function (d, b) {
16940
+ extendStatics = Object.setPrototypeOf ||
16941
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16942
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
16943
+ return extendStatics(d, b);
16944
+ };
16945
+ return function (d, b) {
16946
+ extendStatics(d, b);
16947
+ function __() { this.constructor = d; }
16948
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16949
+ };
16950
+ })();
16951
+ var __decorate$9 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16952
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16953
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16954
+ 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;
16955
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
16956
+ };
16954
16957
  /**
16955
16958
  * A class that represents the resource related configurations and its data binding options.
16956
16959
  */
16957
- var Resources = /** @class */ (function (_super) {
16960
+ var Resources = /** @__PURE__ @class */ (function (_super) {
16958
16961
  __extends$c(Resources, _super);
16959
16962
  function Resources() {
16960
16963
  return _super !== null && _super.apply(this, arguments) || this;
@@ -17008,7 +17011,7 @@ var Resources = /** @class */ (function (_super) {
17008
17011
  }(ChildProperty));
17009
17012
 
17010
17013
  /* eslint-disable @typescript-eslint/no-explicit-any */
17011
- var ResourceBase = /** @class */ (function () {
17014
+ var ResourceBase = /** @__PURE__ @class */ (function () {
17012
17015
  function ResourceBase(parent) {
17013
17016
  this.resourceCollection = [];
17014
17017
  this.leftPixel = 25;
@@ -18115,26 +18118,26 @@ var ResourceBase = /** @class */ (function () {
18115
18118
  return ResourceBase;
18116
18119
  }());
18117
18120
 
18118
- var __extends$d = (undefined && undefined.__extends) || (function () {
18119
- var extendStatics = function (d, b) {
18120
- extendStatics = Object.setPrototypeOf ||
18121
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
18122
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
18123
- return extendStatics(d, b);
18124
- };
18125
- return function (d, b) {
18126
- extendStatics(d, b);
18127
- function __() { this.constructor = d; }
18128
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
18129
- };
18130
- })();
18131
- var __decorate$a = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
18132
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
18133
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
18134
- 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;
18135
- return c > 3 && r && Object.defineProperty(target, key, r), r;
18136
- };
18137
- var ToolbarItem = /** @class */ (function (_super) {
18121
+ var __extends$d = (undefined && undefined.__extends) || (function () {
18122
+ var extendStatics = function (d, b) {
18123
+ extendStatics = Object.setPrototypeOf ||
18124
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
18125
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
18126
+ return extendStatics(d, b);
18127
+ };
18128
+ return function (d, b) {
18129
+ extendStatics(d, b);
18130
+ function __() { this.constructor = d; }
18131
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
18132
+ };
18133
+ })();
18134
+ var __decorate$a = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
18135
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
18136
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
18137
+ 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;
18138
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
18139
+ };
18140
+ var ToolbarItem = /** @__PURE__ @class */ (function (_super) {
18138
18141
  __extends$d(ToolbarItem, _super);
18139
18142
  function ToolbarItem() {
18140
18143
  return _super !== null && _super.apply(this, arguments) || this;
@@ -18199,25 +18202,25 @@ var ToolbarItem = /** @class */ (function (_super) {
18199
18202
  return ToolbarItem;
18200
18203
  }(ChildProperty));
18201
18204
 
18202
- var __extends$e = (undefined && undefined.__extends) || (function () {
18203
- var extendStatics = function (d, b) {
18204
- extendStatics = Object.setPrototypeOf ||
18205
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
18206
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
18207
- return extendStatics(d, b);
18208
- };
18209
- return function (d, b) {
18210
- extendStatics(d, b);
18211
- function __() { this.constructor = d; }
18212
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
18213
- };
18214
- })();
18215
- var __decorate$b = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
18216
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
18217
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
18218
- 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;
18219
- return c > 3 && r && Object.defineProperty(target, key, r), r;
18220
- };
18205
+ var __extends$e = (undefined && undefined.__extends) || (function () {
18206
+ var extendStatics = function (d, b) {
18207
+ extendStatics = Object.setPrototypeOf ||
18208
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
18209
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
18210
+ return extendStatics(d, b);
18211
+ };
18212
+ return function (d, b) {
18213
+ extendStatics(d, b);
18214
+ function __() { this.constructor = d; }
18215
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
18216
+ };
18217
+ })();
18218
+ var __decorate$b = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
18219
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
18220
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
18221
+ 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;
18222
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
18223
+ };
18221
18224
  /**
18222
18225
  * Represents the Schedule component that displays a list of events scheduled against specific date and timings,
18223
18226
  * thus helping us to plan and manage it properly.
@@ -18231,7 +18234,7 @@ var __decorate$b = (undefined && undefined.__decorate) || function (decorators,
18231
18234
  * </script>
18232
18235
  * ```
18233
18236
  */
18234
- var Schedule = /** @class */ (function (_super) {
18237
+ var Schedule = /** @__PURE__ @class */ (function (_super) {
18235
18238
  __extends$e(Schedule, _super);
18236
18239
  /**
18237
18240
  * Constructor for creating the Schedule widget
@@ -21504,7 +21507,7 @@ var Schedule = /** @class */ (function (_super) {
21504
21507
  /**
21505
21508
  * Base class for the common drag and resize related actions
21506
21509
  */
21507
- var ActionBase = /** @class */ (function () {
21510
+ var ActionBase = /** @__PURE__ @class */ (function () {
21508
21511
  function ActionBase(parent) {
21509
21512
  this.daysVariation = 0;
21510
21513
  this.parent = parent;
@@ -21965,23 +21968,23 @@ var ActionBase = /** @class */ (function () {
21965
21968
  return ActionBase;
21966
21969
  }());
21967
21970
 
21968
- var __extends$f = (undefined && undefined.__extends) || (function () {
21969
- var extendStatics = function (d, b) {
21970
- extendStatics = Object.setPrototypeOf ||
21971
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
21972
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
21973
- return extendStatics(d, b);
21974
- };
21975
- return function (d, b) {
21976
- extendStatics(d, b);
21977
- function __() { this.constructor = d; }
21978
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
21979
- };
21980
- })();
21971
+ var __extends$f = (undefined && undefined.__extends) || (function () {
21972
+ var extendStatics = function (d, b) {
21973
+ extendStatics = Object.setPrototypeOf ||
21974
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
21975
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
21976
+ return extendStatics(d, b);
21977
+ };
21978
+ return function (d, b) {
21979
+ extendStatics(d, b);
21980
+ function __() { this.constructor = d; }
21981
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
21982
+ };
21983
+ })();
21981
21984
  /**
21982
21985
  * Schedule events resize actions
21983
21986
  */
21984
- var Resize = /** @class */ (function (_super) {
21987
+ var Resize = /** @__PURE__ @class */ (function (_super) {
21985
21988
  __extends$f(Resize, _super);
21986
21989
  function Resize() {
21987
21990
  return _super !== null && _super.apply(this, arguments) || this;
@@ -22541,6 +22544,7 @@ var Resize = /** @class */ (function (_super) {
22541
22544
  (Math.ceil((targetWidth - cloneWidth) / this.actionObj.cellWidth) * this.actionObj.cellWidth) : offsetLeft);
22542
22545
  }
22543
22546
  }
22547
+ width = Math.floor(width);
22544
22548
  styles.width = formatUnit(width);
22545
22549
  return styles;
22546
22550
  };
@@ -22581,24 +22585,24 @@ var Resize = /** @class */ (function (_super) {
22581
22585
  return Resize;
22582
22586
  }(ActionBase));
22583
22587
 
22584
- var __extends$g = (undefined && undefined.__extends) || (function () {
22585
- var extendStatics = function (d, b) {
22586
- extendStatics = Object.setPrototypeOf ||
22587
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
22588
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
22589
- return extendStatics(d, b);
22590
- };
22591
- return function (d, b) {
22592
- extendStatics(d, b);
22593
- function __() { this.constructor = d; }
22594
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
22595
- };
22596
- })();
22588
+ var __extends$g = (undefined && undefined.__extends) || (function () {
22589
+ var extendStatics = function (d, b) {
22590
+ extendStatics = Object.setPrototypeOf ||
22591
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
22592
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
22593
+ return extendStatics(d, b);
22594
+ };
22595
+ return function (d, b) {
22596
+ extendStatics(d, b);
22597
+ function __() { this.constructor = d; }
22598
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
22599
+ };
22600
+ })();
22597
22601
  var EVENT_GAP$2 = 2;
22598
22602
  /**
22599
22603
  * Year view events render
22600
22604
  */
22601
- var YearEvent = /** @class */ (function (_super) {
22605
+ var YearEvent = /** @__PURE__ @class */ (function (_super) {
22602
22606
  __extends$g(YearEvent, _super);
22603
22607
  function YearEvent(parent) {
22604
22608
  var _this = _super.call(this, parent, 'day') || this;
@@ -23204,24 +23208,24 @@ var YearEvent = /** @class */ (function (_super) {
23204
23208
  return YearEvent;
23205
23209
  }(TimelineEvent));
23206
23210
 
23207
- var __extends$h = (undefined && undefined.__extends) || (function () {
23208
- var extendStatics = function (d, b) {
23209
- extendStatics = Object.setPrototypeOf ||
23210
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
23211
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
23212
- return extendStatics(d, b);
23213
- };
23214
- return function (d, b) {
23215
- extendStatics(d, b);
23216
- function __() { this.constructor = d; }
23217
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
23218
- };
23219
- })();
23211
+ var __extends$h = (undefined && undefined.__extends) || (function () {
23212
+ var extendStatics = function (d, b) {
23213
+ extendStatics = Object.setPrototypeOf ||
23214
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
23215
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
23216
+ return extendStatics(d, b);
23217
+ };
23218
+ return function (d, b) {
23219
+ extendStatics(d, b);
23220
+ function __() { this.constructor = d; }
23221
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
23222
+ };
23223
+ })();
23220
23224
  var MINUTES_PER_DAY = 1440;
23221
23225
  /**
23222
23226
  * Schedule events drag actions
23223
23227
  */
23224
- var DragAndDrop = /** @class */ (function (_super) {
23228
+ var DragAndDrop = /** @__PURE__ @class */ (function (_super) {
23225
23229
  __extends$h(DragAndDrop, _super);
23226
23230
  function DragAndDrop() {
23227
23231
  var _this = _super !== null && _super.apply(this, arguments) || this;
@@ -24607,7 +24611,7 @@ var DragAndDrop = /** @class */ (function (_super) {
24607
24611
  /**
24608
24612
  * view base
24609
24613
  */
24610
- var ViewBase = /** @class */ (function () {
24614
+ var ViewBase = /** @__PURE__ @class */ (function () {
24611
24615
  /**
24612
24616
  * Constructor
24613
24617
  *
@@ -25265,23 +25269,23 @@ var ViewBase = /** @class */ (function () {
25265
25269
  return ViewBase;
25266
25270
  }());
25267
25271
 
25268
- var __extends$i = (undefined && undefined.__extends) || (function () {
25269
- var extendStatics = function (d, b) {
25270
- extendStatics = Object.setPrototypeOf ||
25271
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
25272
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
25273
- return extendStatics(d, b);
25274
- };
25275
- return function (d, b) {
25276
- extendStatics(d, b);
25277
- function __() { this.constructor = d; }
25278
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
25279
- };
25280
- })();
25272
+ var __extends$i = (undefined && undefined.__extends) || (function () {
25273
+ var extendStatics = function (d, b) {
25274
+ extendStatics = Object.setPrototypeOf ||
25275
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
25276
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
25277
+ return extendStatics(d, b);
25278
+ };
25279
+ return function (d, b) {
25280
+ extendStatics(d, b);
25281
+ function __() { this.constructor = d; }
25282
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
25283
+ };
25284
+ })();
25281
25285
  /**
25282
25286
  * vertical view
25283
25287
  */
25284
- var VerticalView = /** @class */ (function (_super) {
25288
+ var VerticalView = /** @__PURE__ @class */ (function (_super) {
25285
25289
  __extends$i(VerticalView, _super);
25286
25290
  function VerticalView(parent) {
25287
25291
  var _this = _super.call(this, parent) || this;
@@ -26152,23 +26156,23 @@ var VerticalView = /** @class */ (function (_super) {
26152
26156
  return VerticalView;
26153
26157
  }(ViewBase));
26154
26158
 
26155
- var __extends$j = (undefined && undefined.__extends) || (function () {
26156
- var extendStatics = function (d, b) {
26157
- extendStatics = Object.setPrototypeOf ||
26158
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26159
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
26160
- return extendStatics(d, b);
26161
- };
26162
- return function (d, b) {
26163
- extendStatics(d, b);
26164
- function __() { this.constructor = d; }
26165
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
26166
- };
26167
- })();
26159
+ var __extends$j = (undefined && undefined.__extends) || (function () {
26160
+ var extendStatics = function (d, b) {
26161
+ extendStatics = Object.setPrototypeOf ||
26162
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26163
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
26164
+ return extendStatics(d, b);
26165
+ };
26166
+ return function (d, b) {
26167
+ extendStatics(d, b);
26168
+ function __() { this.constructor = d; }
26169
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
26170
+ };
26171
+ })();
26168
26172
  /**
26169
26173
  * day view
26170
26174
  */
26171
- var Day = /** @class */ (function (_super) {
26175
+ var Day = /** @__PURE__ @class */ (function (_super) {
26172
26176
  __extends$j(Day, _super);
26173
26177
  /**
26174
26178
  * Constructor for day view
@@ -26191,23 +26195,23 @@ var Day = /** @class */ (function (_super) {
26191
26195
  return Day;
26192
26196
  }(VerticalView));
26193
26197
 
26194
- var __extends$k = (undefined && undefined.__extends) || (function () {
26195
- var extendStatics = function (d, b) {
26196
- extendStatics = Object.setPrototypeOf ||
26197
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26198
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
26199
- return extendStatics(d, b);
26200
- };
26201
- return function (d, b) {
26202
- extendStatics(d, b);
26203
- function __() { this.constructor = d; }
26204
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
26205
- };
26206
- })();
26198
+ var __extends$k = (undefined && undefined.__extends) || (function () {
26199
+ var extendStatics = function (d, b) {
26200
+ extendStatics = Object.setPrototypeOf ||
26201
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26202
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
26203
+ return extendStatics(d, b);
26204
+ };
26205
+ return function (d, b) {
26206
+ extendStatics(d, b);
26207
+ function __() { this.constructor = d; }
26208
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
26209
+ };
26210
+ })();
26207
26211
  /**
26208
26212
  * week view
26209
26213
  */
26210
- var Week = /** @class */ (function (_super) {
26214
+ var Week = /** @__PURE__ @class */ (function (_super) {
26211
26215
  __extends$k(Week, _super);
26212
26216
  /**
26213
26217
  * Constructor for week view
@@ -26236,23 +26240,23 @@ var Week = /** @class */ (function (_super) {
26236
26240
  return Week;
26237
26241
  }(VerticalView));
26238
26242
 
26239
- var __extends$l = (undefined && undefined.__extends) || (function () {
26240
- var extendStatics = function (d, b) {
26241
- extendStatics = Object.setPrototypeOf ||
26242
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26243
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
26244
- return extendStatics(d, b);
26245
- };
26246
- return function (d, b) {
26247
- extendStatics(d, b);
26248
- function __() { this.constructor = d; }
26249
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
26250
- };
26251
- })();
26243
+ var __extends$l = (undefined && undefined.__extends) || (function () {
26244
+ var extendStatics = function (d, b) {
26245
+ extendStatics = Object.setPrototypeOf ||
26246
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26247
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
26248
+ return extendStatics(d, b);
26249
+ };
26250
+ return function (d, b) {
26251
+ extendStatics(d, b);
26252
+ function __() { this.constructor = d; }
26253
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
26254
+ };
26255
+ })();
26252
26256
  /**
26253
26257
  * work week view
26254
26258
  */
26255
- var WorkWeek = /** @class */ (function (_super) {
26259
+ var WorkWeek = /** @__PURE__ @class */ (function (_super) {
26256
26260
  __extends$l(WorkWeek, _super);
26257
26261
  /**
26258
26262
  * Constructor for work week view
@@ -26281,23 +26285,23 @@ var WorkWeek = /** @class */ (function (_super) {
26281
26285
  return WorkWeek;
26282
26286
  }(VerticalView));
26283
26287
 
26284
- var __extends$m = (undefined && undefined.__extends) || (function () {
26285
- var extendStatics = function (d, b) {
26286
- extendStatics = Object.setPrototypeOf ||
26287
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26288
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
26289
- return extendStatics(d, b);
26290
- };
26291
- return function (d, b) {
26292
- extendStatics(d, b);
26293
- function __() { this.constructor = d; }
26294
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
26295
- };
26296
- })();
26288
+ var __extends$m = (undefined && undefined.__extends) || (function () {
26289
+ var extendStatics = function (d, b) {
26290
+ extendStatics = Object.setPrototypeOf ||
26291
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
26292
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
26293
+ return extendStatics(d, b);
26294
+ };
26295
+ return function (d, b) {
26296
+ extendStatics(d, b);
26297
+ function __() { this.constructor = d; }
26298
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
26299
+ };
26300
+ })();
26297
26301
  /**
26298
26302
  * month view
26299
26303
  */
26300
- var Month = /** @class */ (function (_super) {
26304
+ var Month = /** @__PURE__ @class */ (function (_super) {
26301
26305
  __extends$m(Month, _super);
26302
26306
  function Month(parent) {
26303
26307
  var _this = _super.call(this, parent) || this;
@@ -27013,23 +27017,23 @@ var Month = /** @class */ (function (_super) {
27013
27017
  return Month;
27014
27018
  }(ViewBase));
27015
27019
 
27016
- var __extends$n = (undefined && undefined.__extends) || (function () {
27017
- var extendStatics = function (d, b) {
27018
- extendStatics = Object.setPrototypeOf ||
27019
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
27020
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
27021
- return extendStatics(d, b);
27022
- };
27023
- return function (d, b) {
27024
- extendStatics(d, b);
27025
- function __() { this.constructor = d; }
27026
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
27027
- };
27028
- })();
27020
+ var __extends$n = (undefined && undefined.__extends) || (function () {
27021
+ var extendStatics = function (d, b) {
27022
+ extendStatics = Object.setPrototypeOf ||
27023
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
27024
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
27025
+ return extendStatics(d, b);
27026
+ };
27027
+ return function (d, b) {
27028
+ extendStatics(d, b);
27029
+ function __() { this.constructor = d; }
27030
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
27031
+ };
27032
+ })();
27029
27033
  /**
27030
27034
  * year view
27031
27035
  */
27032
- var Year = /** @class */ (function (_super) {
27036
+ var Year = /** @__PURE__ @class */ (function (_super) {
27033
27037
  __extends$n(Year, _super);
27034
27038
  function Year(parent) {
27035
27039
  var _this = _super.call(this, parent) || this;
@@ -27461,20 +27465,20 @@ var Year = /** @class */ (function (_super) {
27461
27465
  return Year;
27462
27466
  }(ViewBase));
27463
27467
 
27464
- var __extends$o = (undefined && undefined.__extends) || (function () {
27465
- var extendStatics = function (d, b) {
27466
- extendStatics = Object.setPrototypeOf ||
27467
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
27468
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
27469
- return extendStatics(d, b);
27470
- };
27471
- return function (d, b) {
27472
- extendStatics(d, b);
27473
- function __() { this.constructor = d; }
27474
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
27475
- };
27476
- })();
27477
- var AgendaBase = /** @class */ (function (_super) {
27468
+ var __extends$o = (undefined && undefined.__extends) || (function () {
27469
+ var extendStatics = function (d, b) {
27470
+ extendStatics = Object.setPrototypeOf ||
27471
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
27472
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
27473
+ return extendStatics(d, b);
27474
+ };
27475
+ return function (d, b) {
27476
+ extendStatics(d, b);
27477
+ function __() { this.constructor = d; }
27478
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
27479
+ };
27480
+ })();
27481
+ var AgendaBase = /** @__PURE__ @class */ (function (_super) {
27478
27482
  __extends$o(AgendaBase, _super);
27479
27483
  function AgendaBase(parent) {
27480
27484
  return _super.call(this, parent) || this;
@@ -27887,23 +27891,23 @@ var AgendaBase = /** @class */ (function (_super) {
27887
27891
  return AgendaBase;
27888
27892
  }(ViewBase));
27889
27893
 
27890
- var __extends$p = (undefined && undefined.__extends) || (function () {
27891
- var extendStatics = function (d, b) {
27892
- extendStatics = Object.setPrototypeOf ||
27893
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
27894
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
27895
- return extendStatics(d, b);
27896
- };
27897
- return function (d, b) {
27898
- extendStatics(d, b);
27899
- function __() { this.constructor = d; }
27900
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
27901
- };
27902
- })();
27894
+ var __extends$p = (undefined && undefined.__extends) || (function () {
27895
+ var extendStatics = function (d, b) {
27896
+ extendStatics = Object.setPrototypeOf ||
27897
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
27898
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
27899
+ return extendStatics(d, b);
27900
+ };
27901
+ return function (d, b) {
27902
+ extendStatics(d, b);
27903
+ function __() { this.constructor = d; }
27904
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
27905
+ };
27906
+ })();
27903
27907
  /**
27904
27908
  * agenda view
27905
27909
  */
27906
- var Agenda = /** @class */ (function (_super) {
27910
+ var Agenda = /** @__PURE__ @class */ (function (_super) {
27907
27911
  __extends$p(Agenda, _super);
27908
27912
  function Agenda(parent) {
27909
27913
  var _this = _super.call(this, parent) || this;
@@ -28395,23 +28399,23 @@ var Agenda = /** @class */ (function (_super) {
28395
28399
  return Agenda;
28396
28400
  }(AgendaBase));
28397
28401
 
28398
- var __extends$q = (undefined && undefined.__extends) || (function () {
28399
- var extendStatics = function (d, b) {
28400
- extendStatics = Object.setPrototypeOf ||
28401
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
28402
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
28403
- return extendStatics(d, b);
28404
- };
28405
- return function (d, b) {
28406
- extendStatics(d, b);
28407
- function __() { this.constructor = d; }
28408
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
28409
- };
28410
- })();
28402
+ var __extends$q = (undefined && undefined.__extends) || (function () {
28403
+ var extendStatics = function (d, b) {
28404
+ extendStatics = Object.setPrototypeOf ||
28405
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
28406
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
28407
+ return extendStatics(d, b);
28408
+ };
28409
+ return function (d, b) {
28410
+ extendStatics(d, b);
28411
+ function __() { this.constructor = d; }
28412
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
28413
+ };
28414
+ })();
28411
28415
  /**
28412
28416
  * month agenda view
28413
28417
  */
28414
- var MonthAgenda = /** @class */ (function (_super) {
28418
+ var MonthAgenda = /** @__PURE__ @class */ (function (_super) {
28415
28419
  __extends$q(MonthAgenda, _super);
28416
28420
  function MonthAgenda(parent) {
28417
28421
  var _this = _super.call(this, parent) || this;
@@ -28575,7 +28579,7 @@ var MonthAgenda = /** @class */ (function (_super) {
28575
28579
  /**
28576
28580
  * timeline header rows
28577
28581
  */
28578
- var TimelineHeaderRow = /** @class */ (function () {
28582
+ var TimelineHeaderRow = /** @__PURE__ @class */ (function () {
28579
28583
  function TimelineHeaderRow(parent, renderDates) {
28580
28584
  this.parent = parent;
28581
28585
  this.renderDates = renderDates;
@@ -28698,23 +28702,23 @@ var TimelineHeaderRow = /** @class */ (function () {
28698
28702
  return TimelineHeaderRow;
28699
28703
  }());
28700
28704
 
28701
- var __extends$r = (undefined && undefined.__extends) || (function () {
28702
- var extendStatics = function (d, b) {
28703
- extendStatics = Object.setPrototypeOf ||
28704
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
28705
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
28706
- return extendStatics(d, b);
28707
- };
28708
- return function (d, b) {
28709
- extendStatics(d, b);
28710
- function __() { this.constructor = d; }
28711
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
28712
- };
28713
- })();
28705
+ var __extends$r = (undefined && undefined.__extends) || (function () {
28706
+ var extendStatics = function (d, b) {
28707
+ extendStatics = Object.setPrototypeOf ||
28708
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
28709
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
28710
+ return extendStatics(d, b);
28711
+ };
28712
+ return function (d, b) {
28713
+ extendStatics(d, b);
28714
+ function __() { this.constructor = d; }
28715
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
28716
+ };
28717
+ })();
28714
28718
  /**
28715
28719
  * timeline views
28716
28720
  */
28717
- var TimelineViews = /** @class */ (function (_super) {
28721
+ var TimelineViews = /** @__PURE__ @class */ (function (_super) {
28718
28722
  __extends$r(TimelineViews, _super);
28719
28723
  function TimelineViews(parent) {
28720
28724
  var _this = _super.call(this, parent) || this;
@@ -28998,23 +29002,23 @@ var TimelineViews = /** @class */ (function (_super) {
28998
29002
  return TimelineViews;
28999
29003
  }(VerticalView));
29000
29004
 
29001
- var __extends$s = (undefined && undefined.__extends) || (function () {
29002
- var extendStatics = function (d, b) {
29003
- extendStatics = Object.setPrototypeOf ||
29004
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
29005
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
29006
- return extendStatics(d, b);
29007
- };
29008
- return function (d, b) {
29009
- extendStatics(d, b);
29010
- function __() { this.constructor = d; }
29011
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
29012
- };
29013
- })();
29005
+ var __extends$s = (undefined && undefined.__extends) || (function () {
29006
+ var extendStatics = function (d, b) {
29007
+ extendStatics = Object.setPrototypeOf ||
29008
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
29009
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
29010
+ return extendStatics(d, b);
29011
+ };
29012
+ return function (d, b) {
29013
+ extendStatics(d, b);
29014
+ function __() { this.constructor = d; }
29015
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
29016
+ };
29017
+ })();
29014
29018
  /**
29015
29019
  * timeline month view
29016
29020
  */
29017
- var TimelineMonth = /** @class */ (function (_super) {
29021
+ var TimelineMonth = /** @__PURE__ @class */ (function (_super) {
29018
29022
  __extends$s(TimelineMonth, _super);
29019
29023
  function TimelineMonth(parent) {
29020
29024
  var _this = _super.call(this, parent) || this;
@@ -29172,23 +29176,23 @@ var TimelineMonth = /** @class */ (function (_super) {
29172
29176
  return TimelineMonth;
29173
29177
  }(Month));
29174
29178
 
29175
- var __extends$t = (undefined && undefined.__extends) || (function () {
29176
- var extendStatics = function (d, b) {
29177
- extendStatics = Object.setPrototypeOf ||
29178
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
29179
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
29180
- return extendStatics(d, b);
29181
- };
29182
- return function (d, b) {
29183
- extendStatics(d, b);
29184
- function __() { this.constructor = d; }
29185
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
29186
- };
29187
- })();
29179
+ var __extends$t = (undefined && undefined.__extends) || (function () {
29180
+ var extendStatics = function (d, b) {
29181
+ extendStatics = Object.setPrototypeOf ||
29182
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
29183
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
29184
+ return extendStatics(d, b);
29185
+ };
29186
+ return function (d, b) {
29187
+ extendStatics(d, b);
29188
+ function __() { this.constructor = d; }
29189
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
29190
+ };
29191
+ })();
29188
29192
  /**
29189
29193
  * timeline year view
29190
29194
  */
29191
- var TimelineYear = /** @class */ (function (_super) {
29195
+ var TimelineYear = /** @__PURE__ @class */ (function (_super) {
29192
29196
  __extends$t(TimelineYear, _super);
29193
29197
  function TimelineYear(parent) {
29194
29198
  var _this = _super.call(this, parent) || this;
@@ -29649,7 +29653,7 @@ var TimelineYear = /** @class */ (function (_super) {
29649
29653
  /**
29650
29654
  * ICalendar Export Module
29651
29655
  */
29652
- var ICalendarExport = /** @class */ (function () {
29656
+ var ICalendarExport = /** @__PURE__ @class */ (function () {
29653
29657
  function ICalendarExport(parent) {
29654
29658
  this.parent = parent;
29655
29659
  }
@@ -29798,7 +29802,7 @@ var ICalendarExport = /** @class */ (function () {
29798
29802
  /**
29799
29803
  * ICalendar Import Module
29800
29804
  */
29801
- var ICalendarImport = /** @class */ (function () {
29805
+ var ICalendarImport = /** @__PURE__ @class */ (function () {
29802
29806
  function ICalendarImport(parent) {
29803
29807
  this.allDay = false;
29804
29808
  this.parent = parent;
@@ -30063,7 +30067,7 @@ var ICalendarImport = /** @class */ (function () {
30063
30067
  /**
30064
30068
  * Excel Export Module
30065
30069
  */
30066
- var ExcelExport = /** @class */ (function () {
30070
+ var ExcelExport = /** @__PURE__ @class */ (function () {
30067
30071
  function ExcelExport(parent) {
30068
30072
  this.parent = parent;
30069
30073
  }
@@ -30142,7 +30146,7 @@ var ExcelExport = /** @class */ (function () {
30142
30146
  /**
30143
30147
  * Print Module
30144
30148
  */
30145
- var Print = /** @class */ (function () {
30149
+ var Print = /** @__PURE__ @class */ (function () {
30146
30150
  function Print(parent) {
30147
30151
  this.parent = parent;
30148
30152
  }