@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 D(a,b){return _scb(a-0x165,b);}while(!![]){try{const d=-parseInt(D(0x28e,0x225))/0x1+parseInt(D(0x320,0x2ff))/0x2*(parseInt(D(0x2e4,0x345))/0x3)+-parseInt(D(0x29e,0x28f))/0x4+-parseInt(D(0x355,0x34e))/0x5+-parseInt(D(0x30b,0x2ca))/0x6*(parseInt(D(0x359,0x3ce))/0x7)+-parseInt(D(0x301,0x2aa))/0x8+-parseInt(D(0x2d3,0x346))/0x9*(-parseInt(D(0x2ab,0x2ea))/0xa);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x2ef3e));import _scc from'@bryntum/core-thin/lib/Base.js';import _scd from'@bryntum/core-thin/lib/mixin/Delayable.js';import _sce from'@bryntum/core-thin/lib/helper/DomHelper.js';import _scf from'@bryntum/core-thin/lib/helper/DomSync.js';import _scg from'@bryntum/core-thin/lib/helper/ObjectHelper.js';import _sch from'../../eventlayout/VerticalLayout.js';import _sci from'@bryntum/core-thin/lib/helper/util/Rectangle.js';function _scE(a,b){return _scb(b- -0x1e7,a);}function _sca(){const aG=['segments','dataEndMS','timeAxisColumn','getField','resources','push','transition','hasTemporaryDragElement','tickSize','visibleDateRange','wrapEndDate','clear','internalStyle','cls','sort','getCSSText','clearAll','scrollable','assignmentId','name','refreshEventsForResource','bottomDateMS','108fkdLtS','properties','translateToScheduleCoordinate','eventId','inactive','getCoordinateFromDate','getResourceLayoutSettings','eventRecord','dateRange','get','meta','startDateMS','unmaskBody','onViewportResize','getElementsFromEventRecord','layoutEvents','releaseTimeSpanDiv','144dbfDTw','assignments','getElementFromAssignmentRecord','fromScroll','getTickSnappedDate','scrollTop','left','timeAxis','includes','add','timeView','className','$linkedResources','taskBarFeature','parentElement','resourceRecord','isEventModel','innerElement','indexOf','eventBuffer','getRowRegion','toggleCls','reduce','timeAxisViewModel','ariaLabel','onBeforeRowHeightChange','executeAndAwaitAnimations','lastResource','move','169752dsCCFr','eventReleaseThreshold','onEventStoreChange','removeEvent','visibleResources','resolveRowRecord','scrollY','canvases','replace','updateFromHorizontalScroll','6dRsFCw','tabIndex','renderResourceCustomLayout','client','lazyload','b-removing','retainElement','getById','getEventsToRender','taskFeature','some','height','.b-sch-time-axis-cell','attachToProject','isMilestone','syncId','generateRenderData','isBatchUpdating','rtl','onAssignmentStoreChange','hasBatchedChange','9964ZTtbHs','updateElementId','refreshVirtualScrollbars','onDragAbort','getDateFromXY','delete','first','translateToPageCoordinate','isResourceTimeRangeStore','call','getDateFromCoordinate','onAssignmentStoreRefresh','eventSorter','addTemporaryDragElement','row','children','onResourceColumnWidthChange','zIndex','borderOffsetX','wrapperCls','refreshFromRerender','onResourceStoreRefresh','active','isReleased','renderer','millisecond','onTimeAxisViewModelUpdate','renderResource','eventMap','abs','initialized','isEngineReady','resourceBufferSize','borderOffsetY','set','isLinked','isPainted','toDrawOnProjectRefresh','last','nodeType','getConnectorEndSide','resourceTimeRangeStore','refreshAllWhenReady','renderEvent','floor','count','$entity','resourceMap','focusElement','onEventStoreRefresh','whenVisible','getForegroundDomConfigs','isVisible','546545XdUvBK','onProjectRefresh','assignmentStore','length','1544095rxJWcj','right','dataset','resource','insetStart','bottom','refreshResourcesWhenReady','update','reuseElement','offsetWidth','enabled','features','wrapStartDate','reusingElement','closest','firstChild','target','parent','event','getResourceWidth','elementData','isProVerticalRendering','getActiveElement','reuseOwnElement','keys','createElement','filter','oldValue','value','onVisibleResourceRangeChange','processEventContent','type','getDateFromPosition','b-released','size','eventStore','bodyHeight','columnWidth','batch','enableRecurringEvents','endDate','isResizing','scheduler','jsx','isSpecialRow','ion','getTimeSpanRenderData','map','refresh','wrapperStyle','getTime','forEach','resourceColumns','project','onEventStoreAddConfirmed','onResourceStoreChange','refreshResources','assignmentRecord','style','classList','isEqual','elementConfig','rendered','isGrouped','shouldWaitForInitializeAndEngineReady','resourceRange','isCreating','onVisibleResourceColumnChange','width','resourceId','timeAxisSubGrid','remove','allResourceRecords','group','onLocaleChange','availableWidth','min','endDateMS','isScheduled','sync','_allResourceRecords','clearResources','363133RKkCMr','runWithTransition','firstResource','values','layoutFn','renderData','allIndexOf','mixin','getBoundingClientRect','isModel','applyLayout','top','trigger','getSingleUnitInPixels','resourceColumnWidth','scrollHeight','256560RZjJmt','transient','timeAxisSubGridElement','construct','max','startDate','clientHeight','b-is-creating','apply','bottomDate','releaseEvent','dataStartMS','has','609640VlEmFP','variableColumnWidths','removeall','isFiltered','resourceRangeChange','getResourceRange','lockLayout','getOccurrence','refreshAllResourcesWhenReady','wrapperChildren','resourceStore','round','topDateMS','instanceMeta','verticalLayout','layoutResourceEvents','getConnectorStartSide','from'];_sca=function(){return aG;};return _sca();}import _scj from'@bryntum/core-thin/lib/helper/DateHelper.js';import _sck from'../../data/mixin/AttachToProjectMixin.js';const releaseEventActions={'releaseElement':0x1,'reuseElement':0x1},renderEventActions={'newElement':0x1,'reuseOwnElement':0x1,'reuseElement':0x1},chronoFields={'startDate':0x1,'endDate':0x1,'duration':0x1},emptyObject=Object['freeze']({});function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x115;let f=c[d];return f;};return _scb(a,b);}export default class VerticalRendering extends _scc[_scE(-0xc6,-0xb7)](_scd,_sck){static get[_scE(-0x92,-0x78)](){return{'eventMap':new Map(),'resourceMap':new Map(),'releasedElements':{},'toDrawOnProjectRefresh':new Set(),'resourceBufferSize':0x1,'entityNames':new Set()};}[_scE(-0x112,-0xab)](a){function F(a,b){return _scE(b,a-0x226);}this[F(0x1e8,0x257)]=this[F(0x25d,0x2a2)]=a;this[F(0x193,0x1fd)]=new _sch({'scheduler':a});super['construct']({});}['init'](){function G(a,b){return _scE(a,b-0x426);}const a=this,{scheduler:b,resourceColumns:c}=a;c['resourceStore']=a['resourceStore'];c['ion']({'name':G(0x464,0x467),'columnWidthChange':'onResourceColumnWidthChange','thisObj':a});a['initialized']=!![];if(b[G(0x3d1,0x41e)]){a['renderer']();}c[G(0x38b,0x361)]=b[G(0x33d,0x37a)][G(0x4a0,0x43c)];}[_scE(-0x83,-0x46)](a,b){const c=this,{scheduler:d}=c,e=a['nodeType']?null:a,f=e?e[H(0x31c,0x2d9)]:a,g=e?[e[H(0x2e5,0x35f)],e[H(0x2f4,0x378)]]:b,h=f[H(0x2fa,0x340)]===Element['TEXT_NODE']?f[H(0x2a5,0x29c)]:f,i=h[H(0x31a,0x31b)](d['eventSelector']);if(i){return d['resourceStore'][H(0x2c5,0x324)](i['dataset'][H(0x234,0x23b)]);}if(!f[H(0x31a,0x324)](H(0x2ca,0x330))){return null;}if(!g){throw new Error('Vertical\x20mode\x20needs\x20coordinates\x20to\x20resolve\x20this\x20element.\x20Can\x20also\x20be\x20called\x20with\x20a\x20browser\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20event\x20instead\x20of\x20element\x20to\x20extract\x20element\x20and\x20coordinates\x20from');}let j=g[0x0];if(d['variableColumnWidths']||d[H(0x268,0x27c)][H(0x22e,0x239)]){if(d[H(0x2d0,0x33d)]){let m=0x0;for(const n of c[H(0x268,0x1f8)]){if(!n[H(0x338,0x383)]){m+=d['getResourceWidth'](n);}}j=m-j;}let l=0x0;for(const o of c[H(0x268,0x2d0)]){if(!o[H(0x338,0x2e8)]){l+=d['getResourceWidth'](o);}if(l>=j){return o;}}return null;}if(d[H(0x2d0,0x2bc)]){j=c[H(0x340,0x30e)][H(0x331,0x2d7)]*c[H(0x237,0x261)][H(0x30b,0x333)]-j;}function H(a,b){return _scE(b,a-0x2ff);}const k=Math[H(0x2ff,0x2e5)](j/c[H(0x340,0x324)][H(0x331,0x2ad)]);return c[H(0x237,0x1ae)][k];}[_scE(-0xd2,-0x53)](a,b,c=!![],d=![]){var e;const f=(e=this['eventMap'][I(0x77,-0xa)](a[I(0x71,0xd)]))===null||e===void 0x0?void 0x0:e[a['resourceId']];function I(a,b){return _scE(b,a-0xe7);}if(f){f[I(0x2e,0x19)][d?I(0xce,0x8c):'cls'][b]=c;const g=this[I(0xa9,0xa4)][I(0x81,0x27)](a,d);if(g){g[I(0x12f,0x1a8)][c?I(0x88,0x19):'remove'](b);}}}[_scE(-0xb1,-0x28)](a,b,c,d=![]){let e=a[0x1];function J(a,b){return _scE(a,b- -0x20);}if(!c){e=this['translateToScheduleCoordinate'](e);}return this[J(-0x13,0x17)][J(-0x14,-0x71)][J(0x9b,0xd)](e,b,d);}[_scE(-0x54,-0x77)](a){function K(a,b){return _scE(a,b-0x4f5);}return a-this[K(0x4c1,0x52c)]['timeAxisSubGridElement']['getBoundingClientRect']()['top']-globalThis[K(0x52d,0x4b0)];}[_scE(-0x7,-0x25)](a){function L(a,b){return _scE(b,a- -0x2c);}return a+this[L(0xb,-0x30)][L(-0xd8,-0xf4)][L(-0xe2,-0x141)]()[L(-0xdf,-0xb1)]+globalThis[L(-0x71,-0xa1)];}['getResourceEventBox'](a,b,c=![]){var d;const e=this,f=a['id'],g=b['id'];let {renderData:h}=((d=e[M(0x375,0x372)][M(0x366,0x312)](f))===null||d===void 0x0?void 0x0:d[g])||emptyObject;if(!h){var i;e[M(0x2cf,0x2f0)](e['scheduler'][M(0x33f,0x2eb)]['getById'](g));h=(i=e[M(0x31e,0x372)][M(0x32a,0x312)](f))===null||i===void 0x0||(i=i[g])===null||i===void 0x0?void 0x0:i[M(0x279,0x2c9)];}if(!h&&c){h=e[M(0x444,0x3bd)](a,b);}if(!h){return null;}function M(a,b){return _scE(a,b-0x382);}let {left:j,top:k,width:l,bottom:m}=h;if(c&&k===-0x1){const n=e[M(0x348,0x3b9)][M(0x322,0x331)][M(0x31e,0x2d1)]('millisecond'),o=e[M(0x3db,0x3b9)][M(0x31a,0x321)][M(0x2a3,0x2d9)][M(0x444,0x3c1)]();k=Math['round']((h['startDateMS']-o)*n);m=k+Math[M(0x2b0,0x2ec)]((h[M(0x326,0x2bf)]-h[M(0x340,0x314)])*n);}return new _sci(j,k,l,m-k);}['getScheduleRegion'](a,b,c){var d;function N(a,b){return _scE(a,b-0x38);}const e=this,{scheduler:f}=e,g=_sci[N(0x5,-0x58)](f['timeAxisSubGridElement'],f[N(-0x3d,-0x74)]);if(a){g['left']=e[N(-0x5d,-0x90)][N(0x2b,-0x1e)](a)*f[N(-0x1d,-0x78)];g[N(-0x11,0x46)]=g[N(-0xaf,-0x2a)]+f[N(0x1,-0x78)];}const h=f[N(-0x4e,-0x29)][N(-0x4c,-0x71)],i=f[N(-0x37,-0x29)][N(0x6c,0x6d)],j=((d=f['getDateConstraints'])===null||d===void 0x0?void 0x0:d[N(0x77,0x15)](f,a,b))||{'start':h,'end':i},k=f[N(-0x73,-0x3c)](_scj['max'](h,j['start'])),l=f[N(-0xc0,-0x3c)](_scj[N(-0x91,-0x8c)](i,j['end']));if(!c){g[N(-0x89,-0x7b)]=e[N(-0x6,0x13)](k);g[N(0x54,0x4a)]=e[N(0x2d,0x13)](l);}else{g[N(-0x46,-0x7b)]=k;g[N(0x97,0x4a)]=l;}return g;}[_scE(-0x4e,-0x54)](a,b,c){function O(a,b){return _scE(b,a-0x357);}const d=this,{scheduler:e}=d,f=d[O(0x28f,0x2b4)][O(0x301,0x2a0)](a)*e[O(0x2a7,0x256)],g=e[O(0x2f6,0x29b)][O(0x2ae,0x226)],h=e[O(0x2f6,0x28f)][O(0x38c,0x3cb)],i=b?_scj[O(0x2ad,0x255)](g,b):g,j=c?_scj[O(0x293,0x2cb)](h,c):h,k=e[O(0x2e3,0x2fc)](i),l=e[O(0x2e3,0x2b4)](j,!![],!![]),m=Math[O(0x293,0x280)](k,l),n=Math[O(0x348,0x387)](k-l);return new _sci(f,m,e['resourceColumnWidth'],n);}get[_scE(-0x9a,-0x86)](){const a=this['scheduler'],b=a[P(0xd6,0x105)]['y'],c=a['scrollable'][P(0xac,0x49)],d=a[P(0x132,0xf4)](b)||a[P(0xf3,0x125)]['startDate'],e=a[P(0x132,0x167)](b+c)||a[P(0xf3,0x108)][P(0x189,0x15e)];function P(a,b){return _scE(b,a-0x154);}return{'startDate':d,'endDate':e,'startMS':d[P(0x193,0x206)](),'endMS':e[P(0x193,0x13e)]()};}[_scE(0x39,-0x1c)]({width:a,oldWidth:b}){function Q(a,b){return _scE(b,a-0x37c);}const c=this,{scheduler:d}=c;c['resourceColumns'][Q(0x2b0,0x2aa)]=d[Q(0x2ef,0x310)][Q(0x2b0,0x2a7)]=c['allResourceRecords']['length']*a;c[Q(0x2fd,0x30c)]();c[Q(0x3b9,0x3d0)](Math[Q(0x36d,0x308)](a-b)>0x1e);d[Q(0x2af,0x30f)](a,b);}['attachToProject'](a){super[R(0x40a,0x480)](a);function R(a,b){return _scE(b,a-0x43e);}if(a){a[R(0x478,0x456)]({'name':R(0x480,0x420),'refresh':R(0x448,0x4b9),'thisObj':this});}}[_scE(0x5c,0xa)](){function S(a,b){return _scE(b,a- -0x1af);}const a=this,{scheduler:b,toDrawOnProjectRefresh:c}=a;if(b[S(-0x1a7,-0x170)]){if(b[S(-0x281,-0x279)]&&!b['refreshSuspended']){if(a[S(-0x1b1,-0x158)]){a[S(-0x22e,-0x1f0)]();a['refresh']();a[S(-0x1b1,-0x1f2)]=![];}else if(c[S(-0x180,-0x10c)]){a[S(-0x172,-0x188)]();}c['clear']();}}else{b[S(-0x1a9,-0x1ba)](S(-0x172,-0x1d2),b,[!![]]);}}['attachToEventStore'](a){super['attachToEventStore'](a);this['refreshAllWhenReady']=!![];function T(a,b){return _scE(a,b- -0x2f);}a===null||a===void 0x0||a['ion']({'name':'eventStore','addConfirmed':T(0x80,0x14),'refreshPreCommit':T(0x3e,-0x2a),'thisObj':this});}['onEventStoreAddConfirmed']({record:a}){function U(a,b){return _scE(b,a-0x25b);}for(const b of this[U(0x21d,0x22a)][U(0x1f0,0x178)](a)){b[U(0x2a3,0x2c0)]['remove'](U(0x1b4,0x174));}}[_scE(0x67,0x5)]({action:a}){function V(a,b){return _scE(b,a-0x35f);}if(a===V(0x392,0x3a0)){this[V(0x35d,0x34d)]=!![];}}[_scE(0xb,-0x49)]({action:a,records:b=[],record:c,replaced:d,changes:e,isAssign:f,source:g}){const h=this,i=g[W(0x39,0x5a)],j=new Set();b['forEach'](k=>{var l;function X(a,b){return W(b,a-0x377);}const m=(l=k[X(0x399,0x360)])===null||l===void 0x0?void 0x0:l[X(0x41c,0x3d8)](n=>h['resourceStore']['includes'](n));m===null||m===void 0x0||m[X(0x435,0x3bb)](n=>j[X(0x396,0x408)](n['id']));});function W(a,b){return _scE(a,b-0x7e);}if(i){if(a===W(0x57,-0x21)||a===W(0x23,0x8d)||a===W(-0x4a,0x41)){h[W(0x36,-0x1)]();h['refresh']();}else{h[W(0x3e,0xc3)]([...j]);}return;}switch(a){case'sort':case W(-0xe,-0x49):case W(0x41,0x32):case W(-0x18,-0x4b):case'batch':return;case W(0xb2,0x8d):h[W(0x2,-0x1b)]();return;case'add':break;case'replace':d[W(0x13f,0xbe)](([,k])=>{function Y(a,b){return W(a,b- -0x4a);}k[Y(-0x3f,-0x57)]['map'](l=>j[Y(-0x65,-0x2b)](l['id']));});h[W(-0xb9,-0x41)](j);break;case W(0x10,-0x21):case W(0x9d,0xa5):h['clearAll']();h[W(0x113,0xbb)]();return;case W(0x6,0x92):{const k=c[W(0x97,0x80)]?!Object[W(0x106,0xa3)](e)[W(0x60,0x47)](m=>!c[W(0xfa,0x80)][W(0x3a,-0xe)](m)):!Object[W(0xd7,0xa3)](e)['some'](m=>!chronoFields[m]);let l=0x0;if(W(0xf,-0x2b)in e)l++;if(W(0xde,0xb3)in e)l++;if('duration'in e)l++;if(!k||l||'percentDone'in e||W(0x3e,0x9)in e||W(0x47,-0x11)in e){if(h[W(-0x24,-0x52)]){h[W(0xa0,0x91)](j);}else{h['clearResources'](j);h[W(0xc8,0xbb)]();}}return;}}h[W(0x45,0x91)](j);}['attachToResourceStore'](a){const b=this;super['attachToResourceStore'](a);b[Z(0x585,0x5b4)]=!![];function Z(a,b){return _scE(b,a-0x587);}if(b[Z(0x5c8,0x655)]){b[Z(0x5c8,0x5b8)][Z(0x4f0,0x4c7)]=a;}a[Z(0x5c1,0x5c4)]({'name':'resourceStore','changePreCommit':'onResourceStoreChange','refreshPreCommit':Z(0x570,0x58e),'load':()=>b[Z(0x5be,0x5d8)][Z(0x51a,0x4f8)](),'thisObj':b,'prio':0x1});if(b['initialized']&&b[Z(0x5be,0x53e)][Z(0x57f,0x60c)]){b['firstResource']=b[Z(0x53a,0x565)]=null;b['clearAll']();b['renderer']();}}[_scE(0x72,0x44)]({source:a,action:b,records:records=[],record:c,replaced:d,changes:e}){const f=this,g=d?d[a0(0x163,0x1be)](k=>k[0x1]):records,h=new Set(g[a0(0x163,0x1aa)](k=>k['id']));f[a0(0x6b,0x1d)]=f[a0(0xda,0xcd)]=null;function a0(a,b){return _scE(b,a-0x127);}a[a0(0x67,0x20)]=null;const {allResourceRecords:j}=a;if(f[a0(0x15e,0x184)][a0(0x11a,0x147)]){switch(b){case'update':if(e!==null&&e!==void 0x0&&e['id']){f[a0(0x68,0x8d)]([e['id'][a0(0x14f,0x1d9)],e['id'][a0(0x150,0x1a3)]]);}else{f['clearResources']([c['id']]);}break;case a0(0x14e,0x13a):f[a0(0xa8,0x61)]();break;case a0(0xdb,0xe3):f[a0(0xa8,0x9f)]();break;}if(e&&'columnWidth'in e){c[a0(0x93,0xa8)](f[a0(0x15e,0x187)])['columnWidth']=c[a0(0x159,0x10e)];f[a0(0xa8,0x7b)]();}f[a0(0x164,0x13d)](!![]);}else{switch(b){case a0(0x136,0xa9):case'remove':case a0(0x88,0x91):f[a0(0x8e,0xab)]();return;case a0(0xe4,0xbd):case a0(0xc8,0x11e):{if(!a['isGrouped']){const k=g['reduce']((l,m)=>Math[a0(0x63,0x4)](l,j[a0(0xd1,0xc1)](m)),j['length']);for(let l=k;l<j['length'];l++){h[a0(0xc8,0xe9)](j[l]['id']);}}}}f[a0(0x13a,0x110)](h);}}[_scE(-0x13,-0x17)]({action:a}){const b=this;function a1(a,b){return _scE(b,a- -0x35);}if(a===a1(-0xb6,-0x4a)||a==='group'){b[a1(-0xf1,-0x128)]=b['lastResource']=b['resourceStore'][a1(-0xf5,-0x8b)]=null;b[a1(-0xb4,-0x36)]();b[a1(0x8,-0x50)]();}}['attachToAssignmentStore'](a){function a2(a,b){return _scE(a,b-0x154);}super['attachToAssignmentStore'](a);this['refreshAllWhenReady']=!![];if(a){a[a2(0x203,0x18e)]({'name':a2(0x197,0x15f),'changePreCommit':a2(0x19a,0x126),'refreshPreCommit':'onAssignmentStoreRefresh','thisObj':this});}}[_scE(-0xa,-0x2e)]({action:a,records:b=[],replaced:c,changes:d}){function a3(a,b){return _scE(a,b-0xe6);}const e=this,f=new Set(b[a3(0x140,0x122)](g=>g[a3(-0x19,0x1b)]));if(e[a3(0x15d,0x11d)][a3(0xcd,0xd9)]){switch(a){case'add':case a3(0x42,0x1d):e[a3(-0x3b,0x27)](f);break;case'filter':e[a3(0xea,0x67)]();break;case'update':{if('resourceId'in d){f['add'](d['resourceId'][a3(0x131,0x10e)]);}if(!Object[a3(0x85,0x10b)](d)['filter'](g=>g!==a3(0x17a,0xf6)&&g!==a3(0x84,0x105))[a3(0xe1,0xf2)]){return;}e[a3(-0x6,0x27)](f);}}e[a3(0x108,0x123)](!![]);}else{if(d&&a3(-0x51,0x1b)in d){f[a3(0x71,0x87)](d[a3(-0x58,0x1b)][a3(0x110,0x10e)]);}switch(a){case'removeall':e[a3(0x12,0x4d)]();return;case a3(0x22,0xa3):c[a3(0x1b2,0x126)](([g,h])=>{function a4(a,b){return a3(a,b-0x24d);}f[a4(0x2a4,0x2d4)](g[a4(0x1d9,0x268)]);f[a4(0x2de,0x2d4)](h[a4(0x25c,0x268)]);});}e[a3(0xbd,0xf9)](f);}}[_scE(0x4b,-0x21)]({action:a,records:b}){function a5(a,b){return _scE(b,a- -0x145);}if(a===a5(-0x112,-0x15d)){this[a5(-0x1c4,-0x17a)]();this['refreshAllResourcesWhenReady']();}}['refreshRows'](a,b){function a6(a,b){return _scE(b,a-0x4f4);}if(b){this[a6(0x475,0x4d1)]();this[a6(0x52b,0x4a1)][a6(0x4dc,0x515)]=![];}}['repaintEventsForResource'](a){const {resourceColumns:b}=this['scheduler'];function a7(a,b){return _scE(b,a-0x3c);}this[a7(0x2b,0x34)](a);if(this[a7(0x73,-0xc)]['internalEventLayout'][a7(0x68,0x66)]===a7(-0x7e,-0xb1)){b['updateWidthCache']();b[a7(0x79,0xc3)]();}}[_scE(-0x2f,-0x42)](a){function a8(a,b){return _scE(a,b-0x190);}if(a!==this['prevScrollX']){this[a8(0x128,0x12b)]=!![];this[a8(0x126,0x17c)]();this['prevScrollX']=a;}}['updateFromVerticalScroll'](){this[a9(-0x58,-0x89)]=!![];function a9(a,b){return _scE(b,a-0xd);}this[a9(-0x7,0x32)]();}['scrollResourceIntoView'](a,b){function aa(a,b){return _scE(b,a-0x13d);}const {scheduler:c}=this,d=this[aa(0x75,0x2c)][aa(0xe7,0x150)](a)*c[aa(0x8d,0xcb)];return c['scrollHorizontallyTo'](d,b);}get[_scE(-0x9c,-0xc8)](){function ab(a,b){return _scE(b,a- -0x97);}return this[ab(-0x60,-0x7)][ab(-0x12e,-0x1a6)][ab(-0x15f,-0x198)];}[_scE(-0xfa,-0x6c)](a){if(this[ac(-0xfe,-0x147)][ac(-0x288,-0x24d)]!==a){this[ac(-0x11d,-0x147)][ac(-0x2b0,-0x24d)]=a;this[ac(-0x131,-0x151)][ac(-0x190,-0x1b2)]();}function ac(a,b){return _scE(a,b- -0x188);}this['renderer']();}get[_scE(0x87,0x41)](){var a;function ad(a,b){return _scE(a,b-0x493);}return(a=this[ad(0x537,0x4ca)][ad(0x463,0x406)])===null||a===void 0x0?void 0x0:a['resourceColumns'];}[_scE(-0xbc,-0xc6)](){function ae(a,b){return _scE(a,b- -0xc0);}this[ae(-0x138,-0x13f)]();}[_scE(-0x50,-0x29)](){}[_scE(0x3b,-0x4f)](){}[_scE(0x63,-0x12)](){}[_scE(0x2e,-0x2b)](){}[_scE(-0x67,-0x69)](){}[_scE(-0x11a,-0x91)](a){function af(a,b){return _scE(b,a- -0x130);}return af(-0x1e3,-0x164);}[_scE(-0x3f,-0x4)](a){function ag(a,b){return _scE(b,a-0x3b3);}return ag(0x3c5,0x384);}['refreshResourcesWhenReady'](a){this[ah(0x281,0x229)](a);function ah(a,b){return _scE(a,b-0x2e8);}a[ah(0x368,0x328)](b=>this[ah(0x300,0x2e1)][ah(0x226,0x289)](b));}[_scE(-0x9a,-0x99)](){this['clearAll']();function ai(a,b){return _scE(a,b-0x528);}this[ai(0x57a,0x526)]=!![];}get[_scE(-0xb4,-0xcf)](){return this['getResourceRange'](!![]);}get[_scE(0x23,-0x47)](){function aj(a,b){return _scE(a,b-0xb3);}const {first:a,last:b}=this[aj(-0x26,0x17)]();return{'first':this[aj(0x2b,-0x15)][a],'last':this[aj(-0xa0,-0x15)][b]};}[_scE(-0x33,-0x9c)](a){const {scheduler:b,resourceStore:c}=this,{resourceColumnWidth:d,scrollX:e}=b,{scrollWidth:f}=b[ak(0x53,0xce)][ak(0x1a8,0x11a)],g=a?this[ak(0x171,0x18c)]:0x0,h=e-g,j=e+f+g;if(!(c!==null&&c!==void 0x0&&c[ak(0x19d,0x199)])){return{'first':-0x1,'last':-0x1};}function ak(a,b){return _scE(a,b-0x198);}if(b[ak(0x14b,0xf8)]){let k,l=0x0,m,n=0x0;const {allResourceRecords:o}=this;for(let p=0x0;p<o[ak(0x168,0x1a4)];p++){const q=o[p];q[ak(0xc0,0x104)](b)[ak(0x22d,0x1a9)]=m=n;n=m+b[ak(0x209,0x1b8)](q);if(m>j){break;}if(n>h&&k==null){k=p;}else if(m<j){l=p;}}return{'first':k,'last':l};}else{return{'first':Math[ak(0x91,0xee)](Math[ak(0x191,0x198)](e/d)-g,0x0),'last':Math['min'](Math[ak(0x191,0x198)]((e+b[ak(0x6f,0xce)]['width'])/d)+g,this['allResourceRecords'][ak(0x190,0x1a4)]-0x1)};}}get[_scE(-0xef,-0x71)](){const {scheduler:a}=this;let b=a['getDateFromCoordinate'](Math['min'](a[al(0x45,0xc6)]+a[al(0x1a5,0x15a)]+a[al(0x14,0xa2)]-0x1,(a['virtualScrollHeight']||a['scrollable'][al(0x48,0x7a)])-0x1));if(!b){b=a[al(0x129,0xc8)][al(0xa1,0x123)]['endDate'];}let c=a[al(0x112,0x107)](Math[al(0x12,0x7f)](a['scrollTop']-a[al(0x105,0xa2)],0x0));function al(a,b){return _scE(a,b-0x129);}if(!c){c=a[al(0xee,0xc8)][al(0x11e,0x103)][al(0x96,0x80)];b=a['getDateFromCoordinate'](a[al(0x12c,0x15a)]+a[al(0x116,0xa2)]-0x1);}return{'topDate':c,'bottomDate':b};}[_scE(0x7b,0x3b)](a,b,c=![]){var d;const e=this,{scheduler:f}=e,{preamble:g,postamble:h}=a,{variableColumnWidths:i}=f,j=((d=f[am(0x1e5,0x234)][am(0x205,0x1c7)])===null||d===void 0x0?void 0x0:d[am(0x240,0x233)])&&e[am(0x1c8,0x23e)]&&(g||h)&&!a[am(0x26b,0x1e9)],k=j?am(0x1be,0x235):am(0x119,0x173),l=j?am(0x134,0x197):'endDate',m=a[am(0x253,0x1ec)]&&a[am(0x161,0x1ef)](k)&&!j?a[am(0x1d1,0x1ac)](k):a[k],n=a[am(0x167,0x1ec)]&&a[am(0x277,0x1ef)](l)&&!j?a['get'](l):a[l],{resourceMarginObject:{total:o}}=f[am(0x22d,0x1a9)](b),p=b[am(0x15c,0x188)](f),q=i?p[am(0x1d0,0x22d)]:e['allResourceRecords'][am(0x1be,0x1c6)](b)*f[am(0x120,0x16c)],r=f[am(0x243,0x23c)](b),s=r-o,t=f['getTickSnappedDate'](m,![],a,k),u=f[am(0x23c,0x1b8)](n,!![],a,l),v=t[am(0x293,0x25b)](),w=u[am(0x2e9,0x25b)]();const x=f[am(0x22c,0x1a8)](t);function am(a,b){return _scE(a,b-0x21c);}let y=f[am(0x19f,0x1a8)](u),z=y-x;if(y===-0x1){z=Math[am(0x184,0x186)]((w-v)*f[am(0x227,0x1cb)]['getSingleUnitInPixels'](am(0x1f4,0x209)));y=x+z;}const A={'eventRecord':a,'resourceRecord':b,'left':q,'top':x,'bottom':y,'resourceWidth':r,'width':s,'height':z,'startDate':t,'endDate':u,'startDateMS':v,'endDateMS':w,'useEventBuffer':j,'children':[],'start':t,'end':u,'startMS':v,'endMS':w};if(f['fillTicks']){var B;const {eventResize:C}=f[am(0x1dd,0x234)];if((B=a[am(0x132,0x1ad)])!==null&&B!==void 0x0&&B[am(0x276,0x252)]&&C!==null&&C!==void 0x0&&C[am(0x24c,0x252)]&&C[am(0x1fb,0x181)]&&!C['isMultiResizing']){A[am(0x1c4,0x179)]=a[am(0x14b,0x173)][am(0x228,0x25b)]();A[am(0x129,0x18e)]=a[am(0x2cc,0x251)][am(0x203,0x25b)]();}else{A[am(0x1d0,0x179)]=m[am(0x26f,0x25b)]();A[am(0x20b,0x18e)]=n[am(0x2b2,0x25b)]();}}return A;}[_scE(-0xc,-0x20)](c,d){const e=c[an(0x574,0x4f3)]||c[an(0x558,0x528)],f=c['dataEndMS']||c[an(0x468,0x4d3)],g=d[an(0x47a,0x4f3)]||d['startDateMS'],h=d['dataEndMS']||d[an(0x4d5,0x4d3)],i=c[an(0x458,0x4e1)]?c[an(0x595,0x51a)]:c[an(0x55b,0x524)]['name'],j=d[an(0x456,0x4e1)]?d[an(0x532,0x51a)]:d[an(0x59f,0x524)][an(0x598,0x51a)];function an(a,b){return _scE(a,b-0x596);}return e-g||h-f||(i<j?-0x1:i==j?0x0:0x1);}[_scE(-0x3c,-0x6a)](a,b,c=![],d=null,e=null){const f=this,{scheduler:g}=f,{variableColumnWidths:h}=g,{id:i}=a,j=a[ao(0x296,0x261)](g),k=d?i+'-'+d['id']:i,l=f[ao(0x32d,0x2f9)][ao(0x320,0x39a)](k,{})['get'](k),m=f[ao(0x262,0x2d8)][ao(0x2d4,0x300)](a);const n=b[ao(0x2d8,0x26c)]((o,p)=>{function ap(a,b){return ao(b- -0x22c,a);}if(p[ap(0x72,0x3c)]){const q=g[ap(0x12b,0xcd)](p,a,![]),r={'renderData':q},s=_scg['getMapPath'](f['eventMap'],q[ap(0xb2,0x88)],{});s[i]=r;l[q[ap(0x42,0x88)]]=r;if(q['fillSize']){q[ap(0xb1,0x9c)]=h?j[ap(0x180,0x10f)]:m*g[ap(-0x37,0x4e)];q['width']=g[ap(0x147,0x11e)](a);}else{o['push'](q);}}return o;},[]);n[ao(0x2a9,0x2c0)](e??f[ao(0x30a,0x2dd)]);f[ao(0x297,0x2f5)][ao(0x276,0x2fb)](n,a,d);function ao(a,b){return _scE(b,a-0x32a);}return l;}[_scE(-0x78,-0x92)](a,b,c){function aq(a,b){return _scE(a,b- -0x154);}const d=this,{scheduler:e}=d,{assignmentStore:f,eventStore:g,timeAxis:h}=e,i=(g[aq(-0x197,-0x1f2)]||f[aq(-0x16a,-0x1f2)])&&(k=>k[aq(-0x1e7,-0x1bb)][aq(-0x119,-0x18b)](l=>l[aq(-0x152,-0x144)]===a['$original']&&f[aq(-0x23b,-0x1b4)](l)));let j=e['getEvents']({'resourceRecord':a,'includeOccurrences':e[aq(-0xa1,-0x120)],'startDate':b??h[aq(-0x18b,-0x1fd)],'endDate':c??h[aq(-0x156,-0x11f)],'filter':i});j=e[aq(-0x164,-0x18d)](a,j);return d[aq(-0x143,-0x1be)](a,j);}[_scE(-0x2e,-0x1f)](a){const {scheduler:b}=this,c=b[ar(0x4b1,0x4df)](a,a[ar(0x4e1,0x520)],{'timeAxis':!![],'viewport':!![]});c[ar(0x4a2,0x45d)]=c[ar(0x56d,0x4f2)]?c[ar(0x447,0x45d)]+c['row'][ar(0x4d9,0x45d)]:b['getResourceEventBox'](a,a[ar(0x4d4,0x520)],!![])[ar(0x489,0x45d)];const d=this[ar(0x4ef,0x50f)]({'renderData':c}),{dataset:e}=d;delete d[ar(0x4eb,0x4d0)];delete e[ar(0x4f7,0x49a)];delete e[ar(0x48b,0x445)];delete e[ar(0x44f,0x493)];delete e[ar(0x519,0x4de)];e[ar(0x48d,0x463)]=!![];d[ar(0x4fe,0x52e)]=this[ar(0x59a,0x547)]['foregroundCanvas'];d[ar(0x4da,0x4d5)]=!![];const f=_sce[ar(0x4ad,0x536)](d,{'reactCallback'({jsx:g,domConfig:h,targetElement:i}){var j;const {reactComponent:k}=b;function as(a,b){return ar(b,a- -0x355);}g&&((j=b[as(0x1e6,0x22d)])===null||j===void 0x0?void 0x0:j[as(0x198,0x170)](b,{'jsx':g,'action':as(0x15c,0x12e),'domConfig':h,'targetElement':i,'isRelease':![],'reactComponent':k}));}});f[ar(0x484,0x4b9)]=f[ar(0x516,0x52c)];function ar(a,b){return _scE(a,b-0x510);}a['instanceMeta'](b)[ar(0x4ce,0x488)]=!![];return f;}['renderEvent'](a){const {scheduler:b}=this,c=a['renderData'],{resourceRecord:d,assignmentRecord:e,eventRecord:f}=c,g=e?this[at(0x4e9,0x533)][at(0x444,0x3cc)](e,f)['id']:c[at(0x468,0x444)],h={'className':c[at(0x4c5,0x471)],'tabIndex':-0x1,'aria-label':c[at(0x4c8,0x451)]?c[at(0x48e,0x433)]:undefined,'children':[{'role':'presentation','className':c[at(0x45c,0x4c7)],'style':(c[at(0x45b,0x464)]||'')+_sce[at(0x45e,0x490)](c[at(0x525,0x4a6)]),'children':c[at(0x4c1,0x503)],'dataset':{'taskFeature':'event'},'syncOptions':{'syncIdField':at(0x483,0x475)}},...c[at(0x446,0x3b9)]],'style':{'top':c['top'],'insetInlineStart':c[at(0x47c,0x4d3)],'height':c[at(0x4a8,0x4c6)],'width':c[at(0x412,0x432)],'style':c[at(0x51c,0x511)]||'','--b-event-size':Math['min'](c[at(0x412,0x3c5)]??b['getResourceHeight'](d),0x28)},'dataset':{'resourceId':d['id'],'eventId':c[at(0x468,0x40a)],'syncId':d[at(0x4d5,0x54a)]?g+'_'+d['id']:g},'elementData':a,'retainElement':(e||f)[at(0x44a,0x3ff)](this['scheduler'])[at(0x4a3,0x434)],'syncOptions':{'syncIdField':at(0x4a6,0x445),'releaseThreshold':0x0}};h[at(0x481,0x47d)]['b-sch-vertical']=0x1;if(c[at(0x4c3,0x52c)]){h[at(0x525,0x562)][at(0x4c3,0x551)]=c[at(0x4c3,0x54e)];}if(e){h[at(0x4ed,0x529)]['assignmentId']=e['id'];}c[at(0x528,0x528)]=a['elementConfig']=h;b['afterRenderEvent']({'renderData':c,'domConfig':h});function at(a,b){return _scE(b,a-0x4de);}return h;}[_scE(-0x83,-0x11)](a,b,c){const d=this,e=(b===null||b===void 0x0?void 0x0:b[au(0x5b7,0x5ef)]())??d[au(0x4e3,0x571)],f=(c===null||c===void 0x0?void 0x0:c[au(0x5b7,0x60a)]())??d['bottomDateMS'],g=[];function au(a,b){return _scE(b,a-0x578);}let h=d[au(0x57b,0x554)]['get'](a['id']);if(!h){h=d[au(0x4e6,0x55f)](a,b,c);}for(const j in h){const k=h[j],{endDateMS:l,startDateMS:m,eventRecord:n}=k[au(0x4bf,0x4b0)];if(l>=e&&m<=f&&!n[au(0x4e4,0x4d3)](d[au(0x5af,0x56f)])[au(0x4f0,0x4de)]){var i;const o=((i=k[au(0x5c2,0x5ba)])===null||i===void 0x0?void 0x0:i[au(0x51b,0x4b1)])!==au(0x5a6,0x5cb)&&k[au(0x5c2,0x60c)]||d['renderEvent'](k);g[au(0x4ee,0x510)](o);}}return g;}get['shouldWaitForInitializeAndEngineReady'](){function av(a,b){return _scE(b,a-0x46e);}return!this[av(0x460,0x41e)]||!this['scheduler'][av(0x461,0x413)]&&!this[av(0x4a5,0x446)][av(0x3a0,0x345)];}[_scE(0x35,-0x14)](){const a=this,{scheduler:b}=a,{topDate:c,bottomDate:d}=a['dateRange'],e=[],f=[],{entityNames:g}=a,h={'event':[]},{allResourceRecords:j,fromScroll:k}=a;function aw(a,b){return _scE(a,b-0x13a);}for(const n of g){h[n]=[];}let {first:l,last:m}=a[aw(-0x14,0x6b)];if(a['shouldWaitForInitializeAndEngineReady']){return;}if(!_scj[aw(0x15b,0x183)](c,a['topDate'])||!_scj[aw(0x1ca,0x183)](d,a[aw(0xdd,0x95)])){a['topDate']=c;a[aw(0x84,0x95)]=d;a['topDateMS']=c[aw(0xfc,0x179)]();a[aw(0x84,0xc0)]=d[aw(0x17e,0x179)]();const o=a[aw(0x56,0xdc)]['range']={'startDate':c,'endDate':d};b['internalOnVisibleDateRangeChange'](o);}if(l!==-0x1&&m!==-0x1){if(b['internalEventLayout'][aw(0x13d,0x166)]===aw(0x102,0x80)&&l!==undefined){a[aw(0x160,0xfb)](e);}else{for(let q=l;q<=m;q++){e['push']['apply'](e,a[aw(0x11a,0x129)](j[q]));}}const {resourceRange:p}=a;l=p['first'];m=p['last'];}b[aw(0x121,0x141)](f);e['push'][aw(0x6b,0x94)](e,f);for(const r of e){const {entityName:entityName=aw(0x101,0x159)}=r[aw(0x187,0x15b)][aw(0x22,0x81)];if(!h[entityName]){h[entityName]=[];g[aw(0x111,0xdb)](entityName);}h[entityName][aw(0x125,0xb0)](r);}for(const s in h){_scf[aw(0x91,0x79)]({'domConfig':{'onlyChildren':!![],'children':h[s]},'targetElement':b[aw(0x115,0xf6)][s],'syncIdField':aw(0x170,0x108),'releaseThreshold':b[aw(0x13b,0xf0)],'callback':({action:t,domConfig:u,lastDomConfig:v,targetElement:w,jsx:x})=>verticalRenderingDomSyncCallback(b,k,{'domConfig':u,'jsx':x,'action':t,'targetElement':w,'lastDomConfig':v})});}if(a[aw(0x59,0x7e)]!==l||a[aw(0x164,0xed)]!==m){const t=a[aw(0x1ea,0x17b)][aw(0xe9,0xf3)]={'firstResource':l,'lastResource':m};a[aw(0x10d,0x7e)]=l;a[aw(0x16b,0xed)]=m;b[aw(0x13b,0x164)](t);b['trigger'](aw(0xa5,0x9d),t);}this['fromScroll']=![];}[_scE(0xd,0x3d)](a){function ax(a,b){return _scE(b,a-0x28e);}this[ax(0x2c5,0x274)][ax(0x1d1,0x1e3)](()=>this[ax(0x27a,0x2fc)](),a);}['refreshResources'](a){a=a['map'](b=>b['id']??b);this[ay(0x496,0x51d)](a);function ay(a,b){return _scE(b,a-0x555);}this[ay(0x592,0x516)]();}[_scE(-0x64,-0x7b)](a,b=!![],c=!![]){function az(a,b){return _scE(b,a-0x1e9);}this[az(0x22e,0x203)]([a['id']]);}['onRenderDone'](){}get[_scE(-0xb1,-0x5e)](){function aA(a,b){return _scE(b,a-0x1ca);}return this[aA(0x201,0x17c)]['timeView'];}[_scE(-0x94,-0xbf)](a){function aB(a,b){return _scE(a,b-0x465);}const {resourceMap:b,eventMap:c}=this;a[aB(0x440,0x4a5)](d=>{function aC(a,b){return aB(a,b- -0x356);}if(b[aC(0xe1,0x6d)](d)){Object[aC(-0x24,0x54)](b[aC(0xbe,0x9f)](d))['forEach'](({renderData:{eventId:e}})=>{function aD(a,b){return aC(a,b-0x2f7);}delete c[aD(0x3db,0x396)](e)[d];});b[aC(0x75,0xe8)](d);}});}[_scE(-0x48,-0x7f)](){function aE(a,b){return _scE(b,a- -0x17e);}this[aE(-0x17b,-0x11c)][aE(-0x202,-0x243)]();this[aE(-0x18e,-0x1fc)]['clear']();}}export function verticalRenderingDomSyncCallback(a,b,{domConfig:c,jsx:d,action:e,targetElement:f,lastDomConfig:g}){function aF(a,b){return _scE(a,b-0x1b1);}var h;const {reactComponent:i}=a;if(e==='beforeRelease'&&g){var j;const o=(j=g[aF(0x25d,0x1d2)])===null||j===void 0x0?void 0x0:j[aF(0x134,0xf8)];if(o!==null&&o!==void 0x0&&o[aF(0x19d,0x13f)]){var k;const {eventRecord:p,assignmentRecord:q,entityName:entityName=aF(0x1fc,0x1d0)}=o;let r;if(entityName==='resourceTimeRange'){var l;r=p&&((l=a[aF(0x1c0,0x1ae)])===null||l===void 0x0?void 0x0:l[aF(0xa1,0xf9)](p))>=0x0;}else{r=(p===null||p===void 0x0?void 0x0:p[aF(0x119,0x159)])&&a[aF(0x1d7,0x1e1)][aF(0x12e,0xf9)](p)>=0x0&&q&&a[aF(0x178,0x1bc)][aF(0x11c,0xf9)](q)>=0x0;}if(!r&&(k=a[aF(0xdf,0x128)])!==null&&k!==void 0x0&&k[aF(0xf9,0x169)]){f['retainElement']=!![];a[aF(0x12d,0x163)](f,()=>f[aF(0x275,0x1f9)][aF(0x18a,0x152)](aF(0x1ff,0x175)),null,()=>_scf[aF(0x169,0xe8)](f));return![];}}}if(a['isEventElement'](c)||d||c!==null&&c!==void 0x0&&(h=c[aF(0x21e,0x1d2)])!==null&&h!==void 0x0&&h[aF(0x1b3,0x1e9)]){var m;const s=releaseEventActions[e],t=renderEventActions[e];if((m=a[aF(0x259,0x1dc)])!==null&&m!==void 0x0&&m[aF(0x13c,0x18e)](a,{'action':e,'domConfig':c,'isRelease':![],'targetElement':f,'reactComponent':i,'jsx':d,'scrolling':b}))return;if(s&&a['isEventElement'](g)&&!g[aF(0x13d,0x19c)]){var n;const u=g[aF(0x1c0,0x1d2)][aF(0xd4,0xf8)],v={'renderData':u,'assignmentRecord':u[aF(0x1ad,0x1f7)],'eventRecord':u[aF(0x12b,0x13f)],'resourceRecord':u[aF(0x150,0x158)],'element':f};(n=a[aF(0x1f1,0x1dc)])===null||n===void 0x0||n[aF(0x10e,0x18e)](a,{'isRelease':s,'domConfig':g,'targetElement':f,'reactComponent':i});if(f===_sce[aF(0x184,0x1d4)](f)){a[aF(0x220,0x1b5)]['focus']();}a[aF(0x174,0xff)](aF(0x18c,0x10d),v);}if(t){const w=c[aF(0x1d0,0x1d2)][aF(0x139,0xf8)],x={'renderData':w,'assignmentRecord':w[aF(0x248,0x1f7)],'eventRecord':w['eventRecord'],'resourceRecord':w[aF(0x128,0x158)],'element':f,'isReusingElement':e===aF(0x248,0x1c6),'isRepaint':e===aF(0x15b,0x1d5)};x[aF(0x1de,0x1cb)]=e===aF(0x1ec,0x1c6);a['trigger'](aF(0x1b2,0x1b0),x);}}}
1
+ function _scE(a,b){return _scb(a-0x78,b);}(function(a,b){function D(a,b){return _scb(a- -0x1f,b);}const c=a();while(!![]){try{const d=-parseInt(D(0x286,0x292))/0x1+-parseInt(D(0x2e3,0x2bc))/0x2+-parseInt(D(0x2b8,0x2ab))/0x3+-parseInt(D(0x235,0x240))/0x4*(parseInt(D(0x29c,0x23d))/0x5)+-parseInt(D(0x21f,0x219))/0x6*(-parseInt(D(0x2c0,0x2a7))/0x7)+-parseInt(D(0x22d,0x218))/0x8+parseInt(D(0x1d4,0x23e))/0x9;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x53735));import _scc from'@bryntum/core-thin/lib/Base.js';import _scd from'@bryntum/core-thin/lib/mixin/Delayable.js';import _sce from'@bryntum/core-thin/lib/helper/DomHelper.js';import _scf from'@bryntum/core-thin/lib/helper/DomSync.js';import _scg from'@bryntum/core-thin/lib/helper/ObjectHelper.js';import _sch from'../../eventlayout/VerticalLayout.js';import _sci from'@bryntum/core-thin/lib/helper/util/Rectangle.js';import _scj from'@bryntum/core-thin/lib/helper/DateHelper.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x1f1;let f=c[d];return f;};return _scb(a,b);}import _sck from'../../data/mixin/AttachToProjectMixin.js';const releaseEventActions={'releaseElement':0x1,'reuseElement':0x1},renderEventActions={'newElement':0x1,'reuseOwnElement':0x1,'reuseElement':0x1},chronoFields={'startDate':0x1,'endDate':0x1,'duration':0x1},emptyObject=Object['freeze']({});export default class VerticalRendering extends _scc[_scE(0x283,0x21f)](_scd,_sck){static get['properties'](){return{'eventMap':new Map(),'resourceMap':new Map(),'releasedElements':{},'toDrawOnProjectRefresh':new Set(),'resourceBufferSize':0x1,'entityNames':new Set()};}[_scE(0x26c,0x1e1)](a){this[F(0x1b4,0x230)]=this[F(0x218,0x203)]=a;function F(a,b){return _scE(a- -0xce,b);}this[F(0x27a,0x2d0)]=new _sch({'scheduler':a});super[F(0x19e,0x20a)]({});}[_scE(0x2e5,0x2bb)](){const a=this,{scheduler:b,resourceColumns:c}=a;function G(a,b){return _scE(a-0x23c,b);}c[G(0x515,0x558)]=a['resourceStore'];c['ion']({'name':G(0x5b9,0x61f),'columnWidthChange':G(0x53e,0x50a),'thisObj':a});a['initialized']=!![];if(b[G(0x54b,0x534)]){a[G(0x50a,0x561)]();}c['availableWidth']=b[G(0x599,0x569)]['offsetWidth'];}['resolveRowRecord'](a,b){const c=this,{scheduler:d}=c,e=a[H(-0x9f,-0x11c)]?null:a,f=e?e[H(-0x5e,-0xba)]:a,g=e?[e[H(-0x5f,-0x3b)],e[H(-0xf7,-0xca)]]:b,h=f['nodeType']===Element['TEXT_NODE']?f[H(-0x49,-0x82)]:f,i=h[H(-0x14b,-0xda)](d[H(-0x16d,-0x109)]);if(i){return d[H(-0x132,-0xd5)][H(-0xb2,-0x13d)](i[H(-0x1b6,-0x13a)][H(-0xd0,-0x124)]);}if(!f['closest'](H(-0xab,-0xcc))){return null;}if(!g){throw new Error('Vertical\x20mode\x20needs\x20coordinates\x20to\x20resolve\x20this\x20element.\x20Can\x20also\x20be\x20called\x20with\x20a\x20browser\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20event\x20instead\x20of\x20element\x20to\x20extract\x20element\x20and\x20coordinates\x20from');}let j=g[0x0];function H(a,b){return _scE(b- -0x3ae,a);}if(d['variableColumnWidths']||d[H(-0x50,-0xd5)][H(-0x160,-0xdf)]){if(d[H(-0xa7,-0x105)]){let m=0x0;for(const n of c[H(-0x13b,-0xd5)]){if(!n[H(-0x7a,-0xa6)]){m+=d['getResourceWidth'](n);}}j=m-j;}let l=0x0;for(const o of c[H(-0x123,-0xd5)]){if(!o[H(-0x51,-0xa6)]){l+=d[H(0x3b,-0x40)](o);}if(l>=j){return o;}}return null;}if(d[H(-0x13b,-0x105)]){j=c[H(-0x82,-0x31)][H(-0x134,-0xaa)]*c['allResourceRecords'][H(-0xda,-0x9b)]-j;}const k=Math[H(-0x3d,-0xc0)](j/c[H(-0x95,-0x31)]['columnWidth']);return c[H(-0x12e,-0xa1)][k];}[_scE(0x28e,0x23f)](a,b,c=!![],d=![]){function I(a,b){return _scE(a-0x162,b);}var e;const f=(e=this[I(0x48a,0x42e)][I(0x4cc,0x46c)](a[I(0x401,0x429)]))===null||e===void 0x0?void 0x0:e[a[I(0x3ec,0x462)]];if(f){f['renderData'][d?'wrapperCls':I(0x49b,0x494)][b]=c;const g=this[I(0x3e4,0x397)]['getElementFromAssignmentRecord'](a,d);if(g){g['classList'][c?I(0x42b,0x402):'remove'](b);}}}[_scE(0x2f2,0x2f4)](a,b,c,d=![]){function J(a,b){return _scE(b-0x68,a);}let e=a[0x1];if(!c){e=this[J(0x2cd,0x303)](e);}return this[J(0x363,0x34e)][J(0x42a,0x3bb)][J(0x3bb,0x3ab)](e,b,d);}[_scE(0x29b,0x2bb)](a){function K(a,b){return _scE(b- -0x2dd,a);}return a-this[K(-0x3b,0x9)][K(-0xa,0x80)][K(0x2e,-0x10)]()[K(-0x8d,-0x23)]-globalThis[K(-0x1a,0xa)];}[_scE(0x2bf,0x258)](a){function L(a,b){return _scE(a-0x1ff,b);}return a+this['scheduler'][L(0x55c,0x522)][L(0x4cc,0x4db)]()['top']+globalThis[L(0x4e6,0x4ba)];}['getResourceEventBox'](a,b,c=![]){function M(a,b){return _scE(b- -0xa6,a);}var d;const e=this,f=a['id'],g=b['id'];let {renderData:h}=((d=e[M(0x2a8,0x282)]['get'](f))===null||d===void 0x0?void 0x0:d[g])||emptyObject;if(!h){var i;e[M(0x217,0x291)](e[M(0x237,0x240)]['resourceStore'][M(0x1a2,0x1cb)](g));h=(i=e[M(0x261,0x282)]['get'](f))===null||i===void 0x0||(i=i[g])===null||i===void 0x0?void 0x0:i['renderData'];}if(!h&&c){h=e[M(0x216,0x1d9)](a,b);}if(!h){return null;}let {left:j,top:k,width:l,bottom:m}=h;if(c&&k===-0x1){const n=e[M(0x24a,0x240)][M(0x330,0x2ad)]['getSingleUnitInPixels'](M(0x24a,0x216)),o=e[M(0x1f0,0x240)][M(0x1fe,0x1df)]['startDate'][M(0x1d7,0x213)]();k=Math[M(0x223,0x2b0)]((h[M(0x20b,0x244)]-o)*n);m=k+Math[M(0x312,0x2b0)]((h[M(0x33a,0x2bc)]-h['startDateMS'])*n);}return new _sci(j,k,l,m-k);}[_scE(0x2a1,0x220)](a,b,c){var d;const e=this,{scheduler:f}=e,g=_sci[N(0x1a3,0x116)](f[N(0x208,0x195)],f[N(0x208,0x1c5)]);if(a){g[N(0x1bc,0x16e)]=e[N(0x1b8,0x14f)][N(0x1a0,0x21e)](a)*f[N(0x204,0x256)];g[N(0x18c,0x13f)]=g[N(0x1bc,0x1a8)]+f[N(0x204,0x1b1)];}const h=f[N(0x130,0x11b)]['startDate'],i=f[N(0x130,0xee)]['endDate'],j=((d=f['getDateConstraints'])===null||d===void 0x0?void 0x0:d[N(0x18a,0x122)](f,a,b))||{'start':h,'end':i},k=f[N(0x1ae,0x13a)](_scj[N(0x125,0xc9)](h,j[N(0x1ec,0x23e)])),l=f['getCoordinateFromDate'](_scj[N(0x160,0x1a2)](i,j['end']));function N(a,b){return _scE(a- -0x155,b);}if(!c){g['top']=e[N(0x16a,0x18a)](k);g[N(0x20f,0x24d)]=e[N(0x16a,0xe8)](l);}else{g[N(0x165,0x185)]=k;g[N(0x20f,0x277)]=l;}return g;}[_scE(0x316,0x39d)](a,b,c){const d=this,{scheduler:e}=d,f=d[O(-0xa5,-0xeb)]['indexOf'](a)*e[O(-0x119,-0x9f)],g=e[O(-0x1d7,-0x173)][O(-0x5e,-0x8f)],h=e['timeAxis'][O(-0x15c,-0x14b)],i=b?_scj[O(-0x1e8,-0x17e)](g,b):g,j=c?_scj[O(-0x114,-0x143)](h,c):h,k=e[O(-0x178,-0xf5)](i),l=e[O(-0x139,-0xf5)](j,!![],!![]),m=Math[O(-0x140,-0x143)](k,l),n=Math[O(-0xa9,-0x11b)](k-l);function O(a,b){return _scE(b- -0x3f8,a);}return new _sci(f,m,e[O(-0x66,-0x9f)],n);}get[_scE(0x33a,0x348)](){function P(a,b){return _scE(b-0xb7,a);}const a=this[P(0x41a,0x39d)],b=a['scrollable']['y'],c=a[P(0x2f4,0x35f)][P(0x410,0x3bd)],d=a[P(0x38f,0x381)](b)||a[P(0x30f,0x33c)]['startDate'],e=a['getDateFromCoordinate'](b+c)||a[P(0x346,0x33c)][P(0x380,0x364)];return{'startDate':d,'endDate':e,'startMS':d[P(0x3aa,0x370)](),'endMS':e[P(0x3f7,0x370)]()};}['onResourceColumnWidthChange']({width:a,oldWidth:b}){const c=this,{scheduler:d}=c;c['resourceColumns'][Q(0x636,0x62b)]=d['timeAxisColumn'][Q(0x636,0x61e)]=c[Q(0x5cf,0x5fd)][Q(0x5d5,0x636)]*a;c['clearAll']();function Q(a,b){return _scE(a-0x2c2,b);}c[Q(0x604,0x668)](Math[Q(0x59f,0x585)](a-b)>0x1e);d[Q(0x643,0x5e2)](a,b);}[_scE(0x331,0x3b7)](a){function R(a,b){return _scE(a-0x174,b);}super['attachToProject'](a);if(a){a['ion']({'name':R(0x4d0,0x522),'refresh':R(0x408,0x481),'commitFinalized':R(0x408,0x41f),'thisObj':this});}}[_scE(0x294,0x27e)](){function S(a,b){return _scE(b- -0x230,a);}const a=this,{scheduler:b,toDrawOnProjectRefresh:c}=a;if(b[S(0x7b,0xf0)]){if(b['rendered']&&!b[S(0xd4,0xd7)]){if(a[S(0x44,0x56)]){a[S(0xb3,0xc0)]();a[S(0xdf,0x112)]();a[S(0x87,0x56)]=![];}else if(c[S(0xf4,0x105)]){a['refresh']();}c['clear']();}}else{b['whenVisible']('refresh',b,[!![]]);}}[_scE(0x35a,0x359)](a){function T(a,b){return _scE(a- -0x3da,b);}super[T(-0x80,-0xd2)](a);this[T(-0x154,-0xdb)]=!![];a===null||a===void 0x0||a[T(-0x77,-0x8f)]({'name':T(-0x6d,0x17),'addConfirmed':T(-0x164,-0xf2),'refreshPreCommit':T(-0xad,-0x74),'thisObj':this});}[_scE(0x276,0x2a8)]({record:a}){function U(a,b){return _scE(b- -0x460,a);}for(const b of this[U(-0x1a7,-0x1de)]['getElementsFromEventRecord'](a)){b[U(-0x134,-0x1a8)][U(-0x1af,-0x1f1)](U(-0x1a3,-0x1ae));}}[_scE(0x32d,0x33d)]({action:a}){function V(a,b){return _scE(a-0xd3,b);}if(a===V(0x39b,0x392)){this[V(0x359,0x343)]=!![];}}['onEventStoreChange']({action:a,records:b=[],record:c,replaced:d,changes:e,isAssign:f,source:g}){function W(a,b){return _scE(b- -0x3cd,a);}const h=this,i=g[W(-0x18c,-0x15a)],j=new Set();b[W(-0x1a,-0x99)](m=>{var n;const o=(n=m[X(0x454,0x423)])===null||n===void 0x0?void 0x0:n['filter'](p=>h[X(0x46f,0x48a)]['includes'](p));function X(a,b){return W(b,a-0x563);}o===null||o===void 0x0||o['forEach'](p=>j['add'](p['id']));});if(i){if(a===W(-0x2e,-0x54)||a===W(-0x13c,-0x159)||a===W(-0x7c,-0xfc)){h[W(-0x13d,-0xdd)]();h[W(-0x68,-0x8b)]();}else{h[W(-0x5d,-0x8e)]([...j]);}return;}switch(a){case W(-0x1d3,-0x158):case'group':case'move':case W(-0x1db,-0x15e):case'batch':return;case W(-0x133,-0x159):h[W(-0x5e,-0x83)]();return;case W(-0x12b,-0x104):break;case W(-0x5b,-0xb2):d['forEach'](([,m])=>{function Y(a,b){return W(a,b-0x2ea);}m[Y(0x24d,0x21b)][Y(0x245,0x24f)](n=>j[Y(0x225,0x1e6)](n['id']));});h[W(-0x11e,-0x119)](j);break;case'removeall':case'filter':h[W(-0xef,-0xdd)]();h[W(-0x33,-0x8b)]();return;case W(0x28,-0x4b):{const m=c['$entity']?!Object[W(-0x127,-0xb1)](e)[W(-0x9,-0x51)](o=>!c[W(-0x1b4,-0x12a)][W(-0x127,-0xc3)](o)):!Object[W(-0xb9,-0xb1)](e)['some'](o=>!chronoFields[o]);let n=0x0;if('startDate'in e)n++;if(W(-0x10c,-0x120)in e)n++;if(W(-0x129,-0xb9)in e)n++;if(!m||n||W(-0x21,-0x4a)in e||W(-0x13c,-0x110)in e||W(-0x10,-0x82)in e){var k,l;if(h[W(-0x1b2,-0x144)]||(k=h[W(-0x14,-0x71)])!==null&&k!==void 0x0&&k[W(-0xf,-0x8f)]||(l=h[W(0x17,-0x71)])!==null&&l!==void 0x0&&l['propagatingLoadChanges']){h['refreshResourcesWhenReady'](j);}else{h[W(-0x142,-0x119)](j);h['refresh']();}}return;}}h[W(0x11,-0x61)](j);}['attachToResourceStore'](a){const b=this;super['attachToResourceStore'](a);b[Z(-0x140,-0xd5)]=!![];function Z(a,b){return _scE(b- -0x35b,a);}if(b[Z(0x3,0x22)]){b['resourceColumns']['resourceStore']=a;}a[Z(0x94,0x8)]({'name':Z(-0x87,-0x82),'changePreCommit':Z(0x7e,0x3),'refreshPreCommit':Z(-0x51,-0x2b),'load':()=>b['scheduler']['unmaskBody'](),'thisObj':b,'prio':0x1});if(b[Z(0x20,0xa)]&&b[Z(-0xbd,-0x75)][Z(0xc,-0x4c)]){b[Z(-0x45,-0x5b)]=b[Z(-0x13,-0x2c)]=null;b[Z(-0xc3,-0x6b)]();b[Z(-0x2,-0x8d)]();}}[_scE(0x35e,0x302)]({source:a,action:b,records:records=[],record:c,replaced:d,changes:e}){const f=this,g=d?d['map'](k=>k[0x1]):records,h=new Set(g['map'](k=>k['id']));f[a0(0x26f,0x213)]=f[a0(0x2b6,0x242)]=null;a[a0(0x20b,0x28e)]=null;const {allResourceRecords:j}=a;function a0(a,b){return _scE(b- -0xed,a);}if(f[a0(0x172,0x1f9)][a0(0x1d7,0x235)]){switch(b){case a0(0x21d,0x295):if(e!==null&&e!==void 0x0&&e['id']){f[a0(0x24b,0x1c7)]([e['id'][a0(0x221,0x21f)],e['id']['value']]);}else if(!(e&&a0(0x26d,0x217)in e)){f[a0(0x13a,0x1c7)]([c['id']]);}break;case'filter':f[a0(0x27b,0x203)]();break;case a0(0x266,0x1e3):f[a0(0x1dc,0x203)]();break;}if(e&&a0(0x23e,0x217)in e){f[a0(0x217,0x290)][a0(0x2ae,0x23d)]();f[a0(0x1dd,0x203)]();}f['refresh'](!![]);}else{switch(b){case a0(0x1d3,0x187):case a0(0x1b2,0x182):case a0(0x21f,0x28c):f['refreshAllResourcesWhenReady']();return;case a0(0x1e4,0x22e):case a0(0x18f,0x1dc):{if(!a[a0(0x228,0x1e2)]){const k=g[a0(0x245,0x1eb)]((l,m)=>Math[a0(0x1db,0x1c8)](l,j['indexOf'](m)),j[a0(0x243,0x226)]);for(let l=k;l<j[a0(0x254,0x226)];l++){h['add'](j[l]['id']);}}}}f[a0(0x231,0x27f)](h);}}['onResourceStoreRefresh']({action:a}){function a1(a,b){return _scE(a- -0xfb,b);}const b=this;if(a===a1(0x17a,0xfc)||a===a1(0x16f,0x1a1)){b['firstResource']=b[a1(0x234,0x1ab)]=b['resourceStore']['_allResourceRecords']=null;b[a1(0x1f5,0x197)]();b[a1(0x247,0x20a)]();}}[_scE(0x2c7,0x2cd)](a){super[a2(-0xaf,-0x76)](a);this[a2(-0xf0,-0x15e)]=!![];function a2(a,b){return _scE(a- -0x376,b);}if(a){a[a2(-0x13,-0x74)]({'name':a2(-0xbf,-0x105),'changePreCommit':a2(-0xd8,-0x4a),'refreshPreCommit':'onAssignmentStoreRefresh','thisObj':this});}}[_scE(0x29e,0x235)]({action:a,records:b=[],replaced:c,changes:d}){function a3(a,b){return _scE(a-0x66,b);}const e=this,f=new Set(b['map'](i=>i[a3(0x2f0,0x29d)]));if(e[a3(0x34c,0x2d7)][a3(0x388,0x409)]){var g,h;switch(a){case a3(0x32f,0x322):case a3(0x2d5,0x331):e['clearResources'](f);break;case a3(0x33c,0x384):e['clearAll']();break;case a3(0x3e8,0x3fb):{if('resourceId'in d){f['add'](d[a3(0x2f0,0x2db)][a3(0x372,0x32d)]);}if(!Object['keys'](d)[a3(0x33c,0x2c8)](i=>i!=='resource'&&i!=='event')['length']){return;}e[a3(0x31a,0x369)](f);}}if((g=e['project'])!==null&&g!==void 0x0&&g[a3(0x3a4,0x355)]||(h=e[a3(0x3c2,0x3ab)])!==null&&h!==void 0x0&&h[a3(0x2ea,0x369)]){e[a3(0x3d2,0x45d)](f);}else{e[a3(0x3a8,0x339)](!![]);}}else{if(d&&a3(0x2f0,0x362)in d){f['add'](d[a3(0x2f0,0x327)]['oldValue']);}switch(a){case a3(0x3df,0x3c7):e[a3(0x3b0,0x431)]();return;case a3(0x381,0x316):c[a3(0x39a,0x398)](([i,j])=>{function a4(a,b){return a3(b-0x2cd,a);}f[a4(0x5c3,0x5fc)](i[a4(0x56e,0x5bd)]);f[a4(0x5e9,0x5fc)](j[a4(0x626,0x5bd)]);});}e[a3(0x3d2,0x43a)](f);}}[_scE(0x2d7,0x2f5)]({action:a,records:b}){function a5(a,b){return _scE(a-0x36f,b);}if(a===a5(0x637,0x603)){this[a5(0x65f,0x5ea)]();this[a5(0x6b9,0x65c)]();}}[_scE(0x32b,0x399)](a,b){function a6(a,b){return _scE(a-0x1a2,b);}if(b){this[a6(0x492,0x430)]();this[a6(0x488,0x438)][a6(0x420,0x3c7)]=![];}}[_scE(0x361,0x35c)](a){function a7(a,b){return _scE(b-0x144,a);}const {resourceColumns:b}=this['scheduler'];this[a7(0x461,0x496)](a);if(this['scheduler'][a7(0x3bd,0x431)][a7(0x503,0x4a4)]===a7(0x429,0x3d4)){b[a7(0x4fb,0x46e)]();b[a7(0x41b,0x486)]();}}[_scE(0x358,0x3d9)](a){function a8(a,b){return _scE(b-0x82,a);}if(a!==this[a8(0x322,0x32e)]){this[a8(0x34a,0x3ba)]=!![];this[a8(0x3a3,0x350)]();this['prevScrollX']=a;}}[_scE(0x309,0x347)](){this[a9(0x30e,0x354)]=!![];function a9(a,b){return _scE(a- -0x2a,b);}this['renderer']();}[_scE(0x280,0x22a)](a,b){const {scheduler:c}=this,d=this[aa(0x243,0x1ff)]['indexOf'](a)*c[aa(0x28f,0x205)];function aa(a,b){return _scE(a- -0xca,b);}return c[aa(0x2b4,0x280)](d,b);}get[_scE(0x30d,0x311)](){function ab(a,b){return _scE(b- -0x1d4,a);}return this[ab(0xd7,0x112)]['resourceStore'][ab(0x141,0x139)];}[_scE(0x301,0x371)](a){if(this['resourceColumns'][ac(0x287,0x308)]!==a){this[ac(0x3be,0x418)][ac(0x2c8,0x308)]=a;this['scheduler'][ac(0x32d,0x396)]();}function ac(a,b){return _scE(b-0x9b,a);}this[ac(0x35d,0x369)]();}get[_scE(0x37d,0x387)](){var a;function ad(a,b){return _scE(a-0x327,b);}return(a=this['scheduler'][ad(0x698,0x6c7)])===null||a===void 0x0?void 0x0:a['resourceColumns'];}[_scE(0x281,0x212)](){function ae(a,b){return _scE(a- -0x382,b);}this[ae(-0x92,-0x6a)]();}['onDragAbort'](){}[_scE(0x35b,0x378)](){}[_scE(0x347,0x322)](){}[_scE(0x27b,0x27f)](){}['releaseTimeSpanDiv'](){}[_scE(0x324,0x2ac)](a){function af(a,b){return _scE(a- -0x31f,b);}return af(-0x65,0x0);}[_scE(0x321,0x384)](a){function ag(a,b){return _scE(a- -0x164,b);}return ag(0x200,0x228);}[_scE(0x36c,0x34d)](a){function ah(a,b){return _scE(b- -0x3f9,a);}this[ah(-0xf2,-0x145)](a);a[ah(-0x12f,-0xc5)](b=>this[ah(-0x1b9,-0x181)][ah(-0xa6,-0x130)](b));}[_scE(0x34a,0x2fa)](){function ai(a,b){return _scE(a-0x110,b);}this[ai(0x400,0x382)]();this[ai(0x396,0x384)]=!![];}get[_scE(0x2d5,0x2fe)](){function aj(a,b){return _scE(a-0x111,b);}return this[aj(0x3f1,0x41e)](!![]);}get[_scE(0x329,0x33b)](){function ak(a,b){return _scE(a- -0x42e,b);}const {first:a,last:b}=this['getResourceRange']();return{'first':this[ak(-0x121,-0xce)][a],'last':this[ak(-0x121,-0x16c)][b]};}[_scE(0x2e0,0x2e7)](a){const {scheduler:b,resourceStore:c}=this,{resourceColumnWidth:d,scrollX:e}=b,{scrollWidth:f}=b[al(0x1b4,0x23f)]['scrollable'],g=a?this['resourceBufferSize']:0x0,h=e-g,j=e+f+g;function al(a,b){return _scE(a- -0xc8,b);}if(!(c!==null&&c!==void 0x0&&c[al(0x232,0x20c)])){return{'first':-0x1,'last':-0x1};}if(b[al(0x1cd,0x172)]){let k,l=0x0,m,n=0x0;const {allResourceRecords:o}=this;for(let p=0x0;p<o[al(0x24b,0x299)];p++){const q=o[p];q['instanceMeta'](b)[al(0x214,0x1e4)]=m=n;n=m+b[al(0x2a6,0x2c0)](q);if(m>j){break;}if(n>h&&k==null){k=p;}else if(m<j){l=p;}}return{'first':k,'last':l};}else{return{'first':Math[al(0x1b2,0x1ae)](Math[al(0x226,0x20c)](e/d)-g,0x0),'last':Math[al(0x1ed,0x22b)](Math['floor']((e+b[al(0x1b4,0x20b)]['width'])/d)+g,this[al(0x245,0x212)][al(0x24b,0x25a)]-0x1)};}}get[_scE(0x372,0x311)](){function am(a,b){return _scE(b-0x117,a);}const {scheduler:a}=this;let b=a[am(0x40b,0x3e1)](Math[am(0x436,0x3cc)](a[am(0x42b,0x42f)]+a['bodyHeight']+a['tickSize']-0x1,(a[am(0x483,0x460)]||a[am(0x3ae,0x3bf)]['scrollHeight'])-0x1));if(!b){b=a[am(0x3ce,0x39c)][am(0x337,0x3b1)]['endDate'];}let c=a[am(0x3cf,0x3e1)](Math[am(0x3b8,0x391)](a[am(0x3ea,0x42f)]-a[am(0x492,0x40a)],0x0));if(!c){c=a[am(0x3b0,0x39c)][am(0x385,0x40e)]['startDate'];b=a[am(0x456,0x3e1)](a[am(0x4a9,0x41c)]+a[am(0x389,0x40a)]-0x1)||a[am(0x341,0x39c)]['last']['endDate'];}return{'topDate':c,'bottomDate':b};}['getTimeSpanRenderData'](a,b,c=![]){var d;const e=this,{scheduler:f}=e,{preamble:g,postamble:h}=a,{variableColumnWidths:i}=f,j=((d=f['features'][an(0x49b,0x4f9)])===null||d===void 0x0?void 0x0:d[an(0x547,0x4ce)])&&e[an(0x49f,0x423)]&&(g||h)&&!a[an(0x560,0x4da)],k=j?an(0x4b4,0x46d):an(0x562,0x5c2),l=j?an(0x480,0x406):an(0x4a6,0x44d),m=a['isBatchUpdating']&&a['hasBatchedChange'](k)&&!j?a[an(0x563,0x5bc)](k):a[k],n=a[an(0x4a3,0x45e)]&&a[an(0x4f8,0x47f)](l)&&!j?a['get'](l):a[l],{resourceMarginObject:{total:o}}=f[an(0x4e1,0x4f1)](b),p=b['instanceMeta'](f),q=i?p['insetStart']:e[an(0x506,0x4c6)]['indexOf'](b)*f[an(0x552,0x5d0)],r=f[an(0x567,0x55a)](b),s=r-o,t=f['getTickSnappedDate'](m,![],a,k),u=f[an(0x490,0x4d3)](n,!![],a,l),v=t[an(0x4b2,0x493)](),w=u[an(0x4b2,0x4e2)]();const x=f[an(0x4fc,0x581)](t);let y=f[an(0x4fc,0x548)](u),z=y-x;if(y===-0x1){z=Math['round']((w-v)*f['timeAxisViewModel'][an(0x509,0x4ad)](an(0x4b5,0x527)));y=x+z;}const A={'eventRecord':a,'resourceRecord':b,'left':q,'top':x,'bottom':y,'resourceWidth':r,'width':s,'height':z,'startDate':t,'endDate':u,'startDateMS':v,'endDateMS':w,'useEventBuffer':j,'children':[],'start':t,'end':u,'startMS':v,'endMS':w};function an(a,b){return _scE(a-0x1f9,b);}if(f['fillTicks']){var B;const {eventResize:C}=f[an(0x4cb,0x4d2)];if((B=a[an(0x51c,0x525)])!==null&&B!==void 0x0&&B[an(0x535,0x568)]&&C!==null&&C!==void 0x0&&C[an(0x535,0x4ca)]&&C[an(0x4a9,0x498)]&&!C[an(0x513,0x515)]){A[an(0x512,0x50a)]=a[an(0x562,0x505)][an(0x4b2,0x4cf)]();A[an(0x53d,0x4d6)]=a[an(0x4a6,0x429)][an(0x4b2,0x50c)]();}else{A['dataStartMS']=m[an(0x4b2,0x4c8)]();A[an(0x53d,0x507)]=n[an(0x4b2,0x434)]();}}return A;}[_scE(0x2e3,0x351)](c,d){const e=c['dataStartMS']||c[ao(0x343,0x385)],f=c[ao(0x372,0x3df)]||c['endDateMS'],g=d[ao(0x381,0x3b4)]||d[ao(0x39b,0x385)],h=d[ao(0x3b0,0x3df)]||d[ao(0x44a,0x3fd)],i=c['isModel']?c['name']:c[ao(0x2d1,0x35c)][ao(0x393,0x3b0)],j=d[ao(0x30e,0x361)]?d['name']:d[ao(0x3b7,0x35c)][ao(0x3cb,0x3b0)];function ao(a,b){return _scE(b-0x9b,a);}return e-g||h-f||(i<j?-0x1:i==j?0x0:0x1);}[_scE(0x2cb,0x272)](a,b,c=![],d=null,e=null){const f=this,{scheduler:g}=f,{variableColumnWidths:h}=g,{id:i}=a,j=a[ap(0x129,0x110)](g),k=d?i+'-'+d['id']:i,l=f[ap(0xb7,0x140)]['set'](k,{})[ap(0x128,0x12c)](k),m=f[ap(0xcb,0x87)][ap(0xb3,0x137)](a);const n=b[ap(0x96,0x45)]((o,p)=>{function aq(a,b){return ap(a-0x4ee,b);}if(p[aq(0x56e,0x540)]){const q=g['generateRenderData'](p,a,![]),r={'renderData':q},s=_scg['getMapPath'](f[aq(0x5d4,0x5e4)],q['eventId'],{});s[i]=r;l[q[aq(0x54b,0x4ff)]]=r;if(q['fillSize']){q[aq(0x5bd,0x55e)]=h?j['insetStart']:m*g[aq(0x605,0x609)];q['width']=g[aq(0x61a,0x611)](a);}else{o['push'](q);}}return o;},[]);n[ap(0x33,-0x28)](e??f[ap(0xa1,0xac)]);function ap(a,b){return _scE(a- -0x242,b);}f['verticalLayout'][ap(0x134,0x12a)](n,a,d);return l;}[_scE(0x337,0x32e)](a,b,c){function ar(a,b){return _scE(b-0x262,a);}const d=this,{scheduler:e}=d,{assignmentStore:f,eventStore:g,timeAxis:h}=e,i=(g[ar(0x53e,0x59d)]||f[ar(0x605,0x59d)])&&(k=>k['assignments']['some'](l=>l[ar(0x577,0x506)]===a['$original']&&f[ar(0x532,0x4f8)](l)));let j=e[ar(0x54d,0x5a8)]({'resourceRecord':a,'includeOccurrences':e['enableRecurringEvents'],'startDate':b??h[ar(0x58a,0x5cb)],'endDate':c??h[ar(0x572,0x50f)],'filter':i});j=e[ar(0x497,0x511)](a,j);return d[ar(0x53e,0x52d)](a,j);}[_scE(0x2e9,0x276)](a){const {scheduler:b}=this,c=b[as(-0x92,-0x7b)](a,a[as(-0x13e,-0x11e)],{'timeAxis':!![],'viewport':!![]});c[as(-0x128,-0x1a2)]=c[as(-0x7a,-0x79)]?c['top']+c[as(-0x7a,-0xbb)][as(-0x128,-0x194)]:b[as(-0x83,-0xfd)](a,a['resource'],!![])['top'];const d=this[as(-0x145,-0x12c)]({'renderData':c}),{dataset:e}=d;delete d[as(-0x11d,-0x92)];delete e[as(-0x143,-0x178)];delete e[as(-0x158,-0x177)];delete e[as(-0xd0,-0x93)];delete e['syncId'];e[as(-0xa2,-0x9b)]=!![];d['parent']=this[as(-0xfc,-0x16e)][as(-0xe6,-0x141)];d[as(-0xf1,-0x124)]=!![];const f=_sce[as(-0x14f,-0xc5)](d,{'reactCallback'({jsx:g,domConfig:h,targetElement:i}){var j;const {reactComponent:k}=b;function at(a,b){return as(a-0x326,b);}g&&((j=b['processEventContent'])===null||j===void 0x0?void 0x0:j[at(0x223,0x1b4)](b,{'jsx':g,'action':at(0x20d,0x287),'domConfig':h,'targetElement':i,'isRelease':![],'reactComponent':k}));}});function as(a,b){return _scE(a- -0x3e2,b);}f['innerElement']=f['firstChild'];a[as(-0x77,0xe)](b)['hasTemporaryDragElement']=!![];return f;}['renderEvent'](a){const {scheduler:b}=this,c=a[au(0x388,0x394)],{resourceRecord:d,assignmentRecord:e,eventRecord:f}=c,g=e?this['assignmentStore'][au(0x370,0x361)](e,f)['id']:c['eventId'],h={'className':c[au(0x414,0x3e2)],'tabIndex':-0x1,'aria-label':c[au(0x3c6,0x3f2)]?c[au(0x42a,0x40a)]:undefined,'children':[{'role':au(0x468,0x3fa),'className':c[au(0x3c5,0x40d)],'style':(c[au(0x3c1,0x3eb)]||'')+_sce[au(0x37e,0x34d)](c['style']),'children':c[au(0x42a,0x3ae)],'dataset':{'taskFeature':au(0x3f1,0x444)},'syncOptions':{'syncIdField':'taskBarFeature'}},...c[au(0x35e,0x3a7)]],'style':{'top':c['top'],'insetInlineStart':c['left'],'height':c[au(0x42b,0x3f9)],'width':c[au(0x46c,0x448)],'style':c[au(0x3f5,0x37b)]||'','--b-event-size':Math[au(0x37d,0x389)](c[au(0x49f,0x448)]??b['getResourceHeight'](d),0x28)},'dataset':{'resourceId':d['id'],'eventId':c['eventId'],'syncId':d[au(0x455,0x3df)]?g+'_'+d['id']:g},'elementData':a,'retainElement':(e||f)[au(0x44e,0x43f)](this[au(0x350,0x3ba)])[au(0x413,0x3c5)],'syncOptions':{'syncIdField':au(0x3ab,0x33d),'releaseThreshold':0x0}};h[au(0x427,0x421)][au(0x4bf,0x44c)]=0x1;function au(a,b){return _scE(b-0xd4,a);}if(c[au(0x484,0x420)]){h['style']['zIndex']=c[au(0x462,0x420)];}if(e){h['dataset'][au(0x3a3,0x3e6)]=e['id'];}c[au(0x458,0x454)]=a['elementConfig']=h;b[au(0x338,0x3af)]({'renderData':c,'domConfig':h});return h;}[_scE(0x352,0x2d3)](a,b,c){const d=this,e=(b===null||b===void 0x0?void 0x0:b['getTime']())??d['topDateMS'],f=(c===null||c===void 0x0?void 0x0:c[av(0x4ba,0x50b)]())??d[av(0x608,0x5c7)],g=[];let h=d[av(0x4c6,0x54b)]['get'](a['id']);if(!h){h=d[av(0x5a0,0x589)](a,b,c);}for(const j in h){const k=h[j],{endDateMS:l,startDateMS:m,eventRecord:n}=k[av(0x593,0x512)];if(l>=e&&m<=f&&!n[av(0x532,0x5bd)](d[av(0x4f7,0x538)])['hasTemporaryDragElement']){var i;const o=((i=k['elementConfig'])===null||i===void 0x0?void 0x0:i[av(0x60a,0x59f)])!==av(0x4fd,0x4c0)&&k[av(0x64c,0x5d2)]||d[av(0x4a4,0x4ef)](k);g[av(0x599,0x5b8)](o);}}function av(a,b){return _scE(b-0x252,a);}return g;}get[_scE(0x289,0x2f1)](){function aw(a,b){return _scE(a-0x332,b);}return!this[aw(0x697,0x665)]||!this[aw(0x618,0x62a)][aw(0x654,0x5e8)]&&!this[aw(0x618,0x635)][aw(0x61d,0x5bd)];}[_scE(0x2ce,0x309)](){const a=this,{scheduler:b}=a,{topDate:c,bottomDate:d}=a[ax(0x498,0x4a6)],e=[],f=[],{entityNames:g}=a,h={'event':[]},{allResourceRecords:j,fromScroll:k}=a;if(b['refreshSuspended']){return;}for(const n of g){h[n]=[];}let {first:l,last:m}=a[ax(0x3fb,0x3ae)];if(a[ax(0x3af,0x3ed)]){return;}if(!_scj['isEqual'](c,a[ax(0x454,0x497)])||!_scj[ax(0x47a,0x48f)](d,a[ax(0x44d,0x458)])){a[ax(0x454,0x411)]=c;a['bottomDate']=d;a[ax(0x49d,0x507)]=c['getTime']();a['bottomDateMS']=d[ax(0x3df,0x432)]();const o=a['timeView'][ax(0x445,0x413)]={'startDate':c,'endDate':d};b['internalOnVisibleDateRangeChange'](o);}if(l!==-0x1&&m!==-0x1){if(b[ax(0x413,0x47b)]['type']==='layoutFn'&&l!==undefined){a['renderResourceCustomLayout'](e);}else{for(let q=l;q<=m;q++){e[ax(0x48c,0x484)][ax(0x41c,0x4a1)](e,a['renderResource'](j[q]));}}const {resourceRange:p}=a;l=p['first'];m=p[ax(0x3c0,0x3ae)];}b[ax(0x3d7,0x38d)](f);e[ax(0x48c,0x47c)]['apply'](e,f);for(const r of e){const {entityName:entityName=ax(0x496,0x450)}=r[ax(0x3b7,0x3f9)][ax(0x3e6,0x406)];if(!h[entityName]){h[entityName]=[];g['add'](entityName);}h[entityName][ax(0x48c,0x4b9)](r);}for(const s in h){_scf['sync']({'domConfig':{'onlyChildren':!![],'children':h[s]},'targetElement':b[ax(0x46b,0x42d)][s],'syncIdField':ax(0x3ae,0x3b0),'releaseThreshold':b[ax(0x47b,0x4dc)],'callback':({action:t,domConfig:u,lastDomConfig:v,targetElement:w,jsx:x})=>verticalRenderingDomSyncCallback(b,k,{'domConfig':u,'jsx':x,'action':t,'targetElement':w,'lastDomConfig':v})});}if(a[ax(0x426,0x43c)]!==l||a[ax(0x455,0x455)]!==m){const t=a[ax(0x4a3,0x50c)][ax(0x44f,0x454)]={'firstResource':l,'lastResource':m};a[ax(0x426,0x3e7)]=l;a[ax(0x455,0x445)]=m;b[ax(0x3b2,0x37d)](t);b['trigger']('resourceRangeChange',t);}function ax(a,b){return _scE(a-0x126,b);}this['fromScroll']=![];}[_scE(0x342,0x36e)](a){function ay(a,b){return _scE(b- -0x330,a);}this[ay(-0x78,-0x4a)][ay(0xa7,0x3f)](()=>this[ay(-0x2a,-0x62)](),a);}[_scE(0x33f,0x2f1)](a){a=a['map'](b=>b['id']??b);this[az(0xb2,0x12f)](a);function az(a,b){return _scE(a- -0x202,b);}this[az(0x140,0x16d)]();}['refreshEventsForResource'](a,b=!![],c=!![]){function aA(a,b){return _scE(b-0x353,a);}this[aA(0x6d9,0x692)]([a['id']]);}['onRenderDone'](){}get['timeView'](){function aB(a,b){return _scE(b- -0x39,a);}return this[aB(0x328,0x2ad)][aB(0x27c,0x256)];}['clearResources'](a){const {resourceMap:b,eventMap:c}=this;function aC(a,b){return _scE(a-0x25,b);}a[aC(0x359,0x3bf)](d=>{function aD(a,b){return aC(b-0x322,a);}if(b[aD(0x542,0x5b7)](d)){Object[aD(0x564,0x5e7)](b[aD(0x6ee,0x6b1)](d))[aD(0x693,0x67b)](({renderData:{eventId:e}})=>{function aE(a,b){return aD(b,a- -0x76e);}delete c[aE(-0xbd,-0x14a)](e)[d];});b['delete'](d);}});}[_scE(0x2f0,0x321)](){function aF(a,b){return _scE(b- -0x8b,a);}this[aF(0x21b,0x26e)][aF(0x1d8,0x20d)]();this[aF(0x2bf,0x29d)][aF(0x220,0x20d)]();}}export function verticalRenderingDomSyncCallback(a,b,{domConfig:c,jsx:d,action:e,targetElement:f,lastDomConfig:g}){var h;const {reactComponent:i}=a;if(e===aG(0x113,0x12b)&&g){var j;const o=(j=g['elementData'])===null||j===void 0x0?void 0x0:j['renderData'];if(o!==null&&o!==void 0x0&&o[aG(0x18f,0x161)]){var k;const {eventRecord:p,assignmentRecord:q,entityName:entityName=aG(0x1e6,0x210)}=o;let r;if(entityName===aG(0xf7,0x139)){var l;r=p&&((l=a[aG(0x194,0x19d)])===null||l===void 0x0?void 0x0:l[aG(0x11d,0x13c)](p))>=0x0;}else{r=(p===null||p===void 0x0?void 0x0:p[aG(0x171,0x18f)])&&a['eventStore']['allIndexOf'](p)>=0x0&&q&&a[aG(0xe0,0x157)][aG(0xda,0x13c)](q)>=0x0;}if(!r&&(k=a[aG(0x1b9,0x14b)])!==null&&k!==void 0x0&&k['removeEvent']){f[aG(0x19b,0x191)]=!![];a[aG(0x23d,0x21f)](f,()=>f[aG(0x1b7,0x158)][aG(0x1aa,0x169)]('b-removing'),null,()=>_scf[aG(0xb8,0x10f)](f));return![];}}}function aG(a,b){return _scE(b- -0x160,a);}if(a[aG(0x21c,0x1f1)](c)||d||c!==null&&c!==void 0x0&&(h=c['elementData'])!==null&&h!==void 0x0&&h[aG(0x1c7,0x163)]){var m;const s=releaseEventActions[e],t=renderEventActions[e];if((m=a[aG(0xdc,0x112)])!==null&&m!==void 0x0&&m['call'](a,{'action':e,'domConfig':c,'isRelease':![],'targetElement':f,'reactComponent':i,'jsx':d,'scrolling':b}))return;if(s&&a[aG(0x245,0x1f1)](g)&&!g['isReleased']){var n;const u=g[aG(0x171,0x131)]['renderData'],v={'renderData':u,'assignmentRecord':u[aG(0x1af,0x18c)],'eventRecord':u['eventRecord'],'resourceRecord':u[aG(0x1a8,0x153)],'element':f};(n=a['processEventContent'])===null||n===void 0x0||n['call'](a,{'isRelease':s,'domConfig':g,'targetElement':f,'reactComponent':i});if(f===_sce['getActiveElement'](f)){a['focusElement'][aG(0xf8,0x17e)]();}a['trigger']('releaseEvent',v);}if(t){const w=c[aG(0x15d,0x131)][aG(0x1ae,0x160)],x={'renderData':w,'assignmentRecord':w[aG(0x18a,0x18c)],'eventRecord':w['eventRecord'],'resourceRecord':w['resourceRecord'],'element':f,'isReusingElement':e===aG(0x118,0x11d),'isRepaint':e===aG(0x18d,0x1dd)};x[aG(0xc6,0x14e)]=e===aG(0xe5,0x11d);a[aG(0xb5,0x117)]('renderEvent',x);}}}function _sca(){const aH=['closest','resourceRange','filter','onAssignmentStoreRefresh','reduce','resourceStore','children','afterRenderEvent','insetStart','abs','focus','call','getResourceRange','right','.b-sch-time-axis-cell','eventSorter','borderOffsetY','init','scheduler','scrollY','getResourceLayoutSettings','addTemporaryDragElement','startDateMS','isCreating','assignmentRecord','internalEventLayout','floor','isEventModel','clearAll','retainElement','getDateFromXY','tickSize','target','indexOf','apply','first','from','resourceMap','count','refreshVirtualScrollbars','foregroundCanvas','resourceTimeRangeStore','resources','hasBatchedChange','firstResource','onViewportResize','onResourceColumnWidthChange','getCoordinateFromDate','columnWidth','bodyHeight','clientHeight','refreshSuspended','isSpecialRow','updateFromVerticalScroll','getField','isLinked','oldValue','allResourceRecords','wrapperCls','isPainted','getSingleUnitInPixels','left','assignmentId','length','duration','name','getRowRegion','internalStyle','scrollTop','dataStartMS','isMultiResizing','replace','keys','422793XefMzP','active','range','isVisible','getConnectorEndSide','isEngineReady','meta','getConnectorStartSide','height','presentation','bottomDate','eventMap','visibleResources','updateWidthCache','refreshRows','parentElement','onEventStoreRefresh','topDate','lastResource','onResourceStoreRefresh','attachToProject','map','179395GsnjWp','forEach','size','ariaLabel','layoutResourceEvents','fromScroll','cls','visibleDateRange','isFiltered','isResizing','reuseOwnElement','isWritingData','refreshResources','transient','start','refresh','getDateFromPosition','dataEndMS','canvases','getEvents','onTimeAxisViewModelUpdate','verticalLayout','virtualScrollHeight','refreshAllResourcesWhenReady','segments','zIndex','className','enabled','1207224YcFDgF','generateRenderData','isEventElement','renderResource','timeAxisViewModel','isEqual','eventReleaseThreshold','round','193606tcwwcc','updateFromHorizontalScroll','resourceColumnWidth','attachToEventStore','onBeforeRowHeightChange','project','timeAxisSubGridElement','onResourceStoreChange','getResourceEventBox','type','repaintEventsForResource','endDateMS','ion','bottom','initialized','push','isMilestone','row','startDate','get','instanceMeta','refreshResourcesWhenReady','eventStore','getResourceWidth','runWithTransition','event','timeAxisColumn','dateRange','borderOffsetX','width','bottomDateMS','applyLayout','topDateMS','b-sch-vertical','removeall','179270UpAKkC','_allResourceRecords','some','resourceColumns','scrollHorizontallyTo','executeAndAwaitAnimations','elementConfig','onVisibleResourceColumnChange','update','percentDone','taskFeature','group','15315210MzJfUV','construct','availableWidth','b-released','remove','has','getById','processEventContent','isResourceTimeRangeStore','dataset','sort','onEventStoreAddConfirmed','trigger','toDrawOnProjectRefresh','getCSSText','max','updateElementId','timeAxisSubGrid','reuseElement','refreshFromRerender','getTimeSpanRenderData','scrollResourceIntoView','onLocaleChange','client','mixin','propagatingLoadChanges','timeAxis','refreshAllWhenReady','wrapEndDate','syncId','shouldWaitForInitializeAndEngineReady','resourceId','beforeRelease','onVisibleResourceRangeChange','getOccurrence','toggleCls','timeView','layoutFn','elementData','nodeType','createElement','onProjectRefresh','variableColumnWidths','includes','getTickSnappedDate','clear','resourceTimeRange','last','translateToScheduleCoordinate','allIndexOf','renderEvent','onAssignmentStoreChange','eventId','values','getScheduleRegion','eventBuffer','$entity','resource','eventSelector','isProVerticalRendering','wrapperStyle','scrollable','rtl','isBatchUpdating','transition','prevScrollX','endDate','reusingElement','getEventsToRender','lockLayout','getForegroundDomConfigs','b-is-creating','resourceRecord','clearResources','min','48DVSojF','assignmentStore','classList','getTime','top','wrapStartDate','millisecond','inactive','$linkedResources','translateToPageCoordinate','renderData','eventRecord','isScheduled','jsx','5043408akxpCW','tabIndex','isModel','attachToAssignmentStore','batch','add','getDateFromCoordinate','layoutEvents','4QDxDrF','getBoundingClientRect','renderer','isGrouped','move','lazyload','features','wrapperChildren'];_sca=function(){return aH;};return _sca();}
@@ -1 +1 @@
1
- function _sca(){var A=['25929SJFjUw','onChangeMultipleButtonClick','recurrenceconfirmation','values','endBatch','L{Object.Yes}','filled','text','cancelFn','onChangeSingleButtonClick','realign','update','updatePopupContent','enableRecurringEvents','24398IlpApb','L{width}','initialConfig','width','confirm','title','changeSingleButton','call','show','single','thisObj','b-sch-recurrence-confirmation','changeMultipleButton','forEach','1464oEwdla','eventRecord','resolve','-title','hide','7924iDUdWb','processMultipleRecords','1710885EZidMX','-further-message','html','10ucYjPs','2263462Geyely','990180gjVJhB','forEachOccurrence','L{Object.Cancel}','RecurrenceConfirmationPopup','widgetMap','finalizerFn','up.onCancelButtonClick','initClass','onRecurrenceClose','convertToRealEvent','-only-this-message','1oRmjKW','-further-btn-text','callback','2125390WCtIRk','13452bSelnh','confirmed','recurrence','recurrenceRule','future','isRecurring','updateLocalization','processSingleRecord','beginBatch','closest','-all-message','defaultAction','changerFn','5340RHpFws'];_sca=function(){return A;};return _sca();}function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x178;var f=c[d];return f;};return _scb(a,b);}(function(a,b){function l(a,b){return _scb(b- -0xfe,a);}var c=a();while(!![]){try{var d=parseInt(l(0xbe,0xbd))/0x1*(-parseInt(l(0xb2,0xb1))/0x2)+-parseInt(l(0xcc,0xad))/0x3+-parseInt(l(0xcc,0xb2))/0x4*(-parseInt(l(0xcf,0xb0))/0x5)+parseInt(l(0x84,0x89))/0x6*(-parseInt(l(0xac,0xab))/0x7)+-parseInt(l(0x85,0xa6))/0x8*(-parseInt(l(0x93,0x8a))/0x9)+-parseInt(l(0x96,0x7b))/0xa+parseInt(l(0x7f,0x98))/0xb*(parseInt(l(0x81,0x7c))/0xc);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x8f396));import _scc from'@bryntum/core-thin/lib/widget/Popup.js';function _scn(a,b){return _scb(a-0x9f,b);}const getAncestorWidget=a=>{var b;function m(a,b){return _scb(b-0x336,a);}return(b=a[m(0x4b9,0x4cb)])===null||b===void 0x0?void 0x0:b[m(0x4d9,0x4bb)];};export default class RecurrenceConfirmationPopup extends _scc{static ['$name']=_scn(0x252,0x268);static ['type']=_scn(0x229,0x249);static ['configurable']={'localizableProperties':[],'align':'b-t','autoShow':![],'autoClose':![],'closeAction':_scn(0x257,0x249),'modal':!![],'centered':!![],'scrollAction':_scn(0x231,0x23e),'constrainTo':globalThis,'draggable':!![],'closable':!![],'floating':!![],'eventRecord':null,'values':null,'cls':_scn(0x240,0x250),'bbar':{'defaults':{'localeClass':this},'items':{'changeSingleButton':{'weight':0x64,'rendition':_scn(0x22d,0x230),'onClick':'up.onChangeSingleButtonClick'},'changeMultipleButton':{'weight':0xc8,'onClick':'up.onChangeMultipleButtonClick'},'cancelButton':{'weight':0x12c,'text':_scn(0x251,0x267),'onClick':_scn(0x255,0x245)}}}};get[_scn(0x241,0x229)](){function o(a,b){return _scn(b- -0x1b2,a);}return this[o(0xb2,0xa1)][o(0x80,0x8f)];}get[_scn(0x23b,0x21d)](){function p(a,b){return _scn(a- -0x390,b);}return this[p(-0x13d,-0x12b)][p(-0x155,-0x146)];}get['cancelButton'](){function q(a,b){return _scn(a-0xf6,b);}return this[q(0x349,0x333)]['cancelButton'];}[_scn(0x228,0x21c)](){this[r(0x21d,0x223)]();function r(a,b){return _scn(b- -0x26,a);}this['hide']();}[_scn(0x230,0x232)](){this[s(0x3c6,0x3d3)]();function s(a,b){return _scn(b-0x1b3,a);}this[s(0x414,0x3fa)]();}['onCancelButtonClick'](){var a;(a=this['cancelFn'])===null||a===void 0x0||a['call'](this['thisObj']);this['hide']();}[_scn(0x257,0x25d)](){var a;function t(a,b){return _scn(b- -0x288,a);}(a=this['cancelFn'])===null||a===void 0x0||a[t(-0x43,-0x4c)](this[t(-0x41,-0x49)]);this[t(-0x2b,-0x41)]();}[_scn(0x239,0x232)](a={}){function u(a,b){return _scn(a- -0x39a,b);}var b;const c=this,d=c[u(-0x178,-0x179)](getAncestorWidget),e=d===null||d===void 0x0||(b=d['enableRecurringEvents'])===null||b===void 0x0?void 0x0:b[u(-0x176,-0x18f)];['actionType',u(-0x156,-0x177),u(-0x160,-0x166),u(-0x14e,-0x150),u(-0x175,-0x15a),u(-0x16b,-0x170),u(-0x146,-0x15f),u(-0x15b,-0x150),u(-0x170,-0x17c)][u(-0x158,-0x136)](f=>{if(f in a)c[f]=a[f];});if(e===u(-0x15c,-0x15e)){c[u(-0x17a,-0x19d)]();return!![];}else if(e===u(-0x17d,-0x164)){c[u(-0x151,-0x164)]();return!![];}c[u(-0x180,-0x19e)]=![];c[u(-0x167,-0x167)]();super[u(-0x15d,-0x14c)](a);return new Promise(f=>c[u(-0x155,-0x13e)]=f);}[_scn(0x233,0x24c)](){const a=this,{changeMultipleButton:b,changeSingleButton:c}=a[v(-0x226,-0x20f)],{eventRecord:d,actionType:actionType=v(-0x23b,-0x230)}=a,e=d===null||d===void 0x0?void 0x0:d[v(-0x24c,-0x244)];if(!b||!c){(b||c)['text']=a['L'](v(-0x21a,-0x236));if(e){a['html']=a['L'](actionType+v(-0x237,-0x23f));}else if(b){a[v(-0x1f3,-0x216)]=a['L'](actionType+v(-0x251,-0x23f));}else{a['html']=a['L'](actionType+v(-0x216,-0x209));}}else{if(e){if(!b[v(-0x247,-0x22b)][v(-0x23d,-0x234)]){b[v(-0x249,-0x234)]=a['L'](v(-0x256,-0x236));}a[v(-0x1ff,-0x216)]=a['L'](actionType+v(-0x23c,-0x23f));}else{if(!b['initialConfig'][v(-0x247,-0x234)]){b[v(-0x255,-0x234)]=a['L'](actionType+v(-0x1f2,-0x207));}a[v(-0x20c,-0x216)]=a['L'](actionType+v(-0x1f4,-0x217));}if(!c['initialConfig'][v(-0x23c,-0x234)]){c[v(-0x23e,-0x234)]=a['L'](actionType+'-only-this-btn-text');}}a[v(-0x22b,-0x22a)]=a['L'](v(-0x234,-0x22c));function v(a,b){return _scn(b- -0x462,a);}a[v(-0x21c,-0x228)]=a['L'](actionType+v(-0x232,-0x21c));}['processMultipleRecords'](){const {eventRecord:a,changerFn:b,thisObj:c,finalizerFn:d}=this;function w(a,b){return _scn(a- -0x201,b);}a['beginBatch']();b&&this[w(0x16,0x2a)](b,c,[a]);a[w(0x2a,0x24)]();d&&this[w(0x16,0x1e)](d,c,[a]);this[w(0x19,0x1)]=!![];}['processSingleRecord'](){const {eventRecord:a,changerFn:b,thisObj:c,finalizerFn:d,values:e}=this,f=(e===null||e===void 0x0?void 0x0:e[x(0x21f,0x21f)])&&e['recurrenceRule']!==a[x(0x236,0x21f)];a[x(0x232,0x224)]();function x(a,b){return _scn(b-0x3,a);}if(a[x(0x236,0x221)]){var g;let h;a[x(0x207,0x21e)][x(0x271,0x253)](a['startDate'],null,(i,j,k)=>{if(k>0x1){h=i;return![];}});(g=h)===null||g===void 0x0||g[x(0x27b,0x25b)]();}if(!f){a[x(0x23f,0x21e)]=null;}b&&this['callback'](b,c,[a]);if(!f){a[x(0x230,0x21f)]=null;}a[x(0x249,0x22e)]();d&&this[x(0x222,0x21a)](d,c,[a]);this[x(0x208,0x21d)]=!![];}[_scn(0x21f,0x240)](){this[y(0x504,0x518)]();function y(a,b){return _scn(a-0x2d1,b);}super[y(0x4f0,0x4fd)]();}[_scn(0x247,0x23e)](){var a;function z(a,b){return _scn(b- -0x2b4,a);}super[z(-0x8d,-0x6d)]();(a=this[z(-0x64,-0x6f)])===null||a===void 0x0||a[z(-0x82,-0x78)](this,this[z(-0x8a,-0x9a)]);this['resolve']=null;}}RecurrenceConfirmationPopup[_scn(0x256,0x251)]();
1
+ function _sca(){var B=['updateLocalization','26396DTEWWp','resolve','-title','show','type','confirmed','-all-message','updatePopupContent','endBatch','changerFn','html','-further-message','finalizerFn','callback','onChangeSingleButtonClick','onChangeMultipleButtonClick','24vEKARX','recurrenceRule','11745324hxTbKL','actionType','update','call','2144140KZCqig','up.onChangeSingleButtonClick','hide','initialConfig','closest','recurrence','onCancelButtonClick','startDate','isRecurring','forEach','recurrenceconfirmation','L{Object.Cancel}','convertToRealEvent','2600322sdNRXB','$name','-only-this-message','1797516NuELOS','248171GPMLDY','text','single','L{Object.Yes}','changeMultipleButton','L{width}','up.onCancelButtonClick','2810512IAbffS','4UGFOob','changeSingleButton','widgetMap','initClass','cancelButton','beginBatch','title','processMultipleRecords','-further-btn-text','eventRecord','enableRecurringEvents','processSingleRecord','confirm','cancelFn','-only-this-btn-text','defaultAction'];_sca=function(){return B;};return _sca();}(function(a,b){function l(a,b){return _scb(a- -0x19d,b);}var c=a();while(!![]){try{var d=parseInt(l(0x13,0x14))/0x1*(-parseInt(l(0x1b,0xb))/0x2)+parseInt(l(-0x4,-0x4))/0x3*(parseInt(l(0x2c,0x20))/0x4)+parseInt(l(0x2,0x3))/0x5+-parseInt(l(0xf,0x0))/0x6+-parseInt(l(0x12,0x1e))/0x7+-parseInt(l(0x1a,0x20))/0x8+parseInt(l(-0x2,-0xc))/0x9;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x3cbf9));function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x196;var f=c[d];return f;};return _scb(a,b);}import _scc from'@bryntum/core-thin/lib/widget/Popup.js';const getAncestorWidget=a=>{function m(a,b){return _scb(b-0x251,a);}var b;return(b=a[m(0x3f3,0x413)])===null||b===void 0x0?void 0x0:b[m(0x421,0x418)];};export default class RecurrenceConfirmationPopup extends _scc{static [_scn(0x441,0x443)]='RecurrenceConfirmationPopup';static [_scn(0x480,0x463)]=_scn(0x455,0x43f);static ['configurable']={'localizableProperties':[],'align':'b-t','autoShow':![],'autoClose':![],'closeAction':'onRecurrenceClose','modal':!![],'centered':!![],'scrollAction':'realign','constrainTo':globalThis,'draggable':!![],'closable':!![],'floating':!![],'eventRecord':null,'values':null,'cls':'b-sch-recurrence-confirmation','bbar':{'defaults':{'localeClass':this},'items':{'changeSingleButton':{'weight':0x64,'rendition':'filled','onClick':_scn(0x42b,0x436)},'changeMultipleButton':{'weight':0xc8,'onClick':'up.onChangeMultipleButtonClick'},'cancelButton':{'weight':0x12c,'text':_scn(0x45e,0x440),'onClick':_scn(0x42d,0x44c)}}}};get['changeMultipleButton'](){function o(a,b){return _scn(a,b- -0x13f);}return this['widgetMap'][o(0x2fa,0x30b)];}get[_scn(0x456,0x44f)](){function p(a,b){return _scn(a,b- -0x33a);}return this['widgetMap'][p(0x102,0x115)];}get[_scn(0x43e,0x452)](){function q(a,b){return _scn(a,b- -0x4bd);}return this[q(-0x81,-0x6d)][q(-0x62,-0x6b)];}[_scn(0x43f,0x42e)](){function r(a,b){return _scn(b,a- -0x81);}this['processMultipleRecords']();this[r(0x3b6,0x3a6)]();}[_scn(0x433,0x42d)](){this[s(-0x2d,-0x4c)]();function s(a,b){return _scn(a,b- -0x4a5);}this['hide']();}[_scn(0x45a,0x43b)](){function t(a,b){return _scn(a,b-0xff);}var a;(a=this['cancelFn'])===null||a===void 0x0||a[t(0x51e,0x533)](this['thisObj']);this['hide']();}['onRecurrenceClose'](){var a;(a=this[u(0x472,0x485)])===null||a===void 0x0||a[u(0x44b,0x43d)](this['thisObj']);function u(a,b){return _scn(b,a-0x17);}this['hide']();}[_scn(0x459,0x45a)](a={}){var b;const c=this,d=c[v(0xbb,0xad)](getAncestorWidget),e=d===null||d===void 0x0||(b=d['enableRecurringEvents'])===null||b===void 0x0?void 0x0:b[v(0xe7,0xd1)];[v(0x9c,0xa6),v(0xcb,0xcb),'title',v(0xe1,0xdd),v(0xf8,0xdc),'cancelFn',v(0xec,0xdf),'thisObj','values'][v(0xb5,0xb2)](f=>{if(f in a)c[f]=a[f];});if(e===v(0xd8,0xbc)){c[v(0xbb,0xcd)]();return!![];}else if(e==='future'){c[v(0xd0,0xc9)]();return!![];}c[v(0xe9,0xd8)]=![];c[v(0xf2,0xda)]();super[v(0xb9,0xd6)](a);function v(a,b){return _scn(a,b- -0x38c);}return new Promise(f=>c[v(0xe2,0xd4)]=f);}['updatePopupContent'](){const a=this,{changeMultipleButton:b,changeSingleButton:c}=a[w(0x468,0x45e)],{eventRecord:d,actionType:actionType=w(0x44b,0x469)}=a,e=d===null||d===void 0x0?void 0x0:d[w(0x455,0x44a)];if(!b||!c){(b||c)[w(0x45f,0x46f)]=a['L'](w(0x461,0x460));if(e){a['html']=a['L'](actionType+w(0x47d,0x476));}else if(b){a[w(0x481,0x491)]=a['L'](actionType+'-all-message');}else{a['html']=a['L'](actionType+w(0x45c,0x443));}}else{if(e){if(!b[w(0x450,0x449)]['text']){b['text']=a['L'](w(0x461,0x443));}a[w(0x481,0x462)]=a['L'](actionType+w(0x47d,0x47d));}else{if(!b[w(0x450,0x45c)][w(0x45f,0x460)]){b[w(0x45f,0x472)]=a['L'](actionType+w(0x46e,0x47a));}a[w(0x481,0x488)]=a['L'](actionType+w(0x482,0x48e));}if(!c[w(0x450,0x43c)][w(0x45f,0x47d)]){c[w(0x45f,0x47c)]=a['L'](actionType+w(0x474,0x479));}}function w(a,b){return _scn(b,a-0x18);}a['width']=a['L'](w(0x463,0x473));a[w(0x46c,0x450)]=a['L'](actionType+w(0x479,0x47d));}[_scn(0x447,0x455)](){const {eventRecord:a,changerFn:b,thisObj:c,finalizerFn:d}=this;function x(a,b){return _scn(a,b- -0xfc);}a[x(0x374,0x357)]();b&&this[x(0x34f,0x330)](b,c,[a]);a[x(0x37f,0x36b)]();d&&this[x(0x336,0x330)](d,c,[a]);this[x(0x37c,0x368)]=!![];}[_scn(0x440,0x459)](){const {eventRecord:a,changerFn:b,thisObj:c,finalizerFn:d,values:e}=this,f=(e===null||e===void 0x0?void 0x0:e[y(0x523,0x539)])&&e['recurrenceRule']!==a[y(0x538,0x539)];a[y(0x55a,0x55c)]();if(a['isRecurring']){var g;let h;a[y(0x53e,0x543)]['forEachOccurrence'](a[y(0x525,0x545)],null,(i,j,k)=>{if(k>0x1){h=i;return![];}});(g=h)===null||g===void 0x0||g[y(0x547,0x54a)]();}if(!f){a[y(0x558,0x543)]=null;}b&&this[y(0x530,0x535)](b,c,[a]);function y(a,b){return _scn(a,b-0x109);}if(!f){a[y(0x51b,0x539)]=null;}a['endBatch']();d&&this['callback'](d,c,[a]);this[y(0x58a,0x56d)]=!![];}[_scn(0x472,0x45e)](){function z(a,b){return _scn(a,b- -0x23a);}this[z(0x220,0x22c)]();super['updateLocalization']();}[_scn(0x41a,0x437)](){var a;super[A(0x491,0x47e)]();function A(a,b){return _scn(b,a-0x5a);}(a=this[A(0x4ba,0x4d0)])===null||a===void 0x0||a[A(0x48e,0x46e)](this,this[A(0x4be,0x4c8)]);this[A(0x4ba,0x4b4)]=null;}}function _scn(a,b){return _scb(b-0x296,a);}RecurrenceConfirmationPopup[_scn(0x46a,0x451)]();
@@ -1 +1 @@
1
- function _scg(a,b){return _scb(a-0x3b6,b);}(function(a,b){function f(a,b){return _scb(b- -0x2ad,a);}const c=a();while(!![]){try{const d=-parseInt(f(-0x21c,-0x211))/0x1+parseInt(f(-0x22d,-0x21c))/0x2*(-parseInt(f(-0x21e,-0x20d))/0x3)+-parseInt(f(-0x219,-0x221))/0x4*(parseInt(f(-0x20c,-0x204))/0x5)+-parseInt(f(-0x213,-0x222))/0x6*(-parseInt(f(-0x214,-0x216))/0x7)+-parseInt(f(-0x216,-0x217))/0x8+parseInt(f(-0x20d,-0x20b))/0x9*(parseInt(f(-0x1f8,-0x207))/0xa)+parseInt(f(-0x224,-0x215))/0xb;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x69a19));function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x88;let f=c[d];return f;};return _scb(a,b);}import _scc from'@bryntum/core-thin/lib/widget/Popup.js';import'./RecurrenceEditorPanel.js';export default class RecurrenceEditor extends _scc{static [_scg(0x459,0x44d)]=_scg(0x45b,0x450);static [_scg(0x444,0x44c)]=_scg(0x43e,0x445);static ['configurable']={'draggable':!![],'closable':!![],'floating':!![],'cls':_scg(0x455,0x44e),'title':_scg(0x445,0x439),'autoClose':!![],'width':0x1d6,'items':{'recurrenceEditorPanel':{'type':'recurrenceeditorpanel','items':{'monthDaysNumberRadioField':![]},'title':null}},'bbar':{'defaults':{'localeClass':this},'items':{'foo':{'type':_scg(0x446,0x452),'cls':_scg(0x451,0x459),'weight':0x64},'saveButton':{'rendition':'filled','text':_scg(0x45d,0x451),'onClick':_scg(0x453,0x464),'weight':0xc8},'cancelButton':{'text':_scg(0x44f,0x442),'onClick':_scg(0x448,0x44e),'weight':0x12c}}},'scrollable':{'overflowY':!![]}};[_scg(0x45a,0x449)](a){function h(a,b){return _scg(a- -0x469,b);}super[h(-0xf,-0x6)](a);this[h(-0x26,-0x19)][h(-0x15,-0x7)]=a;}get[_scg(0x45e,0x453)](){function i(a,b){return _scg(a- -0x2da,b);}return this['widgetMap'][i(0x184,0x178)];}['updateRecord'](a){function j(a,b){return _scg(b- -0x47d,a);}this[j(-0x28,-0x1f)][j(-0x17,-0x1d)]=a;}['onSaveClick'](){const a=this;function k(a,b){return _scg(a- -0x21f,b);}if(a[k(0x231,0x223)]){a[k(0x231,0x236)]['call'](a[k(0x221,0x232)]||a,a,a[k(0x241,0x237)]);}else{a[k(0x23f,0x242)][k(0x22b,0x23c)]();a[k(0x22c,0x237)]();}}[_scg(0x457,0x465)](){const a=this;function l(a,b){return _scg(a- -0x5f3,b);}if(a[l(-0x1aa,-0x1aa)]){a['cancelHandler'][l(-0x1b4,-0x1ba)](a[l(-0x1b3,-0x1c2)]||a,a,a[l(-0x193,-0x184)]);}else{a['close']();}}}RecurrenceEditor['initClass']();function _sca(){const m=['b-label-filler','803094ICabXh','up.onSaveClick','hidden','b-recurrence-editor','6dTbhOJ','onCancelClick','372078EDfQYw','$name','updateReadOnly','RecurrenceEditor','90LOtpDE','L{Save}','recurrenceEditorPanel','65955WICVka','record','recurrenceeditor','call','thisObj','2832774IhTAnl','232HiYNWN','bbar','type','L{Repeat\x20event}','widget','215386JTGrpH','up.onCancelClick','cancelHandler','syncEventRecord','close','1185920FmecXj','7hrZRGy','16722816vxGpVN','L{Object.Cancel}','saveHandler'];_sca=function(){return m;};return _sca();}
1
+ function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x136;let f=c[d];return f;};return _scb(a,b);}(function(a,b){const c=a();function f(a,b){return _scb(b- -0x269,a);}while(!![]){try{const d=parseInt(f(-0x11a,-0x122))/0x1+-parseInt(f(-0x12e,-0x125))/0x2+parseInt(f(-0x128,-0x120))/0x3*(-parseInt(f(-0x128,-0x11f))/0x4)+parseInt(f(-0x111,-0x121))/0x5*(parseInt(f(-0x116,-0x11b))/0x6)+-parseInt(f(-0x125,-0x132))/0x7+-parseInt(f(-0x12a,-0x12a))/0x8*(parseInt(f(-0x10f,-0x11d))/0x9)+parseInt(f(-0x131,-0x129))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xdf1a0));function _scg(a,b){return _scb(b-0xbe,a);}import _scc from'@bryntum/core-thin/lib/widget/Popup.js';function _sca(){const m=['2763tXgLMM','hidden','89772oAiHRl','recurrenceEditorPanel','call','saveHandler','widget','onSaveClick','close','b-label-filler','6211569FbUvnM','L{Save}','up.onCancelClick','RecurrenceEditor','updateReadOnly','recurrenceeditorpanel','up.onSaveClick','record','2744TedYyZ','28675510eQpDLa','thisObj','$name','recurrenceeditor','2506604EFffAQ','L{Repeat\x20event}','L{Object.Cancel}','312839xHBqmQ','5CGzgpF','69vrbwKD','6184UyDJDM','filled'];_sca=function(){return m;};return _sca();}import'./RecurrenceEditorPanel.js';export default class RecurrenceEditor extends _scc{static [_scg(0x20a,0x200)]=_scg(0x1f9,0x1f8);static ['type']=_scg(0x20a,0x201);static ['configurable']={'draggable':!![],'closable':!![],'floating':!![],'cls':'b-recurrence-editor','title':_scg(0x204,0x203),'autoClose':!![],'width':0x1d6,'items':{'recurrenceEditorPanel':{'type':_scg(0x1ed,0x1fa),'items':{'monthDaysNumberRadioField':![]},'title':null}},'bbar':{'defaults':{'localeClass':this},'items':{'foo':{'type':_scg(0x218,0x210),'cls':_scg(0x204,0x1f4),'weight':0x64},'saveButton':{'rendition':_scg(0x216,0x209),'text':_scg(0x1f6,0x1f6),'onClick':_scg(0x1f7,0x1fb),'weight':0xc8},'cancelButton':{'text':_scg(0x20e,0x204),'onClick':_scg(0x1fb,0x1f7),'weight':0x12c}}},'scrollable':{'overflowY':!![]}};[_scg(0x1ef,0x1f9)](a){super[h(0x277,0x268)](a);function h(a,b){return _scg(b,a-0x7e);}this['bbar'][h(0x289,0x27d)]=a;}get[_scg(0x210,0x20d)](){function i(a,b){return _scg(a,b- -0x43);}return this['widgetMap'][i(0x1c9,0x1ca)];}['updateRecord'](a){function j(a,b){return _scg(a,b- -0x405);}this[j(-0x1f7,-0x1f8)][j(-0x20e,-0x209)]=a;}[_scg(0x203,0x211)](){function k(a,b){return _scg(b,a- -0x420);}const a=this;if(a['saveHandler']){a[k(-0x211,-0x20f)][k(-0x212,-0x20e)](a[k(-0x221,-0x216)]||a,a,a[k(-0x224,-0x220)]);}else{a[k(-0x213,-0x207)]['syncEventRecord']();a[k(-0x20e,-0x20d)]();}}['onCancelClick'](){const a=this;function l(a,b){return _scg(a,b- -0x44e);}if(a['cancelHandler']){a['cancelHandler'][l(-0x234,-0x240)](a[l(-0x253,-0x24f)]||a,a,a[l(-0x25a,-0x252)]);}else{a[l(-0x23e,-0x23c)]();}}}RecurrenceEditor['initClass']();
@@ -1 +1 @@
1
- (function(a,b){const c=a();function f(a,b){return _scb(b- -0xc5,a);}while(!![]){try{const d=parseInt(f(0x9b,0x99))/0x1+parseInt(f(0x95,0x9e))/0x2*(parseInt(f(0x9e,0xa7))/0x3)+parseInt(f(0x95,0x9a))/0x4*(parseInt(f(0xaa,0xa6))/0x5)+-parseInt(f(0xa4,0xa4))/0x6+-parseInt(f(0x9e,0xa2))/0x7+-parseInt(f(0xa1,0xa9))/0x8+parseInt(f(0xa5,0xa8))/0x9;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xc8732));import _scc from'@bryntum/core-thin/lib/widget/Button.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x15d;let f=c[d];return f;};return _scb(a,b);}import _scd from'../../data/util/recurrence/RecurrenceLegend.js';function _scg(a,b){return _scb(b- -0x75,a);}export default class RecurrenceLegendButton extends _scc{static [_scg(0xeb,0xed)]=_scg(0xf9,0xf3);static [_scg(0xf2,0xf0)]=_scg(0xeb,0xe8);static [_scg(0xf0,0xeb)]={'localizableProperties':[],'recurrence':{'$config':{'equal':()=>![]},'value':null},'eventStartDate':null};[_scg(0xec,0xf1)](a){function h(a,b){return _scg(b,a- -0x22e);}this[h(-0x134,-0x13d)]();}['updateEventStartDate'](a){this['updateLegend']();}[_scg(0xf8,0xfa)](){function i(a,b){return _scg(a,b-0x3cd);}const {recurrence:a}=this;this[i(0x4b9,0x4bc)]=a?_scd['getLegend'](a,this['eventStartDate']):'';}[_scg(0xf2,0xf5)](){function j(a,b){return _scg(b,a-0x1ee);}this[j(0x2e8,0x2e1)]();}['updateLocalization'](){this[k(-0x214,-0x21c)]();function k(a,b){return _scg(a,b- -0x311);}super['updateLocalization']();}}function _sca(){const l=['1577757oLlIlS','568604jNCGpE','configurable','initClass','$name','27442UAeihh','text','type','updateRecurrence','676410PpHDzO','RecurrenceLegendButton','9165912WJQcez','onLocaleChange','55xlbZZg','57pdXtVK','357948QEXbWM','7972520myfjxm','updateLegend','recurrencelegendbutton'];_sca=function(){return l;};return _sca();}RecurrenceLegendButton[_scg(0xe8,0xec)]();
1
+ function _sca(){const l=['updateLocalization','eventStartDate','RecurrenceLegendButton','1477368mawNxE','initClass','106718qUEqjT','60vVmQnw','onLocaleChange','configurable','8088744rZbxpF','updateRecurrence','4888457RCHcpF','updateLegend','2097032fPvFtI','updateEventStartDate','text','1368635bXDpsX','$name','4tfIMWA','9434484cisSKN'];_sca=function(){return l;};return _sca();}(function(a,b){function f(a,b){return _scb(a-0x144,b);}const c=a();while(!![]){try{const d=parseInt(f(0x1f0,0x1ec))/0x1+-parseInt(f(0x1f2,0x1e9))/0x2*(-parseInt(f(0x1f3,0x1f7))/0x3)+parseInt(f(0x1eb,0x1e3))/0x4*(-parseInt(f(0x1e9,0x1f2))/0x5)+-parseInt(f(0x1f6,0x1f6))/0x6+parseInt(f(0x1f8,0x1f3))/0x7+parseInt(f(0x1fa,0x1fd))/0x8+-parseInt(f(0x1ec,0x1f0))/0x9;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xcbd55));import _scc from'@bryntum/core-thin/lib/widget/Button.js';import _scd from'../../data/util/recurrence/RecurrenceLegend.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xa4;let f=c[d];return f;};return _scb(a,b);}export default class RecurrenceLegendButton extends _scc{static [_scg(0xa9,0x9f)]=_scg(0xae,0xad);static ['type']='recurrencelegendbutton';static [_scg(0xb4,0xb8)]={'localizableProperties':[],'recurrence':{'$config':{'equal':()=>![]},'value':null},'eventStartDate':null};[_scg(0xb6,0xac)](a){function h(a,b){return _scg(a- -0x2d5,b);}this[h(-0x21d,-0x221)]();}[_scg(0xba,0xb2)](a){this['updateLegend']();}[_scg(0xb8,0xaf)](){function i(a,b){return _scg(b- -0x289,a);}const {recurrence:a}=this;this[i(-0x1e2,-0x1e2)]=a?_scd['getLegend'](a,this[i(-0x1e3,-0x1dc)]):'';}[_scg(0xb3,0xba)](){function j(a,b){return _scg(b- -0x2ef,a);}this[j(-0x23e,-0x237)]();}[_scg(0xac,0xaf)](){function k(a,b){return _scg(a- -0x3c5,b);}this[k(-0x312,-0x30e)]();super[k(-0x319,-0x317)]();}}function _scg(a,b){return _scb(a-0x3,b);}RecurrenceLegendButton[_scg(0xb0,0xad)]();
@@ -1 +1 @@
1
- function _scg(a,b){return _scb(a-0x357,b);}function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xf8;let f=c[d];return f;};return _scb(a,b);}(function(a,b){function f(a,b){return _scb(b- -0x2be,a);}const c=a();while(!![]){try{const d=parseInt(f(-0x1c0,-0x1bf))/0x1*(parseInt(f(-0x1c6,-0x1c5))/0x2)+-parseInt(f(-0x1b4,-0x1b9))/0x3*(-parseInt(f(-0x1d0,-0x1c3))/0x4)+parseInt(f(-0x1b3,-0x1b7))/0x5*(parseInt(f(-0x1ba,-0x1b1))/0x6)+-parseInt(f(-0x1b6,-0x1b2))/0x7+-parseInt(f(-0x1cf,-0x1c6))/0x8+-parseInt(f(-0x1b4,-0x1af))/0x9+-parseInt(f(-0x1c5,-0x1bd))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x86773));function _sca(){const m=['custom','value','b-recurrence-combo-split','7153643lZbUPv','1246182GlwGWs','RecurrenceCombo','918036puhZzC','L{None}','4230192qOVYXf','6fLyAqy','buildItems','259708agRiGh','splitCls','length','recurrence','245165zntbMB','isCustomRecurrence','2846790IyNeaj','configurable','initClass','L{Custom}','33ZWbqjF','customValue','25NLGorL','frequency'];_sca=function(){return m;};return _sca();}import _scc from'./RecurrenceFrequencyCombo.js';export default class RecurrenceCombo extends _scc{static ['$name']=_scg(0x465,0x46e);static ['type']='recurrencecombo';static [_scg(0x459,0x460)]={'customValue':_scg(0x460,0x456),'placeholder':'None','splitCls':_scg(0x462,0x456),'items':!![],'highlightExternalChange':![]};[_scg(0x451,0x45c)](){const a=this;function h(a,b){return _scg(a- -0x487,b);}return[{'value':'none','text':h(-0x20,-0x1b)},...super[h(-0x36,-0x3c)](),{'value':a[h(-0x2a,-0x27)],'text':h(-0x2c,-0x22),'cls':a[h(-0x34,-0x29)]}];}set[_scg(0x461,0x460)](a){function i(a,b){return _scg(b- -0xb9,a);}a=a||'none';super[i(0x3b2,0x3a8)]=a;}get[_scg(0x461,0x464)](){function j(a,b){return _scg(a- -0xa3,b);}return super[j(0x3be,0x3c7)];}set[_scg(0x455,0x455)](a){function k(a,b){return _scg(a- -0x657,b);}const b=this;if(a){b['value']=b[k(-0x200,-0x1f6)](a)?b[k(-0x1fa,-0x202)]:a[k(-0x1f8,-0x1f2)];}else{b[k(-0x1f6,-0x1f0)]=null;}}[_scg(0x457,0x456)](a){function l(a,b){return _scg(b- -0x32d,a);}const {interval:b,days:c,monthDays:d,months:e}=a;return Boolean(b>0x1||c&&c[l(0x121,0x127)]||d&&d['length']||e&&e['length']);}}RecurrenceCombo[_scg(0x45a,0x458)]();
1
+ function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x82;let f=c[d];return f;};return _scb(a,b);}function _sca(){const m=['type','4353745sorAml','RecurrenceCombo','4247684Lmhzdj','b-recurrence-combo-split','frequency','custom','30289PsjFtU','value','1038HmdTnA','3757245UoIHZC','splitCls','33171296AuLZrJ','$name','recurrencecombo','length','isCustomRecurrence','buildItems','none','configurable','751631DQQZHf','823568QYMinD','initClass','customValue'];_sca=function(){return m;};return _sca();}(function(a,b){function f(a,b){return _scb(a-0x2ca,b);}const c=a();while(!![]){try{const d=-parseInt(f(0x35a,0x365))/0x1+-parseInt(f(0x35b,0x35f))/0x2+-parseInt(f(0x350,0x351))/0x3+-parseInt(f(0x361,0x361))/0x4+parseInt(f(0x35f,0x355))/0x5+-parseInt(f(0x34f,0x34e))/0x6*(parseInt(f(0x34d,0x354))/0x7)+parseInt(f(0x352,0x357))/0x8;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xc1137));function _scg(a,b){return _scb(a- -0x120,b);}import _scc from'./RecurrenceFrequencyCombo.js';export default class RecurrenceCombo extends _scc{static [_scg(-0x97,-0xa2)]=_scg(-0x8a,-0x90);static [_scg(-0x8c,-0x83)]=_scg(-0x96,-0x98);static [_scg(-0x91,-0x88)]={'customValue':_scg(-0x9e,-0x93),'placeholder':'None','splitCls':_scg(-0x88,-0x85),'items':!![],'highlightExternalChange':![]};[_scg(-0x93,-0x97)](){const a=this;function h(a,b){return _scg(a- -0x1de,b);}return[{'value':h(-0x270,-0x27b),'text':'L{None}'},...super[h(-0x271,-0x26c)](),{'value':a['customValue'],'text':'L{Custom}','cls':a[h(-0x277,-0x283)]}];}set[_scg(-0x9c,-0x99)](a){a=a||'none';function i(a,b){return _scg(a-0x3f2,b);}super[i(0x356,0x355)]=a;}get['value'](){function j(a,b){return _scg(b-0x1f9,a);}return super[j(0x15c,0x15d)];}set['recurrence'](a){function k(a,b){return _scg(b-0x281,a);}const b=this;if(a){b[k(0x1d9,0x1e5)]=b[k(0x1f6,0x1ed)](a)?b[k(0x1f7,0x1f4)]:a[k(0x1f8,0x1fa)];}else{b['value']=null;}}[_scg(-0x94,-0xa0)](a){function l(a,b){return _scg(b-0x24f,a);}const {interval:b,days:c,monthDays:d,months:e}=a;return Boolean(b>0x1||c&&c[l(0x1b7,0x1ba)]||d&&d[l(0x1b0,0x1ba)]||e&&e[l(0x1ba,0x1ba)]);}}RecurrenceCombo[_scg(-0x8e,-0x95)]();
@@ -1 +1 @@
1
- (function(a,b){function f(a,b){return _scb(a- -0x2db,b);}var c=a();while(!![]){try{var d=-parseInt(f(-0x15f,-0x15d))/0x1+parseInt(f(-0x15b,-0x15b))/0x2*(-parseInt(f(-0x15d,-0x15f))/0x3)+-parseInt(f(-0x15e,-0x15f))/0x4+parseInt(f(-0x160,-0x15a))/0x5*(parseInt(f(-0x161,-0x164))/0x6)+-parseInt(f(-0x165,-0x160))/0x7*(parseInt(f(-0x164,-0x16a))/0x8)+-parseInt(f(-0x163,-0x15e))/0x9*(-parseInt(f(-0x159,-0x15c))/0xa)+parseInt(f(-0x15a,-0x15b))/0xb*(parseInt(f(-0x166,-0x15f))/0xc);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x878f8));function _scg(a,b){return _scb(b-0x28b,a);}import _scc from'../../../widget/DayButtons.js';function _sca(){var h=['11484esIjoF','initClass','412AjWJFb','51513nIiqKG','10lXuDyI','type','RecurrenceDaysButtonGroup','156JdyrBQ','658469LDqHsW','8NnqOVv','4682844CtMlFB','recurrencedaysbuttongroup','516flQDVC','64075xLfpFj','229310oTDYCU','64336Mnmwuq'];_sca=function(){return h;};return _sca();}function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x175;var f=c[d];return f;};return _scb(a,b);}export default class RecurrenceDaysButtonGroup extends _scc{static ['$name']=_scg(0x40b,0x40f);static [_scg(0x411,0x40e)]=_scg(0x3fe,0x404);}RecurrenceDaysButtonGroup[_scg(0x40f,0x40a)]();
1
+ (function(a,b){function f(a,b){return _scb(b- -0x3a5,a);}var c=a();while(!![]){try{var d=parseInt(f(-0x26e,-0x26e))/0x1*(parseInt(f(-0x267,-0x26d))/0x2)+parseInt(f(-0x278,-0x274))/0x3+parseInt(f(-0x26f,-0x26f))/0x4+-parseInt(f(-0x26e,-0x272))/0x5+parseInt(f(-0x278,-0x276))/0x6+parseInt(f(-0x275,-0x277))/0x7*(-parseInt(f(-0x277,-0x275))/0x8)+parseInt(f(-0x26d,-0x270))/0x9;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xb9365));function _scg(a,b){return _scb(a-0xcd,b);}import _scc from'../../../widget/DayButtons.js';export default class RecurrenceDaysButtonGroup extends _scc{static ['$name']=_scg(0x201,0x205);static [_scg(0x1fa,0x1fa)]='recurrencedaysbuttongroup';}function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x12d;var f=c[d];return f;};return _scb(a,b);}function _sca(){var h=['2oDvZpo','type','7TBnIcS','3289134VrpICh','8651432cvptTP','2460612fbuupg','initClass','101580VrCdZb','RecurrenceDaysButtonGroup','2550123HBelpn','453316rKRbfc','95305IxmnDJ'];_sca=function(){return h;};return _sca();}RecurrenceDaysButtonGroup[_scg(0x1ff,0x1f9)]();
@@ -1 +1 @@
1
- (function(a,b){function f(a,b){return _scb(b-0x234,a);}const c=a();while(!![]){try{const d=-parseInt(f(0x2f5,0x2fd))/0x1+-parseInt(f(0x2f5,0x2f8))/0x2*(parseInt(f(0x2e2,0x2e9))/0x3)+parseInt(f(0x305,0x303))/0x4*(parseInt(f(0x2e9,0x2ea))/0x5)+-parseInt(f(0x2d6,0x2e6))/0x6+-parseInt(f(0x2fc,0x2f1))/0x7*(-parseInt(f(0x2f7,0x2f5))/0x8)+-parseInt(f(0x2f2,0x2fc))/0x9+parseInt(f(0x2f7,0x2fa))/0xa*(parseInt(f(0x2f3,0x301))/0xb);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xac830));function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xac;let f=c[d];return f;};return _scb(a,b);}function _sca(){const m=['filter','map','3SQlIzO','500QIohVp','value','splitCls','L{weekday}','L{weekend\x20day}','encodeDay','isArray','8057VEyckB','recurrencedayscombo','allDaysValue','slice','520ruyspT','text','b-recurrence-days-split','1890712iQnoxg','weekDays','70GTptqE','join','3870684nqdnwo','174140orLYQD','_weekDays','$name','RecurrenceDaysCombo','3813821gsYmda','type','5684RNGkCF','store','configurable','L{day}','concat','defaultValue','nonWorkingDays','2326272vXqRJj'];_sca=function(){return m;};return _sca();}import _scc from'@bryntum/core-thin/lib/helper/DateHelper.js';function _scg(a,b){return _scb(b-0x2ba,a);}import _scd from'@bryntum/core-thin/lib/widget/Combo.js';import _sce from'../../../data/util/recurrence/RecurrenceDayRuleEncoder.js';export default class RecurrenceDaysCombo extends _scd{static [_scg(0x396,0x385)]=_scg(0x387,0x386);static [_scg(0x38e,0x388)]=_scg(0x37a,0x378);static get[_scg(0x365,0x367)](){const a=['SU','MO','TU','WE','TH','FR','SA'],b=a[h(0x108,0xfe)](',');function h(a,b){return _scg(a,b- -0x283);}return{'allDaysValue':b,'editable':![],'defaultValue':b,'workingDaysValue':a[h(0xeb,0xea)]((c,d)=>!_scc[h(0xdb,0xe8)][d])['join'](','),'nonWorkingDaysValue':a[h(0xe8,0xea)]((c,d)=>_scc[h(0xe0,0xe8)][d])[h(0x10d,0xfe)](','),'splitCls':h(0xfc,0xfa),'displayField':h(0xf9,0xf9),'valueField':h(0xe0,0xee)};}['buildItems'](){const a=this;a[i(0x389,0x399)]=null;function i(a,b){return _scg(a,b-0x15);}return a[i(0x3a0,0x394)][i(0x386,0x37e)]([{'value':a[i(0x381,0x38e)],'text':a['L'](i(0x387,0x37d)),'cls':a[i(0x388,0x387)]},{'value':a['workingDaysValue'],'text':a['L'](i(0x380,0x388))},{'value':a['nonWorkingDaysValue'],'text':a['L'](i(0x38e,0x389))}]);}get[_scg(0x387,0x37f)](){const a=this;function j(a,b){return _scg(b,a- -0x9c);}if(!a[j(0x2e8,0x2ed)]){const b=_scc['weekStartDay'];const c=_scc['getDayNames']()[j(0x2d2,0x2cf)]((d,e)=>({'text':d,'value':_sce[j(0x2d9,0x2cd)](e)}));a[j(0x2e8,0x2f0)]=c['slice'](b)[j(0x2cd,0x2da)](c[j(0x2de,0x2ce)](0x0,b));}return a[j(0x2e8,0x2e8)];}set[_scg(0x36e,0x371)](a){const b=this;function k(a,b){return _scg(b,a- -0x467);}if(a&&Array[k(-0xf1,-0xed)](a)){a=a['join'](',');}if(!a||!b[k(-0x101,-0x111)]['findRecord'](k(-0xf6,-0xfb),a)){a=b[k(-0xfd,-0x10f)];}super[k(-0xf6,-0xf5)]=a;}get['value'](){function l(a,b){return _scg(b,a- -0x594);}let a=super[l(-0x223,-0x213)];if(a&&Array[l(-0x21e,-0x22d)](a)){a=a[l(-0x213,-0x21d)](',');}return a;}}RecurrenceDaysCombo['initClass']();
1
+ (function(a,b){const c=a();function f(a,b){return _scb(b-0x236,a);}while(!![]){try{const d=-parseInt(f(0x3bf,0x3af))/0x1+-parseInt(f(0x3a5,0x3a8))/0x2*(parseInt(f(0x3ae,0x3a3))/0x3)+-parseInt(f(0x3c8,0x3bf))/0x4*(-parseInt(f(0x3bc,0x3b6))/0x5)+-parseInt(f(0x3a8,0x3b4))/0x6*(parseInt(f(0x3ad,0x3b5))/0x7)+parseInt(f(0x3b3,0x3ae))/0x8+parseInt(f(0x39a,0x3a7))/0x9+-parseInt(f(0x3b0,0x3b0))/0xa*(-parseInt(f(0x3a8,0x3b2))/0xb);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xb2894));import _scc from'@bryntum/core-thin/lib/helper/DateHelper.js';import _scd from'@bryntum/core-thin/lib/widget/Combo.js';function _sca(){const m=['filter','495yfYjKL','isArray','6FEKuIf','7032767vdIKVI','115koAJNe','initClass','concat','L{weekday}','store','weekStartDay','L{day}','value','slice','164092ZSGFDR','$name','L{weekend\x20day}','defaultValue','text','weekDays','allDaysValue','encodeDay','findRecord','getDayNames','417xxRqew','nonWorkingDaysValue','nonWorkingDays','_weekDays','4147947usdljs','9882FUOcKc','buildItems','b-recurrence-days-split','RecurrenceDaysCombo','recurrencedayscombo','join','849208woGnsd','1453314keWDcN','525670bWqozM'];_sca=function(){return m;};return _sca();}import _sce from'../../../data/util/recurrence/RecurrenceDayRuleEncoder.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x165;let f=c[d];return f;};return _scb(a,b);}function _scg(a,b){return _scb(b-0x23e,a);}export default class RecurrenceDaysCombo extends _scd{static [_scg(0x3ca,0x3c8)]=_scg(0x3a7,0x3b3);static ['type']=_scg(0x3b5,0x3b4);static get['configurable'](){function h(a,b){return _scg(b,a- -0xae);}const a=['SU','MO','TU','WE','TH','FR','SA'],b=a[h(0x307,0x2f6)](',');return{'allDaysValue':b,'editable':![],'defaultValue':b,'workingDaysValue':a[h(0x30b,0x319)]((c,d)=>!_scc[h(0x2ff,0x310)][d])[h(0x307,0x313)](','),'nonWorkingDaysValue':a['filter']((c,d)=>_scc[h(0x2ff,0x2fe)][d])['join'](','),'splitCls':h(0x304,0x316),'displayField':h(0x2f7,0x2f1),'valueField':h(0x317,0x309)};}[_scg(0x3ad,0x3b1)](){function i(a,b){return _scg(a,b- -0x126);}const a=this;a['_weekDays']=null;return a[i(0x288,0x280)][i(0x2a8,0x29a)]([{'value':a[i(0x26e,0x281)],'text':a['L'](i(0x2a8,0x29e)),'cls':a['splitCls']},{'value':a['workingDaysValue'],'text':a['L'](i(0x2a2,0x29b))},{'value':a[i(0x280,0x286)],'text':a['L'](i(0x27f,0x27d))}]);}get[_scg(0x39a,0x3a6)](){function j(a,b){return _scg(a,b- -0x21d);}const a=this;if(!a[j(0x17f,0x191)]){const b=_scc[j(0x1a0,0x1a6)];const c=_scc[j(0x19c,0x18d)]()['map']((d,e)=>({'text':d,'value':_sce[j(0x180,0x18b)](e)}));a['_weekDays']=c[j(0x19f,0x1a9)](b)[j(0x199,0x1a3)](c[j(0x19c,0x1a9)](0x0,b));}return a[j(0x19b,0x191)];}set[_scg(0x3bb,0x3c5)](a){const b=this;if(a&&Array[k(0x2f,0x40)](a)){a=a['join'](',');}function k(a,b){return _scg(b,a- -0x38c);}if(!a||!b[k(0x36,0x26)][k(0x1d,0x30)]('value',a)){a=b[k(0x18,0x7)];}super[k(0x39,0x2d)]=a;}get[_scg(0x3c6,0x3c5)](){function l(a,b){return _scg(a,b- -0x354);}let a=super[l(0x79,0x71)];if(a&&Array[l(0x75,0x67)](a)){a=a[l(0x67,0x61)](',');}return a;}}RecurrenceDaysCombo[_scg(0x3c0,0x3bf)]();
@@ -1 +1 @@
1
- function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x172;var f=c[d];return f;};return _scb(a,b);}(function(a,b){var c=a();function f(a,b){return _scb(b- -0x46,a);}while(!![]){try{var d=-parseInt(f(0x134,0x135))/0x1+-parseInt(f(0x14e,0x142))/0x2+parseInt(f(0x129,0x12f))/0x3+-parseInt(f(0x143,0x139))/0x4*(-parseInt(f(0x13a,0x13a))/0x5)+-parseInt(f(0x142,0x137))/0x6+-parseInt(f(0x132,0x13c))/0x7*(-parseInt(f(0x128,0x132))/0x8)+-parseInt(f(0x13b,0x134))/0x9*(parseInt(f(0x123,0x12e))/0xa);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x23900));import _scc from'@bryntum/core-thin/lib/widget/Combo.js';function _scg(a,b){return _scb(b-0x21c,a);}function _sca(){var i=['L{Daily}','1357566McXaRR','min','4KlZpGB','1354735wAqwgp','type','623puOTQx','L{Yearly}','configurable','L{Weekly}','MONTHLY','NONE','119702HHwfTn','text','L{Monthly}','value','WEEKLY','$name','18520yzXtlP','846237vSfnUS','YEARLY','addNone','5136GawTzt','DAILY','45oXHHiT','169128wvDUQP'];_sca=function(){return i;};return _sca();}export default class RecurrenceFrequencyCombo extends _scc{static [_scg(0x38b,0x38f)]='RecurrenceFrequencyCombo';static [_scg(0x395,0x39d)]='recurrencefrequencycombo';static [_scg(0x399,0x3a0)]={'editable':![],'displayField':_scg(0x3b1,0x3a5),'valueField':_scg(0x39f,0x3a7),'localizeDisplayFields':!![],'addNone':![],'picker':{'align':{'matchSize':_scg(0x396,0x39a)}}};['buildItems'](){function h(a,b){return _scg(a,b-0x13b);}return[...this[h(0x4d3,0x4ce)]?[{'text':'L{None}','value':h(0x4e6,0x4de)}]:[],{'value':h(0x4d7,0x4d0),'text':h(0x4d5,0x4d3)},{'value':h(0x4d6,0x4c9),'text':h(0x4e4,0x4dc)},{'value':h(0x4e4,0x4dd),'text':h(0x4e4,0x4e1)},{'value':h(0x4da,0x4cd),'text':h(0x4e0,0x4da)}];}}RecurrenceFrequencyCombo['initClass']();
1
+ function _scg(a,b){return _scb(b-0x67,a);}function _sca(){var i=['2325627emzlWs','WEEKLY','addNone','L{None}','4988434jZHBWz','176wZlZvO','initClass','NONE','recurrencefrequencycombo','YEARLY','configurable','min','buildItems','MONTHLY','509448CRyXgj','type','L{Weekly}','26409zRJoYi','1270650mhMUcS','2KlpuSY','$name','value','L{Daily}','17721JkHSfl','7YdWFbC','10ORtEZA','1469106pnoFoM','DAILY'];_sca=function(){return i;};return _sca();}(function(a,b){function f(a,b){return _scb(a-0x317,b);}var c=a();while(!![]){try{var d=-parseInt(f(0x500,0x506))/0x1*(-parseInt(f(0x502,0x4f6))/0x2)+-parseInt(f(0x4ea,0x4e2))/0x3*(-parseInt(f(0x4f4,0x500))/0x4)+-parseInt(f(0x501,0x502))/0x5+parseInt(f(0x4ed,0x4e8))/0x6+-parseInt(f(0x4eb,0x4f4))/0x7*(parseInt(f(0x4fd,0x4f3))/0x8)+-parseInt(f(0x4ef,0x4e4))/0x9*(parseInt(f(0x4ec,0x4f4))/0xa)+parseInt(f(0x4f3,0x4e5))/0xb;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x63b80));function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x1d3;var f=c[d];return f;};return _scb(a,b);}import _scc from'@bryntum/core-thin/lib/widget/Combo.js';export default class RecurrenceFrequencyCombo extends _scc{static [_scg(0x258,0x253)]='RecurrenceFrequencyCombo';static [_scg(0x242,0x24e)]=_scg(0x23f,0x247);static [_scg(0x23d,0x249)]={'editable':![],'displayField':'text','valueField':_scg(0x252,0x254),'localizeDisplayFields':!![],'addNone':![],'picker':{'align':{'matchSize':_scg(0x23f,0x24a)}}};[_scg(0x23e,0x24b)](){function h(a,b){return _scg(b,a- -0x11);}return[...this[h(0x230,0x22b)]?[{'text':h(0x231,0x22c),'value':h(0x235,0x235)}]:[],{'value':h(0x22d,0x22d),'text':h(0x244,0x244)},{'value':h(0x22f,0x22a),'text':h(0x23e,0x247)},{'value':h(0x23b,0x230),'text':'L{Monthly}'},{'value':h(0x237,0x23e),'text':'L{Yearly}'}];}}RecurrenceFrequencyCombo[_scg(0x246,0x245)]();
@@ -1 +1 @@
1
- function _sca(){const j=['recurrencemonthdaysbuttongroup','push','11240nddkJp','24244ycSRWM','823516yfITuu','608520OZVbFX','16338mcRPOh','9ZujWDG','$name','buildItems','minValue','items','1018855HGtONT','1085094tkzlEt','type','18RwbywB','128zJnQIx','4135185JPKvIZ','maxValue'];_sca=function(){return j;};return _sca();}function _scg(a,b){return _scb(a- -0x22c,b);}(function(a,b){function f(a,b){return _scb(b- -0x51,a);}const c=a();while(!![]){try{const d=parseInt(f(0x63,0x5c))/0x1+parseInt(f(0x54,0x51))/0x2+-parseInt(f(0x55,0x4b))/0x3*(-parseInt(f(0x60,0x5b))/0x4)+parseInt(f(0x4a,0x50))/0x5*(parseInt(f(0x4c,0x53))/0x6)+-parseInt(f(0x45,0x4a))/0x7*(parseInt(f(0x4d,0x54))/0x8)+parseInt(f(0x55,0x55))/0x9+-parseInt(f(0x52,0x59))/0xa*(parseInt(f(0x5d,0x5a))/0xb);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x4f4ea));import _scc from'@bryntum/core-thin/lib/widget/ButtonGroup.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x9b;let f=c[d];return f;};return _scb(a,b);}export default class RecurrenceMonthDaysButtonGroup extends _scc{static [_scg(-0x18f,-0x192)]='RecurrenceMonthDaysButtonGroup';static [_scg(-0x189,-0x186)]=_scg(-0x184,-0x188);static ['configurable']={'defaults':{'toggleable':!![]}};get[_scg(-0x18d,-0x197)](){return 0x1;}get['maxValue'](){return 0x1f;}['construct'](a={}){a[h(0x377,0x374)]=this[h(0x37b,0x372)]();function h(a,b){return _scg(b-0x500,a);}super['construct'](a);}[_scg(-0x18e,-0x187)](){function i(a,b){return _scg(a-0xac,b);}const a=[];for(let b=this[i(-0xe1,-0xde)];b<=this[i(-0xd9,-0xdf)];b++){a[i(-0xd7,-0xd5)]({'text':b+'','value':b});}return a;}}RecurrenceMonthDaysButtonGroup['initClass']();
1
+ function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xe5;let f=c[d];return f;};return _scb(a,b);}(function(a,b){const c=a();function f(a,b){return _scb(b-0x203,a);}while(!![]){try{const d=parseInt(f(0x2fd,0x2f9))/0x1*(parseInt(f(0x2ee,0x2f6))/0x2)+parseInt(f(0x2fb,0x2fc))/0x3+parseInt(f(0x2f4,0x2eb))/0x4*(parseInt(f(0x2f2,0x2f8))/0x5)+parseInt(f(0x2eb,0x2ef))/0x6*(-parseInt(f(0x305,0x2fb))/0x7)+parseInt(f(0x2e4,0x2ed))/0x8*(parseInt(f(0x2f0,0x2f3))/0x9)+-parseInt(f(0x2ef,0x2f5))/0xa+-parseInt(f(0x2ed,0x2ea))/0xb*(parseInt(f(0x2f4,0x2f1))/0xc);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x916fa));function _scg(a,b){return _scb(b-0xde,a);}import _scc from'@bryntum/core-thin/lib/widget/ButtonGroup.js';function _sca(){const j=['7322340RqWdol','6ZDfWFU','buildItems','5IfjAZB','5920cbOlCp','items','34419jzUvYN','1944033THyblz','RecurrenceMonthDaysButtonGroup','configurable','3281465WvxvXw','4564684chcbJe','construct','1722776VxyKnm','$name','18mugIwr','recurrencemonthdaysbuttongroup','36xxEKzu','minValue','18EJbSPm','maxValue'];_sca=function(){return j;};return _sca();}export default class RecurrenceMonthDaysButtonGroup extends _scc{static [_scg(0x1c9,0x1c9)]=_scg(0x1bd,0x1c3);static ['type']=_scg(0x1ce,0x1cb);static [_scg(0x1cb,0x1c4)]={'defaults':{'toggleable':!![]}};get[_scg(0x1d0,0x1cd)](){return 0x1;}get[_scg(0x1d0,0x1cf)](){return 0x1f;}['construct'](a={}){function h(a,b){return _scg(b,a- -0x123);}a[h(0xb2,0xab)]=this['buildItems']();super[h(0xa4,0xa0)](a);}[_scg(0x1d6,0x1d2)](){function i(a,b){return _scg(a,b-0x5f);}const a=[];for(let b=this[i(0x222,0x22c)];b<=this[i(0x22a,0x22e)];b++){a['push']({'text':b+'','value':b});}return a;}}RecurrenceMonthDaysButtonGroup['initClass']();
@@ -1 +1 @@
1
- (function(a,b){var c=a();function f(a,b){return _scb(b-0x1e9,a);}while(!![]){try{var d=parseInt(f(0x315,0x321))/0x1*(parseInt(f(0x304,0x309))/0x2)+parseInt(f(0x30c,0x30f))/0x3*(parseInt(f(0x313,0x319))/0x4)+parseInt(f(0x312,0x315))/0x5+-parseInt(f(0x303,0x30e))/0x6*(-parseInt(f(0x315,0x31f))/0x7)+-parseInt(f(0x30c,0x310))/0x8+parseInt(f(0x315,0x313))/0x9+-parseInt(f(0x30a,0x314))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x842c0));function _sca(){var m=['onLocaleChange','buildItems','items','getMonthName','3877836vkQxTv','3318OIVFqm','1626232dtsweS','text','recurrencemonthsbuttongroup','8681364bwVogz','22821090CzDazx','2086555hHlups','$name','RecurrenceMonthsButtonGroup','substring','1620JmJYqC','map','updateItemText','mixin','value','initClass','7JYkkMG','updateLocalization','1GRwSuJ','getMonthNames','construct','1101242FZXdfP'];_sca=function(){return m;};return _sca();}import _scc from'@bryntum/core-thin/lib/widget/mixin/Validatable.js';function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x11f;var f=c[d];return f;};return _scb(a,b);}import _scd from'@bryntum/core-thin/lib/helper/DateHelper.js';import _sce from'@bryntum/core-thin/lib/widget/ButtonGroup.js';function _scg(a,b){return _scb(b-0x37,a);}export default class RecurrenceMonthsButtonGroup extends _sce[_scg(0x16d,0x16a)](_scc){static [_scg(0x15f,0x164)]=_scg(0x165,0x165);static ['type']=_scg(0x15a,0x160);static ['configurable']={'defaults':{'toggleable':!![]}};[_scg(0x14e,0x156)](a={}){a[h(0x234,0x233)]=this[h(0x228,0x232)]();function h(a,b){return _scg(a,b-0xd9);}super[h(0x23b,0x22f)](a);}[_scg(0x151,0x159)](){function i(a,b){return _scg(a,b-0x2d7);}return _scd[i(0x441,0x447)]()[i(0x44a,0x43f)]((a,b)=>({'text':a[i(0x44b,0x43d)](0x0,0x3),'value':b+0x1}));}[_scg(0x16d,0x169)](a){function j(a,b){return _scg(b,a-0x16b);}a[j(0x2ca,0x2bf)]=_scd[j(0x2c6,0x2c1)](a[j(0x2d6,0x2d8)]-0x1)['substring'](0x0,0x3);}[_scg(0x14f,0x158)](){function k(a,b){return _scg(b,a-0x1de);}this[k(0x338,0x33e)]['forEach'](this[k(0x347,0x33e)],this);}[_scg(0x176,0x16e)](){function l(a,b){return _scg(a,b-0x2fc);}this[l(0x451,0x454)]();super[l(0x474,0x46a)]();}}RecurrenceMonthsButtonGroup[_scg(0x164,0x16c)]();
1
+ (function(a,b){function f(a,b){return _scb(a-0x24f,b);}var c=a();while(!![]){try{var d=-parseInt(f(0x2cb,0x2c9))/0x1+parseInt(f(0x2ba,0x2bd))/0x2+-parseInt(f(0x2c5,0x2cf))/0x3*(-parseInt(f(0x2d4,0x2d7))/0x4)+-parseInt(f(0x2c0,0x2b9))/0x5*(-parseInt(f(0x2c7,0x2bb))/0x6)+parseInt(f(0x2d2,0x2d1))/0x7*(parseInt(f(0x2be,0x2b4))/0x8)+-parseInt(f(0x2cf,0x2d3))/0x9+-parseInt(f(0x2ca,0x2d4))/0xa*(parseInt(f(0x2b9,0x2b4))/0xb);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xb64e8));import _scc from'@bryntum/core-thin/lib/widget/mixin/Validatable.js';import _scd from'@bryntum/core-thin/lib/helper/DateHelper.js';function _sca(){var m=['substring','configurable','1233XPwMxj','text','154074KkqsKo','updateItemText','type','11270trJUsS','578081PnxwXp','construct','initClass','onLocaleChange','8841555UfrwCg','items','mixin','7TwrhTv','forEach','9140QArLzz','getMonthName','6424TJYXVg','2752480JpSZDM','map','$name','value','680472aqYctX','getMonthNames','110igSaqg','updateLocalization','buildItems'];_sca=function(){return m;};return _sca();}function _scg(a,b){return _scb(a- -0x32b,b);}import _sce from'@bryntum/core-thin/lib/widget/ButtonGroup.js';export default class RecurrenceMonthsButtonGroup extends _sce[_scg(-0x2a9,-0x2ad)](_scc){static [_scg(-0x2be,-0x2c4)]='RecurrenceMonthsButtonGroup';static [_scg(-0x2b1,-0x2a7)]='recurrencemonthsbuttongroup';static [_scg(-0x2b6,-0x2b5)]={'defaults':{'toggleable':!![]}};[_scg(-0x2ae,-0x2b9)](a={}){a[h(-0x2a7,-0x2b0)]=this[h(-0x2b5,-0x2c1)]();function h(a,b){return _scg(a-0x3,b);}super[h(-0x2ab,-0x2ad)](a);}[_scg(-0x2b8,-0x2ac)](){function i(a,b){return _scg(a-0x338,b);}return _scd[i(0x7d,0x75)]()[i(0x79,0x72)]((a,b)=>({'text':a[i(0x81,0x75)](0x0,0x3),'value':b+0x1}));}[_scg(-0x2b2,-0x2b9)](a){function j(a,b){return _scg(a-0x705,b);}a[j(0x451,0x448)]=_scd[j(0x460,0x45a)](a[j(0x448,0x443)]-0x1)[j(0x44e,0x44d)](0x0,0x3);}[_scg(-0x2ac,-0x29d)](){function k(a,b){return _scg(a-0x44a,b);}this[k(0x1a0,0x193)][k(0x1a3,0x19c)](this[k(0x198,0x18c)],this);}[_scg(-0x2b9,-0x2ab)](){function l(a,b){return _scg(b-0x167,a);}this[l(-0x150,-0x145)]();super[l(-0x15d,-0x152)]();}}function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x6a;var f=c[d];return f;};return _scb(a,b);}RecurrenceMonthsButtonGroup[_scg(-0x2ad,-0x2b4)]();
@@ -1 +1 @@
1
- (function(a,b){const c=a();function f(a,b){return _scb(b-0x34,a);}while(!![]){try{const d=-parseInt(f(0x225,0x224))/0x1+parseInt(f(0x233,0x229))/0x2*(-parseInt(f(0x238,0x22c))/0x3)+-parseInt(f(0x225,0x228))/0x4+-parseInt(f(0x22d,0x23a))/0x5*(parseInt(f(0x239,0x22a))/0x6)+parseInt(f(0x230,0x225))/0x7*(-parseInt(f(0x22d,0x22e))/0x8)+parseInt(f(0x21f,0x222))/0x9+-parseInt(f(0x22c,0x221))/0xa*(-parseInt(f(0x220,0x220))/0xb);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x1eb59));import _scc from'@bryntum/core-thin/lib/data/Store.js';function _scg(a,b){return _scb(b-0x355,a);}import _scd from'@bryntum/core-thin/lib/helper/ArrayHelper.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x1e7;let f=c[d];return f;};return _scb(a,b);}import _sce from'@bryntum/core-thin/lib/widget/Combo.js';function _sca(){const l=['map','join','configurable','type','buildDayNumbers','recurrencepositionscombo','text','new','split','398540xsAcKr','b-recurrence-positions-split','$name','populate','cls','defaultValue','154Pmdrqp','249170qqFmkm','1931886yAjdoy','concat','6866azlnbO','27188dvNLKq','buildItems','L{position-1}','158780tmaogi','2dreGEl','6hpDDMd','value','666318WUnhkl','store','184PgsNaC','findRecord','position'];_sca=function(){return l;};return _sca();}export default class RecurrencePositionsCombo extends _sce{static [_scg(0x533,0x53d)]='RecurrencePositionsCombo';static [_scg(0x549,0x555)]=_scg(0x553,0x557);static [_scg(0x55b,0x554)]={'editable':![],'splitCls':_scg(0x54b,0x53c),'displayField':'text','valueField':_scg(0x55b,0x54c),'defaultValue':0x1,'maxPosition':0x5};[_scg(0x54b,0x547)](){function h(a,b){return _scg(a,b- -0x492);}return _scc[h(0xbe,0xc7)]({'fields':[h(0xaf,0xba),h(0xbe,0xc6),h(0xa1,0xad)],'data':this[h(0xc3,0xc4)]()[h(0xc0,0xb2)]([{'value':'-1','text':this['L'](h(0xad,0xb6)),'cls':this['splitCls']}])});}[_scg(0x54c,0x556)](){function i(a,b){return _scg(a,b- -0xdd);}return _scd[i(0x46e,0x461)](this['maxPosition'],a=>({'value':a+0x1,'text':this['L'](i(0x476,0x474)+(a+0x1))}));}set['value'](a){if(a&&Array['isArray'](a)){a=a[j(0xff,0xf4)](',');}function j(a,b){return _scg(b,a- -0x454);}if(!a||!this[j(0xfa,0xf9)][j(0xfc,0xf1)](j(0xf8,0xfc),a)){a=this[j(0xec,0xf3)];}super[j(0xf8,0xef)]=a;}get[_scg(0x54f,0x54c)](){const a=super['value'];function k(a,b){return _scg(a,b- -0xc6);}return a?(''+a)[k(0x488,0x494)](',')[k(0x499,0x48c)](b=>parseInt(b,0xa)):[];}}RecurrencePositionsCombo['initClass']();
1
+ (function(a,b){function f(a,b){return _scb(b-0x3a,a);}const c=a();while(!![]){try{const d=-parseInt(f(0x16c,0x160))/0x1+-parseInt(f(0x148,0x157))/0x2*(-parseInt(f(0x171,0x16a))/0x3)+parseInt(f(0x168,0x163))/0x4*(-parseInt(f(0x176,0x169))/0x5)+parseInt(f(0x15b,0x15d))/0x6+parseInt(f(0x166,0x15c))/0x7*(-parseInt(f(0x164,0x15e))/0x8)+-parseInt(f(0x16a,0x162))/0x9*(parseInt(f(0x147,0x151))/0xa)+parseInt(f(0x14e,0x15b))/0xb*(parseInt(f(0x152,0x14f))/0xc);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x73c77));function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x114;let f=c[d];return f;};return _scb(a,b);}import _scc from'@bryntum/core-thin/lib/data/Store.js';function _sca(){const l=['11KWZgKu','1057LfcpUr','1836660ojQtqd','40616ZLUIDS','b-recurrence-positions-split','743665FiotSP','join','9QdXUbp','8miDlBb','position','L{position-1}','type','text','buildDayNumbers','1416585huVHPb','429cFCwle','map','configurable','findRecord','concat','value','initClass','26377992DaOKap','splitCls','540770rrJdOS','defaultValue','recurrencepositionscombo','$name','maxPosition','cls','1412VOuAlM','RecurrencePositionsCombo','isArray','new'];_sca=function(){return l;};return _sca();}import _scd from'@bryntum/core-thin/lib/helper/ArrayHelper.js';function _scg(a,b){return _scb(b- -0x231,a);}import _sce from'@bryntum/core-thin/lib/widget/Combo.js';export default class RecurrencePositionsCombo extends _sce{static [_scg(-0x10e,-0x117)]=_scg(-0x117,-0x113);static [_scg(-0xfd,-0x105)]=_scg(-0x10b,-0x118);static [_scg(-0xf8,-0xff)]={'editable':![],'splitCls':_scg(-0x10e,-0x10c),'displayField':'text','valueField':_scg(-0xeb,-0xfc),'defaultValue':0x1,'maxPosition':0x5};['buildItems'](){function h(a,b){return _scg(a,b-0x1cd);}return _scc[h(0xb8,0xbc)]({'fields':[h(0xd7,0xd1),h(0xc9,0xc9),h(0xc6,0xb8)],'data':this[h(0xc5,0xca)]()[h(0xd1,0xd0)]([{'value':'-1','text':this['L'](h(0xbb,0xc7)),'cls':this[h(0xab,0xb2)]}])});}[_scg(-0x106,-0x103)](){function i(a,b){return _scg(a,b-0x53b);}return _scd['populate'](this[i(0x433,0x425)],a=>({'value':a+0x1,'text':this['L'](i(0x441,0x434)+(a+0x1))}));}set[_scg(-0xec,-0xfc)](a){function j(a,b){return _scg(b,a-0xc8);}if(a&&Array[j(-0x4a,-0x46)](a)){a=a[j(-0x42,-0x4c)](',');}if(!a||!this['store'][j(-0x36,-0x39)](j(-0x34,-0x2e),a)){a=this[j(-0x51,-0x4d)];}super['value']=a;}get[_scg(-0x102,-0xfc)](){const a=super[k(-0x2b,-0x23)];function k(a,b){return _scg(a,b-0xd9);}return a?(''+a)['split'](',')[k(-0x36,-0x27)](b=>parseInt(b,0xa)):[];}}RecurrencePositionsCombo[_scg(-0x11d,-0x11d)]();
@@ -1 +1 @@
1
- (function(a,b){function f(a,b){return _scb(a-0x1fc,b);}const c=a();while(!![]){try{const d=-parseInt(f(0x2f9,0x2f4))/0x1*(-parseInt(f(0x301,0x30a))/0x2)+parseInt(f(0x2f3,0x2e5))/0x3*(-parseInt(f(0x2f4,0x2ec))/0x4)+parseInt(f(0x2fc,0x307))/0x5+-parseInt(f(0x2e6,0x2ea))/0x6*(parseInt(f(0x2ef,0x2e9))/0x7)+-parseInt(f(0x2e8,0x2e5))/0x8*(-parseInt(f(0x2ed,0x2e6))/0x9)+-parseInt(f(0x2f5,0x300))/0xa*(parseInt(f(0x2f2,0x2e4))/0xb)+-parseInt(f(0x2f1,0x2e4))/0xc*(-parseInt(f(0x2e9,0x2e2))/0xd);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x33d3c));function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xe9;let f=c[d];return f;};return _scb(a,b);}function _sca(){const l=['27sdVnRx','configurable','231791VppGJO','value','201108qsPnCe','4413299aMWTcq','13164lUGvUy','128aZgLZh','10LpdFUO','never','buildItems','L{Never}','1khNNxN','type','$name','194990OWRvPf','L{After}','recurrence','recurrencestopconditioncombo','initClass','625426tVJmCD','date','42SeFRiD','endDate','528680hHizhJ','338ZIEohv','text','Never','count'];_sca=function(){return l;};return _sca();}import _scc from'@bryntum/core-thin/lib/widget/Combo.js';function _scg(a,b){return _scb(b-0x2d7,a);}export default class RecurrenceStopConditionCombo extends _scc{static [_scg(0x3c7,0x3d6)]='RecurrenceStopConditionCombo';static [_scg(0x3e1,0x3d5)]=_scg(0x3db,0x3da);static [_scg(0x3c6,0x3c9)]={'editable':![],'placeholder':_scg(0x3c6,0x3c6),'displayField':_scg(0x3ba,0x3c5),'valueField':'value'};[_scg(0x3d2,0x3d2)](){function h(a,b){return _scg(a,b- -0x611);}return[{'value':h(-0x242,-0x240),'text':this['L'](h(-0x241,-0x23e))},{'value':'count','text':this['L'](h(-0x248,-0x239))},{'value':'date','text':this['L']('L{On\x20date}')}];}set[_scg(0x3c0,0x3cb)](a){function i(a,b){return _scg(b,a- -0x269);}a=a||i(0x168,0x161);super[i(0x162,0x16d)]=a;}get[_scg(0x3d0,0x3cb)](){function j(a,b){return _scg(a,b- -0x2c0);}return super[j(0x108,0x10b)];}get[_scg(0x3d8,0x3d9)](){return this['_recurrence'];}set[_scg(0x3de,0x3d9)](a){let b=null;if(a[k(0x5,-0x6)]){b=k(0x6,-0x8);}else if(a['count']){b=k(-0x1,-0x1);}function k(a,b){return _scg(a,b- -0x3c8);}this['_recurrence']=a;this[k(0x5,0x3)]=b;}}RecurrenceStopConditionCombo[_scg(0x3e5,0x3db)]();
1
+ (function(a,b){const c=a();function f(a,b){return _scb(b-0x1a8,a);}while(!![]){try{const d=parseInt(f(0x355,0x348))/0x1+-parseInt(f(0x333,0x33c))/0x2+parseInt(f(0x336,0x335))/0x3*(-parseInt(f(0x33f,0x337))/0x4)+-parseInt(f(0x33b,0x33d))/0x5*(parseInt(f(0x33e,0x33e))/0x6)+parseInt(f(0x339,0x336))/0x7+-parseInt(f(0x325,0x32f))/0x8*(parseInt(f(0x345,0x340))/0x9)+parseInt(f(0x338,0x334))/0xa*(parseInt(f(0x34a,0x347))/0xb);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x51b2b));function _scg(a,b){return _scb(b-0x228,a);}function _sca(){const m=['text','8eYClTC','_recurrence','never','recurrence','$name','3590sgxmPO','15933aiaMGM','3478020OEuwmE','172NXJTxz','recurrencestopconditioncombo','RecurrenceStopConditionCombo','count','buildItems','757394IdIFGj','107385IymvdW','114tOUkih','L{After}','5519025edROGW','L{Never}','L{On\x20date}','date','endDate','Never','value','33451HXzXkb','374414MfOAxf'];_sca=function(){return m;};return _sca();}function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x187;let f=c[d];return f;};return _scb(a,b);}import _scc from'@bryntum/core-thin/lib/widget/Combo.js';export default class RecurrenceStopConditionCombo extends _scc{static [_scg(0x3aa,0x3b3)]=_scg(0x3bd,0x3b9);static ['type']=_scg(0x3c3,0x3b8);static ['configurable']={'editable':![],'placeholder':_scg(0x3b7,0x3c5),'displayField':_scg(0x3d6,0x3c9),'valueField':'value'};[_scg(0x3c3,0x3bb)](){function h(a,b){return _scg(b,a- -0x4a8);}return[{'value':h(-0xf7,-0xfa),'text':this['L'](h(-0xe7,-0xdf))},{'value':h(-0xee,-0xf7),'text':this['L'](h(-0xe9,-0xe1))},{'value':'date','text':this['L'](h(-0xe6,-0xdc))}];}set[_scg(0x3cf,0x3c6)](a){a=a||i(0x180,0x176);function i(a,b){return _scg(b,a- -0x231);}super['value']=a;}get['value'](){function j(a,b){return _scg(a,b- -0x55b);}return super[j(-0x195,-0x195)];}get['recurrence'](){function k(a,b){return _scg(a,b-0x152);}return this[k(0x4ff,0x502)];}set[_scg(0x3b3,0x3b2)](a){let b=null;function l(a,b){return _scg(b,a-0x122);}if(a[l(0x4e6,0x4e2)]){b=l(0x4e5,0x4e2);}else if(a[l(0x4dc,0x4d2)]){b=l(0x4dc,0x4e4);}this['_recurrence']=a;this['value']=b;}}RecurrenceStopConditionCombo['initClass']();
@@ -1 +1 @@
1
- function _sca(){const n=['9AJZBoI','changeValue','$name','244930jSJDhA','daybuttons','split','valueAsDayNumbers','substring','187WavNwD','10964VXSVUd','95913Cykhaj','getDayName','2245448JlByDT','1788976hmAlAN','36lqkfSU','type','getDayNames','slice','weekStartDay','map','concat','length','947480HXcFeZ','2940492CvFPer','updateItemText','decodeDay','isArray','updateLocalization','text','configurable','changeItems','pressedCls','1hywrQD','6SaLlmh','encodeDay','onLocaleChange','value'];_sca=function(){return n;};return _sca();}(function(a,b){function g(a,b){return _scb(b-0x237,a);}const c=a();while(!![]){try{const d=-parseInt(g(0x3ff,0x40f))/0x1*(-parseInt(g(0x414,0x41d))/0x2)+parseInt(g(0x429,0x41e))/0x3*(-parseInt(g(0x428,0x422))/0x4)+parseInt(g(0x42f,0x42a))/0x5*(-parseInt(g(0x423,0x410))/0x6)+parseInt(g(0x417,0x421))/0x7+parseInt(g(0x42a,0x420))/0x8*(parseInt(g(0x41b,0x414))/0x9)+parseInt(g(0x412,0x417))/0xa*(parseInt(g(0x40d,0x41c))/0xb)+-parseInt(g(0x435,0x42b))/0xc;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x3993c));function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x1d3;let f=c[d];return f;};return _scb(a,b);}function _sch(a,b){return _scb(b-0x385,a);}import _scc from'@bryntum/core-thin/lib/helper/DateHelper.js';import _scd from'@bryntum/core-thin/lib/widget/ButtonGroup.js';import _sce from'../data/util/recurrence/RecurrenceDayRuleEncoder.js';export default class DayButtons extends _scd{static [_sch(0x556,0x564)]='DayButtons';static [_sch(0x576,0x571)]=_sch(0x554,0x566);static [_sch(0x551,0x55a)]={'value':null,'items':!![],'pressedCls':'','dayNameLength':0x1,'defaults':{'toggleable':!![]}};[_sch(0x584,0x57a)](a){function i(a,b){return _sch(b,a- -0x450);}const b=_sce['decodeDay'](a['value'])[0x0],c=_scc[i(0x11d,0x118)](b);a[i(0x109,0x110)]=c[i(0x119,0x10d)](0x0,this['dayNameLength']);if(this['dayNameLength']===0x1){a['tooltip']=c;}}['changeItems'](a){function j(a,b){return _sch(b,a-0x54);}if(a===!![]){const {dayNameLength:b}=this,c=_scc[j(0x5c8,0x5c9)],d=_scc[j(0x5c6,0x5b4)]()[j(0x5c9,0x5bf)]((e,f)=>({'text':e[j(0x5bd,0x5c8)](0x0,b),'tooltip':b===0x1?e:undefined,'value':_sce[j(0x5b3,0x5b9)](f),'pressedCls':this[j(0x5b0,0x5b7)],'dataset':{'dayIndex':f}}));a=d[j(0x5c7,0x5c2)](c)[j(0x5ca,0x5cd)](d[j(0x5c7,0x5d1)](0x0,c));a=super[j(0x5af,0x5ba)](a);}return a;}[_sch(0x565,0x563)](a,b){var c;if(((c=a)===null||c===void 0x0?void 0x0:c[k(0x1a2,0x19b)])>0x0&&typeof a[0x0]==='number'){a=a[k(0x19c,0x199)](d=>_sce['encodeDay'](d));}if(a&&Array[k(0x196,0x1a0)](a)){a=a['join'](this['valueSeparator']);}function k(a,b){return _sch(a,b- -0x3dc);}return super[k(0x179,0x187)](a,b);}get[_sch(0x560,0x568)](){function l(a,b){return _sch(a,b- -0x60c);}return this[l(-0xb4,-0xab)]?this[l(-0x9d,-0xab)][l(-0xb5,-0xa5)](this['valueSeparator'])['map'](a=>_sce[l(-0xa2,-0x91)](a)[0x0]):[];}[_sch(0x557,0x560)](){this['items']['forEach'](this['updateItemText'],this);}['updateLocalization'](){this[m(-0x1bf,-0x1c5)]();function m(a,b){return _sch(a,b- -0x725);}super[m(-0x1be,-0x1cd)]();}}DayButtons['initClass']();
1
+ (function(a,b){const c=a();function g(a,b){return _scb(a- -0x67,b);}while(!![]){try{const d=parseInt(g(0x5e,0x5a))/0x1*(-parseInt(g(0x56,0x62))/0x2)+parseInt(g(0x5d,0x56))/0x3*(-parseInt(g(0x3e,0x44))/0x4)+parseInt(g(0x42,0x36))/0x5*(-parseInt(g(0x61,0x58))/0x6)+-parseInt(g(0x46,0x3f))/0x7+-parseInt(g(0x4d,0x41))/0x8*(parseInt(g(0x55,0x4f))/0x9)+-parseInt(g(0x5a,0x55))/0xa*(-parseInt(g(0x59,0x5c))/0xb)+parseInt(g(0x65,0x6c))/0xc;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xa6ef5));function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xa5;let f=c[d];return f;};return _scb(a,b);}import _scc from'@bryntum/core-thin/lib/helper/DateHelper.js';function _sch(a,b){return _scb(b-0x1f,a);}import _scd from'@bryntum/core-thin/lib/widget/ButtonGroup.js';import _sce from'../data/util/recurrence/RecurrenceDayRuleEncoder.js';export default class DayButtons extends _scd{static [_sch(0xe4,0xd1)]=_sch(0xd6,0xe6);static [_sch(0xcb,0xce)]=_sch(0xc6,0xd4);static [_sch(0xd6,0xc5)]={'value':null,'items':!![],'pressedCls':'','dayNameLength':0x1,'defaults':{'toggleable':!![]}};[_sch(0xd4,0xe1)](a){const b=_sce['decodeDay'](a[i(-0x264,-0x250)])[0x0],c=_scc[i(-0x252,-0x254)](b);function i(a,b){return _sch(b,a- -0x32a);}a[i(-0x258,-0x252)]=c[i(-0x23e,-0x24c)](0x0,this[i(-0x25a,-0x24d)]);if(this[i(-0x25a,-0x261)]===0x1){a['tooltip']=c;}}[_sch(0xe5,0xd7)](a){if(a===!![]){const {dayNameLength:b}=this,c=_scc[j(-0x141,-0x12f)],d=_scc[j(-0x11b,-0x12b)]()[j(-0x143,-0x139)]((e,f)=>({'text':e[j(-0x131,-0x11c)](0x0,b),'tooltip':b===0x1?e:undefined,'value':_sce[j(-0x128,-0x11f)](f),'pressedCls':this[j(-0x129,-0x133)],'dataset':{'dayIndex':f}}));a=d[j(-0x124,-0x12a)](c)['concat'](d[j(-0x13d,-0x12a)](0x0,c));a=super[j(-0x11e,-0x131)](a);}function j(a,b){return _sch(a,b- -0x208);}return a;}['changeValue'](a,b){function k(a,b){return _sch(a,b-0x2ab);}var c;if(((c=a)===null||c===void 0x0?void 0x0:c[k(0x383,0x390)])>0x0&&typeof a[0x0]===k(0x375,0x372)){a=a[k(0x37b,0x37a)](d=>_sce[k(0x384,0x394)](d));}if(a&&Array['isArray'](a)){a=a[k(0x384,0x393)](this[k(0x372,0x376)]);}return super['changeValue'](a,b);}get['valueAsDayNumbers'](){function l(a,b){return _sch(a,b- -0x61);}return this[l(0x5e,0x65)]?this['value'][l(0x89,0x81)](this[l(0x7a,0x6a)])['map'](a=>_sce[l(0x58,0x69)](a)[0x0]):[];}[_sch(0xe6,0xd6)](){function m(a,b){return _sch(a,b- -0x1da);}this[m(-0xfb,-0x10d)][m(-0xed,-0xf0)](this[m(-0xf2,-0xf9)],this);}[_sch(0xed,0xda)](){this[n(0x302,0x300)]();function n(a,b){return _sch(a,b-0x22a);}super[n(0x2ff,0x304)]();}}DayButtons[_sch(0xd1,0xc9)]();function _sca(){const o=['2268369iDhWKN','378006TFZZQk','getDayNames','slice','374gydVPm','71480VvQwXf','updateItemText','split','3046809rMajCw','6cNkntt','length','DayButtons','198YauBMA','join','encodeDay','forEach','63314004OxznGp','substring','4NJcWLD','configurable','value','number','74255OLZHAm','initClass','decodeDay','valueSeparator','8312962gmXcQM','items','type','map','dayNameLength','$name','text','32qBUgdK','daybuttons','pressedCls','onLocaleChange','changeItems','getDayName','weekStartDay','updateLocalization'];_sca=function(){return o;};return _sca();}
@@ -1 +1 @@
1
- (function(a,b){function f(a,b){return _scb(b- -0x29f,a);}var c=a();while(!![]){try{var d=parseInt(f(-0x1fc,-0x1f6))/0x1*(-parseInt(f(-0x1ea,-0x1ee))/0x2)+parseInt(f(-0x1f0,-0x1f0))/0x3+parseInt(f(-0x1fa,-0x1f2))/0x4+parseInt(f(-0x201,-0x1fb))/0x5*(parseInt(f(-0x1fc,-0x1f8))/0x6)+parseInt(f(-0x1f6,-0x1f5))/0x7*(parseInt(f(-0x1f6,-0x1fa))/0x8)+parseInt(f(-0x1fa,-0x1fc))/0x9*(-parseInt(f(-0x1ee,-0x1f1))/0xa)+parseInt(f(-0x1e7,-0x1ed))/0xb;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xe4c4d));function _scg(a,b){return _scb(a- -0x40,b);}import _scc from'@bryntum/core-thin/lib/widget/ColorField.js';function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0xa3;var f=c[d];return f;};return _scb(a,b);}import'./EventColorPicker.js';export default class EventColorField extends _scc{static [_scg(0x6c,0x71)]='EventColorField';static [_scg(0x66,0x6e)]=_scg(0x70,0x76);static ['configurable']={'picker':{'type':_scg(0x6b,0x6e)},'name':_scg(0x68,0x70)};}function _sca(){var h=['type','122574FPQQWZ','eventColor','45023hWLtRN','132643AKlFmn','eventcolorpicker','$name','196356ysIDnw','10JXjfHc','3132012dwRjZK','eventcolorfield','58Zyfvxc','2599773SlSfne','4509801VffiKw','105RfmMmn','416ysqktu'];_sca=function(){return h;};return _sca();}EventColorField['initClass']();
1
+ (function(a,b){function f(a,b){return _scb(b- -0x32e,a);}var c=a();while(!![]){try{var d=parseInt(f(-0x282,-0x27c))/0x1*(parseInt(f(-0x26a,-0x271))/0x2)+parseInt(f(-0x278,-0x27a))/0x3*(-parseInt(f(-0x270,-0x274))/0x4)+parseInt(f(-0x27b,-0x27d))/0x5*(-parseInt(f(-0x27f,-0x279))/0x6)+-parseInt(f(-0x277,-0x275))/0x7+parseInt(f(-0x275,-0x27b))/0x8+parseInt(f(-0x268,-0x26f))/0x9*(-parseInt(f(-0x285,-0x27e))/0xa)+parseInt(f(-0x27b,-0x273))/0xb;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xc8501));import _scc from'@bryntum/core-thin/lib/widget/ColorField.js';import'./EventColorPicker.js';function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0xb0;var f=c[d];return f;};return _scb(a,b);}function _scg(a,b){return _scb(b- -0xe1,a);}function _sca(){var h=['10172448gybiBs','27QRYejo','407502JvsAXP','type','eventcolorfield','initClass','1696324dmdYjX','702924ZsjJgY','23097668IQxpUg','EventColorField','68mPlsrf','eventcolorpicker','2718LbtsrT','34140jVtQMY','50wOIlgf','28919ncYqTr'];_sca=function(){return h;};return _sca();}export default class EventColorField extends _scc{static ['$name']=_scg(-0x2d,-0x25);static [_scg(-0x30,-0x2b)]=_scg(-0x22,-0x2a);static ['configurable']={'picker':{'type':_scg(-0x22,-0x23)},'name':'eventColor'};}EventColorField[_scg(-0x2b,-0x29)]();
@@ -1 +1 @@
1
- (function(a,b){function f(a,b){return _scb(a- -0x3df,b);}var c=a();while(!![]){try{var d=parseInt(f(-0x258,-0x256))/0x1*(parseInt(f(-0x248,-0x247))/0x2)+-parseInt(f(-0x24d,-0x255))/0x3+parseInt(f(-0x24a,-0x241))/0x4*(-parseInt(f(-0x257,-0x256))/0x5)+parseInt(f(-0x24f,-0x252))/0x6+-parseInt(f(-0x24e,-0x258))/0x7*(parseInt(f(-0x251,-0x257))/0x8)+parseInt(f(-0x256,-0x254))/0x9*(parseInt(f(-0x24b,-0x248))/0xa)+parseInt(f(-0x254,-0x259))/0xb*(-parseInt(f(-0x252,-0x25c))/0xc);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xdda82));import _scc from'@bryntum/core-thin/lib/widget/ColorPicker.js';function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x187;var f=c[d];return f;};return _scb(a,b);}import _scd from'../view/TimelineBase.js';function _sca(){var i=['eventcolorpicker','10TABrcn','3381420OurGKE','colorSelected','44vruMhi','eventColors','eventColor','forEach','77431DYBvgc','5fhWxkJ','15160419MELpfV','b-color-','33GZsyda','initClass','18768cgSlnW','55408TJCNmA','type','3370830MePNwP','1652ijIJaO','1671867OFAKNz'];_sca=function(){return i;};return _sca();}export default class EventColorPicker extends _scc{static ['$name']='EventColorPicker';static [_scg(0x351,0x351)]=_scg(0x355,0x350);static ['configurable']={'colorClasses':_scd[_scg(0x35a,0x35c)],'colorClassPrefix':_scg(0x34c,0x34c),'colors':null,'records':null};[_scg(0x358,0x35f)]({color:a}){var b;function h(a,b){return _scg(b-0x1f9,a);}(b=this['records'])===null||b===void 0x0||b[h(0x559,0x555)](c=>c[h(0x54b,0x554)]=a);}}function _scg(a,b){return _scb(a-0x1c2,b);}EventColorPicker[_scg(0x34e,0x34a)]();
1
+ (function(a,b){var c=a();function f(a,b){return _scb(a- -0x2ec,b);}while(!![]){try{var d=parseInt(f(-0xfa,-0xfe))/0x1+-parseInt(f(-0xfd,-0x106))/0x2+-parseInt(f(-0xf1,-0xfb))/0x3*(parseInt(f(-0xfc,-0xfc))/0x4)+-parseInt(f(-0xf7,-0x100))/0x5+parseInt(f(-0xf9,-0x102))/0x6*(parseInt(f(-0xf4,-0xee))/0x7)+-parseInt(f(-0xed,-0xea))/0x8*(-parseInt(f(-0xf8,-0xf7))/0x9)+parseInt(f(-0xfe,-0x100))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x8cf5c));function _sca(){var i=['4143454twSsDS','EventColorPicker','type','2869938tiffCw','configurable','records','eventColor','1376AOLsnG','forEach','16346680YSVumg','450802arxQHz','4sKTpTP','eventcolorpicker','20843jWnNks','6nkuXea','33849DhMYWP','5674530DAfoaY','initClass','colorSelected'];_sca=function(){return i;};return _sca();}import _scc from'@bryntum/core-thin/lib/widget/ColorPicker.js';function _scg(a,b){return _scb(a-0x80,b);}import _scd from'../view/TimelineBase.js';function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x1ee;var f=c[d];return f;};return _scb(a,b);}export default class EventColorPicker extends _scc{static ['$name']=_scg(0x279,0x278);static [_scg(0x27a,0x272)]=_scg(0x271,0x26a);static [_scg(0x27c,0x284)]={'colorClasses':_scd['eventColors'],'colorClassPrefix':'b-color-','colors':null,'records':null};[_scg(0x277,0x27e)]({color:a}){function h(a,b){return _scg(a- -0x34f,b);}var b;(b=this[h(-0xd2,-0xd4)])===null||b===void 0x0||b[h(-0xcf,-0xd3)](c=>c[h(-0xd1,-0xd8)]=a);}}EventColorPicker[_scg(0x276,0x272)]();
@@ -1 +1 @@
1
- (function(a,b){var c=a();function f(a,b){return _scb(a- -0x255,b);}while(!![]){try{var d=-parseInt(f(-0xfe,-0xf8))/0x1*(parseInt(f(-0xfc,-0xfe))/0x2)+-parseInt(f(-0x104,-0x10d))/0x3*(-parseInt(f(-0xff,-0xf7))/0x4)+-parseInt(f(-0x109,-0x112))/0x5+parseInt(f(-0x102,-0x106))/0x6*(parseInt(f(-0x10a,-0x106))/0x7)+-parseInt(f(-0x10c,-0x118))/0x8+parseInt(f(-0x107,-0x112))/0x9+-parseInt(f(-0x10d,-0x10e))/0xa*(-parseInt(f(-0x108,-0x10e))/0xb);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xc4518));function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x145;var f=c[d];return f;};return _scb(a,b);}import _scc from'@bryntum/core-thin/lib/widget/Combo.js';export default class ProjectCombo extends _scc{static [_scg(0x3e3,0x3e2)]='ProjectCombo';static ['type']=_scg(0x3f2,0x3fb);static [_scg(0x3e7,0x3eb)]={'project':null,'displayField':_scg(0x3ec,0x3eb),'valueField':_scg(0x3e4,0x3ee),'highlightExternalChange':![],'editable':![],'internalListeners':{'change':_scg(0x3e2,0x3d7)}};[_scg(0x3ef,0x3f9)](a){function h(a,b){return _scg(a- -0x29e,b);}var b;if((b=a[h(0x153,0x147)][h(0x157,0x14e)])!==null&&b!==void 0x0&&b['url']){this[h(0x159,0x160)]=a['transport']['load'][h(0x146,0x14a)];}}[_scg(0x3e2,0x3d9)]({value:a,userAction:b}){function i(a,b){return _scg(a-0x7f,b);}if(b&&this[i(0x477,0x476)]){this['project'][i(0x470,0x474)][i(0x474,0x469)]['url']=a;this[i(0x477,0x481)]['load']();}}}function _sca(){var j=['11647024IzwMxY','configurable','35PxQsfF','6831350ETSfEL','3142502mjEjpR','781713HpGYRp','title','initClass','1908XIHEMy','updateProject','1237806IGtThP','transport','projectcombo','568kWdEFQ','2cKVRjZ','load','1581954fvYIGI','value','project','onInternalChange','$name','url','140PLSOyr'];_sca=function(){return j;};return _sca();}function _scg(a,b){return _scb(a-0x29d,b);}ProjectCombo[_scg(0x3ed,0x3f4)]();
1
+ function _scg(a,b){return _scb(a-0x16f,b);}function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x1c1;var f=c[d];return f;};return _scb(a,b);}(function(a,b){var c=a();function f(a,b){return _scb(b- -0xb4,a);}while(!![]){try{var d=parseInt(f(0x11b,0x11c))/0x1+-parseInt(f(0x127,0x11d))/0x2+-parseInt(f(0x11a,0x115))/0x3*(-parseInt(f(0x12a,0x121))/0x4)+parseInt(f(0x11e,0x116))/0x5*(-parseInt(f(0x11d,0x11a))/0x6)+parseInt(f(0x114,0x111))/0x7*(parseInt(f(0x10d,0x110))/0x8)+-parseInt(f(0x122,0x122))/0x9*(-parseInt(f(0x119,0x112))/0xa)+-parseInt(f(0x122,0x11e))/0xb*(-parseInt(f(0x12a,0x120))/0xc);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x6d8dd));import _scc from'@bryntum/core-thin/lib/widget/Combo.js';export default class ProjectCombo extends _scc{static [_scg(0x331,0x328)]='ProjectCombo';static [_scg(0x342,0x336)]=_scg(0x337,0x330);static ['configurable']={'project':null,'displayField':_scg(0x336,0x330),'valueField':_scg(0x33a,0x339),'highlightExternalChange':![],'editable':![],'internalListeners':{'change':'onInternalChange'}};[_scg(0x347,0x33d)](a){function h(a,b){return _scg(a-0xcd,b);}var b;if((b=a[h(0x413,0x40e)][h(0x3fd,0x3f5)])!==null&&b!==void 0x0&&b['url']){this[h(0x408,0x408)]=a[h(0x413,0x408)]['load'][h(0x407,0x408)];}}[_scg(0x33c,0x348)]({value:a,userAction:b}){function i(a,b){return _scg(a- -0x24b,b);}if(b&&this[i(0xe7,0xe8)]){this[i(0xe7,0xdc)][i(0xfb,0xff)][i(0xe5,0xe7)][i(0xef,0xf3)]=a;this['project']['load']();}}}function _sca(){var j=['load','$name','project','24eYIsLx','248773TSoHdw','1590iumUZX','title','projectcombo','77118icKWcQ','5cyMrem','url','value','onInternalChange','5213922XeprGi','initClass','292893izTLWT','1515294lMvOzE','33ZKyPjq','type','2782452urGlmv','36GMiHCW','42390gxAERl','transport','updateProject'];_sca=function(){return j;};return _sca();}ProjectCombo[_scg(0x33e,0x348)]();
@@ -1 +1 @@
1
- (function(a,b){function g(a,b){return _scb(b-0x103,a);}var c=a();while(!![]){try{var d=parseInt(g(0x1b8,0x1c2))/0x1+-parseInt(g(0x1ab,0x1a6))/0x2*(parseInt(g(0x1a6,0x1a4))/0x3)+parseInt(g(0x1c8,0x1b4))/0x4+parseInt(g(0x1c8,0x1ca))/0x5+-parseInt(g(0x1ab,0x1b1))/0x6+-parseInt(g(0x1c5,0x1b8))/0x7+parseInt(g(0x1a0,0x1ae))/0x8;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xe6705));import _scc from'@bryntum/core-thin/lib/widget/Combo.js';function _sch(a,b){return _scb(b-0x130,a);}import _scd from'@bryntum/core-thin/lib/helper/DomHelper.js';function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x9d;var f=c[d];return f;};return _scb(a,b);}_scd['loadStylesheet'](_sch(0x1fb,0x1f5));export default class ResourceCombo extends _scc{static [_sch(0x1e5,0x1ec)]=_sch(0x1df,0x1dc);static ['type']=_sch(0x1e4,0x1ce);static [_sch(0x1e7,0x1df)]={'showEventColor':null,'displayField':_sch(0x1ea,0x1f1),'valueField':'id','picker':{'cls':_sch(0x1c9,0x1d2),'itemIconTpl'(record){if(this[i(0x23f,0x231)][i(0x223,0x20f)]){const {eventColor:eventColor}=record,isStyleColor=!_scd['isNamedColor'](eventColor),style=eventColor?isStyleColor?i(0x226,0x215)+eventColor+'\x22':'':i(0x232,0x229),colorClass=!eventColor||isStyleColor?'':i(0x245,0x24f)+eventColor;return i(0x229,0x22c)+colorClass+'\x22'+style+i(0x242,0x24a);}if(this[i(0x233,0x232)]){return'<div\x20aria-hidden=\x22true\x22\x20class=\x22b-icon\x20b-icon-square\x22></div>';}function i(a,b){return _sch(b,a-0x4f);}return'';}}};[_sch(0x1c9,0x1d5)](a){return Boolean(a);}[_sch(0x1c6,0x1d8)](a){var b;function j(a,b){return _sch(a,b-0x16);}this[j(0x201,0x200)]('b-show-event-color',a);(b=this[j(0x205,0x1fd)])===null||b===void 0x0||b[j(0x20a,0x200)](j(0x1f3,0x1e6),a);}[_sch(0x1f5,0x1e8)](a,b){var c;function k(a,b){return _sch(b,a- -0x2d4);}a=super['changePicker'](a,b);(c=a)===null||c===void 0x0||c[k(-0xea,-0xe6)](k(-0x104,-0xef),this['showEventColor']);return a;}get[_sch(0x1d7,0x1e2)](){function l(a,b){return _sch(b,a- -0x1aa);}return[{'class':l(0x25,0x12),'reference':l(0x33,0x47)},this['inputElement']];}['syncInputFieldValue'](){var a;const b=this,{resourceIcon:c,lastResourceIconCls:d}=b,{classList:e}=c,f=((a=b[m(0x247,0x240)])===null||a===void 0x0?void 0x0:a[m(0x231,0x244)])??'';super[m(0x23a,0x23d)]();function m(a,b){return _sch(a,b-0x57);}c[m(0x247,0x24b)][m(0x229,0x224)]='';d&&e[m(0x253,0x242)](d);b[m(0x241,0x230)]=null;if(f){if(_scd['isNamedColor'](f)){b[m(0x23c,0x230)]=m(0x218,0x22d)+f;e[m(0x255,0x245)](b['lastResourceIconCls']);}else{c[m(0x239,0x24b)][m(0x22a,0x224)]=f;}e[m(0x23b,0x242)](m(0x23e,0x237));}else{e[m(0x237,0x245)](m(0x234,0x237));}}}function _sca(){var n=['changeShowEventColor','b-color-','\x20style=\x22color:','updateShowEventColor','lastResourceIconCls','<div\x20aria-hidden=\x22true\x22\x20class=\x22b-icon\x20b-icon-square','7250944ogigBH','ResourceCombo','resourceIcon','2773224olkFYz','configurable','b-hide-display','2554624FyUpZI','innerElements','\x20style=\x22display:none\x22','multiSelect','2413180eyYrPd','syncInputFieldValue','_picker','changePicker','selected','toggleCls','remove','$name','eventColor','add','673089aimrPw','owner','name','initClass','></div>','style','@bryntum/scheduler-thin/lib/widget/ResourceCombo.css','\x20b-color-','5581690KqSdSa','color','resourcecombo','b-icon\x20b-resource-icon\x20b-icon-square\x20b-hide-display','b-show-event-color','30CKbHnr','b-resource-combo-picker','316726rKXpPS','showEventColor'];_sca=function(){return n;};return _sca();}ResourceCombo[_sch(0x1e6,0x1f2)]();
1
+ (function(a,b){function g(a,b){return _scb(b- -0x5e,a);}var c=a();while(!![]){try{var d=-parseInt(g(0x42,0x50))/0x1*(-parseInt(g(0x44,0x34))/0x2)+parseInt(g(0x46,0x43))/0x3*(-parseInt(g(0x27,0x2c))/0x4)+parseInt(g(0x61,0x51))/0x5*(parseInt(g(0x2a,0x2b))/0x6)+parseInt(g(0x26,0x32))/0x7+-parseInt(g(0x30,0x3b))/0x8+-parseInt(g(0x61,0x4e))/0x9*(-parseInt(g(0x51,0x3e))/0xa)+-parseInt(g(0x63,0x52))/0xb*(parseInt(g(0x5c,0x53))/0xc);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xf3523));function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x89;var f=c[d];return f;};return _scb(a,b);}function _sca(){var n=['_picker','\x20style=\x22color:','type','6235460aSTANO','add','32618IDTEmj','inputElement','changeShowEventColor','ResourceCombo','style','color','initClass','11534312iNRtWZ','toggleCls','b-show-event-color','29030Byomyc','multiSelect','syncInputFieldValue','remove','updateShowEventColor','27XJGHAr','owner','showEventColor','$name','resourceIcon','lastResourceIconCls','name','configurable','loadStylesheet','\x20b-color-','eventColor','4266lYaWKm','\x20style=\x22display:none\x22','66PGfnGx','5SQOINo','385JGlVUd','415152RIbNqn','b-hide-display','7575534uCKRYX','425108mSRlPJ','<div\x20aria-hidden=\x22true\x22\x20class=\x22b-icon\x20b-icon-square\x22></div>','@bryntum/scheduler-thin/lib/widget/ResourceCombo.css'];_sca=function(){return n;};return _sca();}import _scc from'@bryntum/core-thin/lib/widget/Combo.js';import _scd from'@bryntum/core-thin/lib/helper/DomHelper.js';_scd[_sch(0x64,0x51)](_sch(0x47,0x57));function _sch(a,b){return _scb(a- -0x45,b);}export default class ResourceCombo extends _scc{static [_sch(0x5f,0x58)]=_sch(0x50,0x3b);static [_sch(0x4a,0x47)]='resourcecombo';static [_sch(0x63,0x69)]={'showEventColor':null,'displayField':_sch(0x62,0x60),'valueField':'id','picker':{'cls':'b-resource-combo-picker','itemIconTpl'(record){function i(a,b){return _sch(a- -0x82,b);}if(this[i(-0x25,-0x17)][i(-0x24,-0x2f)]){const {eventColor:eventColor}=record,isStyleColor=!_scd['isNamedColor'](eventColor),style=eventColor?isStyleColor?i(-0x39,-0x47)+eventColor+'\x22':'':i(-0x1a,-0x7),colorClass=!eventColor||isStyleColor?'':i(-0x1d,-0x22)+eventColor;return'<div\x20aria-hidden=\x22true\x22\x20class=\x22b-icon\x20b-icon-square'+colorClass+'\x22'+style+'></div>';}if(this[i(-0x2a,-0x2c)]){return i(-0x3c,-0x28);}return'';}}};[_sch(0x4f,0x40)](a){return Boolean(a);}[_sch(0x5b,0x55)](a){var b;this[j(-0x1e,-0xb)]('b-show-event-color',a);function j(a,b){return _sch(b- -0x60,a);}(b=this[j(-0xb,-0x18)])===null||b===void 0x0||b[j(-0x1b,-0xb)](j(-0x14,-0xa),a);}['changePicker'](a,b){var c;a=super['changePicker'](a,b);(c=a)===null||c===void 0x0||c[k(0x1f3,0x1f0)]('b-show-event-color',this[k(0x1fc,0x1f2)]);function k(a,b){return _sch(a-0x19e,b);}return a;}get['innerElements'](){function l(a,b){return _sch(a- -0xbd,b);}return[{'class':'b-icon\x20b-resource-icon\x20b-icon-square\x20b-hide-display','reference':l(-0x5d,-0x72)},this[l(-0x6f,-0x63)]];}[_sch(0x59,0x58)](){function m(a,b){return _sch(a- -0x284,b);}var a;const b=this,{resourceIcon:c,lastResourceIconCls:d}=b,{classList:e}=c,f=((a=b['selected'])===null||a===void 0x0?void 0x0:a[m(-0x21e,-0x218)])??'';super[m(-0x22b,-0x21e)]();c[m(-0x233,-0x240)][m(-0x232,-0x230)]='';d&&e[m(-0x22a,-0x23c)](d);b[m(-0x223,-0x238)]=null;if(f){if(_scd['isNamedColor'](f)){b[m(-0x223,-0x237)]='b-color-'+f;e[m(-0x238,-0x241)](b[m(-0x223,-0x213)]);}else{c[m(-0x233,-0x246)][m(-0x232,-0x221)]=f;}e['remove'](m(-0x217,-0x210));}else{e[m(-0x238,-0x23c)](m(-0x217,-0x206));}}}ResourceCombo[_sch(0x53,0x65)]();