@syncfusion/ej2-schedule 32.1.24 → 32.1.25-810416

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (460) hide show
  1. package/.eslintrc.json +243 -243
  2. package/.gitleaksignore +4 -4
  3. package/README.md +91 -91
  4. package/dist/ej2-schedule.umd.min.js +1 -10
  5. package/dist/ej2-schedule.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-schedule.es2015.js +98 -107
  7. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  8. package/dist/es6/ej2-schedule.es5.js +562 -574
  9. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  10. package/ej2-schedule-component.sln +32 -0
  11. package/license +9 -9
  12. package/package.json +42 -42
  13. package/src/global.d.ts +1 -0
  14. package/src/recurrence-editor/recurrence-editor-model.d.ts +75 -75
  15. package/src/recurrence-editor/recurrence-editor.js +19 -19
  16. package/src/schedule/actions/action-base.js +1 -1
  17. package/src/schedule/actions/drag.js +13 -13
  18. package/src/schedule/actions/keyboard.js +12 -12
  19. package/src/schedule/actions/resize.js +27 -41
  20. package/src/schedule/base/interface.d.ts +2 -2
  21. package/src/schedule/base/schedule-model.d.ts +886 -886
  22. package/src/schedule/base/schedule.js +19 -19
  23. package/src/schedule/event-renderer/agenda-base.js +13 -13
  24. package/src/schedule/event-renderer/event-base.js +6 -4
  25. package/src/schedule/event-renderer/month.js +13 -13
  26. package/src/schedule/event-renderer/timeline-view.js +13 -13
  27. package/src/schedule/event-renderer/vertical-view.js +13 -13
  28. package/src/schedule/event-renderer/year.js +13 -13
  29. package/src/schedule/models/event-settings-model.d.ts +156 -156
  30. package/src/schedule/models/event-settings.js +19 -19
  31. package/src/schedule/models/field-options-model.d.ts +22 -22
  32. package/src/schedule/models/field-options.js +19 -19
  33. package/src/schedule/models/fields-model.d.ts +92 -92
  34. package/src/schedule/models/fields.js +19 -19
  35. package/src/schedule/models/group-model.d.ts +48 -48
  36. package/src/schedule/models/group.js +19 -19
  37. package/src/schedule/models/header-rows-model.d.ts +22 -22
  38. package/src/schedule/models/header-rows.js +19 -19
  39. package/src/schedule/models/quick-info-templates-model.d.ts +37 -37
  40. package/src/schedule/models/quick-info-templates.js +19 -19
  41. package/src/schedule/models/resources-model.d.ts +85 -85
  42. package/src/schedule/models/resources.js +19 -19
  43. package/src/schedule/models/time-scale-model.d.ts +40 -40
  44. package/src/schedule/models/time-scale.js +19 -19
  45. package/src/schedule/models/toolbar-model.d.ts +187 -187
  46. package/src/schedule/models/toolbar.js +19 -19
  47. package/src/schedule/models/views-model.d.ts +361 -361
  48. package/src/schedule/models/views.js +19 -19
  49. package/src/schedule/models/work-hours-model.d.ts +16 -16
  50. package/src/schedule/models/work-hours.js +19 -19
  51. package/src/schedule/renderer/agenda.js +13 -13
  52. package/src/schedule/renderer/day.js +13 -13
  53. package/src/schedule/renderer/header-renderer.js +11 -11
  54. package/src/schedule/renderer/month-agenda.js +13 -13
  55. package/src/schedule/renderer/month.js +13 -13
  56. package/src/schedule/renderer/timeline-month.js +13 -13
  57. package/src/schedule/renderer/timeline-view.js +13 -13
  58. package/src/schedule/renderer/timeline-year.js +13 -13
  59. package/src/schedule/renderer/vertical-view.js +13 -13
  60. package/src/schedule/renderer/week.js +13 -13
  61. package/src/schedule/renderer/work-week.js +13 -13
  62. package/src/schedule/renderer/year.js +13 -13
  63. package/styles/bds-lite.css +0 -12
  64. package/styles/bds-lite.scss +2 -2
  65. package/styles/bds.css +0 -20
  66. package/styles/bds.scss +4 -4
  67. package/styles/bootstrap-dark-lite.scss +2 -2
  68. package/styles/bootstrap-dark.scss +4 -4
  69. package/styles/bootstrap-lite.scss +2 -2
  70. package/styles/bootstrap.scss +4 -4
  71. package/styles/bootstrap4-lite.scss +2 -2
  72. package/styles/bootstrap4.scss +4 -4
  73. package/styles/bootstrap5-dark-lite.scss +2 -2
  74. package/styles/bootstrap5-dark.scss +4 -4
  75. package/styles/bootstrap5-lite.scss +2 -2
  76. package/styles/bootstrap5.3-lite.css +0 -252
  77. package/styles/bootstrap5.3-lite.scss +2 -2
  78. package/styles/bootstrap5.3.css +0 -420
  79. package/styles/bootstrap5.3.scss +4 -4
  80. package/styles/bootstrap5.scss +4 -4
  81. package/styles/fabric-dark-lite.scss +2 -2
  82. package/styles/fabric-dark.scss +4 -4
  83. package/styles/fabric-lite.scss +2 -2
  84. package/styles/fabric.scss +4 -4
  85. package/styles/fluent-dark-lite.scss +2 -2
  86. package/styles/fluent-dark.scss +4 -4
  87. package/styles/fluent-lite.scss +2 -2
  88. package/styles/fluent.scss +4 -4
  89. package/styles/fluent2-lite.css +0 -258
  90. package/styles/fluent2-lite.scss +2 -2
  91. package/styles/fluent2.css +0 -430
  92. package/styles/fluent2.scss +4 -4
  93. package/styles/highcontrast-light-lite.scss +2 -2
  94. package/styles/highcontrast-light.scss +4 -4
  95. package/styles/highcontrast-lite.scss +2 -2
  96. package/styles/highcontrast.scss +4 -4
  97. package/styles/material-dark-lite.scss +2 -2
  98. package/styles/material-dark.scss +4 -4
  99. package/styles/material-lite.scss +2 -2
  100. package/styles/material.scss +4 -4
  101. package/styles/material3-dark-lite.css +0 -246
  102. package/styles/material3-dark-lite.scss +2 -2
  103. package/styles/material3-dark.css +0 -410
  104. package/styles/material3-dark.scss +4 -4
  105. package/styles/material3-lite.css +0 -252
  106. package/styles/material3-lite.scss +2 -2
  107. package/styles/material3.css +0 -420
  108. package/styles/material3.scss +4 -4
  109. package/styles/recurrence-editor/_all.scss +2 -2
  110. package/styles/recurrence-editor/_bds-definition.scss +41 -41
  111. package/styles/recurrence-editor/_bigger.scss +135 -134
  112. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +41 -41
  113. package/styles/recurrence-editor/_bootstrap-definition.scss +41 -41
  114. package/styles/recurrence-editor/_bootstrap4-definition.scss +41 -41
  115. package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +41 -41
  116. package/styles/recurrence-editor/_bootstrap5-definition.scss +41 -41
  117. package/styles/recurrence-editor/_bootstrap5.3-definition.scss +41 -41
  118. package/styles/recurrence-editor/_fabric-dark-definition.scss +41 -41
  119. package/styles/recurrence-editor/_fabric-definition.scss +41 -41
  120. package/styles/recurrence-editor/_fluent-dark-definition.scss +41 -41
  121. package/styles/recurrence-editor/_fluent-definition.scss +41 -41
  122. package/styles/recurrence-editor/_fluent2-definition.scss +41 -41
  123. package/styles/recurrence-editor/_fusionnew-definition.scss +41 -41
  124. package/styles/recurrence-editor/_highcontrast-definition.scss +41 -41
  125. package/styles/recurrence-editor/_highcontrast-light-definition.scss +41 -41
  126. package/styles/recurrence-editor/_layout.scss +426 -425
  127. package/styles/recurrence-editor/_material-dark-definition.scss +41 -41
  128. package/styles/recurrence-editor/_material-definition.scss +41 -41
  129. package/styles/recurrence-editor/_material3-dark-definition.scss +41 -41
  130. package/styles/recurrence-editor/_material3-definition.scss +41 -41
  131. package/styles/recurrence-editor/_tailwind-dark-definition.scss +41 -41
  132. package/styles/recurrence-editor/_tailwind-definition.scss +41 -41
  133. package/styles/recurrence-editor/_tailwind3-definition.scss +41 -41
  134. package/styles/recurrence-editor/_theme.scss +1 -1
  135. package/styles/recurrence-editor/bds.css +0 -8
  136. package/styles/recurrence-editor/bds.scss +2 -2
  137. package/styles/recurrence-editor/bootstrap-dark.scss +2 -2
  138. package/styles/recurrence-editor/bootstrap.scss +2 -2
  139. package/styles/recurrence-editor/bootstrap4.scss +2 -2
  140. package/styles/recurrence-editor/bootstrap5-dark.scss +2 -2
  141. package/styles/recurrence-editor/bootstrap5.3.css +0 -168
  142. package/styles/recurrence-editor/bootstrap5.3.scss +2 -2
  143. package/styles/recurrence-editor/bootstrap5.scss +2 -2
  144. package/styles/recurrence-editor/fabric-dark.scss +2 -2
  145. package/styles/recurrence-editor/fabric.scss +2 -2
  146. package/styles/recurrence-editor/fluent-dark.scss +2 -2
  147. package/styles/recurrence-editor/fluent.scss +2 -2
  148. package/styles/recurrence-editor/fluent2.css +0 -172
  149. package/styles/recurrence-editor/fluent2.scss +2 -2
  150. package/styles/recurrence-editor/highcontrast-light.scss +2 -2
  151. package/styles/recurrence-editor/highcontrast.scss +2 -2
  152. package/styles/recurrence-editor/material-dark.scss +2 -2
  153. package/styles/recurrence-editor/material.scss +2 -2
  154. package/styles/recurrence-editor/material3-dark.css +0 -164
  155. package/styles/recurrence-editor/material3-dark.scss +2 -2
  156. package/styles/recurrence-editor/material3.css +0 -168
  157. package/styles/recurrence-editor/material3.scss +2 -2
  158. package/styles/recurrence-editor/tailwind-dark.scss +2 -2
  159. package/styles/recurrence-editor/tailwind.scss +2 -2
  160. package/styles/recurrence-editor/tailwind3.css +0 -148
  161. package/styles/recurrence-editor/tailwind3.scss +2 -2
  162. package/styles/schedule/_all.scss +2 -2
  163. package/styles/schedule/_bds-definition.scss +381 -381
  164. package/styles/schedule/_bigger.scss +803 -802
  165. package/styles/schedule/_bootstrap-dark-definition.scss +381 -381
  166. package/styles/schedule/_bootstrap-definition.scss +381 -381
  167. package/styles/schedule/_bootstrap4-definition.scss +384 -384
  168. package/styles/schedule/_bootstrap5-dark-definition.scss +385 -385
  169. package/styles/schedule/_bootstrap5-definition.scss +385 -385
  170. package/styles/schedule/_bootstrap5.3-definition.scss +385 -385
  171. package/styles/schedule/_fabric-dark-definition.scss +380 -380
  172. package/styles/schedule/_fabric-definition.scss +381 -381
  173. package/styles/schedule/_fluent-dark-definition.scss +385 -385
  174. package/styles/schedule/_fluent-definition.scss +385 -385
  175. package/styles/schedule/_fluent2-definition.scss +382 -382
  176. package/styles/schedule/_fusionnew-definition.scss +380 -380
  177. package/styles/schedule/_highcontrast-definition.scss +382 -382
  178. package/styles/schedule/_highcontrast-light-definition.scss +382 -382
  179. package/styles/schedule/_layout.scss +3875 -3874
  180. package/styles/schedule/_material-dark-definition.scss +379 -379
  181. package/styles/schedule/_material-definition.scss +379 -379
  182. package/styles/schedule/_material3-dark-definition.scss +384 -384
  183. package/styles/schedule/_material3-definition.scss +384 -384
  184. package/styles/schedule/_tailwind-dark-definition.scss +380 -380
  185. package/styles/schedule/_tailwind-definition.scss +380 -380
  186. package/styles/schedule/_tailwind3-definition.scss +385 -385
  187. package/styles/schedule/_theme.scss +587 -586
  188. package/styles/schedule/bds.css +0 -12
  189. package/styles/schedule/bds.scss +2 -2
  190. package/styles/schedule/bootstrap-dark.scss +2 -2
  191. package/styles/schedule/bootstrap.scss +2 -2
  192. package/styles/schedule/bootstrap4.scss +2 -2
  193. package/styles/schedule/bootstrap5-dark.scss +2 -2
  194. package/styles/schedule/bootstrap5.3.css +0 -252
  195. package/styles/schedule/bootstrap5.3.scss +2 -2
  196. package/styles/schedule/bootstrap5.scss +2 -2
  197. package/styles/schedule/fabric-dark.scss +2 -2
  198. package/styles/schedule/fabric.scss +2 -2
  199. package/styles/schedule/fluent-dark.scss +2 -2
  200. package/styles/schedule/fluent.scss +2 -2
  201. package/styles/schedule/fluent2.css +0 -258
  202. package/styles/schedule/fluent2.scss +2 -2
  203. package/styles/schedule/highcontrast-light.scss +2 -2
  204. package/styles/schedule/highcontrast.scss +2 -2
  205. package/styles/schedule/icons/_bds.scss +221 -221
  206. package/styles/schedule/icons/_bootstrap-dark.scss +224 -224
  207. package/styles/schedule/icons/_bootstrap.scss +224 -224
  208. package/styles/schedule/icons/_bootstrap4.scss +218 -218
  209. package/styles/schedule/icons/_bootstrap5.3.scss +221 -221
  210. package/styles/schedule/icons/_bootstrap5.scss +221 -221
  211. package/styles/schedule/icons/_fabric-dark.scss +224 -224
  212. package/styles/schedule/icons/_fabric.scss +224 -224
  213. package/styles/schedule/icons/_fluent.scss +221 -221
  214. package/styles/schedule/icons/_fluent2.scss +221 -221
  215. package/styles/schedule/icons/_fusionnew.scss +221 -221
  216. package/styles/schedule/icons/_highcontrast-light.scss +224 -224
  217. package/styles/schedule/icons/_highcontrast.scss +224 -224
  218. package/styles/schedule/icons/_material-dark.scss +224 -224
  219. package/styles/schedule/icons/_material.scss +224 -224
  220. package/styles/schedule/icons/_material3.scss +221 -221
  221. package/styles/schedule/icons/_tailwind.scss +221 -221
  222. package/styles/schedule/icons/_tailwind3.scss +221 -221
  223. package/styles/schedule/material-dark.scss +2 -2
  224. package/styles/schedule/material.scss +2 -2
  225. package/styles/schedule/material3-dark.css +0 -246
  226. package/styles/schedule/material3-dark.scss +2 -2
  227. package/styles/schedule/material3.css +0 -252
  228. package/styles/schedule/material3.scss +2 -2
  229. package/styles/schedule/tailwind-dark.scss +2 -2
  230. package/styles/schedule/tailwind.scss +2 -2
  231. package/styles/schedule/tailwind3.css +0 -222
  232. package/styles/schedule/tailwind3.scss +2 -2
  233. package/styles/tailwind-dark-lite.scss +2 -2
  234. package/styles/tailwind-dark.scss +4 -4
  235. package/styles/tailwind-lite.scss +2 -2
  236. package/styles/tailwind.scss +4 -4
  237. package/styles/tailwind3-lite.css +0 -222
  238. package/styles/tailwind3-lite.scss +2 -2
  239. package/styles/tailwind3.css +0 -370
  240. package/styles/tailwind3.scss +4 -4
  241. package/dist/ej2-schedule.min.js +0 -10
  242. package/dist/global/ej2-schedule.min.js +0 -11
  243. package/dist/global/ej2-schedule.min.js.map +0 -1
  244. package/dist/global/index.d.ts +0 -14
  245. package/helpers/e2e/index.d.ts +0 -5
  246. package/helpers/e2e/index.js +0 -9
  247. package/helpers/e2e/recurrence-editor.d.ts +0 -30
  248. package/helpers/e2e/recurrence-editor.js +0 -42
  249. package/helpers/e2e/schedule.d.ts +0 -50
  250. package/helpers/e2e/schedule.js +0 -45
  251. package/styles/recurrence-editor/_all.bds.scss +0 -2
  252. package/styles/recurrence-editor/_all.bootstrap-dark.scss +0 -2
  253. package/styles/recurrence-editor/_all.bootstrap.scss +0 -2
  254. package/styles/recurrence-editor/_all.bootstrap4.scss +0 -2
  255. package/styles/recurrence-editor/_all.bootstrap5-dark.scss +0 -2
  256. package/styles/recurrence-editor/_all.bootstrap5.3.scss +0 -2
  257. package/styles/recurrence-editor/_all.bootstrap5.scss +0 -2
  258. package/styles/recurrence-editor/_all.fabric-dark.scss +0 -2
  259. package/styles/recurrence-editor/_all.fabric.scss +0 -2
  260. package/styles/recurrence-editor/_all.fluent-dark.scss +0 -2
  261. package/styles/recurrence-editor/_all.fluent.scss +0 -2
  262. package/styles/recurrence-editor/_all.fluent2.scss +0 -2
  263. package/styles/recurrence-editor/_all.highcontrast-light.scss +0 -2
  264. package/styles/recurrence-editor/_all.highcontrast.scss +0 -2
  265. package/styles/recurrence-editor/_all.material-dark.scss +0 -2
  266. package/styles/recurrence-editor/_all.material.scss +0 -2
  267. package/styles/recurrence-editor/_all.material3-dark.scss +0 -2
  268. package/styles/recurrence-editor/_all.material3.scss +0 -2
  269. package/styles/recurrence-editor/_all.tailwind-dark.scss +0 -2
  270. package/styles/recurrence-editor/_all.tailwind.scss +0 -2
  271. package/styles/recurrence-editor/_all.tailwind3.scss +0 -2
  272. package/styles/recurrence-editor/_bigger.bds.scss +0 -3
  273. package/styles/recurrence-editor/_bigger.bootstrap-dark.scss +0 -3
  274. package/styles/recurrence-editor/_bigger.bootstrap.scss +0 -3
  275. package/styles/recurrence-editor/_bigger.bootstrap4.scss +0 -3
  276. package/styles/recurrence-editor/_bigger.bootstrap5-dark.scss +0 -3
  277. package/styles/recurrence-editor/_bigger.bootstrap5.3.scss +0 -3
  278. package/styles/recurrence-editor/_bigger.bootstrap5.scss +0 -3
  279. package/styles/recurrence-editor/_bigger.fabric-dark.scss +0 -3
  280. package/styles/recurrence-editor/_bigger.fabric.scss +0 -3
  281. package/styles/recurrence-editor/_bigger.fluent-dark.scss +0 -3
  282. package/styles/recurrence-editor/_bigger.fluent.scss +0 -3
  283. package/styles/recurrence-editor/_bigger.fluent2.scss +0 -3
  284. package/styles/recurrence-editor/_bigger.highcontrast-light.scss +0 -3
  285. package/styles/recurrence-editor/_bigger.highcontrast.scss +0 -3
  286. package/styles/recurrence-editor/_bigger.material-dark.scss +0 -3
  287. package/styles/recurrence-editor/_bigger.material.scss +0 -3
  288. package/styles/recurrence-editor/_bigger.material3-dark.scss +0 -3
  289. package/styles/recurrence-editor/_bigger.material3.scss +0 -3
  290. package/styles/recurrence-editor/_bigger.tailwind-dark.scss +0 -3
  291. package/styles/recurrence-editor/_bigger.tailwind.scss +0 -3
  292. package/styles/recurrence-editor/_bigger.tailwind3.scss +0 -3
  293. package/styles/recurrence-editor/_layout.bds.scss +0 -3
  294. package/styles/recurrence-editor/_layout.bootstrap-dark.scss +0 -3
  295. package/styles/recurrence-editor/_layout.bootstrap.scss +0 -3
  296. package/styles/recurrence-editor/_layout.bootstrap4.scss +0 -3
  297. package/styles/recurrence-editor/_layout.bootstrap5-dark.scss +0 -3
  298. package/styles/recurrence-editor/_layout.bootstrap5.3.scss +0 -3
  299. package/styles/recurrence-editor/_layout.bootstrap5.scss +0 -3
  300. package/styles/recurrence-editor/_layout.fabric-dark.scss +0 -3
  301. package/styles/recurrence-editor/_layout.fabric.scss +0 -3
  302. package/styles/recurrence-editor/_layout.fluent-dark.scss +0 -3
  303. package/styles/recurrence-editor/_layout.fluent.scss +0 -3
  304. package/styles/recurrence-editor/_layout.fluent2.scss +0 -3
  305. package/styles/recurrence-editor/_layout.highcontrast-light.scss +0 -3
  306. package/styles/recurrence-editor/_layout.highcontrast.scss +0 -3
  307. package/styles/recurrence-editor/_layout.material-dark.scss +0 -3
  308. package/styles/recurrence-editor/_layout.material.scss +0 -3
  309. package/styles/recurrence-editor/_layout.material3-dark.scss +0 -3
  310. package/styles/recurrence-editor/_layout.material3.scss +0 -3
  311. package/styles/recurrence-editor/_layout.tailwind-dark.scss +0 -3
  312. package/styles/recurrence-editor/_layout.tailwind.scss +0 -3
  313. package/styles/recurrence-editor/_layout.tailwind3.scss +0 -3
  314. package/styles/recurrence-editor/_theme-variables.bds.scss +0 -1
  315. package/styles/recurrence-editor/_theme-variables.bootstrap-dark.scss +0 -1
  316. package/styles/recurrence-editor/_theme-variables.bootstrap.scss +0 -1
  317. package/styles/recurrence-editor/_theme-variables.bootstrap4.scss +0 -1
  318. package/styles/recurrence-editor/_theme-variables.bootstrap5-dark.scss +0 -1
  319. package/styles/recurrence-editor/_theme-variables.bootstrap5.3.scss +0 -1
  320. package/styles/recurrence-editor/_theme-variables.bootstrap5.scss +0 -1
  321. package/styles/recurrence-editor/_theme-variables.fabric-dark.scss +0 -1
  322. package/styles/recurrence-editor/_theme-variables.fabric.scss +0 -1
  323. package/styles/recurrence-editor/_theme-variables.fluent-dark.scss +0 -1
  324. package/styles/recurrence-editor/_theme-variables.fluent.scss +0 -1
  325. package/styles/recurrence-editor/_theme-variables.fluent2.scss +0 -1
  326. package/styles/recurrence-editor/_theme-variables.highcontrast-light.scss +0 -1
  327. package/styles/recurrence-editor/_theme-variables.highcontrast.scss +0 -1
  328. package/styles/recurrence-editor/_theme-variables.material-dark.scss +0 -1
  329. package/styles/recurrence-editor/_theme-variables.material.scss +0 -1
  330. package/styles/recurrence-editor/_theme-variables.material3-dark.scss +0 -1
  331. package/styles/recurrence-editor/_theme-variables.material3.scss +0 -1
  332. package/styles/recurrence-editor/_theme-variables.tailwind-dark.scss +0 -1
  333. package/styles/recurrence-editor/_theme-variables.tailwind.scss +0 -1
  334. package/styles/recurrence-editor/_theme.bds.scss +0 -1
  335. package/styles/recurrence-editor/_theme.bootstrap-dark.scss +0 -1
  336. package/styles/recurrence-editor/_theme.bootstrap.scss +0 -1
  337. package/styles/recurrence-editor/_theme.bootstrap4.scss +0 -1
  338. package/styles/recurrence-editor/_theme.bootstrap5-dark.scss +0 -1
  339. package/styles/recurrence-editor/_theme.bootstrap5.3.scss +0 -1
  340. package/styles/recurrence-editor/_theme.bootstrap5.scss +0 -1
  341. package/styles/recurrence-editor/_theme.fabric-dark.scss +0 -1
  342. package/styles/recurrence-editor/_theme.fabric.scss +0 -1
  343. package/styles/recurrence-editor/_theme.fluent-dark.scss +0 -1
  344. package/styles/recurrence-editor/_theme.fluent.scss +0 -1
  345. package/styles/recurrence-editor/_theme.fluent2.scss +0 -1
  346. package/styles/recurrence-editor/_theme.highcontrast-light.scss +0 -1
  347. package/styles/recurrence-editor/_theme.highcontrast.scss +0 -1
  348. package/styles/recurrence-editor/_theme.material-dark.scss +0 -1
  349. package/styles/recurrence-editor/_theme.material.scss +0 -1
  350. package/styles/recurrence-editor/_theme.material3-dark.scss +0 -1
  351. package/styles/recurrence-editor/_theme.material3.scss +0 -1
  352. package/styles/recurrence-editor/_theme.tailwind-dark.scss +0 -1
  353. package/styles/recurrence-editor/_theme.tailwind.scss +0 -1
  354. package/styles/recurrence-editor/_theme.tailwind3.scss +0 -1
  355. package/styles/schedule/_all.bds.scss +0 -2
  356. package/styles/schedule/_all.bootstrap-dark.scss +0 -2
  357. package/styles/schedule/_all.bootstrap.scss +0 -2
  358. package/styles/schedule/_all.bootstrap4.scss +0 -2
  359. package/styles/schedule/_all.bootstrap5-dark.scss +0 -2
  360. package/styles/schedule/_all.bootstrap5.3.scss +0 -2
  361. package/styles/schedule/_all.bootstrap5.scss +0 -2
  362. package/styles/schedule/_all.fabric-dark.scss +0 -2
  363. package/styles/schedule/_all.fabric.scss +0 -2
  364. package/styles/schedule/_all.fluent-dark.scss +0 -2
  365. package/styles/schedule/_all.fluent.scss +0 -2
  366. package/styles/schedule/_all.fluent2.scss +0 -2
  367. package/styles/schedule/_all.highcontrast-light.scss +0 -2
  368. package/styles/schedule/_all.highcontrast.scss +0 -2
  369. package/styles/schedule/_all.material-dark.scss +0 -2
  370. package/styles/schedule/_all.material.scss +0 -2
  371. package/styles/schedule/_all.material3-dark.scss +0 -2
  372. package/styles/schedule/_all.material3.scss +0 -2
  373. package/styles/schedule/_all.tailwind-dark.scss +0 -2
  374. package/styles/schedule/_all.tailwind.scss +0 -2
  375. package/styles/schedule/_all.tailwind3.scss +0 -2
  376. package/styles/schedule/_bigger.bds.scss +0 -3
  377. package/styles/schedule/_bigger.bootstrap-dark.scss +0 -3
  378. package/styles/schedule/_bigger.bootstrap.scss +0 -3
  379. package/styles/schedule/_bigger.bootstrap4.scss +0 -3
  380. package/styles/schedule/_bigger.bootstrap5-dark.scss +0 -3
  381. package/styles/schedule/_bigger.bootstrap5.3.scss +0 -3
  382. package/styles/schedule/_bigger.bootstrap5.scss +0 -3
  383. package/styles/schedule/_bigger.fabric-dark.scss +0 -3
  384. package/styles/schedule/_bigger.fabric.scss +0 -3
  385. package/styles/schedule/_bigger.fluent-dark.scss +0 -3
  386. package/styles/schedule/_bigger.fluent.scss +0 -3
  387. package/styles/schedule/_bigger.fluent2.scss +0 -3
  388. package/styles/schedule/_bigger.highcontrast-light.scss +0 -3
  389. package/styles/schedule/_bigger.highcontrast.scss +0 -3
  390. package/styles/schedule/_bigger.material-dark.scss +0 -3
  391. package/styles/schedule/_bigger.material.scss +0 -3
  392. package/styles/schedule/_bigger.material3-dark.scss +0 -3
  393. package/styles/schedule/_bigger.material3.scss +0 -3
  394. package/styles/schedule/_bigger.tailwind-dark.scss +0 -3
  395. package/styles/schedule/_bigger.tailwind.scss +0 -3
  396. package/styles/schedule/_bigger.tailwind3.scss +0 -3
  397. package/styles/schedule/_layout.bds.scss +0 -3
  398. package/styles/schedule/_layout.bootstrap-dark.scss +0 -3
  399. package/styles/schedule/_layout.bootstrap.scss +0 -3
  400. package/styles/schedule/_layout.bootstrap4.scss +0 -3
  401. package/styles/schedule/_layout.bootstrap5-dark.scss +0 -3
  402. package/styles/schedule/_layout.bootstrap5.3.scss +0 -3
  403. package/styles/schedule/_layout.bootstrap5.scss +0 -3
  404. package/styles/schedule/_layout.fabric-dark.scss +0 -3
  405. package/styles/schedule/_layout.fabric.scss +0 -3
  406. package/styles/schedule/_layout.fluent-dark.scss +0 -3
  407. package/styles/schedule/_layout.fluent.scss +0 -3
  408. package/styles/schedule/_layout.fluent2.scss +0 -3
  409. package/styles/schedule/_layout.highcontrast-light.scss +0 -3
  410. package/styles/schedule/_layout.highcontrast.scss +0 -3
  411. package/styles/schedule/_layout.material-dark.scss +0 -3
  412. package/styles/schedule/_layout.material.scss +0 -3
  413. package/styles/schedule/_layout.material3-dark.scss +0 -3
  414. package/styles/schedule/_layout.material3.scss +0 -3
  415. package/styles/schedule/_layout.tailwind-dark.scss +0 -3
  416. package/styles/schedule/_layout.tailwind.scss +0 -3
  417. package/styles/schedule/_layout.tailwind3.scss +0 -3
  418. package/styles/schedule/_theme-variables.bds.scss +0 -1
  419. package/styles/schedule/_theme-variables.bootstrap-dark.scss +0 -1
  420. package/styles/schedule/_theme-variables.bootstrap.scss +0 -1
  421. package/styles/schedule/_theme-variables.bootstrap4.scss +0 -1
  422. package/styles/schedule/_theme-variables.bootstrap5-dark.scss +0 -1
  423. package/styles/schedule/_theme-variables.bootstrap5.3.scss +0 -1
  424. package/styles/schedule/_theme-variables.bootstrap5.scss +0 -1
  425. package/styles/schedule/_theme-variables.fabric-dark.scss +0 -1
  426. package/styles/schedule/_theme-variables.fabric.scss +0 -1
  427. package/styles/schedule/_theme-variables.fluent-dark.scss +0 -1
  428. package/styles/schedule/_theme-variables.fluent.scss +0 -1
  429. package/styles/schedule/_theme-variables.fluent2.scss +0 -1
  430. package/styles/schedule/_theme-variables.highcontrast-light.scss +0 -1
  431. package/styles/schedule/_theme-variables.highcontrast.scss +0 -1
  432. package/styles/schedule/_theme-variables.material-dark.scss +0 -1
  433. package/styles/schedule/_theme-variables.material.scss +0 -1
  434. package/styles/schedule/_theme-variables.material3-dark.scss +0 -1
  435. package/styles/schedule/_theme-variables.material3.scss +0 -1
  436. package/styles/schedule/_theme-variables.tailwind-dark.scss +0 -1
  437. package/styles/schedule/_theme-variables.tailwind.scss +0 -1
  438. package/styles/schedule/_theme.bds.scss +0 -4
  439. package/styles/schedule/_theme.bootstrap-dark.scss +0 -4
  440. package/styles/schedule/_theme.bootstrap.scss +0 -4
  441. package/styles/schedule/_theme.bootstrap4.scss +0 -4
  442. package/styles/schedule/_theme.bootstrap5-dark.scss +0 -4
  443. package/styles/schedule/_theme.bootstrap5.3.scss +0 -4
  444. package/styles/schedule/_theme.bootstrap5.scss +0 -4
  445. package/styles/schedule/_theme.fabric-dark.scss +0 -4
  446. package/styles/schedule/_theme.fabric.scss +0 -4
  447. package/styles/schedule/_theme.fluent-dark.scss +0 -4
  448. package/styles/schedule/_theme.fluent.scss +0 -4
  449. package/styles/schedule/_theme.fluent2.scss +0 -4
  450. package/styles/schedule/_theme.highcontrast-light.scss +0 -4
  451. package/styles/schedule/_theme.highcontrast.scss +0 -4
  452. package/styles/schedule/_theme.material-dark.scss +0 -4
  453. package/styles/schedule/_theme.material.scss +0 -4
  454. package/styles/schedule/_theme.material3-dark.scss +0 -4
  455. package/styles/schedule/_theme.material3.scss +0 -4
  456. package/styles/schedule/_theme.tailwind-dark.scss +0 -4
  457. package/styles/schedule/_theme.tailwind.scss +0 -4
  458. package/styles/schedule/_theme.tailwind3.scss +0 -4
  459. /package/styles/recurrence-editor/{_theme-variables.tailwind3.scss → _theme-variables.scss} +0 -0
  460. /package/styles/schedule/{_theme-variables.tailwind3.scss → _theme-variables.scss} +0 -0
@@ -1,4 +1,4 @@
1
- import { Component, ModuleDeclaration, Property, Event, Animation, Collection, append } from '@syncfusion/ej2-base';import { EventHandler, EmitType, Browser, Internationalization, getDefaultDateObject, cldrData, L10n } from '@syncfusion/ej2-base';import { getValue, compile, extend, isNullOrUndefined, NotifyPropertyChanges, INotifyPropertyChanged, Complex } from '@syncfusion/ej2-base';import { getElement, removeClass, addClass, classList, remove, SanitizeHtmlHelper } from '@syncfusion/ej2-base';import { createSpinner, hideSpinner, showSpinner } from '@syncfusion/ej2-popups';import { HeaderRenderer } from '../renderer/header-renderer';import { Scroll } from '../actions/scroll';import { ScheduleTouch } from '../actions/touch';import { KeyboardInteraction } from '../actions/keyboard';import { Data } from '../actions/data';import { View, CurrentAction, ReturnType, WeekRule, NavigationDirection } from '../base/type';import { EventBase } from '../event-renderer/event-base';import { InlineEdit } from '../event-renderer/inline-edit';import { QuickPopups } from '../popups/quick-popups';import { EventTooltip } from '../popups/event-tooltip';import { EventWindow } from '../popups/event-window';import { Render } from '../renderer/renderer';import { Day } from '../renderer/day';import { Week } from '../renderer/week';import { WorkWeek } from '../renderer/work-week';import { Month } from '../renderer/month';import { Year } from '../renderer/year';import { Agenda } from '../renderer/agenda';import { MonthAgenda } from '../renderer/month-agenda';import { TimelineViews } from '../renderer/timeline-view';import { TimelineMonth } from '../renderer/timeline-month';import { TimelineYear } from '../renderer/timeline-year';import { WorkHours } from '../models/work-hours';import { TimeScale } from '../models/time-scale';import { QuickInfoTemplates } from '../models/quick-info-templates';import { HeaderRows } from '../models/header-rows';import { Crud } from '../actions/crud';import { Resize } from '../actions/resize';import { DragAndDrop } from '../actions/drag';import { VirtualScroll } from '../actions/virtual-scroll';import { WorkCellInteraction } from '../actions/work-cells';import { WorkHoursModel, ViewsModel, EventSettingsModel, GroupModel, ResourcesModel, TimeScaleModel, ToolbarItemModel } from '../models/models';import { QuickInfoTemplatesModel, HeaderRowsModel } from '../models/models';import { EventSettings } from '../models/event-settings';import { Group } from '../models/group';import { Resources } from '../models/resources';import { ICalendarExport } from '../exports/calendar-export';import { ICalendarImport } from '../exports/calendar-import';import { ExcelExport } from '../exports/excel-export';import { Print } from '../exports/print';import { IRenderer, ActionEventArgs, NavigatingEventArgs, CellClickEventArgs, RenderCellEventArgs, ScrollCss, TimezoneFields, ExcelExportEventArgs, BeforePasteEventArgs, TooltipOpenEventArgs } from '../base/interface';import { EventClickArgs, EventRenderedArgs, PopupOpenEventArgs, UIStateArgs, DragEventArgs, ResizeEventArgs } from '../base/interface';import { EventFieldsMapping, TdData, ResourceDetails, ResizeEdges, StateArgs, ExportOptions, SelectEventArgs } from '../base/interface';import { ViewsData, PopupCloseEventArgs, HoverEventArgs, MoreEventsClickArgs, ScrollEventArgs, CallbackFunction, BeforePrintEventArgs } from '../base/interface';import { CalendarUtil, Gregorian, Islamic, CalendarType } from '../../common/calendar-util';import { ResourceBase } from '../base/resource';import { Timezone, timezoneData } from '../timezone/timezone';import { RecurrenceEditor } from '../../recurrence-editor/recurrence-editor';import * as events from '../base/constant';import * as cls from '../base/css-constant';import * as util from '../base/util';import { ToolbarItem } from '../models/toolbar';
1
+ import { Component, ModuleDeclaration, Property, Event, Animation, Collection, append } from '@syncfusion/ej2-base';
2
2
  import {ComponentModel} from '@syncfusion/ej2-base';
3
3
 
4
4
  /**
@@ -7,946 +7,946 @@ import {ComponentModel} from '@syncfusion/ej2-base';
7
7
  export interface ScheduleModel extends ComponentModel{
8
8
 
9
9
  /**
10
- * Sets the `width` of the Schedule component, accepting both string and number values.
11
- *
12
- * {% codeBlock src='schedule/width/index.md' %}{% endcodeBlock %}
13
- *
14
- * The string value can be either pixel or percentage format.
15
- * When set to `auto`, the Schedule width gets auto-adjusted and display its content related to the viewable screen size.
16
- *
17
- * @default 'auto'
18
- */
19
- width?: string | number;
20
-
21
- /**
22
- * Sets the `height` of the Schedule component, accepting both string and number values.
23
- *
24
- * {% codeBlock src='schedule/height/index.md' %}{% endcodeBlock %}
25
- *
26
- * The string type includes either pixel or percentage values.
27
- * When `height` is set with specific pixel value, then the Schedule will be rendered to that specified space.
28
- * In case, if `auto` value is set, then the height of the Schedule gets auto-adjusted within the given container.
29
- *
30
- * @default 'auto'
31
- */
32
- height?: string | number;
33
-
34
- /**
35
- * When set to `false`, hides the header bar of the Schedule from UI. By default,
36
- * the header bar holds the date and view navigation options, to which the user can add their own custom items onto it.
37
- *
38
- * @default true
39
- */
40
- showHeaderBar?: boolean;
41
-
42
- /**
43
- * When set to `false`, hides the current time indicator from the Schedule. Otherwise,
44
- * it visually depicts the live current system time appropriately on the user interface.
45
- *
46
- * @default true
47
- */
48
- showTimeIndicator?: boolean;
49
-
50
- /**
51
- * Defines whether to enable date navigations via swipe in touch devices or not.
52
- *
53
- * @default true
54
- */
55
- allowSwiping?: boolean;
56
-
57
- /**
58
- * Specifies whether overlapping appointments are allowed within the same time slot in the Scheduler.
59
- *
60
- * @remarks
61
- * When set to `false`, the Scheduler enforces restrictions to prevent creating or displaying overlapping appointments within the same time duration.
62
- * This setting includes the following limitations:
63
- *
64
- * - **Initial Loading**: The alert for overlapping appointments will not display during the initial load. Overlapping events will be ignored in rendering, including occurrences.
65
- *
66
- * - **Dynamic Add/Edit**: When adding or editing events dynamically, overlapping validation is performed. If an overlap is detected for a single event, an alert will be shown, and the event will not be saved.
67
- *
68
- * For recurring events, an alert will be displayed, and the event will not be saved. To save recurring events while ignoring overlapping occurrences, trigger the `PopupOpen` event. The `Data` field will contain the parent recurrence data, and the `overlapEvents` field will contain the overlap events. Using these details, users can include exceptions in the recurrence events and save them with the `addEvent` method.
69
- *
70
- * - **Out-of-Date-Range Events**: The `allowOverlap` setting only prevents overlaps for events within the current view date range. To validate overlap events outside the current date range, use the `actionBegin` event to send a request to the server for validation and return a promise-based response. Assign this promise response to the `promise` field in `ActionEventArgs` to handle asynchronous server validation.
71
- *
72
- * @default true
73
- */
74
- allowOverlap?: boolean;
75
-
76
- /**
77
- * Specifies the number of additional rows or columns to render outside the visible area during virtual scrolling.
78
- * This property helps in achieving smoother scrolling by pre-loading data just outside the visible region.
79
- *
80
- * @remarks
81
- * The default value is 3. Increasing this value can result in smoother scrolling but may impact performance
82
- * with larger datasets. Decreasing it can improve performance but may cause more frequent data fetches during scrolling.
83
- * This property only takes effect when `allowVirtualScrolling` is enabled for the current view.
84
- *
85
- * @default 3
86
- */
87
- overscanCount?: number;
88
-
89
- /**
90
- * To render the custom toolbar items, the `toolbarItems` property can be used. It contains built-in and custom toolbar items.
91
- * To avail the built-in toolbar items, the below string values are assigned to the `name` property of the `ToolbarItemModel`.
92
- * * `Previous`: Schedule component navigates to the previous date from the current date.
93
- * * `Next`: Schedule component navigates to the next date from the current date.
94
- * * `Today`: Schedule component navigates to the current date from any date.
95
- * * `Views`: Schedule component render the defined view options in the toolbar. If view option is not defined, then it will render default view options in the Schedule.
96
- * * `DateRangeText`: Schedule component displays the current date text range.
97
- * * `NewEvent`: Schedule component render the icon to add a new event.
98
- *
99
- * @default []
100
- */
101
- toolbarItems?: ToolbarItemModel[]
102
-
103
- /**
104
- * To set the active view on scheduler, the `currentView` property can be used and it usually accepts either of the following available
105
- * view options. The view option specified in this property will be initially loaded on the schedule.
106
- * * `Day`: Denotes Day view of the scheduler.
107
- * * `Week`: Denotes Week view of the scheduler.
108
- * * `WorkWeek`: Denotes Work Week view of the scheduler.
109
- * * `Month`: Denotes Month view of the scheduler.
110
- * * `Year`: Denotes Year view of the scheduler.
111
- * * `Agenda`: Denotes Agenda view of the scheduler.
112
- * * `MonthAgenda`: Denotes Month Agenda view of the scheduler.
113
- * * `TimelineDay`: Denotes Timeline Day view of the scheduler.
114
- * * `TimelineWeek`: Denotes Timeline Week view of the scheduler.
115
- * * `TimelineWorkWeek`: Denotes Timeline Work Week view of the scheduler.
116
- * * `TimelineMonth`: Denotes Timeline Month view of the scheduler.
117
- * * `TimelineYear`: Denotes Timeline Year view of the scheduler.
118
- *
119
- * {% codeBlock src='schedule/currentView/index.md' %}{% endcodeBlock %}
120
- *
121
- * @default 'Week'
122
- */
123
- currentView?: View;
124
-
125
- /**
126
- * This property holds the views collection and its configurations. It accepts either the array of view names or the array of view
127
- * objects that holds different configurations for each views. By default,
128
- * Schedule displays all the views namely `Day`, `Week`, `Work Week`, `Month` and `Agenda`.
129
- *
130
- * Example for array of views:
131
- * {% codeBlock src="schedule/views/index.md" %}{% endcodeBlock %}
132
- *
133
- * Example for array of view objects:
134
- * {% codeBlock src='schedule/viewOption/index.md' %}{% endcodeBlock %}
135
- *
136
- * @default '["Day", "Week", "WorkWeek", "Month", "Agenda"]'
137
- */
138
- views?: View[] | ViewsModel[];
139
-
140
- /**
141
- * To mark the active (current) date on the Schedule, `selectedDate` property can be defined.
142
- * Usually, it defaults to the current System date.
143
- *
144
- * {% codeBlock src='schedule/selectedDate/index.md' %}{% endcodeBlock %}
145
- *
146
- * @default 'new Date()'
147
- * @aspDefaultValue DateTime.Now
148
- */
149
- selectedDate?: Date;
150
-
151
- /**
152
- * To define the minimum date on the Schedule, `minDate` property can be defined.
153
- * Usually, it defaults to the new Date(1900, 0, 1).
154
- *
155
- * {% codeBlock src='schedule/minDate/index.md' %}{% endcodeBlock %}
156
- *
157
- * @default new Date(1900, 0, 1)
158
- * @aspDefaultValue new DateTime(1900, 1, 1)
159
- */
160
- minDate?: Date;
161
-
162
- /**
163
- * To define the maximum date on the Schedule, `maxDate` property can be defined.
164
- * Usually, it defaults to the new Date(2099, 11, 31).
165
- *
166
- * {% codeBlock src='schedule/maxDate/index.md' %}{% endcodeBlock %}
167
- *
168
- * @default new Date(2099, 11, 31)
169
- * @aspDefaultValue new DateTime(2099, 12, 31)
170
- */
171
- maxDate?: Date;
172
-
173
- /**
174
- * By default, Schedule follows the date-format as per the default culture assigned to it.
175
- * It is also possible to manually set specific date format by using the `dateFormat` property.
176
- *
177
- * {% codeBlock src='schedule/dateFormat/index.md' %}{% endcodeBlock %}
178
- *
179
- * The format of the date range label in the header bar depends on the `dateFormat` value or else based on the
180
- * locale assigned to the Schedule.
181
- *
182
- * @default null
183
- */
184
- dateFormat?: string;
185
-
186
- /**
187
- * It allows the Scheduler to display in other calendar modes.
188
- * By default, Scheduler is displayed in `Gregorian` calendar mode.
189
- *
190
- * {% codeBlock src='schedule/calendarMode/index.md' %}{% endcodeBlock %}
191
- *
192
- * To change the mode, you can set either `Gregorian` or `Islamic` as a value to this `calendarMode` property.
193
- *
194
- * @default 'Gregorian'
195
- */
196
- calendarMode?: CalendarType;
197
-
198
- /**
199
- * When set to `false`, it hides the weekend days of a week from the Schedule. The days which are not defined in the working days
200
- * collection are usually treated as weekend days.
201
- *
202
- * Note: By default, this option is not applicable on `Work Week` view.
203
- * For example, if the working days are defined as [1, 2, 3, 4], then the remaining days of that week will be considered as
204
- * the weekend days and will be hidden on all the views.
205
- *
206
- * @default true
207
- */
208
- showWeekend?: boolean;
209
-
210
- /**
211
- * This option allows the user to set the first day of a week on Schedule. It should be based on the locale set to it and each culture
212
- * defines its own first day of week values. If needed, the user can set it manually on his own by defining the value through
213
- * this property. It usually accepts the integer values, whereby 0 is always denoted as Sunday, 1 as Monday and so on.
214
- *
215
- * {% codeBlock src='schedule/firstDayOfWeek/index.md' %}{% endcodeBlock %}
216
- *
217
- * @default 0
218
- */
219
- firstDayOfWeek?: number;
220
-
221
- /**
222
- * It allows the Scheduler to display week numbers based on following available week options. The week
223
- * option specified in this property will be initially loaded on the schedule.
224
- * * `FirstDay`: Denotes that the first week of the year starts on the first day of the year and ends before the following designated first day of the week.
225
- * * `FirstFourDayWeek`:Denotes that the first week of the year is the first week with four or more days before the designated first day of the week.
226
- * * `FirstFullWeek`: Denotes that the first week of the year begins on the first occurrence of the designated first day of the week on or after the first day of the year.
227
- *
228
- * {% codeBlock src='schedule/weekRule/index.md' %}{% endcodeBlock %}
229
- *
230
- * @default 'FirstDay'
231
- */
232
- weekRule?: WeekRule;
233
-
234
- /**
235
- * It is used to set the working days on Schedule. The only days that are defined in this collection will be rendered on the `workWeek`
236
- * view whereas on other views, it will display all the usual days and simply highlights the working days with different shade.
237
- *
238
- * {% codeBlock src='schedule/workDays/index.md' %}{% endcodeBlock %}
239
- *
240
- * @default '[1, 2, 3, 4, 5]'
241
- * @aspType int[]
242
- */
243
- workDays?: number[];
244
-
245
- /**
246
- * This option allows the user to set the number of months count to be displayed on the Schedule.
247
- *
248
- * {% codeBlock src='schedule/monthsCount/index.md' %}{% endcodeBlock %}
249
- *
250
- * @default 12
251
- * @aspType int
252
- */
253
- monthsCount?: number;
254
-
255
- /**
256
- * It is used to specify the starting hour, from which the Schedule starts to display. It accepts the time string in a short skeleton
257
- * format and also, hides the time beyond the specified start time.
258
- *
259
- * {% codeBlock src='schedule/startHour/index.md' %}{% endcodeBlock %}
260
- *
261
- * @default '00:00'
262
- */
263
- startHour?: string;
264
-
265
- /**
266
- * It is used to specify the end hour, at which the Schedule ends. It too accepts the time string in a short skeleton format.
267
- *
268
- * {% codeBlock src='schedule/endHour/index.md' %}{% endcodeBlock %}
269
- *
270
- * @default '24:00'
271
- */
272
- endHour?: string;
273
-
274
- /**
275
- * By default, Schedule follows the time-format as per the default culture assigned to it.
276
- * It is also possible to manually set specific time format by using the `timeFormat` property.
277
- *
278
- * {% codeBlock src='schedule/timeFormat/index.md' %}{% endcodeBlock %}
279
- *
280
- * @default null
281
- */
282
- timeFormat?: string;
283
-
284
- /**
285
- * Specifies whether to enable the rendering of untrusted HTML values in the Schedule component.
286
- * When this property is enabled, the component will sanitize any suspected untrusted strings and scripts before rendering them.
287
- *
288
- * @default true
289
- */
290
- enableHtmlSanitizer?: boolean;
291
-
292
- /**
293
- * When set to `true`, If valid, the scroll on the all day row is activated when the all day row
294
- * height reaches the max height when the all day row is expanded.
295
- *
296
- * @default false
297
- */
298
- enableAllDayScroll?: boolean;
299
-
300
- /**
301
- * When set to `true`, the header view navigations are listed under the popup and if we enable resource grouping, the compact view will be enabled.
302
- *
303
- * @default false
304
- */
305
- enableAdaptiveUI?: boolean;
306
-
307
- /**
308
- * When set to `true`, allows the resizing of appointments. It allows the rescheduling of appointments either by changing the
309
- * start or end time by dragging the event resize handlers.
310
- *
311
- * @default true
312
- */
313
- allowResizing?: boolean;
314
-
315
- /**
316
- * The working hours should be highlighted on Schedule with different color shade and an additional option must be provided to
317
- * highlight it or not. This functionality is handled through `workHours` property and the start work hour should be 9 AM by default
318
- * and end work hour should point to 6 PM. The start and end working hours needs to be provided as Time value of short skeleton type.
319
- *
320
- * {% codeBlock src='schedule/workHours/index.md' %}{% endcodeBlock %}
321
- *
322
- * @default { highlight: true, start: '09:00', end: '18:00' }
323
- */
324
- workHours?: WorkHoursModel;
325
-
326
- /**
327
- * Allows to set different time duration on Schedule along with the customized grid count. It also has template option to
328
- * customize the time slots with required time values in its own format.
329
- *
330
- * {% codeBlock src='schedule/timeScale/index.md' %}{% endcodeBlock %}
331
- *
332
- * @default { enable: true, interval: 60, slotCount: 2, majorSlotTemplate: null, minorSlotTemplate: null }
333
- */
334
- timeScale?: TimeScaleModel;
335
-
336
- /**
337
- * When set to `true`, allows the keyboard interaction to take place on Schedule.
338
- *
339
- * @default true
340
- */
341
- allowKeyboardInteraction?: boolean;
342
-
343
- /**
344
- * When set to `true`, allows the appointments to move over the time slots. When an appointment is dragged, both its start
345
- * and end time tends to change simultaneously allowing it to reschedule the appointment on some other time.
346
- *
347
- * @default true
348
- */
349
- allowDragAndDrop?: boolean;
350
-
351
- /**
352
- * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
353
- * the date header cells. The field that can be accessed via this template is `date`.
354
- *
355
- * {% codeBlock src='schedule/dateHeaderTemplate/index.md' %}{% endcodeBlock %}
356
- *
357
- * @default null
358
- * @angularType string | object
359
- * @reactType string | function | JSX.Element
360
- * @vueType string | function
361
- * @aspType string
362
- */
363
- dateHeaderTemplate?: string | Function;
364
-
365
- /**
366
- * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the header date range.
367
- *
368
- * @default null
369
- * @angularType string | object
370
- * @reactType string | function | JSX.Element
371
- * @vueType string | function
372
- * @aspType string
373
- */
374
- dateRangeTemplate?: string | Function;
375
-
376
- /**
377
- * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
378
- * the month date cells. This template is only applicable for month view day cells.
379
- *
380
- * {% codeBlock src='schedule/cellHeaderTemplate/index.md' %}{% endcodeBlock %}
381
- *
382
- * @default null
383
- * @angularType string | object
384
- * @reactType string | function | JSX.Element
385
- * @vueType string | function
386
- * @aspType string
387
- */
388
- cellHeaderTemplate?: string | Function;
389
-
390
- /**
391
- * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
392
- * the day header cells. This template is only applicable for year view header cells.
393
- *
394
- * {% codeBlock src='schedule/dayHeaderTemplate/index.md' %}{% endcodeBlock %}
395
- *
396
- * @default null
397
- * @angularType string | object
398
- * @reactType string | function | JSX.Element
399
- * @vueType string | function
400
- * @aspType string
401
- */
402
- dayHeaderTemplate?: string | Function;
403
-
404
- /**
405
- * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
406
- * the month header cells. This template is only applicable for year view header cells.
407
- *
408
- * {% codeBlock src='schedule/monthHeaderTemplate/index.md' %}{% endcodeBlock %}
409
- *
410
- * @default null
411
- * @angularType string | object
412
- * @reactType string | function | JSX.Element
413
- * @vueType string | function
414
- * @aspType string
415
- */
416
- monthHeaderTemplate?: string | Function;
417
-
418
- /**
419
- * The template option which is used to render the customized work cells on the Schedule. Here, the template accepts either
420
- * the string or HTMLElement as template design and then the parsed design is displayed onto the work cells.
421
- * The fields accessible via template are as follows.
422
- * * `date`: Returns the date of the cell.
423
- * * `groupIndex`: Returns the group index of the cell.
424
- * * `type`: Returns the type of the work cell.
425
- *
426
- * Refer to the below code snippet.
427
- *
428
- * {% codeBlock src='schedule/cellTemplate/index.md' %}{% endcodeBlock %}
429
- *
430
- * @default null
431
- * @angularType string | object
432
- * @reactType string | function | JSX.Element
433
- * @vueType string | function
434
- * @aspType string
435
- */
436
- cellTemplate?: string | Function;
437
-
438
- /**
439
- * When set to `true`, makes the Schedule to render in a read only mode. No CRUD actions will be allowed at this time.
440
- *
441
- * @default false
442
- */
443
- readonly?: boolean;
444
-
445
- /**
446
- * When set to `true`, displays a quick popup with cell or event details on single clicking over the cells or on events.
447
- * By default, it is set to `true`.
448
- *
449
- * @default true
450
- */
451
- showQuickInfo?: boolean;
452
-
453
- /**
454
- * Indicates whether the editor window and quick dialog popups are created and rendered in the DOM by default.
455
- *
456
- * When set to `true`, the popups are created during Scheduler initialization and reused throughout
457
- * the component's lifetime. When set to `false`, the popups are created on demand when opened and
458
- * destroyed when closed, reducing initial load but adding per-open creation cost.
459
- *
460
- * @remarks
461
- * - Use `true` to minimize runtime allocations during interactions at the cost of higher initial setup.
462
- * - Use `false` to reduce initial render cost and memory footprint when popups are infrequently used.
463
- * - Toggling from `false` to `true` will keep subsequently created popups alive for reuse.
464
- * *
465
- * @example
466
- * // Configure the editor to defer default popup creation.
467
- * const options: ScheduleOptions= {
468
- * prerenderDialogs: false
469
- * };
470
- *
471
- * @default true
472
- */
473
- prerenderDialogs?: boolean;
474
-
475
- /**
476
- * This property helps user to add/edit the event in inline. By default, it is set to `false`.
477
- *
478
- * @default false
479
- */
480
- allowInline?: boolean;
481
-
482
- /**
483
- * This property helps user to allow/prevent the selection of multiple cells. By default, it is set to `true`.
484
- *
485
- * @default true
486
- */
487
- allowMultiCellSelection?: boolean;
488
-
489
- /**
490
- * This property helps user to allow/prevent the selection of multiple days(rows). By default, it is set to `true`.
491
- *
492
- * @default true
493
- */
494
- allowMultiRowSelection?: boolean;
495
-
496
- /**
497
- * This property helps to show quick popup after multiple cell selection. By default, it is set to `false`.
498
- *
499
- * @default false
500
- */
501
- quickInfoOnSelectionEnd?: boolean;
502
-
503
- /**
504
- * When set to `true`, displays the week number of the current view date range. By default, it is set to `false`.
505
- *
506
- * @default false
507
- */
508
- showWeekNumber?: boolean;
509
-
510
- /**
511
- * when set to `true`, allows the height of the work-cells to adjust automatically
512
- * based on the number of appointments present in those time ranges.
513
- *
514
- * @default false
515
- */
516
- rowAutoHeight?: boolean;
517
-
518
- /**
519
- * This property helps to drag the multiple selected events. By default, it is set to `false`.
520
- *
521
- * @default false
522
- */
523
- allowMultiDrag?: boolean;
524
-
525
- /**
526
- * This property helps render the year view customized months. By default, it is set to `0`.
527
- *
528
- * {% codeBlock src='schedule/firstMonthOfYear/index.md' %}{% endcodeBlock %}
529
- *
530
- * @default 0
531
- */
532
- firstMonthOfYear?: number;
533
-
534
- /**
535
- * The template option to render the customized editor window. The form elements defined within this template should be accompanied
536
- * with `e-field` class, so as to fetch and process it from internally.
537
- *
538
- * {% codeBlock src='schedule/editorTemplate/index.md' %}{% endcodeBlock %}
539
- *
540
- * @default null
541
- * @angularType string | object
542
- * @reactType string | function | JSX.Element
543
- * @vueType string | function
544
- * @aspType string
545
- */
546
- editorTemplate?: string | Function;
547
-
548
- /**
549
- * The template option to render the customized header of the editor window.
550
- *
551
- *
552
- * @default null
553
- * @angularType string | object
554
- * @reactType string | function | JSX.Element
555
- * @vueType string | function
556
- * @aspType string
557
- */
558
- editorHeaderTemplate?: string | Function;
559
-
560
- /**
561
- * The template option to render the customized footer of the editor window.
562
- *
563
- *
564
- * @default null
565
- * @angularType string | object
566
- * @reactType string | function | JSX.Element
567
- * @vueType string | function
568
- * @aspType string
569
- */
570
- editorFooterTemplate?: string | Function;
571
-
572
- /**
573
- * The template option to customize the quick window. The three sections of the quick popup whereas the header, content,
574
- * and footer can be easily customized with individual template option.
575
- *
576
- * {% codeBlock src='schedule/quickInfoTemplates/index.md' %}{% endcodeBlock %}
577
- *
578
- * @default null
579
- */
580
- quickInfoTemplates?: QuickInfoTemplatesModel;
581
-
582
- /**
583
- * Sets the number of days to be displayed by default in Agenda View and in case of virtual scrolling,
584
- * the number of days will be fetched on each scroll-end based on this count.
585
- *
586
- * {% codeBlock src='schedule/agendaDaysCount/index.md' %}{% endcodeBlock %}
587
- *
588
- * @default 7
589
- */
590
- agendaDaysCount?: number;
591
-
592
- /**
593
- * The days which does not has even a single event to display will be hidden from the UI of Agenda View by default.
594
- * When this property is set to `false`, the empty dates will also be displayed on the Schedule.
595
- *
596
- * @default true
597
- */
598
- hideEmptyAgendaDays?: boolean;
599
-
600
- /**
601
- * The recurrence validation will be done by default. When this property is set to `false`, the recurrence validation will be skipped.
602
- *
603
- * @default true
604
- */
605
- enableRecurrenceValidation?: boolean;
606
-
607
- /**
608
- * Schedule will be assigned with specific timezone, so as to display the events in it accordingly. By default,
609
- * Schedule dates are processed with System timezone, as no timezone will be assigned specifically to the Schedule at the initial time.
610
- * Whenever the Schedule is bound to remote data services, it is always recommended to set specific timezone to Schedule to make the
611
- * events on it to display on the same time irrespective of the system timezone. It usually accepts
612
- * the valid [IANA](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) timezone names.
613
- *
614
- * {% codeBlock src='schedule/timezone/index.md' %}{% endcodeBlock %}
615
- *
616
- * @default null
617
- */
618
- timezone?: string;
619
-
620
- /**
621
- * Complete set of settings related to Schedule events to bind it to local or remote dataSource, map applicable database fields and
622
- * other validation to be carried out on the available fields.
623
- *
624
- * {% codeBlock src='schedule/eventSettings/index.md' %}{% endcodeBlock %}
625
- *
626
- * @default null
627
- */
628
- eventSettings?: EventSettingsModel;
629
-
630
- /**
631
- * Allows to define the collection of timezone items in the Schedule. Only the items bound to this property get listed out in the timezone dropdown of the appointment window.
632
- *
633
- * {% codeBlock src='schedule/timezoneDatasource/index.md' %}{% endcodeBlock %}
634
- *
635
- * @default timezoneData
636
- */
637
- timezoneDataSource?: TimezoneFields[];
638
-
639
- /**
640
- * Template option to customize the resource header bar. Here, the template accepts either
641
- * the string or HTMLElement as template design and then the parsed design is displayed onto the resource header cells.
642
- * The following can be accessible via template.
643
- * * `resource` - All the resource fields.
644
- * * `resourceData` - Object collection of current resource.
645
- *
646
- * Refer to the below code snippet.
647
- *
648
- * {% codeBlock src='schedule/resourceHeaderTemplate/index.md' %}{% endcodeBlock %}
649
- *
650
- * @default null
651
- * @angularType string | object
652
- * @reactType string | function | JSX.Element
653
- * @vueType string | function
654
- * @aspType string
655
- */
656
- resourceHeaderTemplate?: string | Function;
657
-
658
- /**
659
- * Template option to customize the header indent bar. Here, the template accepts either
660
- * the string or HTMLElement as template design and then the parsed design is displayed onto the header indent cell.
661
- *
662
- * Refer to the below code snippet.
663
- *
664
- * {% codeBlock src='schedule/headerIndentTemplate/index.md' %}{% endcodeBlock %}
665
- *
666
- * @default null
667
- * @angularType string | object
668
- * @reactType string | function | JSX.Element
669
- * @vueType string | function
670
- * @aspType string
671
- */
672
- headerIndentTemplate?: string | Function;
673
-
674
- /**
675
- * Allows defining the group related settings of multiple resources. When this property is non-empty, it means
676
- * that the resources will be grouped on the schedule layout based on the provided resource names.
677
- *
678
- * {% codeBlock src='schedule/group/index.md' %}{% endcodeBlock %}
679
- *
680
- * @default {}
681
- */
682
- group?: GroupModel;
683
-
684
- /**
685
- * Allows defining the collection of resources to be displayed on the Schedule. The resource collection needs to be defined
686
- * with unique resource names to identify it along with the respective dataSource and field mapping options.
687
- *
688
- * {% codeBlock src='schedule/resources/index.md' %}{% endcodeBlock %}
689
- *
690
- * @default []
691
- */
692
- resources?: ResourcesModel[];
693
-
694
- /**
695
- * Allows defining the collection of custom header rows to display the year, month, week, date and hour label as an individual row
696
- * on the timeline view of the scheduler.
697
- *
698
- * {% codeBlock src='schedule/headerRows/index.md' %}{% endcodeBlock %}
699
- *
700
- * @default []
701
- */
702
- headerRows?: HeaderRowsModel[];
703
-
704
- /**
705
- * It is used to customize the Schedule which accepts custom CSS class names that defines specific user-defined styles and themes
706
- * to be applied on the Schedule element.
707
- *
708
- * {% codeBlock src='schedule/cssClass/index.md' %}{% endcodeBlock %}
709
- *
710
- * @default null
711
- */
712
- cssClass?: string;
713
-
714
- /**
715
- * Enables clipboard functionality for appointments, allowing them to be copied using keyboard shortcuts and pasted onto the Scheduler.
716
- * When set to `true`, users can use keyboard shortcuts to cut, copy appointments and paste them into different time slots or calendars.
717
- *
718
- * @default false
719
- * @remarks The `allowKeyboardInteraction` property should be enabled to use the keyboard shortcuts.
720
- */
721
- allowClipboard?: boolean;
722
-
723
- /**
724
- * It enables the external drag and drop support for appointments on scheduler, to be able to move them out of the scheduler layout.
725
- * When the drag area is explicitly set with specific DOM element name, the appointments can be dragged anywhere within the specified drag area location.
726
- *
727
- * {% codeBlock src='schedule/eventDragArea/index.md' %}{% endcodeBlock %}
728
- *
729
- * @default null
730
- */
731
- eventDragArea?: string;
732
-
733
- /**
734
- * Triggers after the scheduler component is created.
735
- *
736
- * @event 'created'
737
- */
738
- created?: EmitType<Record<string, any>>;
739
-
740
- /**
741
- * Triggers when the scheduler component is destroyed.
742
- *
743
- * @event 'destroyed'
744
- */
745
- destroyed?: EmitType<Record<string, any>>;
746
-
747
- /**
748
- * Triggers when the scheduler cells are single clicked or on single tap on the same cells in mobile devices.
749
- *
750
- * @event 'cellClick'
751
- */
752
- cellClick?: EmitType<CellClickEventArgs>;
10
+ * Sets the `width` of the Schedule component, accepting both string and number values.
11
+ *
12
+ * {% codeBlock src='schedule/width/index.md' %}{% endcodeBlock %}
13
+ *
14
+ * The string value can be either pixel or percentage format.
15
+ * When set to `auto`, the Schedule width gets auto-adjusted and display its content related to the viewable screen size.
16
+ *
17
+ * @default 'auto'
18
+ */
19
+ width?: string | number;
20
+
21
+ /**
22
+ * Sets the `height` of the Schedule component, accepting both string and number values.
23
+ *
24
+ * {% codeBlock src='schedule/height/index.md' %}{% endcodeBlock %}
25
+ *
26
+ * The string type includes either pixel or percentage values.
27
+ * When `height` is set with specific pixel value, then the Schedule will be rendered to that specified space.
28
+ * In case, if `auto` value is set, then the height of the Schedule gets auto-adjusted within the given container.
29
+ *
30
+ * @default 'auto'
31
+ */
32
+ height?: string | number;
33
+
34
+ /**
35
+ * When set to `false`, hides the header bar of the Schedule from UI. By default,
36
+ * the header bar holds the date and view navigation options, to which the user can add their own custom items onto it.
37
+ *
38
+ * @default true
39
+ */
40
+ showHeaderBar?: boolean;
41
+
42
+ /**
43
+ * When set to `false`, hides the current time indicator from the Schedule. Otherwise,
44
+ * it visually depicts the live current system time appropriately on the user interface.
45
+ *
46
+ * @default true
47
+ */
48
+ showTimeIndicator?: boolean;
49
+
50
+ /**
51
+ * Defines whether to enable date navigations via swipe in touch devices or not.
52
+ *
53
+ * @default true
54
+ */
55
+ allowSwiping?: boolean;
56
+
57
+ /**
58
+ * Specifies whether overlapping appointments are allowed within the same time slot in the Scheduler.
59
+ *
60
+ * @remarks
61
+ * When set to `false`, the Scheduler enforces restrictions to prevent creating or displaying overlapping appointments within the same time duration.
62
+ * This setting includes the following limitations:
63
+ *
64
+ * - **Initial Loading**: The alert for overlapping appointments will not display during the initial load. Overlapping events will be ignored in rendering, including occurrences.
65
+ *
66
+ * - **Dynamic Add/Edit**: When adding or editing events dynamically, overlapping validation is performed. If an overlap is detected for a single event, an alert will be shown, and the event will not be saved.
67
+ *
68
+ * For recurring events, an alert will be displayed, and the event will not be saved. To save recurring events while ignoring overlapping occurrences, trigger the `PopupOpen` event. The `Data` field will contain the parent recurrence data, and the `overlapEvents` field will contain the overlap events. Using these details, users can include exceptions in the recurrence events and save them with the `addEvent` method.
69
+ *
70
+ * - **Out-of-Date-Range Events**: The `allowOverlap` setting only prevents overlaps for events within the current view date range. To validate overlap events outside the current date range, use the `actionBegin` event to send a request to the server for validation and return a promise-based response. Assign this promise response to the `promise` field in `ActionEventArgs` to handle asynchronous server validation.
71
+ *
72
+ * @default true
73
+ */
74
+ allowOverlap?: boolean;
75
+
76
+ /**
77
+ * Specifies the number of additional rows or columns to render outside the visible area during virtual scrolling.
78
+ * This property helps in achieving smoother scrolling by pre-loading data just outside the visible region.
79
+ *
80
+ * @remarks
81
+ * The default value is 3. Increasing this value can result in smoother scrolling but may impact performance
82
+ * with larger datasets. Decreasing it can improve performance but may cause more frequent data fetches during scrolling.
83
+ * This property only takes effect when `allowVirtualScrolling` is enabled for the current view.
84
+ *
85
+ * @default 3
86
+ */
87
+ overscanCount?: number;
88
+
89
+ /**
90
+ * To render the custom toolbar items, the `toolbarItems` property can be used. It contains built-in and custom toolbar items.
91
+ * To avail the built-in toolbar items, the below string values are assigned to the `name` property of the `ToolbarItemModel`.
92
+ * * `Previous`: Schedule component navigates to the previous date from the current date.
93
+ * * `Next`: Schedule component navigates to the next date from the current date.
94
+ * * `Today`: Schedule component navigates to the current date from any date.
95
+ * * `Views`: Schedule component render the defined view options in the toolbar. If view option is not defined, then it will render default view options in the Schedule.
96
+ * * `DateRangeText`: Schedule component displays the current date text range.
97
+ * * `NewEvent`: Schedule component render the icon to add a new event.
98
+ *
99
+ * @default []
100
+ */
101
+ toolbarItems?: ToolbarItemModel[]
102
+
103
+ /**
104
+ * To set the active view on scheduler, the `currentView` property can be used and it usually accepts either of the following available
105
+ * view options. The view option specified in this property will be initially loaded on the schedule.
106
+ * * `Day`: Denotes Day view of the scheduler.
107
+ * * `Week`: Denotes Week view of the scheduler.
108
+ * * `WorkWeek`: Denotes Work Week view of the scheduler.
109
+ * * `Month`: Denotes Month view of the scheduler.
110
+ * * `Year`: Denotes Year view of the scheduler.
111
+ * * `Agenda`: Denotes Agenda view of the scheduler.
112
+ * * `MonthAgenda`: Denotes Month Agenda view of the scheduler.
113
+ * * `TimelineDay`: Denotes Timeline Day view of the scheduler.
114
+ * * `TimelineWeek`: Denotes Timeline Week view of the scheduler.
115
+ * * `TimelineWorkWeek`: Denotes Timeline Work Week view of the scheduler.
116
+ * * `TimelineMonth`: Denotes Timeline Month view of the scheduler.
117
+ * * `TimelineYear`: Denotes Timeline Year view of the scheduler.
118
+ *
119
+ * {% codeBlock src='schedule/currentView/index.md' %}{% endcodeBlock %}
120
+ *
121
+ * @default 'Week'
122
+ */
123
+ currentView?: View;
124
+
125
+ /**
126
+ * This property holds the views collection and its configurations. It accepts either the array of view names or the array of view
127
+ * objects that holds different configurations for each views. By default,
128
+ * Schedule displays all the views namely `Day`, `Week`, `Work Week`, `Month` and `Agenda`.
129
+ *
130
+ * Example for array of views:
131
+ * {% codeBlock src="schedule/views/index.md" %}{% endcodeBlock %}
132
+ *
133
+ * Example for array of view objects:
134
+ * {% codeBlock src='schedule/viewOption/index.md' %}{% endcodeBlock %}
135
+ *
136
+ * @default '["Day", "Week", "WorkWeek", "Month", "Agenda"]'
137
+ */
138
+ views?: View[] | ViewsModel[];
139
+
140
+ /**
141
+ * To mark the active (current) date on the Schedule, `selectedDate` property can be defined.
142
+ * Usually, it defaults to the current System date.
143
+ *
144
+ * {% codeBlock src='schedule/selectedDate/index.md' %}{% endcodeBlock %}
145
+ *
146
+ * @default 'new Date()'
147
+ * @aspDefaultValue DateTime.Now
148
+ */
149
+ selectedDate?: Date;
150
+
151
+ /**
152
+ * To define the minimum date on the Schedule, `minDate` property can be defined.
153
+ * Usually, it defaults to the new Date(1900, 0, 1).
154
+ *
155
+ * {% codeBlock src='schedule/minDate/index.md' %}{% endcodeBlock %}
156
+ *
157
+ * @default new Date(1900, 0, 1)
158
+ * @aspDefaultValue new DateTime(1900, 1, 1)
159
+ */
160
+ minDate?: Date;
161
+
162
+ /**
163
+ * To define the maximum date on the Schedule, `maxDate` property can be defined.
164
+ * Usually, it defaults to the new Date(2099, 11, 31).
165
+ *
166
+ * {% codeBlock src='schedule/maxDate/index.md' %}{% endcodeBlock %}
167
+ *
168
+ * @default new Date(2099, 11, 31)
169
+ * @aspDefaultValue new DateTime(2099, 12, 31)
170
+ */
171
+ maxDate?: Date;
172
+
173
+ /**
174
+ * By default, Schedule follows the date-format as per the default culture assigned to it.
175
+ * It is also possible to manually set specific date format by using the `dateFormat` property.
176
+ *
177
+ * {% codeBlock src='schedule/dateFormat/index.md' %}{% endcodeBlock %}
178
+ *
179
+ * The format of the date range label in the header bar depends on the `dateFormat` value or else based on the
180
+ * locale assigned to the Schedule.
181
+ *
182
+ * @default null
183
+ */
184
+ dateFormat?: string;
185
+
186
+ /**
187
+ * It allows the Scheduler to display in other calendar modes.
188
+ * By default, Scheduler is displayed in `Gregorian` calendar mode.
189
+ *
190
+ * {% codeBlock src='schedule/calendarMode/index.md' %}{% endcodeBlock %}
191
+ *
192
+ * To change the mode, you can set either `Gregorian` or `Islamic` as a value to this `calendarMode` property.
193
+ *
194
+ * @default 'Gregorian'
195
+ */
196
+ calendarMode?: CalendarType;
197
+
198
+ /**
199
+ * When set to `false`, it hides the weekend days of a week from the Schedule. The days which are not defined in the working days
200
+ * collection are usually treated as weekend days.
201
+ *
202
+ * Note: By default, this option is not applicable on `Work Week` view.
203
+ * For example, if the working days are defined as [1, 2, 3, 4], then the remaining days of that week will be considered as
204
+ * the weekend days and will be hidden on all the views.
205
+ *
206
+ * @default true
207
+ */
208
+ showWeekend?: boolean;
209
+
210
+ /**
211
+ * This option allows the user to set the first day of a week on Schedule. It should be based on the locale set to it and each culture
212
+ * defines its own first day of week values. If needed, the user can set it manually on his own by defining the value through
213
+ * this property. It usually accepts the integer values, whereby 0 is always denoted as Sunday, 1 as Monday and so on.
214
+ *
215
+ * {% codeBlock src='schedule/firstDayOfWeek/index.md' %}{% endcodeBlock %}
216
+ *
217
+ * @default 0
218
+ */
219
+ firstDayOfWeek?: number;
220
+
221
+ /**
222
+ * It allows the Scheduler to display week numbers based on following available week options. The week
223
+ * option specified in this property will be initially loaded on the schedule.
224
+ * * `FirstDay`: Denotes that the first week of the year starts on the first day of the year and ends before the following designated first day of the week.
225
+ * * `FirstFourDayWeek`:Denotes that the first week of the year is the first week with four or more days before the designated first day of the week.
226
+ * * `FirstFullWeek`: Denotes that the first week of the year begins on the first occurrence of the designated first day of the week on or after the first day of the year.
227
+ *
228
+ * {% codeBlock src='schedule/weekRule/index.md' %}{% endcodeBlock %}
229
+ *
230
+ * @default 'FirstDay'
231
+ */
232
+ weekRule?: WeekRule;
233
+
234
+ /**
235
+ * It is used to set the working days on Schedule. The only days that are defined in this collection will be rendered on the `workWeek`
236
+ * view whereas on other views, it will display all the usual days and simply highlights the working days with different shade.
237
+ *
238
+ * {% codeBlock src='schedule/workDays/index.md' %}{% endcodeBlock %}
239
+ *
240
+ * @default '[1, 2, 3, 4, 5]'
241
+ * @aspType int[]
242
+ */
243
+ workDays?: number[];
244
+
245
+ /**
246
+ * This option allows the user to set the number of months count to be displayed on the Schedule.
247
+ *
248
+ * {% codeBlock src='schedule/monthsCount/index.md' %}{% endcodeBlock %}
249
+ *
250
+ * @default 12
251
+ * @aspType int
252
+ */
253
+ monthsCount?: number;
254
+
255
+ /**
256
+ * It is used to specify the starting hour, from which the Schedule starts to display. It accepts the time string in a short skeleton
257
+ * format and also, hides the time beyond the specified start time.
258
+ *
259
+ * {% codeBlock src='schedule/startHour/index.md' %}{% endcodeBlock %}
260
+ *
261
+ * @default '00:00'
262
+ */
263
+ startHour?: string;
264
+
265
+ /**
266
+ * It is used to specify the end hour, at which the Schedule ends. It too accepts the time string in a short skeleton format.
267
+ *
268
+ * {% codeBlock src='schedule/endHour/index.md' %}{% endcodeBlock %}
269
+ *
270
+ * @default '24:00'
271
+ */
272
+ endHour?: string;
273
+
274
+ /**
275
+ * By default, Schedule follows the time-format as per the default culture assigned to it.
276
+ * It is also possible to manually set specific time format by using the `timeFormat` property.
277
+ *
278
+ * {% codeBlock src='schedule/timeFormat/index.md' %}{% endcodeBlock %}
279
+ *
280
+ * @default null
281
+ */
282
+ timeFormat?: string;
283
+
284
+ /**
285
+ * Specifies whether to enable the rendering of untrusted HTML values in the Schedule component.
286
+ * When this property is enabled, the component will sanitize any suspected untrusted strings and scripts before rendering them.
287
+ *
288
+ * @default true
289
+ */
290
+ enableHtmlSanitizer?: boolean;
291
+
292
+ /**
293
+ * When set to `true`, If valid, the scroll on the all day row is activated when the all day row
294
+ * height reaches the max height when the all day row is expanded.
295
+ *
296
+ * @default false
297
+ */
298
+ enableAllDayScroll?: boolean;
299
+
300
+ /**
301
+ * When set to `true`, the header view navigations are listed under the popup and if we enable resource grouping, the compact view will be enabled.
302
+ *
303
+ * @default false
304
+ */
305
+ enableAdaptiveUI?: boolean;
306
+
307
+ /**
308
+ * When set to `true`, allows the resizing of appointments. It allows the rescheduling of appointments either by changing the
309
+ * start or end time by dragging the event resize handlers.
310
+ *
311
+ * @default true
312
+ */
313
+ allowResizing?: boolean;
314
+
315
+ /**
316
+ * The working hours should be highlighted on Schedule with different color shade and an additional option must be provided to
317
+ * highlight it or not. This functionality is handled through `workHours` property and the start work hour should be 9 AM by default
318
+ * and end work hour should point to 6 PM. The start and end working hours needs to be provided as Time value of short skeleton type.
319
+ *
320
+ * {% codeBlock src='schedule/workHours/index.md' %}{% endcodeBlock %}
321
+ *
322
+ * @default { highlight: true, start: '09:00', end: '18:00' }
323
+ */
324
+ workHours?: WorkHoursModel;
325
+
326
+ /**
327
+ * Allows to set different time duration on Schedule along with the customized grid count. It also has template option to
328
+ * customize the time slots with required time values in its own format.
329
+ *
330
+ * {% codeBlock src='schedule/timeScale/index.md' %}{% endcodeBlock %}
331
+ *
332
+ * @default { enable: true, interval: 60, slotCount: 2, majorSlotTemplate: null, minorSlotTemplate: null }
333
+ */
334
+ timeScale?: TimeScaleModel;
335
+
336
+ /**
337
+ * When set to `true`, allows the keyboard interaction to take place on Schedule.
338
+ *
339
+ * @default true
340
+ */
341
+ allowKeyboardInteraction?: boolean;
342
+
343
+ /**
344
+ * When set to `true`, allows the appointments to move over the time slots. When an appointment is dragged, both its start
345
+ * and end time tends to change simultaneously allowing it to reschedule the appointment on some other time.
346
+ *
347
+ * @default true
348
+ */
349
+ allowDragAndDrop?: boolean;
350
+
351
+ /**
352
+ * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
353
+ * the date header cells. The field that can be accessed via this template is `date`.
354
+ *
355
+ * {% codeBlock src='schedule/dateHeaderTemplate/index.md' %}{% endcodeBlock %}
356
+ *
357
+ * @default null
358
+ * @angularType string | object
359
+ * @reactType string | function | JSX.Element
360
+ * @vueType string | function
361
+ * @aspType string
362
+ */
363
+ dateHeaderTemplate?: string | Function;
364
+
365
+ /**
366
+ * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the header date range.
367
+ *
368
+ * @default null
369
+ * @angularType string | object
370
+ * @reactType string | function | JSX.Element
371
+ * @vueType string | function
372
+ * @aspType string
373
+ */
374
+ dateRangeTemplate?: string | Function;
375
+
376
+ /**
377
+ * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
378
+ * the month date cells. This template is only applicable for month view day cells.
379
+ *
380
+ * {% codeBlock src='schedule/cellHeaderTemplate/index.md' %}{% endcodeBlock %}
381
+ *
382
+ * @default null
383
+ * @angularType string | object
384
+ * @reactType string | function | JSX.Element
385
+ * @vueType string | function
386
+ * @aspType string
387
+ */
388
+ cellHeaderTemplate?: string | Function;
389
+
390
+ /**
391
+ * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
392
+ * the day header cells. This template is only applicable for year view header cells.
393
+ *
394
+ * {% codeBlock src='schedule/dayHeaderTemplate/index.md' %}{% endcodeBlock %}
395
+ *
396
+ * @default null
397
+ * @angularType string | object
398
+ * @reactType string | function | JSX.Element
399
+ * @vueType string | function
400
+ * @aspType string
401
+ */
402
+ dayHeaderTemplate?: string | Function;
403
+
404
+ /**
405
+ * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
406
+ * the month header cells. This template is only applicable for year view header cells.
407
+ *
408
+ * {% codeBlock src='schedule/monthHeaderTemplate/index.md' %}{% endcodeBlock %}
409
+ *
410
+ * @default null
411
+ * @angularType string | object
412
+ * @reactType string | function | JSX.Element
413
+ * @vueType string | function
414
+ * @aspType string
415
+ */
416
+ monthHeaderTemplate?: string | Function;
417
+
418
+ /**
419
+ * The template option which is used to render the customized work cells on the Schedule. Here, the template accepts either
420
+ * the string or HTMLElement as template design and then the parsed design is displayed onto the work cells.
421
+ * The fields accessible via template are as follows.
422
+ * * `date`: Returns the date of the cell.
423
+ * * `groupIndex`: Returns the group index of the cell.
424
+ * * `type`: Returns the type of the work cell.
425
+ *
426
+ * Refer to the below code snippet.
427
+ *
428
+ * {% codeBlock src='schedule/cellTemplate/index.md' %}{% endcodeBlock %}
429
+ *
430
+ * @default null
431
+ * @angularType string | object
432
+ * @reactType string | function | JSX.Element
433
+ * @vueType string | function
434
+ * @aspType string
435
+ */
436
+ cellTemplate?: string | Function;
437
+
438
+ /**
439
+ * When set to `true`, makes the Schedule to render in a read only mode. No CRUD actions will be allowed at this time.
440
+ *
441
+ * @default false
442
+ */
443
+ readonly?: boolean;
444
+
445
+ /**
446
+ * When set to `true`, displays a quick popup with cell or event details on single clicking over the cells or on events.
447
+ * By default, it is set to `true`.
448
+ *
449
+ * @default true
450
+ */
451
+ showQuickInfo?: boolean;
452
+
453
+ /**
454
+ * Indicates whether the editor window and quick dialog popups are created and rendered in the DOM by default.
455
+ *
456
+ * When set to `true`, the popups are created during Scheduler initialization and reused throughout
457
+ * the component's lifetime. When set to `false`, the popups are created on demand when opened and
458
+ * destroyed when closed, reducing initial load but adding per-open creation cost.
459
+ *
460
+ * @remarks
461
+ * - Use `true` to minimize runtime allocations during interactions at the cost of higher initial setup.
462
+ * - Use `false` to reduce initial render cost and memory footprint when popups are infrequently used.
463
+ * - Toggling from `false` to `true` will keep subsequently created popups alive for reuse.
464
+ * *
465
+ * @example
466
+ * // Configure the editor to defer default popup creation.
467
+ * const options: ScheduleOptions= {
468
+ * prerenderDialogs: false
469
+ * };
470
+ *
471
+ * @default true
472
+ */
473
+ prerenderDialogs?: boolean;
474
+
475
+ /**
476
+ * This property helps user to add/edit the event in inline. By default, it is set to `false`.
477
+ *
478
+ * @default false
479
+ */
480
+ allowInline?: boolean;
481
+
482
+ /**
483
+ * This property helps user to allow/prevent the selection of multiple cells. By default, it is set to `true`.
484
+ *
485
+ * @default true
486
+ */
487
+ allowMultiCellSelection?: boolean;
488
+
489
+ /**
490
+ * This property helps user to allow/prevent the selection of multiple days(rows). By default, it is set to `true`.
491
+ *
492
+ * @default true
493
+ */
494
+ allowMultiRowSelection?: boolean;
495
+
496
+ /**
497
+ * This property helps to show quick popup after multiple cell selection. By default, it is set to `false`.
498
+ *
499
+ * @default false
500
+ */
501
+ quickInfoOnSelectionEnd?: boolean;
502
+
503
+ /**
504
+ * When set to `true`, displays the week number of the current view date range. By default, it is set to `false`.
505
+ *
506
+ * @default false
507
+ */
508
+ showWeekNumber?: boolean;
509
+
510
+ /**
511
+ * when set to `true`, allows the height of the work-cells to adjust automatically
512
+ * based on the number of appointments present in those time ranges.
513
+ *
514
+ * @default false
515
+ */
516
+ rowAutoHeight?: boolean;
517
+
518
+ /**
519
+ * This property helps to drag the multiple selected events. By default, it is set to `false`.
520
+ *
521
+ * @default false
522
+ */
523
+ allowMultiDrag?: boolean;
524
+
525
+ /**
526
+ * This property helps render the year view customized months. By default, it is set to `0`.
527
+ *
528
+ * {% codeBlock src='schedule/firstMonthOfYear/index.md' %}{% endcodeBlock %}
529
+ *
530
+ * @default 0
531
+ */
532
+ firstMonthOfYear?: number;
533
+
534
+ /**
535
+ * The template option to render the customized editor window. The form elements defined within this template should be accompanied
536
+ * with `e-field` class, so as to fetch and process it from internally.
537
+ *
538
+ * {% codeBlock src='schedule/editorTemplate/index.md' %}{% endcodeBlock %}
539
+ *
540
+ * @default null
541
+ * @angularType string | object
542
+ * @reactType string | function | JSX.Element
543
+ * @vueType string | function
544
+ * @aspType string
545
+ */
546
+ editorTemplate?: string | Function;
547
+
548
+ /**
549
+ * The template option to render the customized header of the editor window.
550
+ *
551
+ *
552
+ * @default null
553
+ * @angularType string | object
554
+ * @reactType string | function | JSX.Element
555
+ * @vueType string | function
556
+ * @aspType string
557
+ */
558
+ editorHeaderTemplate?: string | Function;
559
+
560
+ /**
561
+ * The template option to render the customized footer of the editor window.
562
+ *
563
+ *
564
+ * @default null
565
+ * @angularType string | object
566
+ * @reactType string | function | JSX.Element
567
+ * @vueType string | function
568
+ * @aspType string
569
+ */
570
+ editorFooterTemplate?: string | Function;
571
+
572
+ /**
573
+ * The template option to customize the quick window. The three sections of the quick popup whereas the header, content,
574
+ * and footer can be easily customized with individual template option.
575
+ *
576
+ * {% codeBlock src='schedule/quickInfoTemplates/index.md' %}{% endcodeBlock %}
577
+ *
578
+ * @default null
579
+ */
580
+ quickInfoTemplates?: QuickInfoTemplatesModel;
581
+
582
+ /**
583
+ * Sets the number of days to be displayed by default in Agenda View and in case of virtual scrolling,
584
+ * the number of days will be fetched on each scroll-end based on this count.
585
+ *
586
+ * {% codeBlock src='schedule/agendaDaysCount/index.md' %}{% endcodeBlock %}
587
+ *
588
+ * @default 7
589
+ */
590
+ agendaDaysCount?: number;
591
+
592
+ /**
593
+ * The days which does not has even a single event to display will be hidden from the UI of Agenda View by default.
594
+ * When this property is set to `false`, the empty dates will also be displayed on the Schedule.
595
+ *
596
+ * @default true
597
+ */
598
+ hideEmptyAgendaDays?: boolean;
599
+
600
+ /**
601
+ * The recurrence validation will be done by default. When this property is set to `false`, the recurrence validation will be skipped.
602
+ *
603
+ * @default true
604
+ */
605
+ enableRecurrenceValidation?: boolean;
606
+
607
+ /**
608
+ * Schedule will be assigned with specific timezone, so as to display the events in it accordingly. By default,
609
+ * Schedule dates are processed with System timezone, as no timezone will be assigned specifically to the Schedule at the initial time.
610
+ * Whenever the Schedule is bound to remote data services, it is always recommended to set specific timezone to Schedule to make the
611
+ * events on it to display on the same time irrespective of the system timezone. It usually accepts
612
+ * the valid [IANA](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) timezone names.
613
+ *
614
+ * {% codeBlock src='schedule/timezone/index.md' %}{% endcodeBlock %}
615
+ *
616
+ * @default null
617
+ */
618
+ timezone?: string;
619
+
620
+ /**
621
+ * Complete set of settings related to Schedule events to bind it to local or remote dataSource, map applicable database fields and
622
+ * other validation to be carried out on the available fields.
623
+ *
624
+ * {% codeBlock src='schedule/eventSettings/index.md' %}{% endcodeBlock %}
625
+ *
626
+ * @default null
627
+ */
628
+ eventSettings?: EventSettingsModel;
629
+
630
+ /**
631
+ * Allows to define the collection of timezone items in the Schedule. Only the items bound to this property get listed out in the timezone dropdown of the appointment window.
632
+ *
633
+ * {% codeBlock src='schedule/timezoneDatasource/index.md' %}{% endcodeBlock %}
634
+ *
635
+ * @default timezoneData
636
+ */
637
+ timezoneDataSource?: TimezoneFields[];
638
+
639
+ /**
640
+ * Template option to customize the resource header bar. Here, the template accepts either
641
+ * the string or HTMLElement as template design and then the parsed design is displayed onto the resource header cells.
642
+ * The following can be accessible via template.
643
+ * * `resource` - All the resource fields.
644
+ * * `resourceData` - Object collection of current resource.
645
+ *
646
+ * Refer to the below code snippet.
647
+ *
648
+ * {% codeBlock src='schedule/resourceHeaderTemplate/index.md' %}{% endcodeBlock %}
649
+ *
650
+ * @default null
651
+ * @angularType string | object
652
+ * @reactType string | function | JSX.Element
653
+ * @vueType string | function
654
+ * @aspType string
655
+ */
656
+ resourceHeaderTemplate?: string | Function;
657
+
658
+ /**
659
+ * Template option to customize the header indent bar. Here, the template accepts either
660
+ * the string or HTMLElement as template design and then the parsed design is displayed onto the header indent cell.
661
+ *
662
+ * Refer to the below code snippet.
663
+ *
664
+ * {% codeBlock src='schedule/headerIndentTemplate/index.md' %}{% endcodeBlock %}
665
+ *
666
+ * @default null
667
+ * @angularType string | object
668
+ * @reactType string | function | JSX.Element
669
+ * @vueType string | function
670
+ * @aspType string
671
+ */
672
+ headerIndentTemplate?: string | Function;
673
+
674
+ /**
675
+ * Allows defining the group related settings of multiple resources. When this property is non-empty, it means
676
+ * that the resources will be grouped on the schedule layout based on the provided resource names.
677
+ *
678
+ * {% codeBlock src='schedule/group/index.md' %}{% endcodeBlock %}
679
+ *
680
+ * @default {}
681
+ */
682
+ group?: GroupModel;
683
+
684
+ /**
685
+ * Allows defining the collection of resources to be displayed on the Schedule. The resource collection needs to be defined
686
+ * with unique resource names to identify it along with the respective dataSource and field mapping options.
687
+ *
688
+ * {% codeBlock src='schedule/resources/index.md' %}{% endcodeBlock %}
689
+ *
690
+ * @default []
691
+ */
692
+ resources?: ResourcesModel[];
693
+
694
+ /**
695
+ * Allows defining the collection of custom header rows to display the year, month, week, date and hour label as an individual row
696
+ * on the timeline view of the scheduler.
697
+ *
698
+ * {% codeBlock src='schedule/headerRows/index.md' %}{% endcodeBlock %}
699
+ *
700
+ * @default []
701
+ */
702
+ headerRows?: HeaderRowsModel[];
703
+
704
+ /**
705
+ * It is used to customize the Schedule which accepts custom CSS class names that defines specific user-defined styles and themes
706
+ * to be applied on the Schedule element.
707
+ *
708
+ * {% codeBlock src='schedule/cssClass/index.md' %}{% endcodeBlock %}
709
+ *
710
+ * @default null
711
+ */
712
+ cssClass?: string;
713
+
714
+ /**
715
+ * Enables clipboard functionality for appointments, allowing them to be copied using keyboard shortcuts and pasted onto the Scheduler.
716
+ * When set to `true`, users can use keyboard shortcuts to cut, copy appointments and paste them into different time slots or calendars.
717
+ *
718
+ * @default false
719
+ * @remarks The `allowKeyboardInteraction` property should be enabled to use the keyboard shortcuts.
720
+ */
721
+ allowClipboard?: boolean;
722
+
723
+ /**
724
+ * It enables the external drag and drop support for appointments on scheduler, to be able to move them out of the scheduler layout.
725
+ * When the drag area is explicitly set with specific DOM element name, the appointments can be dragged anywhere within the specified drag area location.
726
+ *
727
+ * {% codeBlock src='schedule/eventDragArea/index.md' %}{% endcodeBlock %}
728
+ *
729
+ * @default null
730
+ */
731
+ eventDragArea?: string;
732
+
733
+ /**
734
+ * Triggers after the scheduler component is created.
735
+ *
736
+ * @event 'created'
737
+ */
738
+ created?: EmitType<Record<string, any>>;
739
+
740
+ /**
741
+ * Triggers when the scheduler component is destroyed.
742
+ *
743
+ * @event 'destroyed'
744
+ */
745
+ destroyed?: EmitType<Record<string, any>>;
746
+
747
+ /**
748
+ * Triggers when the scheduler cells are single clicked or on single tap on the same cells in mobile devices.
749
+ *
750
+ * @event 'cellClick'
751
+ */
752
+ cellClick?: EmitType<CellClickEventArgs>;
753
753
 
754
754
  /**
755
- * Triggers when the scheduler cells are double clicked.
756
- *
757
- * @event 'cellDoubleClick'
758
- */
759
- cellDoubleClick?: EmitType<CellClickEventArgs>;
755
+ * Triggers when the scheduler cells are double clicked.
756
+ *
757
+ * @event 'cellDoubleClick'
758
+ */
759
+ cellDoubleClick?: EmitType<CellClickEventArgs>;
760
760
 
761
761
  /**
762
- * Triggers when the more events indicator are clicked.
763
- *
764
- * @event 'moreEventsClick'
765
- */
766
- moreEventsClick?: EmitType<MoreEventsClickArgs>;
762
+ * Triggers when the more events indicator are clicked.
763
+ *
764
+ * @event 'moreEventsClick'
765
+ */
766
+ moreEventsClick?: EmitType<MoreEventsClickArgs>;
767
767
 
768
768
  /**
769
- * Triggers when the scheduler elements are hovered.
770
- *
771
- * @event 'hover'
772
- */
773
- hover?: EmitType<HoverEventArgs>;
769
+ * Triggers when the scheduler elements are hovered.
770
+ *
771
+ * @event 'hover'
772
+ */
773
+ hover?: EmitType<HoverEventArgs>;
774
774
 
775
775
  /**
776
- * Triggers when multiple cells or events are selected on the Scheduler.
777
- *
778
- * @event 'select'
779
- */
780
- select?: EmitType<SelectEventArgs>;
776
+ * Triggers when multiple cells or events are selected on the Scheduler.
777
+ *
778
+ * @event 'select'
779
+ */
780
+ select?: EmitType<SelectEventArgs>;
781
781
 
782
782
  /**
783
- * Triggers on beginning of every scheduler action.
784
- *
785
- * @event 'actionBegin'
786
- */
787
- actionBegin?: EmitType<ActionEventArgs>;
783
+ * Triggers on beginning of every scheduler action.
784
+ *
785
+ * @event 'actionBegin'
786
+ */
787
+ actionBegin?: EmitType<ActionEventArgs>;
788
788
 
789
789
  /**
790
- * Triggers on successful completion of the scheduler actions.
791
- *
792
- * @event 'actionComplete'
793
- */
794
- actionComplete?: EmitType<ActionEventArgs>;
790
+ * Triggers on successful completion of the scheduler actions.
791
+ *
792
+ * @event 'actionComplete'
793
+ */
794
+ actionComplete?: EmitType<ActionEventArgs>;
795
795
 
796
796
  /**
797
- * Triggers when a scheduler action gets failed or interrupted and an error information will be returned.
798
- *
799
- * @event 'actionFailure'
800
- */
801
- actionFailure?: EmitType<ActionEventArgs>;
797
+ * Triggers when a scheduler action gets failed or interrupted and an error information will be returned.
798
+ *
799
+ * @event 'actionFailure'
800
+ */
801
+ actionFailure?: EmitType<ActionEventArgs>;
802
802
 
803
803
  /**
804
- * Triggers before the date or view navigation takes place on scheduler.
805
- *
806
- * @event 'navigating'
807
- */
808
- navigating?: EmitType<NavigatingEventArgs>;
804
+ * Triggers before the date or view navigation takes place on scheduler.
805
+ *
806
+ * @event 'navigating'
807
+ */
808
+ navigating?: EmitType<NavigatingEventArgs>;
809
809
 
810
810
  /**
811
- * Triggers before each element of the schedule rendering on the page.
812
- *
813
- * @event 'renderCell'
814
- */
815
- renderCell?: EmitType<RenderCellEventArgs>;
811
+ * Triggers before each element of the schedule rendering on the page.
812
+ *
813
+ * @event 'renderCell'
814
+ */
815
+ renderCell?: EmitType<RenderCellEventArgs>;
816
816
 
817
817
  /**
818
- * Triggers when the events are single clicked or on single tapping the events on the mobile devices.
819
- *
820
- * @event 'eventClick'
821
- */
822
- eventClick?: EmitType<EventClickArgs>;
818
+ * Triggers when the events are single clicked or on single tapping the events on the mobile devices.
819
+ *
820
+ * @event 'eventClick'
821
+ */
822
+ eventClick?: EmitType<EventClickArgs>;
823
823
 
824
824
  /**
825
- * Triggers when the events are double clicked or on double tapping the events on the desktop devices.
826
- *
827
- * @event 'eventDoubleClick'
828
- */
829
- eventDoubleClick?: EmitType<EventClickArgs>;
825
+ * Triggers when the events are double clicked or on double tapping the events on the desktop devices.
826
+ *
827
+ * @event 'eventDoubleClick'
828
+ */
829
+ eventDoubleClick?: EmitType<EventClickArgs>;
830
830
 
831
831
  /**
832
- * Triggers before each of the event getting rendered on the scheduler user interface.
833
- *
834
- * @event 'eventRendered'
835
- */
836
- eventRendered?: EmitType<EventRenderedArgs>;
832
+ * Triggers before each of the event getting rendered on the scheduler user interface.
833
+ *
834
+ * @event 'eventRendered'
835
+ */
836
+ eventRendered?: EmitType<EventRenderedArgs>;
837
837
 
838
838
  /**
839
- * Triggers before the data binds to the scheduler.
840
- *
841
- * @event 'dataBinding'
842
- */
843
- dataBinding?: EmitType<ReturnType>;
839
+ * Triggers before the data binds to the scheduler.
840
+ *
841
+ * @event 'dataBinding'
842
+ */
843
+ dataBinding?: EmitType<ReturnType>;
844
844
 
845
845
  /**
846
- * Triggers before any of the scheduler popups opens on the page.
847
- *
848
- * @event 'popupOpen'
849
- */
850
- popupOpen?: EmitType<PopupOpenEventArgs>;
846
+ * Triggers before any of the scheduler popups opens on the page.
847
+ *
848
+ * @event 'popupOpen'
849
+ */
850
+ popupOpen?: EmitType<PopupOpenEventArgs>;
851
851
 
852
852
  /**
853
- * Triggers before any of the scheduler popups close on the page.
854
- *
855
- * @event 'popupClose'
856
- */
857
- popupClose?: EmitType<PopupCloseEventArgs>;
853
+ * Triggers before any of the scheduler popups close on the page.
854
+ *
855
+ * @event 'popupClose'
856
+ */
857
+ popupClose?: EmitType<PopupCloseEventArgs>;
858
858
 
859
859
  /**
860
- * Triggers when an appointment is started to drag.
861
- *
862
- * @event 'dragStart'
863
- */
864
- dragStart?: EmitType<DragEventArgs>;
860
+ * Triggers when an appointment is started to drag.
861
+ *
862
+ * @event 'dragStart'
863
+ */
864
+ dragStart?: EmitType<DragEventArgs>;
865
865
 
866
866
  /**
867
- * Triggers when an appointment is being in a dragged state.
868
- *
869
- * @event 'drag'
870
- */
871
- drag?: EmitType<DragEventArgs>;
867
+ * Triggers when an appointment is being in a dragged state.
868
+ *
869
+ * @event 'drag'
870
+ */
871
+ drag?: EmitType<DragEventArgs>;
872
872
 
873
873
  /**
874
- * Triggers when the dragging of appointment is stopped.
875
- *
876
- * @event 'dragStop'
877
- */
878
- dragStop?: EmitType<DragEventArgs>;
874
+ * Triggers when the dragging of appointment is stopped.
875
+ *
876
+ * @event 'dragStop'
877
+ */
878
+ dragStop?: EmitType<DragEventArgs>;
879
879
 
880
880
  /**
881
- * Triggers when an appointment is started to resize.
882
- *
883
- * @event 'resizeStart'
884
- */
885
- resizeStart?: EmitType<ResizeEventArgs>;
881
+ * Triggers when an appointment is started to resize.
882
+ *
883
+ * @event 'resizeStart'
884
+ */
885
+ resizeStart?: EmitType<ResizeEventArgs>;
886
886
 
887
887
  /**
888
- * Triggers when an appointment is being in a resizing action.
889
- *
890
- * @event 'resizing'
891
- */
892
- resizing?: EmitType<ResizeEventArgs>;
888
+ * Triggers when an appointment is being in a resizing action.
889
+ *
890
+ * @event 'resizing'
891
+ */
892
+ resizing?: EmitType<ResizeEventArgs>;
893
893
 
894
894
  /**
895
- * Triggers when the resizing of appointment is stopped.
896
- *
897
- * @event 'resizeStop'
898
- */
899
- resizeStop?: EmitType<ResizeEventArgs>;
895
+ * Triggers when the resizing of appointment is stopped.
896
+ *
897
+ * @event 'resizeStop'
898
+ */
899
+ resizeStop?: EmitType<ResizeEventArgs>;
900
900
 
901
901
  /**
902
- * Triggers when the scroll action is started.
903
- * This event triggers only when `allowVirtualScrolling` or `enableLazyLoading` properties are enabled along with resource grouping.
904
- *
905
- * @event 'virtualScrollStart'
906
- */
907
- virtualScrollStart?: EmitType<ScrollEventArgs>;
902
+ * Triggers when the scroll action is started.
903
+ * This event triggers only when `allowVirtualScrolling` or `enableLazyLoading` properties are enabled along with resource grouping.
904
+ *
905
+ * @event 'virtualScrollStart'
906
+ */
907
+ virtualScrollStart?: EmitType<ScrollEventArgs>;
908
908
 
909
909
  /**
910
- * Triggers when the scroll action is stopped.
911
- * This event triggers only when `allowVirtualScrolling` or `enableLazyLoading` properties are enabled along with resource grouping.
912
- *
913
- * @event 'virtualScrollStop'
914
- */
915
- virtualScrollStop?: EmitType<ScrollEventArgs>;
910
+ * Triggers when the scroll action is stopped.
911
+ * This event triggers only when `allowVirtualScrolling` or `enableLazyLoading` properties are enabled along with resource grouping.
912
+ *
913
+ * @event 'virtualScrollStop'
914
+ */
915
+ virtualScrollStop?: EmitType<ScrollEventArgs>;
916
916
 
917
917
  /**
918
- * Triggers once the event data is bound to the scheduler.
919
- *
920
- * @event 'dataBound'
921
- */
922
- dataBound?: EmitType<ReturnType>;
918
+ * Triggers once the event data is bound to the scheduler.
919
+ *
920
+ * @event 'dataBound'
921
+ */
922
+ dataBound?: EmitType<ReturnType>;
923
923
 
924
924
  /**
925
- * Triggers once when pasting an event on the scheduler.
926
- *
927
- * @event 'beforePaste'
928
- */
929
- beforePaste?: EmitType<BeforePasteEventArgs>;
925
+ * Triggers once when pasting an event on the scheduler.
926
+ *
927
+ * @event 'beforePaste'
928
+ */
929
+ beforePaste?: EmitType<BeforePasteEventArgs>;
930
930
 
931
931
  /**
932
- * Triggers when the print event is called.
933
- *
934
- * @event 'beforePrint'
935
- */
936
- beforePrint?: EmitType<BeforePrintEventArgs>;
932
+ * Triggers when the print event is called.
933
+ *
934
+ * @event 'beforePrint'
935
+ */
936
+ beforePrint?: EmitType<BeforePrintEventArgs>;
937
937
 
938
938
  /**
939
- * Triggers before the Excel export process begins.
940
- *
941
- * @event 'excelExport'
942
- */
943
- excelExport?: EmitType<ExcelExportEventArgs>;
939
+ * Triggers before the Excel export process begins.
940
+ *
941
+ * @event 'excelExport'
942
+ */
943
+ excelExport?: EmitType<ExcelExportEventArgs>;
944
944
 
945
945
  /**
946
- * Triggers before the tooltip is rendered.
947
- *
948
- * @event 'tooltipOpen'
949
- */
950
- tooltipOpen?: EmitType<TooltipOpenEventArgs>;
946
+ * Triggers before the tooltip is rendered.
947
+ *
948
+ * @event 'tooltipOpen'
949
+ */
950
+ tooltipOpen?: EmitType<TooltipOpenEventArgs>;
951
951
 
952
952
  }