@bryntum/scheduler-thin-trial 7.2.3 → 7.3.0

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 (243) hide show
  1. package/README.md +0 -1
  2. package/entry.js +2 -1
  3. package/fluent2-dark.css +16 -0
  4. package/high-contrast-dark.css +45 -0
  5. package/high-contrast-light.css +29 -0
  6. package/lib/column/DurationColumn.js +1 -1
  7. package/lib/column/EventColorColumn.js +1 -1
  8. package/lib/column/ResourceCollapseColumn.js +1 -1
  9. package/lib/column/ResourceInfoColumn.js +1 -1
  10. package/lib/column/ScaleColumn.js +1 -1
  11. package/lib/column/TimeAxisColumn.js +1 -1
  12. package/lib/column/VerticalTimeAxisColumn.js +1 -1
  13. package/lib/crud/AbstractCrudManager.js +1 -1
  14. package/lib/crud/AbstractCrudManagerMixin.js +1 -1
  15. package/lib/crud/mixin/CrudManagerView.js +1 -1
  16. package/lib/crud/mixin/LazyLoadCrudManager.js +1 -1
  17. package/lib/customElements/SchedulerTag.js +1 -1
  18. package/lib/customElements/TimelineBaseTag.js +1 -1
  19. package/lib/data/AssignmentStore.js +1 -1
  20. package/lib/data/CrudManager.js +1 -1
  21. package/lib/data/DependencyStore.js +1 -1
  22. package/lib/data/EventStore.js +1 -1
  23. package/lib/data/ResourceStore.js +1 -1
  24. package/lib/data/ResourceTickStore.js +1 -1
  25. package/lib/data/ResourceTimeRangeStore.js +1 -1
  26. package/lib/data/TimeAxis.js +1 -1
  27. package/lib/data/TimeRangeStore.js +1 -1
  28. package/lib/data/mixin/AssignmentStoreMixin.js +1 -1
  29. package/lib/data/mixin/DependencyStoreMixin.js +1 -1
  30. package/lib/data/mixin/EventStoreMixin.js +1 -1
  31. package/lib/data/mixin/GetEventsMixin.js +1 -1
  32. package/lib/data/mixin/LazyLoadView.js +1 -1
  33. package/lib/data/mixin/ProjectConsumer.js +1 -1
  34. package/lib/data/mixin/ProjectCrudManager.js +1 -1
  35. package/lib/data/mixin/ResourceStoreMixin.js +1 -1
  36. package/lib/data/plugin/DateStoreLazyLoadPlugin.js +1 -1
  37. package/lib/feature/AI.js +1 -1
  38. package/lib/feature/AbstractTimeRanges.js +1 -1
  39. package/lib/feature/ColumnLines.css +6 -1
  40. package/lib/feature/ColumnLines.js +1 -1
  41. package/lib/feature/Dependencies.css +12 -2
  42. package/lib/feature/Dependencies.js +1 -1
  43. package/lib/feature/DependencyEdit.js +1 -1
  44. package/lib/feature/DependencyMenu.js +1 -1
  45. package/lib/feature/EventCopyPaste.js +1 -1
  46. package/lib/feature/EventDrag.css +14 -2
  47. package/lib/feature/EventDrag.js +1 -1
  48. package/lib/feature/EventDragCreate.js +1 -1
  49. package/lib/feature/EventDragSelect.css +6 -1
  50. package/lib/feature/EventDragSelect.js +1 -1
  51. package/lib/feature/EventEdit.js +1 -1
  52. package/lib/feature/EventFilter.js +1 -1
  53. package/lib/feature/EventMenu.js +1 -1
  54. package/lib/feature/EventNonWorkingTime.css +6 -1
  55. package/lib/feature/EventNonWorkingTime.js +1 -1
  56. package/lib/feature/EventResize.css +6 -1
  57. package/lib/feature/EventResize.js +1 -1
  58. package/lib/feature/EventTooltip.js +1 -1
  59. package/lib/feature/GroupSummary.js +1 -1
  60. package/lib/feature/HeaderZoom.js +1 -1
  61. package/lib/feature/Labels.css +6 -1
  62. package/lib/feature/Labels.js +1 -1
  63. package/lib/feature/LockRows.js +1 -1
  64. package/lib/feature/NonWorkingTime.js +1 -1
  65. package/lib/feature/Pan.js +1 -1
  66. package/lib/feature/ResourceColumnReorder.css +12 -2
  67. package/lib/feature/ResourceColumnReorder.js +1 -1
  68. package/lib/feature/ResourceMenu.js +1 -1
  69. package/lib/feature/ResourceTimeRanges.js +1 -1
  70. package/lib/feature/RowReorder.js +1 -1
  71. package/lib/feature/RowResize.js +1 -1
  72. package/lib/feature/ScheduleContext.css +7 -2
  73. package/lib/feature/ScheduleContext.js +1 -1
  74. package/lib/feature/ScheduleMenu.js +1 -1
  75. package/lib/feature/ScheduleTooltip.js +1 -1
  76. package/lib/feature/ScrollButtons.js +1 -1
  77. package/lib/feature/SimpleEventEdit.css +8 -1
  78. package/lib/feature/SimpleEventEdit.js +1 -1
  79. package/lib/feature/Split.js +1 -1
  80. package/lib/feature/StickyEvents.js +1 -1
  81. package/lib/feature/Summary.js +1 -1
  82. package/lib/feature/TimeAxisHeaderMenu.js +1 -1
  83. package/lib/feature/TimeRanges.css +52 -0
  84. package/lib/feature/TimeRanges.js +1 -1
  85. package/lib/feature/TimeSelection.css +6 -1
  86. package/lib/feature/TimeSelection.js +1 -1
  87. package/lib/feature/TimelineSummary.js +1 -1
  88. package/lib/feature/TreeSummary.js +1 -1
  89. package/lib/feature/ai/agents/DefaultSchedulerAgent.js +6 -6
  90. package/lib/feature/ai/agents/trainingData.js +1 -1
  91. package/lib/feature/base/DragBase.js +1 -1
  92. package/lib/feature/base/DragCreateBase.js +1 -1
  93. package/lib/feature/base/EditBase.js +1 -1
  94. package/lib/feature/base/ResourceTimeRangesBase.js +1 -1
  95. package/lib/feature/base/TimeSpanMenuBase.js +1 -1
  96. package/lib/feature/base/TooltipBase.js +1 -1
  97. package/lib/feature/export/PdfExport.js +1 -1
  98. package/lib/feature/export/Print.js +1 -1
  99. package/lib/feature/export/exporter/MultiPageExporter.js +1 -1
  100. package/lib/feature/export/exporter/MultiPageVerticalExporter.js +1 -1
  101. package/lib/feature/export/exporter/SinglePageExporter.js +1 -1
  102. package/lib/feature/export/verticalexporter/VerticalExporter.js +1 -1
  103. package/lib/feature/mixin/DependencyCreation.css +7 -2
  104. package/lib/feature/mixin/HeaderDragSelect.css +8 -1
  105. package/lib/feature/mixin/NonWorkingTimeMixin.js +1 -1
  106. package/lib/feature/mixin/RecurringEventEdit.js +1 -1
  107. package/lib/localization/En.js +1 -1
  108. package/lib/model/AISettingsModel.js +1 -0
  109. package/lib/model/AssignmentModel.js +1 -1
  110. package/lib/model/DependencyBaseModel.js +1 -1
  111. package/lib/model/DependencyModel.js +1 -1
  112. package/lib/model/EventModel.js +1 -1
  113. package/lib/model/RecurrenceModel.js +1 -1
  114. package/lib/model/ResourceModel.js +1 -1
  115. package/lib/model/ResourceTimeRangeModel.js +1 -1
  116. package/lib/model/TimeRangeModel.js +1 -1
  117. package/lib/model/TimeSpan.js +1 -1
  118. package/lib/model/mixin/AssignmentModelMixin.js +1 -1
  119. package/lib/model/mixin/EventModelMixin.js +1 -1
  120. package/lib/model/mixin/ProjectModelCommon.js +1 -1
  121. package/lib/model/mixin/RecurringTimeSpan.js +1 -1
  122. package/lib/model/mixin/ResourceModelMixin.js +1 -1
  123. package/lib/preset/PresetManager.js +1 -1
  124. package/lib/preset/PresetStore.js +1 -1
  125. package/lib/preset/ViewPreset.js +1 -1
  126. package/lib/util/TimelineContext.js +1 -1
  127. package/lib/view/EventEditor.js +1 -1
  128. package/lib/view/ResourceHeader.css +5 -0
  129. package/lib/view/ResourceHeader.js +1 -1
  130. package/lib/view/Scheduler.js +1 -1
  131. package/lib/view/SchedulerBase.js +1 -1
  132. package/lib/view/TimeAxisBase.js +1 -1
  133. package/lib/view/TimeAxisSubGrid.js +1 -1
  134. package/lib/view/TimelineBase.css +22 -9
  135. package/lib/view/TimelineBase.js +1 -1
  136. package/lib/view/TimelineHistogram.css +97 -1
  137. package/lib/view/TimelineHistogram.js +1 -1
  138. package/lib/view/TimelineHistogramBase.js +1 -1
  139. package/lib/view/TimelineHistogramRendering.js +1 -1
  140. package/lib/view/export/SchedulerExportDialog.js +1 -1
  141. package/lib/view/mixin/Describable.js +1 -1
  142. package/lib/view/mixin/EventNavigation.js +1 -1
  143. package/lib/view/mixin/EventSelection.js +1 -1
  144. package/lib/view/mixin/RecurringEvents.js +1 -1
  145. package/lib/view/mixin/SchedulerDom.js +1 -1
  146. package/lib/view/mixin/SchedulerDomEvents.js +1 -1
  147. package/lib/view/mixin/SchedulerEventRendering.css +26 -6
  148. package/lib/view/mixin/SchedulerEventRendering.js +1 -1
  149. package/lib/view/mixin/SchedulerRegions.js +1 -1
  150. package/lib/view/mixin/SchedulerResourceRendering.js +1 -1
  151. package/lib/view/mixin/SchedulerScroll.js +1 -1
  152. package/lib/view/mixin/SchedulerState.js +1 -1
  153. package/lib/view/mixin/SchedulerStores.js +1 -1
  154. package/lib/view/mixin/TimelineDateMapper.js +1 -1
  155. package/lib/view/mixin/TimelineDomEvents.js +1 -1
  156. package/lib/view/mixin/TimelineEventRendering.js +1 -1
  157. package/lib/view/mixin/TimelineHistogramGrouping.js +1 -1
  158. package/lib/view/mixin/TimelineHistogramScaleColumn.js +1 -1
  159. package/lib/view/mixin/TimelineScroll.js +1 -1
  160. package/lib/view/mixin/TimelineSmoothZoom.js +1 -0
  161. package/lib/view/mixin/TimelineState.js +1 -1
  162. package/lib/view/mixin/TimelineViewPresets.js +1 -1
  163. package/lib/view/mixin/TimelineZoomable.js +1 -1
  164. package/lib/view/mixin/TransactionalFeatureMixin.js +1 -1
  165. package/lib/view/model/TimeAxisViewModel.js +1 -1
  166. package/lib/view/orientation/HorizontalRendering.js +1 -1
  167. package/lib/view/orientation/VerticalRendering.js +1 -1
  168. package/lib/view/recurrence/RecurrenceConfirmationPopup.js +1 -1
  169. package/lib/view/recurrence/RecurrenceEditor.js +1 -1
  170. package/lib/view/recurrence/RecurrenceLegendButton.js +1 -1
  171. package/lib/view/recurrence/field/RecurrenceCombo.js +1 -1
  172. package/lib/view/recurrence/field/RecurrenceDaysButtonGroup.js +1 -1
  173. package/lib/view/recurrence/field/RecurrenceDaysCombo.js +1 -1
  174. package/lib/view/recurrence/field/RecurrenceFrequencyCombo.js +1 -1
  175. package/lib/view/recurrence/field/RecurrenceMonthDaysButtonGroup.js +1 -1
  176. package/lib/view/recurrence/field/RecurrenceMonthsButtonGroup.js +1 -1
  177. package/lib/view/recurrence/field/RecurrencePositionsCombo.js +1 -1
  178. package/lib/view/recurrence/field/RecurrenceStopConditionCombo.js +1 -1
  179. package/lib/widget/DayButtons.js +1 -1
  180. package/lib/widget/EventColorField.js +1 -1
  181. package/lib/widget/EventColorPicker.js +1 -1
  182. package/lib/widget/ProjectCombo.js +1 -1
  183. package/lib/widget/ResourceCombo.js +1 -1
  184. package/lib/widget/ResourceFilter.js +1 -1
  185. package/lib/widget/SchedulerDatePicker.css +21 -46
  186. package/lib/widget/SchedulerDatePicker.js +1 -1
  187. package/lib/widget/TimeZoomSlider.js +1 -0
  188. package/lib/widget/UndoRedo.js +1 -1
  189. package/lib/widget/ViewPresetCombo.js +1 -1
  190. package/locales/scheduler.locale.Ar.js +1 -1
  191. package/locales/scheduler.locale.Bg.js +1 -1
  192. package/locales/scheduler.locale.Ca.js +1 -1
  193. package/locales/scheduler.locale.Cs.js +1 -1
  194. package/locales/scheduler.locale.Da.js +1 -1
  195. package/locales/scheduler.locale.De.js +1 -1
  196. package/locales/scheduler.locale.El.js +1 -1
  197. package/locales/scheduler.locale.En.js +1 -1
  198. package/locales/scheduler.locale.EnGb.js +1 -1
  199. package/locales/scheduler.locale.Es.js +1 -1
  200. package/locales/scheduler.locale.Et.js +1 -1
  201. package/locales/scheduler.locale.Eu.js +1 -1
  202. package/locales/scheduler.locale.Fi.js +1 -1
  203. package/locales/scheduler.locale.FrFr.js +1 -1
  204. package/locales/scheduler.locale.Gl.js +1 -1
  205. package/locales/scheduler.locale.He.js +1 -1
  206. package/locales/scheduler.locale.Hi.js +1 -1
  207. package/locales/scheduler.locale.Hr.js +1 -1
  208. package/locales/scheduler.locale.Hu.js +1 -1
  209. package/locales/scheduler.locale.Id.js +1 -1
  210. package/locales/scheduler.locale.It.js +1 -1
  211. package/locales/scheduler.locale.Ja.js +1 -1
  212. package/locales/scheduler.locale.Kk.js +1 -1
  213. package/locales/scheduler.locale.Ko.js +1 -1
  214. package/locales/scheduler.locale.Lt.js +1 -1
  215. package/locales/scheduler.locale.Lv.js +1 -1
  216. package/locales/scheduler.locale.Ms.js +1 -1
  217. package/locales/scheduler.locale.Nl.js +1 -1
  218. package/locales/scheduler.locale.No.js +1 -1
  219. package/locales/scheduler.locale.Pl.js +1 -1
  220. package/locales/scheduler.locale.Pt.js +1 -1
  221. package/locales/scheduler.locale.PtBr.js +1 -1
  222. package/locales/scheduler.locale.Ro.js +1 -1
  223. package/locales/scheduler.locale.Ru.js +1 -1
  224. package/locales/scheduler.locale.Sk.js +1 -1
  225. package/locales/scheduler.locale.Sl.js +1 -1
  226. package/locales/scheduler.locale.Sr.js +1 -1
  227. package/locales/scheduler.locale.SrRs.js +1 -1
  228. package/locales/scheduler.locale.SvSE.js +1 -1
  229. package/locales/scheduler.locale.Th.js +1 -1
  230. package/locales/scheduler.locale.Tr.js +1 -1
  231. package/locales/scheduler.locale.Uk.js +1 -1
  232. package/locales/scheduler.locale.Vi.js +1 -1
  233. package/locales/scheduler.locale.ZhCn.js +1 -1
  234. package/locales/scheduler.locale.ZhTw.js +1 -1
  235. package/material3-dark.css +16 -0
  236. package/package.json +1 -1
  237. package/scheduler.css +172 -47
  238. package/scheduler.css.map +2 -2
  239. package/scheduler.d.ts +10578 -12881
  240. package/stockholm-dark.css +16 -0
  241. package/svalbard-dark.css +16 -0
  242. package/visby-dark.css +16 -0
  243. package/lib/data/AISettingsModel.js +0 -1
@@ -1 +1 @@
1
- (function(a,b){const c=a();function H(a,b){return _scb(b-0x1a6,a);}while(!![]){try{const d=-parseInt(H(0x3b1,0x3c7))/0x1+parseInt(H(0x3cf,0x3bf))/0x2+-parseInt(H(0x384,0x373))/0x3*(-parseInt(H(0x36a,0x34b))/0x4)+-parseInt(H(0x33e,0x37f))/0x5*(parseInt(H(0x364,0x399))/0x6)+parseInt(H(0x37e,0x3af))/0x7+parseInt(H(0x3a4,0x371))/0x8*(-parseInt(H(0x382,0x386))/0x9)+-parseInt(H(0x3b2,0x3c0))/0xa*(-parseInt(H(0x3bd,0x3b9))/0xb);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x48286));import _scc from'@bryntum/core-thin/lib/widget/Widget.js';import _scd from'@bryntum/core-thin/lib/helper/DomHelper.js';function _sca(){const a8=['style','changeFitWidth','innerHTML','destroy','columnWidth','groupParent','toLowerCase','name','avatarRendering','floor','encodeHtml','isArray','grid','2558437OIOSSO','insetEnd','updateImagePath','b-has-images','isGrouped','resourceStore','insetInlineStart','showAvatars','string','width','1216424XihipL','add','iconCls','children','field','updateWidthCache','807998MQqGew','10auETsj','removeall','sync','remove','getResourceWidth','@bryntum/scheduler-thin/lib/view/ResourceHeader.css','resourceheader','41704bGipWu','refreshScheduleWidth','getCurrentConfig','ion','meta','_columnWidth','100geWtZg','firstResource','lastResource','image','joinPaths','target','count','refresh','allResourceRecords','var(--b-color-','column','initials','push','updateAvailableWidth','element','resourceHeader','_resourceColumns','_fillWidth','processResourceHeader','toggleCls','length','renderResourceHeaders','html','capitalize','refreshingWidths','groupers','changeColumnWidth','imageExtension','refreshWidths','b-resource-header-group-text-wrap','call','renderer','insetStart','updateShowAvatars','b-grouped','getResourceAvatar','updateColumnWidth','construct','5192BqdggN','closest','11397soUROZ','instanceMeta','groupRenderer','fillWidth','features','trigger','imagePath','defaultImageName','fitWidth','ResourceHeader','includes','configuredFitWidth','5UEWdRo','onResourceStoreGroup','nullify','getImageURL','toggleEmptyText','changeFillWidth','_fitWidth','5814YmTnsc','eventColor','onResourceMouseEvent','forEach','groupChildren','getConfig','addTemporaryClass','configuredFillWidth','headerRenderer','type','group','isConfiguring','span','dataset','groupRowFor','resourceId','object','changeEvent','imageUrl','1311198ZPinEl','visibleResources','detachListeners','childCount','set','onResourceStoreDataChange','resourceColumnWidth','variableColumnWidths','.b-resource-header-cell'];_sca=function(){return a8;};return _sca();}function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x1a1;let f=c[d];return f;};return _scb(a,b);}import _sce from'@bryntum/core-thin/lib/helper/DomSync.js';import _scf from'@bryntum/core-thin/lib/helper/EventHelper.js';import _scg from'@bryntum/core-thin/lib/helper/util/DomClassList.js';function _scI(a,b){return _scb(b-0x1d,a);}import _sch from'@bryntum/core-thin/lib/helper/StringHelper.js';import _sci from'@bryntum/core-thin/lib/widget/util/AvatarRendering.js';_scd['loadStylesheet'](_scI(0x244,0x23c));export default class ResourceHeader extends _scc{static ['$name']=_scI(0x1cd,0x1f3);static [_scI(0x20e,0x206)]=_scI(0x23c,0x23d);static ['configurable']={'resourceStore':null,'headerRenderer':null,'showAvatars':{'value':!![],'$config':_scI(0x222,0x1f8)},'fillWidth':!![],'fitWidth':![],'columnWidth':0x96,'imagePath':null,'imageExtension':null,'defaultImageName':null,'availableWidth':null};[_scI(0x1a5,0x1c3)]=-0x1;['lastResource']=-0x1;[_scI(0x1df,0x1e7)](a){const b=this;a['scheduler'][J(-0x189,-0x187)]=b;super[J(-0x17c,-0x172)](a);if(b['imagePath']!=null){b['addCls'](J(-0x142,-0x130));}function J(a,b){return _scI(a,b- -0x359);}_scf['on']({'element':b[J(-0x162,-0x189)],'delegate':J(-0x122,-0x141),'capture':!![],'click':'onResourceMouseEvent','dblclick':'onResourceMouseEvent','contextmenu':'onResourceMouseEvent','thisObj':b});}['changeShowAvatars'](a){function K(a,b){return _scI(b,a- -0x2c8);}var b;(b=this[K(-0xa7,-0xbf)])===null||b===void 0x0||b[K(-0xac,-0xa3)]();if(a){this[K(-0xa7,-0x8f)]=new _sci({'element':this['element']});}return a;}[_scI(0x1db,0x1e3)](){if(!this['isConfiguring']){this['refresh']();}}['updateResourceStore'](a){function L(a,b){return _scI(b,a-0x1ce);}const b=this;b[L(0x3e0,0x3f4)](L(0x3f9,0x3e8));if(a){a[L(0x38d,0x3a4)]({'name':L(0x3f9,0x3b9),'changePreCommit':L(0x3e3,0x416),'group':L(0x3c5,0x396),'thisObj':b});if(a[L(0x396,0x396)]){b[L(0x3e3,0x3f7)]({});}}}[_scI(0x20e,0x23f)](){const {element:a,column:b,totalWidth:c}=this;function M(a,b){return _scI(a,b-0x9f);}if(c!==this[M(0x2ea,0x2ce)]){_scd['setLength'](a,M(0x2cc,0x2ce),c);b[M(0x273,0x2b3)]('width',c,b[M(0x2c0,0x2c4)][M(0x2d7,0x2a7)]);}}[_scI(0x222,0x1f7)](){function N(a,b){return _scI(b,a- -0x1a0);}this[N(0x9f,0xb5)]();}[_scI(0x240,0x215)]({action:a}){const b=this;b[O(0x2a8,0x274)](O(0x293,0x2b4));b['getConfig'](O(0x298,0x278));const {element:c}=b;function O(a,b){return _scI(b,a-0xa6);}if(b['scheduler'][O(0x2bd,0x2f2)]){b[O(0x279,0x293)]=b[O(0x2a2,0x26c)]=![];}else{b['_fillWidth']=b[O(0x2aa,0x290)];b[O(0x2a2,0x2c1)]=b[O(0x29b,0x28d)];}b[O(0x2e5,0x2be)]();if(a===O(0x2de,0x2a5)){c[O(0x2c1,0x299)]='';}if(a===O(0x2e0,0x313)||a===O(0x2d7,0x2bc)||a==='filter'||b['fitWidth']||b[O(0x293,0x2bb)]){b[O(0x284,0x279)]();}b[O(0x272,0x245)][O(0x2cb,0x2f8)][O(0x2a0,0x292)]();}get['totalWidth'](){function P(a,b){return _scI(b,a- -0x102);}return this[P(0x133,0x16c)]();}[_scI(0x21d,0x235)](){function Q(a,b){return _scI(a,b- -0x100);}let a=0x0;const {scheduler:b}=this;b[Q(0xe3,0x117)]=![];b[Q(0x113,0x12b)][Q(0x11d,0x100)](c=>{const d=c[R(0xbc,0xf2)](b);if(d[R(0x13d,0x124)]==null&&c[R(0x12c,0x124)]){d[R(0xf8,0x124)]=c[R(0x122,0x124)];}d[R(0x10d,0xe9)]=a;d[R(0x115,0x12e)]=a+b[R(0x13a,0x142)](c);function R(a,b){return Q(a,b-0x7);}if(d[R(0xfe,0x124)]==null){a+=b[R(0xe4,0x11d)];}else{a+=d[R(0x112,0x124)];b[R(0x140,0x11e)]=!![];}});return a;}[_scI(0x214,0x1dc)](a){function S(a,b){return _scI(a,b-0x1b8);}if(!this[S(0x3c6,0x392)]){this['configuredColumnWidth']=a;}return a;}[_scI(0x1d9,0x1e6)](a,b){const c=this;if(!c['refreshingWidths']){c[T(0x52e,0x4f0)]();}function T(a,b){return _scI(a,b-0x312);}if(!c[T(0x509,0x51a)]){if(c['resourceStore'][T(0x50b,0x53c)]){c['updateWidthCache']();}c[T(0x4fb,0x4db)]();c[T(0x4d5,0x501)]('columnWidthChange',{'width':a,'oldWidth':b});}}[_scI(0x1fb,0x1fb)](a){function U(a,b){return _scI(b,a-0x253);}return this[U(0x457,0x442)]=a;}['updateFillWidth'](){function V(a,b){return _scI(a,b- -0x145);}if(!this[V(0xc6,0xc3)]){this['refreshWidths']();}}[_scI(0x23d,0x21a)](a){function W(a,b){return _scI(b,a-0x1c5);}return this[W(0x3ba,0x3f3)]=a;}['updateFitWidth'](){function X(a,b){return _scI(b,a-0x182);}if(!this[X(0x38a,0x37a)]){this[X(0x360,0x33d)]();}}[_scI(0x21b,0x1f9)](a){function Y(a,b){return _scI(a,b-0x17b);}return _sch[Y(0x372,0x341)]([this[Y(0x34a,0x36b)]||'',a||''])+(a!==null&&a!==void 0x0&&a[Y(0x3ae,0x36f)]('.')?'':this[Y(0x355,0x358)]);}[_scI(0x25d,0x228)](){function Z(a,b){return _scI(b,a- -0x276);}if(!this['isConfiguring']){this[Z(-0xad,-0xcd)]();}}[_scI(0x1f5,0x1cf)](a){function a0(a,b){return _scI(a,b- -0x1e6);}this[a0(0xe,-0x8)]();}[_scI(0x1b3,0x1de)](){var a;const b=this,{availableWidth:c,configuredColumnWidth:d}=b,e=(a=b[a1(0x3c1,0x3c1)])===null||a===void 0x0?void 0x0:a['count'];if(!c||!e||b['scheduler'][a1(0x383,0x3ad)]){return;}b[a1(0x337,0x370)]=!![];const f=b[a1(0x38c,0x388)]||b[a1(0x392,0x383)]&&d*e<c,g=f?Math[a1(0x39b,0x3b8)](c/e):d,h=b['column'][a1(0x3bb,0x3bb)]['transition'][a1(0x3e0,0x3a4)]&&Math['abs'](b[a1(0x382,0x357)]-g)>0x1e;_scd[a1(0x3c0,0x399)](b[a1(0x388,0x366)],'b-animating',h?0x12c:0x0,b);b[a1(0x3f0,0x3b3)]=g;function a1(a,b){return _scI(a,b-0x196);}b['refreshingWidths']=![];}set[_scI(0x236,0x211)]({firstResource:a,lastResource:b}){this[a2(0x311,0x300)]=a;function a2(a,b){return _scI(a,b-0x13d);}this[a2(0x2e3,0x301)]=b;this[a2(0x3b0,0x372)]();this[a2(0x2d5,0x306)]();}[_scI(0x1a5,0x1c9)](){const a=this,{firstResource:b,scheduler:c,resourceStore:d,lastResource:e}=a,f=d[a3(0x335,0x346)]&&d[a3(0x2f4,0x2f7)][0x0][a3(0x340,0x350)];a[a3(0x321,0x2f1)](a3(0x2df,0x300),Boolean(f));function a3(a,b){return _scI(a,b-0x11c);}const g=a[a3(0x325,0x2f3)](b,e);_sce[a3(0x323,0x355)]({'domConfig':{'onlyChildren':!![],'children':g},'targetElement':a[a3(0x2ca,0x2ec)],'syncIdField':'resourceId','callback':({jsx:h,targetElement:i,domConfig:j})=>{function a4(a,b){return a3(b,a- -0x18b);}var k;(k=c[a4(0x165,0x15e)])===null||k===void 0x0||k[a4(0x171,0x174)](c,{'jsx':h,'targetElement':i,'domConfig':j});}});}[_scI(0x1cc,0x1d7)](a,b){const c=this,{scheduler:d,resourceStore:e}=c,{variableColumnWidths:f}=d,g=e[a5(0x40e,0x42d)]&&e['groupers'][0x0][a5(0x412,0x437)],h=[];function a5(a,b){return _scI(a,b-0x203);}if(!c[a5(0x39c,0x3cf)]['grid'][a5(0x3d8,0x40b)]&&a>-0x1&&b>-0x1&&b<e[a5(0x3cf,0x3cb)]){let m;for(let n=a;n<=b;n++){var j;const o=e[a5(0x390,0x3cd)][n],p=o[a5(0x423,0x3ee)](e)[a5(0x425,0x421)],q=p===null||p===void 0x0?void 0x0:p[a5(0x3fb,0x404)];if(g&&p['id']!==((j=m)===null||j===void 0x0?void 0x0:j[a5(0x420,0x40d)][a5(0x3dc,0x40f)])){var k;const v=q[0x0][a5(0x3bf,0x3ee)](d)[a5(0x3cd,0x3e5)],w=q[q[a5(0x3c8,0x3d9)]-0x1]['instanceMeta'](d)[a5(0x422,0x42a)]-v,x=(k=d[a5(0x3b5,0x3f1)][a5(0x44b,0x40a)])===null||k===void 0x0?void 0x0:k[a5(0x3d5,0x3e4)];let y=q[0x0][a5(0x40f,0x3ee)](e)[a5(0x3ff,0x421)][a5(0x3c1,0x3c3)][a5(0x3f1,0x40e)],z='text';if(x){const A=o[a5(0x423,0x3ee)](e)[a5(0x40e,0x421)],B=A[a5(0x3a2,0x3c3)],C=B[a5(0x40b,0x40e)],D=B[a5(0x3d6,0x416)];y=d[a5(0x3d4,0x3f1)][a5(0x42a,0x40a)][a5(0x3e6,0x3ef)]({'groupRowFor':C,'groupRecords':A['groupChildren'],'count':D});if(typeof y===a5(0x429,0x431)&&y[a5(0x3f1,0x3f7)]('<')){z=a5(0x3fa,0x3db);}else if(typeof y===a5(0x414,0x410)){z='children';y=[y];}}m={'className':'b-resource-header-group-cell','dataset':{'resourceId':p['id']},'style':{'insetInlineStart':v,'width':w},'children':[{'className':a5(0x416,0x3e2),'children':Array[a5(0x418,0x427)](y)?y:[{'tag':a5(0x442,0x40c),[z]:y}]},{'className':'b-resource-header-group-children','children':[]}]};h[a5(0x3cd,0x3d1)](m);}const r=o[a5(0x3dc,0x3ee)](d),s=r[a5(0x453,0x420)]||c[a5(0x416,0x420)],t=g?r[a5(0x3f4,0x3e5)]-m[a5(0x445,0x41c)][a5(0x411,0x42f)]:f?r['insetStart']:n*c['columnWidth'],u={'tabIndex':0x0,'className':new _scg({'b-resource-header-cell':0x1}),'dataset':{'resourceId':o['id']},'style':{'insetInlineStart':t,'width':s,'--b-resource-event-color':o['eventColor']&&a5(0x3d8,0x3ce)+o[a5(0x402,0x401)]+')'},'children':[]};if(c[a5(0x429,0x408)]){const E=c[a5(0x41c,0x408)]({'elementConfig':u,'resourceRecord':o});if(E){if(typeof E===a5(0x41c,0x431)){u['html']=E;}else if(typeof E===a5(0x424,0x410)){u[a5(0x3fa,0x436)]=[E];}}}else{let F;if(o[a5(0x43b,0x412)]){F=o[a5(0x3db,0x412)];}else if(c[a5(0x3e1,0x3f3)]!=null&&o[a5(0x397,0x3c8)]!==![]){var l;const G=o[a5(0x3b7,0x3c8)]||((l=o[a5(0x421,0x423)])===null||l===void 0x0?void 0x0:l[a5(0x3ea,0x422)]());F=G&&c[a5(0x400,0x3fc)](G);}u[a5(0x421,0x436)][a5(0x39f,0x3d1)](c[a5(0x416,0x430)]&&c[a5(0x43c,0x424)][a5(0x416,0x3e8)]({'resourceRecord':o,'initials':o[a5(0x3f0,0x3d0)],'color':o['eventColor'],'iconCls':o[a5(0x470,0x435)],'defaultImageUrl':c['defaultImageName']&&c[a5(0x3c8,0x3fc)](c[a5(0x3eb,0x3f4)]),'imageUrl':F}),{'tag':a5(0x3de,0x40c),'className':'b-resource-name','html':_sch[a5(0x426,0x426)](o[a5(0x460,0x423)])});}if(g){m[a5(0x450,0x436)][0x1][a5(0x473,0x436)][a5(0x3a7,0x3d1)](u);}else{h[a5(0x3d9,0x3d1)](u);}}}return h;}[_scI(0x230,0x1ff)](a){function a6(a,b){return _scI(a,b- -0x6);}const b=a[a6(0x1a2,0x1c1)][a6(0x1c1,0x1e3)]('.b-resource-header-cell'),c=this['resourceStore']['getById'](b[a6(0x1e7,0x204)][a6(0x1ee,0x206)]);this[a6(0x1d4,0x1e9)](a6(0x1e2,0x1cb)+_sch[a6(0x1ce,0x1d3)](a['type']),{'resourceRecord':c,'event':a});}['getCurrentConfig'](a){const b=super[a7(0x276,0x289)](a);delete b[a7(0x311,0x2f6)];delete b[a7(0x2bc,0x297)];function a7(a,b){return _scI(a,b-0xcb);}delete b['type'];return b;}}
1
+ (function(a,b){const c=a();function H(a,b){return _scb(a- -0x212,b);}while(!![]){try{const d=parseInt(H(0x1c,0x57))/0x1+parseInt(H(0x1b,0x41))/0x2*(parseInt(H(0x4c,0x54))/0x3)+parseInt(H(0x32,0x59))/0x4*(-parseInt(H(0x9,0x47))/0x5)+parseInt(H(-0x1d,-0x31))/0x6+parseInt(H(0x48,0xd))/0x7*(-parseInt(H(0x3d,0x4f))/0x8)+-parseInt(H(-0x13,0x28))/0x9*(parseInt(H(-0x25,-0x1d))/0xa)+parseInt(H(0x25,0x3c))/0xb;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x87cee));function _sca(){const a9=['imagePath','headerRenderer','firstResource','innerHTML','features','processResourceHeader','imageExtension','push','b-resource-header-group-text-wrap','field','7AIwEHK','toggleCls','getResourceAvatar','trigger','186405tVuFSU','visibleResources','nullify','scheduler','isGrouped','getImageURL','b-animating','getById','abs','add','remove','lastResource','defaultImageName','showAvatars','refreshWidths','1372040tEjZzF','joinPaths','variableColumnWidths','allResourceRecords','b-resource-name','_fitWidth','grid','construct','99174zYCrwk','addCls','onResourceStoreGroup','fillWidth','changeShowAvatars','configurable','text','b-grouped','style','avatarRendering','63EncMxH','isConfiguring','updateAvailableWidth','html','getConfig','sync','updateShowAvatars','groupParent','capitalize','addTemporaryClass','_resourceColumns','toLowerCase','onResourceStoreDataChange','group','updateImagePath','resourceColumnWidth','updateFitWidth','resourceStore','renderResourceHeaders','getCurrentConfig','_fillWidth','configuredFillWidth','groupRowFor','insetEnd','closest','updateWidthCache','configuredColumnWidth','onResourceMouseEvent','10OIUanA','dataset','includes','columnWidth','column','@bryntum/scheduler-thin/lib/view/ResourceHeader.css','filter','instanceMeta','$name','count','refreshingWidths','children','refreshScheduleWidth','groupers','element','floor','type','call','18ZLFsxN','854724itxyEF','insetStart','destroy','imageUrl','detachListeners','getResourceWidth','image','encodeHtml','configuredFitWidth','4052345djaBZw','meta','fitWidth','refresh','object','columnWidthChange','width','renderer','var(--b-color-','resourceId','b-has-images','ResourceHeader','insetInlineStart','337324XlkqvO','forEach','name','toggleEmptyText','updateResourceStore','groupChildren','eventColor','initials','changeColumnWidth','resourceheader','length','908024EnCkkE'];_sca=function(){return a9;};return _sca();}import _scc from'@bryntum/core-thin/lib/widget/Widget.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x1ed;let f=c[d];return f;};return _scb(a,b);}import _scd from'@bryntum/core-thin/lib/helper/DomHelper.js';import _sce from'@bryntum/core-thin/lib/helper/DomSync.js';import _scf from'@bryntum/core-thin/lib/helper/EventHelper.js';import _scg from'@bryntum/core-thin/lib/helper/util/DomClassList.js';import _sch from'@bryntum/core-thin/lib/helper/StringHelper.js';import _sci from'@bryntum/core-thin/lib/widget/util/AvatarRendering.js';function _scI(a,b){return _scb(a- -0x138,b);}_scd['loadStylesheet'](_scI(0xe8,0xaa));export default class ResourceHeader extends _scc{static [_scI(0xeb,0xde)]=_scI(0x10a,0x12c);static [_scI(0xf3,0xf0)]=_scI(0x115,0xe2);static [_scI(0xc2,0xa1)]={'resourceStore':null,'headerRenderer':null,'showAvatars':{'value':!![],'$config':_scI(0x128,0x151)},'fillWidth':!![],'fitWidth':![],'columnWidth':0x96,'imagePath':null,'imageExtension':null,'defaultImageName':null,'availableWidth':null};[_scI(0x11a,0x132)]=-0x1;[_scI(0x131,0x10f)]=-0x1;[_scI(0xbc,0xfb)](a){const b=this;function J(a,b){return _scI(a- -0x190,b);}a[J(-0x67,-0x71)][J(-0xbf,-0xf7)]=b;super[J(-0xd4,-0xf8)](a);if(b[J(-0x78,-0x82)]!=null){b[J(-0xd2,-0xb1)](J(-0x87,-0x61));}_scf['on']({'element':b[J(-0x9f,-0x72)],'delegate':'.b-resource-header-cell','capture':!![],'click':J(-0xae,-0x91),'dblclick':'onResourceMouseEvent','contextmenu':'onResourceMouseEvent','thisObj':b});}[_scI(0xc1,0xc1)](a){var b;function K(a,b){return _scI(a-0x372,b);}(b=this[K(0x438,0x401)])===null||b===void 0x0||b[K(0x46a,0x46f)]();if(a){this['avatarRendering']=new _sci({'element':this[K(0x463,0x47c)]});}return a;}[_scI(0xcd,0x97)](){function L(a,b){return _scI(b-0x226,a);}if(!this[L(0x315,0x2ee)]){this[L(0x339,0x328)]();}}[_scI(0x110,0xdf)](a){const b=this;function M(a,b){return _scI(b-0x164,a);}b[M(0x285,0x25e)]('resourceStore');if(a){a['ion']({'name':'resourceStore','changePreCommit':'onResourceStoreDataChange','group':M(0x1f9,0x223),'thisObj':b});if(a[M(0x236,0x250)]){b[M(0x204,0x237)]({});}}}[_scI(0xef,0xf8)](){const {element:a,column:b,totalWidth:c}=this;function N(a,b){return _scI(b-0x276,a);}if(c!==this[N(0x3a9,0x37b)]){_scd['setLength'](a,N(0x360,0x37b),c);b['set'](N(0x37b,0x37b),c,b['grid'][N(0x317,0x33e)]);}}['onResourceStoreGroup'](){function O(a,b){return _scI(b- -0x289,a);}this[O(-0x194,-0x19a)]();}[_scI(0xd3,0xd9)]({action:a,changes:b}){function P(a,b){return _scI(a-0xf2,b);}const c=this;c[P(0x1bd,0x1ea)](P(0x1b2,0x17c));c[P(0x1bd,0x190)](P(0x1f3,0x21e));const {element:d}=c;if(c[P(0x21b,0x23b)][P(0x1a9,0x1e1)]){c[P(0x1cd,0x1a3)]=c[P(0x1ac,0x1e6)]=![];}else{c[P(0x1cd,0x1a5)]=c[P(0x1ce,0x1bf)];c[P(0x1ac,0x173)]=c[P(0x1f0,0x1d1)];}c[P(0x1e1,0x1b5)]();if(a==='removeall'){d[P(0x20d,0x1f9)]='';}if(a===P(0x222,0x262)||a===P(0x221,0x1f6)||a===P(0x1db,0x1f5)||c['fitWidth']||c['fillWidth']){c[P(0x226,0x1e6)]();}if(b&&P(0x1d8,0x1e3)in b){c[P(0x1f4,0x1cd)]();}c['column'][P(0x1ad,0x1bd)][P(0x201,0x210)]();}get['totalWidth'](){function Q(a,b){return _scI(a- -0xe4,b);}return this[Q(-0x4,-0x25)]();}['updateWidthCache'](){let a=0x0;const {scheduler:b}=this;b[R(-0xea,-0x10b)]=![];b['resourceStore'][R(-0xcd,-0xb5)](c=>{const d=c[S(0x131,0x132)](b);if(c[S(0x12d,0x142)]){d[S(0x12d,0x106)]=c[S(0x12d,0x152)];}d[S(0x13e,0x14f)]=a;d[S(0x125,0x14d)]=a+b[S(0x142,0x165)](c);function S(a,b){return R(b,a-0x209);}if(d[S(0x12d,0x12f)]==null){a+=b[S(0x11d,0xeb)];}else{a+=d[S(0x12d,0x11c)];b[S(0xfe,0xc8)]=!![];}});function R(a,b){return _scI(b- -0x1c2,a);}return a;}[_scI(0x114,0xf8)](a){function T(a,b){return _scI(b- -0x128,a);}if(!this[T(-0x41,-0x3b)]){this[T(-0x79,-0x47)]=a;}return a;}['updateColumnWidth'](a,b){const c=this;function U(a,b){return _scI(b-0xf5,a);}if(!c[U(0x1a8,0x1e2)]){c[U(0x25c,0x229)]();}if(!c[U(0x1ea,0x1bd)]){if(c[U(0x1ec,0x1cd)][U(0x206,0x21f)]){c[U(0x1d0,0x1d5)]();}c[U(0x1d5,0x1f7)]();c[U(0x20a,0x21a)](U(0x1be,0x1f9),{'width':a,'oldWidth':b});}}['changeFillWidth'](a){function V(a,b){return _scI(b-0x424,a);}return this[V(0x4e1,0x500)]=a;}['updateFillWidth'](){function W(a,b){return _scI(b-0x336,a);}if(!this[W(0x427,0x3fe)]){this[W(0x430,0x46a)]();}}['changeFitWidth'](a){function X(a,b){return _scI(a-0x28,b);}return this[X(0x126,0xec)]=a;}[_scI(0xd7,0xee)](){function Y(a,b){return _scI(a-0x2f6,b);}if(!this[Y(0x3be,0x386)]){this[Y(0x42a,0x461)]();}}[_scI(0x12b,0x166)](a){function Z(a,b){return _scI(b-0x1ca,a);}return _sch[Z(0x2bf,0x280)]([this[Z(0x2a2,0x2e2)]||'',a||''])+(a!==null&&a!==void 0x0&&a['includes']('.')?'':this[Z(0x2eb,0x2e8)]);}[_scI(0xd5,0xdc)](){function a0(a,b){return _scI(a-0x9e,b);}if(!this[a0(0x166,0x149)]){this['refresh']();}}[_scI(0xc9,0xce)](a){function a1(a,b){return _scI(b- -0x29c,a);}this[a1(-0x13e,-0x168)]();}[_scI(0x134,0x127)](){var a;const b=this,{availableWidth:c,configuredColumnWidth:d}=b,e=(a=b[a2(-0xad,-0xba)])===null||a===void 0x0?void 0x0:a['count'];if(!c||!e||b[a2(-0x70,-0x69)][a2(-0xfa,-0xdb)]){return;}b[a2(-0xd1,-0xa5)]=!![];const f=b[a2(-0x58,-0x91)]||b[a2(-0x107,-0xd2)]&&d*e<c,g=f?Math[a2(-0xd4,-0xa0)](c/e):d,h=b[a2(-0x6c,-0xab)][a2(-0xf2,-0xd7)]['transition']['changeEvent']&&Math[a2(-0x87,-0x64)](b['_columnWidth']-g)>0x1e;_scd[a2(-0xfe,-0xc2)](b[a2(-0x63,-0xa1)],a2(-0x6b,-0x66),h?0x12c:0x0,b);b[a2(-0x78,-0xac)]=g;function a2(a,b){return _scI(b- -0x192,a);}b['refreshingWidths']=![];}set[_scI(0x127,0xfc)]({firstResource:a,lastResource:b}){this['firstResource']=a;this['lastResource']=b;this[a3(0x3af,0x3c3)]();function a3(a,b){return _scI(a-0x2cf,b);}this['refresh']();}[_scI(0x102,0x12e)](){const a=this,{firstResource:b,scheduler:c,resourceStore:d,lastResource:e}=a,f=d[a4(0x18b,0x14d)]&&d[a4(0x10b,0x113)][0x0][a4(0x12f,0x144)];a[a4(0x15a,0x146)](a4(0xc2,0xe7),Boolean(f));const g=a[a4(0x139,0xfc)](b,e);function a4(a,b){return _scI(b-0x23,a);}_sce[a4(0xef,0xef)]({'domConfig':{'onlyChildren':!![],'children':g},'targetElement':a[a4(0x10b,0x114)],'syncIdField':'resourceId','callback':({jsx:h,targetElement:i,domConfig:j})=>{function a5(a,b){return a4(a,b- -0x121);}var k;(k=c[a5(0x1b,0x1f)])===null||k===void 0x0||k[a5(-0x19,-0xa)](c,{'jsx':h,'targetElement':i,'domConfig':j});}});}['renderResourceHeaders'](a,b){const c=this,{scheduler:d,resourceStore:e}=c,{variableColumnWidths:f}=d,g=e['isGrouped']&&e[a6(-0xcf,-0xca)][0x0]['field'],h=[];if(!c[a6(-0xd8,-0x10e)]['grid'][a6(-0xf7,-0x133)]&&a>-0x1&&b>-0x1&&b<e['count']){let m;for(let n=a;n<=b;n++){var j;const o=e[a6(-0x107,-0xd7)][n],p=o[a6(-0xd5,-0xcb)](e)[a6(-0xf1,-0xd3)],q=p===null||p===void 0x0?void 0x0:p[a6(-0xae,-0x89)];if(g&&p['id']!==((j=m)===null||j===void 0x0?void 0x0:j[a6(-0xdb,-0xce)]['resourceId'])){var k;const v=q[0x0]['instanceMeta'](d)['insetStart'],w=q[q[a6(-0xa9,-0x98)]-0x1][a6(-0xd5,-0xaf)](d)['insetEnd']-v,x=(k=d[a6(-0xa3,-0x95)][a6(-0xeb,-0xc9)])===null||k===void 0x0?void 0x0:k[a6(-0xb9,-0x7d)];let y=q[0x0][a6(-0xd5,-0x10e)](e)[a6(-0xf1,-0xeb)][a6(-0xbf,-0x85)][a6(-0xe2,-0x106)],z=a6(-0xfc,-0x112);if(x){const A=o[a6(-0xd5,-0xea)](e)[a6(-0xf1,-0x123)],B=A['meta'],C=B[a6(-0xe2,-0xc3)],D=B['childCount'];y=d[a6(-0xa3,-0x8f)]['group']['groupRenderer']({'groupRowFor':C,'groupRecords':A[a6(-0xae,-0xd7)],'count':D});if(typeof y==='string'&&y[a6(-0xda,-0x117)]('<')){z=a6(-0xf5,-0x131);}else if(typeof y===a6(-0xbc,-0xc2)){z=a6(-0xd1,-0x103);y=[y];}}m={'className':'b-resource-header-group-cell','dataset':{'resourceId':p['id']},'style':{'insetInlineStart':v,'width':w},'children':[{'className':a6(-0x9f,-0x78),'children':Array['isArray'](y)?y:[{'tag':'span',[z]:y}]},{'className':'b-resource-header-group-children','children':[]}]};h[a6(-0xa0,-0x6b)](m);}const r=o[a6(-0xd5,-0xe5)](d),s=r[a6(-0xd9,-0xdc)]||c[a6(-0xd9,-0xf6)],t=g?r[a6(-0xc8,-0x8d)]-m[a6(-0xfa,-0x118)][a6(-0xb4,-0xee)]:f?r[a6(-0xc8,-0xb5)]:n*c[a6(-0xd9,-0xd5)],u={'tabIndex':0x0,'className':new _scg({'b-resource-header-cell':0x1}),'dataset':{'resourceId':o['id']},'style':{'insetInlineStart':t,'width':s,'--b-resource-event-color':o['eventColor']&&a6(-0xb8,-0xa6)+o[a6(-0xad,-0xaf)]+')'},'children':[]};if(c[a6(-0xa6,-0xbd)]){const E=c['headerRenderer']({'elementConfig':u,'resourceRecord':o});if(E){if(typeof E==='string'){u[a6(-0xf5,-0xcb)]=E;}else if(typeof E===a6(-0xbc,-0xb1)){u[a6(-0xd1,-0x110)]=[E];}}}else{let F;if(o[a6(-0xc6,-0xaa)]){F=o[a6(-0xc6,-0xb9)];}else if(c[a6(-0xa7,-0xc6)]!=null&&o[a6(-0xc3,-0xce)]!==![]){var l;const G=o[a6(-0xc3,-0x9e)]||((l=o['name'])===null||l===void 0x0?void 0x0:l[a6(-0xed,-0xd4)]());F=G&&c[a6(-0x94,-0xa4)](G);}u[a6(-0xd1,-0x10b)][a6(-0xa0,-0x9b)](c[a6(-0x8c,-0x84)]&&c[a6(-0xf9,-0xbf)][a6(-0x9b,-0x82)]({'resourceRecord':o,'initials':o[a6(-0xac,-0xe0)],'color':o['eventColor'],'iconCls':o['iconCls'],'defaultImageUrl':c[a6(-0x8d,-0x5d)]&&c[a6(-0x94,-0xb2)](c['defaultImageName']),'imageUrl':F}),{'tag':'span','className':a6(-0x106,-0xc9),'html':_sch[a6(-0xc2,-0xab)](o[a6(-0xb1,-0x88)])});}if(g){m[a6(-0xd1,-0xf2)][0x1][a6(-0xd1,-0xaf)][a6(-0xa0,-0x92)](u);}else{h[a6(-0xa0,-0xd9)](u);}}}function a6(a,b){return _scI(a- -0x1bf,b);}return h;}[_scI(0xe2,0x10d)](a){function a7(a,b){return _scI(a- -0x1c8,b);}const b=a['target'][a7(-0xe9,-0xbc)]('.b-resource-header-cell'),c=this[a7(-0xf0,-0xb3)][a7(-0x9b,-0xbe)](b[a7(-0xe4,-0xe3)][a7(-0xc0,-0xf1)]);this[a7(-0xa3,-0xc4)]('resourceHeader'+_sch[a7(-0xf9,-0x125)](a[a7(-0xd5,-0xaa)]),{'resourceRecord':c,'event':a});}[_scI(0xda,0xe5)](a){function a8(a,b){return _scI(a-0x4d,b);}const b=super['getCurrentConfig'](a);delete b[a8(0x125,0x11d)];delete b['column'];delete b[a8(0x140,0x12a)];return b;}}
@@ -1 +1 @@
1
- (function(a,b){function f(a,b){return _scb(a-0x3ba,b);}var c=a();while(!![]){try{var d=parseInt(f(0x563,0x565))/0x1+parseInt(f(0x561,0x564))/0x2*(parseInt(f(0x564,0x567))/0x3)+-parseInt(f(0x569,0x567))/0x4*(parseInt(f(0x55e,0x55c))/0x5)+parseInt(f(0x568,0x562))/0x6*(-parseInt(f(0x567,0x564))/0x7)+-parseInt(f(0x565,0x56a))/0x8+parseInt(f(0x55f,0x560))/0x9+parseInt(f(0x56a,0x56b))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xf1d89));import _scc from'./SchedulerBase.js';import'../localization/En.js';import'../feature/ColumnLines.js';import'../feature/EventCopyPaste.js';import'../feature/EventDrag.js';import'../feature/EventDragCreate.js';import'../feature/EventEdit.js';import'../feature/EventFilter.js';import'../feature/EventMenu.js';import'../feature/EventResize.js';import'../feature/EventTooltip.js';import'../feature/ScheduleContext.js';function _sca(){var h=['104095uSVogz','17640576dhFNtc','$name','356AJiYmr','scheduler','517948FFnQSD','147TVhmQX','9570920xseIqt','initClass','154GRmdlN','369978qdgfQY','296Mrauhc','25974240khhMct'];_sca=function(){return h;};return _sca();}import'../feature/ScheduleMenu.js';import'../feature/ScheduleTooltip.js';import'../feature/StickyEvents.js';import'../feature/TimeAxisHeaderMenu.js';import'@bryntum/grid-thin/lib/feature/CellEdit.js';import'@bryntum/grid-thin/lib/feature/CellMenu.js';import'@bryntum/grid-thin/lib/feature/ColumnDragToolbar.js';import'@bryntum/grid-thin/lib/feature/ColumnPicker.js';import'@bryntum/grid-thin/lib/feature/ColumnReorder.js';function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x1a4;var f=c[d];return f;};return _scb(a,b);}import'@bryntum/grid-thin/lib/feature/ColumnResize.js';function _scg(a,b){return _scb(a-0x3dd,b);}import'@bryntum/grid-thin/lib/feature/Filter.js';import'@bryntum/grid-thin/lib/feature/FilterBar.js';import'@bryntum/grid-thin/lib/feature/Group.js';import'@bryntum/grid-thin/lib/feature/HeaderMenu.js';import'@bryntum/grid-thin/lib/feature/Sort.js';import'@bryntum/grid-thin/lib/feature/Stripe.js';import'@bryntum/grid-thin/lib/column/CheckColumn.js';export default class Scheduler extends _scc{static [_scg(0x583,0x57c)]='Scheduler';static ['type']=_scg(0x585,0x587);}Scheduler[_scg(0x589,0x590)]();
1
+ (function(a,b){function f(a,b){return _scb(b-0x99,a);}var c=a();while(!![]){try{var d=parseInt(f(0x1fd,0x1f6))/0x1+parseInt(f(0x1fb,0x1fd))/0x2*(parseInt(f(0x1ed,0x1f4))/0x3)+-parseInt(f(0x1f4,0x1f7))/0x4+parseInt(f(0x1fe,0x1f8))/0x5+-parseInt(f(0x200,0x1fb))/0x6+-parseInt(f(0x201,0x1fc))/0x7+parseInt(f(0x1fc,0x1fa))/0x8*(parseInt(f(0x1fb,0x1f5))/0x9);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x7bec9));import _scc from'./SchedulerBase.js';import'../localization/En.js';import'../feature/ColumnLines.js';import'../feature/EventCopyPaste.js';import'../feature/EventDrag.js';import'../feature/EventDragCreate.js';import'../feature/EventEdit.js';import'../feature/EventFilter.js';import'../feature/EventMenu.js';import'../feature/EventResize.js';import'../feature/EventTooltip.js';import'../feature/ScheduleContext.js';import'../feature/ScheduleMenu.js';import'../feature/ScheduleTooltip.js';import'../feature/StickyEvents.js';import'../feature/TimeAxisHeaderMenu.js';import'@bryntum/grid-thin/lib/feature/CellEdit.js';import'@bryntum/grid-thin/lib/feature/CellMenu.js';function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x15b;var f=c[d];return f;};return _scb(a,b);}import'@bryntum/grid-thin/lib/feature/ColumnDragToolbar.js';import'@bryntum/grid-thin/lib/feature/ColumnPicker.js';import'@bryntum/grid-thin/lib/feature/ColumnReorder.js';import'@bryntum/grid-thin/lib/feature/ColumnResize.js';import'@bryntum/grid-thin/lib/feature/Filter.js';import'@bryntum/grid-thin/lib/feature/FilterBar.js';import'@bryntum/grid-thin/lib/feature/Group.js';import'@bryntum/grid-thin/lib/feature/HeaderMenu.js';import'@bryntum/grid-thin/lib/feature/Sort.js';function _scg(a,b){return _scb(a- -0x312,b);}function _sca(){var h=['4801915MxlJki','type','1384vGdrga','5131872dPfUGg','371056ZffKbX','10cRbDUp','$name','Scheduler','initClass','30099VgWQrz','42885mWaRHO','22481WqsBxi','1765844YZavZr'];_sca=function(){return h;};return _sca();}import'@bryntum/grid-thin/lib/feature/StickyCells.js';import'@bryntum/grid-thin/lib/feature/Stripe.js';import'@bryntum/grid-thin/lib/column/CheckColumn.js';export default class Scheduler extends _scc{static [_scg(-0x1ad,-0x1b3)]=_scg(-0x1ac,-0x1a7);static [_scg(-0x1b2,-0x1b8)]='scheduler';}Scheduler[_scg(-0x1ab,-0x1a6)]();
@@ -1 +1 @@
1
- (function(a,b){const c=a();function J(a,b){return _scb(b-0x212,a);}while(!![]){try{const d=parseInt(J(0x3c0,0x3d1))/0x1+parseInt(J(0x478,0x3d6))/0x2*(-parseInt(J(0x44c,0x4b1))/0x3)+parseInt(J(0x495,0x4c4))/0x4+parseInt(J(0x53d,0x4b2))/0x5+-parseInt(J(0x4b7,0x470))/0x6+parseInt(J(0x3c7,0x3e6))/0x7*(parseInt(J(0x52a,0x496))/0x8)+parseInt(J(0x3f2,0x3d7))/0x9;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xb0095));import _scc from'@bryntum/core-thin/lib/widget/Toast.js';function _sca(){const aZ=['warn','width','license','host','readystatechange','setHours','onLine','-trial-start','S{MMM}\x20-\x20E{MMM\x20YYYY}\x20(S{Wp})','.b-sch-event-wrap[data-resource-id=\x22','btoa','element','Product','project','$meta','forEachSelector','fromHour','isHorizontal','betweenLesser','descriptionChange','measureRowBorder','Scheduler','addCls','week','4167540TBAnFq','$name','verifyDateKey','internalOnSplitterDragStart','schedulerbase','init','startDate','configurable','defaultValues','b-sch-','angular-scheduler.com','scrollEventIntoView','horizontal','updateShiftIncrement','rendered','filter','eventEditingFeature','afterConstruct','b-grid-empty','foregroundCanvas','eventStore','updateInheritEventColor','count','refreshSuspended','querySelectorAll','disableNoIDWarning','_date','getEventElement','changeEvent','isExpired','changeAutoCreate','isSpecialRow','b-sch-time-axis-cell','afterEventDragStart','getRowHeight','.b-sch-time-axis-cell','reduce','getById','16FRyxGC','@bryntum/scheduler-thin/lib/view/SchedulerBase.css','onTrialExpired','.b-time-axis-sub-grid','blocked','hasEventEditor','apply','mask','refreshResource','commitAsync','lastVersionCheck','description','timelineScroller','autoCreate','move','updateMode','body','\x20(id:\x20','getMonthName','add','cdpn.io','isLoading','getResourceRecord','bryntum.com','nearest','combineFilterFns','onRenderDone','902073jybIKt','3226825pGVjtn','blockTrial','getEventRecord','bryntum-dev-ed.develop.lightning.force.com','some','crudManager','range','freeStm','MMMM\x20D,\x20YYYY','onElementKeyDown','defaultEmptyTextRegion','transition','freeze','isVertical','\x20trial\x20has\x20expired.\x20Please\x20see\x20<a\x20href=\x22https://bryntum.com/store\x22>our\x20store</a>\x20for\x20licensing\x20options','_isRowBorderMeasured','clamp','afterAnimatedRowRemoval','2560816sTCdpj','isFiltered','object','complete','detachListeners','onElementMouseOut','onEventCreated','<h3\x20style=\x22margin:0\x22><a\x20href=\x22https://bryntum.com/store\x22\x20style=\x22margin:0\x203px;\x20color:inherit\x22>Trial\x20expired</a></h3>','push','isAvailable','.lovable.app','setTranslateXY','resourceTimeRangeSelector','onerror','length','unit','isDateRangeAvailable','_rowBorderHeight','scheduleAutoCreateGesture','toggleClasses','thumb','stepUnit','start','isPainted','updateRange','refreshAllWhenReady','log','resource','ceil','isEvent','isResourceUtilization','calculateAllRowHeights','expired','show','setTopLeft','records','sign','onPaintOverride','number','shiftIncrementChange','licenseKey','Date','setLocalStorageItem','vue-gantt.com','scrollIntoView','demoMode','clearKnownHeights','modelClass','assign','_overridden','parseDuration','queryString','react-calendar.com','fromElement','resolveCallback','calculateRowHeights','subGrids','parseTimeUnit','position','$original','expirationShown','onload','MMMM\x20YYYY\x20(Wp)','from','):\x0a','\x20-\x20','SchedulerBase','storeKnownHeight','lazy','preview','includes','bryntum-dev-ed.develop.my.site.com','beforeAnimatedRowRemoval','cacheTrialStartTime','getFullYear','updateDate','timeAxis','removeLocalStorageItem','react-scheduler.com','location','vue-scheduler.com','endDate','mergeConfigs','store','widget','durationUnit','isAssignment','afterEventDragAbortFinalized','244829qbEXkI','createRecord','blockUrl','src','refreshResources','6wQMqHw','6952932kpjDfn','setWaterMark','domSync','mixin','floor','merge','now','loadStylesheet','verticalBufferSize','transitionRemove','getElementFromEventRecord','getVersion','setTimeSpan','magnitude','\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<svg\x20xmlns=\x22http://www.w3.org/2000/svg\x22\x20xmlns:xlink=\x22http://www.w3.org/1999/xlink\x22\x20width=\x22100%\x22\x20height=\x22100%\x22\x20style=\x22font-family:sans-serif;font-weight:900;fill:','51667uuIVCY','scheduler','liveRedrawWhileMovingSplitterThreshold','estimateTotalHeight','scheduleEvent','react-gantt.com','undefined','asArray','isShifting','toggleEmptyText','vertical','removeEachSelector','stores','editEvent','remove','vue-calendar.com','readyState','processEventDrop','beforeEventDragStart','sortFeatureStore','suspendRefresh','processCrossSchedulerEventDrop','href','refresh','.b-sch-resource-time-range','rangemenu','rgba(240,\x20240,\x20240,\x200.54)','keys','updateLocalization','updateBlockedStatus','oldVerticalBufferSize','currentOrientation','construct','target','config','url(\x27data:image/svg+xml;base64,','day','rowManager','isSchedulerPro','MMMM,\x20YYYY','isTestEnv','padding-inline-start:\x2045px;\x20background-size:\x2035px;\x20line-height:\x2016px;\x20font-weight:\x20500;\x20font-size:\x201.1em;\x20background-repeat:\x20no-repeat;\x20background-image:\x20url(\x22data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNTQuOSAxNDQuNTIiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA3NmY4O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMDUuNjMsMTQ0LjUyYy0xMi40NywwLTIzLjUzLTQuODMtMzEuNTgtMTMuMjh2MTEuMDZoLTI1LjU0VjBoMjYuNzVWNDguNThjNy44NC03LjY0LDE4LjUtMTIuMDcsMzAuMzctMTIuMDcsMjcuMTUsMCw0OS4yOCwyMy4zMyw0OS4yOCw1NC4xcy0yMi4xMiw1My45LTQ5LjI4LDUzLjlabS0zLjgyLTgzLjQ3Yy0xNC42OCwwLTI2LjU1LDEzLjI3LTI2LjU1LDI5Ljc3czExLjg3LDI5LjE2LDI2LjU1LDI5LjE2LDI2LjU1LTEyLjY3LDI2LjU1LTI5LjE2LTExLjg3LTI5Ljc3LTI2LjU1LTI5Ljc3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMTQ4LjAyIiB3aWR0aD0iNzQuMDEiIGhlaWdodD0iMjkuNzgiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHk9IjU2LjI2IiB3aWR0aD0iMjIyLjAzIiBoZWlnaHQ9IjI5Ljc4Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSI3NC4wMSIgeT0iMTEyLjUyIiB3aWR0aD0iMTQ4LjAyIiBoZWlnaHQ9IjI5LjYiLz48L3N2Zz4=\x22)','-hash','b-hover','readOnly','<h3\x20style=\x22margin:0\x22>Trial\x20expired,\x20<a\x20href=\x22https://bryntum.com/store\x22\x20style=\x22margin:0\x203px;\x20color:inherit\x22>click\x20here</a>\x20to\x20buy\x20a\x20license.</h3>','string','onLocaleChange','.b-container','resourceStore','abs','enabled','lastVisibleRow','b-sch-event','?id=','isDestroyed','trigger','date','endBatch','gesture','getTime','rgba(255,\x20255,\x20255,\x200.02)','trialStartTime','resolveResourceRecord','end','bryntum','L{Object.newEvent}','preCalculateHeightLimit','onVerticalScroll','getMonth','https://bryntum.com/verify/','trialStartTimeKey','_shiftIncrement','internalGetAssignmentsToHighlight','isStartOf','isEngineReady','dateBounds','naturalWidth','__foo','isConfiguring','dblclick','lmctfy.net','endsWith','createEvent','timeAxisColumn','mode','calculateRowHeight','eventAutoCreated','maskExpiredWidget','resolveEventRecord','isChained','snapType','_verticalBufferSize','defaultDescriptionFormat','addEventListener','rootElement','verifyUrl','\x20Trial','event','getEvents','initClass','min','onStoreLoadOverride','ion','onScheduleAutoCreateGesture','addChild','duration','trial','isCreating','b-trial-demo-mode','changeRange','getDate','syncIdMap','shiftIncrement'];_sca=function(){return aZ;};return _sca();}import _scd from'@bryntum/scheduler-thin/lib/feature/Dependencies.js';import _sce from'@bryntum/core-thin/lib/widget/Widget.js';import _scf from'@bryntum/core-thin/lib/mixin/Override.js';import _scg from'@bryntum/core-thin/lib/helper/VersionHelper.js';import _sch from'@bryntum/core-thin/lib/helper/BrowserHelper.js';import _sci from'@bryntum/core-thin/lib/GlobalEvents.js';import _scj from'./TimelineBase.js';import _sck from'@bryntum/core-thin/lib/helper/ArrayHelper.js';import _scl from'@bryntum/core-thin/lib/helper/DateHelper.js';import _scm from'@bryntum/core-thin/lib/helper/DomHelper.js';import _scn from'@bryntum/core-thin/lib/helper/FunctionHelper.js';import _sco from'../data/CrudManager.js';import _scp from'@bryntum/core-thin/lib/helper/DomSync.js';import _scq from'@bryntum/core-thin/lib/helper/util/Rectangle.js';import'../localization/En.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x173;let f=c[d];return f;};return _scb(a,b);}import _scr from'./mixin/CurrentConfig.js';import _scs from'./mixin/Describable.js';import _sct from'./mixin/SchedulerDom.js';import _scu from'./mixin/SchedulerDomEvents.js';function _scK(a,b){return _scb(a- -0x25a,b);}import _scv from'./mixin/SchedulerEventRendering.js';import _scw from'./mixin/SchedulerStores.js';import _scx from'./mixin/SchedulerScroll.js';import _scy from'./mixin/SchedulerRegions.js';import _scz from'./mixin/SchedulerState.js';import _scA from'./mixin/EventSelection.js';import _scB from'./mixin/EventNavigation.js';import _scC from'./mixin/TransactionalFeatureMixin.js';import _scD from'../crud/mixin/CrudManagerView.js';import _scE from'../data/mixin/LazyLoadView.js';import _scF from'./orientation/HorizontalRendering.js';import _scG from'./orientation/VerticalRendering.js';import'../column/TimeAxisColumn.js';import'../column/VerticalTimeAxisColumn.js';import _scH from'@bryntum/core-thin/lib/Config.js';import _scI from'@bryntum/core-thin/lib/helper/AsyncHelper.js';_scm[_scK(-0x8e,0xa)](_scK(0x2b,-0x77));const descriptionFormats={'month':_scK(-0x5f,-0xaf),'week':[_scK(-0xb5,-0x1b),_scK(-0xc,-0x52)],'day':_scK(0x4e,0x9f)},compareRange=(a,b)=>a&&b?a[_scK(-0xe4,-0x139)]===b['unit']&&a['magnitude']===b[_scK(-0x88,-0x56)]:a===b,emptyObject=Object[_scK(0x52,0x57)]({});export default class SchedulerBase extends _scj[_scK(-0x92,-0x60)](_scD,_scE,_scs,_sct,_scu,_scw,_scx,_scz,_scv,_scy,_scA,_scB,_scr,_scC){static [_scK(0x5,-0x51)]=_scK(-0xb1,-0xb0);static ['type']=_scK(0x8,-0x12);static [_scK(0xb,-0x76)]={'localizableProperties':['autoCreate.newName'],'date':{'value':null,'$config':{'equal':_scK(-0x4d,-0x9b)}},'listRangeMenu':{'$config':_scK(-0xaf,-0x130),'value':{'type':_scK(-0x6d,0x1b)}},'shiftIncrement':{'$config':{'lazy':!![],'equal':compareRange},'value':null},'range':{'$config':{'equal':compareRange},'value':_scK(0x3,0x6)},'getDateConstraints':null,'verticalTimeAxisColumn':{},'autoCreate':{'gesture':_scK(-0x36,-0xd7),'newName':_scK(-0x44,0x42)},'scrollBuffer':0x0,'schedulableAreaSelector':_scK(0x27,-0x35),'scheduledEventName':_scK(-0x24,-0x2e),'showEventColorPickers':null,'updateTimelineContextOnScroll':!![],'lazyLoadingIndicator':!![],'transition':{'removeEvent':!![],'changeEvent':!![]},'mode':_scK(0x10,-0x60),'eventCls':_scK(-0x51,-0xac),'timeCellCls':_scK(0x24,-0x2),'overScheduledEventClass':_scK(-0x5b,-0x23),'allowOverlap':!![],'rowHeight':0x3c,'preCalculateHeightLimit':0x2710,'inheritEventColor':null,'crudManagerClass':_sco,'liveRedrawWhileMovingSplitterThreshold':0x64,'eventContainerSelector':_scK(0x2d,0x3b),'testConfig':{'loadMaskError':{'autoClose':0xa,'showDelay':0x0}}};[_scK(-0xe7,-0x128)]=_scK(-0x6e,0x5);[_scK(0x15,0x92)](){function L(a,b){return _scK(b-0x101,a);}super[L(0xaf,0x116)]();this[L(0xd3,0xe2)]({'scroll':L(0x1b,0xbf),'splitterDragStart':L(0x11e,0x108),'thisObj':this});}['onPaintOverride'](){}get[_scK(-0xa0,-0x57)](){function M(a,b){return _scK(b-0x11b,a);}return super[M(0x110,0x7b)];}set[_scK(-0xa0,-0x13c)](a){function N(a,b){return _scK(a-0x60b,b);}super[N(0x56b,0x516)]=a;}get['visibleResources'](){function O(a,b){return _scK(a-0x295,b);}var a,b;const c=this;if(c['isVertical']){return c['currentOrientation']['visibleResources'];}return{'first':c[O(0x1f5,0x191)][O(0x2be,0x30c)]((a=c['firstVisibleRow'])===null||a===void 0x0?void 0x0:a['id']),'last':c['store'][O(0x2be,0x28b)]((b=c[O(0x243,0x204)])===null||b===void 0x0?void 0x0:b['id'])};}['onLocaleChange'](){function P(a,b){return _scK(a-0x499,b);}this[P(0x432,0x3e4)][P(0x442,0x449)]();super[P(0x442,0x4a2)]();}[_scK(0x22,-0x31)](a){function Q(a,b){return _scK(b- -0xd4,a);}if(a){const b=typeof a;if(b!==Q(-0x9,-0x7a)){a={'gesture':b===Q(-0x95,-0x12c)?a:Q(-0x183,-0x10a)};}a=_scH[Q(-0x18c,-0x164)](a,SchedulerBase[Q(-0x13e,-0xda)][Q(-0xef,-0x138)][Q(-0x5b,-0x9d)]);if(a[Q(-0xbe,-0xf0)]){a['duration']=_scl[Q(-0x1b2,-0x195)](a['duration']);}}return a;}['updateAutoCreate'](a,b){if((a===null||a===void 0x0?void 0x0:a[R(0xb9,0x14)])!==(b===null||b===void 0x0?void 0x0:b[R(0xb9,0xb1)])){this[R(0x160,0xcf)](R(0x23,0x6a));this[R(0xe5,0x8b)]({'name':R(0x23,0xc3),['schedule'+a[R(0xb9,0xcf)]]:R(0xe6,0x76),'thisObj':this});}function R(a,b){return _scK(a-0x104,b);}if(!b){this[R(0x9a,0xf0)]();}}[_scK(0x19,0x54)](){function S(a,b){return _scK(a-0x245,b);}if(!this[S(0x20e,0x272)]){this['refreshWithTransition']();}}async[_scK(-0x1e,0x41)]({domEvent:a,time:b,resourceRecord:c}){function T(a,b){return _scK(a-0x213,b);}const d=this,e=d[T(0x24a,0x281)]||emptyObject,f=e[T(0x1e8,0x281)]||'floor',{step:g}=e,h=g?_scl[f](b,_scl[T(0x152,0x127)](g)):d['timeAxis'][f+T(0x149,0x1b4)](b);if(await d['trigger']('beforeAutoCreate',{'domEvent':a,'date':h,'resourceRecord':c})!==![]){return d[T(0x1e0,0x17b)](h,c,!![]);}}[_scK(-0x42,0x5b)]({scrollTop:a}){function U(a,b){return _scK(a-0x29d,b);}this[U(0x236,0x28c)]['updateFromVerticalScroll'](a);}['internalOnSplitterDragStart'](){function V(a,b){return _scK(b- -0x52,a);}if(this['isHorizontal']&&this[V(-0x81,-0x3b)][V(-0xe,-0x68)]){if(Object[V(-0x49,-0xbd)](this['foregroundCanvas'][V(0x13,-0x68)])['length']>this[V(-0x15d,-0xd6)]){this[V(-0x98,-0xc4)]();this[V(0x2b,-0x71)]({'splitterDragEnd':()=>this['resumeRefresh'](!![],![]),'once':!![]});}}}[_scK(0x5e,-0x23)](a){}[_scK(-0xab,-0x132)](a,b){const c=this;function W(a,b){return _scK(a-0x5f,b);}if(b>c[W(-0x8,0x99)]['verticalBufferSize']){c[W(-0x9,-0xad)]=c[W(-0x8,0x7d)][W(-0x2e,-0xe)];c[W(-0x8,-0xac)]['_verticalBufferSize']=b;}if(a){for(const d of a){const e=c[W(0x76,-0x10)][W(0x7b,0xb4)](W(0x54,0x7)+d+'\x22],\x20.b-sch-resource-time-range[data-resource-id=\x22'+d+'\x22]');for(const f of e){f['retainElement']=W(-0x19,-0x5b);f[W(-0x2d,-0xa5)]=!![];}}}}[_scK(0x57,-0x1d)](a,b){const c=this;function X(a,b){return _scK(b-0x1c0,a);}c['currentOrientation']['refreshEvents']();if(c[X(0x171,0x158)]){c['currentOrientation'][X(0x15b,0x196)]=c[X(0x187,0x158)];c[X(0x1c5,0x158)]=null;}}get['isHorizontal'](){function Y(a,b){return _scK(b- -0xaf,a);}return this[Y(-0x3c,-0xe0)]===Y(-0x80,-0x9f);}get[_scK(0x53,0xa3)](){function Z(a,b){return _scK(b- -0x17c,a);}return this[Z(-0x225,-0x1ad)]===Z(-0x158,-0x1f8);}[_scK(0x39,-0x27)](a){const b=this;function a0(a,b){return _scK(b-0x28,a);}if(!b[a]){b[a0(0x73,0x2a)](a0(-0x32,0x35)+a);if(a===a0(0xb4,0x38)){b[a0(0x97,0x38)]=new _scF(b);if(b[a0(-0x148,-0xb4)]){b[a0(0x6e,0x38)]['init']();}}else if(a===a0(-0xe8,-0x54)){b[a0(0x29,-0x54)]=new _scG(b);b[a0(-0x42,-0x4b)]=a0(0x4e,-0x2d);b[a0(0xec,0x78)]='normal';if(b[a0(-0x5e,0x3a)]){b['vertical'][a0(-0x7,0x31)]();}}}}get[_scK(-0x67,-0xcb)](){function a1(a,b){return _scK(b-0x499,a);}return this[this[a1(0x4dd,0x468)]];}['onElementKeyDown'](a){function a2(a,b){return _scK(a-0x2c,b);}return super[a2(0x7b,0x69)](a);}['onElementKeyUp'](a){return super['onElementKeyUp'](a);}['onElementMouseOver'](a){return super['onElementMouseOver'](a);}['onElementMouseOut'](a){function a3(a,b){return _scK(b-0x325,a);}return super[a3(0x364,0x382)](a);}[_scK(-0x75,-0x54)](){}[_scK(-0x71,0x13)](){}[_scK(-0x74,-0x5a)](){}[_scK(0x25,0x8f)](){}[_scK(-0x9c,-0x2)](){}['checkEventDragValidity'](){}['afterEventResizeStart'](){}['afterRenderEvent'](){}get[_scK(0x2f,-0x56)](){function a4(a,b){return _scK(b- -0x2b,a);}return Boolean(this[a4(-0x8a,-0x17)]);}get[_scK(0x14,0x14)](){const {eventEdit:a,taskEdit:b,simpleEventEdit:c}=this['features'];function a5(a,b){return _scK(a-0x436,b);}return a!==null&&a!==void 0x0&&a[a5(0x3e3,0x3f5)]?a:b!==null&&b!==void 0x0&&b['enabled']?b:c!==null&&c!==void 0x0&&c[a5(0x3e3,0x45d)]?c:null;}async[_scK(-0x33,-0xc7)](a,b){var c;const d=this,{eventStore:e,assignmentStore:f,hasEventEditor:g}=d,{changeEvent:h}=d[a6(0x4c8,0x4d4)],i=d[a6(0x482,0x4ba)]||emptyObject,{newName:j,useEventModelDefaults:k}=i,l=(i===null||i===void 0x0?void 0x0:i[a6(0x4d8,0x467)])||{'magnitude':k?e[a6(0x379,0x3bf)]['defaultValues'][a6(0x3ca,0x467)]??0x1:0x1,'unit':k?e[a6(0x3af,0x3bf)][a6(0x46d,0x48f)][a6(0x45f,0x3e5)]??d['timeAxis'][a6(0x399,0x39f)]:d[a6(0x470,0x3dc)][a6(0x42d,0x39f)]},m=[b],n=e[a6(0x355,0x3e9)]({'startDate':a,'endDate':_scl[a6(0x4bb,0x4c0)](a,l),'duration':l['magnitude'],'durationUnit':l[a6(0x35d,0x39f)],'name':d['resolveCallback'](j,d,![])?d['callback'](j,d,[d,a,b]):j});if(d[a6(0x405,0x429)]||b[a6(0x4fe,0x4a6)]||b['readOnly']||!d[a6(0x3ea,0x3a0)](n['startDate'],n[a6(0x35c,0x3e1)],null,b)){return;}(c=d['eventEditingFeature'])===null||c===void 0x0||c['captureStm'](!![]);n[a6(0x4a3,0x469)]=g;function a6(a,b){return _scK(b-0x483,a);}d[a6(0x576,0x4e1)](n);const o=f===null||f===void 0x0?void 0x0:f['assignEventToResource'](n,b);if(d['trigger']('beforeEventAdd',{'eventRecord':n,'resourceRecords':m,'assignmentRecords':o})===![]){var p;f===null||f===void 0x0||f[a6(0x3dd,0x40b)](o);(p=d['eventEditingFeature'])===null||p===void 0x0||p['freeStm'](![]);return;}d[a6(0x537,0x4d4)][a6(0x4f6,0x4a3)]=![];const q=e['add'](n);d[a6(0x51e,0x47c)][a6(0x4ca,0x4b6)]()['then'](()=>{function a7(a,b){return a6(a,b- -0x233);}if(!d[a7(0x1e3,0x201)]){d[a7(0x33b,0x2a1)][a7(0x30a,0x270)]=h;}});if(!q){var r;f===null||f===void 0x0||f[a6(0x3f4,0x40b)](o);(r=d[a6(0x489,0x497)])===null||r===void 0x0||r[a6(0x4b5,0x4d0)](![]);return;}d['isCreating']=!![];d['refreshRows']();d[a6(0x4bd,0x469)]=![];await d[a6(0x407,0x492)](n);if(d[a6(0x3f6,0x434)]){return;}d['trigger'](a6(0x41b,0x454),{'eventRecord':n,'resourceRecord':b});if(g){d[a6(0x373,0x40a)](n,b,d[a6(0x529,0x4a2)](n));}}['isDateRangeAvailable'](a,b,c,d,e=this['allowOverlap']){function a8(a,b){return _scK(a- -0x90,b);}return this[a8(-0x78,0xa)][a8(-0x173,-0xe0)]({'startDate':a,'endDate':b,'excludeEvent':c,'resourceRecord':d,'allowOverlap':e});}async['resumeRefresh'](a=!![],b=!![]){function a9(a,b){return _scK(a-0x46b,b);}super['resumeRefresh'](![]);const c=this;if(!c[a9(0x486,0x4b3)]&&a){if(!c[a9(0x430,0x474)]){c[a9(0x404,0x399)][a9(0x391,0x3aa)]=!![];return c['project']['commitAsync']();}if(!c[a9(0x41c,0x419)]){if(b){c['refreshWithTransition']();}else{c[a9(0x3fc,0x44e)]();}}}}[_scK(0x32,-0x69)](a){this['refreshResources']([a]);}[_scK(-0x97,-0x6b)](a){function aa(a,b){return _scK(b-0x28b,a);}this['currentOrientation'][aa(0x212,0x1f4)](a);}[_scK(-0x7d,-0x3d)](){function ab(a,b){return _scK(b-0x47b,a);}var a;_scm[ab(0x37f,0x39b)](this[ab(0x3fc,0x472)],ab(0x4e7,0x491),!(this['resourceStore'][ab(0x47a,0x495)]>0x0||(a=this[ab(0x46c,0x4c6)])!==null&&a!==void 0x0&&a[ab(0x532,0x4ba)]));}[_scK(0x26,0x82)](a){function ac(a,b){return _scK(a-0x417,b);}if(this[ac(0x414,0x3cb)]){const b=this['currentOrientation'][ac(0x3e7,0x45f)](a);this[ac(0x3b6,0x3e9)][ac(0x367,0x33a)](a['id'],b);return b;}}[_scK(-0xbc,-0x7c)](a,b=![]){function ad(a,b){return _scK(a- -0x5b,b);}const {store:c}=this;for(const d of a){if(d&&c[ad(0x6,0x48)](d)){this[ad(-0x35,-0x37)](d);}}if(!b){this[ad(-0xbc,-0x14c)][ad(-0xde,-0xda)](!![]);}}[_scK(-0xd4,-0x16f)](a=![]){const {store:b,rowManager:c}=this,d=Math[ae(0x23,-0xc)](b[ae(0x5e,0xc2)],this[ae(0x1,0xa)]);function ae(a,b){return _scK(a-0x44,b);}if(d){c[ae(-0x81,-0xc)]();for(let e=0x0;e<d;e++){const f=b[ae(-0x8c,-0x9b)][e];if(!f){continue;}this['getRowHeight'](f);}if(!a){c[ae(-0x3f,0x2c)](!![]);}}}[_scK(0x0,0x44)](){if(this[af(-0xc3,-0xa7)]){this[af(-0x16b,-0x1dc)]=0x0;this[af(-0x10e,-0xa5)]=!![];return;}function af(a,b){return _scK(b- -0xfa,a);}super[af(-0xb4,-0xfa)]();}get[_scK(-0x3a,0x1)](){const a=this,b=[a[ag(0x41a,0x42f)]];if(a[ag(0x45c,0x4a1)][ag(0x32c,0x362)]==='week'){b[ag(0x470,0x453)](a['lastDate']);}function ag(a,b){return _scK(a-0x410,b);}return b;}get[_scK(0x35,0x3)](){function ah(a,b){return _scK(a- -0xc4,b);}const a=this,{startDate:b,endDate:c}=a,d=a[ah(-0x181,-0x12d)]('descriptionRenderer',a,![]);if(!d&&a[ah(-0x78,-0x5a)][ah(-0x1a8,-0x17a)]===ah(-0x126,-0x15e)&&c-b&&!_scl[ah(-0x100,-0x13a)](b,'d')&&!_scl[ah(-0x100,-0xc7)](c,'d')){const e=_scl[ah(-0x88,-0xd5)](b[ah(-0x105,-0xcc)]()),f=_scl[ah(-0x88,-0xd)](c['getMonth']()),g=e!==f?f+'\x20':'';return e+'\x20'+b['getDate']()+ah(-0x176,-0x1db)+g+c[ah(-0xdb,-0x5d)]()+',\x20'+c[ah(-0x16d,-0x105)]();}return super[ah(-0x8f,-0x11e)];}get[_scK(-0x29,0x73)](){function ai(a,b){return _scK(a-0x435,b);}return descriptionFormats[this[ai(0x481,0x4d4)]['unit']];}get['lastDate'](){function aj(a,b){return _scK(b-0x451,a);}const {endDate:a}=this;if(a){return _scl['isStartOf'](a,'d')?_scl[aj(0x4d8,0x48e)](a,-0x1,aj(0x44d,0x3ef)):a;}}[_scK(0x48,-0x10)](a){function ak(a,b){return _scK(a-0x5c7,b);}a=_scm['getEventElement'](a);return this[ak(0x59a,0x5ff)](a);}[_scK(0x40,0x58)](a){function al(a,b){return _scK(b-0x5a3,a);}return this[al(0x57d,0x55c)](a);}[_scK(0x1f,-0x1d)](a){function am(a,b){return _scK(b- -0x6a,a);}return this[am(-0xe9,-0xf5)](a);}['changeListRangeMenu'](a){function an(a,b){return _scK(a-0x31d,b);}if(a){return _scj[an(0x27c,0x29c)]({'view':this},a);}}['changeRange'](a){if(a){if(typeof a===ao(0x389,0x34c)){const b=_scl[ao(0x278,0x2ea)](a);if(b){a={'magnitude':0x1,'unit':b};}else{a=_scl[ao(0x385,0x2e3)](a);}}else if(typeof a===ao(0x353,0x2d7)){return{'magnitude':a,'unit':ao(0x2ad,0x342)};}}function ao(a,b){return _scK(b-0x3a4,a);}return a;}[_scK(-0xdb,-0x8c)](a){function ap(a,b){return _scK(a-0x549,b);}if(!this[ap(0x512,0x4ce)]){const b=this[ap(0x4fc,0x51c)],c=this[ap(0x4fc,0x4c4)]=_scl[ap(0x59f,0x5cc)](b,_scl[ap(0x4b8,0x4ab)](b,a),_scl[ap(0x472,0x438)](b,a));if(b[ap(0x4ff,0x4d9)]()===c[ap(0x4ff,0x4ea)]()){this['updateDate'](c,b,!![]);}}}['changeShiftIncrement'](a){function aq(a,b){return _scK(b-0x5f8,a);}return this[aq(0x59d,0x5e0)](a);}[_scK(0x11,-0x2a)](a,b){function ar(a,b){return _scK(b-0x15d,a);}this[ar(0x1ac,0x10f)](ar(0x79,0x91),{'old':a,'new':b});}get[_scK(-0x15,0x7b)](){function as(a,b){return _scK(a-0x104,b);}return this[as(0xc6,0xf7)]||this[as(0x150,0x19d)];}get[_scK(-0xde,-0xa6)](){const {shiftIncrement:a}=this;function at(a,b){return _scK(a-0x144,b);}return a[at(0xbc,0xb9)]===0x1?_scl['getLocalizedNameOfUnit'](a[at(0x60,0x71)]):a[at(0xbc,0xb4)]+'\x20'+_scl['getLocalizedNameOfUnit'](a[at(0x60,-0x33)],!![]);}async[_scK(-0xa8,-0x7a)](a,b,c){var d;const e=this,{timeAxis:f,vertical:g,range:h,workingTime:i}=e,j=_scl['clearTime'](((d=e['visibleDateRange'])===null||d===void 0x0?void 0x0:d[au(0x3b6,0x3ce)])||a),k=c?j:a,{startDate:l}=f,m=_scl[au(0x36a,0x333)](l,h),n=_scl['add'](m,h),o=e[au(0x305,0x346)]?e[au(0x42b,0x3af)]:e[au(0x3b6,0x410)],p=_scl[au(0x2cb,0x333)](l,o,l),q=_scl[au(0x44f,0x401)](p,h),r={[g?'x':'y']:![],'animate':!![],'block':a<p?au(0x341,0x2e7):a>=q?au(0x2e4,0x37e):au(0x48b,0x406)},s=e[au(0x31a,0x392)][au(0x438,0x3b1)];function au(a,b){return _scK(b-0x3c4,a);}if(c||!_scl[au(0x353,0x3c2)](a,m,n)){const t=_scl['floor'](a,h),u=_scl[au(0x49e,0x401)](t,h);if(i){t[au(0x42e,0x3b5)](i[au(0x400,0x3c0)]);u[au(0x3f8,0x3b5)](i['toHour']-0x18);}Object[au(0x359,0x301)](r,{'animate':![],'block':au(0x32c,0x2e7),'edgeOffset':c?{'start':e['getCoordinateFromDate'](j)-e[au(0x414,0x3fa)][au(0x38d,0x30b)]}:0x0});e[au(0x386,0x33b)](t,u);if(e[au(0x377,0x392)][au(0x42a,0x3b1)]<s){await _scI['sleep'](0x0);}}e[au(0x3e1,0x3e2)]=_scl[au(0x49f,0x41a)](a,f[au(0x347,0x3ce)],f['endDate']);if(!e['preventScroll']){if(e[au(0x414,0x38d)]){e['visibleDate']={'date':e[au(0x408,0x3e2)],'block':au(0x2e0,0x2e7),'animate':e[au(0x27e,0x2e8)]};}else{const v=e['getCoordinateFromDate'](k,![]),w=e['getCoordinateFromDate'](_scl['min'](_scl[au(0x460,0x401)](k,0x1,'d'),f[au(0x2ad,0x322)]),![]),x=Math[au(0x3a7,0x370)]((w===-0x1?e[au(0x484,0x3fa)]['scrollSize']:w)-v),y=g?new _scq(0x0,v,0x1,x):new _scq(e['rtl']?w:v,0x0,Math['abs'](x),0x1);e[au(0x48e,0x3fa)][au(0x2ed,0x2fd)](y,r);}}e[au(0x40f,0x376)](au(0x378,0x3c3));}['updateScrollBuffer'](a){function av(a,b){return _scK(b-0x229,a);}if(!this[av(0x23f,0x1f2)]){this[av(0x13c,0x1c2)]['scrollBuffer']=a;}}['previous'](){function aw(a,b){return _scK(a- -0x6,b);}this[aw(0x32,0x3d)](-0x1);}['next'](){this['move'](0x1);}[_scK(0x38,0x64)](a=0x1){function ax(a,b){return _scK(a-0x4b,b);}a=Math[ax(-0x84,0xc)](a);const b=this,{shiftIncrement:c}=b;if(c){b[ax(-0x33,-0x8a)]=!![];b[ax(-0x2,-0x3e)]=_scl[ax(0x88,0x80)](b['date'],{'unit':c['unit'],'magnitude':a*c[ax(-0x3d,-0x83)]});b[ax(-0x33,0x24)]=![];}}async[_scK(-0x82,-0xbf)]({startDate:a,eventRecord:b,resourceRecord:c,element:d}){function ay(a,b){return _scK(b-0x406,a);}const e=this;if(!e[ay(0x459,0x41e)][ay(0x331,0x359)](b)){[b]=e[ay(0x482,0x41e)]['add'](b);}b['beginBatch']();b['startDate']=a;b[ay(0x2c5,0x343)](c);b[ay(0x3cf,0x3ba)]();if(d){const f=_scq[ay(0x3f4,0x352)](d,e[ay(0x408,0x41d)]);_scm[ay(0x4f4,0x469)](d,0x0,0x0);_scm[ay(0x2d3,0x335)](d,f['y'],f['x']);_scp[ay(0x3a3,0x3e9)](e[ay(0x3b2,0x41d)],d,b['assignments'][0x0]['id']);}await e[ay(0x39a,0x3ff)][ay(0x3fd,0x439)]();return b;}[_scK(-0x3d,-0x7e)](a){function az(a,b){return _scK(b-0x49b,a);}const {eventStore:b,assignmentStore:c,resourceStore:d}=this,{usesSingleAssignment:e}=b;return _sck[az(0x44b,0x41c)](a)[az(0x4f1,0x4c3)]((f,g)=>{var h,i;const j=e&&!g['isModel']||g[aA(0x143,0x1ae)]?b:c;g=j[aA(0x2ba,0x2ad)](g);if((h=g)!==null&&h!==void 0x0&&h['isEvent']){f[aA(0x2e6,0x2e4)](...g['assignments'][aA(0x2d0,0x297)](k=>k[aA(0x1e5,0x1ac)][aA(0x240,0x20a)]['includes'](d)));}else if((i=g)!==null&&i!==void 0x0&&i[aA(0x1b1,0x1e7)]&&g[aA(0x130,0x1ac)]['stores'][aA(0x1ef,0x1d7)](d)){f[aA(0x25f,0x2e4)](g);}function aA(a,b){return az(a,b- -0x217);}return f;},[]);}[_scK(-0x23,-0xbd)](a){const {resourceRecord:b}=a,{assignmentStore:c,eventStore:d}=this,e=(b&&d[aB(-0xbd,-0x114)]||c[aB(-0xbd,-0xa1)])&&(f=>f['assignments']['some'](g=>g[aB(-0x1ee,-0x260)]===b[aB(-0x1ce,-0x149)]&&c[aB(-0x1c3,-0x1e4)](g)));function aB(a,b){return _scK(a- -0x116,b);}return this[aB(-0xfe,-0xda)]['getEvents']({...a,'filter':_scn[aB(-0xd3,-0x71)](a[aB(-0x103,-0x72)],e)});}get['eventCount'](){function aC(a,b){return _scK(b- -0xbf,a);}return this['getEvents']({'startDate':this['startDate'],'endDate':this[aC(-0x131,-0x161)]})[aC(-0x1cc,-0x1a4)];}}SchedulerBase[_scK(-0x22,0x5d)]();(a=>{const b=[aD(0x240,0x2de),aD(0x23d,0x261),aD(0x17e,0xfc),aD(0x137,0x1d2),aD(0x15c,0x147),aD(0x15a,0x1a0),aD(0x20d,0x2a3),'angular-calendar.com',aD(0x188,0x1ff),aD(0x140,0x119),aD(0x1ca,0x13d),aD(0x248,0x277),'salesforce-experience.com',aD(0x153,0xd7)],c=0x3e8,d=c*0x3c,e=d*0x3c,f=e*0x18,g=[],h=(globalThis===null||globalThis===void 0x0?void 0x0:globalThis[aD(0x15b,0x19f)][aD(0x1ee,0x153)])||self['location'][aD(0x1ee,0x23b)],i=(globalThis===null||globalThis===void 0x0?void 0x0:globalThis[aD(0x15b,0xbf)][aD(0x18f,0x183)])||self['location'][aD(0x18f,0x204)];if('odoo'in globalThis||!_scg[aD(0x1a1,0x1f6)]&&(b[aD(0x249,0x1f5)](o=>h[aD(0x152,0x152)](o))||/\/docs/['test'](i)||h[aD(0x152,0x121)](aD(0x151,0x13f))&&h[aD(0x1cb,0x22a)](aD(0x261,0x2c3)))){return;}const j=(a=globalThis||self)===null||a===void 0x0?void 0x0:a['bryntum'];if(j){j[aD(0x139,0x12d)]=()=>{console['log']('Enabling\x20Bryntum\x20demo\x20mode\x20for\x201\x20hour.\x20Good\x20luck\x20with\x20the\x20demo!\x20🚀');_scm['addTemporaryClass'](document['body'],aE(0x215,0x1b5),_scg[aE(0x1fc,0x170)]?c:e);function aE(a,b){return aD(b- -0x31,a);}j[aE(0x9f,0x108)]=()=>{};};}function aD(a,b){return _scK(a-0x1ff,b);}let k;const l=o=>{function aF(a,b){return aD(a-0x42e,b);}if(!k){k=!![];m[aF(0x5c7,0x651)]({'widget':o});}o[aF(0x5f5,0x5cc)]='THISISTRIAL';};class m{static[aD(0x199,0x114)](o){function aG(a,b){return aD(b-0x35a,a);}const p=this,q=aG(0x49d,0x4d4),r=aG(0x525,0x55a),s=_scg[aG(0x42c,0x4cf)]('core'),t=_scg['isTestEnv']?c*0x3:d,u=_sch['queryString'][aG(0x426,0x4c0)];Object[aG(0x424,0x496)](p,{'version':s,'product':q,'Product':r,'verifyUrl':_scg['isTestEnv']?u:aG(0x595,0x519),'blocked':![],'lastVersionCheck':0x0,'licenseKey':'b-'+q+aG(0x559,0x4fd),'trialStartTimeKey':'b-'+q+aG(0x54a,0x54c),'verifyDateKey':'b-'+q+'-verify-date'},o);if(!_scg[aG(0x468,0x4fb)]||globalThis['__bypassTrialLogCheck']){console[aG(0x43c,0x480)]('%cBryntum\x20'+r+'\x20'+s+aG(0x4af,0x534),aG(0x45b,0x4fc));}p[aG(0x4eb,0x4af)]();if(p['isExpired']){if(document[aG(0x461,0x4e3)]===aG(0x5da,0x5b4)){p['onTrialExpired']();}else{document[aG(0x530,0x531)](aG(0x4e8,0x549),()=>{function aH(a,b){return aG(a,b- -0x233);}if(document[aH(0x343,0x2b0)]===aH(0x3f0,0x381)){p[aH(0x2d1,0x352)]();}});}}setTimeout(()=>{function aI(a,b){return aG(a,b- -0x571);}p[aI(-0x8b,-0x81)]();},t);}static[aD(0x155,0x1af)](){function aJ(a,b){return aD(b-0x3eb,a);}var o;const p=this,q=_sch['getLocalStorageItem'](p[aJ(0x51e,0x5ab)]),r=(o=window['bryntum'])===null||o===void 0x0?void 0x0:o[aJ(0x67d,0x5d8)],s=_sch['getLocalStorageItem'](p[aJ(0x4d6,0x51f)]);let t=Number(q);if(r&&s&&r!==s){t=null;}if(t&&!isNaN(t)){p[aJ(0x5d2,0x5a2)]=t;}else{p[aJ(0x5ba,0x5a2)]=Date[aJ(0x557,0x55b)]();}_sch[aJ(0x56e,0x521)](p[aJ(0x5f2,0x5ab)],p[aJ(0x5fb,0x5a2)]);if(r){_sch[aJ(0x5a6,0x521)](p[aJ(0x53b,0x51f)],r);}}static get[aD(0x220,0x1f5)](){function aK(a,b){return aD(b- -0x285,a);}var o;return this[aK(-0x50,-0x58)]||Date[aK(-0x7a,-0x115)]()-this['trialStartTime']>f*0x2d||((o=window['bryntum'])===null||o===void 0x0||(o=o[this['product']])===null||o===void 0x0?void 0x0:o[aK(-0x18b,-0x159)]);}static[aD(0x196,0x193)](){const o=this,p=()=>_sch[aL(0x2af,0x225)](o['verifyDateKey'],Date[aL(0x2e9,0x2b9)]());function aL(a,b){return aD(a-0x179,b);}o[aL(0x3ac,0x308)]=o['lastVersionCheck']||_sch['getLocalStorageItem'](o[aL(0x37e,0x3ba)])||0x0;if(!navigator[aL(0x36a,0x36b)]||o[aL(0x3ac,0x3e7)]&&Date[aL(0x2e9,0x381)]()-o[aL(0x3ac,0x31f)]<f){return;}if(o[aL(0x352,0x2b7)]){const q=encodeURIComponent(i),r=o['verifyUrl']+aL(0x328,0x2a7)+window[aL(0x333,0x3a5)]['license']+'&url='+q,s=new Image();s[aL(0x2c2,0x27a)]=()=>{function aM(a,b){return aL(b- -0x369,a);}if(s[aM(0x70,-0x2a)]===0x2){o[aM(-0x38,0x56)]();}else{p();}};s[aL(0x292,0x256)]=()=>{p();};s[aL(0x2e0,0x37e)]=r;}else{p();}}static[aD(0x22b,0x1c9)](){var o;function aN(a,b){return aD(b-0x3a1,a);}const p=((o=this[aN(0x4e5,0x501)])===null||o===void 0x0?void 0x0:o[aN(0x54a,0x579)])||document[aN(0x5d7,0x5da)];if(!this[aN(0x4fc,0x4e9)]){this[aN(0x470,0x4e9)]=!![];if(!_scg[aN(0x568,0x542)]){console[aN(0x54d,0x58c)]('Bryntum\x20'+this[aN(0x53c,0x598)]+'\x20trial\x20version\x20expired.\x20Purchase\x20a\x20license\x20at\x20https://bryntum.com/store\x20or\x20contact\x20us\x20at\x20https://bryntum.com/contact/\x20for\x20licensing\x20options.');}_scc[aN(0x4f4,0x4ce)]({'html':'Psst!\x20Your\x20Bryntum\x20'+this['Product']+aN(0x57e,0x5f4),'timeout':0x4e20,'rootElement':p});}_scm[aN(0x50e,0x525)](p,'.b-sch-dependency');_scm[aN(0x5b2,0x59b)](p,aN(0x572,0x54a),q=>{function aO(a,b){return aN(a,b- -0x1c1);}const r=_sce[aO(0x2fd,0x321)](q,aO(0x381,0x340));if(g[aO(0x4a1,0x429)](s=>r instanceof s)){this[aO(0x368,0x3b1)](r);}});}static['blockTrial'](){this[aP(0x171,0x1c6)]=!![];function aP(a,b){return aD(b- -0x67,a);}_sch[aP(0xad,0xf2)](this[aP(0x1e8,0x19e)]);_sch[aP(0x159,0xcf)](this[aP(0x162,0x159)],0x1);this[aP(0x267,0x1c4)]();}static[aD(0x1d1,0x201)](o,p){function aQ(a,b){return aD(b-0x3cf,a);}const q=p?aQ(0x680,0x62d):aQ(0x5be,0x575);o[aQ(0x5c6,0x5ff)]({'text':q,'icon':'fa\x20fa-frown','type':aQ(0x540,0x5b3),'cover':aQ(0x584,0x569)});}static['setWaterMark'](o,{darkColor:darkColor=aD(0x1b6,0x257),lightColor:lightColor=aD(0x193,0x17f)}={}){function aR(a,b){return aD(a- -0x195,b);}if(_sch[aR(-0x56,-0x69)][aR(-0x75,-0x8b)]!=null){return;}const p=_scm['isDarkTheme']?darkColor:lightColor,q=aR(-0x1d,0x5a)+p+'\x22>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<defs>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<pattern\x20id=\x22company\x22\x20patternUnits=\x22userSpaceOnUse\x22\x20width=\x22400\x22\x20height=\x22200\x22>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<text\x20y=\x2230\x22\x20font-size=\x2240\x22\x20id=\x22name\x22>Bryntum</text>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<text\x20y=\x22120\x22\x20x=\x22200\x22\x20font-size=\x2224\x22\x20id=\x22trial\x22>Trial\x20Version</text>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20</pattern>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<pattern\x20id=\x22pattern\x22\x20xlink:href=\x22#company\x22\x20patternTransform=\x22rotate(-45)\x22>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<use\x20xlink:href=\x22#name\x22\x20/><use\x20xlink:href=\x22#trial\x22\x20/>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20</pattern>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20</defs>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<rect\x20width=\x22100%\x22\x20height=\x22100%\x22\x20fill=\x22url(#pattern)\x22\x20/>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20</svg>';o['style']['backgroundImage']=aR(0x7,-0x68)+window[aR(0x60,0xa2)](q)+'\x27)';}}const n=o=>{function aS(a,b){return aD(a-0x3d0,b);}g[aS(0x62f,0x6ba)](o);_scf[aS(0x5ff,0x564)](class{static get[aS(0x56a,0x4da)](){return{'class':o};}[aS(0x501,0x579)](){const p=this,q=()=>{function aT(a,b){return _scb(b- -0xb9,a);}const r=p[aT(0x143,0xe6)]?Object['values'](p[aT(0x173,0xe6)]):[p];for(const s of r){if(s['element']){m[aT(0x194,0x10d)](s[aT(0x1c3,0x198)]);}}};l(p);q();_sci['on']('theme',()=>{q();});function aU(a,b){return aS(b- -0x6db,a);}if(m['isExpired']){m[aU(-0xb2,-0x13a)](p);}}[aS(0x5af,0x604)](){function aV(a,b){return aS(a- -0x699,b);}if(!this[aV(-0xad,-0x3c)]&&!this[aV(-0x19f,-0x115)]&&!this[aV(-0x16a,-0x1b5)][aV(-0xf6,-0x139)]&&this[aV(-0x16a,-0x14d)]['some'](p=>p['hasGeneratedId'])){console[aV(-0xde,-0x168)]((this[aV(-0x16a,-0x1e8)][aV(-0xc5,-0x118)]||this[aV(-0x16a,-0x1a7)][aV(-0xc5,-0x114)])+aV(-0x8f,-0xdc)+this[aV(-0x16a,-0x193)]['id']+aV(-0x17d,-0x204)+'One\x20or\x20more\x20rows\x20are\x20missing\x20an\x20ID,\x20we\x20recommend\x20always\x20using\x20one.\x20'+'This\x20warning\x20is\x20only\x20shown\x20for\x20the\x20trial,\x20to\x20disable\x20it\x20configure\x20the\x20component\x20with\x20`disableNoIDWarning:\x20true`');}}});};if(typeof SchedulerBase!==aD(0x17f,0x223)){n(SchedulerBase);_scf[aD(0x22f,0x2c0)](class{static get[aD(0x19a,0x19a)](){return{'class':_scd};}[aD(0x16c,0x146)](){function aW(a,b){return aD(a- -0xaa,b);}if(!m[aW(0x176,0xe6)]){return this[aW(0x93,0x18)][aW(0xc2,0x70)][aW(0x185,0x1ea)](this,arguments);}}});_scf[aD(0x22f,0x190)](class{static get[aD(0x19a,0x156)](){return{'class':_scF};}['onRenderDone'](){var o;function aX(a,b){return aD(b- -0x14c,a);}if(!m[aX(0x8b,0xd4)]||(o=this['scheduler'])!==null&&o!==void 0x0&&o[aX(0xbf,0x53)]){return this[aX(0x31,-0xf)][aX(0x53,0xf7)][aX(0x8a,0xe3)](this,arguments);}}});_scf[aD(0x22f,0x2c6)](class{static get[aD(0x19a,0x110)](){return{'class':_scG};}[aD(0x243,0x1dd)](){function aY(a,b){return aD(b-0x2a4,a);}var o;if(!m[aY(0x4f2,0x4c4)]||(o=this['scheduler'])!==null&&o!==void 0x0&&o['isSchedulerPro']){return this[aY(0x3a3,0x3e1)]['onRenderDone'][aY(0x4db,0x4d3)](this,arguments);}}});}})();
1
+ (function(a,b){const c=a();function J(a,b){return _scb(a-0x378,b);}while(!![]){try{const d=-parseInt(J(0x581,0x611))/0x1*(-parseInt(J(0x4e7,0x584))/0x2)+parseInt(J(0x47c,0x51d))/0x3*(-parseInt(J(0x452,0x4af))/0x4)+-parseInt(J(0x4a8,0x43c))/0x5*(-parseInt(J(0x456,0x418))/0x6)+-parseInt(J(0x516,0x58b))/0x7+-parseInt(J(0x55c,0x5aa))/0x8*(-parseInt(J(0x541,0x4ed))/0x9)+parseInt(J(0x572,0x5f2))/0xa+parseInt(J(0x479,0x40a))/0xb;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x420ce));import _scc from'@bryntum/core-thin/lib/widget/Toast.js';import _scd from'@bryntum/scheduler-thin/lib/feature/Dependencies.js';import _sce from'@bryntum/core-thin/lib/widget/Widget.js';import _scf from'@bryntum/core-thin/lib/mixin/Override.js';import _scg from'@bryntum/core-thin/lib/helper/VersionHelper.js';import _sch from'@bryntum/core-thin/lib/helper/BrowserHelper.js';import _sci from'@bryntum/core-thin/lib/GlobalEvents.js';import _scj from'./TimelineBase.js';import _sck from'@bryntum/core-thin/lib/helper/ArrayHelper.js';import _scl from'@bryntum/core-thin/lib/helper/DateHelper.js';function _scK(a,b){return _scb(b-0x13f,a);}import _scm from'@bryntum/core-thin/lib/helper/DomHelper.js';import _scn from'@bryntum/core-thin/lib/helper/FunctionHelper.js';import _sco from'../data/CrudManager.js';import _scp from'@bryntum/core-thin/lib/helper/DomSync.js';import _scq from'@bryntum/core-thin/lib/helper/util/Rectangle.js';import'../localization/En.js';import _scr from'./mixin/CurrentConfig.js';import _scs from'./mixin/Describable.js';import _sct from'./mixin/SchedulerDom.js';import _scu from'./mixin/SchedulerDomEvents.js';import _scv from'./mixin/SchedulerEventRendering.js';import _scw from'./mixin/SchedulerStores.js';import _scx from'./mixin/SchedulerScroll.js';import _scy from'./mixin/SchedulerRegions.js';import _scz from'./mixin/SchedulerState.js';import _scA from'./mixin/EventSelection.js';import _scB from'./mixin/EventNavigation.js';import _scC from'./mixin/TransactionalFeatureMixin.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xd8;let f=c[d];return f;};return _scb(a,b);}import _scD from'../crud/mixin/CrudManagerView.js';import _scE from'../data/mixin/LazyLoadView.js';import _scF from'./orientation/HorizontalRendering.js';function _sca(){const aZ=['vue-gantt.com','records','some','rgba(255,\x20255,\x20255,\x200.02)','calculateAllRowHeights','setHours','preview','apply','scheduleEvent','timeAxisColumn','href','.b-time-axis-sub-grid','nearest','verifyUrl','getById','bryntum','reduce','now','domSync','move','resource','isEngineReady','onElementKeyUp','preCalculateHeightLimit','eventCount','removeEachSelector','\x22>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<defs>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<pattern\x20id=\x22company\x22\x20patternUnits=\x22userSpaceOnUse\x22\x20width=\x22400\x22\x20height=\x22200\x22>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<text\x20y=\x2230\x22\x20font-size=\x2240\x22\x20id=\x22name\x22>Bryntum</text>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<text\x20y=\x22120\x22\x20x=\x22200\x22\x20font-size=\x2224\x22\x20id=\x22trial\x22>Trial\x20Version</text>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20</pattern>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<pattern\x20id=\x22pattern\x22\x20xlink:href=\x22#company\x22\x20patternTransform=\x22rotate(-45)\x22>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<use\x20xlink:href=\x22#name\x22\x20/><use\x20xlink:href=\x22#trial\x22\x20/>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20</pattern>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20</defs>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<rect\x20width=\x22100%\x22\x20height=\x22100%\x22\x20fill=\x22url(#pattern)\x22\x20/>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20</svg>','thumb','scrollEventIntoView','number','shiftIncrement','clearTime','endBatch','?id=','removeLocalStorageItem','features','refreshSuspended','target','fa\x20fa-frown','L{Object.newEvent}','keys','trigger','onStoreLoadOverride','url(\x27data:image/svg+xml;base64,','updateRange','sortFeatureStore','onload','afterEventDragAbortFinalized','getMonth','MMMM,\x20YYYY','onerror','createEvent','object','blockUrl','&url=','330UJpPbm','trialStartTime','.b-sch-event-wrap[data-resource-id=\x22','https://bryntum.com/verify/','isExpired','snapType','detachListeners','test','):\x0a','odoo','host','calculateRowHeight','lastDate','btoa','includes','startDate','setWaterMark','updateShiftIncrement','abs','floor','endsWith','onElementMouseOver','then','hasEventEditor','angular-scheduler.com','setLocalStorageItem','isHorizontal','getEventElement','widget','gesture','isResourceUtilization','onTrialExpired','show','timelineScroller','internalGetAssignmentsToHighlight','enabled','resourceStore','durationUnit','onLocaleChange','resolveResourceRecord','SchedulerBase','remove','allowOverlap','scrollIntoView','config','processCrossSchedulerEventDrop','%cBryntum\x20','1550612Mkbwuj','currentOrientation','isTestEnv','react-scheduler.com','afterConstruct','isShifting','initClass','padding-inline-start:\x2045px;\x20background-size:\x2035px;\x20line-height:\x2016px;\x20font-weight:\x20500;\x20font-size:\x201.1em;\x20background-repeat:\x20no-repeat;\x20background-image:\x20url(\x22data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNTQuOSAxNDQuNTIiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojMDA3NmY4O308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0zMDUuNjMsMTQ0LjUyYy0xMi40NywwLTIzLjUzLTQuODMtMzEuNTgtMTMuMjh2MTEuMDZoLTI1LjU0VjBoMjYuNzVWNDguNThjNy44NC03LjY0LDE4LjUtMTIuMDcsMzAuMzctMTIuMDcsMjcuMTUsMCw0OS4yOCwyMy4zMyw0OS4yOCw1NC4xcy0yMi4xMiw1My45LTQ5LjI4LDUzLjlabS0zLjgyLTgzLjQ3Yy0xNC42OCwwLTI2LjU1LDEzLjI3LTI2LjU1LDI5Ljc3czExLjg3LDI5LjE2LDI2LjU1LDI5LjE2LDI2LjU1LTEyLjY3LDI2LjU1LTI5LjE2LTExLjg3LTI5Ljc3LTI2LjU1LTI5Ljc3WiIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMTQ4LjAyIiB3aWR0aD0iNzQuMDEiIGhlaWdodD0iMjkuNzgiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHk9IjU2LjI2IiB3aWR0aD0iMjIyLjAzIiBoZWlnaHQ9IjI5Ljc4Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSI3NC4wMSIgeT0iMTEyLjUyIiB3aWR0aD0iMTQ4LjAyIiBoZWlnaHQ9IjI5LjYiLz48L3N2Zz4=\x22)','MMMM\x20YYYY\x20(Wp)','b-sch-time-axis-cell','b-sch-','beforeAutoCreate','defaultValues','filter','log','scheduler','vue-calendar.com','createRecord','timeAxis','__foo','eventStore','body','firstVisibleRow','callback','rtl','preventScroll','getRowHeight','$name','resumeRefresh','_overridden','lastVersionCheck','@bryntum/scheduler-thin/lib/view/SchedulerBase.css','cacheTrialStartTime','syncIdMap','isDarkTheme','demoMode','ceil','afterEventResizeStart','freeze','disableNoIDWarning','onElementKeyDown','forEachSelector','b-trial-demo-mode','693hEIjCJ','betweenLesser','changeRange','isLoading','commitAsync','add','core','schedulerbase','.b-sch-dependency','ion','onVerticalScroll','unit','getVersion','isStartOf','$meta','duration','checkEventDragValidity','descriptionRenderer','eventEditingFeature','<h3\x20style=\x22margin:0\x22><a\x20href=\x22https://bryntum.com/store\x22\x20style=\x22margin:0\x203px;\x20color:inherit\x22>Trial\x20expired</a></h3>','horizontal','toggleClasses','count','_verticalBufferSize','rangemenu','lastVisibleRow','fromHour','23704zgfBRl','fromElement','sleep','assign','__bypassTrialLogCheck','onPaintOverride','normal','updateMode','parseDuration','updateDate','getDate','angular-calendar.com','isCreating','mixin','_date','.b-sch-resource-time-range','from','merge','getLocalizedNameOfUnit','onLine','<h3\x20style=\x22margin:0\x22>Trial\x20expired,\x20<a\x20href=\x22https://bryntum.com/store\x22\x20style=\x22margin:0\x203px;\x20color:inherit\x22>click\x20here</a>\x20to\x20buy\x20a\x20license.</h3>','date','2287860WPXyhx','isPainted','onScheduleAutoCreateGesture','\x20trial\x20has\x20expired.\x20Please\x20see\x20<a\x20href=\x22https://bryntum.com/store\x22>our\x20store</a>\x20for\x20licensing\x20options','location','scrollBuffer','refreshEvents','addEventListener','rgba(240,\x20240,\x20240,\x200.54)','project','lazy','defaultEmptyTextRegion','toggleEmptyText','onRenderDone','product','319GkCIfI','Bryntum\x20','licenseKey','isDestroyed','day','isDateRangeAvailable','blocked','resourceTimeRangeSelector','readyState','isEvent','modelClass','beforeEventAdd','lmctfy.net','verticalBufferSize','changeAutoCreate','foregroundCanvas','backgroundImage','length','updateAutoCreate','getEvents','isConfiguring','getTime','getMonthName','.lovable.app','isChained','getResourceRecord','string','getFullYear','rootElement','getCoordinateFromDate','MMMM\x20D,\x20YYYY','push','Enabling\x20Bryntum\x20demo\x20mode\x20for\x201\x20hour.\x20Good\x20luck\x20with\x20the\x20demo!\x20🚀','72lQeDDR','changeEvent','element','endDate','293286Sqpqzt','expirationShown','getLocalStorageItem','S{MMM}\x20-\x20E{MMM\x20YYYY}\x20(S{Wp})','description','freeStm','complete','sign','license','measureRowBorder','b-hover','init','\x20trial\x20version\x20expired.\x20Purchase\x20a\x20license\x20at\x20https://bryntum.com/store\x20or\x20contact\x20us\x20at\x20https://bryntum.com/contact/\x20for\x20licensing\x20options.','start','clamp','transition','\x22],\x20.b-sch-resource-time-range[data-resource-id=\x22','scheduleAutoCreateGesture','liveRedrawWhileMovingSplitterThreshold','Date','width','shiftIncrementChange','afterEventDragStart','crudManager','refreshResources','isFiltered','magnitude','mode','updateBlockedStatus','stores','beginBatch','changeShiftIncrement','processEventDrop','maskExpiredWidget','vue-scheduler.com','679283PzGmmi','refreshRows','changeListRangeMenu','70239dwesVV','onEventCreated','-trial-start','verifyDateKey','oldVerticalBufferSize','combineFilterFns','visibleDateRange','rowManager','isModel','afterRenderEvent','storeKnownHeight','react-gantt.com','construct','refreshWithTransition','salesforce-experience.com','setTranslateXY','position','b-sch-event','assignments','resolveCallback','dateBounds','trialStartTimeKey','onElementMouseOut','.b-container','$original','naturalWidth','store','queryString','eventAutoCreated','style','Psst!\x20Your\x20Bryntum\x20','min','isSchedulerPro','descriptionChange','rendered','warn','configurable','vertical','subGrids','blockTrial','visibleDate','expired','addTemporaryClass','Product','35WAatQw','retainElement','updateInheritEventColor','autoCreate','isVertical','range','previous','readOnly'];_sca=function(){return aZ;};return _sca();}import _scG from'./orientation/VerticalRendering.js';import'../column/TimeAxisColumn.js';import'../column/VerticalTimeAxisColumn.js';import _scH from'@bryntum/core-thin/lib/Config.js';import _scI from'@bryntum/core-thin/lib/helper/AsyncHelper.js';_scm['loadStylesheet'](_scK(0x2da,0x2fc));const descriptionFormats={'month':_scK(0x33b,0x2a8),'week':[_scK(0x2ba,0x2e5),_scK(0x1cb,0x220)],'day':_scK(0x351,0x366)},compareRange=(a,b)=>a&&b?a['unit']===b[_scK(0x387,0x313)]&&a[_scK(0x1b5,0x237)]===b[_scK(0x256,0x237)]:a===b,emptyObject=Object[_scK(0x389,0x303)]({});export default class SchedulerBase extends _scj[_scK(0x2b1,0x330)](_scD,_scE,_scs,_sct,_scu,_scw,_scx,_scz,_scv,_scy,_scA,_scB,_scr,_scC){static [_scK(0x34f,0x2f8)]=_scK(0x262,0x2d6);static ['type']=_scK(0x2aa,0x30f);static [_scK(0x2f5,0x267)]={'localizableProperties':['autoCreate.newName'],'date':{'value':null,'$config':{'equal':_scK(0x331,0x338)}},'listRangeMenu':{'$config':_scK(0x389,0x343),'value':{'type':_scK(0x2f7,0x320)}},'shiftIncrement':{'$config':{'lazy':!![],'equal':compareRange},'value':null},'range':{'$config':{'equal':compareRange},'value':'week'},'getDateConstraints':null,'verticalTimeAxisColumn':{},'autoCreate':{'gesture':'dblclick','newName':_scK(0x31e,0x29e)},'scrollBuffer':0x0,'schedulableAreaSelector':'.b-sch-time-axis-cell','scheduledEventName':'event','showEventColorPickers':null,'updateTimelineContextOnScroll':!![],'lazyLoadingIndicator':!![],'transition':{'removeEvent':!![],'changeEvent':!![]},'mode':_scK(0x3b7,0x31c),'eventCls':_scK(0x1f3,0x254),'timeCellCls':_scK(0x387,0x2e6),'overScheduledEventClass':_scK(0x1fb,0x227),'allowOverlap':!![],'rowHeight':0x3c,'preCalculateHeightLimit':0x2710,'inheritEventColor':null,'crudManagerClass':_sco,'liveRedrawWhileMovingSplitterThreshold':0x64,'eventContainerSelector':_scK(0x27b,0x282),'testConfig':{'loadMaskError':{'autoClose':0xa,'showDelay':0x0}}};[_scK(0x2ce,0x34f)]=_scK(0x2ab,0x332);[_scK(0x2dc,0x2e1)](){super['afterConstruct']();function L(a,b){return _scK(b,a- -0x147);}this[L(0x1ca,0x1ce)]({'scroll':'onVerticalScroll','splitterDragStart':'internalOnSplitterDragStart','thisObj':this});}['onPaintOverride'](){}get['store'](){return super['store'];}set['store'](a){function M(a,b){return _scK(a,b-0xab);}super[M(0x3a8,0x308)]=a;}get['visibleResources'](){var a,b;const c=this;function N(a,b){return _scK(a,b- -0x2c2);}if(c[N(-0x1e,-0x4f)]){return c[N(0xa5,0x1c)]['visibleResources'];}return{'first':c[N(-0x50,-0x65)][N(-0xa3,-0x3d)]((a=c[N(-0x5e,0x31)])===null||a===void 0x0?void 0x0:a['id']),'last':c[N(0x9,-0x65)][N(-0x1e,-0x3d)]((b=c[N(0x4c,0x5f)])===null||b===void 0x0?void 0x0:b['id'])};}[_scK(0x26b,0x2d4)](){function O(a,b){return _scK(b,a- -0x5);}this[O(0x2d9,0x2df)][O(0x2cf,0x23f)]();super[O(0x2cf,0x30c)]();}[_scK(0x3a7,0x356)](a){if(a){const b=typeof a;if(b!==P(-0x2bb,-0x213)){a={'gesture':b===P(-0xfc,-0x15c)?a:'dblclick'};}a=_scH[P(-0x20d,-0x18a)](a,SchedulerBase[P(-0x1e2,-0x1a8)][P(-0x17d,-0x1e4)][P(-0x1e1,-0x24c)]);if(a[P(-0x163,-0x1a7)]){a[P(-0x14c,-0x1a7)]=_scl[P(-0xf5,-0x193)](a[P(-0x159,-0x1a7)]);}}function P(a,b){return _scK(a,b- -0x4be);}return a;}[_scK(0x2de,0x35a)](a,b){if((a===null||a===void 0x0?void 0x0:a['gesture'])!==(b===null||b===void 0x0?void 0x0:b[Q(0x434,0x4d6)])){this[Q(0x41d,0x46f)](Q(0x397,0x38b));this[Q(0x47a,0x4f8)]({'name':Q(0x397,0x3df),['schedule'+a['gesture']]:'onScheduleAutoCreateGesture','thisObj':this});}function Q(a,b){return _scK(b,a-0x169);}if(!b){this['updateLocalization']();}}[_scK(0x2d1,0x271)](){function R(a,b){return _scK(a,b- -0x173);}if(!this[R(0x174,0x1e9)]){this[R(0xb7,0xdd)]();}}async[_scK(0x38b,0x33b)]({domEvent:a,time:b,resourceRecord:c}){const d=this,e=d['autoCreate']||emptyObject,f=e[S(0xf6,0xb3)]||'floor',{step:g}=e,h=g?_scl[f](b,_scl[S(0x16e,0xef)](g)):d[S(0x132,0x1d8)][f+S(0x73,0xd6)](b);function S(a,b){return _scK(b,a- -0x1bd);}if(await d['trigger'](S(0x12b,0x19d),{'domEvent':a,'date':h,'resourceRecord':c})!==![]){return d[S(0xed,0xa5)](h,c,!![]);}}[_scK(0x281,0x312)]({scrollTop:a}){function T(a,b){return _scK(b,a- -0x487);}this[T(-0x1a9,-0x15e)]['updateFromVerticalScroll'](a);}['internalOnSplitterDragStart'](){function U(a,b){return _scK(a,b- -0x15c);}if(this['isHorizontal']&&this[U(0x1b1,0x1fb)][U(0x247,0x1a2)]){if(Object[U(0x14a,0x143)](this[U(0x19d,0x1fb)]['syncIdMap'])[U(0x202,0x1fd)]>this[U(0xf8,0xd3)]){this['suspendRefresh']();this[U(0x1a1,0x1b5)]({'splitterDragEnd':()=>this[U(0x112,0x19d)](!![],![]),'once':!![]});}}}[_scK(0x2a5,0x244)](a){}['beforeAnimatedRowRemoval'](a,b){const c=this;function V(a,b){return _scK(b,a- -0x28e);}if(b>c[V(0x50,0x45)][V(0xc7,0xdb)]){c[V(-0x47,0x3b)]=c[V(0x50,0x9b)]['verticalBufferSize'];c[V(0x50,-0x2d)][V(0x91,0x73)]=b;}if(a){for(const d of a){const e=c[V(0xc9,0xdd)]['querySelectorAll'](V(0x22,0x49)+d+V(-0x61,-0xc6)+d+'\x22]');for(const f of e){f[V(-0x1e,-0xa9)]='remove';f['transitionRemove']=!![];}}}}['afterAnimatedRowRemoval'](a,b){const c=this;c[W(0x1e3,0x14c)][W(0x244,0x2ac)]();function W(a,b){return _scK(b,a- -0xfb);}if(c[W(0x14c,0x1a7)]){c[W(0x1e3,0x287)][W(0x224,0x285)]=c['oldVerticalBufferSize'];c[W(0x14c,0x1de)]=null;}}get['isHorizontal'](){function X(a,b){return _scK(b,a-0x125);}return this['mode']===X(0x441,0x3e2);}get[_scK(0x1dd,0x273)](){function Y(a,b){return _scK(b,a- -0xfd);}return this['mode']===Y(0x16b,0x129);}[_scK(0x2d0,0x32a)](a){const b=this;function Z(a,b){return _scK(b,a-0x191);}if(!b[a]){b['addCls'](Z(0x478,0x466)+a);if(a===Z(0x4ad,0x54f)){b[Z(0x4ad,0x41b)]=new _scF(b);if(b[Z(0x4cb,0x53a)]){b[Z(0x4ad,0x4c0)][Z(0x3b9,0x407)]();}}else if(a===Z(0x3f9,0x37b)){b[Z(0x3f9,0x392)]=new _scG(b);b[Z(0x435,0x406)]=Z(0x463,0x48a);b[Z(0x4d5,0x53d)]=Z(0x4ba,0x491);if(b[Z(0x3f6,0x467)]){b[Z(0x3f9,0x415)]['init']();}}}}get[_scK(0x34c,0x2de)](){function a0(a,b){return _scK(b,a-0x11e);}return this[this[a0(0x356,0x353)]];}[_scK(0x26a,0x305)](a){function a1(a,b){return _scK(a,b- -0x87);}return super[a1(0x2ce,0x27e)](a);}['onElementKeyUp'](a){function a2(a,b){return _scK(a,b-0xfb);}return super[a2(0x31d,0x388)](a);}[_scK(0x280,0x2c3)](a){function a3(a,b){return _scK(a,b- -0x2fe);}return super[a3(-0x4f,-0x3b)](a);}[_scK(0x262,0x259)](a){function a4(a,b){return _scK(a,b- -0x3ae);}return super[a4(-0x176,-0x155)](a);}[_scK(0x27e,0x23d)](){}[_scK(0x259,0x2db)](){}['beforeEventDragStart'](){}[_scK(0x22b,0x233)](){}[_scK(0x31f,0x2a6)](){}[_scK(0x377,0x318)](){}[_scK(0x373,0x302)](){}[_scK(0x25f,0x24c)](){}get[_scK(0x30f,0x2c5)](){function a5(a,b){return _scK(b,a- -0x145);}return Boolean(this[a5(0x1d5,0x1fa)]);}get['eventEditingFeature'](){const {eventEdit:a,taskEdit:b,simpleEventEdit:c}=this[a6(0x103,0x132)];function a6(a,b){return _scK(b,a- -0x197);}return a!==null&&a!==void 0x0&&a['enabled']?a:b!==null&&b!==void 0x0&&b['enabled']?b:c!==null&&c!==void 0x0&&c[a6(0x13a,0x14b)]?c:null;}async['createEvent'](a,b){var c;const d=this,{eventStore:e,assignmentStore:f,hasEventEditor:g}=d,{changeEvent:h}=d[a7(0x6,0x96)],i=d[a7(0x4c,0x3f)]||emptyObject,{newName:j,useEventModelDefaults:k}=i,l=(i===null||i===void 0x0?void 0x0:i['duration'])||{'magnitude':k?e[a7(0x12c,0x162)][a7(0xc3,0x42)]['duration']??0x1:0x1,'unit':k?e[a7(0x12c,0x1d4)][a7(0xc3,0x9e)][a7(0xad,0x49)]??d[a7(0xc9,0xec)]['unit']:d[a7(0xc9,0xc6)][a7(0xed,0x56)]},m=[b],n=e[a7(0xc8,0x148)]({'startDate':a,'endDate':_scl[a7(0xe7,0xd9)](a,l),'duration':l[a7(0x11,0xd)],'durationUnit':l[a7(0xed,0x17a)],'name':d[a7(0x30,-0x42)](j,d,![])?d[a7(0xce,0x118)](j,d,[d,a,b]):j});if(d[a7(0x50,-0xa)]||b['isSpecialRow']||b[a7(0x50,0xb6)]||!d[a7(0x127,0x11a)](n[a7(0x97,-0xd)],n[a7(-0xa,-0x71)],null,b)){return;}(c=d[a7(0xf4,0xf6)])===null||c===void 0x0||c['captureStm'](!![]);n['isCreating']=g;d[a7(0x1e,0x0)](n);function a7(a,b){return _scK(b,a- -0x226);}const o=f===null||f===void 0x0?void 0x0:f['assignEventToResource'](n,b);if(d[a7(0x7a,0x3e)](a7(0x12d,0x8f),{'eventRecord':n,'resourceRecords':m,'assignmentRecords':o})===![]){var p;f===null||f===void 0x0||f[a7(0xb1,0x9a)](o);(p=d[a7(0xf4,0x11b)])===null||p===void 0x0||p[a7(-0x4,0x6f)](![]);return;}d[a7(0x6,0x81)][a7(-0xc,0x5b)]=![];const q=e[a7(0xe7,0x13b)](n);d['project']['commitAsync']()[a7(0x9e,0x112)](()=>{function a8(a,b){return a7(a- -0xab,b);}if(!d[a8(0x7a,0x15)]){d[a8(-0xa5,-0x135)][a8(-0xb7,-0x77)]=h;}});if(!q){var r;f===null||f===void 0x0||f[a7(0xb1,0x7d)](o);(r=d[a7(0xf4,0xeb)])===null||r===void 0x0||r['freeStm'](![]);return;}d[a7(0x109,0x7d)]=!![];d[a7(0x1b,-0x5b)]();d[a7(0x109,0x14a)]=![];await d[a7(0x6d,0x1d)](n);if(d[a7(0x125,0x141)]){return;}d['trigger'](a7(0x39,-0x67),{'eventRecord':n,'resourceRecord':b});if(g){d['editEvent'](n,b,d[a7(0xa3,0x7d)](n));}}['isDateRangeAvailable'](a,b,c,d,e=this[_scK(0x2c9,0x2d8)]){function a9(a,b){return _scK(b,a-0x28b);}return this[a9(0x57c,0x5fd)][a9(0x5d8,0x5c9)]({'startDate':a,'endDate':b,'excludeEvent':c,'resourceRecord':d,'allowOverlap':e});}async[_scK(0x2ee,0x2f9)](a=!![],b=!![]){super[aa(0x185,0x1ec)](![]);const c=this;function aa(a,b){return _scK(b,a- -0x174);}if(!c[aa(0x127,0x177)]&&a){if(!c[aa(0x118,0x81)]){c[aa(0x16a,0xe9)]['refreshAllWhenReady']=!![];return c['project']['commitAsync']();}if(!c[aa(0x1d7,0x201)]){if(b){c[aa(0xdc,0x142)]();}else{c['refresh']();}}}}['refreshResource'](a){function ab(a,b){return _scK(b,a- -0x198);}this[ab(0x9d,0xea)]([a]);}[_scK(0x2d6,0x235)](a){function ac(a,b){return _scK(b,a- -0x168);}this[ac(0x176,0xd9)][ac(0xcd,0xc2)](a);}[_scK(0x33a,0x345)](){function ad(a,b){return _scK(a,b-0x23f);}var a;_scm[ad(0x5e0,0x55c)](this[ad(0x3b4,0x45a)],'b-grid-empty',!(this['resourceStore']['count']>0x0||(a=this[ad(0x4a5,0x473)])!==null&&a!==void 0x0&&a[ad(0x515,0x54a)]));}[_scK(0x2ed,0x2f7)](a){function ae(a,b){return _scK(b,a-0x80);}if(this[ae(0x348,0x2dd)]){const b=this[ae(0x35e,0x3f5)][ae(0x339,0x3ac)](a);this[ae(0x2ca,0x313)][ae(0x2cd,0x2a9)](a['id'],b);return b;}}['calculateRowHeights'](a,b=![]){const {store:c}=this;function af(a,b){return _scK(b,a-0x217);}for(const d of a){if(d&&c['isAvailable'](d)){this[af(0x50e,0x476)](d);}}if(!b){this[af(0x461,0x46d)]['estimateTotalHeight'](!![]);}}[_scK(0x310,0x27b)](a=![]){function ag(a,b){return _scK(a,b- -0x44);}const {store:b,rowManager:c}=this,d=Math[ag(0x1a2,0x21e)](b[ag(0x254,0x2da)],this[ag(0x272,0x24a)]);if(d){c['clearKnownHeights']();for(let e=0x0;e<d;e++){const f=b[ag(0x2ab,0x234)][e];if(!f){continue;}this[ag(0x246,0x2b3)](f);}if(!a){c['estimateTotalHeight'](!![]);}}}['measureRowBorder'](){function ah(a,b){return _scK(b,a-0x278);}if(this[ah(0x4eb,0x461)]){this['_rowBorderHeight']=0x0;this['_isRowBorderMeasured']=!![];return;}super[ah(0x49e,0x47d)]();}get[_scK(0x1df,0x257)](){const a=this,b=[a[ai(-0x10c,-0x97)]];function ai(a,b){return _scK(b,a- -0x3c9);}if(a[ai(-0x155,-0x14a)][ai(-0xb6,-0x105)]==='week'){b[ai(-0x1b2,-0x203)](a[ai(-0x10f,-0x17a)]);}return b;}get[_scK(0x2b0,0x221)](){const a=this,{startDate:b,endDate:c}=a,d=a[aj(0x394,0x3e2)](aj(0x457,0x404),a,![]);if(!d&&a[aj(0x3b2,0x33f)][aj(0x451,0x4d7)]===aj(0x48a,0x4bf)&&c-b&&!_scl[aj(0x453,0x441)](b,'d')&&!_scl[aj(0x453,0x4a3)](c,'d')){const e=_scl[aj(0x49c,0x45f)](b[aj(0x3e5,0x3ac)]()),f=_scl[aj(0x49c,0x495)](c['getMonth']()),g=e!==f?f+'\x20':'';return e+'\x20'+b[aj(0x46b,0x4e4)]()+'\x20-\x20'+g+c[aj(0x46b,0x4cf)]()+',\x20'+c[aj(0x4a1,0x463)]();}function aj(a,b){return _scK(b,a-0x13e);}return super[aj(0x35f,0x330)];}get['defaultDescriptionFormat'](){function ak(a,b){return _scK(b,a- -0x379);}return descriptionFormats[this[ak(-0x105,-0x165)][ak(-0x66,-0xfd)]];}get[_scK(0x316,0x2ba)](){function al(a,b){return _scK(b,a- -0x3ff);}const {endDate:a}=this;if(a){return _scl['isStartOf'](a,'d')?_scl['add'](a,-0x1,al(-0xb3,-0x8a)):a;}}['getEventRecord'](a){function am(a,b){return _scK(a,b- -0x395);}a=_scm[am(-0xda,-0xcc)](a);return this['resolveEventRecord'](a);}[_scK(0x30c,0x361)](a){function an(a,b){return _scK(a,b- -0x3c3);}return this[an(-0x17c,-0xee)](a);}[_scK(0x294,0x2c9)](a){return this['getElementFromEventRecord'](a);}[_scK(0x22d,0x242)](a){if(a){return _scj['mergeConfigs']({'view':this},a);}}[_scK(0x359,0x30a)](a){if(a){if(typeof a===ao(0x134,0x12e)){const b=_scl['parseTimeUnit'](a);if(b){a={'magnitude':0x1,'unit':b};}else{a=_scl[ao(0x14e,0xf7)](a);}}else if(typeof a===ao(0xc5,0x60)){return{'magnitude':a,'unit':ao(0x8a,0x118)};}}function ao(a,b){return _scK(a,b- -0x234);}return a;}[_scK(0x2a8,0x2a3)](a){function ap(a,b){return _scK(b,a- -0x2f7);}if(!this[ap(0x65,0x93)]){const b=this[ap(0x41,0x10)],c=this['date']=_scl[ap(-0xcc,-0x72)](b,_scl['floor'](b,a),_scl[ap(0xa,0x57)](b,a));if(b[ap(0x66,0x77)]()===c[ap(0x66,0x42)]()){this[ap(0x35,0xe)](c,b,!![]);}}}[_scK(0x1eb,0x23c)](a){function aq(a,b){return _scK(b,a- -0x100);}return this[aq(0x20a,0x1d6)](a);}[_scK(0x2ec,0x2bf)](a,b){function ar(a,b){return _scK(a,b- -0x284);}this[ar(0x82,0x1c)](ar(-0x63,-0x52),{'old':a,'new':b});}get['shiftIncrement'](){function as(a,b){return _scK(a,b- -0x95);}return this['_shiftIncrement']||this[as(0x1c2,0x1df)];}get['stepUnit'](){function at(a,b){return _scK(b,a- -0x1be);}const {shiftIncrement:a}=this;return a['magnitude']===0x1?_scl[at(0x177,0x15e)](a['unit']):a[at(0x79,0x6)]+'\x20'+_scl[at(0x177,0xe7)](a[at(0x155,0x17c)],!![]);}async[_scK(0x2b6,0x32c)](a,b,c){var d;function au(a,b){return _scK(b,a- -0x4ee);}const e=this,{timeAxis:f,vertical:g,range:h,workingTime:i}=e,j=_scl[au(-0x258,-0x1c7)](((d=e[au(-0x2a5,-0x2a1)])===null||d===void 0x0?void 0x0:d['startDate'])||a),k=c?j:a,{startDate:l}=f,m=_scl[au(-0x22d,-0x2c4)](l,h),n=_scl[au(-0x1e1,-0x1bf)](m,h),o=e[au(-0x20c,-0x21b)]?e[au(-0x259,-0x26d)]:e[au(-0x27a,-0x1f1)],p=_scl[au(-0x22d,-0x25b)](l,o,l),q=_scl['add'](p,h),r={[g?'x':'y']:![],'animate':!![],'block':a<p?'start':a>=q?'end':au(-0x26b,-0x303)},s=e[au(-0x26e,-0x2eb)]['width'];if(c||!_scl[au(-0x1e5,-0x1bf)](a,m,n)){const t=_scl[au(-0x22d,-0x2ac)](a,h),u=_scl[au(-0x1e1,-0x180)](t,h);if(i){t[au(-0x272,-0x214)](i[au(-0x1cc,-0x141)]);u[au(-0x272,-0x248)](i['toHour']-0x18);}Object['assign'](r,{'animate':![],'block':'start','edgeOffset':c?{'start':e[au(-0x189,-0x1a2)](j)-e[au(-0x21f,-0x23c)][au(-0x29b,-0x274)]}:0x0});e['setTimeSpan'](t,u);if(e[au(-0x26e,-0x229)][au(-0x2bd,-0x2a6)]<s){await _scI[au(-0x1c9,-0x1a5)](0x0);}}e[au(-0x1bd,-0x20b)]=_scl[au(-0x2c3,-0x275)](a,f[au(-0x231,-0x1e8)],f['endDate']);if(!e[au(-0x1f8,-0x1c1)]){if(e[au(-0x192,-0x217)]){e[au(-0x283,-0x2ef)]={'date':e[au(-0x1bd,-0x18c)],'block':au(-0x2c4,-0x21e),'animate':e[au(-0x1b4,-0x134)]};}else{const v=e['getCoordinateFromDate'](k,![]),w=e[au(-0x189,-0x1a4)](_scl[au(-0x28c,-0x278)](_scl[au(-0x1e1,-0x25b)](k,0x1,'d'),f[au(-0x2d2,-0x290)]),![]),x=Math[au(-0x22e,-0x279)]((w===-0x1?e[au(-0x21f,-0x179)]['scrollSize']:w)-v),y=g?new _scq(0x0,v,0x1,x):new _scq(e[au(-0x1f9,-0x260)]?w:v,0x0,Math['abs'](x),0x1);e[au(-0x21f,-0x2b7)][au(-0x215,-0x21e)](y,r);}}e['trigger'](au(-0x28a,-0x2c7));}['updateScrollBuffer'](a){function av(a,b){return _scK(b,a-0xdf);}if(!this['isConfiguring']){this[av(0x3bd,0x357)][av(0x41d,0x496)]=a;}}[_scK(0x28e,0x275)](){function aw(a,b){return _scK(b,a- -0x1c3);}this[aw(0xc7,0x87)](-0x1);}['next'](){this['move'](0x1);}[_scK(0x310,0x28a)](a=0x1){function ax(a,b){return _scK(b,a-0x2);}a=Math[ax(0x226,0x1c4)](a);const b=this,{shiftIncrement:c}=b;if(c){b[ax(0x2e4,0x37c)]=!![];b[ax(0x33a,0x2dd)]=_scl[ax(0x30f,0x330)](b[ax(0x33a,0x390)],{'unit':c['unit'],'magnitude':a*c[ax(0x239,0x19f)]});b[ax(0x2e4,0x365)]=![];}}async[_scK(0x2f6,0x27f)]({startDate:a,eventRecord:b,resourceRecord:c,element:d}){const e=this;if(!e[ay(0x3b7,0x448)][ay(0x382,0x3e5)](b)){[b]=e[ay(0x3b7,0x31a)]['add'](b);}function ay(a,b){return _scK(b,a-0xc6);}b[ay(0x301,0x2f5)]();b[ay(0x383,0x395)]=a;b[ay(0x3ec,0x349)](c);b[ay(0x35d,0x2dd)]();if(d){const f=_scq[ay(0x3f9,0x3d4)](d,e['foregroundCanvas']);_scm[ay(0x318,0x2cb)](d,0x0,0x0);_scm['setTopLeft'](d,f['y'],f['x']);_scp['addChild'](e[ay(0x41d,0x377)],d,b[ay(0x31b,0x2a0)][0x0]['id']);}await e[ay(0x408,0x496)][ay(0x3d2,0x336)]();return b;}[_scK(0x323,0x2d0)](a){function az(a,b){return _scK(a,b- -0x2c2);}const {eventStore:b,assignmentStore:c,resourceStore:d}=this,{usesSingleAssignment:e}=b;return _sck['asArray'](a)[az(-0xc2,-0x3b)]((f,g)=>{var h,i;const j=e&&!g[aA(0x1c6,0x1d5)]||g[aA(0x2cc,0x30e)]?b:c;function aA(a,b){return az(b,a-0x23d);}g=j[aA(0x200,0x183)](g);if((h=g)!==null&&h!==void 0x0&&h[aA(0x2cc,0x290)]){f[aA(0x192,0x1c5)](...g[aA(0x1d0,0x1cd)][aA(0x265,0x22a)](k=>k[aA(0x206,0x21f)][aA(0x1b5,0x1a7)][aA(0x237,0x200)](d)));}else if((i=g)!==null&&i!==void 0x0&&i['isAssignment']&&g['resource'][aA(0x1b5,0x23f)][aA(0x237,0x252)](d)){f[aA(0x192,0x163)](g);}return f;},[]);}['getEvents'](a){const {resourceRecord:b}=a,{assignmentStore:c,eventStore:d}=this,e=(b&&d[aB(0x3a6,0x319)]||c['isFiltered'])&&(f=>f[aB(0x36e,0x338)][aB(0x3c3,0x35c)](g=>g['resource']===b[aB(0x29e,0x33e)]&&c['includes'](g)));function aB(a,b){return _scK(a,b-0xe3);}return this[aB(0x47b,0x3d4)][aB(0x480,0x43e)]({...a,'filter':_scn[aB(0x3a0,0x32b)](a[aB(0x467,0x3cd)],e)});}get[_scK(0x2b6,0x28f)](){function aC(a,b){return _scK(b,a-0x273);}return this[aC(0x5ce,0x533)]({'startDate':this[aC(0x530,0x5a6)],'endDate':this[aC(0x48f,0x521)]})[aC(0x5cc,0x535)];}}SchedulerBase[_scK(0x37b,0x2e3)]();(a=>{function aD(a,b){return _scK(a,b- -0x6b);}const b=['bryntum.com','cdpn.io',aD(0x1db,0x1e3),aD(0x18e,0x20c),aD(0x1d9,0x1d4),aD(0x2d9,0x275),aD(0x1e2,0x25b),aD(0x2a8,0x2c3),aD(0x275,0x282),'react-calendar.com',aD(0x2be,0x2e9),'bryntum-dev-ed.develop.lightning.force.com',aD(0x1dc,0x1e6),'bryntum-dev-ed.develop.my.site.com'],c=0x3e8,d=c*0x3c,e=d*0x3c,f=e*0x18,g=[],h=(globalThis===null||globalThis===void 0x0?void 0x0:globalThis['location'][aD(0x204,0x24d)])||self['location']['host'],i=(globalThis===null||globalThis===void 0x0?void 0x0:globalThis[aD(0x2d6,0x2d2)]['href'])||self[aD(0x351,0x2d2)][aD(0x1c1,0x216)];if(aD(0x2f2,0x24c)in globalThis||!_scg[aD(0x2a8,0x274)]&&(b[aD(0x29a,0x20e)](o=>h['includes'](o))||/\/docs/[aD(0x2e4,0x24a)](i)||h[aD(0x1e9,0x251)](aD(0x19b,0x212))&&h[aD(0x283,0x257)](aD(0x2c5,0x2f4)))){return;}const j=(a=globalThis||self)===null||a===void 0x0?void 0x0:a[aD(0x284,0x21b)];if(j){j[aD(0x279,0x295)]=()=>{function aE(a,b){return aD(b,a-0x2ec);}console[aE(0x56c,0x54d)](aE(0x499,0x4d2));_scm[aE(0x4ee,0x4c1)](document[aE(0x573,0x593)],aE(0x588,0x614),_scg['isTestEnv']?c:e);j[aE(0x581,0x556)]=()=>{};};}let k;const l=o=>{if(!k){k=!![];m[aF(-0x198,-0x174)]({'widget':o});}function aF(a,b){return aD(a,b- -0x358);}o[aF(-0x107,-0xd3)]='THISISTRIAL';};class m{static[aD(0x158,0x1e4)](o){const p=this,q=aG(0x11f,0x99),r='Scheduler',s=_scg[aG(0x8d,0xc1)](aG(0x8a,0xbb)),t=_scg['isTestEnv']?c*0x3:d,u=_sch[aG(0x37,0xb)][aG(0x17,0x59)];Object['assign'](p,{'version':s,'product':q,'Product':r,'verifyUrl':_scg[aG(0x61,0x8c)]?u:aG(0x54,0x5e),'blocked':![],'lastVersionCheck':0x0,'licenseKey':'b-'+q+'-hash','trialStartTimeKey':'b-'+q+aG(0x97,-0xe),'verifyDateKey':'b-'+q+'-verify-date'},o);if(!_scg[aG(0x61,0x8c)]||globalThis[aG(0xbd,0xd4)]){console[aG(0x110,0x98)](aG(-0x8,0x89)+r+'\x20'+s+'\x20Trial',aG(0x99,0x91));}p[aG(0xe5,0xaa)]();if(p['isExpired']){if(document[aG(0xb6,0xfd)]===aG(0x65,-0x30)){p['onTrialExpired']();}else{document[aG(0x129,0xed)]('readystatechange',()=>{function aH(a,b){return aG(a,b-0x438);}if(document[aH(0x4a6,0x535)]===aH(0x46e,0x408)){p[aH(0x4df,0x4b2)]();}});}}function aG(a,b){return aD(a,b- -0x1e8);}setTimeout(()=>{function aI(a,b){return aG(b,a- -0x127);}p[aI(-0x141,-0xcd)]();},t);}static[aD(0x2c5,0x292)](){var o;const p=this,q=_sch[aJ(0x1f8,0x166)](p['trialStartTimeKey']),r=(o=window[aJ(0x25f,0x1f7)])===null||o===void 0x0?void 0x0:o[aJ(0x1fe,0x171)],s=_sch[aJ(0x1f8,0x23b)](p[aJ(0x323,0x293)]);function aJ(a,b){return aD(b,a-0x44);}let t=Number(q);if(r&&s&&r!==s){t=null;}if(t&&!isNaN(t)){p[aJ(0x288,0x233)]=t;}else{p['trialStartTime']=Date['now']();}_sch['setLocalStorageItem'](p[aJ(0x231,0x1c2)],p[aJ(0x288,0x25c)]);if(r){_sch[aJ(0x2a0,0x2bb)](p[aJ(0x323,0x2b4)],r);}}static get[aD(0x2ed,0x247)](){var o;function aK(a,b){return aD(a,b-0x115);}return this[aK(0x444,0x3f8)]||Date[aK(0x2e3,0x332)]()-this[aK(0x37a,0x359)]>f*0x2d||((o=window[aK(0x394,0x330)])===null||o===void 0x0||(o=o[this[aK(0x3d4,0x3f1)]])===null||o===void 0x0?void 0x0:o[aK(0x37a,0x316)]);}static['updateBlockedStatus'](){const o=this,p=()=>_sch[aL(-0x195,-0x1d3)](o[aL(-0x216,-0x18d)],Date['now']());function aL(a,b){return aD(b,a- -0x3f1);}o[aL(-0x161,-0x131)]=o[aL(-0x161,-0x11c)]||_sch[aL(-0x23d,-0x1c1)](o[aL(-0x216,-0x279)])||0x0;if(!navigator[aL(-0x126,-0xf9)]||o[aL(-0x161,-0x1d8)]&&Date[aL(-0x1d4,-0x1fe)]()-o['lastVersionCheck']<f){return;}if(o[aL(-0x1d8,-0x24a)]){const q=encodeURIComponent(i),r=o['verifyUrl']+aL(-0x1c4,-0x21b)+window[aL(-0x1d6,-0x163)]['license']+aL(-0x1af,-0x112)+q,s=new Image();s[aL(-0x1b7,-0x201)]=()=>{function aM(a,b){return aL(b-0xeb,a);}if(s[aM(-0xae,-0x115)]===0x2){o['blockTrial']();}else{p();}};s[aL(-0x1b3,-0x20f)]=()=>{p();};s['src']=r;}else{p();}}static['onTrialExpired'](){var o;const p=((o=this[aN(0x503,0x588)])===null||o===void 0x0?void 0x0:o[aN(0x59d,0x518)])||document['body'];if(!this['expirationShown']){this[aN(0x457,0x4ef)]=!![];if(!_scg[aN(0x518,0x572)]){console[aN(0x49f,0x46f)](aN(0x582,0x5f9)+this[aN(0x4a7,0x415)]+aN(0x462,0x464));}_scc[aN(0x507,0x550)]({'html':aN(0x49a,0x414)+this[aN(0x4a7,0x4bb)]+aN(0x575,0x591),'timeout':0x4e20,'rootElement':p});}function aN(a,b){return aD(b,a-0x2a4);}_scm[aN(0x4c9,0x4d3)](p,aN(0x549,0x518));_scm[aN(0x53f,0x522)](p,aN(0x493,0x46f),q=>{function aO(a,b){return aN(a- -0x15f,b);}const r=_sce[aO(0x3fe,0x379)](q,aO(0x3a4,0x395));if(g[aO(0x353,0x2e5)](s=>r instanceof s)){this[aO(0x318,0x339)](r);}});}static[aD(0x1d4,0x1ff)](){this[aP(0x18c,0x17b)]=!![];_sch[aP(0xd7,0xc2)](this[aP(0x84,0xa9)]);function aP(a,b){return aD(b,a- -0x157);}_sch[aP(0x105,0xd0)](this['trialStartTimeKey'],0x1);this[aP(0x10b,0x173)]();}static[aD(0x179,0x1d3)](o,p){const q=p?aQ(0x220,0x267):aQ(0x28a,0x283);function aQ(a,b){return aD(a,b- -0x49);}o['mask']({'text':q,'icon':aQ(0x244,0x1e9),'type':'trial','cover':'target'});}static[aD(0x1cf,0x253)](o,{darkColor:darkColor=aD(0x18f,0x20f),lightColor:lightColor=aD(0x2cd,0x2d6)}={}){if(_sch['queryString'][aR(-0xa4,-0xd1)]!=null){return;}const p=_scm[aR(-0x37,-0x87)]?darkColor:lightColor,q='\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<svg\x20xmlns=\x22http://www.w3.org/2000/svg\x22\x20xmlns:xlink=\x22http://www.w3.org/1999/xlink\x22\x20width=\x22100%\x22\x20height=\x22100%\x22\x20style=\x22font-family:sans-serif;font-weight:900;fill:'+p+aR(-0xa5,-0x5c);function aR(a,b){return aD(b,a- -0x2cb);}o[aR(-0xd6,-0x9b)][aR(0x22,-0x1c)]=aR(-0x94,-0x9f)+window[aR(-0x7b,-0x119)](q)+'\x27)';}}const n=o=>{function aS(a,b){return aD(a,b-0x1eb);}g['push'](o);_scf[aS(0x3be,0x3fe)](class{static get['target'](){return{'class':o};}[aS(0x525,0x4a8)](){const p=this,q=()=>{function aT(a,b){return _scb(a-0x74,b);}const r=p[aT(0x19e,0x1d2)]?Object['values'](p[aT(0x19e,0x241)]):[p];for(const s of r){if(s[aT(0x150,0x148)]){m['setWaterMark'](s[aT(0x150,0x13d)]);}}};l(p);function aU(a,b){return aS(b,a- -0x218);}q();_sci['on']('theme',()=>{q();});if(m[aU(0x21a,0x1c7)]){m['maskExpiredWidget'](p);}}[aS(0x3d3,0x421)](){function aV(a,b){return aS(b,a- -0x1b7);}if(!this[aV(0x2cd,0x369)]&&!this[aV(0x295,0x2b7)]&&!this[aV(0x226,0x260)][aV(0x329,0x324)]&&this[aV(0x226,0x286)][aV(0x242,0x2ae)](p=>p['hasGeneratedId'])){console[aV(0x22f,0x1e1)]((this['store'][aV(0x2c1,0x294)]||this[aV(0x226,0x232)]['$name'])+'\x20(id:\x20'+this[aV(0x226,0x2c5)]['id']+aV(0x27f,0x316)+'One\x20or\x20more\x20rows\x20are\x20missing\x20an\x20ID,\x20we\x20recommend\x20always\x20using\x20one.\x20'+'This\x20warning\x20is\x20only\x20shown\x20for\x20the\x20trial,\x20to\x20disable\x20it\x20configure\x20the\x20component\x20with\x20`disableNoIDWarning:\x20true`');}}});};if(typeof SchedulerBase!=='undefined'){n(SchedulerBase);_scf[aD(0x1c4,0x213)](class{static get['target'](){return{'class':_scd};}['domSync'](){function aW(a,b){return aD(a,b-0x23e);}if(!m['isExpired']){return this[aW(0x4e4,0x4cd)][aW(0x4f6,0x45c)][aW(0x3f7,0x451)](this,arguments);}}});_scf[aD(0x2b2,0x213)](class{static get['target'](){return{'class':_scF};}[aD(0x2b3,0x2db)](){function aX(a,b){return aD(a,b-0x2b5);}var o;if(!m['isExpired']||(o=this[aX(0x4b1,0x536)])!==null&&o!==void 0x0&&o['isSchedulerPro']){return this[aX(0x52f,0x544)][aX(0x55e,0x590)][aX(0x54c,0x4c8)](this,arguments);}}});_scf[aD(0x296,0x213)](class{static get[aD(0x217,0x231)](){return{'class':_scG};}[aD(0x34b,0x2db)](){var o;function aY(a,b){return aD(a,b- -0x2b4);}if(!m[aY(-0x85,-0x6d)]||(o=this[aY(0x63,-0x33)])!==null&&o!==void 0x0&&o[aY(-0x109,-0xbc)]){return this[aY(0x72,-0x25)][aY(0x13,0x27)][aY(-0xf8,-0xa1)](this,arguments);}}});}})();
@@ -1 +1 @@
1
- (function(a,b){const c=a();function q(a,b){return _scb(b- -0xd,a);}while(!![]){try{const d=parseInt(q(0x1ea,0x206))/0x1+parseInt(q(0x1d6,0x1da))/0x2*(parseInt(q(0x1fb,0x20c))/0x3)+parseInt(q(0x1e4,0x1fe))/0x4*(-parseInt(q(0x1e6,0x1ef))/0x5)+-parseInt(q(0x1ea,0x1f1))/0x6*(-parseInt(q(0x1f3,0x1df))/0x7)+-parseInt(q(0x1fa,0x1ee))/0x8*(-parseInt(q(0x1e4,0x1e6))/0x9)+parseInt(q(0x1df,0x1f6))/0xa+-parseInt(q(0x1f3,0x1f4))/0xb*(parseInt(q(0x205,0x1f3))/0xc);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x3d20d));import _scc from'@bryntum/core-thin/lib/widget/Widget.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x1e6;let f=c[d];return f;};return _scb(a,b);}function _sca(){const z=['114eXMqeK','end','6541176CgvQWr','11yNarkq','buildCells','2713660OTFZEp','range','refresh','render','height','coord','size','position','1376708mMXCuS','startDate','align','tickIndex','classList','levels','model','b-sch-header-row-','256653deAboO','sync','style','$name','forEach','length','24eMCPpa','map','sizeProperty','headerFeature','client','setProperty','headerRow','span','headerCellCls','configurable','min-','width','60412JVjXpM','hideHeaders','add','filter','--bi-header-levels','41146srxynD','presentation','DEBUG','getTime','b-time-axis','trigger','viewPreset','9EJhaMe','TimeAxisBase','element','getHeaderDomConfigs','cells','endDate','b-sch-time-axis-column-levels-','push','2066456fvGpar','5awWFUG','start'];_sca=function(){return z;};return _sca();}function _scs(a,b){return _scb(a- -0x3e1,b);}import _scd from'@bryntum/core-thin/lib/helper/DomSync.js';function isLastLevel(a,b){return a===b['length']-0x1;}function isLastCell(a,b){function r(a,b){return _scb(a- -0xbe,b);}return b===a[r(0x139,0x12d)][a[r(0x139,0x11c)]['length']-0x1];}export default class TimeAxisBase extends _scc{static [_scs(-0x1cb,-0x1d8)]=_scs(-0x1ed,-0x20b);static [_scs(-0x1bf,-0x1b0)]={'compactCellWidthThreshold':0xf,'model':null,'cls':null,'sizeProperty':null,'positionProperty':null,'defaultCls':{'b-bryntum':0x0}};['startDate']=null;[_scs(-0x1e9,-0x1d3)]=null;[_scs(-0x1d1,-0x1e6)]=[];[_scs(-0x1d8,-0x1cb)]=null;set[_scs(-0x1dd,-0x1fc)]({startDate:a,endDate:b}){function t(a,b){return _scs(b-0x38c,a);}const c=this;if(c[t(0x1b0,0x1b7)]-a||c[t(0x186,0x1a3)]-b){var d;const {client:e}=c;c[t(0x1ae,0x1b7)]=a;c['endDate']=b;if(c[t(0x1b7,0x1c6)]==='width'&&e!==null&&e!==void 0x0&&e[t(0x19b,0x193)]||c[t(0x1ab,0x1c6)]===t(0x1be,0x1b2)&&e!==null&&e!==void 0x0&&(d=e['verticalTimeAxisColumn'])!==null&&d!==void 0x0&&d['hidden']){return;}c[t(0x1cb,0x1b0)]();}}['buildCells'](a=this[_scs(-0x1d5,-0x1d5)],b=this[_scs(-0x1e9,-0x1f7)]){var c;const d=this,{sizeProperty:e}=d,{stickyHeaders:f,isVertical:g}=d[u(-0x18d,-0x17c)]||{},h=[],{length:i}=d[u(-0x19a,-0x18c)];const j=d[u(-0x19a,-0x18f)][u(-0x190,-0x1a0)]((k,l)=>{var m;const n=f&&(g||l<i-0x1);function v(a,b){return u(b-0x760,a);}return{'className':{'b-sch-header-row':0x1,[v(0x5b9,0x5c8)+k[v(0x5b3,0x5c0)]]:0x1,'b-sch-header-row-main':l===d[v(0x5d3,0x5c7)][v(0x589,0x5a8)]['mainHeaderLevel'],'b-lowest':isLastLevel(l,d['levels']),'b-sticky-header':n},'syncOptions':{'releaseThreshold':0x5,'syncIdField':v(0x5d6,0x5c4)},'dataset':{'headerFeature':v(0x5c7,0x5d5)+l,'headerPosition':k[v(0x5c3,0x5c0)]},'children':(m=k[v(0x5c9,0x5ad)])===null||m===void 0x0?void 0x0:m[v(0x598,0x5a0)](o=>o[v(0x5b9,0x5b3)]<b&&o[v(0x5b1,0x5b5)]>a)[v(0x5d6,0x5d0)]((o,p)=>({'role':v(0x5a7,0x5a3),'className':{'b-sch-header-time-axis-cell':0x1,[o[v(0x5dc,0x5d7)]]:o['headerCellCls'],['b-align-'+o[v(0x5d7,0x5c3)]]:o[v(0x5b8,0x5c3)],'b-last':isLastCell(k,o)},'dataset':{'tickIndex':o['index'],...globalThis[v(0x5be,0x5a4)]&&{'date':o[v(0x5bf,0x5b3)][v(0x589,0x5a5)]()}},'style':{[d['positionProperty']]:o[v(0x5ae,0x5be)],[e]:o[v(0x596,0x59c)],[v(0x5e7,0x5d9)+e]:o['width']},'children':[{'tag':v(0x5c7,0x5d6),'role':v(0x595,0x5a3),'className':{'b-sch-header-text':0x1,'b-sticky-header':n},'html':o['value']}]}))};});function u(a,b){return _scs(a-0x37,b);}(c=d[u(-0x18d,-0x1a6)])===null||c===void 0x0||c[u(-0x1b4,-0x1d0)](h);j[u(-0x1b0,-0x1c3)](...h);return{'onlyChildren':!![],'syncOptions':{'releaseThreshold':0x0},'children':j};}[_scs(-0x1db,-0x1bc)](a){function w(a,b){return _scs(b-0x1d7,a);}super[w(-0x1c,-0x4)](a);this[w(0x3,-0x5)](!![]);}[_scs(-0x1dc,-0x1d6)](a=!this['levels'][_scs(-0x1c9,-0x1de)]){const b=this,{columnConfig:c}=b[x(0x3d0,0x3dc)],{levels:d}=b,e=d['length'];function x(a,b){return _scs(b-0x5ac,a);}if(a){d['length']=0x0;c[x(0x3e8,0x3e2)]((g,h)=>d[h]={'position':h,'cells':g});b[x(0x3d2,0x3d4)]=d[0x0]['cells']['reduce']((g,h)=>g+h[x(0x3c3,0x3b1)],0x0);const {parentElement:f}=b['element'];if(f&&(d[x(0x3cd,0x3e3)]!==e||a)){f['classList']['remove'](x(0x3b6,0x3c4)+e);f[x(0x3c6,0x3da)][x(0x39f,0x3b4)]('b-sch-time-axis-column-levels-'+d[x(0x3e4,0x3e3)]);f[x(0x3dc,0x3e0)][x(0x3e0,0x3e9)](x(0x3c9,0x3b6),d[x(0x3c7,0x3e3)]);}}if(!b[x(0x3dd,0x3d7)]||!b[x(0x3da,0x3c3)]){return;}_scd[x(0x3d0,0x3df)]({'domConfig':b[x(0x3ae,0x3cd)](),'targetElement':b[x(0x3dc,0x3c0)],'syncIdField':x(0x3cc,0x3e7)});b[x(0x3a5,0x3bc)](x(0x3de,0x3d0));}get['widgetClass'](){function y(a,b){return _scs(b-0x2b,a);}return y(-0x1ae,-0x1c6);}}
1
+ function _sca(){const A=['span','startDate','model','4572516aDtHfd','verticalTimeAxisColumn','range','add','positionProperty','24958IWhqpf','buildCells','height','getHeaderDomConfigs','levels','align','headerRow','4470hLjLBU','reduce','endDate','sizeProperty','push','end','sync','TimeAxisBase','filter','map','$name','headerCellCls','client','27Pmmcsh','3324120iNWLwR','widgetClass','length','classList','112lOnsBj','size','refresh','remove','hidden','34961840XyMCJz','--bi-header-levels','b-align-','setProperty','forEach','getTime','position','presentation','3415815wTqlxL','min-','7066591yqgmft','b-sch-header-row-','trigger','coord','element','viewPreset','start','render','5930qjWfKE','style','b-time-axis','cells','DEBUG','b-sch-time-axis-column-levels-','headerFeature','width'];_sca=function(){return A;};return _sca();}function _sct(a,b){return _scb(b- -0x356,a);}function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x1cf;let f=c[d];return f;};return _scb(a,b);}(function(a,b){const c=a();function q(a,b){return _scb(b-0x19d,a);}while(!![]){try{const d=-parseInt(q(0x399,0x398))/0x1*(-parseInt(q(0x39d,0x37f))/0x2)+parseInt(q(0x39d,0x3a5))/0x3+parseInt(q(0x389,0x37a))/0x4+-parseInt(q(0x38a,0x36f))/0x5*(-parseInt(q(0x389,0x386))/0x6)+parseInt(q(0x38e,0x3a7))/0x7+parseInt(q(0x3a2,0x394))/0x8*(-parseInt(q(0x3a6,0x393))/0x9)+-parseInt(q(0x386,0x39d))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xca928));import _scc from'@bryntum/core-thin/lib/widget/Widget.js';import _scd from'@bryntum/core-thin/lib/helper/DomSync.js';function isLastLevel(a,b){function r(a,b){return _scb(b-0xdc,a);}return a===b[r(0x2f2,0x2d5)]-0x1;}function isLastCell(a,b){function s(a,b){return _scb(a-0x231,b);}return b===a['cells'][a[s(0x406,0x423)][s(0x42a,0x443)]-0x1];}export default class TimeAxisBase extends _scc{static [_sct(-0x17f,-0x163)]=_sct(-0x179,-0x166);static ['configurable']={'compactCellWidthThreshold':0xf,'model':null,'cls':null,'sizeProperty':null,'positionProperty':null,'defaultCls':{'b-bryntum':0x0}};[_sct(-0x16d,-0x17b)]=null;['endDate']=null;[_sct(-0x188,-0x170)]=[];[_sct(-0x156,-0x15a)]=null;set[_sct(-0x16e,-0x177)]({startDate:a,endDate:b,skipRefresh:skipRefresh=![]}){function u(a,b){return _sct(a,b-0xf2);}const c=this;if(c[u(-0x91,-0x89)]-a||c[u(-0x88,-0x79)]-b){var d;const {client:e}=c;c[u(-0x7c,-0x89)]=a;c[u(-0x83,-0x79)]=b;if(c[u(-0x81,-0x78)]===u(-0x6d,-0x8b)&&e!==null&&e!==void 0x0&&e['hideHeaders']||c[u(-0x8f,-0x78)]===u(-0x84,-0x80)&&e!==null&&e!==void 0x0&&(d=e[u(-0xa2,-0x86)])!==null&&d!==void 0x0&&d[u(-0x7a,-0x65)]){return;}!skipRefresh&&c[u(-0x50,-0x67)]();}}[_sct(-0x181,-0x173)](a=this[_sct(-0x17d,-0x17b)],b=this[_sct(-0x172,-0x16b)]){var c;const d=this,{sizeProperty:e}=d,{stickyHeaders:f,isVertical:g}=d[v(0x98,0xa8)]||{},h=[],{length:i}=d['levels'];const j=d[v(0x89,0x73)][v(0x95,0x9f)]((k,l)=>{function w(a,b){return v(a- -0x1e7,b);}var m;const n=f&&(g||l<i-0x1);return{'className':{'b-sch-header-row':0x1,[w(-0x139,-0x11f)+k[w(-0x13e,-0x12b)]]:0x1,'b-sch-header-row-main':l===d[w(-0x168,-0x16a)][w(-0x175,-0x158)]['mainHeaderLevel'],'b-lowest':isLastLevel(l,d[w(-0x15e,-0x14c)]),'b-sticky-header':n},'syncOptions':{'releaseThreshold':0x5,'syncIdField':'tickIndex'},'dataset':{'headerFeature':w(-0x15c,-0x161)+l,'headerPosition':k[w(-0x13e,-0x126)]},'children':(m=k[w(-0x16f,-0x154)])===null||m===void 0x0?void 0x0:m[w(-0x153,-0x16b)](o=>o[w(-0x174,-0x159)]<b&&o[w(-0x156,-0x171)]>a)[w(-0x152,-0x13b)]((o,p)=>({'role':w(-0x13d,-0x131),'className':{'b-sch-header-time-axis-cell':0x1,[o[w(-0x150,-0x141)]]:o[w(-0x150,-0x152)],[w(-0x142,-0x13b)+o[w(-0x15d,-0x14a)]]:o['align'],'b-last':isLastCell(k,o)},'dataset':{'tickIndex':o['index'],...globalThis[w(-0x16e,-0x15c)]&&{'date':o[w(-0x174,-0x15f)][w(-0x13f,-0x12d)]()}},'style':{[d[w(-0x163,-0x17d)]]:o[w(-0x137,-0x133)],[e]:o['width'],[w(-0x13b,-0x15b)+e]:o[w(-0x16b,-0x183)]},'children':[{'tag':w(-0x16a,-0x173),'role':w(-0x13d,-0x141),'className':{'b-sch-header-text':0x1,'b-sticky-header':n},'html':o['value']}]}))};});(c=d[v(0x98,0xaf)])===null||c===void 0x0||c[v(0x88,0x90)](h);j[v(0x90,0x73)](...h);function v(a,b){return _sct(b,a-0x1f9);}return{'onlyChildren':!![],'syncOptions':{'releaseThreshold':0x0},'children':j};}[_sct(-0x171,-0x185)](a){super[x(0x10e,0x119)](a);function x(a,b){return _sct(b,a-0x293);}this['refresh'](!![]);}[_sct(-0x161,-0x159)](a=!this[_sct(-0x17f,-0x170)][_sct(-0x14c,-0x15d)]){const b=this,{columnConfig:c}=b[y(0x41a,0x41a)],{levels:d}=b,e=d['length'];if(a){d[y(0x437,0x457)]=0x0;c[y(0x442,0x442)]((g,h)=>d[h]={'position':h,'cells':g});b[y(0x43a,0x429)]=d[0x0][y(0x413,0x41d)][y(0x428,0x43a)]((g,h)=>g+h[y(0x417,0x417)],0x0);const {parentElement:f}=b[y(0x44c,0x44a)];if(f&&(d[y(0x437,0x431)]!==e||a)){f[y(0x438,0x434)][y(0x43c,0x446)](y(0x415,0x413)+e);f[y(0x438,0x454)][y(0x41e,0x439)](y(0x415,0x42d)+d[y(0x437,0x43f)]);f[y(0x411,0x41f)][y(0x441,0x42e)](y(0x43f,0x45f),d[y(0x437,0x43a)]);}}if(!b[y(0x419,0x41e)]||!b[y(0x429,0x42f)]){return;}function y(a,b){return _sct(b,a-0x594);}_scd[y(0x42d,0x418)]({'domConfig':b[y(0x421,0x426)](),'targetElement':b['element'],'syncIdField':y(0x416,0x3fe)});b[y(0x44a,0x430)](y(0x43b,0x459));}get[_sct(-0x15f,-0x15e)](){function z(a,b){return _sct(b,a-0x3f7);}return z(0x275,0x273);}}
@@ -1 +1 @@
1
- function _sca(){const w=['onSchedulerViewportResize','height','width','timeaxissubgrid','455233IPtyfe','--bi-total-column-width','onInternalResize','$name','squashedTotalColumnWidth','130QLgyGo','isPainted','1436748PEMbaO','stickyHeaders','scrollWidth','1594918YSxoTm','timeAxisViewModel','flex','defineProperty','type','7ScLvxx','handleHorizontalScroll','clearWidthCache','queueMicrotask','isVertical','element','update','5128725UBxfzE','1500633GNbIRh','positionDirty','grid','17284hHRILC','monitorResize','startConfigure','_bodyRectangle','685MVprjf','refreshFakeScroll','expand','owner','scrollBarWidth','totalSize','headerClass','6122712byweCA','totalColumnWidth','style'];_sca=function(){return w;};return _sca();}function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xdc;let f=c[d];return f;};return _scb(a,b);}(function(a,b){function j(a,b){return _scb(a- -0x17,b);}const c=a();while(!![]){try{const d=-parseInt(j(0xc5,0xb4))/0x1+parseInt(j(0xcf,0xce))/0x2+-parseInt(j(0xdb,0xd1))/0x3+parseInt(j(0xdf,0xeb))/0x4*(parseInt(j(0xe3,0xf9))/0x5)+-parseInt(j(0xcc,0xbf))/0x6*(-parseInt(j(0xd4,0xc9))/0x7)+-parseInt(j(0xea,0xe1))/0x8+parseInt(j(0xdc,0xdb))/0x9*(parseInt(j(0xca,0xcd))/0xa);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xd3818));import _scc from'@bryntum/grid-thin/lib/view/SubGrid.js';import _scd from'./Header.js';import _sce from'@bryntum/core-thin/lib/helper/DomHelper.js';export default class TimeAxisSubGrid extends _scc{static [_sck(0x13d,0x136)]='TimeAxisSubGrid';static [_sck(0x12d,0x141)]=_sck(0x14a,0x15e);static ['configurable']={'sealedColumns':!![],'headerClass':_scd};[_sck(0x143,0x14f)](a){const {grid:b}=a;b['timeAxisSubGrid']=this;super['startConfigure'](a);a['header']={'cls':{'b-sticky-headers':b[l(-0x24f,-0x25c)]}};function l(a,b){return _sck(a,b- -0x397);}delete a[l(-0x245,-0x240)];if(!(l(-0x263,-0x258)in a||l(-0x24c,-0x23a)in a)){a['flex']=0x1;}}['changeScrollable'](...a){const b=this,c=super['changeScrollable'](...a);function m(a,b){return _sck(a,b-0x36d);}if(c){Object[m(0x4a0,0x4ad)](c,m(0x499,0x4a9),{'get'(){var d;function n(a,b){return m(a,b- -0x48d);}return((d=this[n(0x39,0x27)])===null||d===void 0x0?void 0x0:d[n(0x1e,0x1c)])??0x0;},'set'(){b[o(0x47e,0x489)]=!![];function o(a,b){return m(a,b- -0x2f);}b[o(0x47e,0x48a)]['updateCanvasSize']();}});}return c;}['handleHorizontalScroll'](a=!![]){function p(a,b){return _sck(b,a- -0xc1);}if(!this[p(0x8b,0x79)]['_viewPresetChanging']){super[p(0x82,0x78)](a);}}[_sck(0x139,0x135)](a,b,c,d,e){const f=this;function q(a,b){return _sck(b,a-0x1ec);}super[q(0x321,0x333)](a,b,c,d,e);if(f[q(0x325,0x334)]&&b!==d){const g=f[q(0x338,0x347)],h=g[q(0x33c,0x328)][q(0x348,0x344)],i=f[q(0x33a,0x34e)]&&_sce[q(0x341,0x33f)]&&b<d;if(i){f[q(0x33a,0x345)]=![];}g[q(0x347,0x348)](b,h,d,h);if(i){f[q(0x331,0x322)](()=>f[q(0x33a,0x333)]=!![]);}}}get[_sck(0x12e,0x137)](){function r(a,b){return _sck(b,a-0x211);}return this[r(0x35d,0x364)][r(0x357,0x362)]?super['squashedTotalColumnWidth']:this[r(0x35d,0x350)]['timeAxisViewModel'][r(0x367,0x36a)];}get['totalColumnWidth'](){function s(a,b){return _sck(b,a-0x1c8);}return this[s(0x314,0x315)][s(0x30e,0x301)]?super[s(0x321,0x321)]:this[s(0x314,0x325)][s(0x306,0x306)][s(0x31e,0x327)];}[_sck(0x134,0x144)](){super[t(0x59,0x6a)]();function t(a,b){return _sck(b,a- -0xeb);}if(this[t(0x69,0x73)]['isHorizontal']){this['owner']['updateViewModelAvailableSpace'](this['width']);}}[_sck(0x14f,0x152)](){function u(a,b){return _sck(b,a-0xba);}super[u(0x20c,0x20b)]();this['element'][u(0x214,0x20b)]['setProperty'](u(0x1ee,0x1de),(this[u(0x206,0x20f)][u(0x200,0x1eb)]?this[u(0x213,0x219)]:this[u(0x206,0x1f1)][u(0x1f8,0x1eb)][u(0x210,0x1ff)])+'px');}async[_sck(0x156,0x153)](a=![],b=![]){function v(a,b){return _sck(a,b- -0x38c);}const {owner:c}=this;await super[v(-0x235,-0x239)](a,b);if(c[v(-0x247,-0x253)]){c[v(-0x24c,-0x24e)][v(-0x246,-0x244)](this[v(-0x223,-0x22f)],![],!![]);}}}function _sck(a,b){return _scb(b-0x57,a);}TimeAxisSubGrid['initClass']();
1
+ (function(a,b){const c=a();function j(a,b){return _scb(b-0x1c,a);}while(!![]){try{const d=-parseInt(j(0xc0,0xbd))/0x1*(-parseInt(j(0x8c,0xa3))/0x2)+-parseInt(j(0x95,0xa9))/0x3*(-parseInt(j(0x95,0xa7))/0x4)+-parseInt(j(0xc4,0xc4))/0x5+-parseInt(j(0xa0,0xb6))/0x6*(parseInt(j(0xc8,0xcc))/0x7)+parseInt(j(0xa8,0xbb))/0x8+parseInt(j(0xc3,0xca))/0x9*(parseInt(j(0x8c,0x9e))/0xa)+-parseInt(j(0xc9,0xb2))/0xb*(parseInt(j(0x9d,0xae))/0xc);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xec5fc));import _scc from'@bryntum/grid-thin/lib/view/SubGrid.js';function _sck(a,b){return _scb(a-0x2a7,b);}import _scd from'./Header.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x82;let f=c[d];return f;};return _scb(a,b);}import _sce from'@bryntum/core-thin/lib/helper/DomHelper.js';function _sca(){const w=['scrollWidth','changeScrollable','timeAxisViewModel','2584DwbaBc','isPainted','3144HBVXxN','$name','configurable','_bodyRectangle','timeaxissubgrid','228sTUZGL','--bi-total-column-width','expand','type','896555TpItII','updateViewModelAvailableSpace','startConfigure','isVertical','24BrHxLG','refreshFakeScroll','height','squashedTotalColumnWidth','monitorResize','14817336jRZgpH','flex','1jSxvgj','clearWidthCache','totalColumnWidth','initClass','owner','handleHorizontalScroll','headerClass','7150175YNIKpV','grid','onSchedulerViewportResize','setProperty','_viewPresetChanging','width','384975KkplLY','totalSize','1997954gpIEAr','positionDirty','270MHdAAw','isHorizontal','onInternalResize','defineProperty','updateCanvasSize','2808812sijwfB'];_sca=function(){return w;};return _sca();}export default class TimeAxisSubGrid extends _scc{static [_sck(0x335,0x34d)]='TimeAxisSubGrid';static [_sck(0x33c,0x333)]=_sck(0x338,0x34d);static [_sck(0x336,0x323)]={'sealedColumns':!![],'headerClass':_scd};[_sck(0x33f,0x33d)](a){function l(a,b){return _sck(b- -0x5c4,a);}const {grid:b}=a;b['timeAxisSubGrid']=this;super['startConfigure'](a);a['header']={'cls':{'b-sticky-headers':b['stickyHeaders']}};delete a[l(-0x286,-0x276)];if(!('flex'in a||l(-0x25f,-0x270)in a)){a[l(-0x274,-0x27d)]=0x1;}}['changeScrollable'](...a){function m(a,b){return _sck(b- -0x5b2,a);}const {grid:b}=this,c=super[m(-0x27a,-0x282)](...a);if(c){Object[m(-0x26e,-0x286)](c,m(-0x26e,-0x283),{'get'(){var d;function n(a,b){return m(b,a-0x60d);}return b[n(0x385,0x36d)]?b['timeAxisViewModel']['totalSize']:((d=this['element'])===null||d===void 0x0?void 0x0:d['scrollWidth'])??0x0;},'set'(){this[o(-0x263,-0x265)]=!![];function o(a,b){return m(b,a- -0x9);}b[o(-0x28e,-0x29b)]();}});}return c;}[_sck(0x34d,0x34e)](a=!![]){function p(a,b){return _sck(b-0x2e,a);}if(!this[p(0x38f,0x37e)][p(0x382,0x381)]){super[p(0x366,0x37b)](a);}}['onInternalResize'](a,b,c,d,e){const f=this;super[q(-0x1e3,-0x1d6)](a,b,c,d,e);function q(a,b){return _sck(a- -0x50e,b);}if(f[q(-0x1db,-0x1d1)]&&b!==d){const g=f[q(-0x1be,-0x1ce)],h=g[q(-0x1d7,-0x1c7)][q(-0x1cb,-0x1c1)],i=f[q(-0x1c9,-0x1d3)]&&_sce['scrollBarWidth']&&b<d;if(i){f[q(-0x1c9,-0x1bc)]=![];}g[q(-0x1bd,-0x1bc)](b,h,d,h);if(i){f['queueMicrotask'](()=>f['monitorResize']=!![]);}}}get[_sck(0x344,0x32f)](){function r(a,b){return _sck(b- -0x4ad,a);}return this[r(-0x170,-0x15d)][r(-0x174,-0x16d)]?super['squashedTotalColumnWidth']:this['grid'][r(-0x18c,-0x17c)][r(-0x15e,-0x157)];}get[_sck(0x34a,0x355)](){function s(a,b){return _sck(a- -0xf2,b);}return this[s(0x25e,0x25e)][s(0x24e,0x23d)]?super[s(0x258,0x248)]:this['grid'][s(0x23f,0x246)]['totalSize'];}[_sck(0x349,0x34c)](){function t(a,b){return _sck(b-0xa5,a);}super[t(0x3dd,0x3ee)]();if(this[t(0x3ec,0x3f1)][t(0x3d6,0x3cf)]){this[t(0x3e6,0x3f1)][t(0x3fb,0x3e3)](this[t(0x407,0x3f9)]);}}[_sck(0x342,0x33a)](){super[u(0x279,0x279)]();function u(a,b){return _sck(a- -0xc9,b);}this['element']['style'][u(0x289,0x290)](u(0x271,0x26d),(this[u(0x287,0x29d)][u(0x277,0x27f)]?this['totalColumnWidth']:this[u(0x287,0x279)]['timeAxisViewModel'][u(0x28d,0x29c)])+'px');}async[_sck(0x33b,0x32a)](a=![],b=![]){function v(a,b){return _sck(a- -0x5b1,b);}const {owner:c}=this;await super[v(-0x276,-0x289)](a,b);if(c[v(-0x27e,-0x26c)]){c[v(-0x280,-0x274)]['update'](this[v(-0x25d,-0x253)],![],!![]);}}}TimeAxisSubGrid[_sck(0x34b,0x352)]();
@@ -1,5 +1,10 @@
1
1
  :root, :host {
2
2
  --b-top-canvas-zindex : 1000;
3
+
4
+ /**
5
+ * Timeline loading indicator z-index
6
+ */
7
+ --b-timeline-loading-indicator-z-index : 100;
3
8
  }
4
9
 
5
10
  .b-timeline-base {
@@ -9,8 +14,7 @@
9
14
  }
10
15
 
11
16
  .b-time-axis-cell:not(.b-group-title) {
12
- --b-grid-cell-padding-inline : 0;
13
- --b-grid-cell-focused-outline-width : 0;
17
+ --b-grid-cell-padding-inline : 0;
14
18
  }
15
19
 
16
20
  /* Used by Gantt too */
@@ -30,18 +34,27 @@
30
34
  z-index : var(--b-events-zindex);
31
35
  }
32
36
 
37
+ /* Prevent tooltips and hover effects while wheel/pinch zooming */
38
+ .b-wheel-zooming {
39
+ .b-sch-event-wrap,
40
+ .b-gantt-task-wrap,
41
+ svg rect {
42
+ pointer-events : none;
43
+ }
44
+ }
45
+
33
46
  .b-sch-top-canvas {
34
47
  z-index : var(--b-top-canvas-zindex);
35
48
  }
36
49
 
37
50
  .b-calculation-progress-wrap,
38
51
  .b-timeline-loading-indicator-wrap {
39
- position : absolute;
40
- bottom : 0;
41
- display : flex;
42
- width : 100%;
43
- height : 2px;
44
- z-index : 100;
52
+ position : absolute;
53
+ bottom : 0;
54
+ display : flex;
55
+ width : 100%;
56
+ height : 2px;
57
+ z-index : var(--b-timeline-loading-indicator-z-index);
45
58
  }
46
59
 
47
60
  .b-timeline-loading-indicator-wrap {
@@ -56,7 +69,7 @@
56
69
  }
57
70
 
58
71
  .b-timeline-loading-indicator {
59
- animation : b-anim-line-loop 3s linear infinite;
72
+ animation : b-anim-line-loop 3s linear infinite;
60
73
  }
61
74
 
62
75
  @keyframes b-anim-line-loop {