@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){function i(a,b){return _scb(b-0x1bb,a);}const c=a();while(!![]){try{const d=-parseInt(i(0x239,0x23c))/0x1+-parseInt(i(0x297,0x276))/0x2+-parseInt(i(0x26f,0x254))/0x3+parseInt(i(0x25e,0x248))/0x4+-parseInt(i(0x25d,0x24f))/0x5*(-parseInt(i(0x26d,0x265))/0x6)+parseInt(i(0x23d,0x242))/0x7*(parseInt(i(0x242,0x256))/0x8)+parseInt(i(0x26b,0x260))/0x9;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xca461));import _scc from'@bryntum/core-thin/lib/mixin/InstancePlugin.js';import _scd from'@bryntum/grid-thin/lib/feature/GridFeatureManager.js';import _sce from'@bryntum/core-thin/lib/widget/Tooltip.js';function _sca(){const t=['.b-scheduler-base:not(.b-dragging-event,.b-drag-creating,.b-creating-dependency,.b-resizing-event)\x20.b-grid-body-container:not(.b-scrolling)\x20.b-timeline-sub-grid:not(.b-scrolling)\x20>\x20:not(.b-sch-foreground-canvas,.b-group-footer,.b-group-row)\x20*:not(.b-scroll-button-wrap\x20*,.b-sch-dependency)','928495FVzVwJ','call','getHoverTipHtml','hideAnimation','lastHtml','hideForNonWorkingTime','84042xCmlDx','getDateFromDomEvent','template','</div>','ResourceUtilization','plain','377320jIkFhQ','internalOnPointerOver','clockTemplate','target','lastTime','contains','getText','20gdVcty','bind','isWorkingTime','isSchedulerPro','Scheduler','2825388YisGsv','which','488uUzERU','$name','updateTip','configurable','forElement','generateTipContent','destroyProperties','pluginConfig','lastResourceId','onDocumentMouseDown','24414489JOZpYb','doDestroy','ion','client','toggleCls','483258UYCcoi','floor','disabled','messageTemplate','configuredListeners','isVisible','onInternalPaint','resolveResourceRecord','b-sch-schedule-tip','featureClass','-schedule-tip','processConfiguredListeners','hide','registerFeature','ScheduleTooltip','getFormattedDate','prototype','2325570YYVvOn','element','hoverTip','buttons','timeAxisSubGridElement','message'];_sca=function(){return t;};return _sca();}function _scj(a,b){return _scb(a-0x3d0,b);}import _scf from'../tooltip/ClockTemplate.js';import _scg from'@bryntum/core-thin/lib/helper/EventHelper.js';import _sch from'@bryntum/core-thin/lib/helper/DomHelper.js';_sch['loadStylesheet']('@bryntum/scheduler-thin/lib/feature/ScheduleTooltip.css');export default class ScheduleTooltip extends _scc{static [_scj(0x46c,0x456)]=_scj(0x488,0x479);static [_scj(0x46e,0x483)]={'messageTemplate':data=>'<div\x20class=\x22b-sch-hover-tip-msg\x22>'+data[_scj(0x490,0x476)]+_scj(0x45a,0x43d),'hideForNonWorkingTime':null};static get[_scj(0x472,0x47c)](){function k(a,b){return _scj(a- -0x299,b);}return{'after':[k(0x1e7,0x1de)]};}[_scj(0x480,0x490)]({firstPaint:a}){if(!a){return;}const b=this,{client:c}=b;if(c[l(-0x31a,-0x324)]&&b['hideForNonWorkingTime']===undefined){b['hideForNonWorkingTime']=!![];}let d;const e=b['hoverTip']=new _sce({'id':c['id']+l(-0x310,-0x307),'cls':l(-0x31d,-0x309),'allowOver':!![],'hoverDelay':0x0,'hideDelay':0x64,'showOnHover':!![],'forElement':c[l(-0x314,-0x2fc)],'anchorToTarget':![],'trackMouse':!![],'updateContentOnMouseMove':!![],'applyMinWidth':!![],'monitorResize':![],'textContent':![],'rendition':l(-0x32f,-0x32f),'forSelector':l(-0x2da,-0x2fa),'getHtml':b[l(-0x33e,-0x338)][l(-0x32b,-0x326)](b),'onDocumentMouseDown'(f){if(e[m(0x34,0x45)][m(0x28,0x38)](f['domEvent'][m(0x2e,0x36)])){d=_scg['on']({'thisObj':b,'element':c[m(0x67,0x65)],'mousemove':h=>e[m(0x35,0x34)](h),'capture':!![]});}const g=e[m(0xa,0x2a)];e[m(0x47,0x2a)]=![];e['constructor'][m(0x6b,0x60)][m(0x57,0x4a)][m(0x49,0x28)](e,f);function m(a,b){return l(a,b-0x361);}e[m(0x17,0x2a)]=g;},...b['config'],'internalListeners':b[l(-0x2fd,-0x30d)]});e[l(-0x31e,-0x314)]({'pointerOver'({event:f}){function n(a,b){return l(a,b-0x738);}const g=n(0x423,0x43b)in f?f[n(0x435,0x43b)]>0x0:f[n(0x40d,0x417)]>0x0;if(!g&&d){d();}if(b[n(0x41e,0x429)]||g){e[n(0x453,0x433)]();return![];}},'innerHtmlUpdate'({source:f}){function o(a,b){return l(b,a-0x411);}b[o(0xe5,0xeb)]['updateDateIndicator'](f[o(0x112,0x10f)],b['lastTime']);}});function l(a,b){return _scj(b- -0x78b,a);}c[l(-0x32c,-0x314)]({'timeAxisViewModelUpdate':l(-0x322,-0x31e),'thisObj':b});b[l(-0x333,-0x32c)]=new _scf({'scheduler':c});}[_scj(0x485,0x480)](){}[_scj(0x46d,0x474)](){function p(a,b){return _scj(a- -0x268,b);}if(this[p(0x225,0x209)][p(0x217,0x21f)]){this[p(0x225,0x22b)]['updateContent']();}}[_scj(0x476,0x45a)](){this[q(0x12e,0x127)]('clockTemplate','hoverTip');function q(a,b){return _scj(a- -0x343,b);}super['doDestroy']();}[_scj(0x453,0x46e)]({tip:a,event:b}){function r(a,b){return _scj(b- -0x754,a);}const c=this,d=c['client'],e=b&&d[r(-0x2eb,-0x2fc)](b,r(-0x2ba,-0x2d9),!![]);let f=c[r(-0x30d,-0x2ff)];if(e&&b[r(-0x312,-0x2f4)]){const g=d[r(-0x2e9,-0x2d3)](b);if(g&&(e-c['lastTime']!==0x0||g['id']!==c[r(-0x2cf,-0x2e1)])){if(c[r(-0x317,-0x2fe)]){const h=g[r(-0x2d8,-0x2ee)](e);a[r(-0x2dc,-0x2db)]('b-nonworking-time',!h);}c['lastResourceId']=g['id'];f=c[r(-0x2ef,-0x2ff)]=c[r(-0x2f1,-0x2e4)]({'date':e,'event':b,'resourceRecord':g});}}else{a[r(-0x2e7,-0x2ce)]();c[r(-0x2d5,-0x2f3)]=null;c[r(-0x2db,-0x2e1)]=null;}return f;}[_scj(0x470,0x46c)]({date:a,event:b,resourceRecord:c}){const d=this,e=d[s(0x87,0x9e)](a,b,c),f=d[s(0x83,0x8b)][s(0x7d,0x98)]({'date':a,'text':d[s(0x9c,0x9a)][s(0xad,0xb0)](a)}),g=e?d[s(0xa1,0x9a)]({'message':e}):'';d[s(0x85,0x80)]=a;function s(a,b){return _scj(a- -0x3dc,b);}return f+g;}[_scj(0x463,0x445)](a,b,c){}}function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x81;let f=c[d];return f;};return _scb(a,b);}ScheduleTooltip[_scj(0x483,0x493)]='b-schedule-tip';_scd[_scj(0x487,0x48b)](ScheduleTooltip,!![],_scj(0x468,0x46e));_scd[_scj(0x487,0x487)](ScheduleTooltip,![],_scj(0x45b,0x449));
1
+ function _scj(a,b){return _scb(b-0x3cf,a);}(function(a,b){const c=a();function i(a,b){return _scb(a- -0x135,b);}while(!![]){try{const d=parseInt(i(0x8,0x0))/0x1*(parseInt(i(-0x21,-0xf))/0x2)+parseInt(i(0x1a,0x18))/0x3*(parseInt(i(0x4,0x25))/0x4)+parseInt(i(0x18,0x2))/0x5*(parseInt(i(-0x1f,-0x2c))/0x6)+parseInt(i(-0xc,-0x2c))/0x7+parseInt(i(0x12,0x32))/0x8*(parseInt(i(-0x20,-0x23))/0x9)+-parseInt(i(-0x15,-0xf))/0xa+parseInt(i(0x10,0x13))/0xb;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x70d42));import _scc from'@bryntum/core-thin/lib/mixin/InstancePlugin.js';import _scd from'@bryntum/grid-thin/lib/feature/GridFeatureManager.js';import _sce from'@bryntum/core-thin/lib/widget/Tooltip.js';function _sca(){const v=['internalOnPointerOver','hideForNonWorkingTime','4036TmsYdY','1217673SPZWtF','1062282AhwpvP','getText','processConfiguredListeners','-schedule-tip','isSchedulerPro','config','ion','b-nonworking-time','registerFeature','@bryntum/scheduler-thin/lib/feature/ScheduleTooltip.css','9064500efGQTh','isVisible','hide','buttons','lastResourceId','toggleCls','clockTemplate','constructor','configurable','4606126stGRju','lastHtml','getHoverTipHtml','b-sch-schedule-tip','isWorkingTime','ResourceUtilization','doDestroy','lastTime','hoverTip','messageTemplate','timeAxisSubGridElement','</div>','domEvent','call','forElement','floor','784lyqYNH','onDocumentMouseDown','$wheelZooming','plain','18HGIWuf','target','.b-scheduler-base:not(.b-dragging-event,.b-drag-creating,.b-creating-dependency,.b-resizing-event,.b-wheel-zooming)\x20.b-grid-body-container:not(.b-scrolling)\x20.b-timeline-sub-grid:not(.b-scrolling)\x20>\x20:not(.b-sch-foreground-canvas,.b-group-footer,.b-group-row)\x20*:not(.b-scroll-button-wrap\x20*,.b-sch-dependency)','b-schedule-tip','onInternalPaint','pluginConfig','ScheduleTooltip','generateTipContent','2739154gFRiTs','resolveResourceRecord','8HRsrtu','configuredListeners','featureClass','client','<div\x20class=\x22b-sch-hover-tip-msg\x22>','element','5xszIGY','$name','1728zVVPea','contains','loadStylesheet','which','hideAnimation','prototype'];_sca=function(){return v;};return _sca();}import _scf from'../tooltip/ClockTemplate.js';import _scg from'@bryntum/core-thin/lib/helper/EventHelper.js';import _sch from'@bryntum/core-thin/lib/helper/DomHelper.js';_sch[_scj(0x50d,0x520)](_scj(0x50f,0x4ee));export default class ScheduleTooltip extends _scc{static [_scj(0x515,0x51d)]=_scj(0x504,0x512);static [_scj(0x4d9,0x4f7)]={'messageTemplate':data=>_scj(0x518,0x51a)+data['message']+_scj(0x4e4,0x503),'hideForNonWorkingTime':null};static get[_scj(0x50c,0x511)](){function k(a,b){return _scj(a,b- -0x90);}return{'after':[k(0x48c,0x480)]};}[_scj(0x4fb,0x510)]({firstPaint:a}){if(!a){return;}const b=this,{client:c}=b;function l(a,b){return _scj(b,a- -0x230);}if(c[l(0x2b9,0x2c7)]&&b[l(0x2b2,0x29b)]===undefined){b[l(0x2b2,0x2a0)]=!![];}let d;const e=b[l(0x2d0,0x2c1)]=new _sce({'id':c['id']+l(0x2b8,0x2c7),'cls':l(0x2cb,0x2d4),'allowOver':!![],'hoverDelay':0x0,'hideDelay':0x64,'showOnHover':!![],'forElement':c['timeAxisSubGridElement'],'anchorToTarget':![],'trackMouse':!![],'updateContentOnMouseMove':!![],'applyMinWidth':!![],'monitorResize':![],'textContent':![],'rendition':l(0x2db,0x2ea),'forSelector':l(0x2de,0x2f2),'getHtml':b[l(0x2ca,0x2ae)]['bind'](b),'onDocumentMouseDown'(f){if(e[m(-0x1d4,-0x1df)][m(-0x1e2,-0x1c6)](f[m(-0x1ce,-0x1e1)][m(-0x1d7,-0x1d8)])){d=_scg['on']({'thisObj':b,'element':c[m(-0x1e5,-0x1e3)],'mousemove':h=>e[m(-0x1ea,-0x204)](h),'capture':!![]});}const g=e[m(-0x1af,-0x1c3)];e[m(-0x1ce,-0x1c3)]=![];e[m(-0x1df,-0x1ef)][m(-0x221,-0x205)][m(-0x1c8,-0x1dc)][m(-0x1da,-0x1e0)](e,f);function m(a,b){return l(b- -0x4b5,a);}e[m(-0x1be,-0x1c3)]=g;},...b[l(0x2ba,0x2ad)],'internalListeners':b[l(0x2e7,0x2f3)]});e[l(0x2bb,0x2a1)]({'pointerOver'({event:f}){const g=n(0x29c,0x2ae)in f?f[n(0x2ab,0x2ae)]>0x0:f[n(0x2ee,0x2dd)]>0x0;function n(a,b){return l(b- -0x14,a);}if(!g&&d){d();}if(b['disabled']||g){e[n(0x2c7,0x2ad)]();return![];}},'innerHtmlUpdate'({source:f}){function o(a,b){return l(a- -0x315,b);}b[o(-0x50,-0x33)]['updateDateIndicator'](f[o(-0x2a,-0x4b)],b['lastTime']);}});c['ion']({'timeAxisViewModelUpdate':()=>{function p(a,b){return l(b- -0x4d2,a);}if(!c[p(-0x1ff,-0x1f8)]){b['updateTip']();}},'smoothWheelZoom':()=>{function q(a,b){return l(b- -0xd3,a);}b[q(0x1e3,0x1fd)]['hide']();},'thisObj':b});b[l(0x2c5,0x2d1)]=new _scf({'scheduler':c});}[_scj(0x4d6,0x4e7)](){}['updateTip'](){function r(a,b){return _scj(a,b- -0x24d);}if(this[r(0x297,0x2b3)][r(0x2bb,0x2a3)]){this[r(0x2b7,0x2b3)]['updateContent']();}}[_scj(0x514,0x4fe)](){this['destroyProperties']('clockTemplate','hoverTip');function s(a,b){return _scj(b,a- -0x6c9);}super[s(-0x1cb,-0x1d9)]();}['getHoverTipHtml']({tip:a,event:b}){const c=this,d=c[t(0x1d0,0x1bf)],e=b&&d['getDateFromDomEvent'](b,t(0x1b8,0x1ad),!![]);let f=c[t(0x1ae,0x19f)];if(e&&b['target']){const g=d[t(0x1db,0x1bb)](b);if(g&&(e-c[t(0x18a,0x1a5)]!==0x0||g['id']!==c['lastResourceId'])){if(c[t(0x18d,0x188)]){const h=g[t(0x1ac,0x1a2)](e);a[t(0x182,0x19a)](t(0x17a,0x192),!h);}c[t(0x1ae,0x199)]=g['id'];f=c[t(0x1c0,0x19f)]=c[t(0x1d4,0x1b9)]({'date':e,'event':b,'resourceRecord':g});}}else{a[t(0x18c,0x197)]();c[t(0x1a8,0x1a5)]=null;c[t(0x19b,0x199)]=null;}function t(a,b){return _scj(a,b- -0x35a);}return f;}[_scj(0x52c,0x513)]({date:a,event:b,resourceRecord:c}){function u(a,b){return _scj(b,a-0xb);}const d=this,e=d[u(0x4f1,0x4d3)](a,b,c),f=d['clockTemplate']['template']({'date':a,'text':d[u(0x524,0x52e)]['getFormattedDate'](a)}),g=e?d[u(0x50c,0x506)]({'message':e}):'';d[u(0x50a,0x505)]=a;return f+g;}[_scj(0x4fe,0x4e6)](a,b,c){}}function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x111;let f=c[d];return f;};return _scb(a,b);}ScheduleTooltip[_scj(0x4fc,0x518)]=_scj(0x4fb,0x50f);_scd[_scj(0x4dd,0x4ed)](ScheduleTooltip,!![],'Scheduler');_scd[_scj(0x502,0x4ed)](ScheduleTooltip,![],_scj(0x502,0x4fd));
@@ -1 +1 @@
1
- (function(a,b){function n(a,b){return _scb(b- -0x380,a);}const c=a();while(!![]){try{const d=parseInt(n(-0x1c7,-0x1d0))/0x1+parseInt(n(-0x1d2,-0x1d2))/0x2+-parseInt(n(-0x1de,-0x1da))/0x3+-parseInt(n(-0x1f5,-0x1db))/0x4*(parseInt(n(-0x1c6,-0x1d3))/0x5)+parseInt(n(-0x1e0,-0x1d9))/0x6+parseInt(n(-0x1bf,-0x1bd))/0x7+-parseInt(n(-0x1e4,-0x1c3))/0x8;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x5b9ed));function _sca(){const z=['onElementClick','b-sch-canvas\x20b-scroll-buttons-canvas','isConfiguring','registerFeature','1745842nWeNHL','createElement','scrollButtonClick','dataIndex','b-scroll-button-wrap\x20b-scroll-forward','set','sync','b-icon-before','isScheduled','top','mixin','scrollOptions','remove','visibleDateRange','forEach','start','ion','@bryntum/scheduler-thin/lib/feature/ScrollButtons.css','trigger','generateScrollButton','includes','ScrollButtons','closest','assign','easeTo','getById','disabled','labelRenderer','rowStyleMap','doDisable','.b-scroll-button-wrap','delayable','store','end','.b-scroll-forward','appendChild','construct','rows','getEventStartingAfter','rowManager','timeAxisSubGridElement','100FLXldd','2176434kXSXDz','2579814qobZDo','b-scroll-buttons-container','scrollButtonsCanvas','startDate','height','get','96205RnAzWk','1432622OtbTxK','pluginConfig','308343khwiIc','endDate','Scheduler','configurable','events','recordId','attachToEventStore','refreshScrollButtons','scrollResourceEventIntoView','b-scroll-button-content','timeAxisSubGrid','raf','b-scroll-button-wrap\x20b-scroll-backward','977992rVPVDb','span'];_sca=function(){return z;};return _sca();}import _scc from'@bryntum/grid-thin/lib/feature/GridFeatureManager.js';import _scd from'@bryntum/core-thin/lib/mixin/InstancePlugin.js';import _sce from'@bryntum/core-thin/lib/mixin/Delayable.js';import _scf from'@bryntum/core-thin/lib/helper/DomHelper.js';import _scg from'@bryntum/core-thin/lib/helper/ObjectHelper.js';function _sco(a,b){return _scb(a- -0x50,b);}import _sch from'@bryntum/core-thin/lib/helper/DomSync.js';import _sci from'../data/mixin/AttachToProjectMixin.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x194;let f=c[d];return f;};return _scb(a,b);}_scf['loadStylesheet'](_sco(0x184,0x16d));export default class ScrollButtons extends _scd[_sco(0x17d,0x18a)](_sce,_sci){static ['$name']=_sco(0x188,0x170);static [_sco(0x163,0x15d)]={'backwardIconCls':_sco(0x17a,0x167),'forwardIconCls':'b-icon-after','labelRenderer':null,'scrollOptions':{'animate':{'duration':0x258,'easing':_sco(0x144,0x12c)},'y':![],'edgeOffset':0x32},'testConfig':{'scrollOptions':{'animate':{'duration':0x14,'easing':'easeTo'},'y':![],'edgeOffset':0x32}}};static get[_sco(0x15f,0x175)](){function p(a,b){return _sco(b-0x25e,a);}return{'after':[p(0x3e6,0x3cd),'afterRenderRow']};}static [_sco(0x14b,0x129)]={'refreshScrollButtons':_sco(0x16b,0x155)};[_sco(0x148,0x150)]=new Map();[_sco(0x150,0x13d)](a,b){function q(a,b){return _sco(b-0x129,a);}super[q(0x29a,0x279)](a,b);a[q(0x28c,0x27c)][q(0x296,0x2ac)]({'renderDone':q(0x2a3,0x290),'thisObj':this});a[q(0x29d,0x293)]['scrollable']['ion']({'scroll':'refreshScrollButtons','thisObj':this});a[q(0x295,0x293)][q(0x2c6,0x2ac)]({'resize':'refreshScrollButtons','thisObj':this});}[_sco(0x166,0x147)](a){super[r(0x34a,0x332)](a);function r(a,b){return _sco(b-0x1cc,a);}a===null||a===void 0x0||a['ion']({'name':'eventStore','change':r(0x34b,0x333),'refresh':r(0x314,0x333),'thisObj':this});}['afterRenderRow']({row:a}){function s(a,b){return _sco(a-0x429,b);}this[s(0x571,0x584)][s(0x5a1,0x5af)](a[s(0x59f,0x5bd)],{'height':a[s(0x584,0x57d)],'top':a[s(0x5a5,0x5b3)]});}[_sco(0x167,0x15a)](){const a=this,{client:b}=a;if(!b[t(0x572,0x593)]||a[t(0x538,0x51f)]){return;}if(!a[t(0x54b,0x568)]){a['scrollButtonsCanvas']=_scf[t(0x566,0x54d)]({'className':t(0x562,0x549),'parent':b['timeAxisSubGridElement'],'retainElement':!![]});}function t(a,b){return _sco(a-0x3f2,b);}_sch[t(0x56b,0x578)]({'targetElement':a['scrollButtonsCanvas'],'domConfig':{'children':b['rowManager'][t(0x543,0x55c)]['map'](c=>{function u(a,b){return t(a- -0x4b8,b);}if(c['id']==null){return null;}const d=c[u(0xb0,0xc6)],e=b[u(0x86,0x87)][u(0x7f,0x9f)](c['id']);return{'class':u(0x92,0x81),'dataset':{'recordId':e['id'],'rowIndex':d},'style':{'height':a[u(0x82,0x80)][u(0x96,0xb2)](d)[u(0x95,0x86)],'top':a[u(0x82,0x7d)][u(0x96,0x72)](d)[u(0xb6,0xae)]},'children':a[u(0xc0,0xac)](e)};})}});}['generateScrollButton'](a){const {client:b,labelRenderer:c,forwardIconCls:d,backwardIconCls:e}=this,{visibleDateRange:f,eventStore:g}=b,h=a[v(-0x10f,-0x10d)]||[];let i=0x0,j=0x0;function v(a,b){return _sco(b- -0x271,a);}h[v(-0xe2,-0xf0)](k=>{function w(a,b){return v(a,b-0x53c);}if(!k[w(0x447,0x446)]||!g[w(0x475,0x452)](k)){return;}const {startDate:l,endDate:m}=k;if(m<=f[w(0x421,0x425)]){j++;}else if(l>=f['endDate']){i++;}});return[j?{'class':v(-0x11a,-0x105),'children':[{'tag':'i','class':{'b-icon':0x1,'b-scroll-button':0x1,[e]:0x1}},c&&{'tag':'span','class':v(-0xf7,-0x108),'text':this['labelRenderer']({'resourceRecord':a,'isBefore':!![],'nbrEvents':j})}]}:null,i?{'class':v(-0xd6,-0xfa),'children':[c&&{'tag':v(-0xe3,-0x103),'class':'b-scroll-button-content','text':this[v(-0x127,-0x12a)]({'resourceRecord':a,'isBefore':![],'nbrEvents':i})},{'tag':'i','class':{'b-icon':0x1,'b-scroll-button':0x1,[d]:0x1}}]}:null];}[_sco(0x16f,0x168)](a){function x(a,b){return _sco(a-0x1d7,b);}const {client:b}=this,{target:c}=a,d=c[x(0x360,0x36b)]('.b-scroll-buttons-container'),e=c[x(0x360,0x374)](x(0x321,0x308)),f=d===null||d===void 0x0?void 0x0:d['dataset'][x(0x33c,0x352)],g=b[x(0x323,0x31a)][x(0x31c,0x302)](f);if(e&&b[x(0x35c,0x37c)](x(0x34c,0x359),{'domEvent':a,'resourceRecord':g})!==![]){const {visibleDateRange:h}=b,i=c[x(0x360,0x37a)](x(0x325,0x349));if(!g){return;}if(i){b[x(0x33f,0x339)](g,g[x(0x329,0x33f)](h[x(0x338,0x342)]),_scg[x(0x361,0x358)]({'block':x(0x324,0x321)},this[x(0x355,0x345)]));}else{b[x(0x33f,0x35f)](g,g['getEventEndingBefore'](h[x(0x331,0x33b)]),_scg['assign']({'block':x(0x359,0x378)},this['scrollOptions']));}}}[_sco(0x149,0x129)](a){const b=this;function y(a,b){return _sco(a-0xb0,b);}super[y(0x1f9,0x212)](a);if(!b[y(0x221,0x226)]){if(a){b[y(0x209,0x20e)][y(0x22f,0x235)]();}else{b['client'][y(0x204,0x1f0)][y(0x1ff,0x1fd)](b[y(0x209,0x1f4)]);b[y(0x217,0x21d)]();}}}}_scc[_sco(0x172,0x153)](ScrollButtons,![],_sco(0x162,0x181));
1
+ (function(a,b){const c=a();function n(a,b){return _scb(b-0x366,a);}while(!![]){try{const d=parseInt(n(0x4b5,0x4cc))/0x1*(-parseInt(n(0x4e3,0x4de))/0x2)+parseInt(n(0x490,0x4b4))/0x3*(-parseInt(n(0x50d,0x4ee))/0x4)+parseInt(n(0x4bd,0x4c2))/0x5*(parseInt(n(0x4c8,0x4d6))/0x6)+-parseInt(n(0x4f6,0x4e7))/0x7+-parseInt(n(0x4d3,0x4ca))/0x8+-parseInt(n(0x4e2,0x4c8))/0x9+parseInt(n(0x4c0,0x4b9))/0xa*(parseInt(n(0x4dd,0x4ef))/0xb);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x264d3));function _sca(){const z=['2155951iAspqb','eventStore','@bryntum/scheduler-thin/lib/feature/ScrollButtons.css','end','map','b-scroll-button-content','endDate','233196hmVeon','44KQAivq','$name','appendChild','isConfiguring','loadStylesheet','createElement','construct','refreshScrollButtons','b-scroll-button-wrap\x20b-scroll-forward','store','onElementClick','.b-scroll-forward','b-scroll-buttons-container','3inCcsS','raf','registerFeature','labelRenderer','easeTo','2694240xWsbIb','ion','span','closest','client','.b-scroll-button-wrap','b-scroll-button-wrap\x20b-scroll-backward','dataset','getEventEndingBefore','5SloRMO','get','b-sch-canvas\x20b-scroll-buttons-canvas','set','configurable','start','1783818nNLgrx','startDate','2192984pxHpsA','b-icon-before','99611Dadody','remove','height','Scheduler','scrollButtonsCanvas','mixin','recordId','attachToEventStore','rowManager','assign','1299822XYBYOh','scrollButtonClick','doDisable','rowStyleMap','trigger','visibleDateRange','.b-scroll-buttons-container','top','6GYuxLD','delayable','includes','getEventStartingAfter','generateScrollButton','scrollOptions','afterRenderRow','rows','getById'];_sca=function(){return z;};return _sca();}import _scc from'@bryntum/grid-thin/lib/feature/GridFeatureManager.js';import _scd from'@bryntum/core-thin/lib/mixin/InstancePlugin.js';import _sce from'@bryntum/core-thin/lib/mixin/Delayable.js';import _scf from'@bryntum/core-thin/lib/helper/DomHelper.js';import _scg from'@bryntum/core-thin/lib/helper/ObjectHelper.js';import _sch from'@bryntum/core-thin/lib/helper/DomSync.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x142;let f=c[d];return f;};return _scb(a,b);}import _sci from'../data/mixin/AttachToProjectMixin.js';function _sco(a,b){return _scb(b-0x236,a);}_scf[_sco(0x36e,0x37b)](_sco(0x3a5,0x3b9));export default class ScrollButtons extends _scd[_sco(0x3ac,0x3a1)](_sce,_sci){static [_sco(0x372,0x378)]='ScrollButtons';static [_sco(0x37d,0x396)]={'backwardIconCls':_sco(0x38d,0x39b),'forwardIconCls':'b-icon-after','labelRenderer':null,'scrollOptions':{'animate':{'duration':0x258,'easing':_sco(0x38e,0x388)},'y':![],'edgeOffset':0x32},'testConfig':{'scrollOptions':{'animate':{'duration':0x14,'easing':_sco(0x393,0x388)},'y':![],'edgeOffset':0x32}}};static get['pluginConfig'](){function p(a,b){return _sco(b,a- -0x25b);}return{'after':['onElementClick',p(0x159,0x137)]};}static [_sco(0x3b2,0x3af)]={'refreshScrollButtons':_sco(0x39a,0x385)};[_sco(0x3af,0x3a9)]=new Map();[_sco(0x362,0x37d)](a,b){super[q(0x459,0x468)](a,b);a[q(0x48f,0x48f)][q(0x499,0x475)]({'renderDone':q(0x48a,0x469),'thisObj':this});function q(a,b){return _sco(a,b-0xeb);}a[q(0x464,0x475)]({'visibleDateRangeChange':'refreshScrollButtons','thisObj':this});}['attachToEventStore'](a){super[r(0x3a7,0x3c0)](a);function r(a,b){return _sco(b,a-0x4);}a===null||a===void 0x0||a['ion']({'name':r(0x3bc,0x3b8),'change':'refreshScrollButtons','refresh':r(0x382,0x39b),'thisObj':this});}[_sco(0x3c5,0x3b4)]({row:a}){function s(a,b){return _sco(a,b- -0x28f);}this['rowStyleMap'][s(0xe3,0x106)](a['dataIndex'],{'height':a[s(0x11e,0x10f)],'top':a[s(0x12c,0x11e)]});}[_sco(0x393,0x37e)](){const a=this,{client:b}=a;if(!b[t(0x33a,0x324)]||a['disabled']){return;}function t(a,b){return _sco(a,b- -0x87);}if(!a[t(0x32d,0x319)]){a['scrollButtonsCanvas']=_scf[t(0x2fd,0x2f5)]({'className':t(0x32a,0x30d),'parent':b['timeAxisSubGridElement'],'retainElement':!![]});}_sch['sync']({'targetElement':a['scrollButtonsCanvas'],'domConfig':{'children':b[t(0x316,0x31d)][t(0x312,0x32e)][t(0x34e,0x334)](c=>{if(c['id']==null){return null;}function u(a,b){return t(b,a-0x19e);}const d=c['dataIndex'],e=b[u(0x497,0x4b0)][u(0x4cd,0x4db)](c['id']);if(!e){return null;}return{'class':u(0x49a,0x4b4),'dataset':{'recordId':e['id'],'rowIndex':d},'style':{'height':a['rowStyleMap'][u(0x4aa,0x487)](d)[u(0x4b5,0x4d0)],'top':a[u(0x4c0,0x4a7)][u(0x4aa,0x4c5)](d)[u(0x4c4,0x4ad)]},'children':a[u(0x4c9,0x4c8)](e)};})}});}[_sco(0x38f,0x3b2)](a){const {client:b,labelRenderer:c,forwardIconCls:d,backwardIconCls:e}=this,{visibleDateRange:f,eventStore:g}=b,h=a['events']||[];function w(a,b){return _sco(a,b- -0xc0);}let i=0x0,j=0x0;h['forEach'](k=>{if(!k['isScheduled']||!g[v(-0x27,-0x1e)](k)){return;}const {startDate:l,endDate:m}=k;function v(a,b){return _scb(a- -0x1a1,b);}if(m<=f[v(-0x3e,-0x42)]){j++;}else if(l>=f[v(-0x1a,0x0)]){i++;}});return[j?{'class':w(0x2d8,0x2cf),'children':[{'tag':'i','class':{'b-icon':0x1,'b-scroll-button':0x1,[e]:0x1}},c&&{'tag':w(0x2af,0x2cb),'class':'b-scroll-button-content','text':this[w(0x2e4,0x2c7)]({'resourceRecord':a,'isBefore':!![],'nbrEvents':j})}]}:null,i?{'class':w(0x2db,0x2bf),'children':[c&&{'tag':w(0x2a9,0x2cb),'class':w(0x2e8,0x2fc),'text':this[w(0x2ca,0x2c7)]({'resourceRecord':a,'isBefore':![],'nbrEvents':i})},{'tag':'i','class':{'b-icon':0x1,'b-scroll-button':0x1,[d]:0x1}}]}:null];}[_sco(0x381,0x381)](a){const {client:b}=this,{target:c}=a,d=c[x(0x11c,0xf9)](x(0x13c,0x128)),e=c[x(0x11c,0x129)](x(0x11e,0x10d)),f=d===null||d===void 0x0?void 0x0:d[x(0x120,0x12e)][x(0x132,0x133)],g=b[x(0x110,0x128)][x(0x146,0x14f)](f);function x(a,b){return _sco(b,a- -0x270);}if(e&&b[x(0x13a,0x130)](x(0x137,0x152),{'domEvent':a,'resourceRecord':g})!==![]){const {visibleDateRange:h}=b,i=c[x(0x11c,0x13e)](x(0x112,0xfe));if(!g){return;}const j=i?g[x(0x141,0x156)](h[x(0x14d,0x141)]):g[x(0x121,0x140)](h['startDate']);if(j){b['scrollResourceEventIntoView'](g,j,_scg[x(0x135,0x13e)]({'block':i?x(0x14a,0x12e):x(0x127,0x13a)},this[x(0x143,0x13d)]));}}}[_sco(0x390,0x3a8)](a){function y(a,b){return _sco(b,a- -0x99);}const b=this;super[y(0x30f,0x2fa)](a);if(!b[y(0x2e1,0x2d4)]){if(a){b[y(0x307,0x30c)][y(0x304,0x2fa)]();}else{b[y(0x2f4,0x2f3)]['timeAxisSubGridElement'][y(0x2e0,0x2e3)](b['scrollButtonsCanvas']);b[y(0x2e5,0x2c1)]();}}}}_scc[_sco(0x376,0x386)](ScrollButtons,![],_sco(0x3c1,0x39f));
@@ -1,3 +1,10 @@
1
+ :root, :host {
2
+ /**
3
+ * Simple event editor z-index (above event elements)
4
+ */
5
+ --b-simple-event-edit-z-index : 100;
6
+ }
7
+
1
8
  .b-simple-event-editor {
2
9
  /**
3
10
  * Background of the editor
@@ -9,9 +16,9 @@
9
16
  border-radius : inherit;
10
17
 
11
18
  /* Must be above the event elements */
12
- z-index : 100;
13
19
 
14
20
  --b-widget-floating-box-shadow : none;
21
+ z-index : var(--b-simple-event-edit-z-index);
15
22
 
16
23
  &.b-target-has-border .b-field {
17
24
  --b-text-field-border-width : 0;
@@ -1 +1 @@
1
- (function(a,b){function q(a,b){return _scb(b-0x283,a);}const c=a();while(!![]){try{const d=parseInt(q(0x352,0x37d))/0x1+parseInt(q(0x366,0x366))/0x2*(parseInt(q(0x37d,0x381))/0x3)+-parseInt(q(0x361,0x35f))/0x4+parseInt(q(0x34d,0x375))/0x5*(parseInt(q(0x329,0x33f))/0x6)+-parseInt(q(0x355,0x360))/0x7*(-parseInt(q(0x39e,0x394))/0x8)+parseInt(q(0x35c,0x370))/0x9*(parseInt(q(0x32a,0x343))/0xa)+-parseInt(q(0x351,0x33b))/0xb;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x3a98f));import _scc from'@bryntum/grid-thin/lib/feature/GridFeatureManager.js';import _scd from'@bryntum/core-thin/lib/mixin/InstancePlugin.js';import _sce from'@bryntum/core-thin/lib/widget/Editor.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xb6;let f=c[d];return f;};return _scb(a,b);}function _sca(){const D=['c-c','field','down','clientListenersDetacher','onEditorComplete','focus','eventRecord','inputField','396450dPecOB','getElementFromEventRecord','addCls','t-t','isAssignment','795365BydXAy','offsetWidth','cancel','project','style','eventInnerSelector','mixin','event','213961waVHOf','editEvent','right','name','3MCmCDc','destroy','doDestroy','maxHeight','reset','borderWidth','maxWidth','none','scrollResourceEventIntoView','b-simple-event-editor','element','readOnly','translate','Scheduler','complete','beforecancel','freeStm','editorConfig','client','2077792raHGgo','registerFeature','remove','startEdit','add','7636079VJSQuj','getById','eventDblClick','onEventEnterKey','12zMruam','removeCls','pluginConfig','start','10eoFmPF','object','getElementFromAssignmentRecord','onEditorCancel','beforestart','hasStmCapture','ion','configurable','from','borderRadius','left','SimpleEventEdit','timeAxisSubGridElement','onDragCreateEnd','rtl','canvases','disabled','loadStylesheet','resource','beforecomplete','editor','$name','classList','scheduler','render','eventStore','triggerEvent','isCreating','452476sEWkqB','7VebNvq','isModel','construct','@bryntum/scheduler-thin/lib/feature/SimpleEventEdit.css','revertFocus','captureStm','422884Niznln','inline'];_sca=function(){return D;};return _sca();}import _scf from'@bryntum/core-thin/lib/helper/DomHelper.js';import _scg from'@bryntum/core-thin/lib/helper/util/Rectangle.js';function _scr(a,b){return _scb(a- -0x371,b);}import _sch from'./mixin/TaskEditStm.js';_scf[_scr(-0x2a0,-0x2a5)](_scr(-0x291,-0x2b4));export default class SimpleEventEdit extends _scd[_scr(-0x279,-0x275)](_sch){static [_scr(-0x29c,-0x27c)]=_scr(-0x2a6,-0x298);static [_scr(-0x2aa,-0x2b2)]={'triggerEvent':_scr(-0x2b7,-0x2c9),'eventRecord':null,'field':_scr(-0x274,-0x265),'editorConfig':null};static get[_scr(-0x2b3,-0x2a1)](){function s(a,b){return _scr(b-0x438,a);}return{'after':[s(0x15c,0x182),s(0x1c3,0x1c2)]};}[_scr(-0x292,-0x2a4)](a,b){const c=this;c[t(0x33d,0x33d)]=a;function t(a,b){return _scr(b-0x5d7,a);}a['eventEdit']=c;super['construct'](a,b);c['clientListenersDetacher']=a[t(0x316,0x32c)]({[c[t(0x329,0x340)]]:({eventRecord:d,eventElement:e})=>c[t(0x38a,0x361)](d,d[t(0x33f,0x338)],e),'dragcreateend':c[t(0x326,0x333)],'thisObj':c});}[_scr(-0x271,-0x265)](){var a;this[u(0xbe,0xb3)]();(a=this['editor'])===null||a===void 0x0||a[u(0xd5,0x101)]();function u(a,b){return _scr(a-0x347,b);}super[u(0xd6,0xad)]();}get[_scr(-0x298,-0x296)](){return this['scheduler']['eventStore'];}get[_scr(-0x27c,-0x288)](){function v(a,b){return _scr(a-0x2ab,b);}return this[v(0x4a,0x5f)][v(0x2f,0x48)];}async[_scr(-0x276,-0x28d)](a,b,c,d){const e=this,{scheduler:f}=e,{isHorizontal:g}=f,{eventEdit:h}=f['features'];function w(a,b){return _scr(a-0x4ce,b);}if(!a[w(0x23b,0x248)]){a=typeof a===w(0x21e,0x233)?e['eventStore']['createRecord'](a):e['eventStore'][w(0x216,0x1fc)](a);}if(!b){b=a[w(0x22f,0x246)];}if(!c){c=f[w(0x24b,0x234)](a);}if(f[w(0x266,0x285)]||e['disabled']||a[w(0x266,0x26c)]||b[w(0x266,0x264)]||h&&!h[w(0x22d,0x201)]&&!a[w(0x238,0x22e)]){return;}let {editor:i}=e;c=_scf[w(0x244,0x256)](c,f[w(0x254,0x245)])||c;a=a[w(0x24e,0x250)]?a[w(0x256,0x248)]:a;e['resource']=b;e[w(0x248,0x255)]=a;e[w(0x265,0x265)]=c;f[w(0x24c,0x25c)]('b-event-editor-editing');if(i){i[w(0x235,0x248)](f[w(0x22c,0x236)][w(0x256,0x27a)]);}else{e[w(0x231,0x20d)]=i=_sce['new']({'owner':f['timeAxisSubGrid'],'appendTo':f[w(0x22c,0x230)][w(0x256,0x24d)],'constrainTo':![],'scrollAction':w(0x262,0x264),'maxHeight':0x28,'align':{'align':g?w(0x242,0x23c):w(0x24d,0x244)},'cls':w(0x264,0x254),'internalListeners':{'complete':w(0x246,0x24f),'cancel':w(0x220,0x237),'thisObj':e},'onInternalKeyDown':p=>p['stopPropagation']()},e[w(0x26c,0x272)]);i[w(0x265,0x278)]['retainElement']=!![];i[w(0x23e,0x23c)]=()=>{var p;function x(a,b){return w(b-0x1de,a);}(p=f['getElementFromEventRecord'](e[x(0x43a,0x426)],e['resourceRecord'],!![]))===null||p===void 0x0||p[x(0x453,0x425)]({'scrollIntoView':![]});};e['relayEvents'](e[w(0x231,0x20b)],[w(0x221,0x222),'start',w(0x230,0x241),w(0x269,0x283),w(0x26a,0x269),w(0x251,0x22b)]);}if(d){e['applyStmCapture'](d);}else if(d!==![]&&!e[w(0x222,0x212)]){e[w(0x23f,0x265)](!![]);}if(a[w(0x238,0x247)]){a[w(0x25a,0x23c)]='';}const j=globalThis['getComputedStyle'](c);let {borderRadius:k}=j;if(parseFloat(j['borderWidth'])){i[w(0x265,0x277)][w(0x233,0x260)][w(0x214,0x220)]('b-target-has-border');const p=parseFloat(j[w(0x260,0x24b)]);if(!isNaN(p)){k=Math['max'](0x0,parseFloat(k)-p)+'px';}}i[w(0x249,0x245)][w(0x265,0x266)][w(0x253,0x265)][w(0x226,0x1f7)]=k;const l=_scg[w(0x225,0x210)](f[w(0x229,0x242)]),m=_scg[w(0x225,0x214)](c)[w(0x267,0x24a)](-l['x'],-l['y']),n=g?f[w(0x22b,0x250)]?m[w(0x259,0x24b)]>f[w(0x229,0x212)][w(0x250,0x237)]:m[w(0x227,0x23c)]<0x0:m['top']<0x0;if(n){await f[w(0x263,0x23c)](b,a,{[g?w(0x241,0x231):'block']:w(0x21c,0x21a),[g?w(0x261,0x239):w(0x25e,0x276)]:0x64,'edgeOffset':0x0});}const o=await i[w(0x213,0x1f4)]({'target':c,'record':a,'field':e[w(0x243,0x248)]});if(!o){e['freeStm']();e['reset']();return;}f['navigator'][w(0x22d,0x226)]=!![];}[_scr(-0x288,-0x270)](){this['eventRecord'][y(0xb6,0xbd)]=![];this[y(0xe3,0xe4)]();function y(a,b){return _scr(b-0x353,a);}this[y(0xe8,0xf0)](!![]);}[_scr(-0x2ae,-0x2b8)](){const {eventRecord:a}=this;function z(a,b){return _scr(b-0x1d9,a);}this[z(-0xaf,-0x96)]();this[z(-0xa4,-0x8a)](![]);if(a[z(-0xc6,-0xbd)]){a[z(-0x70,-0x85)]();}}[_scr(-0x26f,-0x28a)](){function A(a,b){return _scr(a- -0x76,b);}this[A(-0x310,-0x318)][A(-0x32a,-0x313)]('b-event-editor-editing');this['scheduler']['navigator']['disabled']=![];this['eventRecord']=null;this[A(-0x315,-0x340)]=null;}[_scr(-0x2b6,-0x2ad)]({assignmentRecord:a,eventRecord:b}){function B(a,b){return _scr(a-0x1eb,b);}const c=a?this[B(-0xaf,-0x8c)][B(-0xc4,-0xa1)](a):this['scheduler'][B(-0x98,-0xbe)](b),d=(a||b)[B(-0xb4,-0xdf)];this[B(-0x8b,-0x93)](b,d,c);}[_scr(-0x2a4,-0x2ba)]({eventRecord:a,resourceRecord:b,eventElement:c,stmCapture:d}){this[C(0x20a,0x233)]=c;function C(a,b){return _scr(a-0x473,b);}this[C(0x1fd,0x1eb)](a,b,c,d);}}_scc[_scr(-0x25f,-0x24e)](SimpleEventEdit,![],_scr(-0x266,-0x238));
1
+ (function(a,b){const c=a();function q(a,b){return _scb(a- -0xfb,b);}while(!![]){try{const d=-parseInt(q(0x74,0x4b))/0x1*(parseInt(q(0x58,0x78))/0x2)+-parseInt(q(0x8d,0x94))/0x3+-parseInt(q(0x52,0x7d))/0x4+parseInt(q(0x48,0x1e))/0x5+parseInt(q(0x4b,0x27))/0x6*(parseInt(q(0x47,0x3d))/0x7)+-parseInt(q(0x99,0x6f))/0x8*(parseInt(q(0x8b,0x73))/0x9)+parseInt(q(0x7d,0x75))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xa499d));import _scc from'@bryntum/grid-thin/lib/feature/GridFeatureManager.js';import _scd from'@bryntum/core-thin/lib/mixin/InstancePlugin.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x142;let f=c[d];return f;};return _scb(a,b);}function _sca(){const E=['doDestroy','@bryntum/scheduler-thin/lib/feature/SimpleEventEdit.css','1218160timIfO','clientListenersDetacher','isModel','retainElement','readOnly','onEventEnterKey','15188PWsAOi','getComputedStyle','onEditorComplete','isAssignment','getElementFromEventRecord','resourceRecord','resource','editor','t-t','eventEdit','classList','timeAxisSubGrid','startEdit','field','triggerEvent','name','canvases','eventRecord','rtl','inputField','pluginConfig','SimpleEventEdit','configurable','object','Scheduler','editorConfig','c-c','features','149HpwHHR','scrollResourceEventIntoView','beforestart','captureStm','disabled','eventDblClick','cancel','onEditorCancel','none','23338150XidvUs','event','style','max','element','mixin','b-target-has-border','b-event-editor-editing','project','scheduler','borderWidth','registerFeature','getById','isCreating','9831033qyhUxA','construct','2729547sjdGFp','navigator','b-simple-event-editor','remove','loadStylesheet','top','ion','reset','from','createRecord','left','focus','8sXLVGk','getElementFromAssignmentRecord','timeAxisSubGridElement','start','eventInnerSelector','complete','applyStmCapture','eventStore','destroy','105sXZqjn','3081435yEVphU','borderRadius','freeStm','464934VJKyPg','removeCls','beforecomplete','onDragCreateEnd','editEvent'];_sca=function(){return E;};return _sca();}import _sce from'@bryntum/core-thin/lib/widget/Editor.js';import _scf from'@bryntum/core-thin/lib/helper/DomHelper.js';import _scg from'@bryntum/core-thin/lib/helper/util/Rectangle.js';import _sch from'./mixin/TaskEditStm.js';function _scr(a,b){return _scb(b-0x1a9,a);}_scf[_scr(0x328,0x335)](_scr(0x2e0,0x2f5));export default class SimpleEventEdit extends _scd[_scr(0x314,0x326)](_sch){static ['$name']=_scr(0x2e3,0x311);static [_scr(0x2fa,0x312)]={'triggerEvent':_scr(0x309,0x31d),'eventRecord':null,'field':_scr(0x2fa,0x30b),'editorConfig':null};static get[_scr(0x307,0x310)](){function s(a,b){return _scr(b,a- -0x21c);}return{'after':['onEventEnterKey',s(0xd7,0xd0)]};}[_scr(0x351,0x330)](a,b){const c=this;c['scheduler']=a;function t(a,b){return _scr(b,a- -0x4ec);}a[t(-0x1e7,-0x1f1)]=c;super[t(-0x1bc,-0x194)](a,b);c[t(-0x1f5,-0x205)]=a[t(-0x1b5,-0x198)]({[c[t(-0x1e2,-0x20a)]]:({eventRecord:d,eventElement:e})=>c[t(-0x1f9,-0x20f)](d,d[t(-0x1ea,-0x1ec)],e),'dragcreateend':c[t(-0x1fa,-0x1cd)],'thisObj':c});}[_scr(0x2de,0x2f4)](){var a;this['clientListenersDetacher']();(a=this[u(0x3ca,0x3bb)])===null||a===void 0x0||a[u(0x40c,0x3f3)]();function u(a,b){return _scr(b,a-0xc7);}super[u(0x3bb,0x3a9)]();}get[_scr(0x352,0x344)](){function v(a,b){return _scr(b,a-0x1f0);}return this[v(0x51a,0x4f1)]['eventStore'];}get[_scr(0x31b,0x329)](){function w(a,b){return _scr(b,a-0x180);}return this['client'][w(0x4a9,0x48f)];}async['editEvent'](a,b,c,d){const e=this,{scheduler:f}=e,{isHorizontal:g}=f,{eventEdit:h}=f[x(-0x73,-0x61)];if(!a[x(-0x9f,-0x80)]){a=typeof a===x(-0x7a,-0x65)?e[x(-0x6,-0x34)][x(-0x59,-0x3e)](a):e[x(-0x3f,-0x34)][x(-0x69,-0x4b)](a);}if(!b){b=a['resource'];}if(!c){c=f[x(-0x8f,-0x78)](a);}function x(a,b){return _scr(a,b- -0x378);}if(f[x(-0x94,-0x7e)]||e['disabled']||a[x(-0x51,-0x7e)]||b[x(-0xa7,-0x7e)]||h&&!h['disabled']&&!a[x(-0x5a,-0x4a)]){return;}let {editor:i}=e;c=_scf['down'](c,f[x(-0x59,-0x37)])||c;a=a[x(-0x69,-0x79)]?a[x(-0x83,-0x56)]:a;e[x(-0x87,-0x76)]=b;e[x(-0x5e,-0x6b)]=a;e[x(-0x6c,-0x53)]=c;f['addCls'](x(-0x4d,-0x50));if(i){i['render'](f[x(-0x59,-0x6c)][x(-0x66,-0x56)]);}else{e[x(-0x9c,-0x75)]=i=_sce['new']({'owner':f[x(-0x80,-0x71)],'appendTo':f[x(-0x84,-0x6c)][x(-0x71,-0x56)],'constrainTo':![],'scrollAction':x(-0x6d,-0x58),'maxHeight':0x28,'align':{'align':g?x(-0x6c,-0x62):x(-0x47,-0x74)},'cls':x(-0x24,-0x45),'internalListeners':{'complete':'onEditorComplete','cancel':x(-0x3f,-0x59),'thisObj':e},'onInternalKeyDown':p=>p['stopPropagation']()},e[x(-0x68,-0x63)]);i[x(-0x41,-0x53)][x(-0x54,-0x7f)]=!![];i['revertFocus']=()=>{var p;function y(a,b){return x(b,a- -0xb);}(p=f[y(-0x83,-0x91)](e[y(-0x76,-0x70)],e[y(-0x82,-0xa2)],!![]))===null||p===void 0x0||p[y(-0x47,-0x2e)]({'scrollIntoView':![]});};e['relayEvents'](e[x(-0x7c,-0x75)],[x(-0x82,-0x5e),x(-0x5c,-0x38),x(-0x71,-0x87),x(-0x1f,-0x36),'beforecancel',x(-0x68,-0x5a)]);}if(d){e[x(-0x27,-0x35)](d);}else if(d!==![]&&!e['hasStmCapture']){e[x(-0x4a,-0x5d)](!![]);}if(a[x(-0x36,-0x4a)]){a[x(-0x52,-0x6d)]='';}const j=globalThis[x(-0x8d,-0x7b)](c);let {borderRadius:k}=j;if(parseFloat(j[x(-0x53,-0x4d)])){i[x(-0x48,-0x53)][x(-0x52,-0x72)]['add'](x(-0x46,-0x51));const p=parseFloat(j[x(-0x48,-0x4d)]);if(!isNaN(p)){k=Math[x(-0x66,-0x54)](0x0,parseFloat(k)-p)+'px';}}i[x(-0x4e,-0x69)]['element'][x(-0x7b,-0x55)][x(-0x9b,-0x8b)]=k;const l=_scg[x(-0x14,-0x3f)](f[x(-0x40,-0x39)]),m=_scg['from'](c)['translate'](-l['x'],-l['y']),n=g?f[x(-0x91,-0x6a)]?m['right']>f[x(-0xe,-0x39)]['offsetWidth']:m[x(-0x2e,-0x3d)]<0x0:m[x(-0x64,-0x42)]<0x0;if(n){await f[x(-0x44,-0x5f)](b,a,{[g?'inline':'block']:'start',[g?'maxWidth':'maxHeight']:0x64,'edgeOffset':0x0});}const o=await i[x(-0x4c,-0x70)]({'target':c,'record':a,'field':e[x(-0x53,-0x6f)]});if(!o){e[x(-0x6e,-0x8a)]();e['reset']();return;}f[x(-0x50,-0x46)]['disabled']=!![];}[_scr(0x2e4,0x2fe)](){this['eventRecord'][z(0x50b,0x52f)]=![];function z(a,b){return _scr(b,a-0x1dd);}this[z(0x515,0x510)]();this[z(0x4cb,0x4ca)](!![]);}[_scr(0x2fa,0x31f)](){function A(a,b){return _scr(a,b- -0x426);}const {eventRecord:a}=this;this[A(-0x109,-0xee)]();this[A(-0x11c,-0x138)](![]);if(a[A(-0xdf,-0xf8)]){a[A(-0x10f,-0xf2)]();}}[_scr(0x33f,0x338)](){this[B(-0x26a,-0x249)][B(-0x2af,-0x283)](B(-0x224,-0x24b));function B(a,b){return _scr(a,b- -0x573);}this[B(-0x22b,-0x249)][B(-0x231,-0x241)][B(-0x26b,-0x257)]=![];this[B(-0x27e,-0x266)]=null;this['resource']=null;}[_scr(0x2d5,0x2fb)]({assignmentRecord:a,eventRecord:b}){const c=a?this[C(0x17a,0x197)][C(0x18e,0x161)](a):this[C(0x17a,0x177)][C(0x150,0x162)](b),d=(a||b)[C(0x152,0x168)];function C(a,b){return _scr(b,a- -0x1b0);}this['editEvent'](b,d,c);}['onDragCreateEnd']({eventRecord:a,resourceRecord:b,eventElement:c,stmCapture:d}){function D(a,b){return _scr(a,b-0x224);}this[D(0x532,0x549)]=c;this[D(0x527,0x517)](a,b,c,d);}}_scc[_scr(0x30c,0x32c)](SimpleEventEdit,![],_scr(0x31c,0x314));
@@ -1 +1 @@
1
- (function(a,b){const c=a();function l(a,b){return _scb(b-0x1e1,a);}while(!![]){try{const d=parseInt(l(0x292,0x27b))/0x1*(parseInt(l(0x237,0x258))/0x2)+-parseInt(l(0x269,0x26c))/0x3*(-parseInt(l(0x24b,0x25b))/0x4)+parseInt(l(0x26c,0x28f))/0x5*(-parseInt(l(0x2c1,0x2a0))/0x6)+-parseInt(l(0x2bc,0x2a4))/0x7+-parseInt(l(0x261,0x27c))/0x8+-parseInt(l(0x2b1,0x2a5))/0x9+parseInt(l(0x267,0x27d))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x39b0b));import _scc from'@bryntum/grid-thin/lib/feature/GridFeatureManager.js';function _scm(a,b){return _scb(b- -0x173,a);}import _scd from'@bryntum/grid-thin/lib/feature/Split.js';function _sca(){const D=['6JiyRHt','element','getClientConfig','timeRanges','2882096NRjPdc','3113811gEnpEj','assignments','pluginConfig','events','isGanttBase','endDate','atRecord','onReconfigure','isSplit','left','start','from','startDate','remainingWidth','call','getVirtualCoordFromDate','right','direction','b-icon\x20b-icon-clear','scrollable','project','registerFeature','isSchedulerProBase','2zWOvAf','unit','timeAxisSubGrid','159908trmVJQ','eventLayout','both','merge','timeAxisSubGridElement','atDate','client','Split','reconfigure','horizontal','resourceTimeRanges','configurable','setPath','assignmentStore','processOptions','unsplit','push','27oHYDYv','forEach','constrainDragToTimeline','syncSplits','splitDirection','timeAxisColumn','Splitting\x20is\x20not\x20supported\x20in\x20vertical\x20mode','getDateFromCoordinate','name','b-icon\x20b-icon-split-both','width','disabled','splitFrom','b-icon\x20b-icon-split-vertical','resources','399925ejXzew','3378384cOfBvi','10412950BNUHBs','then','rtl','infiniteScroll','indexOf','vertical','$name','onElementResize','timeAxis','afterConfigChange','L{vertically}','dependencies','populateCellMenu','split','useInitialAnimation','unsplitSchedule','eventDrag','end','1923545qGukyk','splitX','center','scrollToDate','selectedCollection','features','viewPreset','internalEventLayout','L{horizontally}','crudManager','atColumn','all','isReconfiguring','bodyContainer','L{split}','detachListeners','isHorizontal'];_sca=function(){return D;};return _sca();}import _sce from'@bryntum/core-thin/lib/helper/DateHelper.js';import _scf from'@bryntum/core-thin/lib/helper/ObjectHelper.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x68;let f=c[d];return f;};return _scb(a,b);}import _scg from'@bryntum/core-thin/lib/helper/util/Rectangle.js';const startScrollOptions=Object['freeze']({'animate':![],'block':_scm(-0x13a,-0x109)}),endScrollOptions=Object['freeze']({'animate':![],'block':_scm(-0xce,-0xc6)});export default class Split extends _scd{static [_scm(-0xde,-0xd1)]=_scm(-0x100,-0xf2);static [_scm(-0x103,-0xee)]={'relayProperties':{'value':{'barMargin':0x1,'eventColor':0x1,'eventStyle':0x1,'eventLayout':0x1,'fillTicks':0x1,'resourceMargin':0x1,'snap':0x1,'tickSize':0x1},'$config':{'merge':_scm(-0xdd,-0xf6)}}};static get[_scm(-0x7c,-0xad)](){const a=super[n(0x1f,0x4f)];a['after'][n(-0x1d,-0x19)]('populateScheduleMenu');function n(a,b){return _scm(b,a-0xcc);}return a;}[_scm(-0x94,-0xb2)](a,b,c,d){var e;const {client:f}=this,g=super['getClientConfig'](a,b,c,d);if(!f['isSchedulerBase']&&!f[o(0x3c,0x14)]&&!f[o(0x8e,0x83)]){return g;}delete g['store'];delete g[o(0x8d,0x6f)];function o(a,b){return _scm(b,a-0x139);}delete g[o(0x5f,0x8d)];delete g[o(0x8b,0x5d)];delete g[o(0x6d,0x3b)];delete g[o(0x4a,0x28)];delete g[o(0x88,0x75)];g['project']=f['project'];g[o(0x4d,0x42)]=g[o(0x3a,0x11)][o(0x4d,0x4d)];g[o(0x7d,0xa2)]=f[o(0x7d,0x8f)];g['viewPreset']=f[o(0x7a,0x7f)];g[o(0x32,0x4)]=f[o(0x32,0x17)];g[o(0x8f,0xa8)]=f[o(0x8f,0x7d)];g[o(0x78,0x95)]=f['selectedCollection'];g[o(0x70,0x4c)]=![];g[o(0x41,0x6f)]=f[o(0x7b,0x8c)];if(((e=g['features'])===null||e===void 0x0?void 0x0:e['eventDrag'])!==![]){_scf[o(0x4c,0x2e)](g,'features.eventDrag.constrainDragToTimeline',![]);f[o(0x79,0x8d)][o(0x72,0x93)][o(0x53,0x62)]=![];}return g;}['unsplitCleanup'](a){function p(a,b){return _scm(a,b- -0x254);}this[p(-0x336,-0x347)][p(-0x324,-0x34e)][p(-0x322,-0x324)]();}[_scm(-0xd0,-0xce)](a){function q(a,b){return _scm(a,b- -0x1ed);}if(a[q(-0x2a3,-0x2cd)]==='eventLayout'){if(this[q(-0x2e9,-0x2f8)]){this[q(-0x2dc,-0x2d2)](b=>{function r(a,b){return q(b,a-0x6c5);}b['eventLayout']=this[r(0x3e5,0x3df)][r(0x41a,0x40d)];});}}else{super[q(-0x2c7,-0x2bb)](a);}}[_scm(-0xf4,-0xeb)](a){const {client:b}=this,c=_scg[s(0x165,0x16e)](b[s(0x1ba,0x19b)]);let {atDate:d,atRecord:e}=a;if(a[s(0x16b,0x185)]!==s(0x17d,0x179)&&!a[s(0x1b2,0x1d6)]&&!a[s(0x1c4,0x1c0)]&&!d){const f=b[s(0x18c,0x1af)](c[s(0x1aa,0x17e)]['x'],'round',![]);if(f){a['atDate']=d=f;a[s(0x1b2,0x1d6)]=b[s(0x18a,0x1a9)];}}function s(a,b){return _scm(b,a-0x26d);}if(d){if(!a[s(0x16b,0x160)]){a[s(0x16b,0x14d)]=e?s(0x176,0x17f):s(0x19b,0x17b);}a['splitX']=b[s(0x169,0x17d)](d)-b[s(0x173,0x18f)][s(0x16d,0x149)]['x'];if(b[s(0x198,0x18a)]){a[s(0x1a9,0x1d1)]+=c['width']-_scg[s(0x165,0x16c)](b[s(0x178,0x17b)])[s(0x16a,0x147)];}else{a['splitX']+=_scg[s(0x165,0x150)](b['timeAxisSubGridElement'],b[s(0x1b5,0x184)])[s(0x163,0x160)];}a[s(0x167,0x13e)]=c[s(0x18f,0x199)]-a[s(0x1a9,0x1b1)];}return super[s(0x182,0x169)](a);}async['split'](a={}){const {client:b}=this;this[t(-0x29,0x9)](t(-0x1b,-0x40));if(b['isVertical']){throw new Error(t(-0x55,-0x61));}function t(a,b){return _scm(b,a-0x8d);}const c=await super[t(-0x3d,-0x45)](a),d=(e,f)=>{function u(a,b){return t(a-0x28f,b);}e[u(0x22b,0x241)]({'viewPreset':f[u(0x25d,0x28e)],'startDate':f[u(0x215,0x219)],'endDate':f[u(0x272,0x260)]});};if(c){if(a[t(-0x67,-0x66)]){await Promise[t(-0x2d,-0x46)]([c[0x0][t(-0x35,-0x4)](_sce['add'](a[t(-0x67,-0x42)],-0x1,b[t(-0x42,-0x5a)][t(-0x6e,-0x5b)]),endScrollOptions),c[0x1][t(-0x35,-0xf)](a[t(-0x67,-0x6a)],startScrollOptions)]);}if(b[t(-0x47,-0x42)]){if(a['direction']==='horizontal'){d(c[0x1]['timeAxis'],c[0x0][t(-0x42,-0x4b)]);}if(a[t(-0x75,-0x44)]===t(-0x6a,-0x63)){d(c[0x2][t(-0x42,-0x60)],c[0x0][t(-0x42,-0x6c)]);d(c[0x3][t(-0x42,-0x1a)],c[0x1][t(-0x42,-0x11)]);}}}b[t(-0x6d,-0x95)][t(-0x73,-0x8b)]['x']+=0.5;c[t(-0x5a,-0x49)](e=>{function v(a,b){return t(b- -0x28a,a);}e[v(-0x2c4,-0x2cc)]['ion']({'name':v(-0x276,-0x2a5),'reconfigure':'onReconfigure','thisObj':this});});return c;}[_scm(-0xaa,-0xcb)](){}['populateScheduleMenu']({items:a,date:b,record:c}){const d=this,{isSplit:e}=d,{splitFrom:f}=d['client'];function w(a,b){return _scm(b,a-0x4fb);}if(!d[w(0x41e,0x440)]&&d['client'][w(0x446,0x421)]){a['splitSchedule']={'text':w(0x444,0x475),'localeClass':d,'icon':w(0x420,0x44c),'weight':0x1f4,'separator':!![],'hidden':e||f,'menu':{'splitHorizontally':{'text':w(0x43e,0x431),'icon':'b-icon\x20b-icon-split-horizontal','localeClass':d,'weight':0x64,'onItem'(){function x(a,b){return w(a- -0x769,b);}d[x(-0x338,-0x31f)]({'atRecord':c,'direction':x(-0x35e,-0x33a)})[x(-0x344,-0x35c)]();}},'splitVertically':{'text':w(0x42e,0x45d),'icon':w(0x420,0x403),'localeClass':d,'weight':0xc8,'onItem'(){function y(a,b){return w(b- -0x37b,a);}d[y(0x98,0xb6)]({'atDate':b})[y(0xce,0xaa)]();}},'splitBoth':{'text':'L{both}','icon':w(0x41c,0x40a),'localeClass':d,'weight':0x12c,'onItem'(){function z(a,b){return w(a- -0x745,b);}d[z(-0x314,-0x2f0)]({'atDate':b,'atRecord':c,'direction':z(-0x341,-0x331)})[z(-0x320,-0x2f7)]();}}}};a[w(0x433,0x458)]={'text':'L{unsplit}','localeClass':d,'icon':w(0x3fa,0x402),'hidden':!(e||f),'weight':0x226,'onItem'(){function A(a,b){return w(b- -0x556,a);}(f||d)[A(-0x133,-0x145)]();}};}}[_scm(-0x8b,-0xa8)]({suppressRefresh:a,config:b}){const {client:c}=this;function B(a,b){return _scm(b,a-0x326);}if(b&&!this[B(0x26d,0x23b)]){this[B(0x26d,0x247)]=!![];const e=c[B(0x24a,0x265)]?c[B(0x24a,0x245)]:c;if(e[B(0x242,0x263)]&&e[B(0x242,0x217)]!==B(0x254,0x257)){var d;(d=c[B(0x241,0x21e)])===null||d===void 0x0||d[B(0x221,0x22a)](c,f=>{var g,h;const {subViews:i}=e,j=i[C(-0x29e,-0x296)](f),k=i['length']>0x2?j+(j>0x1?-0x1:0x1)*0x2:0x1-j;(g=i[j])===null||g===void 0x0||g['timeAxis']['reconfigure'](b,a,![]);function C(a,b){return B(b- -0x4e9,a);}(h=i[k])===null||h===void 0x0||h['timeAxis']['reconfigure'](b,a,![]);});}this[B(0x26d,0x268)]=![];}}}_scc[_scm(-0x11c,-0xfe)](Split,![],'Scheduler');
1
+ (function(a,b){function l(a,b){return _scb(a- -0xe9,b);}const c=a();while(!![]){try{const d=parseInt(l(0x1d,0x3a))/0x1*(-parseInt(l(-0x6,0x17))/0x2)+-parseInt(l(0x15,0xf))/0x3+-parseInt(l(-0x19,-0x4e))/0x4+-parseInt(l(-0x22,-0x30))/0x5+-parseInt(l(0x18,-0x2))/0x6*(-parseInt(l(-0x26,-0x27))/0x7)+parseInt(l(0x11,0x16))/0x8*(-parseInt(l(0x0,-0x35))/0x9)+parseInt(l(-0x4,-0x6))/0xa*(parseInt(l(0x3d,0x39))/0xb);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x5d0a8));function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xbb;let f=c[d];return f;};return _scb(a,b);}function _scm(a,b){return _scb(b-0x3b4,a);}import _scc from'@bryntum/grid-thin/lib/feature/GridFeatureManager.js';function _sca(){const C=['detachListeners','timeAxisSubGrid','timeAxis','2237815fFjBjd','project','b-icon\x20b-icon-split-both','selectedCollection','reconfigure','L{split}','isSplit','center','atDate','2241256OTdwdS','startDate','events','assignmentStore','processOptions','all','timeAxisSubGridElement','Split','isVertical','viewPreset','crudManager','getDateFromCoordinate','splitSchedule','timeAxisColumn','isBottomSplit','features','left','atColumn','onElementResize','170766YgYNHH','unsplitSchedule','338690avspUd','onReconfigure','isHorizontal','L{both}','360TrghCY','client','constrainDragToTimeline','vertical','b-icon\x20b-icon-split-horizontal','timeRanges','assignments','forEach','right','afterConfigChange','unsplit','getVirtualCoordFromDate','endDate','configurable','unit','isReconfiguring','L{vertically}','37304wChUan','both','then','Scheduler','272358vUmYdk','features.eventDrag.constrainDragToTimeline','scrollable','36wJWsvj','after','L{unsplit}','splitFrom','syncSplits','6fqmreh','name','populateCellMenu','splitDirection','from','end','bodyContainer','Splitting\x20is\x20not\x20supported\x20in\x20vertical\x20mode','internalEventLayout','scrollToDate','resourceTimeRanges','pluginConfig','push','splitX','disabled','isGanttBase','merge','useInitialAnimation','indexOf','freeze','resources','eventDrag','width','populateScheduleMenu','registerFeature','round','direction','call','ion','b-icon\x20b-icon-clear','b-icon\x20b-icon-split-vertical','getClientConfig','649BUKINC','horizontal','add','split','remainingWidth','rtl','eventLayout','L{horizontally}','infiniteScroll','210357VXdfEf'];_sca=function(){return C;};return _sca();}import _scd from'@bryntum/grid-thin/lib/feature/Split.js';import _sce from'@bryntum/core-thin/lib/helper/DateHelper.js';import _scf from'@bryntum/core-thin/lib/helper/ObjectHelper.js';import _scg from'@bryntum/core-thin/lib/helper/util/Rectangle.js';const startScrollOptions=Object[_scm(0x4e2,0x4cd)]({'animate':![],'block':'start'}),endScrollOptions=Object[_scm(0x4b7,0x4cd)]({'animate':![],'block':_scm(0x4d0,0x4bf)});export default class Split extends _scd{static ['$name']=_scm(0x498,0x48b);static [_scm(0x4cd,0x4aa)]={'relayProperties':{'value':{'barMargin':0x1,'eventColor':0x1,'eventStyle':0x1,'eventLayout':0x1,'fillTicks':0x1,'resourceMargin':0x1,'snap':0x1,'tickSize':0x1},'$config':{'merge':_scm(0x4e5,0x4ca)}}};static get[_scm(0x4a1,0x4c5)](){const a=super[n(-0x209,-0x229)];function n(a,b){return _scm(a,b- -0x6ee);}a[n(-0x26c,-0x238)][n(-0x21b,-0x228)]('populateScheduleMenu');return a;}[_scm(0x4d8,0x4d9)](a,b,c,d){var e;const {client:f}=this,g=super[o(-0x234,-0x24b)](a,b,c,d);if(!f['isSchedulerBase']&&!f['isSchedulerProBase']&&!f[o(-0x244,-0x22f)]){return g;}delete g['store'];delete g[o(-0x287,-0x2b5)];delete g[o(-0x23f,-0x215)];delete g[o(-0x26a,-0x263)];delete g['dependencies'];delete g[o(-0x249,-0x243)];delete g[o(-0x26b,-0x25d)];g[o(-0x291,-0x25c)]=f['project'];g[o(-0x286,-0x28f)]=g[o(-0x291,-0x270)][o(-0x286,-0x273)];g[o(-0x27f,-0x26e)]=f[o(-0x27f,-0x2a4)];g[o(-0x280,-0x27d)]=f[o(-0x280,-0x258)];g[o(-0x288,-0x299)]=f[o(-0x288,-0x290)];g[o(-0x264,-0x250)]=f[o(-0x264,-0x290)];g['selectedCollection']=f[o(-0x28f,-0x28a)];g[o(-0x242,-0x256)]=![];g[o(-0x299,-0x26f)]=f[o(-0x24b,-0x254)];if(((e=g[o(-0x27a,-0x2ad)])===null||e===void 0x0?void 0x0:e[o(-0x23e,-0x251)])!==![]){_scf['setPath'](g,o(-0x25a,-0x25e),![]);f[o(-0x27a,-0x283)]['eventDrag'][o(-0x26e,-0x246)]=![];}if(c[o(-0x239,-0x20e)]==='horizontal'||c[o(-0x239,-0x20f)]===o(-0x25e,-0x263)&&b!==0x1){g[o(-0x27b,-0x2a8)]=!![];}function o(a,b){return _scm(b,a- -0x70d);}return g;}['unsplitCleanup'](a){function p(a,b){return _scm(b,a- -0x165);}this[p(0x339,0x366)][p(0x314,0x311)][p(0x331,0x336)]();}[_scm(0x4a4,0x4a6)](a){function q(a,b){return _scm(b,a- -0xe6);}if(a[q(0x3d5,0x40a)]===q(0x38e,0x3b8)){if(this[q(0x39b,0x3ac)]){this[q(0x3d3,0x3d1)](b=>b[q(0x38e,0x3ae)]=this['client'][q(0x3dc,0x3c5)]);}}else{super['afterConfigChange'](a);}}[_scm(0x4ac,0x488)](a){const {client:b}=this,c=_scg['from'](b['element']);let {atDate:d,atRecord:e}=a;if(a[r(-0x20c,-0x242)]!=='horizontal'&&!a[r(-0x24b,-0x254)]&&!a['atRecord']&&!d){const f=b[r(-0x251,-0x234)](c[r(-0x25e,-0x230)]['x'],r(-0x20d,-0x1d7),![]);if(f){a[r(-0x25d,-0x23d)]=d=f;a[r(-0x24b,-0x242)]=b[r(-0x24f,-0x274)];}}if(d){if(!a[r(-0x20c,-0x20a)]){a[r(-0x20c,-0x236)]=e?r(-0x231,-0x232):r(-0x240,-0x23e);}a[r(-0x219,-0x224)]=b[r(-0x238,-0x231)](d)-b[r(-0x267,-0x299)]['scrollable']['x'];if(b[r(-0x26d,-0x29a)]){a[r(-0x219,-0x1fb)]+=c[r(-0x210,-0x1f0)]-_scg[r(-0x222,-0x233)](b[r(-0x256,-0x26a)])[r(-0x23b,-0x237)];}else{a['splitX']+=_scg[r(-0x222,-0x246)](b[r(-0x256,-0x284)],b[r(-0x220,-0x239)])[r(-0x24c,-0x230)];}a[r(-0x26e,-0x25e)]=c['width']-a['splitX'];}function r(a,b){return _scm(b,a- -0x6e0);}return super['processOptions'](a);}async['split'](a={}){const {client:b}=this;function s(a,b){return _scm(b,a- -0x450);}this[s(0x28,0x43)](s(0x4a,0x57));if(b[s(0x3c,0x58)]){throw new Error(s(0x71,0x9d));}const c=await super['split'](a),d=(e,f)=>{function t(a,b){return s(a-0x3c3,b);}e[t(0x3f2,0x408)]({'viewPreset':f['viewPreset'],'startDate':f[t(0x3f8,0x3de)],'endDate':f[t(0x41c,0x424)]});};if(c){if(a[s(0x33,0x5c)]){await Promise[s(0x39,0x5a)]([c[0x0]['scrollToDate'](_sce[s(0x20,-0x7)](a[s(0x33,0x68)],-0x1,b['timeAxis'][s(0x5b,0x27)]),endScrollOptions),c[0x1][s(0x73,0x88)](a[s(0x33,0x15)],startScrollOptions)]);}if(b[s(0x26,-0x10)]){if(a[s(0x84,0x74)]===s(0x1f,-0x15)){d(c[0x1][s(0x2a,0x36)],c[0x0][s(0x2a,0x52)]);}if(a[s(0x84,0x8e)]===s(0x5f,0x32)){d(c[0x2][s(0x2a,0x43)],c[0x0][s(0x2a,-0x3)]);d(c[0x3][s(0x2a,0x58)],c[0x1]['timeAxis']);}}}b['timeAxisSubGrid'][s(0x64,0x71)]['x']+=0.5;c[s(0x54,0x6e)](e=>{function u(a,b){return s(b-0x144,a);}e[u(0x194,0x16e)][u(0x1d6,0x1ca)]({'name':'onReconfigure','reconfigure':u(0x1b9,0x18e),'thisObj':this});});return c;}[_scm(0x4a9,0x4bc)](){}[_scm(0x4e8,0x4d1)]({items:a,date:b,record:c}){const d=this,{isSplit:e}=d,{splitFrom:f}=d[v(-0x274,-0x2a5)];function v(a,b){return _scm(a,b- -0x743);}if(!d[v(-0x288,-0x27b)]&&d[v(-0x2a1,-0x2a5)][v(-0x2d9,-0x2a8)]){a[v(-0x2b5,-0x2b3)]={'text':v(-0x2f0,-0x2c3),'localeClass':d,'icon':v(-0x24e,-0x26b),'weight':0x1f4,'separator':!![],'hidden':e||f,'menu':{'splitHorizontally':{'text':v(-0x2c3,-0x2ce),'icon':v(-0x278,-0x2a2),'localeClass':d,'weight':0x64,'onItem'(){function w(a,b){return v(a,b-0x70d);}d[w(0x462,0x43b)]({'atRecord':c,'direction':'horizontal'})[w(0x45f,0x47a)]();}},'splitVertically':{'text':v(-0x294,-0x296),'icon':v(-0x25f,-0x26b),'localeClass':d,'weight':0xc8,'onItem'(){function x(a,b){return v(b,a-0x4ed);}d[x(0x21b,0x231)]({'atDate':b})['then']();}},'splitBoth':{'text':v(-0x2c7,-0x2a7),'icon':v(-0x2f7,-0x2c6),'localeClass':d,'weight':0x12c,'onItem'(){function y(a,b){return v(b,a-0x52f);}d[y(0x25d,0x23e)]({'atDate':b,'atRecord':c,'direction':'both'})[y(0x29c,0x268)]();}}}};a[v(-0x2db,-0x2ab)]={'text':v(-0x299,-0x28c),'localeClass':d,'icon':v(-0x27d,-0x26c),'hidden':!(e||f),'weight':0x226,'onItem'(){function z(a,b){return v(b,a-0x534);}(f||d)[z(0x298,0x2bd)]();}};}}[_scm(0x482,0x49a)]({suppressRefresh:a,config:b}){function A(a,b){return _scm(b,a- -0x2a4);}const {client:c}=this;if(b&&!this[A(0x208,0x1fe)]){this[A(0x208,0x23e)]=!![];const e=c[A(0x214,0x239)]?c['splitFrom']:c;if(e[A(0x219,0x24d)]&&e[A(0x219,0x245)]!=='vertical'){var d;(d=c[A(0x215,0x216)])===null||d===void 0x0||d[A(0x231,0x23b)](c,f=>{var g,h;const {subViews:i}=e,j=i[B(0x160,0x167)](f),k=i['length']>0x2?j+(j>0x1?-0x1:0x1)*0x2:0x1-j;(g=i[j])===null||g===void 0x0||g[B(0x10e,0xe7)][B(0x113,0x136)](b,a,![]);function B(a,b){return A(a- -0xc8,b);}(h=i[k])===null||h===void 0x0||h[B(0x10e,0xf7)][B(0x113,0x13e)](b,a,![]);});}this[A(0x208,0x1d8)]=![];}}}_scc[_scm(0x4fc,0x4d2)](Split,![],_scm(0x4c8,0x4b1));
@@ -1 +1 @@
1
- (function(a,b){const c=a();function C(a,b){return _scb(a- -0x236,b);}while(!![]){try{const d=parseInt(C(-0x75,-0x6f))/0x1+-parseInt(C(-0x8f,-0x91))/0x2*(-parseInt(C(-0x9c,-0x81))/0x3)+-parseInt(C(-0x91,-0xa8))/0x4*(parseInt(C(-0x90,-0xa0))/0x5)+-parseInt(C(-0x6f,-0x50))/0x6+-parseInt(C(-0xa6,-0x8a))/0x7+parseInt(C(-0x6a,-0x68))/0x8+parseInt(C(-0x7b,-0x65))/0x9;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xb1392));import _scc from'@bryntum/core-thin/lib/mixin/InstancePlugin.js';function _scD(a,b){return _scb(b-0x2c2,a);}import _scd from'@bryntum/grid-thin/lib/feature/GridFeatureManager.js';import _sce from'@bryntum/core-thin/lib/helper/DomHelper.js';import _scf from'@bryntum/core-thin/lib/helper/DomSync.js';_sce[_scD(0x43e,0x45a)](_scD(0x48e,0x477));const zeroMargins={'width':0x0,'height':0x0};function _sca(){const O=['type','$name','verticalSyncAllEventsContentPosition','getElementFromEventRecord','2398338XggdoA','scrollable','updateStyles','string','syncEventContentPosition','1815560cUgoQH','translate','apply','eventContent','wrapperCls','refreshWithTransition','instanceMeta','isVertical','10143742OwvWUZ','isResourceTimeRange','getEventContentMargins','offsetHeight','pluginConfig','push','add','parseStyle','loadStylesheet','construct','2215656vEXvHX','clear','onSchedulerScroll','min','b-dragging','Scheduler','center','margin','values','ion','registerFeature','60JvDlPi','366060rnGczw','2nWTdoa','onEventDataGenerated','getEdgeSize','style','eventRecord','b-sch-event-content','parentNode','applyStyle','offsetWidth','timeAxisSubGrid','classList','size','width','justifyContent','@bryntum/scheduler-thin/lib/feature/StickyEvents.css','contains','toUpdate','stickyContents','children','ResourceHistogram','17676945SKhtCa','onHorizontalScroll','getChild','disabled','stuck','currentOrientation','743313tmmsKK','client'];_sca=function(){return O;};return _sca();}function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x18c;let f=c[d];return f;};return _scb(a,b);}export default class StickyEvents extends _scc{static [_scD(0x49f,0x486)]='StickyEvents';static [_scD(0x4a0,0x485)]='stickyEvents';static get[_scD(0x438,0x456)](){function E(a,b){return _scD(a,b- -0x9f);}return{'after':[E(0x3ac,0x3cb)]};}[_scD(0x456,0x45b)](a,b){function F(a,b){return _scD(b,a- -0x1a9);}super['construct'](a,b);if(a[F(0x2a8,0x295)]){this['toUpdate']=new Set();a[F(0x2bc,0x2bc)]({'scroll':'onSchedulerScroll','horizontalScroll':F(0x2d5,0x2e3),'thisObj':this,'prio':0x2710});}}[_scD(0x47b,0x46a)](a){function G(a,b){return _scD(a,b- -0x162);}if(this[G(0x312,0x322)]['isHorizontal']){a[G(0x2ce,0x2ec)]['b-disable-sticky']=a[G(0x30c,0x30b)][G(0x317,0x318)]===![];}else{this[G(0x339,0x32b)](a,undefined,!![]);this['updateStyles']();}}[_scD(0x477,0x45e)](){function H(a,b){return _scD(a,b- -0x166);}if(!this[H(0x30e,0x31a)]){this['verticalSyncAllEventsContentPosition'](this[H(0x31f,0x31e)]);}}['onHorizontalScroll']({subGrid:a}){function I(a,b){return _scD(b,a- -0x322);}if(a===this[I(0x162,0x176)][I(0x150,0x14f)]){this[I(0x165,0x17a)](this[I(0x162,0x160)]);}}['updateStyles'](){function J(a,b){return _scD(a,b- -0x116);}for(const {contentEl:a,style:b}of this['toUpdate']){_sce[J(0x344,0x35a)](a,b);}this[J(0x36f,0x363)][J(0x350,0x347)]();}[_scD(0x467,0x487)](a){function K(a,b){return _scD(a,b- -0x144);}const {resourceMap:b}=a[K(0x35d,0x33e)];for(const c of b[K(0x337,0x320)]()){for(const {renderData:d,elementConfig:e}of Object['values'](c)){const f=[d];if(e&&d[K(0x335,0x329)][K(0x306,0x30f)]){f[K(0x318,0x313)](e[K(0x31a,0x337)][0x0]);}this[K(0x362,0x349)][K(0x369,0x34c)](this,f);}}this[K(0x347,0x335)][K(0x34c,0x330)]&&this[K(0x34d,0x347)]();}['syncEventContentPosition'](a,b=a[_scD(0x4a9,0x491)],d=![]){if(this['disabled']||a[L(-0x12a,-0x148)][L(-0x11d,-0x125)]===![]){return;}const {client:e}=this,{eventRecord:f,resourceRecord:g,useEventBuffer:h,bufferAfterWidth:i,bufferBeforeWidth:j,top:k,height:l}=a,m=e[L(-0x10d,-0xfd)]['y'],n=d?null:e[L(-0x10f,-0xf9)](f,g,!![]),o=n&&_scf[L(-0x118,-0x11d)](n,'event.content'),p=f[L(-0x147,-0x162)](e),q=typeof b[L(-0x12b,-0x11f)]===L(-0x10b,-0xfd)?b[L(-0x12b,-0x142)]=_sce[L(-0x13e,-0x12d)](b['style']):b[L(-0x12b,-0x122)]||(b[L(-0x12b,-0x10b)]={});if(n!==null&&n!==void 0x0&&n[L(-0x124,-0x107)][L(-0x11f,-0x11b)](L(-0x137,-0x135))){return;}function L(a,b){return _scD(b,a- -0x597);}let r=k,s=l,t=r+s;if(h){r+=j;s=s-j-i;t=r+s;}if(r<m&&t>=m&&!f['isMilestone']){const u=o===null||o===void 0x0?void 0x0:o[L(-0x126,-0x130)],v=(o===null||o===void 0x0?void 0x0:o[L(-0x128,-0x112)])&&_sce['getStyleValue'](o['parentNode'],L(-0x121,-0x102)),w=v===L(-0x135,-0x11a)?(a[L(-0x122,-0x139)]-u)/0x2:0x0,x=r,y=x+s-0x1;if((!o||u)&&x<m&&y>=m){const z=this['getEventContentMargins'](o),A=o?s-o[L(-0x142,-0x150)]-z['height']-w:Number['MAX_SAFE_INTEGER'],B=Math[L(-0x138,-0x128)](m-x,A-0x2);q[L(-0x108,-0x110)]=B>0x0?'0\x20'+B+'px':'';p[L(-0x116,-0x123)]=!![];}else{q[L(-0x108,-0xf7)]='';p['stuck']=![];}if(o){this[L(-0x11e,-0x106)]['add']({'contentEl':o,'style':q});}}else if(o&&p['stuck']){q['translate']='';p['stuck']=![];this[L(-0x11e,-0x134)][L(-0x13f,-0x132)]({'contentEl':o,'style':q});}}[_scD(0x437,0x454)](a){function M(a,b){return _scD(a,b- -0xaa);}if(a!==null&&a!==void 0x0&&a['classList'][M(0x3ed,0x3ce)](M(0x3c4,0x3c4))){return _sce[M(0x3a7,0x3c1)](a,M(0x3a9,0x3b9));}return zeroMargins;}['doDisable'](...a){super['doDisable'](...a);function N(a,b){return _scD(b,a-0xc8);}if(!this['isConfiguring']){this[N(0x54c,0x54b)][N(0x517,0x517)]();}}}_scd['registerFeature'](StickyEvents,!![],_scD(0x445,0x461));_scd[_scD(0x45e,0x466)](StickyEvents,![],_scD(0x491,0x47c));
1
+ (function(a,b){const c=a();function C(a,b){return _scb(b-0x115,a);}while(!![]){try{const d=parseInt(C(0x1e2,0x1f1))/0x1+parseInt(C(0x1d7,0x1c9))/0x2*(-parseInt(C(0x1f1,0x1f4))/0x3)+-parseInt(C(0x1f1,0x1f0))/0x4*(parseInt(C(0x1cd,0x1e2))/0x5)+parseInt(C(0x1c4,0x1c1))/0x6*(parseInt(C(0x1e1,0x1e7))/0x7)+-parseInt(C(0x19c,0x1ba))/0x8+parseInt(C(0x1e3,0x1f5))/0x9*(parseInt(C(0x1e8,0x1d0))/0xa)+parseInt(C(0x1eb,0x1d9))/0xb;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x97eb0));function _scD(a,b){return _scb(b- -0xea,a);}import _scc from'@bryntum/core-thin/lib/mixin/InstancePlugin.js';import _scd from'@bryntum/grid-thin/lib/feature/GridFeatureManager.js';import _sce from'@bryntum/core-thin/lib/helper/DomHelper.js';import _scf from'@bryntum/core-thin/lib/helper/DomSync.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xa5;let f=c[d];return f;};return _scb(a,b);}_sce[_scD(0x17,-0x7)](_scD(-0x43,-0x3f));const zeroMargins={'width':0x0,'height':0x0};function _sca(){const O=['apply','parentNode','b-disable-sticky','126650ZEIVRL','timeAxisSubGrid','values','Scheduler','min','12138uUaRWg','isHorizontal','classList','string','MAX_SAFE_INTEGER','ResourceHistogram','style','toUpdate','stickyEvents','112euaSAg','1202000HSDClx','getChild','getEventContentMargins','2246691neGmuC','9SJeCns','isVertical','translate','loadStylesheet','onEventDataGenerated','stickyContents','3303920RXxpfv','isResourceTimeRange','doDisable','width','contains','children','@bryntum/scheduler-thin/lib/feature/StickyEvents.css','2328DWIgGA','applyStyle','disabled','registerFeature','syncEventContentPosition','type','stuck','updateStyles','2zCoMSP','b-sch-event-content','size','offsetWidth','wrapperCls','add','construct','3249070iuwoSX','scrollable','onSchedulerScroll','center','margin','onHorizontalScroll','event.content','getStyleValue','verticalSyncAllEventsContentPosition','3230524RTfvJt','clear','push','justifyContent','$name','client'];_sca=function(){return O;};return _sca();}export default class StickyEvents extends _scc{static [_scD(-0x36,-0x22)]='StickyEvents';static [_scD(-0x1e,-0x39)]=_scD(-0x1b,-0x10);static get['pluginConfig'](){function E(a,b){return _scD(a,b-0x423);}return{'after':[E(0x40d,0x41d)]};}['construct'](a,b){function F(a,b){return _scD(a,b- -0x227);}super[F(-0x255,-0x257)](a,b);if(a[F(-0x23b,-0x230)]){this['toUpdate']=new Set();a['ion']({'scroll':'onSchedulerScroll','horizontalScroll':F(-0x250,-0x251),'thisObj':this,'prio':0x2710});}}[_scD(-0x15,-0x6)](a){function G(a,b){return _scD(b,a- -0x2c6);}if(this[G(-0x2e7,-0x2d7)][G(-0x2dd,-0x2f2)]){a[G(-0x2f8,-0x2f7)][G(-0x2e4,-0x2f7)]=a['eventRecord']['stickyContents']===![];}else{this[G(-0x300,-0x2ed)](a,undefined,!![]);this[G(-0x2fd,-0x2fd)]();}}[_scD(-0x26,-0x2d)](){function H(a,b){return _scD(a,b-0x3a1);}if(!this['disabled']){this[H(0x35d,0x37a)](this[H(0x362,0x380)]);}}[_scD(-0x21,-0x2a)]({subGrid:a}){function I(a,b){return _scD(b,a- -0x244);}if(a===this['client'][I(-0x260,-0x24f)]){this[I(-0x26b,-0x261)](this[I(-0x265,-0x26f)]);}}['updateStyles'](){for(const {contentEl:a,style:b}of this[J(0xad,0xa5)]){_sce[J(0x69,0x79)](a,b);}function J(a,b){return _scD(a,b-0xb6);}this[J(0x9e,0xa5)][J(0x97,0x91)]();}['verticalSyncAllEventsContentPosition'](a){const {resourceMap:b}=a['currentOrientation'];for(const c of b[K(0xd4,0xe9)]()){for(const {renderData:d,elementConfig:e}of Object['values'](c)){const f=[d];if(e&&d['eventRecord'][K(0xab,0xa9)]){f[K(0xcb,0xc3)](e[K(0xaf,0xa2)][0x0]);}this[K(0xb5,0x9e)][K(0xcf,0xec)](this,f);}}function K(a,b){return _scD(b,a-0xef);}this['toUpdate'][K(0xbb,0x9a)]&&this[K(0xb8,0xd8)]();}['syncEventContentPosition'](a,b=a['eventContent'],d=![]){if(this[L(0x2e,0x15)]||a['eventRecord'][L(0x36,0x4c)]===![]){return;}const {client:e}=this,{eventRecord:f,resourceRecord:g,useEventBuffer:h,bufferAfterWidth:i,bufferBeforeWidth:j,top:k,height:l}=a,m=e[L(0x3b,0x23)]['y'],n=d?null:e['getElementFromEventRecord'](f,g,!![]),o=n&&_scf[L(0x34,0x44)](n,L(0x1d,0x28)),p=f['instanceMeta'](e),q=typeof b[L(0x60,0x3f)]===L(0x40,0x3c)?b[L(0x50,0x3f)]=_sce['parseStyle'](b[L(0x5c,0x3f)]):b[L(0x3c,0x3f)]||(b['style']={});if(n!==null&&n!==void 0x0&&n[L(0x3d,0x3b)][L(-0x2,0x10)]('b-dragging')){return;}let r=k,s=l,t=r+s;function L(a,b){return _scD(a,b-0x51);}if(h){r+=j;s=s-j-i;t=r+s;}if(r<m&&t>=m&&!f['isMilestone']){const u=o===null||o===void 0x0?void 0x0:o[L(0x2a,0x1e)],v=(o===null||o===void 0x0?void 0x0:o['parentNode'])&&_sce[L(0x24,0x29)](o[L(0x50,0x32)],L(0x17,0x2e)),w=v===L(0x25,0x25)?(a[L(0xc,0xf)]-u)/0x2:0x0,x=r,y=x+s-0x1;if((!o||u)&&x<m&&y>=m){const z=this['getEventContentMargins'](o),A=o?s-o['offsetHeight']-z['height']-w:Number[L(0x5d,0x3d)],B=Math[L(0x1b,0x38)](m-x,A-0x2);q[L(0x5f,0x49)]=B>0x0?'0\x20'+B+'px':'';p[L(0x36,0x19)]=!![];}else{q['translate']='';p[L(0x15,0x19)]=![];}if(o){this[L(0x1f,0x40)][L(0x5,0x20)]({'contentEl':o,'style':q});}}else if(o&&p[L(0x22,0x19)]){q['translate']='';p[L(0x2f,0x19)]=![];this['toUpdate'][L(0xc,0x20)]({'contentEl':o,'style':q});}}[_scD(-0x1f,-0xc)](a){function M(a,b){return _scD(a,b- -0x23a);}if(a!==null&&a!==void 0x0&&a[M(-0x256,-0x250)][M(-0x263,-0x27b)](M(-0x288,-0x26f))){return _sce['getEdgeSize'](a,M(-0x264,-0x265));}return zeroMargins;}[_scD(-0x26,-0x43)](...a){super[N(0x178,0x172)](...a);function N(a,b){return _scD(b,a-0x1bb);}if(!this['isConfiguring']){this[N(0x19a,0x18a)]['refreshWithTransition']();}}}_scd[_scD(-0x32,-0x3b)](StickyEvents,!![],_scD(-0x39,-0x1a));_scd[_scD(-0x39,-0x3b)](StickyEvents,![],_scD(-0x8,-0x13));
@@ -1 +1 @@
1
- (function(a,b){function s(a,b){return _scb(b-0x288,a);}const c=a();while(!![]){try{const d=-parseInt(s(0x380,0x366))/0x1*(-parseInt(s(0x334,0x346))/0x2)+parseInt(s(0x369,0x37d))/0x3+parseInt(s(0x361,0x343))/0x4*(-parseInt(s(0x34c,0x364))/0x5)+-parseInt(s(0x34c,0x362))/0x6+-parseInt(s(0x34e,0x34e))/0x7+parseInt(s(0x37b,0x36c))/0x8*(parseInt(s(0x35b,0x376))/0x9)+parseInt(s(0x361,0x35e))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xa69c0));import _scc from'./TimelineSummary.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xbb;let f=c[d];return f;};return _scb(a,b);}import _scd from'@bryntum/grid-thin/lib/feature/GridFeatureManager.js';function _sca(){const D=['verticalSummaryColumnConfig','<div\x20class=\x22b-time-axis-summary-value\x22>','</label>','startDate','length','disabled','endDate','17879130YoaTST','add','summaries','Summary','4106448QcUstd','<label>','85hvIiZE','isFiltered','8xUmEGp','renderer','Scheduler','refreshSummaries','<header>','summaryEventStore','632LwwJcC','ion','bindStore','forEach','right','</div>','updateEventStore','b-grid-footer\x20b-sch-summary-bar','getFormattedDate','includes','67689akynUF','createSubGrid','regions','eventStore','push','selectedRecords','</header>','469668fsZCvb','resizable','summaryColumn','148584WhxNkc','from','construct','106916wuUgzl','scheduler','configurable','registerFeature','assign','innerHTML','updateResourceStore','summaryResourceStore','6775790hlITWZ','columns','resourceStore','label','updateTimelineSummaries','pluginConfig','selectedOnly','hideFooters','updateSummaries'];_sca=function(){return D;};return _sca();}import _sce from'@bryntum/core-thin/lib/helper/ObjectHelper.js';function _sct(a,b){return _scb(a- -0x168,b);}export default class Summary extends _scc{static ['$name']=_sct(-0x8f,-0x75);static [_sct(-0xa8,-0x89)]={'summaries':null,'renderer':null,'verticalSummaryColumnConfig':null};static get['pluginConfig'](){const a=super[u(0x7,0x1f)];function u(a,b){return _sct(a-0xa4,b);}a['after'][u(0x2e,0x45)](u(0x22,0x11),u(0x26,0x8),'updateResourceStore');return a;}['construct'](a,b){const c=this;c[v(0x3d3,0x3bd)]=a;if(a['isVertical']){a['timeAxisSubGrid'][v(0x405,0x3f4)]=![];b[v(0x3ba,0x3cb)]=!![];a['add'](a[v(0x407,0x3ed)]('right',{},a[v(0x400,0x3ee)]));c[v(0x406,0x3f5)]=a[v(0x3b8,0x3c5)][v(0x3d2,0x3d5)](_sce[v(0x3a7,0x3c0)]({'filterable':null,'region':v(0x3e7,0x3e6),'cellCls':v(0x3f8,0x3e9),'align':'center','sortable':![],'editor':![],'groupable':![],'htmlEncode':![],'cellMenuItems':![],'enableHeaderContextMenu':![],'hidden':c[v(0x3db,0x3d2)]},c[v(0x3cd,0x3cd)]))[0x0];}function v(a,b){return _sct(b-0x466,a);}super[v(0x3a1,0x3bb)](a,b);if(a['isSchedulerBase']){c['updateEventStore'](a[v(0x3fa,0x3ef)]);c['updateResourceStore'](a[v(0x3ac,0x3c6)]);}}[_sct(-0x7e,-0x7d)](a){this['detachListeners'](w(0x83,0x73));function w(a,b){return _sct(a-0x108,b);}a[w(0x85,0x81)]({'name':w(0x83,0x76),'filter':'updateTimelineSummaries','thisObj':this});}[_sct(-0xa4,-0xbe)](a){this['detachListeners'](x(0x44d,0x458));function x(a,b){return _sct(b-0x4fb,a);}a['ion']({'name':x(0x467,0x458),'filter':x(0x444,0x45d),'thisObj':this});}[_sct(-0x9e,-0x85)](){function y(a,b){return _sct(a-0x38e,b);}const a=this,{client:b}=a,{eventStore:c,timeAxis:d,isEngineReady:e,project:f}=b,g=a['summaryBarElement'],h=a[y(0x2f2,0x309)]&&b['selectedRecords'][y(0x2f9,0x30f)]?b[y(0x319,0x302)]:b['resourceStore']['records'];if(g&&e&&f['isInitialCommitPerformed']){const i=b['getResourcesEventsPerTick'](h,({event:j})=>{function z(a,b){return y(b- -0x234,a);}return!c[z(0xc2,0xcf)]||c['records'][z(0xce,0xdf)](j);});Array[y(0x2e2,0x2fd)](g['children'])['forEach']((j,k)=>{const l=d['getAt'](k),m=i[k]||[];function A(a,b){return y(b- -0x464,a);}let n='',o=A(-0x16f,-0x15c)+a['L']('L{Summary\x20for}',b[A(-0x145,-0x152)](l[A(-0x173,-0x16c)]))+A(-0x14a,-0x14a);a[A(-0x160,-0x166)][A(-0x155,-0x157)](p=>{function B(a,b){return A(a,b-0x251);}const q=p[B(0xe2,0xf2)]({'startDate':l[B(0xcf,0xe5)],'endDate':l[B(0x100,0xe8)],'resourceStore':b[B(0xdb,0xdb)],'eventStore':c,'events':m,'element':j}),r=q?B(0xf3,0xe3)+q+B(0x116,0xfc):'';if(a[B(0xe5,0xeb)][B(0xe7,0xe6)]>0x1||q){n+=r;}o+=r?B(0xd9,0xee)+(p[B(0xdd,0xdc)]||'')+B(0xee,0xe4)+r:'';});j[A(-0x18d,-0x17b)]=n;j['_tipHtml']=n?o:'';});}}[_sct(-0x9a,-0x96)](){function C(a,b){return _sct(a-0xc9,b);}if(!this['isConfiguring']){this[C(0x42,0x4a)]();}}}_scd[_sct(-0xa7,-0xc0)](Summary,![],_sct(-0x88,-0x81));
1
+ (function(a,b){const c=a();function s(a,b){return _scb(a- -0x1f4,b);}while(!![]){try{const d=-parseInt(s(-0xc,-0x18))/0x1*(parseInt(s(-0x4,-0x21))/0x2)+parseInt(s(-0x6,0x13))/0x3+-parseInt(s(0x31,0x3c))/0x4+parseInt(s(0xe,-0x3))/0x5*(-parseInt(s(0x13,0x1d))/0x6)+-parseInt(s(0x32,0x12))/0x7*(parseInt(s(0x10,0xb))/0x8)+-parseInt(s(0x14,-0xa))/0x9*(-parseInt(s(-0x8,0xb))/0xa)+parseInt(s(-0xd,-0xb))/0xb*(parseInt(s(0x24,0x2d))/0xc);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xb5999));import _scc from'./TimelineSummary.js';import _scd from'@bryntum/grid-thin/lib/feature/GridFeatureManager.js';import _sce from'@bryntum/core-thin/lib/helper/ObjectHelper.js';function _sct(a,b){return _scb(a- -0x2f1,b);}export default class Summary extends _scc{static [_sct(-0xf4,-0xfe)]=_sct(-0xdb,-0xf1);static [_sct(-0xee,-0xdd)]={'summaries':null,'renderer':null,'verticalSummaryColumnConfig':null};static get[_sct(-0xfa,-0x119)](){const a=super[u(0x306,0x2f9)];a['after'][u(0x32d,0x313)](u(0x305,0x312),u(0x326,0x31a),u(0x31f,0x33f));function u(a,b){return _sct(a-0x400,b);}return a;}['construct'](a,b){const c=this;c[v(0x1dc,0x1e9)]=a;function v(a,b){return _sct(b-0x2f1,a);}if(a[v(0x215,0x221)]){a[v(0x20c,0x1f5)][v(0x22e,0x21b)]=![];b[v(0x1dd,0x1ea)]=!![];a[v(0x204,0x1f4)](a[v(0x1fb,0x211)](v(0x209,0x21d),{},a[v(0x20c,0x215)]));c[v(0x221,0x21c)]=a[v(0x1f1,0x20e)][v(0x215,0x1f4)](_sce['assign']({'filterable':null,'region':v(0x229,0x21d),'cellCls':v(0x21f,0x224),'align':'center','sortable':![],'editor':![],'groupable':![],'htmlEncode':![],'cellMenuItems':![],'enableHeaderContextMenu':![],'hidden':c[v(0x215,0x206)]},c[v(0x1d3,0x1ed)]))[0x0];}super[v(0x1f1,0x205)](a,b);if(a[v(0x240,0x220)]){c['updateEventStore'](a[v(0x1f9,0x209)]);c[v(0x1f4,0x210)](a['resourceStore']);}}[_sct(-0xda,-0xc1)](a){this[w(0x569,0x58c)](w(0x560,0x562));function w(a,b){return _sct(a-0x662,b);}a['ion']({'name':w(0x560,0x575),'filter':'updateTimelineSummaries','thisObj':this});}[_sct(-0xe1,-0xc5)](a){function x(a,b){return _sct(a-0x519,b);}this[x(0x420,0x3ff)](x(0x419,0x41d));a[x(0x441,0x437)]({'name':'summaryResourceStore','filter':'updateTimelineSummaries','thisObj':this});}[_sct(-0xdf,-0xe9)](){const a=this,{client:b}=a,{eventStore:c,timeAxis:d,isEngineReady:e,project:f}=b,g=a['summaryBarElement'],h=a['selectedOnly']&&b[y(0x7b,0x89)][y(0x9f,0x8b)]?b[y(0xa9,0x89)]:b['resourceStore']['records'];function y(a,b){return _sct(b-0x170,a);}if(g&&e&&f[y(0xac,0x9e)]){const i=b[y(0x8f,0x72)](h,({event:j})=>{function z(a,b){return y(b,a- -0x235);}return!c[z(-0x1cb,-0x1ec)]||c[z(-0x1b8,-0x1b1)][z(-0x1ba,-0x198)](j);});Array[y(0x9f,0xa8)](g[y(0xa1,0x92)])[y(0x83,0x8e)]((j,k)=>{const l=d[A(0x5dc,0x5ce)](k),m=i[k]||[];let n='',o=A(0x603,0x602)+a['L'](A(0x5d6,0x5c2),b[A(0x5e6,0x5c9)](l[A(0x5ef,0x601)]))+A(0x5f5,0x616);a[A(0x602,0x5ef)][A(0x5ea,0x5e3)](p=>{function B(a,b){return A(b- -0x67c,a);}const q=p['renderer']({'startDate':l[B(-0x8e,-0x8d)],'endDate':l[B(-0xcf,-0xbc)],'resourceStore':b[B(-0x7e,-0x7f)],'eventStore':c,'events':m,'element':j}),r=q?B(-0xa6,-0x94)+q+'</div>':'';if(a[B(-0x7c,-0x7a)][B(-0x7f,-0x95)]>0x1||q){n+=r;}o+=r?B(-0xc4,-0xaf)+(p['label']||'')+'</label>'+r:'';});function A(a,b){return y(b,a-0x55c);}j[A(0x5d5,0x5d1)]=n;j['_tipHtml']=n?o:'';});}}[_sct(-0xf8,-0xec)](){function C(a,b){return _sct(a-0x64e,b);}if(!this[C(0x543,0x549)]){this[C(0x580,0x585)]();}}}function _sca(){const D=['2WNkbmd','summaryResourceStore','<label>','getResourcesEventsPerTick','add','timeAxisSubGrid','bindStore','pluginConfig','detachListeners','updateSummaries','innerHTML','L{Summary\x20for}','includes','$name','records','Scheduler','registerFeature','getAt','485WvfxJw','configurable','8904UAQoBC','construct','disabled','35490SRPViG','693EfBBLz','eventStore','selectedRecords','getFormattedDate','length','<div\x20class=\x22b-time-axis-summary-value\x22>','columns','forEach','updateResourceStore','createSubGrid','updateTimelineSummaries','children','startDate','regions','Summary','updateEventStore','348tTXzdP','ion','</header>','resizable','summaryColumn','right','push','isInitialCommitPerformed','isSchedulerBase','isVertical','resourceStore','refreshSummaries','b-grid-footer\x20b-sch-summary-bar','5008320RkWdrd','189ycAbYa','summaries','<header>','from','endDate','isConfiguring','847429TEdLoS','446411siIDlM','scheduler','hideFooters','isFiltered','1930OAHqYH','verticalSummaryColumnConfig','2391414sUSVKk','summaryEventStore'];_sca=function(){return D;};return _sca();}function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x1e5;let f=c[d];return f;};return _scb(a,b);}_scd[_sct(-0xf1,-0xe6)](Summary,![],_sct(-0xf2,-0xf4));
@@ -1 +1 @@
1
- (function(a,b){function h(a,b){return _scb(a-0x4a,b);}const c=a();while(!![]){try{const d=parseInt(h(0xc3,0xcf))/0x1*(-parseInt(h(0xdf,0xf4))/0x2)+-parseInt(h(0xcb,0xa2))/0x3+parseInt(h(0x107,0xdd))/0x4+-parseInt(h(0xfd,0x10e))/0x5*(-parseInt(h(0xda,0xef))/0x6)+-parseInt(h(0xf5,0xca))/0x7+-parseInt(h(0xe1,0x107))/0x8*(parseInt(h(0xc9,0xef))/0x9)+parseInt(h(0xbb,0x9a))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xf1d11));import _scc from'@bryntum/grid-thin/lib/feature/HeaderMenu.js';function _sca(){const y=['b-icon\x20b-icon-next','max','datefield','6em','shiftUnit','construct','closest','b-icon\x20b-icon-previous','3782268WRUAiH','add','presets','min','shiftPrevious','startDateFieldInitialValue','b-right-nav-btn','call','zoomDetacher','7825850rcOxje','after','initDateRangeFields','updateMinAllowedStartDate','disabled','startDateField','items','endDateFieldInitialValue','287XmvmCm','minZoomLevel','maxZoomLevel','triggerEvent','shiftNext','L{todayText}','828486FHUwHi','zoomOnTimeAxisDoubleClick','548058mWljCD','ion','L{endText}','push','b-today-nav-btn','Scheduler','shiftIncrement','maxDate','registerFeature','b-left-nav-btn','getAllowedDateRange','suspendEvents','endDateField','TimelineHistogram','Gantt','186xXitPx','@bryntum/scheduler-thin/lib/feature/TimeAxisHeaderMenu.css','enableHeaderContextMenu','count','value','5188IxABOf','L{startText}','32ugtxJZ','zoomLevel','endDate','click','onZoomSliderChange','setTimeSpan','nullify','resumeEvents','startDate','timeAxisHeader','onRangeDateFieldChange','loadStylesheet','hide','populateTimeAxisHeaderMenu','pluginConfig','button','client','updateMaxAllowedEndDate','onLeftShiftBtnClick','includes','7568610bAoLSB','timeAxis','popup','onRightShiftBtnClick','initDates','isHorizontal','onTodayBtnClick','b-fw-icon\x20b-icon-calendar','264345CqGCQl','day'];_sca=function(){return y;};return _sca();}function _sci(a,b){return _scb(a- -0x9d,b);}import _scd from'@bryntum/grid-thin/lib/feature/GridFeatureManager.js';import _sce from'@bryntum/core-thin/lib/helper/DateHelper.js';import _scf from'@bryntum/core-thin/lib/helper/DomHelper.js';import'@bryntum/core-thin/lib/widget/Slider.js';_scf[_sci(0x5,0x9)](_sci(-0xc,0x7));const setTimeSpanOptions={'maintainVisibleStart':!![]};function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x6e;let f=c[d];return f;};return _scb(a,b);}export default class TimeAxisHeaderMenu extends _scc{static ['$name']='TimeAxisHeaderMenu';static ['configurable']={'menu':{'$config':['lazy',_sci(0x0,-0x1d)],'value':{'type':'menu','autoShow':![],'closeAction':_sci(0x6,0x2e),'align':{'monitorResize':![]},'scrollAction':null,'constrainTo':globalThis}},'processItems':null,'items':null,'type':_sci(0x3,0x1f)};static get[_sci(0x8,0x26)](){const a=super[j(-0x1f,-0x23)];function j(a,b){return _sci(b- -0x2b,a);}a[j(-0x53,-0x56)][j(-0x1b,-0x44)](j(-0x7,-0x24));return a;}[_sci(0x1d,0x1d)](...a){super[k(-0x2ca,-0x2b4)](...a);function k(a,b){return _sci(a- -0x2e7,b);}if(this[k(-0x308,-0x2e6)][k(-0x2da,-0x2cf)](k(-0x2ea,-0x2c8))&&this['client'][k(-0x304,-0x317)]){this[k(-0x2dd,-0x2cc)]['zoomOnTimeAxisDoubleClick']=![];}}['shouldShowMenu'](a){const {column:b,targetElement:c}=a,{client:d}=this;function l(a,b){return _sci(a-0x3cd,b);}if(d[l(0x3e0,0x3ba)]){return(b===null||b===void 0x0?void 0x0:b[l(0x3c2,0x3db)])!==![]&&(b===null||b===void 0x0?void 0x0:b['isTimeAxisColumn']);}return c[l(0x3eb,0x410)]('.b-vertical-time-axis-cell');}[_sci(0x7,-0x1f)]({items:a}){function m(a,b){return _sci(a- -0x82,b);}const b=this,{client:c}=b,d={'magnitude':c[m(-0x73,-0x85)][m(-0x98,-0xbb)],'unit':c[m(-0x73,-0x7d)][m(-0x66,-0x8a)]};Object['assign'](a,{'zoomLevel':{'text':'L{pickZoomLevel}','localeClass':b,'icon':'b-fw-icon\x20b-icon-search-plus','disabled':!c[m(-0x60,-0x45)][m(-0x8c,-0x86)]||b[m(-0xaa,-0xd2)],'weight':0xc8,'menu':{'items':{'zoomSlider':{'type':'slider','weight':0xd2,'minWidth':0x82,'showValue':![],'triggerChangeOnInput':!![]}},'onBeforeShow'({source:e}){function n(a,b){return m(a-0x15c,b);}const [f]=e[n(0xb4,0xa8)];f[n(0xfd,0xd5)]=c[n(0xb7,0x95)];f[n(0xf3,0x110)]=c[n(0xb8,0xaf)];f[n(0xd1,0xec)]=c['zoomLevel'];b['zoomDetacher']=f[n(0xbf,0xe6)]({'change':n(0xd8,0xcb),'thisObj':b});},'onHide'(){function o(a,b){return m(a- -0x54,b);}var e;(e=b[o(-0x103,-0x116)])===null||e===void 0x0||e[o(-0x104,-0xe9)](b);b[o(-0x103,-0xeb)]=null;}}},'dateRange':{'text':'L{activeDateRange}','localeClass':b,'icon':m(-0x6d,-0x5d),'weight':0x12c,'menu':{'type':m(-0x72,-0x6a),'cls':'b-sch-time-axis-menu-date-range-popup','defaults':{'localeClass':b},'items':{'startDateField':{'type':'datefield','label':m(-0x89,-0x86),'weight':0x136,'labelWidth':m(-0x67,-0x86),'required':!![],'step':d,'highlightExternalChange':![],'span':0x3,'picker':{'internalListeners':{'beforeShow':b[m(-0xab,-0xd3)],'thisObj':b}},'internalListeners':{'change':b[m(-0x7e,-0x63)],'thisObj':b}},'endDateField':{'type':m(-0x68,-0x61),'label':m(-0x9c,-0x90),'weight':0x140,'labelWidth':m(-0x67,-0x69),'required':!![],'step':d,'highlightExternalChange':![],'span':0x3,'picker':{'internalListeners':{'beforeShow':b['updateMaxAllowedEndDate'],'thisObj':b}},'internalListeners':{'change':b[m(-0x7e,-0x66)],'thisObj':b}},'leftShiftBtn':{'type':'button','weight':0x14a,'cls':m(-0x95,-0xa1),'icon':m(-0x63,-0x87),'internalListeners':{'click':b[m(-0x76,-0x74)],'thisObj':b}},'todayBtn':{'type':m(-0x79,-0x61),'weight':0x154,'cls':m(-0x9a,-0xbf),'text':m(-0xa1,-0x90),'flex':0x1,'internalListeners':{'click':b[m(-0x6e,-0x69)],'thisObj':b}},'rightShiftBtn':{'type':m(-0x79,-0x6c),'weight':0x15e,'cls':m(-0xb1,-0xc0),'icon':m(-0x6a,-0x6a),'internalListeners':{'click':b[m(-0x71,-0x81)],'thisObj':b}}},'internalListeners':{'paint':b[m(-0xac,-0x85)],'thisObj':b}}}});}[_sci(-0x2,0x26)]({value:a}){function p(a,b){return _sci(a- -0x70,b);}this[p(-0x66,-0x4e)][p(-0x75,-0x74)]=a;}['initDateRangeFields']({source:a,firstPaint:b}){if(b){const {widgetMap:c}=a;this[q(-0x1ec,-0x1ee)]=c[q(-0x1ec,-0x207)];this[q(-0x1d5,-0x1df)]=c[q(-0x1d5,-0x1df)];}function q(a,b){return _sci(a- -0x1c5,b);}this[q(-0x1b3,-0x1d0)]();}[_sci(0x12,-0x7)](){const a=this;function r(a,b){return _sci(b-0x1dc,a);}a['startDateField'][r(0x1ab,0x1cb)]();a[r(0x1e5,0x1cc)][r(0x1de,0x1cb)]();a[r(0x1c9,0x1b5)][r(0x1d4,0x1d3)]=a[r(0x1e3,0x201)]=a[r(0x1cf,0x1e6)][r(0x1fc,0x1de)];a[r(0x1d9,0x1cc)][r(0x1e2,0x1d3)]=a[r(0x1b4,0x1b7)]=a[r(0x20e,0x1e6)][r(0x1ba,0x1d8)];a[r(0x1c2,0x1b5)][r(0x1e8,0x1dd)]();a['endDateField']['resumeEvents']();}[_sci(0xb,-0x14)]({source:a}){function s(a,b){return _sci(b-0x2be,a);}a[s(0x2b7,0x2a9)]=this[s(0x2a1,0x2c8)][s(0x2a6,0x2ac)]()[s(0x2ca,0x2ba)];return!![];}[_sci(-0x29,-0x4)]({source:a}){a['minDate']=this[t(-0x13b,-0x115)]['getAllowedDateRange']()[t(-0x143,-0x14b)];function t(a,b){return _sci(a- -0x145,b);}return!![];}[_sci(0x4,-0x17)]({source:a}){const b=this,c=a===b[u(0x2ce,0x2e7)],{client:d}=b,{timeAxis:e}=d,f=b[u(0x31a,0x305)]&&!c?b['startDateFieldInitialValue']:b['startDateField'][u(0x2ec,0x2dd)];let g=b['endDateFieldInitialValue']&&c?b[u(0x2d0,0x2f0)]:b[u(0x2e5,0x2f4)]['value'];if(c){b[u(0x31a,0x322)]=null;}else{b[u(0x2d0,0x2a5)]=null;}if(!(g-f)){g=_sce[u(0x316,0x329)](g,e[u(0x2df,0x2e8)],e[u(0x311,0x32d)]);}else if(g<f){g=_sce[u(0x316,0x31e)](f,e[u(0x2df,0x2bf)],e[u(0x311,0x30c)]);}function u(a,b){return _sci(a-0x2f5,b);}d[u(0x2f4,0x2da)](f,g,setTimeSpanOptions);b[u(0x307,0x31f)]();}[_sci(0xc,-0x1d)](){this[v(0x372,0x34d)][v(0x33a,0x352)][v(0x35b,0x367)]();function v(a,b){return _sci(b-0x343,a);}this[v(0x377,0x355)]();}[_sci(0x14,-0x10)](){const a=_sce['clearTime'](new Date());this[w(-0xb4,-0x9e)][w(-0xc2,-0xa9)](a,_sce[w(-0x63,-0x87)](a,0x1,w(-0x8f,-0x91)));function w(a,b){return _sci(b- -0xa8,a);}this[w(-0x88,-0x96)]();}[_sci(0x11,-0x5)](){this[x(-0x173,-0x17c)][x(-0x191,-0x177)][x(-0x17b,-0x1a6)]();function x(a,b){return _sci(b- -0x186,a);}this[x(-0x180,-0x174)]();}}_scd[_sci(-0x14,-0x3e)](TimeAxisHeaderMenu,!![],[_sci(-0x17,-0x2d),_sci(-0xf,0xe),_sci(-0xe,-0x32)]);
1
+ (function(a,b){const c=a();function h(a,b){return _scb(b- -0x106,a);}while(!![]){try{const d=parseInt(h(0xc0,0xd2))/0x1+parseInt(h(0xe8,0xd4))/0x2*(parseInt(h(0xaf,0xca))/0x3)+parseInt(h(0xbd,0xce))/0x4*(-parseInt(h(0x104,0xde))/0x5)+-parseInt(h(0x111,0xf8))/0x6*(-parseInt(h(0xe9,0x101))/0x7)+parseInt(h(0xe8,0x10a))/0x8+-parseInt(h(0xe9,0x111))/0x9+-parseInt(h(0xd0,0xd6))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xa174c));import _scc from'@bryntum/grid-thin/lib/feature/HeaderMenu.js';import _scd from'@bryntum/grid-thin/lib/feature/GridFeatureManager.js';import _sce from'@bryntum/core-thin/lib/helper/DateHelper.js';import _scf from'@bryntum/core-thin/lib/helper/DomHelper.js';import'@bryntum/core-thin/lib/widget/Slider.js';import'../widget/TimeZoomSlider.js';_scf['loadStylesheet'](_sci(-0x22,-0x26));function _sca(){const y=['initDates','assign','zoomLevel','resumeEvents','TimeAxisHeaderMenu','ion','$name','48EwhVLj','shiftIncrement','popup','max','4fMZxWG','Scheduler','shiftUnit','menu','1308357hSkeRt','pluginConfig','52396FRGWIN','endDateFieldInitialValue','13147910gEcXIP','shiftPrevious','b-right-nav-btn','shouldShowMenu','b-icon\x20b-icon-next','hide','timeAxisHeader','zoomOnTimeAxisDoubleClick','1482395TnFPsZ','minDate','zoomDetacher','click','onLeftShiftBtnClick','startDateField','smoothZoom','construct','startDate','timeAxis','shiftNext','.b-vertical-time-axis-cell','onZoomSliderChange','presets','onTodayBtnClick','push','setTimeSpan','add','maxDate','count','populateTimeAxisHeaderMenu','triggerEvent','@bryntum/scheduler-thin/lib/feature/TimeAxisHeaderMenu.css','b-sch-time-axis-menu-date-range-popup','L{endText}','b-today-nav-btn','2490gGpJuW','slider','enableHeaderContextMenu','L{pickZoomLevel}','b-fw-icon\x20b-icon-search-plus','call','min','isTimeAxisColumn','Gantt','8477rQHpvA','button','maxZoomLevel','configurable','items','onRangeDateFieldChange','updateMaxAllowedEndDate','includes','endDate','4043792eOugzC','nullify','day','getAllowedDateRange','startDateFieldInitialValue','endDateField','updateMinAllowedStartDate','4166730yRZEjl','TimelineHistogram','isHorizontal','client','clearTime','minZoomLevel','suspendEvents','initDateRangeFields','6em','value','b-icon\x20b-icon-previous'];_sca=function(){return y;};return _sca();}function _sci(a,b){return _scb(b- -0x220,a);}const setTimeSpanOptions={'maintainVisibleStart':!![]};function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x1c7;let f=c[d];return f;};return _scb(a,b);}export default class TimeAxisHeaderMenu extends _scc{static [_sci(-0x75,-0x51)]=_sci(-0x35,-0x53);static [_sci(0x14,-0x16)]={'menu':{'$config':['lazy',_sci(-0x20,-0xf)],'value':{'type':_sci(-0x52,-0x49),'autoShow':![],'closeAction':_sci(-0x62,-0x3f),'align':{'monitorResize':![]},'scrollAction':null,'constrainTo':globalThis}},'processItems':null,'items':null,'type':_sci(-0x29,-0x3e)};static get[_sci(-0x3c,-0x47)](){function j(a,b){return _sci(a,b-0x269);}const a=super['pluginConfig'];a['after'][j(0x251,0x23c)](j(0x242,0x241));return a;}[_sci(-0x57,-0x35)](...a){function k(a,b){return _sci(a,b- -0x3e);}super[k(-0x96,-0x73)](...a);if(this[k(-0x92,-0x65)][k(-0x28,-0x50)](k(-0x87,-0x77))&&this['client'][k(-0x57,-0x7b)]){this['client']['zoomOnTimeAxisDoubleClick']=![];}}[_sci(-0x18,-0x41)](a){function l(a,b){return _sci(a,b-0x2d9);}const {column:b,targetElement:c}=a,{client:d}=this;if(d[l(0x2af,0x2d2)]){return(b===null||b===void 0x0?void 0x0:b[l(0x2d8,0x2b9)])!==![]&&(b===null||b===void 0x0?void 0x0:b[l(0x2c2,0x2be)]);}return c['closest'](l(0x296,0x2a8));}[_sci(-0x27,-0x28)]({items:a}){const b=this,{client:c}=b,d={'magnitude':c[m(0x5b4,0x5c4)][m(0x598,0x5a8)],'unit':c[m(0x5b4,0x5d2)]['shiftUnit']};function m(a,b){return _sci(b,a-0x5e7);}Object[m(0x591,0x5b5)](a,{'zoomLevel':{'text':m(0x5c8,0x5e9),'localeClass':b,'icon':m(0x5c9,0x5bf),'disabled':!c[m(0x5b8,0x5dc)][m(0x5be,0x5c5)]||b['disabled'],'weight':0xc8,'menu':{'items':{'zoomSlider':{'type':c[m(0x5b1,0x59d)]?'timezoomslider':m(0x5c6,0x5d1),'weight':0xd2,'minWidth':c[m(0x5b1,0x5a9)]?0xc8:0x82,'showValue':![],'triggerChangeOnInput':!![]}},'onBeforeShow'({source:e}){if(c[n(0x18a,0x1b4)]){return;}const [f]=e[n(0x1ab,0x19d)];f[n(0x1a4,0x1c5)]=c[n(0x1bc,0x1a2)];function n(a,b){return m(a- -0x427,b);}f[n(0x173,0x18e)]=c[n(0x1a9,0x19d)];f['value']=c[n(0x16b,0x187)];b[n(0x186,0x190)]=f[n(0x16e,0x177)]({'change':n(0x190,0x1a0),'thisObj':b});},'onHide'(){var e;function o(a,b){return m(a- -0x167,b);}if(c[o(0x44a,0x442)]){return;}(e=b[o(0x446,0x41d)])===null||e===void 0x0||e[o(0x463,0x48e)](b);b[o(0x446,0x437)]=null;}}},'dateRange':{'text':'L{activeDateRange}','localeClass':b,'icon':'b-fw-icon\x20b-icon-calendar','weight':0x12c,'menu':{'type':m(0x599,0x5a8),'cls':m(0x5c2,0x5e0),'defaults':{'localeClass':b},'items':{'startDateField':{'type':'datefield','label':'L{startText}','weight':0x136,'labelWidth':m(0x5e6,0x5d3),'required':!![],'step':d,'highlightExternalChange':![],'span':0x3,'picker':{'internalListeners':{'beforeShow':b[m(0x5dd,0x5bd)],'thisObj':b}},'internalListeners':{'change':b[m(0x5d3,0x5b1)],'thisObj':b}},'endDateField':{'type':'datefield','label':m(0x5c3,0x5b2),'weight':0x140,'labelWidth':'6em','required':!![],'step':d,'highlightExternalChange':![],'span':0x3,'picker':{'internalListeners':{'beforeShow':b['updateMaxAllowedEndDate'],'thisObj':b}},'internalListeners':{'change':b[m(0x5d3,0x5f7)],'thisObj':b}},'leftShiftBtn':{'type':m(0x5cf,0x5e3),'weight':0x14a,'cls':'b-left-nav-btn','icon':m(0x58f,0x566),'internalListeners':{'click':b['onLeftShiftBtnClick'],'thisObj':b}},'todayBtn':{'type':'button','weight':0x154,'cls':m(0x5c4,0x5b3),'text':'L{todayText}','flex':0x1,'internalListeners':{'click':b['onTodayBtnClick'],'thisObj':b}},'rightShiftBtn':{'type':m(0x5cf,0x5c5),'weight':0x15e,'cls':m(0x5a5,0x57c),'icon':m(0x5a7,0x5a7),'internalListeners':{'click':b['onRightShiftBtnClick'],'thisObj':b}}},'internalListeners':{'paint':b[m(0x5e5,0x5bf)],'thisObj':b}}}});}[_sci(-0x3c,-0x30)]({value:a}){function p(a,b){return _sci(b,a-0x16d);}this[p(0x167,0x167)]['zoomLevel']=a;}[_sci(0x13,-0x2)]({source:a,firstPaint:b}){function q(a,b){return _sci(a,b-0x4bc);}if(b){const {widgetMap:c}=a;this['startDateField']=c[q(0x45a,0x485)];this[q(0x4aa,0x4b1)]=c[q(0x4ba,0x4b1)];}this['initDates']();}[_sci(-0x7d,-0x57)](){const a=this;a['startDateField'][r(0x2a6,0x2bb)]();a[r(0x2d4,0x2b3)][r(0x2c3,0x2bb)]();function r(a,b){return _sci(a,b-0x2be);}a[r(0x274,0x287)][r(0x26b,0x265)]=a[r(0x291,0x2b2)]=a['client'][r(0x27e,0x28a)];a[r(0x286,0x2b3)][r(0x24e,0x265)]=a[r(0x266,0x279)]=a[r(0x2d8,0x2b8)][r(0x2aa,0x2ad)];a[r(0x27b,0x287)][r(0x277,0x26a)]();a[r(0x2d2,0x2b3)][r(0x293,0x26a)]();}[_sci(-0x33,-0x13)]({source:a}){a[s(0x108,0xf6)]=this[s(0x117,0x11a)]['getAllowedDateRange']()[s(0x119,0x10f)];function s(a,b){return _sci(a,b-0x120);}return!![];}[_sci(-0x2c,-0xa)]({source:a}){a[t(0x5a1,0x5c2)]=this[t(0x5d6,0x5c4)][t(0x5cf,0x5b6)]()[t(0x5a8,0x5d1)];function t(a,b){return _sci(b,a-0x5dc);}return!![];}[_sci(-0x2c,-0x14)]({source:a}){const b=this,c=a===b['startDateField'],{client:d}=b,{timeAxis:e}=d,f=b['startDateFieldInitialValue']&&!c?b[u(-0x4c,-0x23)]:b[u(-0x21,-0x4e)][u(-0x7d,-0x70)];let g=b[u(-0x37,-0x5c)]&&c?b[u(-0x87,-0x5c)]:b[u(-0x9,-0x22)][u(-0x5e,-0x70)];if(c){b[u(-0x25,-0x23)]=null;}else{b['endDateFieldInitialValue']=null;}function u(a,b){return _sci(a,b- -0x17);}if(!(g-f)){g=_sce[u(-0x3f,-0x42)](g,e[u(-0x82,-0x66)],e[u(-0x68,-0x61)]);}else if(g<f){g=_sce[u(-0x2a,-0x42)](f,e[u(-0x5d,-0x66)],e[u(-0x3c,-0x61)]);}d[u(-0x2e,-0x43)](f,g,setTimeSpanOptions);b[u(-0x82,-0x6e)]();}[_sci(-0x1d,-0x38)](){this[v(0x268,0x252)][v(0x209,0x225)][v(0x206,0x215)]();function v(a,b){return _sci(a,b-0x258);}this['initDates']();}[_sci(-0xd,-0x2e)](){const a=_sce[w(0x2ac,0x2cd)](new Date());function w(a,b){return _sci(b,a-0x2b1);}this['client'][w(0x285,0x298)](a,_sce[w(0x286,0x26d)](a,0x1,w(0x2a3,0x2b2)));this[w(0x25a,0x261)]();}['onRightShiftBtnClick'](){function x(a,b){return _sci(b,a-0x3d3);}this[x(0x3cd,0x3c8)][x(0x3a0,0x389)][x(0x3a1,0x39f)]();this[x(0x37c,0x376)]();}}_scd['registerFeature'](TimeAxisHeaderMenu,!![],[_sci(-0x77,-0x4b),_sci(-0x27,-0x8),_sci(0x10,-0x1a)]);
@@ -108,6 +108,11 @@
108
108
  * Current time background & line color
109
109
  */
110
110
  --b-current-time-color : var(--b-color-deep-orange);
111
+
112
+ /**
113
+ * Z-index of the mouse indicator line elements (`showMouseIndicatorLine`)
114
+ */
115
+ --b-mouse-indicator-zindex : 15;
111
116
  }
112
117
 
113
118
  .b-colorize {
@@ -130,6 +135,11 @@
130
135
  * Time range line label background color
131
136
  */
132
137
  --b-time-range-line-label-background : var(--b-time-range-line-color);
138
+
139
+ /**
140
+ * Mouse indicator line color (`showMouseIndicatorLine`). Defaults to the primary palette.
141
+ */
142
+ /* --b-mouse-indicator-color : var(--b-primary-50); */
133
143
  }
134
144
 
135
145
  /* Canvas in header and body */
@@ -159,6 +169,7 @@
159
169
  align-items : center;
160
170
  justify-content : center;
161
171
  bottom : 0;
172
+ white-space : nowrap; /* When using headerRenderer, app might not put a label in the header */
162
173
 
163
174
  background : var(--b-time-range-header-background);
164
175
  color : var(--b-time-range-color);
@@ -189,6 +200,16 @@
189
200
 
190
201
  --b-primary : var(--b-current-time-color);
191
202
  }
203
+
204
+ &.b-interactive {
205
+ .b-sch-time-range:not(.b-read-only) {
206
+ cursor : pointer;
207
+
208
+ &.b-over-resize-handle {
209
+ cursor : ew-resize;
210
+ }
211
+ }
212
+ }
192
213
  }
193
214
 
194
215
  /* Body */
@@ -260,6 +281,31 @@
260
281
  }
261
282
  }
262
283
 
284
+ /* Mouse indicator line */
285
+ .b-sch-line.b-sch-mouse-indicator {
286
+ pointer-events : none;
287
+ transition : none !important;
288
+ z-index : var(--b-mouse-indicator-zindex);
289
+
290
+ --b-primary : var(--b-mouse-indicator-color, var(--b-color-blue));
291
+ --b-time-range-line-color : var(--b-primary-85);
292
+ --b-time-range-line-opacity : 1;
293
+ --b-time-range-header-background : var(--b-primary);
294
+ --b-time-range-line-header-background : var(--b-primary);
295
+ --b-time-range-color : #fff;
296
+ --b-time-range-header-font-size : 0.8em;
297
+ --b-time-range-header-font-weight : 500;
298
+ --b-time-range-line-width : 1px;
299
+ }
300
+
301
+ /* Header pill styling */
302
+ .b-time-ranges-header-canvas .b-sch-mouse-indicator {
303
+ height : auto;
304
+ padding : 0.2em 0.6em;
305
+ border-radius : var(--b-time-range-line-header-border-radius);
306
+ translate : -50%;
307
+ }
308
+
263
309
  .b-timeline-base:not(.b-sch-vertical) {
264
310
  .b-time-ranges-header-canvas {
265
311
  .b-sch-line {
@@ -277,6 +323,12 @@
277
323
  border-start-start-radius : var(--b-time-range-line-header-border-radius);
278
324
  border-end-start-radius : var(--b-time-range-line-header-border-radius);
279
325
  }
326
+
327
+ /* In vertical mode the line is horizontal, so center the pill on the Y axis
328
+ * (the default `translate: -50%` centers on the X axis for horizontal mode). */
329
+ .b-sch-mouse-indicator {
330
+ translate : 0 -50%;
331
+ }
280
332
  }
281
333
 
282
334
  .b-sch-time-range {
@@ -1 +1 @@
1
- (function(a,b){function k(a,b){return _scb(b- -0x307,a);}const c=a();while(!![]){try{const d=-parseInt(k(-0xa0,-0xa6))/0x1*(parseInt(k(-0xbe,-0xdd))/0x2)+-parseInt(k(-0xb2,-0xf2))/0x3*(parseInt(k(-0x75,-0xa1))/0x4)+parseInt(k(-0xdd,-0xf1))/0x5*(parseInt(k(-0x110,-0xfc))/0x6)+parseInt(k(-0xdf,-0x10c))/0x7+-parseInt(k(-0x144,-0x10e))/0x8+parseInt(k(-0xc4,-0x9a))/0x9*(parseInt(k(-0xce,-0xee))/0xa)+parseInt(k(-0xcd,-0xc2))/0xb*(parseInt(k(-0xfb,-0xea))/0xc);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x800cb));import _scc from'./AbstractTimeRanges.js';import _scd from'@bryntum/grid-thin/lib/feature/GridFeatureManager.js';import _sce from'@bryntum/core-thin/lib/helper/DateHelper.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x1ef;let f=c[d];return f;};return _scb(a,b);}import _scf from'@bryntum/core-thin/lib/helper/DomHelper.js';import _scg from'../data/mixin/AttachToProjectMixin.js';import _sch from'../model/TimeSpan.js';_scf[_scl(0x594,0x5ce)]('@bryntum/scheduler-thin/lib/feature/TimeRanges.css');function _scl(a,b){return _scb(b-0x3cf,a);}export default class TimeRanges extends _scc[_scl(0x5d1,0x5c5)](_scg){static [_scl(0x64e,0x620)]=[_scl(0x60e,0x609)];static [_scl(0x5a0,0x5c6)]='TimeRanges';static [_scl(0x62c,0x5f4)]={'currentTimeLineUpdateInterval':0x2710,'currentDateFormat':'HH:mm','showCurrentTimeLine':{'$config':'lazy','value':null},'instantUpdate':null,'dragTipTemplate':data=>{function m(a,b){return _scl(b,a- -0x524);}return m(0xd7,0x99)+(data[m(0xc6,0xd9)]?'valid':m(0xae,0x92))+m(0xcb,0xbd)+data[m(0x11b,0x12b)]+m(0x115,0x136)+(data['endClockHtml']||'')+m(0xb0,0x9a);}};[_scl(0x5ce,0x5c0)](...a){function n(a,b){return _scl(b,a-0x15);}super[n(0x5d5,0x5ef)](...a);if(this[n(0x615,0x638)]&&this['instantUpdate']==null){this[n(0x5d7,0x5c3)]=!![];}}get[_scl(0x5b9,0x5d0)](){function o(a,b){return _scl(b,a- -0x6d1);}const a=this,{store:b}=a;if(!a['_timeRanges']){let d=[];if(b){var c;d=b['records'];if((c=b[o(-0x96,-0xbc)])!==null&&c!==void 0x0&&c['size']){const {startDate:e,endDate:f}=a[o(-0xf0,-0x101)][o(-0xfc,-0x132)];d=d['flatMap'](g=>{function p(a,b){return o(b- -0xda,a);}if(g[p(-0x1f4,-0x1df)]){return g[p(-0x1e4,-0x1a9)](e,f);}return g;});}}if(a[o(-0xc8,-0x96)]&&a['currentTimeLine']){d=[a[o(-0xbe,-0xe5)],...d];}a['_timeRanges']=d;}return a[o(-0xa8,-0x8f)];}['attachToProject'](a){var b;function q(a,b){return _scl(a,b- -0x48c);}const c=this;c['attachToTimeRangeStore'](a[q(0x15e,0x162)]);super[q(0x1c9,0x18d)](a);(b=c[q(0x189,0x1a7)])===null||b===void 0x0||b[q(0x18a,0x1ac)](c);if(c[q(0x14c,0x17d)]){var d;c[q(0x1c0,0x1a7)]=(d=c[q(0x143,0x155)][q(0x120,0x153)])===null||d===void 0x0?void 0x0:d[q(0x141,0x16c)]({'timeZoneChange':q(0x1c6,0x1a1),'thisObj':c});if(c[q(0x172,0x187)]){c[q(0x1b1,0x1a1)]();}}}[_scl(0x5d6,0x5e7)](){function r(a,b){return _scl(b,a- -0x5eb);}var a,b,c;const d=this;if(d['currentTimeLine']||!d['showCurrentTimeLine']){return;}const e=typeof d[r(0x1e,0x28)]===r(-0x12,-0x4d)?d[r(0x1e,-0x20)]:{};d[r(0x28,0x0)]=(((a=d[r(-0x22,-0x55)])===null||a===void 0x0?void 0x0:a[r(-0x1c,-0xc)])||_sch)[r(0x6,0x3)]({'id':r(-0x28,-0x45),'cls':r(-0x9,-0x1),'readOnly':!![]},e);if(d['currentTimeLineUpdateInterval']){d[r(0xc,-0x1f)]=d[r(0x2f,0x51)](()=>d[r(0x42,0x12)](),d[r(0x19,0x2e)]);}d[r(0x3e,0x50)]=null;d['updateCurrentTimeLine']();(b=(c=d[r(-0xa,-0x24)])[r(0x31,0x4b)])===null||b===void 0x0||b[r(0x4d,0x46)](c,f=>{var g,h;function s(a,b){return r(a-0x28a,b);}return(g=f[s(0x2d3,0x2a0)])===null||g===void 0x0||(g=g[s(0x26f,0x26d)])===null||g===void 0x0||(h=g['initCurrentTimeLine'])===null||h===void 0x0?void 0x0:h[s(0x2d7,0x2fd)](g);});}[_scl(0x63b,0x62d)](){var a;const b=this,{currentTimeLine:c,client:d}=b;c['timeZone']=(a=b[t(0x459,0x460)])===null||a===void 0x0?void 0x0:a['timeZone'];c[t(0x45a,0x41b)](t(0x458,0x432),new Date());function t(a,b){return _scl(b,a- -0x186);}c[t(0x48f,0x466)]=c[t(0x458,0x422)];if(!c[t(0x495,0x474)]['name']){c[t(0x4a6,0x4a7)]=_sce[t(0x43b,0x454)](c[t(0x458,0x46e)],b[t(0x4b1,0x4ca)]);}b[t(0x4b0,0x4b4)]();d[t(0x46d,0x47a)](t(0x4a4,0x4a4),{'date':c[t(0x458,0x434)]});}['hideCurrentTimeLine'](){var a,b;function u(a,b){return _scl(b,a- -0x60a);}const c=this;if(!c[u(0x9,0x12)]){return;}c[u(-0x39,-0x74)](c[u(-0x13,-0x2c)]);c[u(0x9,0x21)]=null;c[u(-0x1d,-0x5a)]();(a=(b=c[u(-0x29,-0x36)])[u(0x12,0x7)])===null||a===void 0x0||a['call'](b,d=>{var e,f;function v(a,b){return u(b-0x3f5,a);}return(e=d['features'])===null||e===void 0x0||(e=e[v(0x3af,0x3bb)])===null||e===void 0x0||(f=e['hideCurrentTimeLine'])===null||f===void 0x0?void 0x0:f[v(0x420,0x423)](e);});}[_scl(0x644,0x618)](a){function w(a,b){return _scl(a,b- -0x52e);}if(a){this['initCurrentTimeLine']();}else{this[w(0x7f,0x99)]();}this['client'][w(0xff,0xc5)](w(0xe2,0xe2));}[_scl(0x5df,0x5d8)]({items:a}){function x(a,b){return _scl(a,b- -0x49e);}const b=this;a[x(0x198,0x175)]={'weight':0x190,'text':b['L'](x(0x183,0x16e)),'checked':b[x(0x191,0x175)],'onToggle':({checked:c})=>{function y(a,b){return x(b,a-0x479);}if(!b[y(0x5e4,0x5f2)]){b[y(0x5e4,0x5a5)]=c;}else{b['updateShowCurrentTimeLine'](c);}}};}[_scl(0x62f,0x63d)](a){const b=this;if(b[z(0x230,0x224)]){b[z(0x230,0x249)]();}b[z(0x230,0x21b)]=a['ion']({'change':z(0x1f0,0x1ce),'refresh':'onStoreChange','thisObj':b});function z(a,b){return _scl(b,a- -0x3ed);}b[z(0x23c,0x1fd)]=null;b[z(0x249,0x241)]();}get[_scl(0x592,0x5c9)](){var a;function A(a,b){return _scl(b,a- -0x4c6);}return(a=this['client']['project'])===null||a===void 0x0?void 0x0:a[A(0x128,0x127)];}[_scl(0x656,0x626)](a){const {client:b}=this;function B(a,b){return _scl(b,a-0xa);}this[B(0x647,0x661)](a);if(b[B(0x5da,0x5d2)]&&!b[B(0x5f0,0x600)]){a[B(0x638,0x61c)](b[B(0x5da,0x5c5)]);delete b[B(0x5da,0x5d9)];}}[_scl(0x606,0x60e)](a){const b=a[C(0x179,0x190)](this['baseSelector'])[C(0x139,0x170)]['id'];function C(a,b){return _scl(b,a- -0x486);}if(b===C(0x13d,0x126)){return this['currentTimeLine'];}return this['store']['getById'](b);}[_scl(0x5aa,0x5dd)]({type:a,action:b}){function D(a,b){return _scl(b,a- -0x585);}const c=this;c[D(0xa4,0xb8)]=null;if(c[D(0x85,0x6b)]||!c['client'][D(0x4e,0x17)]||c[D(0x75,0x58)]||a===D(0x68,0x38)&&b!==D(0xa2,0xa8)){return;}c[D(0x5c,0x9a)][D(0x46,0x6f)](()=>c[D(0xb1,0xc8)](),!c['client'][D(0x39,0x49)]);}[_scl(0x5e2,0x5f5)](a){const b=this,{context:c}=a,d=b['resolveTimeRangeRecord'](c[E(-0x121,-0xe5)][E(-0xfd,-0x11c)](b[E(-0xf5,-0x11a)])),e=b[E(-0xe6,-0xfc)](d);function E(a,b){return _scl(b,a- -0x6fc);}c['relatedElements']=[e];Object['assign'](c,{'record':d,'rangeBodyEl':e,'originalStartDate':d[E(-0x11e,-0x153)],'originRangeX':a[E(-0xeb,-0xfe)][E(-0xcb,-0x10b)](e),'originRangeY':a[E(-0xeb,-0xae)]['getY'](e)});c[E(-0x121,-0x142)]['retainElement']=!![];e[E(-0xf7,-0x116)]=!![];if(b[E(-0x13a,-0x134)]){d['beginBatch']();}super[E(-0x107,-0xd0)](a);b['showTip'](c);}[_scl(0x5fe,0x5fe)](a){const b=this;super[F(-0x48,-0x47)](a);function F(a,b){return _scl(a,b- -0x645);}if(b[F(-0x98,-0x83)]){const {context:c}=a,{record:d}=c,e=b[F(-0x4a,-0x3a)](d);if(c['startDate']){d[F(-0x14,-0x24)](c[F(-0x29,-0x67)]);}if(b['headerRenderer']){const f=b[F(-0x5c,-0x45)]({'timeRange':d});e[F(-0x2e,-0x5c)]=f??'';}}}[_scl(0x5fe,0x5c4)](a){const {context:b}=a,{rangeBodyEl:c,element:d}=b;d[G(0x42d,0x45a)]=undefined;c['retainElement']=undefined;if(!b[G(0x412,0x3de)]){return this['onInvalidDrop']({'context':b});}function G(a,b){return _scl(b,a- -0x1d8);}const e=this,{client:f}=e,{record:g}=b,h=f[G(0x446,0x477)]?b[G(0x424,0x401)]:b['newY'],i=f[G(0x44c,0x454)]({'coord':h,'roundingMethod':G(0x447,0x417)}),j=b['originalStartDate']-i!==0x0;if(j){g[G(0x449,0x434)](i);}else{e[G(0x450,0x442)][G(0x430,0x42c)]();}if(e[G(0x3ea,0x3e6)]){g[G(0x42b,0x3ff)]();}e['destroyTip']();super[G(0x3ec,0x3e2)](a);}[_scl(0x673,0x63e)](a){const {context:b}=a;if(this[H(-0x79,-0x9f)]){b['record'][H(-0x65,-0x94)]();}function H(a,b){return _scl(a,b- -0x661);}super[H(-0x40,-0x23)](a);}[_scl(0x5d7,0x5eb)](a){const {context:b}=a,c=this,d=c['resolveTimeRangeRecord'](b['element'][I(0x6,-0xd)](c[I(-0x22,-0x5)])),e=c['getBodyElementByRecord'](d);function I(a,b){return _scl(a,b- -0x60c);}Object[I(-0x18,0x1f)](b,{'record':d,'rangeBodyEl':e});c['showTip'](b);super[I(-0x43,-0x21)](a);}[_scl(0x679,0x63a)]({source:a,context:b}){const c=this,{rangeBodyEl:d}=b,{client:e}=c,{isHorizontal:f}=e,g=f?b[J(0x2ab,0x26d)]:b['newY'],h=f?b[J(0x2a4,0x26d)]+b[J(0x269,0x263)]:b[J(0x282,0x2a0)]+b[J(0x2a1,0x26e)],i=e[J(0x2a2,0x295)]({'coord':g,'roundingMethod':J(0x265,0x290)}),j=e['getDateFromVirtualCoord']({'coord':h,'roundingMethod':'round'});function J(a,b){return _scl(a,b- -0x38f);}if(!f){if(b['edge']===J(0x2a6,0x294)){a[J(0x2ab,0x27e)](d,b[J(0x2ab,0x2a0)]);}d[J(0x267,0x261)]['height']=b[J(0x23e,0x26e)]+'px';}else{if(b[J(0x244,0x283)]===J(0x29a,0x272)){a[J(0x2ab,0x288)](d,b[J(0x256,0x26d)]);}d[J(0x235,0x261)]['width']=b[J(0x276,0x263)]+'px';}c[J(0x278,0x280)]({'startDate':i,'endDate':j});}[_scl(0x5fc,0x5dc)]({context:a}){if(!a[K(0x52d,0x4ef)]){return this['onInvalidDrop']({'context':a});}const b=this,{client:c}=b,{record:d}=a,e=c[K(0x561,0x571)]?a[K(0x53f,0x529)]:a['newY'],f=c['isHorizontal']?a['newX']+a[K(0x535,0x526)]:a[K(0x572,0x5ac)]+a['newHeight'],g=c[K(0x567,0x546)]({'coord':e,'roundingMethod':K(0x562,0x599)}),h=c[K(0x567,0x583)]({'coord':f,'roundingMethod':'round'}),i=a[K(0x555,0x525)]===K(0x544,0x50b)||a['edge']===K(0x566,0x560),j=i&&d[K(0x521,0x4eb)]-g!==0x0||h&&d[K(0x558,0x538)]-h!==0x0;if(j&&h>g){if(i){d[K(0x564,0x583)](g,![]);}else{d['setEndDate'](h,![]);}}else{b['onInvalidResize']({'context':a});}function K(a,b){return _scl(b,a- -0xbd);}b['destroyTip']();}[_scl(0x627,0x632)]({context:a}){const b=this;b['resize'][L(0x271,0x262)]();function L(a,b){return _scl(b,a- -0x3b4);}a[L(0x22f,0x235)][L(0x252,0x21e)][L(0x242,0x236)]=a[L(0x22f,0x215)][L(0x242,0x25a)]=a[L(0x227,0x21f)][L(0x242,0x254)]=null;b[L(0x282,0x242)]();b[L(0x26e,0x26c)]();}get['state'](){function M(a,b){return _scl(a,b- -0x4a1);}return{'showCurrentTimeLine':this[M(0x136,0x168)]};}}function _sca(){const N=['new','newWidth','trigger','configurable','onDragStart','lastDomConfig','currentTimeInterval','ion','541050cJBXUs','isConfiguring','\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<div\x20class=\x22b-sch-tip-','newX','newHeight','onDrag','closest','headerRenderer','left','getOccurrencesForDateRange','endBatch','currentTimeLineUpdateInterval','retainElement','parentElement','baseSelector','abort','showCurrentTimeLine','disabled','getHeaderElementByRecord','L{showCurrentTimeLine}','setY','resolveTimeRangeRecord','updateDateIndicator','stateChange','source','edge','currentTimeLine','8938985MEETuv','endDate','getBodyElementByRecord','setX','updateShowCurrentTimeLine','attachToProject','setInterval','originalData','syncSplits','storeDetacher','isHorizontal','round','stateProperties','setStartDate','destroyTip','top','getDateFromVirtualCoord','reset','attachToTimeRangeStore','batch','drag','_timeRanges','currentTimelineUpdate','assign','name','updateCurrentTimeLine','add','newY','3HHTWFe','getX','onInvalidResize','projectTimeZoneChangeDetacher','features','4348kOugQl','renderRanges','currentDateFormat','call','\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','onResizeDrag','recurringEvents','3582414MxzboL','attachToStore','onInvalidDrop','startClockHtml','refreshSuspended','dataset','construct','format','instantUpdate','currentTime','onDrop','mixin','$name','hideCurrentTimeLine','2226232cQCSGm','store','4903941wapbjE','runWithTransition','isRecurring','cancelBatch','loadStylesheet','modelClass','timeRanges','clearInterval','invalid','isVisible','\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20</div>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','timeAxis','registerFeature','TimelineBase','populateTimeAxisHeaderMenu','object','13416nCqTyW','element','onResize','onStoreChange','startDate','project','setLocalDate','client','b-sch-current-time','rangeBodyEl','2103HjjXBP','1040sqlQTQ','_timeRangesExposed','initCurrentTimeLine','10xJMbag','innerHTML','valid','onResizeStart','12lnahAd','refresh','timeRangeStore','\x22>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','style'];_sca=function(){return N;};return _sca();}_scd[_scl(0x5b9,0x5d6)](TimeRanges,![],[_scl(0x5fe,0x5d7)]);
1
+ function _scp(a,b){return _scb(b-0xdd,a);}(function(a,b){const c=a();function o(a,b){return _scb(a-0x2a0,b);}while(!![]){try{const d=parseInt(o(0x45f,0x42f))/0x1+parseInt(o(0x3ee,0x3ff))/0x2+parseInt(o(0x434,0x46d))/0x3*(parseInt(o(0x3f1,0x43e))/0x4)+-parseInt(o(0x3d1,0x385))/0x5*(parseInt(o(0x3be,0x3ad))/0x6)+parseInt(o(0x404,0x406))/0x7*(-parseInt(o(0x41d,0x3ee))/0x8)+parseInt(o(0x3bc,0x3a1))/0x9+-parseInt(o(0x3f9,0x3eb))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x816f2));import _scc from'./AbstractTimeRanges.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x117;let f=c[d];return f;};return _scb(a,b);}import _scd from'@bryntum/grid-thin/lib/feature/GridFeatureManager.js';import _sce from'@bryntum/core-thin/lib/helper/DateHelper.js';import _scf from'@bryntum/core-thin/lib/helper/DomHelper.js';import _scg from'@bryntum/core-thin/lib/helper/EventHelper.js';import _sch from'../data/mixin/AttachToProjectMixin.js';import _sci from'../model/TimeSpan.js';function _sca(){const a7=['object','setStartDate','parentElement','formatContainsHourInfo','attachToProject','8132690eLqJuD','onTimeAxisSubGridOver','timeAxisSubGridElement','\x20b-sch-line\x20b-sch-mouse-indicator\x20b-colorize','showCurrentTimeLine','isRecurring','project','getDateFromDomEvent','newWidth','call','hideCurrentTimeLine','3374OVbVle','endClockHtml','isVertical','height','drag','onTimeAxisSubGridMouseDown','registerFeature','refreshSuspended','abort','endDate','mouseIndicatorBodyDetacher','attachToStore','element','L{showCurrentTimeLine}','ensureMouseIndicatorElements','onInvalidResize','left','onResizeDrag','setLocalDate','doDisable','insetBlockStart','_timeRanges','ddd\x20L','storeDetacher','client','16216XmEqhD','onStoreChange','_timeRangesExposed','newHeight','store','isHorizontal','after','timeZone','onTimeAxisSubGridLeave','originalStartDate','hh:mm\x20A','setY','lastDomConfig','positionMouseIndicator','clearInterval','b-sch-time-range\x20','reset','$name','createElement','TimelineBase','projectTimeZoneChangeDetacher','recurringEvents','disabled','1478175wqkxCi','refresh','updateCurrentTimeLine','startDate','startClockHtml','retainElement','batch','syncSplits','HH:mm','newY','trigger','onDocumentMouseUp','instantUpdate','getBodyElementByRecord','isVisible','showTip','resize','source','resolveTimeRangeRecord','timeRanges','features','cancelBatch','onDrop','add','originalData','doDestroy','remove','b-sch-current-time','format','currentTime','initCurrentTimeLine','showHeaderElements','mouseIndicatorBodyEl','stateChange','showMouseIndicatorLine','record','TimeRanges','getVirtualCoordFromDate','size','mouseIndicatorHeaderEl','endBatch','round','\x22>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','1000480EEKciF','currentTimeLine','baseSelector','onResize','timeRangeStore','mouseIndicatorLastText','configurable','onDragStart','attachToTimeRangeStore','valid','style','state','loadStylesheet','7153425KFaNBN','newX','18138iGEZhe','setMouseIndicatorHidden','runWithTransition','installMouseIndicatorListener','onResizeStart','destroyMouseIndicator','lazy','updateShowCurrentTimeLine','innerHTML','pluginConfig','onInvalidDrop','minWidth','getY','name','rangeBodyEl','label','top','destroyTip','none','1105qNFcIz','bodyCanvas','edge','\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20</div>\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','updateShowMouseIndicatorLine','onDrag','setEndDate','modelClass','getDateFromVirtualCoord','stateProperties','insetInlineStart','getById','onTimeAxisSubGridMove','isConfiguring','\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','renderRanges','timeAxis','textContent','assign','construct','getX','\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20<div\x20class=\x22b-sch-tip-','display','getHeaderElementByRecord','headerRenderer','cls','setInterval','onFirstMouseMove','mouseIndicatorMouseUpDetacher','1400996tWdpuD','ion','headerCanvas','4UwHsrp','invalid','closest'];_sca=function(){return a7;};return _sca();}_scf[_scp(0x1c3,0x1f8)]('@bryntum/scheduler-thin/lib/feature/TimeRanges.css');export default class TimeRanges extends _scc['mixin'](_sch){static [_scp(0x200,0x217)]=[_scp(0x269,0x23a),_scp(0x2bd,0x293)];static [_scp(0x2b6,0x26b)]=_scp(0x2c8,0x295);static get[_scp(0x24e,0x204)](){function q(a,b){return _scp(a,b- -0x87);}const a=super[q(0x1a3,0x17d)];return{...a,'after':[...a[q(0x1ec,0x1d9)],q(0x179,0x1a2)]};}static [_scp(0x28c,0x2a2)]={'currentTimeLineUpdateInterval':0x2710,'currentDateFormat':_scp(0x230,0x279),'showCurrentTimeLine':{'$config':_scp(0x1fb,0x201),'value':null},'instantUpdate':null,'dragTipTemplate':data=>{function r(a,b){return _scp(a,b- -0x1b8);}return r(0x6f,0x6b)+(data['valid']?r(0x57,0x3d):r(0x4e,0x77))+r(0xd1,0xe3)+data[r(0x84,0xbd)]+r(0x97,0x64)+(data[r(0x53,0x8a)]||'')+r(0x1a,0x59);},'showMouseIndicatorLine':![]};[_scp(0x26e,0x221)](...a){super['construct'](...a);function s(a,b){return _scp(a,b-0x2c5);}if(this[s(0x4fd,0x4eb)]&&this['instantUpdate']==null){this[s(0x562,0x542)]=!![];}}[_scp(0x287,0x28a)](){function t(a,b){return _scp(a,b- -0x3f3);}this[t(-0x239,-0x1f3)]();super[t(-0x14d,-0x169)]();}get[_scp(0x2d9,0x284)](){const a=this,{store:b}=a;function u(a,b){return _scp(b,a-0xbc);}if(!a[u(0x312,0x343)]){let d=[];if(b){var c;d=b['records'];if((c=b[u(0x32b,0x323)])!==null&&c!==void 0x0&&c[u(0x353,0x320)]){const {startDate:e,endDate:f}=a[u(0x315,0x2cc)][u(0x2da,0x30d)];d=d['flatMap'](g=>{function v(a,b){return u(a- -0x1cb,b);}if(g[v(0x12c,0x176)]){return g['getOccurrencesForDateRange'](e,f);}return g;});}}if(a[u(0x2f6,0x2f8)]&&a[u(0x359,0x340)]){d=[a['currentTimeLine'],...d];}a[u(0x312,0x312)]=d;}return a['_timeRanges'];}[_scp(0x232,0x235)](a){function w(a,b){return _scp(a,b-0x1b8);}var b;const c=this;c[w(0x3f4,0x3ac)](a[w(0x415,0x458)]);super[w(0x397,0x3ed)](a);(b=c[w(0x459,0x426)])===null||b===void 0x0||b[w(0x3b5,0x3f7)](c);if(c[w(0x429,0x3f2)]){var d;c[w(0x3f7,0x426)]=(d=c[w(0x44d,0x411)][w(0x3fa,0x3f4)])===null||d===void 0x0?void 0x0:d[w(0x408,0x3e4)]({'timeZoneChange':w(0x3f6,0x42b),'thisObj':c});if(c['currentTimeLine']){c[w(0x400,0x42b)]();}}}['initCurrentTimeLine'](){var a,b,c;const d=this;if(d[x(0x143,0x187)]||!d[x(0xe0,0x110)]){return;}const e=typeof d[x(0xe0,0xb6)]==='object'?d[x(0xe0,0x97)]:{};function x(a,b){return _scp(b,a- -0x15a);}d[x(0x143,0x153)]=(((a=d[x(0x104,0x131)])===null||a===void 0x0?void 0x0:a[x(0xbb,0x69)])||_sci)['new']({'id':'currentTime','cls':x(0x132,0xf1),'readOnly':!![]},e);if(d['currentTimeLineUpdateInterval']){d['currentTimeInterval']=d[x(0xce,0xae)](()=>d[x(0x119,0x150)](),d['currentTimeLineUpdateInterval']);}d[x(0xfc,0xc5)]=null;d[x(0x119,0xc8)]();(b=(c=d[x(0xff,0x154)])[x(0x11e,0x101)])===null||b===void 0x0||b[x(0xe5,0x96)](c,f=>{function y(a,b){return x(b- -0x1ab,a);}var g,h;return(g=f[y(-0x29,-0x80)])===null||g===void 0x0||(g=g[y(-0x3d,-0x81)])===null||g===void 0x0||(h=g[y(-0x80,-0x76)])===null||h===void 0x0?void 0x0:h[y(-0x7f,-0xc6)](g);});}['updateCurrentTimeLine'](){var a;const b=this,{currentTimeLine:c,client:d}=b;c[z(0xcc,0xde)]=(a=b[z(0xce,0xb9)])===null||a===void 0x0?void 0x0:a[z(0xea,0xde)];c[z(0xac,0xd0)](z(0x12a,0xf1),new Date());function z(a,b){return _scp(a,b- -0x183);}c[z(0xc7,0xc7)]=c[z(0xa6,0xf1)];if(!c[z(0xd4,0x106)]['name']){c[z(0x5e,0x85)]=_sce[z(0xe4,0x10a)](c[z(0xaf,0xf1)],b['currentDateFormat']);}b['renderRanges']();d[z(0xb9,0xf8)]('currentTimelineUpdate',{'date':c['startDate']});}[_scp(0x240,0x240)](){var a,b;const c=this;function A(a,b){return _scp(a,b- -0x345);}if(!c['currentTimeLine']){return;}c[A(-0x127,-0xdd)](c['currentTimeInterval']);c[A(-0xc1,-0xa8)]=null;c[A(-0x124,-0xd3)]();(a=(b=c[A(-0xdd,-0xec)])[A(-0x83,-0xcd)])===null||a===void 0x0||a[A(-0x14a,-0x106)](b,d=>{function B(a,b){return A(b,a-0x51e);}var e,f;return(e=d[B(0x45e,0x452)])===null||e===void 0x0||(e=e['timeRanges'])===null||e===void 0x0||(f=e['hideCurrentTimeLine'])===null||f===void 0x0?void 0x0:f['call'](e);});}['updateShowCurrentTimeLine'](a){if(a){this[C(0x499,0x448)]();}else{this[C(0x44e,0x3f9)]();}function C(a,b){return _scp(a,b-0x1b9);}this[C(0x42e,0x412)]['trigger'](C(0x49f,0x44b));}['changeShowMouseIndicatorLine'](a){if(a&&typeof a!==D(-0xa2,-0x4a)){return{};}function D(a,b){return _scp(b,a- -0x2d3);}return a||![];}[_scp(0x21a,0x212)](a){const b=this;if(a){b[E(-0x175,-0x1c6)]();}else{b[E(-0x1a7,-0x1c4)]();}function E(a,b){return _scp(a,b- -0x3c4);}if(!b[E(-0x1b8,-0x1a9)]){b[E(-0x1ac,-0x16b)]['trigger'](E(-0x11b,-0x132));}}[_scp(0x251,0x1fe)](){function F(a,b){return _scp(a,b-0xb4);}var a;const b=this;if(b[F(0x2f3,0x2ff)]||!((a=b['client'])!==null&&a!==void 0x0&&a[F(0x309,0x2ec)])){return;}b[F(0x349,0x2ff)]=_scg['on']({'element':b[F(0x320,0x30d)][F(0x338,0x2ec)],'mouseover':F(0x2d9,0x2eb),'mousemove':F(0x295,0x2ce),'mouseleave':F(0x2e8,0x316),'mousedown':F(0x30a,0x2fa),'thisObj':b});}['destroyMouseIndicator'](){var a,b,c,d;const e=this;(a=e['mouseIndicatorBodyDetacher'])===null||a===void 0x0||a['call'](e);(b=e['mouseIndicatorMouseUpDetacher'])===null||b===void 0x0||b[G(0x454,0x43f)](e);(c=e['mouseIndicatorBodyEl'])===null||c===void 0x0||c['remove']();(d=e[G(0x46c,0x498)])===null||d===void 0x0||d[G(0x4d9,0x48b)]();function G(a,b){return _scp(a,b-0x200);}e[G(0x4bb,0x491)]=null;e[G(0x45b,0x498)]=null;e['mouseIndicatorBodyDetacher']=null;e[G(0x3d7,0x42a)]=null;e['mouseIndicatorLastText']=null;}['onFirstMouseMove'](){function H(a,b){return _scp(b,a- -0x338);}if(!this[H(-0xa5,-0xfc)]){return;}this[H(-0xe9,-0xbd)]();this[H(-0x13a,-0x14c)]();}['ensureMouseIndicatorElements'](){function I(a,b){return _scp(a,b-0x5d);}const a=this,b=a[I(0x2e5,0x2f0)];a[I(0x30e,0x2ee)]||=_scf['createElement']({'className':'b-sch-time-range\x20'+a[I(0x26b,0x284)]+I(0x28b,0x296),'parent':a[I(0x22d,0x26c)],'retainElement':!![]});if(b[I(0x2c2,0x2ed)]!==![]&&a[I(0x2c5,0x2ed)]&&a[I(0x245,0x28a)]){a[I(0x2c4,0x2f5)]||=_scf[I(0x2dc,0x2c9)]({'className':I(0x31b,0x2c6)+a[I(0x292,0x284)]+I(0x2e7,0x296),'parent':a['headerCanvas'],'retainElement':!![],'children':[{'tag':I(0x2b8,0x267)}]});}}['onTimeAxisSubGridOver'](a){function J(a,b){return _scp(a,b- -0x288);}const b=this;if(!b[J(-0x59,-0x18)]&&b[J(0x63,0xb)]){b['ensureMouseIndicatorElements']();b[J(-0x70,-0x6e)](a);}}['onTimeAxisSubGridLeave'](){var a,b;function K(a,b){return _scp(a,b- -0x7f);}const c=this;(a=c[K(0x21a,0x212)])===null||a===void 0x0||a[K(0x1df,0x20c)]();(b=c[K(0x1e2,0x219)])===null||b===void 0x0||b[K(0x1fd,0x20c)]();c['mouseIndicatorBodyEl']=null;c[K(0x1f2,0x219)]=null;c['mouseIndicatorLastText']=null;}[_scp(0x23b,0x246)](){var a;const b=this;b['setMouseIndicatorHidden'](!![]);(a=b['mouseIndicatorMouseUpDetacher'])===null||a===void 0x0||a[L(0x4a6,0x4d3)](b);function L(a,b){return _scp(a,b-0x294);}b[L(0x4fb,0x4be)]=_scg['on']({'element':document,'mouseup':L(0x4e2,0x510),'thisObj':b,'once':!![]});}[_scp(0x2d4,0x27c)](a){const b=this;function M(a,b){return _scp(a,b- -0x42d);}b[M(-0x235,-0x203)]=null;b[M(-0x222,-0x213)](a);b['setMouseIndicatorHidden'](![]);}[_scp(0x242,0x1fc)](a){const b=a?N(-0x222,-0x247):'';if(this[N(-0x1ea,-0x1c3)]){this[N(-0x1fc,-0x1c3)][N(-0x2a2,-0x25e)]['display']=b;}function N(a,b){return _scp(a,b- -0x454);}if(this[N(-0x1d5,-0x1bc)]){this[N(-0x1cb,-0x1bc)][N(-0x28b,-0x25e)][N(-0x25f,-0x230)]=b;}}['doDisable'](a){function O(a,b){return _scp(b,a- -0x1ee);}if(a){this['onTimeAxisSubGridLeave']();}super[O(0x66,0xbd)](a);}[_scp(0x26a,0x21a)](a){function P(a,b){return _scp(a,b-0x2e8);}const b=this,{client:c}=b;if(b[P(0x575,0x558)]||!b[P(0x5be,0x57b)]||!b[P(0x5bc,0x579)]||a['buttons']){return;}const d=c[P(0x531,0x525)](a);if(!d){return;}const e=c[P(0x5d2,0x57e)](d);if(e<0x0){return;}b[P(0x53e,0x54f)](e,d);}[_scp(0x221,0x267)](a,b){const c=this,{client:d,mouseIndicatorBodyEl:e,mouseIndicatorHeaderEl:f}=c,g=d[Q(0x19f,0x17c)]?Q(0x1b1,0x17c):Q(0x174,0x1bf);e[Q(0x152,0x131)][g]=a+'px';function Q(a,b){return _scp(b,a- -0xa4);}if(f){const h=c[Q(0x1ef,0x1ba)][Q(0x182,0x13b)],i=f['querySelector']('label');f[Q(0x152,0x19b)][g]=a+'px';if(i){let j;if(h){j=h({'date':b})??'';if(c[Q(0x1fd,0x202)]!==j){i[Q(0x15f,0x16f)]=j;c['mouseIndicatorLastText']=j;}}else{const k=d['displayDateFormat'],l=_sce[Q(0x190,0x185)](k);j=_sce[Q(0x1e9,0x1f8)](b,l?Q(0x1c0,0x1c9):Q(0x1b3,0x203));if(c[Q(0x1fd,0x1fd)]!==j){i[Q(0x17b,0x16c)]=j;c['mouseIndicatorLastText']=j;const m=f['offsetWidth'],n=parseFloat(f['style']['minWidth'])||0x0;if(m>n){f[Q(0x152,0x19e)][Q(0x162,0x165)]=m+'px';}}}}}}['populateTimeAxisHeaderMenu']({items:a}){const b=this;function R(a,b){return _scp(b,a-0x178);}a[R(0x415,0x435)]={'weight':0x190,'text':b['L'](R(0x3c6,0x3ed)),'checked':b['currentTimeLine'],'onToggle':({checked:c})=>{function S(a,b){return R(a- -0x254,b);}if(!b['showCurrentTimeLine']){b[S(0x15e,0x1a2)]=c;}else{b[S(0x126,0x102)](c);}}};}[_scp(0x278,0x24c)](a){const b=this;function T(a,b){return _scp(b,a-0x91);}if(b[T(0x2e9,0x2d4)]){b[T(0x2e9,0x322)]();}b[T(0x2e9,0x2f4)]=a[T(0x2bd,0x289)]({'change':T(0x2ec,0x335),'refresh':T(0x2ec,0x2fe),'thisObj':b});b['_timeRanges']=null;b[T(0x2ae,0x302)]();}get[_scp(0x288,0x25e)](){var a;function U(a,b){return _scp(a,b- -0x2f5);}return(a=this['client'][U(-0xa3,-0xb9)])===null||a===void 0x0?void 0x0:a[U(-0x8e,-0x55)];}[_scp(0x20b,0x1f4)](a){const {client:b}=this;function V(a,b){return _scp(b,a-0x281);}this[V(0x4cd,0x4d6)](a);if(b[V(0x505,0x553)]&&!b[V(0x4dd,0x4a8)]){a[V(0x509,0x543)](b[V(0x505,0x4f8)]);delete b[V(0x505,0x512)];}}[_scp(0x280,0x283)](a){const b=a[W(-0x1c2,-0x1d0)](this[W(-0x16f,-0x162)])['dataset']['id'];if(b===W(-0x151,-0x172)){return this[W(-0x170,-0x163)];}function W(a,b){return _scp(a,b- -0x400);}return this[W(-0x14a,-0x1a2)][W(-0x1c9,-0x1e7)](b);}['onStoreChange']({type:a,action:b}){const c=this;function X(a,b){return _scp(b,a-0xad);}c[X(0x303,0x33a)]=null;if(c[X(0x31d,0x313)]||!c[X(0x306,0x2d2)][X(0x32c,0x2e8)]||c[X(0x2c8,0x295)]||a==='refresh'&&b!==X(0x324,0x326)){return;}c[X(0x306,0x2f8)][X(0x2aa,0x26d)](()=>c[X(0x2ca,0x2e3)](),!c['client'][X(0x2f5,0x2cd)]);}[_scp(0x280,0x2a3)](a){const b=this,{context:c}=a,d=b[Y(0x238,0x1e0)](c['element']['closest'](b[Y(0x1a6,0x1fb)])),e=b[Y(0x1c2,0x1db)](d);c['relatedElements']=[e];Object[Y(0x132,0x17d)](c,{'record':d,'rangeBodyEl':e,'originalStartDate':d[Y(0x19c,0x1d1)],'originRangeX':a[Y(0x1b8,0x1df)][Y(0x1d1,0x17f)](e),'originRangeY':a[Y(0x1cb,0x1df)][Y(0x15d,0x164)](e)});c[Y(0x1e1,0x1aa)][Y(0x1a4,0x1d3)]=!![];e[Y(0x224,0x1d3)]=!![];function Y(a,b){return _scp(a,b- -0xa3);}if(b[Y(0x1a4,0x1da)]){d['beginBatch']();}super['onDragStart'](a);b[Y(0x1e0,0x1dd)](c);}['onDrag'](a){function Z(a,b){return _scp(b,a- -0x36f);}const b=this;super[Z(-0x15c,-0x1a2)](a);if(b[Z(-0xf2,-0xd9)]){const {context:c}=a,{record:d}=c,e=b[Z(-0x14a,-0x19c)](d);if(c['startDate']){d[Z(-0x13d,-0xf3)](c['startDate']);}if(b[Z(-0x149,-0x141)]){const f=b[Z(-0x149,-0x190)]({'timeRange':d});e[Z(-0x16c,-0x14d)]=f??'';}}}[_scp(0x2c2,0x287)](a){const {context:b}=a,{rangeBodyEl:c,element:d}=b;d[a0(-0xb7,-0x93)]=undefined;c['retainElement']=undefined;if(!b[a0(-0x112,-0x114)]){return this[a0(-0xd4,-0x104)]({'context':b});}function a0(a,b){return _scp(a,b- -0x309);}const e=this,{client:f}=e,{record:g}=b,h=f[a0(-0xc5,-0xaa)]?b[a0(-0xfc,-0x10f)]:b['newY'],i=f[a0(-0xaa,-0xf3)]({'coord':h,'roundingMethod':a0(-0x5d,-0x6f)}),j=b[a0(-0x5d,-0xa6)]-i!==0x0;if(j){g[a0(-0x109,-0xd7)](i);}else{e[a0(-0x108,-0xc4)][a0(-0x112,-0xc0)]();}if(e[a0(-0xcb,-0x8c)]){g[a0(-0x91,-0x70)]();}e['destroyTip']();super[a0(-0x88,-0x82)](a);}[_scp(0x21d,0x205)](a){function a1(a,b){return _scp(a,b-0x201);}const {context:b}=a;if(this['instantUpdate']){b[a1(0x4b7,0x495)][a1(0x4d0,0x487)]();}super[a1(0x401,0x406)](a);}[_scp(0x1f7,0x1ff)](a){const {context:b}=a,c=this,d=c[a2(-0x98,-0x64)](b['element']['closest'](c[a2(0xe,-0x49)])),e=c['getBodyElementByRecord'](d);Object[a2(-0x115,-0xc7)](b,{'record':d,'rangeBodyEl':e});c[a2(-0x46,-0x67)](b);function a2(a,b){return _scp(a,b- -0x2e7);}super[a2(-0x107,-0xe8)](a);}[_scp(0x295,0x252)]({source:a,context:b}){function a3(a,b){return _scp(a,b-0x46);}const c=this,{rangeBodyEl:d}=b,{client:e}=c,{isHorizontal:f}=e,g=f?b[a3(0x292,0x240)]:b[a3(0x2c3,0x2c0)],h=f?b[a3(0x23d,0x240)]+b[a3(0x272,0x284)]:b[a3(0x2dd,0x2c0)]+b[a3(0x2de,0x2a3)],i=e['getDateFromVirtualCoord']({'coord':g,'roundingMethod':a3(0x324,0x2e0)}),j=e[a3(0x237,0x25c)]({'coord':h,'roundingMethod':a3(0x2f2,0x2e0)});if(!f){if(b['edge']===a3(0x283,0x251)){a[a3(0x283,0x2ab)](d,b['newY']);}d['style'][a3(0x2ca,0x28a)]=b['newHeight']+'px';}else{if(b[a3(0x238,0x256)]===a3(0x27e,0x297)){a['setX'](d,b['newX']);}d[a3(0x286,0x23c)]['width']=b['newWidth']+'px';}c['updateDateIndicator']({'startDate':i,'endDate':j});}[_scp(0x24c,0x29f)]({context:a}){function a4(a,b){return _scp(b,a- -0x3e1);}if(!a[a4(-0x1ec,-0x1d4)]){return this[a4(-0x1dc,-0x1d3)]({'context':a});}const b=this,{client:c}=b,{record:d}=a,e=c['isHorizontal']?a[a4(-0x1e7,-0x22f)]:a[a4(-0x167,-0x176)],f=c['isHorizontal']?a[a4(-0x1e7,-0x1c5)]+a[a4(-0x1a3,-0x1b6)]:a[a4(-0x167,-0x16f)]+a[a4(-0x184,-0x17f)],g=c[a4(-0x1cb,-0x188)]({'coord':e,'roundingMethod':a4(-0x147,-0xf5)}),h=c[a4(-0x1cb,-0x211)]({'coord':f,'roundingMethod':a4(-0x147,-0x13f)}),i=a['edge']===a4(-0x190,-0x1b6)||a[a4(-0x1d1,-0x207)]==='top',j=i&&d['startDate']-g!==0x0||h&&d[a4(-0x197,-0x18a)]-h!==0x0;if(j&&h>g){if(i){d[a4(-0x1af,-0x175)](g,![]);}else{d[a4(-0x1cd,-0x211)](h,![]);}}else{b[a4(-0x191,-0x15e)]({'context':a});}b[a4(-0x1d5,-0x1b8)]();}['onInvalidResize']({context:a}){const b=this;b[a5(-0x224,-0x237)][a5(-0x265,-0x24e)]();function a5(a,b){return _scp(a,b- -0x4b8);}a[a5(-0x28a,-0x2af)][a5(-0x2cb,-0x285)][a5(-0x24d,-0x252)]=a['rangeBodyEl'][a5(-0x2a4,-0x252)]=a[a5(-0x250,-0x26b)][a5(-0x20f,-0x252)]=null;b[a5(-0x24d,-0x29b)]();b[a5(-0x296,-0x2ac)]();}get[_scp(0x22d,0x1f7)](){function a6(a,b){return _scp(a,b- -0x401);}return{'showCurrentTimeLine':this[a6(-0x17d,-0x1c7)],'showMouseIndicatorLine':Boolean(this[a6(-0x198,-0x16e)])};}}_scd[_scp(0x209,0x247)](TimeRanges,![],[_scp(0x232,0x26d)]);