@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 { Property, ChildProperty } from '@syncfusion/ej2-base';
1
+ import { Property, ChildProperty } from '@syncfusion/ej2-base';
2
2
 
3
3
  /**
4
4
  * Interface for a class FieldOptions
@@ -6,32 +6,32 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base';
6
6
  export interface FieldOptionsModel {
7
7
 
8
8
  /**
9
- * Denotes the field name to be mapped from the dataSource for every event fields.
10
- *
11
- * @default null
12
- */
13
- name?: string;
9
+ * Denotes the field name to be mapped from the dataSource for every event fields.
10
+ *
11
+ * @default null
12
+ */
13
+ name?: string;
14
14
 
15
15
  /**
16
- * Assigns the specific default value to the fields, when no values are provided to those fields from dataSource.
17
- *
18
- * @default null
19
- */
20
- default?: string;
16
+ * Assigns the specific default value to the fields, when no values are provided to those fields from dataSource.
17
+ *
18
+ * @default null
19
+ */
20
+ default?: string;
21
21
 
22
22
  /**
23
- * Assigns the label values to be displayed for the event editor fields.
24
- *
25
- * @default null
26
- */
27
- title?: string;
23
+ * Assigns the label values to be displayed for the event editor fields.
24
+ *
25
+ * @default null
26
+ */
27
+ title?: string;
28
28
 
29
29
  /**
30
- * Defines the validation rules to be applied on the event fields within the event editor.
31
- * {% codeBlock src="schedule/validation-api/index.ts" %}{% endcodeBlock %}
32
- *
33
- * @default {}
34
- */
35
- validation?: Record<string, any>;
30
+ * Defines the validation rules to be applied on the event fields within the event editor.
31
+ * {% codeBlock src="schedule/validation-api/index.ts" %}{% endcodeBlock %}
32
+ *
33
+ * @default {}
34
+ */
35
+ validation?: Record<string, any>;
36
36
 
37
37
  }
@@ -1,22 +1,22 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = function (d, b) {
3
- extendStatics = Object.setPrototypeOf ||
4
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
- return extendStatics(d, b);
7
- };
8
- return function (d, b) {
9
- extendStatics(d, b);
10
- function __() { this.constructor = d; }
11
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
- };
13
- })();
14
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
1
+ var __extends = (this && this.__extends) || (function () {
2
+ var extendStatics = function (d, b) {
3
+ extendStatics = Object.setPrototypeOf ||
4
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
+ return extendStatics(d, b);
7
+ };
8
+ return function (d, b) {
9
+ extendStatics(d, b);
10
+ function __() { this.constructor = d; }
11
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
+ };
13
+ })();
14
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
19
+ };
20
20
  /* eslint-disable @typescript-eslint/no-explicit-any */
21
21
  import { Property, ChildProperty } from '@syncfusion/ej2-base';
22
22
  /**
@@ -1,4 +1,4 @@
1
- import { Property, ChildProperty, Complex } from '@syncfusion/ej2-base';import { FieldOptionsModel } from './field-options-model';import { FieldOptions } from './field-options';
1
+ import { Property, ChildProperty, Complex } from '@syncfusion/ej2-base';
2
2
 
3
3
  /**
4
4
  * Interface for a class Field
@@ -6,124 +6,124 @@ import { Property, ChildProperty, Complex } from '@syncfusion/ej2-base';import {
6
6
  export interface FieldModel {
7
7
 
8
8
  /**
9
- * The `id` field needs to be defined as mandatory, when the Schedule is bound to remote data and
10
- * it is optional, if the same is bound with JSON data. This field usually assigns ID value to each of the events.
11
- *
12
- * @default null
13
- */
14
- id?: string;
9
+ * The `id` field needs to be defined as mandatory, when the Schedule is bound to remote data and
10
+ * it is optional, if the same is bound with JSON data. This field usually assigns ID value to each of the events.
11
+ *
12
+ * @default null
13
+ */
14
+ id?: string;
15
15
 
16
16
  /**
17
- * The `isBlock` field allows you to block certain time interval on the Scheduler.
18
- * It is a boolean type property accepting either true or false values.
19
- * When set to true, creates a block range for the specified time interval and disables the event scheduling actions on that time range.
20
- *
21
- * @default null
22
- */
23
- isBlock?: string;
17
+ * The `isBlock` field allows you to block certain time interval on the Scheduler.
18
+ * It is a boolean type property accepting either true or false values.
19
+ * When set to true, creates a block range for the specified time interval and disables the event scheduling actions on that time range.
20
+ *
21
+ * @default null
22
+ */
23
+ isBlock?: string;
24
24
 
25
25
  /**
26
- * The `subject` field is optional, and usually assigns the subject text to each of the events.
27
- *
28
- * @default { name: null, default: null, title: null, validation: {} }
29
- */
30
- subject?: FieldOptionsModel;
26
+ * The `subject` field is optional, and usually assigns the subject text to each of the events.
27
+ *
28
+ * @default { name: null, default: null, title: null, validation: {} }
29
+ */
30
+ subject?: FieldOptionsModel;
31
31
 
32
32
  /**
33
- * The `startTime` field defines the start time of an event and it is mandatory to provide it for any of the valid event objects.
34
- *
35
- * @default { name: null, default: null, title: null, validation: {} }
36
- */
37
- startTime?: FieldOptionsModel;
33
+ * The `startTime` field defines the start time of an event and it is mandatory to provide it for any of the valid event objects.
34
+ *
35
+ * @default { name: null, default: null, title: null, validation: {} }
36
+ */
37
+ startTime?: FieldOptionsModel;
38
38
 
39
39
  /**
40
- * The `endTime` field defines the end time of an event and it is mandatory to provide the end time for any of the valid event objects.
41
- *
42
- * @default { name: null, default: null, title: null, validation: {} }
43
- */
44
- endTime?: FieldOptionsModel;
40
+ * The `endTime` field defines the end time of an event and it is mandatory to provide the end time for any of the valid event objects.
41
+ *
42
+ * @default { name: null, default: null, title: null, validation: {} }
43
+ */
44
+ endTime?: FieldOptionsModel;
45
45
 
46
46
  /**
47
- * It maps the `startTimezone` field from the dataSource and usually accepts the valid
48
- * [`IANA timezone names`](https://docs.actian.com/ingres/11.0/index.html#page/Ing_Install/IANA_World_Regions_and_Time_Zone_Names.htm).
49
- * It is assumed that the value provided for this field is taken into consideration while processing
50
- * the `startTime` field. When this field is not mapped with any timezone names,
51
- * then the events will be processed based on the timezone assigned to the Schedule.
52
- *
53
- * @default { name: null, default: null, title: null, validation: {} }
54
- */
55
- startTimezone?: FieldOptionsModel;
47
+ * It maps the `startTimezone` field from the dataSource and usually accepts the valid
48
+ * [`IANA timezone names`](https://docs.actian.com/ingres/11.0/index.html#page/Ing_Install/IANA_World_Regions_and_Time_Zone_Names.htm).
49
+ * It is assumed that the value provided for this field is taken into consideration while processing
50
+ * the `startTime` field. When this field is not mapped with any timezone names,
51
+ * then the events will be processed based on the timezone assigned to the Schedule.
52
+ *
53
+ * @default { name: null, default: null, title: null, validation: {} }
54
+ */
55
+ startTimezone?: FieldOptionsModel;
56
56
 
57
57
  /**
58
- * It maps the `endTimezone` field from the dataSource and usually accepts the valid
59
- * [`IANA timezone names`](https://docs.actian.com/ingres/11.0/index.html#page/Ing_Install/IANA_World_Regions_and_Time_Zone_Names.htm).
60
- * It is assumed that the value provided for this field is taken into consideration while processing the `endTime` field.
61
- * When this field is not mapped with any timezone names, then the events will be processed based on the timezone assigned
62
- * to the Schedule.
63
- *
64
- * @default { name: null, default: null, title: null, validation: {} }
65
- */
66
- endTimezone?: FieldOptionsModel;
58
+ * It maps the `endTimezone` field from the dataSource and usually accepts the valid
59
+ * [`IANA timezone names`](https://docs.actian.com/ingres/11.0/index.html#page/Ing_Install/IANA_World_Regions_and_Time_Zone_Names.htm).
60
+ * It is assumed that the value provided for this field is taken into consideration while processing the `endTime` field.
61
+ * When this field is not mapped with any timezone names, then the events will be processed based on the timezone assigned
62
+ * to the Schedule.
63
+ *
64
+ * @default { name: null, default: null, title: null, validation: {} }
65
+ */
66
+ endTimezone?: FieldOptionsModel;
67
67
 
68
68
  /**
69
- * It maps the `location` field from the dataSource and the location field value will be displayed over
70
- * events, while given it for an event object.
71
- *
72
- * @default { name: null, default: null, title: null, validation: {} }
73
- */
74
- location?: FieldOptionsModel;
69
+ * It maps the `location` field from the dataSource and the location field value will be displayed over
70
+ * events, while given it for an event object.
71
+ *
72
+ * @default { name: null, default: null, title: null, validation: {} }
73
+ */
74
+ location?: FieldOptionsModel;
75
75
 
76
76
  /**
77
- * It maps the `description` field from the dataSource and denotes the event description which is optional.
78
- *
79
- * @default { name: null, default: null, title: null, validation: {} }
80
- */
81
- description?: FieldOptionsModel;
77
+ * It maps the `description` field from the dataSource and denotes the event description which is optional.
78
+ *
79
+ * @default { name: null, default: null, title: null, validation: {} }
80
+ */
81
+ description?: FieldOptionsModel;
82
82
 
83
83
  /**
84
- * The `isAllDay` field is mapped from the dataSource and is used to denote whether an event is created
85
- * for an entire day or for specific time alone.
86
- *
87
- * @default { name: null, default: null, title: null, validation: {} }
88
- */
89
- isAllDay?: FieldOptionsModel;
84
+ * The `isAllDay` field is mapped from the dataSource and is used to denote whether an event is created
85
+ * for an entire day or for specific time alone.
86
+ *
87
+ * @default { name: null, default: null, title: null, validation: {} }
88
+ */
89
+ isAllDay?: FieldOptionsModel;
90
90
 
91
91
  /**
92
- * It maps the `recurrenceID` field from dataSource and usually holds the ID value of the parent
93
- * recurrence event. It is applicable only for the edited occurrence events.
94
- *
95
- * @default { name: null, default: null, title: null, validation: {} }
96
- */
97
- recurrenceID?: FieldOptionsModel;
92
+ * It maps the `recurrenceID` field from dataSource and usually holds the ID value of the parent
93
+ * recurrence event. It is applicable only for the edited occurrence events.
94
+ *
95
+ * @default { name: null, default: null, title: null, validation: {} }
96
+ */
97
+ recurrenceID?: FieldOptionsModel;
98
98
 
99
99
  /**
100
- * It maps the `recurrenceRule` field from dataSource and is used to uniquely identify whether the
101
- * event belongs to a recurring event type or normal ones.
102
- *
103
- * @default { name: null, default: null, title: null, validation: {} }
104
- */
105
- recurrenceRule?: FieldOptionsModel;
100
+ * It maps the `recurrenceRule` field from dataSource and is used to uniquely identify whether the
101
+ * event belongs to a recurring event type or normal ones.
102
+ *
103
+ * @default { name: null, default: null, title: null, validation: {} }
104
+ */
105
+ recurrenceRule?: FieldOptionsModel;
106
106
 
107
107
  /**
108
- * It maps the `recurrenceException` field from dataSource and is used to hold the exception dates
109
- * which needs to be excluded from recurring type.
110
- *
111
- * @default { name: null, default: null, title: null, validation: {} }
112
- */
113
- recurrenceException?: FieldOptionsModel;
108
+ * It maps the `recurrenceException` field from dataSource and is used to hold the exception dates
109
+ * which needs to be excluded from recurring type.
110
+ *
111
+ * @default { name: null, default: null, title: null, validation: {} }
112
+ */
113
+ recurrenceException?: FieldOptionsModel;
114
114
 
115
115
  /**
116
- * The `isReadonly` field is mapped from the dataSource and is used to prevent the CRUD actions on specific events.
117
- *
118
- * @default null
119
- */
120
- isReadonly?: string;
116
+ * The `isReadonly` field is mapped from the dataSource and is used to prevent the CRUD actions on specific events.
117
+ *
118
+ * @default null
119
+ */
120
+ isReadonly?: string;
121
121
 
122
122
  /**
123
- * The `followingID` field is mapped from dataSource and usually holds the ID value of the main parent event.
124
- *
125
- * @default null
126
- */
127
- followingID?: string;
123
+ * The `followingID` field is mapped from dataSource and usually holds the ID value of the main parent event.
124
+ *
125
+ * @default null
126
+ */
127
+ followingID?: string;
128
128
 
129
129
  }
@@ -1,22 +1,22 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = function (d, b) {
3
- extendStatics = Object.setPrototypeOf ||
4
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
- return extendStatics(d, b);
7
- };
8
- return function (d, b) {
9
- extendStatics(d, b);
10
- function __() { this.constructor = d; }
11
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
- };
13
- })();
14
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
1
+ var __extends = (this && this.__extends) || (function () {
2
+ var extendStatics = function (d, b) {
3
+ extendStatics = Object.setPrototypeOf ||
4
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
+ return extendStatics(d, b);
7
+ };
8
+ return function (d, b) {
9
+ extendStatics(d, b);
10
+ function __() { this.constructor = d; }
11
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
+ };
13
+ })();
14
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
19
+ };
20
20
  import { Property, ChildProperty, Complex } from '@syncfusion/ej2-base';
21
21
  import { FieldOptions } from './field-options';
22
22
  /**
@@ -1,4 +1,4 @@
1
- import { Property, ChildProperty } from '@syncfusion/ej2-base';
1
+ import { Property, ChildProperty } from '@syncfusion/ej2-base';
2
2
 
3
3
  /**
4
4
  * Interface for a class Group
@@ -6,64 +6,64 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base';
6
6
  export interface GroupModel {
7
7
 
8
8
  /**
9
- * When set to `true`, groups the resources by date where each day renders all the resource names under it.
10
- *
11
- * @default false
12
- */
13
- byDate?: boolean;
9
+ * When set to `true`, groups the resources by date where each day renders all the resource names under it.
10
+ *
11
+ * @default false
12
+ */
13
+ byDate?: boolean;
14
14
 
15
15
  /**
16
- * Decides whether to allow the resource hierarchy to group by ID. It is set to `true` by default and when set to false,
17
- * all the resources under child collection will be mapped against each available parent.
18
- *
19
- * @default true
20
- */
21
- byGroupID?: boolean;
16
+ * Decides whether to allow the resource hierarchy to group by ID. It is set to `true` by default and when set to false,
17
+ * all the resources under child collection will be mapped against each available parent.
18
+ *
19
+ * @default true
20
+ */
21
+ byGroupID?: boolean;
22
22
 
23
23
  /**
24
- * Allows creation and editing of linked appointments assigned to multiple resources. When set to `true`,
25
- * a single appointment object instance will be maintained in schedule dataSource that are created for
26
- * multiple resources, whereas displayed individually on UI.
27
- *
28
- * @default false
29
- */
30
- allowGroupEdit?: boolean;
24
+ * Allows creation and editing of linked appointments assigned to multiple resources. When set to `true`,
25
+ * a single appointment object instance will be maintained in schedule dataSource that are created for
26
+ * multiple resources, whereas displayed individually on UI.
27
+ *
28
+ * @default false
29
+ */
30
+ allowGroupEdit?: boolean;
31
31
 
32
32
  /**
33
- * Accepts the collection of resource names assigned to each resources and allows the grouping order on schedule based on it.
34
- *
35
- * @default []
36
- */
37
- resources?: string[];
33
+ * Accepts the collection of resource names assigned to each resources and allows the grouping order on schedule based on it.
34
+ *
35
+ * @default []
36
+ */
37
+ resources?: string[];
38
38
 
39
39
  /**
40
- * Decides whether to display the resource grouping layout in normal or compact mode in mobile devices. When set to `false`,
41
- * the default grouping layout on desktop will be displayed on mobile devices with scrolling enabled.
42
- *
43
- * @default true
44
- */
45
- enableCompactView?: boolean;
40
+ * Decides whether to display the resource grouping layout in normal or compact mode in mobile devices. When set to `false`,
41
+ * the default grouping layout on desktop will be displayed on mobile devices with scrolling enabled.
42
+ *
43
+ * @default true
44
+ */
45
+ enableCompactView?: boolean;
46
46
 
47
47
  /**
48
- * Template option to customize the tooltip that displays over the resource header bar. By default, no tooltip will be
49
- * displayed on resource header bar. It accepts either the string or HTMLElement as template design content and
50
- * parse it appropriately before displaying it onto the tooltip. All the resource fields mapped for resource dataSource
51
- * can be accessed within this template code.
52
- *
53
- * @default null
54
- * @angularType string | object
55
- * @reactType string | function | JSX.Element
56
- * @vueType string | function
57
- * @aspType string
58
- */
59
- headerTooltipTemplate?: string | Function;
48
+ * Template option to customize the tooltip that displays over the resource header bar. By default, no tooltip will be
49
+ * displayed on resource header bar. It accepts either the string or HTMLElement as template design content and
50
+ * parse it appropriately before displaying it onto the tooltip. All the resource fields mapped for resource dataSource
51
+ * can be accessed within this template code.
52
+ *
53
+ * @default null
54
+ * @angularType string | object
55
+ * @reactType string | function | JSX.Element
56
+ * @vueType string | function
57
+ * @aspType string
58
+ */
59
+ headerTooltipTemplate?: string | Function;
60
60
 
61
61
  /**
62
- * Decides whether to show/hide the non-working days. It is set to `false` by default and when set to `true`, it hides the non-working days.
63
- * This property is applicable for `Day`, `Week`, `WorkWeek` and `month` views, which are grouped under date.
64
- *
65
- * @default false
66
- */
67
- hideNonWorkingDays?: boolean;
62
+ * Decides whether to show/hide the non-working days. It is set to `false` by default and when set to `true`, it hides the non-working days.
63
+ * This property is applicable for `Day`, `Week`, `WorkWeek` and `month` views, which are grouped under date.
64
+ *
65
+ * @default false
66
+ */
67
+ hideNonWorkingDays?: boolean;
68
68
 
69
69
  }
@@ -1,22 +1,22 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = function (d, b) {
3
- extendStatics = Object.setPrototypeOf ||
4
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
- return extendStatics(d, b);
7
- };
8
- return function (d, b) {
9
- extendStatics(d, b);
10
- function __() { this.constructor = d; }
11
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
- };
13
- })();
14
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
1
+ var __extends = (this && this.__extends) || (function () {
2
+ var extendStatics = function (d, b) {
3
+ extendStatics = Object.setPrototypeOf ||
4
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
+ return extendStatics(d, b);
7
+ };
8
+ return function (d, b) {
9
+ extendStatics(d, b);
10
+ function __() { this.constructor = d; }
11
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
+ };
13
+ })();
14
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
19
+ };
20
20
  import { Property, ChildProperty } from '@syncfusion/ej2-base';
21
21
  /**
22
22
  * A class that holds the resource grouping related configurations on Schedule.
@@ -1,4 +1,4 @@
1
- import { Property, ChildProperty } from '@syncfusion/ej2-base';import { HeaderRowType } from '../base/type';
1
+ import { Property, ChildProperty } from '@syncfusion/ej2-base';
2
2
 
3
3
  /**
4
4
  * Interface for a class HeaderRows
@@ -6,28 +6,28 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base';import { HeaderRo
6
6
  export interface HeaderRowsModel {
7
7
 
8
8
  /**
9
- * It defines the header row type, which accepts either of the following values.
10
- * * `Year`: Denotes the year row in the header bar.
11
- * * `Month`: Denotes the month row in the header bar.
12
- * * `Week`: Denotes the week row in the header bar.
13
- * * `Date`: Denotes the date row in the header bar.
14
- * * `Hour`: Denotes the hour row in the header bar.
15
- *
16
- * @default null
17
- */
18
- option?: HeaderRowType;
9
+ * It defines the header row type, which accepts either of the following values.
10
+ * * `Year`: Denotes the year row in the header bar.
11
+ * * `Month`: Denotes the month row in the header bar.
12
+ * * `Week`: Denotes the week row in the header bar.
13
+ * * `Date`: Denotes the date row in the header bar.
14
+ * * `Hour`: Denotes the hour row in the header bar.
15
+ *
16
+ * @default null
17
+ */
18
+ option?: HeaderRowType;
19
19
 
20
20
  /**
21
- * Template option to customize the individual header rows. It accepts either the string or HTMLElement as template design
22
- * content and parse it appropriately before displaying it onto the header cells. The field that
23
- * can be accessed via this template is `date`.
24
- *
25
- * @default null
26
- * @angularType string | object
27
- * @reactType string | function | JSX.Element
28
- * @vueType string | function
29
- * @aspType string
30
- */
31
- template?: string | Function;
21
+ * Template option to customize the individual header rows. It accepts either the string or HTMLElement as template design
22
+ * content and parse it appropriately before displaying it onto the header cells. The field that
23
+ * can be accessed via this template is `date`.
24
+ *
25
+ * @default null
26
+ * @angularType string | object
27
+ * @reactType string | function | JSX.Element
28
+ * @vueType string | function
29
+ * @aspType string
30
+ */
31
+ template?: string | Function;
32
32
 
33
33
  }
@@ -1,22 +1,22 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = function (d, b) {
3
- extendStatics = Object.setPrototypeOf ||
4
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
- return extendStatics(d, b);
7
- };
8
- return function (d, b) {
9
- extendStatics(d, b);
10
- function __() { this.constructor = d; }
11
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
- };
13
- })();
14
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
1
+ var __extends = (this && this.__extends) || (function () {
2
+ var extendStatics = function (d, b) {
3
+ extendStatics = Object.setPrototypeOf ||
4
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
+ return extendStatics(d, b);
7
+ };
8
+ return function (d, b) {
9
+ extendStatics(d, b);
10
+ function __() { this.constructor = d; }
11
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
+ };
13
+ })();
14
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
19
+ };
20
20
  import { Property, ChildProperty } from '@syncfusion/ej2-base';
21
21
  /**
22
22
  * A class that represents the header rows related configurations on timeline views.