@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
package/README.md CHANGED
@@ -80,7 +80,6 @@ The **Thin package** contains only product-specific code and styling, making it
80
80
  * [Angular](https://angularjs.org/): `>= 9.0.0`
81
81
  * [React](https://react.dev/): `>= 16.0.0`
82
82
  * [Vue](https://vuejs.org/): `>= 3.0.0`
83
- * [Ionic](https://ionicframework.com/): `>= 5.0.0`
84
83
  * [Vite](https://vite.dev/): `>= 4.0.0`
85
84
  * [Webpack](https://webpack.js.org/): `>= 4.0.0`
86
85
 
package/entry.js CHANGED
@@ -33,7 +33,7 @@ export { default as TimeRangeStore } from '@bryntum/scheduler-thin/lib/data/Time
33
33
 
34
34
  // data util
35
35
  export { default as AbstractRecurrenceIterator } from '@bryntum/scheduler-thin/lib/data/util/recurrence/AbstractRecurrenceIterator.js';
36
- export { default as AISettingsModel } from '@bryntum/scheduler-thin/lib/data/AISettingsModel.js';
36
+ export { default as AISettingsModel } from '@bryntum/scheduler-thin/lib/model/AISettingsModel.js';
37
37
  export { default as DailyRecurrenceIterator } from '@bryntum/scheduler-thin/lib/data/util/recurrence/DailyRecurrenceIterator.js';
38
38
  export { default as EventDayIndex } from '@bryntum/scheduler-thin/lib/data/util/EventDayIndex.js';
39
39
  export { default as MonthlyRecurrenceIterator } from '@bryntum/scheduler-thin/lib/data/util/recurrence/MonthlyRecurrenceIterator.js';
@@ -242,5 +242,6 @@ export { default as ProjectCombo } from '@bryntum/scheduler-thin/lib/widget/Proj
242
242
  export { default as ResourceCombo } from '@bryntum/scheduler-thin/lib/widget/ResourceCombo.js';
243
243
  export { default as ResourceFilter } from '@bryntum/scheduler-thin/lib/widget/ResourceFilter.js';
244
244
  export { default as SchedulerDatePicker } from '@bryntum/scheduler-thin/lib/widget/SchedulerDatePicker.js';
245
+ export { default as TimeZoomSlider } from '@bryntum/scheduler-thin/lib/widget/TimeZoomSlider.js';
245
246
  export { default as UndoRedo } from '@bryntum/scheduler-thin/lib/widget/UndoRedo.js';
246
247
  export { default as ViewPresetCombo } from '@bryntum/scheduler-thin/lib/widget/ViewPresetCombo.js';
package/fluent2-dark.css CHANGED
@@ -147,6 +147,22 @@
147
147
 
148
148
  /* TaskBoard */
149
149
  --b-task-board-column-header-font-weight : 600;
150
+
151
+ /* Heat map values ranging from lowest to highest intensity to create
152
+ * background colors to indicate how "hot" an element is, for example
153
+ * based on the number of events in a calendar cell.
154
+ */
155
+ /*
156
+ * Start color for the heatmap, representing the lowest intensity (e.g. 1 event in a calendar cell).
157
+ */
158
+ --b-heatmap-start : oklab(0.53 -0.03 0.1);
159
+
160
+ /*
161
+ * End color for the heatmap, representing the highest intensity (e.g. 10 or more events in a calendar cell).
162
+ */
163
+ --b-heatmap-end : oklab(0.38 0.13 0.03);
164
+
165
+ --b-heatmap-mix-blend-mode : hard-light;
150
166
  }
151
167
 
152
168
  /* Shades of primary color have to be specified per widget, for color-mix to work as intended */
@@ -5,6 +5,30 @@
5
5
  --b-primary : var(--b-color-blue);
6
6
  --b-secondary : var(--b-color-orange);
7
7
 
8
+ /* Define color set that has WCAG-compliant contrast against a black background */
9
+ --b-color-red : #fc3e3b;
10
+ --b-color-pink : #e01c63;
11
+ --b-color-magenta : #ce00ce;
12
+ --b-color-purple : #b539d5;
13
+ --b-color-violet : #845fcf;
14
+ --b-color-deep-purple : #7d5fd8;
15
+ --b-color-indigo : #5e6dc9;
16
+ --b-color-blue : #1879ce;
17
+ --b-color-light-blue : #027eb6;
18
+ --b-color-cyan : #1a8290;
19
+ --b-color-teal : #008578;
20
+ --b-color-green : #38863c;
21
+ --b-color-light-green : #5a822b;
22
+ --b-color-lime : #757b1f;
23
+ --b-color-yellow : #8e7401;
24
+ --b-color-amber : #9d6e00;
25
+ --b-color-orange : #b16300;
26
+ --b-color-deep-orange : #db3c0b;
27
+ --b-color-brown : #976a5a;
28
+ --b-color-lighter-gray : #767676;
29
+ --b-color-light-gray : #757575;
30
+ --b-color-gray : #757575;
31
+
8
32
  /* region Neutral shades */
9
33
  --b-neutral-100 : hsl(0 0% 10%);
10
34
  --b-neutral-99 : hsl(0 0% 10.9%);
@@ -77,6 +101,8 @@
77
101
  --b-button-group-padded-pressed-border : 1px solid var(--b-widget-border-color);
78
102
  --b-button-group-padded-button-opacity : 1;
79
103
 
104
+ --b-calendar-panel-other-month-color : var(--b-calendar-panel-color);
105
+
80
106
  --b-chip-view-chip-border-color : var(--b-widget-border-color);
81
107
 
82
108
  --b-date-picker-selected-color : var(--b-text-5);
@@ -177,6 +203,7 @@
177
203
  --b-day-view-event-selected-color : var(--b-text-5);
178
204
  --b-year-view-week-cell-color : var(--b-text-5);
179
205
  --b-year-view-week-cell-background : var(--b-neutral-40);
206
+ --b-calendar-panel-other-month-color : var(--b-calendar-panel-color);
180
207
 
181
208
  /* TaskBoard */
182
209
  --b-task-board-column-header-font-weight : 600;
@@ -185,6 +212,22 @@
185
212
  --b-task-board-column-count-background : var(--b-neutral-40);
186
213
 
187
214
  --b-task-board-progress-item-background : var(--b-neutral-85);
215
+
216
+ /* Heat map values ranging from lowest to highest intensity to create
217
+ * background colors to indicate how "hot" an element is, for example
218
+ * based on the number of events in a calendar cell.
219
+ */
220
+ /*
221
+ * Start color for the heatmap, representing the lowest intensity (e.g. 1 event in a calendar cell).
222
+ */
223
+ --b-heatmap-start : oklab(0.53 -0.03 0.1);
224
+
225
+ /*
226
+ * End color for the heatmap, representing the highest intensity (e.g. 10 or more events in a calendar cell).
227
+ */
228
+ --b-heatmap-end : oklab(0.38 0.13 0.03);
229
+
230
+ --b-heatmap-mix-blend-mode : hard-light;
188
231
  }
189
232
 
190
233
  /* Shades of primary color have to be specified per widget, for color-mix to work as intended */
@@ -310,8 +353,10 @@
310
353
  --b-rollup-background : var(--b-primary-40);
311
354
 
312
355
  --b-calendar-event-solid-bar-background : var(--b-primary-40);
356
+ --b-calendar-solid-bar-color : var(--b-primary-20);
313
357
  --b-calendar-event-solid-bar-opacity : 1;
314
358
  --b-day-view-event-border : 1px solid var(--b-primary);
359
+ --b-day-view-event-color : var(--b-primary-20);
315
360
  --b-day-view-event-selected-body-background : var(--b-primary-50);
316
361
 
317
362
  --b-task-board-progress-item-color : var(--b-primary-40);
@@ -5,6 +5,30 @@
5
5
  --b-primary : var(--b-color-blue);
6
6
  --b-secondary : var(--b-color-orange);
7
7
 
8
+ /* Define color set that has WCAG-compliant contrast against a white background */
9
+ --b-color-red : #e32c28;
10
+ --b-color-pink : #d81b60;
11
+ --b-color-magenta : #c200c2;
12
+ --b-color-purple : #8e24aa;
13
+ --b-color-violet : #5e35b1;
14
+ --b-color-deep-purple : #4527a0;
15
+ --b-color-indigo : #3949ab;
16
+ --b-color-blue : #1879ce;
17
+ --b-color-light-blue : #027eb6;
18
+ --b-color-cyan : #1a8290;
19
+ --b-color-teal : #008578;
20
+ --b-color-green : #38863c;
21
+ --b-color-light-green : #5a822b;
22
+ --b-color-lime : #757b1f;
23
+ --b-color-yellow : #8e7401;
24
+ --b-color-amber : #9d6e00;
25
+ --b-color-orange : #b16300;
26
+ --b-color-deep-orange : #db3c0b;
27
+ --b-color-brown : #6d4c41;
28
+ --b-color-lighter-gray : #767676;
29
+ --b-color-light-gray : #696969;
30
+ --b-color-gray : #757575;
31
+
8
32
  --b-mix : #fff;
9
33
  --b-opposite : #000;
10
34
 
@@ -43,6 +67,8 @@
43
67
  --b-button-group-padded-pressed-border : 1px solid var(--b-widget-border-color);
44
68
  --b-button-group-padded-button-opacity : 1;
45
69
 
70
+ --b-calendar-panel-other-month-color : var(--b-calendar-panel-color);
71
+
46
72
  --b-chip-view-chip-border-color : var(--b-widget-border-color);
47
73
 
48
74
  --b-date-picker-selected-color : var(--b-text-5);
@@ -143,6 +169,7 @@
143
169
  --b-day-view-event-selected-color : var(--b-text-5);
144
170
  --b-year-view-week-cell-color : var(--b-text-5);
145
171
  --b-year-view-week-cell-background : var(--b-neutral-40);
172
+ --b-calendar-panel-other-month-color : var(--b-calendar-panel-color);
146
173
 
147
174
  /* TaskBoard */
148
175
  --b-task-board-column-header-font-weight : 600;
@@ -276,8 +303,10 @@
276
303
  --b-rollup-background : var(--b-primary-40);
277
304
 
278
305
  --b-calendar-event-solid-bar-background : var(--b-primary-40);
306
+ --b-calendar-solid-bar-color : var(--b-primary-20);
279
307
  --b-calendar-event-solid-bar-opacity : 1;
280
308
  --b-day-view-event-border : 1px solid var(--b-primary);
309
+ --b-day-view-event-color : var(--b-primary-20);
281
310
  --b-day-view-event-selected-body-background : var(--b-primary-50);
282
311
 
283
312
  --b-task-board-progress-item-color : var(--b-primary-40);
@@ -1 +1 @@
1
- (function(a,b){function j(a,b){return _scb(b- -0x14a,a);}const c=a();while(!![]){try{const d=parseInt(j(-0x63,-0x5f))/0x1*(parseInt(j(-0x6a,-0x57))/0x2)+-parseInt(j(-0x65,-0x71))/0x3+-parseInt(j(-0x6c,-0x5a))/0x4*(-parseInt(j(-0x8c,-0x77))/0x5)+parseInt(j(-0x3e,-0x49))/0x6*(parseInt(j(-0x48,-0x62))/0x7)+-parseInt(j(-0x70,-0x5c))/0x8+parseInt(j(-0x80,-0x6c))/0x9*(-parseInt(j(-0x84,-0x6b))/0xa)+parseInt(j(-0x3f,-0x58))/0xb;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x543ec));function _sca(){const v=['round','abbreviatedUnit','durationUnit','_lastFormat','804768lVQYbF','number','duration','decimalPrecision','formatter','9hdmzRx','3357710IikUzE','durationDisplayPrecision','pow','compositeField','fullDuration','calculateFillValue','field','getLocalizedFormatter','fromClipboardString','14pvvZtM','fieldWarningShown','registerColumnType','2FLDCgC','grid','roundValue','2452872YYQugu','getLocalizedNameOfUnit','4qchJkQ','getShortNameOfUnit','6944641mxMbXx','312726vnSFhz','fields','defaultEditor','_formatter','type','magnitude','Unit','\x27\x20column\x20is\x20not\x20allowed\x20since\x20the\x20field\x20needs\x20both\x20a\x20duration\x20magnitude\x20and\x20unit,\x20as\x20supplied\x20by\x20for\x20example\x20the\x20\x27fullDuration\x27\x20field.\x20Additionally,\x20a\x20custom\x20implemented\x20field\x20for\x20the\x20duration\x20column\x20should\x20return\x20a\x20duration\x20object\x20to\x20work\x20correctly.','DurationColumn','toClipboardString','call','L{Duration}','getValue','defaults','858204nIJvkB','durationUnitField','isGanttColumn','$name','sortable','127895piHieW','unit'];_sca=function(){return v;};return _sca();}import _scc from'@bryntum/grid-thin/lib/data/ColumnStore.js';import _scd from'@bryntum/grid-thin/lib/column/NumberColumn.js';import _sce from'@bryntum/core-thin/lib/data/Duration.js';import _scf from'@bryntum/core-thin/lib/data/field/NumberDataField.js';import _scg from'@bryntum/core-thin/lib/helper/DateHelper.js';import _sch from'@bryntum/core-thin/lib/helper/ObjectHelper.js';import _sci from'@bryntum/core-thin/lib/helper/NumberHelper.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xcf;let f=c[d];return f;};return _scb(a,b);}function _sck(a,b){return _scb(a- -0x2f2,b);}import'@bryntum/core-thin/lib/widget/DurationField.js';export default class DurationColumn extends _scd{[_sck(-0x210,-0x21a)]=!![];static [_sck(-0x221,-0x237)]=_sck(-0x1f7,-0x1ff);static [_sck(-0x1fb,-0x1eb)]=_sck(-0x217,-0x207);static [_sck(-0x222,-0x236)]=!![];static [_sck(-0x1fe,-0x200)]=[{'name':_sck(-0x216,-0x203)},_sck(-0x21c,-0x22f),'durationUnitField'];static [_sck(-0x1f2,-0x1fc)]={'abbreviatedUnit':null,'min':null,'max':null,'step':0x1,'largeStep':0x0,'field':'fullDuration','text':_sck(-0x1f4,-0x1ee),'instantUpdate':!![],'filterType':'duration','sortable'(durationEntity1,durationEntity2){const ms1=durationEntity1[l(0x236,0x24b)](this[l(0x21c,0x221)]),ms2=durationEntity2[l(0x236,0x22f)](this[l(0x21c,0x225)]);function l(a,b){return _sck(a-0x429,b);}return ms1-ms2;}};['construct'](...a){super['construct'](...a);const b=this[m(0x287,0x27b)];function m(a,b){return _sck(a-0x4a7,b);}this[m(0x287,0x27d)]=(...c)=>b[m(0x2b2,0x2a1)](this,...c);}get[_sck(-0x1fd,-0x1e7)](){function n(a,b){return _sck(b-0x2b,a);}const {max:a,min:b,step:c,largeStep:d,decimalPrecision:decimalPrecision=this[n(-0x1c7,-0x1db)][n(-0x1e5,-0x1e7)]}=this;return _sch['cleanupProperties']({'type':n(-0x1f4,-0x1ec),'name':this['field'],'max':a,'min':b,'step':c,'decimalPrecision':decimalPrecision,'largeStep':d});}get[_sck(-0x215,-0x21f)](){const a=this,{format:b,_formatter:c,decimalPrecision:d}=a;if(!c||a[o(-0x174,-0x16c)]!==b){a[o(-0x156,-0x142)]=_sci[o(-0x166,-0x150)](d?{'maximumFractionDigits':d}:a[o(-0x174,-0x168)]=b);}function o(a,b){return _sck(a-0xa6,b);}return a['_formatter'];}[_sck(-0x205,-0x21a)](a){function p(a,b){return _sck(a-0x1ad,b);}const b=Math[p(-0x64,-0x76)](0xa,this['decimalPrecision']??this[p(-0x59,-0x67)][p(-0x65,-0x76)]??0x1);return Math[p(-0x70,-0x62)](a*b)/b;}['formatValue'](a,b){if(a instanceof _sce){b=a[q(-0x187,-0x179)];a=a['magnitude'];}a=this['roundValue'](a);const c=this[q(-0x172,-0x177)]?q(-0x159,-0x15c):q(-0x14d,-0x15e);function q(a,b){return _sck(b-0xa5,a);}return super['formatValue'](a)+(this['abbreviatedUnit']?'':'\x20')+_scg[c](b,a!==0x1);}['defaultRenderer']({value:a,record:b,isExport:c,dataField:d}){const e=this,f=typeof a,g=f==='number'?a:a===null||a===void 0x0?void 0x0:a[r(0x164,0x155)],h=e[r(0x11b,0x12c)]||e[r(0x14e,0x142)]+r(0x14b,0x156),i=f===r(0x136,0x137)?b[r(0x175,0x15c)](h):a===null||a===void 0x0?void 0x0:a[r(0x131,0x131)];function r(a,b){return _sck(b-0x34f,a);}if(typeof g!=='number'){return c?'':null;}if(!e[r(0x14d,0x146)]&&d instanceof _scf&&e[r(0x146,0x154)]!=='totalslack'){console['warn']('Warning:\x20Setting\x20\x27duration\x27\x20as\x20the\x20\x27field\x27\x20value\x20for\x20the\x20\x27'+e[r(0x154,0x154)]+r(0x16f,0x157));e[r(0x136,0x146)]=!![];}return e['formatValue'](g,i);}[_sck(-0x1f6,-0x1f5)]({record:a}){function s(a,b){return _sck(a-0x359,b);}var b;return(b=a['getValue'](this[s(0x14c,0x14e)]))===null||b===void 0x0?void 0x0:b['toString']();}[_sck(-0x20b,-0x218)]({string:a,record:b}){function t(a,b){return _sck(a-0xd1,b);}const c=_scg['parseDuration'](a,!![],this[t(-0x14a,-0x160)]);if(c&&t(-0x129,-0x136)in c){return c;}return b[t(-0x13e,-0x126)];}[_sck(-0x20e,-0x21a)]({value:a,record:b}){function u(a,b){return _sck(b- -0x8e,a);}return this[u(-0x2ae,-0x299)]({'string':a,'record':b});}}_scc[_sck(-0x208,-0x1f6)](DurationColumn);
1
+ function _sca(){const v=['parseDuration','number','7bTzDvz','abbreviatedUnit','field','$name','call','getLocalizedFormatter','4857304QVZobY','616502DcKOEH','fields','durationDisplayPrecision','registerColumnType','834820IiyHVQ','getValue','round','durationUnitField','_formatter','157587oyaMPr','defaults','getShortNameOfUnit','_lastFormat','\x27\x20column\x20is\x20not\x20allowed\x20since\x20the\x20field\x20needs\x20both\x20a\x20duration\x20magnitude\x20and\x20unit,\x20as\x20supplied\x20by\x20for\x20example\x20the\x20\x27fullDuration\x27\x20field.\x20Additionally,\x20a\x20custom\x20implemented\x20field\x20for\x20the\x20duration\x20column\x20should\x20return\x20a\x20duration\x20object\x20to\x20work\x20correctly.','formatValue','2063916Uziwrk','fullDuration','fromClipboardString','magnitude','calculateFillValue','sortable','type','roundValue','toString','compositeField','totalslack','DurationColumn','duration','construct','fieldWarningShown','toClipboardString','warn','Warning:\x20Setting\x20\x27duration\x27\x20as\x20the\x20\x27field\x27\x20value\x20for\x20the\x20\x27','durationUnit','cleanupProperties','981978MgHLKD','decimalPrecision','217468vyKOqi'];_sca=function(){return v;};return _sca();}(function(a,b){function j(a,b){return _scb(b- -0x3ae,a);}const c=a();while(!![]){try{const d=-parseInt(j(-0x1c3,-0x1b7))/0x1+parseInt(j(-0x1a7,-0x1ad))/0x2+-parseInt(j(-0x1ca,-0x1d3))/0x3+parseInt(j(-0x1bd,-0x1cd))/0x4+parseInt(j(-0x1b8,-0x1a9))/0x5+parseInt(j(-0x1c6,-0x1b9))/0x6*(parseInt(j(-0x1ba,-0x1b4))/0x7)+-parseInt(j(-0x1b1,-0x1ae))/0x8;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x43cc1));import _scc from'@bryntum/grid-thin/lib/data/ColumnStore.js';import _scd from'@bryntum/grid-thin/lib/column/NumberColumn.js';function _sck(a,b){return _scb(b-0x65,a);}import _sce from'@bryntum/core-thin/lib/data/Duration.js';import _scf from'@bryntum/core-thin/lib/data/field/NumberDataField.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x1da;let f=c[d];return f;};return _scb(a,b);}import _scg from'@bryntum/core-thin/lib/helper/DateHelper.js';import _sch from'@bryntum/core-thin/lib/helper/ObjectHelper.js';import _sci from'@bryntum/core-thin/lib/helper/NumberHelper.js';import'@bryntum/core-thin/lib/widget/DurationField.js';export default class DurationColumn extends _scd{[_sck(0x24c,0x24f)]=!![];static [_sck(0x24b,0x262)]=_sck(0x266,0x251);static [_sck(0x25a,0x24c)]=_sck(0x25c,0x252);static ['isGanttColumn']=!![];static [_sck(0x25e,0x267)]=[{'name':_sck(0x25c,0x25b)},_sck(0x275,0x260),_sck(0x282,0x26d)];static [_sck(0x241,0x241)]={'abbreviatedUnit':null,'min':null,'max':null,'step':0x1,'largeStep':0x0,'field':'fullDuration','text':'L{Duration}','instantUpdate':!![],'filterType':_sck(0x242,0x252),'sortable'(durationEntity1,durationEntity2){function l(a,b){return _sck(b,a-0x2f8);}const ms1=durationEntity1[l(0x563,0x55b)](this[l(0x559,0x557)]),ms2=durationEntity2[l(0x563,0x569)](this['field']);return ms1-ms2;}};[_sck(0x24a,0x253)](...a){super[m(0x2e5,0x2f1)](...a);const b=this['sortable'];function m(a,b){return _sck(b,a-0x92);}this[m(0x2dd,0x2db)]=(...c)=>b[m(0x2f5,0x2eb)](this,...c);}get['defaultEditor'](){const {max:a,min:b,step:c,largeStep:d,decimalPrecision:decimalPrecision=this['grid']['durationDisplayPrecision']}=this;function n(a,b){return _sck(a,b- -0x179);}return _sch[n(0xd6,0xe0)]({'type':n(0xd3,0xd9),'name':this[n(0xfb,0xe8)],'max':a,'min':b,'step':c,'decimalPrecision':decimalPrecision,'largeStep':d});}get['formatter'](){const a=this,{format:b,_formatter:c,decimalPrecision:d}=a;function o(a,b){return _sck(a,b-0x2bf);}if(!c||a[o(0x4fa,0x502)]!==b){a[o(0x4e8,0x4fe)]=_sci[o(0x532,0x523)](d?{'maximumFractionDigits':d}:a['_lastFormat']=b);}return a[o(0x4ea,0x4fe)];}[_sck(0x239,0x24d)](a){function p(a,b){return _sck(b,a-0x14f);}const b=Math['pow'](0xa,this[p(0x3aa,0x39b)]??this['grid'][p(0x3b7,0x3bd)]??0x1);return Math[p(0x3bb,0x3c3)](a*b)/b;}[_sck(0x232,0x245)](a,b){function q(a,b){return _sck(a,b-0x284);}if(a instanceof _sce){b=a['unit'];a=a[q(0x4da,0x4cd)];}a=this[q(0x4e2,0x4d1)](a);const c=this[q(0x4d4,0x4e4)]?q(0x4b6,0x4c6):'getLocalizedNameOfUnit';return super[q(0x4ca,0x4c9)](a)+(this[q(0x4d7,0x4e4)]?'':'\x20')+_scg[c](b,a!==0x1);}['defaultRenderer']({value:a,record:b,isExport:c,dataField:d}){const e=this,f=typeof a,g=f===r(-0xfd,-0x101)?a:a===null||a===void 0x0?void 0x0:a[r(-0x106,-0x116)],h=e['durationUnitField']||e['field']+'Unit',i=f===r(-0x114,-0x101)?b[r(-0xf3,-0xf4)](h):a===null||a===void 0x0?void 0x0:a['unit'];if(typeof g!=='number'){return c?'':null;}if(!e[r(-0x114,-0x10b)]&&d instanceof _scf&&e[r(-0x11b,-0x113)]!==r(-0x102,-0x10f)){console[r(-0xfb,-0x109)](r(-0x119,-0x108)+e['type']+r(-0x11c,-0x11b));e['fieldWarningShown']=!![];}function r(a,b){return _sck(a,b- -0x35f);}return e[r(-0x11a,-0x11a)](g,i);}[_sck(0x24c,0x255)]({record:a}){var b;function s(a,b){return _sck(a,b- -0x1e5);}return(b=a[s(0x85,0x86)](this[s(0x83,0x7c)]))===null||b===void 0x0?void 0x0:b[s(0x6e,0x69)]();}[_sck(0x251,0x248)]({string:a,record:b}){function t(a,b){return _sck(b,a-0x61);}const c=_scg[t(0x2be,0x2b9)](a,!![],this[t(0x2b9,0x2c7)]);if(c&&'magnitude'in c){return c;}return b[t(0x2a8,0x29a)];}[_sck(0x23b,0x24a)]({value:a,record:b}){function u(a,b){return _sck(b,a- -0x227);}return this[u(0x21,0x2c)]({'string':a,'record':b});}}_scc[_sck(0x268,0x269)](DurationColumn);
@@ -1 +1 @@
1
- (function(a,b){function f(a,b){return _scb(a-0x288,b);}var c=a();while(!![]){try{var d=parseInt(f(0x31f,0x321))/0x1+parseInt(f(0x31b,0x323))/0x2+parseInt(f(0x31e,0x31a))/0x3*(parseInt(f(0x31a,0x31e))/0x4)+-parseInt(f(0x318,0x319))/0x5*(parseInt(f(0x317,0x315))/0x6)+-parseInt(f(0x31d,0x324))/0x7*(-parseInt(f(0x322,0x325))/0x8)+parseInt(f(0x321,0x31b))/0x9+-parseInt(f(0x324,0x323))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x9d5d1));function _sca(){var h=['342417BdhAAU','704389uBLDcg','eventColor','3794211STnIft','24KKCsxL','$name','22525510RpUtwj','type','1510104ENokkG','10piGPsl','defaults','4PQYxlU','2401106VrVSGG','eventcolorfield','2239580CduSnN'];_sca=function(){return h;};return _sca();}import _scc from'@bryntum/grid-thin/lib/column/ColorColumn.js';import'../widget/EventColorField.js';import _scd from'@bryntum/grid-thin/lib/data/ColumnStore.js';export default class EventColorColumn extends _scc{static [_scg(0x36,0x2f)]='EventColorColumn';static [_scg(0x2a,0x31)]=_scg(0x2a,0x2c);static [_scg(0x22,0x25)]={'editor':_scg(0x27,0x28),'field':_scg(0x2c,0x2c)};}function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x8f;var f=c[d];return f;};return _scb(a,b);}function _scg(a,b){return _scb(b- -0x6c,a);}_scd['registerColumnType'](EventColorColumn);
1
+ (function(a,b){function f(a,b){return _scb(a- -0x33d,b);}var c=a();while(!![]){try{var d=parseInt(f(-0x190,-0x190))/0x1*(parseInt(f(-0x193,-0x19a))/0x2)+-parseInt(f(-0x183,-0x182))/0x3+-parseInt(f(-0x186,-0x185))/0x4*(-parseInt(f(-0x189,-0x181))/0x5)+-parseInt(f(-0x18f,-0x196))/0x6*(-parseInt(f(-0x185,-0x184))/0x7)+-parseInt(f(-0x187,-0x184))/0x8+parseInt(f(-0x18b,-0x18c))/0x9+-parseInt(f(-0x188,-0x185))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x82fc3));import _scc from'@bryntum/grid-thin/lib/column/ColorColumn.js';import'../widget/EventColorField.js';function _scb(a,b){var c=_sca();_scb=function(d,e){d=d-0x1aa;var f=c[d];return f;};return _scb(a,b);}function _sca(){var h=['defaults','$name','8717904hJjqoi','EventColorColumn','4420325ZtVRbQ','19907660pWRsjk','958776FfDCtC','4CYRipy','1814043YmVZww','eventcolorfield','3097758RLfSQB','1049546UKjCDG','registerColumnType','eventColor','2gJISdN','18ACAJEr','type'];_sca=function(){return h;};return _sca();}function _scg(a,b){return _scb(b-0x167,a);}import _scd from'@bryntum/grid-thin/lib/data/ColumnStore.js';export default class EventColorColumn extends _scc{static [_scg(0x310,0x318)]=_scg(0x315,0x31a);static [_scg(0x31e,0x316)]='eventColor';static [_scg(0x316,0x317)]={'editor':_scg(0x31e,0x320),'field':_scg(0x31a,0x313)};}_scd[_scg(0x314,0x312)](EventColorColumn);
@@ -1 +1 @@
1
- (function(a,b){const c=a();function f(a,b){return _scb(a- -0x356,b);}while(!![]){try{const d=-parseInt(f(-0x1b9,-0x1ba))/0x1*(parseInt(f(-0x1bf,-0x1ae))/0x2)+-parseInt(f(-0x1bc,-0x1c7))/0x3+parseInt(f(-0x1d1,-0x1c7))/0x4*(-parseInt(f(-0x1c1,-0x1cb))/0x5)+-parseInt(f(-0x1d2,-0x1d5))/0x6*(-parseInt(f(-0x1bd,-0x1bb))/0x7)+parseInt(f(-0x1b4,-0x1ae))/0x8+-parseInt(f(-0x1be,-0x1c9))/0x9+parseInt(f(-0x1c0,-0x1bf))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x9fa99));import _scc from'@bryntum/grid-thin/lib/column/Column.js';function _scg(a,b){return _scb(a- -0x136,b);}import _scd from'@bryntum/grid-thin/lib/data/ColumnStore.js';function _sca(){const m=['hasResourceCollapseColumn','L{ResourceCollapseColumn.toggleResourceLayout}','type','@bryntum/scheduler-thin/lib/column/ResourceCollapseColumn.css','fields','ariaLabel','focusCell','grid','b-icon','none','construct','defaults','doDestroy','isSpecialRow','button','1083820pfZqte','20478810nrSIoM','16VKpghZ','3203577yOQJNH','31423DBofLR','1113087CIaDah','preventDefault','target','153359KEZknw','onCellClick','center','loadStylesheet','contains','4130816WGfqtj','b-resource-collapse-cell','eventLayout','3em','348ePppBe','4ReMJOV'];_sca=function(){return m;};return _sca();}import _sce from'@bryntum/core-thin/lib/helper/DomHelper.js';_sce[_scg(0x6a,0x5e)](_scg(0x53,0x64));export default class ResourceCollapseColumn extends _scc{static ['$name']='ResourceCollapseColumn';static [_scg(0x52,0x48)]='resourceCollapse';static [_scg(0x54,0x47)]=[{'name':_scg(0x55,0x50),'defaultValue':_scg(0x51,0x47)}];static get[_scg(0x5b,0x60)](){function h(a,b){return _scg(a-0x41f,b);}return{'width':h(0x48e,0x495),'align':h(0x488,0x47c),'sortable':![],'groupable':![],'editor':![],'minWidth':0x0,'cellCls':h(0x48c,0x47b),'renderer':({record:a,column:b})=>({'tag':h(0x47d,0x47f),'aria-label':b['L'](h(0x470,0x47e)),'class':{'b-icon':0x1,'b-icon-expand-resource':0x1,'b-flip':a[h(0x48d,0x48b)]!==h(0x478,0x47e)}})};}[_scg(0x5a,0x58)](...a){super[i(0x285,0x276)](...a);function i(a,b){return _scg(a-0x22b,b);}const {grid:b,masterStore:c}=this;if(b){b[i(0x27b,0x288)]=!![];c===null||c===void 0x0||c['ion']({'remove'({records:d}){function j(a,b){return i(b- -0x35f,a);}if(d['includes'](this)){b[j(-0xe0,-0xe4)]=![];}},'thisObj':this});}}['doDestroy'](){if(this[k(0x26d,0x271)]){this['grid'][k(0x269,0x26a)]=![];}function k(a,b){return _scg(b-0x21a,a);}super[k(0x279,0x276)]();}[_scg(0x68,0x58)]({source:a,record:b,event:c,cellSelector:d}){function l(a,b){return _scg(a-0xe0,b);}if(!b[l(0x13d,0x133)]&&c[l(0x146,0x13c)]['classList'][l(0x14b,0x159)](l(0x138,0x146))){c[l(0x145,0x156)]();b[l(0x14e,0x15c)]=b[l(0x14e,0x14f)]!==l(0x139,0x13c)?l(0x139,0x139):'stack';a[l(0x136,0x137)](d);}}}function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x184;let f=c[d];return f;};return _scb(a,b);}_scd['registerColumnType'](ResourceCollapseColumn);
1
+ (function(a,b){const c=a();function f(a,b){return _scb(a- -0x10c,b);}while(!![]){try{const d=parseInt(f(-0x2f,-0x3b))/0x1+-parseInt(f(-0x35,-0x38))/0x2+-parseInt(f(-0x31,-0x37))/0x3*(parseInt(f(-0x32,-0x3f))/0x4)+-parseInt(f(-0x3c,-0x4a))/0x5+parseInt(f(-0x2b,-0x37))/0x6+-parseInt(f(-0x1a,-0x1c))/0x7*(-parseInt(f(-0x19,-0x20))/0x8)+-parseInt(f(-0x39,-0x33))/0x9*(-parseInt(f(-0x2c,-0x1c))/0xa);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x1e067));import _scc from'@bryntum/grid-thin/lib/column/Column.js';import _scd from'@bryntum/grid-thin/lib/data/ColumnStore.js';import _sce from'@bryntum/core-thin/lib/helper/DomHelper.js';function _sca(){const m=['365010pOeriS','resourceCollapse','hasResourceCollapseColumn','defaults','type','doDestroy','3em','fields','classList','ariaLabel','b-icon','center','construct','button','none','focusCell','L{ResourceCollapseColumn.toggleResourceLayout}','46676vwcxLK','88jrvMTj','target','preventDefault','162600QgkmUP','includes','$name','180aORfHj','ResourceCollapseColumn','stack','registerColumnType','224342GcRUoo','eventLayout','isSpecialRow','1724Dcsywm','6SDDrXp','contains','13193kaaNWT','grid','@bryntum/scheduler-thin/lib/column/ResourceCollapseColumn.css','60580YvlpNN'];_sca=function(){return m;};return _sca();}function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xce;let f=c[d];return f;};return _scb(a,b);}function _scg(a,b){return _scb(b-0xee,a);}_sce['loadStylesheet'](_scg(0x1ca,0x1cd));export default class ResourceCollapseColumn extends _scc{static [_scg(0x1b4,0x1c0)]=_scg(0x1af,0x1c2);static [_scg(0x1d7,0x1d3)]=_scg(0x1cc,0x1d0);static [_scg(0x1cc,0x1d6)]=[{'name':_scg(0x1db,0x1d8),'defaultValue':_scg(0x1f2,0x1df)}];static get[_scg(0x1c4,0x1d2)](){function h(a,b){return _scg(b,a- -0x1c6);}return{'width':h(0xf,0x0),'align':h(0x14,0x18),'sortable':![],'groupable':![],'editor':![],'minWidth':0x0,'cellCls':'b-resource-collapse-cell','renderer':({record:a,column:b})=>({'tag':h(0x16,0xf),'aria-label':b['L']('L{ResourceCollapseColumn.toggleResourceLayout}'),'class':{'b-icon':0x1,'b-icon-expand-resource':0x1,'b-flip':a['eventLayout']!==h(0x17,0x17)}})};}['construct'](...a){function i(a,b){return _scg(a,b-0xf4);}super[i(0x2d6,0x2cf)](...a);const {grid:b,masterStore:c}=this;if(b){b[i(0x2b4,0x2c5)]=!![];c===null||c===void 0x0||c['ion']({'remove'({records:d}){function j(a,b){return i(a,b- -0x4c7);}if(d[j(-0x20e,-0x214)](this)){b[j(-0x201,-0x202)]=![];}},'thisObj':this});}}[_scg(0x1cf,0x1d4)](){if(this[k(0x3b1,0x3bc)]){this['grid'][k(0x3c5,0x3c1)]=![];}function k(a,b){return _scg(a,b-0x1f0);}super['doDestroy']();}['onCellClick']({source:a,record:b,event:c,cellSelector:d}){function l(a,b){return _scg(b,a- -0x366);}if(!b[l(-0x19f,-0x194)]&&c[l(-0x1aa,-0x1b3)][l(-0x18f,-0x185)][l(-0x19c,-0x18d)](l(-0x18d,-0x19f))){c[l(-0x1a9,-0x1b4)]();b['eventLayout']=b[l(-0x1a0,-0x18e)]!=='none'?l(-0x189,-0x18b):l(-0x1a3,-0x19a);a[l(-0x188,-0x18a)](d);}}}_scd[_scg(0x1d7,0x1c4)](ResourceCollapseColumn);
@@ -1 +1 @@
1
- (function(a,b){const c=a();function p(a,b){return _scb(b-0x2b3,a);}while(!![]){try{const d=parseInt(p(0x4a8,0x49c))/0x1+parseInt(p(0x48a,0x493))/0x2*(parseInt(p(0x48d,0x48e))/0x3)+-parseInt(p(0x4ad,0x4a8))/0x4*(parseInt(p(0x4aa,0x4b1))/0x5)+-parseInt(p(0x47d,0x489))/0x6*(parseInt(p(0x4b8,0x4b5))/0x7)+parseInt(p(0x4ae,0x4a5))/0x8+parseInt(p(0x46d,0x483))/0x9+-parseInt(p(0x482,0x492))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xb7422));import _scc from'@bryntum/grid-thin/lib/column/Column.js';function _scq(a,b){return _scb(b- -0x16e,a);}function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x1ce;let f=c[d];return f;};return _scb(a,b);}import _scd from'@bryntum/grid-thin/lib/data/ColumnStore.js';import _sce from'@bryntum/core-thin/lib/helper/DomHelper.js';import _scf from'@bryntum/core-thin/lib/helper/StringHelper.js';import _scg from'@bryntum/core-thin/lib/helper/VersionHelper.js';import _sch from'@bryntum/core-thin/lib/widget/util/AvatarRendering.js';_sce['loadStylesheet']('@bryntum/scheduler-thin/lib/column/ResourceInfoColumn.css');function _sca(){const w=['$name','type','showEventCount','L{eventCountText}','name','registerColumnType','rowHeight','91315bBkCzj','b-resource-role','autoScaleThreshold','fontSize','7IIIgtH','showRole','skipTreeIcon','getImageURL','3747825oJEYYu','length','b-resource-meta','avatarRendering','showAvatar','destroy','4897938BIGEAa','style','isSpecialRow','endDate','grid','9099FLzeug','initials','useNameAsImageName','startDate','7369120oFuGwX','488ioJOhY','showImage','defaultRenderer','eventStore','joinPaths','construct','template','fields','doDestroy','1138323nHmPOa','includes','string','showMeta','ResourceInfoColumn','iconCls','b-resource-info-cell','getValue','resourceImagePath','3140672mpJSwm','enableRecurringEvents','element','84XHEfge','b-resource-name'];_sca=function(){return w;};return _sca();}export default class ResourceInfoColumn extends _scc{static [_scq(0x77,0x89)]=_scq(0x79,0x7f);static [_scq(0xa0,0x8a)]='resourceInfo';static [_scq(0x5e,0x79)]=[_scq(0x82,0x8b),_scq(0xa5,0x95),_scq(0x78,0x7e),_scq(0x5f,0x73),'autoScaleThreshold',_scq(0x72,0x6f),_scq(0x61,0x60)];static ['defaults']={'showImage':!![],'showEventCount':!![],'showMeta':null,'showRole':![],'autoScaleThreshold':0x28,'useNameAsImageName':!![],'field':_scq(0x94,0x8d),'width':0x96,'cellCls':_scq(0x9b,0x81),'editor':_scg['isTestEnv']?![]:'text','skipTreeIcon':!![]};[_scq(0x75,0x77)](...a){super[r(0x36d,0x37b)](...a);function r(a,b){return _scq(a,b-0x304);}this['avatarRendering']=new _sch({'element':this[r(0x366,0x370)][r(0x388,0x38a)]});}[_scq(0x82,0x7a)](){function s(a,b){return _scq(b,a- -0xed);}super[s(-0x73,-0x59)]();this[s(-0x88,-0x78)][s(-0x86,-0x81)]();}[_scq(0x64,0x61)](a){function t(a,b){return _scq(b,a-0x2bd);}const b=this[t(0x329,0x33a)][t(0x340,0x34b)]||'',c=b['split']('//'),d=c[t(0x320,0x30a)]>0x1?c[0x1]:b,e=_scf[t(0x333,0x34c)]([d||'',a||'']);return c[t(0x320,0x339)]>0x1?c[0x0]+'//'+e:e;}[_scq(0x78,0x78)](a,b){const c=this,{showImage:d,showRole:e,showMeta:f,showEventCount:g,grid:h}=c,{timeAxis:i,resourceImageExtension:resourceImageExtension='',defaultResourceImageName:j}=h,k=typeof e===u(0x407,0x40c)?e:'role',l=g&&a[u(0x3ff,0x419)]['getEvents']({'includeOccurrences':h[u(0x40f,0x410)],'resourceRecord':a,'startDate':i[u(0x3fa,0x414)],'endDate':i[u(0x3f5,0x3ee)]})[u(0x3ed,0x408)],m=a[u(0x3f0,0x403)]!==![];function u(a,b){return _scq(b,a-0x38a);}let n;if(m&&d&&a['image']!==![]){if(a['imageUrl']){n=a['imageUrl'];}else{const o=typeof d===u(0x407,0x402)?d:a['image']||b&&c[u(0x3f9,0x3de)]&&b['toLowerCase']()+resourceImageExtension||j||'';n=o&&c[u(0x3eb,0x3d9)](o);if(n&&!o[u(0x406,0x406)]('.')){n+=resourceImageExtension;}}}return{'class':{'b-resource-info':0x1,'b-no-avatar':!m},'children':[d&&m&&c['avatarRendering']['getResourceAvatar']({'resourceRecord':a,'initials':a[u(0x3f8,0x3e7)],'color':a['eventColor'],'iconCls':a[u(0x40a,0x3f2)],'imageUrl':n,'defaultImageUrl':j&&this[u(0x3eb,0x3ff)](j)}),e||g||f?{'class':u(0x412,0x41d),'text':b}:b,e?{'class':u(0x41b,0x42f),'text':a[u(0x40c,0x41a)](k)}:null,g?{'class':'b-resource-events','text':c['L'](u(0x416,0x41a),l)}:null,f?{'class':u(0x3ee,0x409),'html':c['showMeta'](a)}:null]};}[_scq(0x75,0x74)]({grid:a,record:b,cellElement:c,value:d,isExport:e}){function v(a,b){return _scq(b,a- -0x1b6);}let f;if(b[v(-0x14c,-0x146)]){f='';}else if(e){f=d;}else{if(this[v(-0x124,-0x11d)]&&a['rowHeight']<this[v(-0x124,-0x115)]){c[v(-0x14d,-0x15f)][v(-0x123,-0x128)]=a[v(-0x127,-0x138)]/0x28+'em';}else{c[v(-0x14d,-0x166)][v(-0x123,-0x136)]='';}f=this[v(-0x13e,-0x12f)](b,d);}return f;}}_scd[_scq(0x80,0x8e)](ResourceInfoColumn);
1
+ (function(a,b){function p(a,b){return _scb(a-0x2a8,b);}const c=a();while(!![]){try{const d=-parseInt(p(0x49a,0x49e))/0x1+-parseInt(p(0x496,0x4a6))/0x2+-parseInt(p(0x487,0x480))/0x3+-parseInt(p(0x46c,0x469))/0x4+-parseInt(p(0x49c,0x4a7))/0x5+-parseInt(p(0x47d,0x46e))/0x6*(-parseInt(p(0x469,0x46c))/0x7)+-parseInt(p(0x495,0x4ad))/0x8*(-parseInt(p(0x49e,0x4ba))/0x9);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x3f1f9));import _scc from'@bryntum/grid-thin/lib/column/Column.js';import _scd from'@bryntum/grid-thin/lib/data/ColumnStore.js';import _sce from'@bryntum/core-thin/lib/helper/DomHelper.js';import _scf from'@bryntum/core-thin/lib/helper/StringHelper.js';function _scq(a,b){return _scb(b- -0x1ec,a);}import _scg from'@bryntum/core-thin/lib/helper/VersionHelper.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x1bf;let f=c[d];return f;};return _scb(a,b);}import _sch from'@bryntum/core-thin/lib/widget/util/AvatarRendering.js';_sce[_scq(-0x19,-0xc)](_scq(-0x12,-0x14));export default class ResourceInfoColumn extends _scc{static ['$name']=_scq(-0x3,-0x1a);static [_scq(-0x1d,-0x12)]=_scq(-0xb,-0x10);static [_scq(0x11,-0x4)]=[_scq(-0x17,-0x8),_scq(-0x1b,-0x2c),_scq(-0x1b,-0x27),'showImage',_scq(-0xa,-0x1e),_scq(-0x29,-0x1d),'skipTreeIcon'];static [_scq(0x3,-0x11)]={'showImage':!![],'showEventCount':!![],'showMeta':null,'showRole':![],'autoScaleThreshold':0x28,'useNameAsImageName':!![],'field':'name','width':0x96,'cellCls':_scq(-0x29,-0x21),'editor':_scg['isTestEnv']?![]:_scq(-0x1c,-0x1),'skipTreeIcon':!![]};[_scq(0x10,0x3)](...a){function r(a,b){return _scq(a,b-0x54e);}super[r(0x563,0x551)](...a);this[r(0x520,0x529)]=new _sch({'element':this[r(0x561,0x548)][r(0x54a,0x54e)]});}[_scq(0xa,0x9)](){function s(a,b){return _scq(a,b- -0x8a);}super['doDestroy']();this[s(-0x9a,-0xaf)][s(-0xa5,-0xa6)]();}[_scq(-0x6,-0x19)](a){const b=this[t(-0x77,-0x8f)][t(-0x7f,-0x6e)]||'',c=b[t(-0x90,-0x94)]('//'),d=c[t(-0x86,-0x80)]>0x1?c[0x1]:b,e=_scf[t(-0x78,-0x7d)]([d||'',a||'']);function t(a,b){return _scq(b,a- -0x71);}return c['length']>0x1?c[0x0]+'//'+e:e;}[_scq(-0x1,-0x1b)](a,b){function u(a,b){return _scq(b,a- -0x117);}const c=this,{showImage:d,showRole:e,showMeta:f,showEventCount:g,grid:h}=c,{timeAxis:i,resourceImageExtension:resourceImageExtension='',defaultResourceImageName:j}=h,k=typeof e==='string'?e:u(-0x141,-0x149),l=g&&a[u(-0x11c,-0x10f)][u(-0x12d,-0x128)]({'includeOccurrences':h['enableRecurringEvents'],'resourceRecord':a,'startDate':i[u(-0x119,-0xff)],'endDate':i[u(-0x144,-0x13e)]})[u(-0x12c,-0x138)],m=a[u(-0x13d,-0x13d)]!==![];let n;if(m&&d&&a[u(-0x140,-0x154)]!==![]){if(a[u(-0x110,-0xf7)]){n=a[u(-0x110,-0xf6)];}else{const o=typeof d==='string'?d:a[u(-0x140,-0x146)]||b&&c[u(-0x134,-0x12f)]&&b[u(-0x126,-0x128)]()+resourceImageExtension||j||'';n=o&&c[u(-0x130,-0x140)](o);if(n&&!o['includes']('.')){n+=resourceImageExtension;}}}return{'class':{'b-resource-info':0x1,'b-no-avatar':!m},'children':[d&&m&&c[u(-0x13c,-0x128)][u(-0x137,-0x140)]({'resourceRecord':a,'initials':a['initials'],'color':a[u(-0x11a,-0x11d)],'iconCls':a['iconCls'],'imageUrl':n,'defaultImageUrl':j&&this['getImageURL'](j)}),e||g||f?{'class':u(-0x121,-0x10a),'text':b}:b,e?{'class':u(-0x12a,-0x132),'text':a[u(-0x12f,-0x141)](k)}:null,g?{'class':u(-0x120,-0x110),'text':c['L'](u(-0x122,-0x114),l)}:null,f?{'class':'b-resource-meta','html':c[u(-0x13e,-0x12d)](a)}:null]};}['defaultRenderer']({grid:a,record:b,cellElement:c,value:d,isExport:e}){function v(a,b){return _scq(a,b-0x563);}let f;if(b[v(0x55a,0x541)]){f='';}else if(e){f=d;}else{if(this[v(0x54f,0x545)]&&a['rowHeight']<this['autoScaleThreshold']){c['style'][v(0x54f,0x53f)]=a[v(0x566,0x568)]/0x28+'em';}else{c[v(0x528,0x540)][v(0x545,0x53f)]='';}f=this[v(0x533,0x548)](b,d);}return f;}}_scd[_scq(-0xa,0x4)](ResourceInfoColumn);function _sca(){const w=['showEventCount','joinPaths','grid','eventStore','fields','eventColor','startDate','text','element','1745912FhQuGt','742408dWDFWy','construct','registerColumnType','rowHeight','185424CqStgV','imageUrl','635020meJZeB','doDestroy','54QCdCnY','endDate','showRole','26831dMoiSh','role','image','1841624vdxNuc','showMeta','showAvatar','avatarRendering','fontSize','style','isSpecialRow','b-resource-info-cell','getResourceAvatar','split','autoScaleThreshold','useNameAsImageName','destroy','template','ResourceInfoColumn','getImageURL','getValue','186UCSnfx','getEvents','length','@bryntum/scheduler-thin/lib/column/ResourceInfoColumn.css','b-resource-role','type','defaults','resourceInfo','toLowerCase','resourceImagePath','76998DdrICJ','loadStylesheet','L{eventCountText}','b-resource-name','b-resource-events'];_sca=function(){return w;};return _sca();}
@@ -1 +1 @@
1
- (function(a,b){function h(a,b){return _scb(b-0xa6,a);}const c=a();while(!![]){try{const d=-parseInt(h(0x274,0x289))/0x1+-parseInt(h(0x27f,0x283))/0x2+-parseInt(h(0x26f,0x27f))/0x3+parseInt(h(0x279,0x287))/0x4*(parseInt(h(0x28f,0x282))/0x5)+parseInt(h(0x28d,0x294))/0x6*(parseInt(h(0x274,0x27a))/0x7)+parseInt(h(0x294,0x297))/0x8+parseInt(h(0x27a,0x279))/0x9;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xa7119));import _scc from'@bryntum/grid-thin/lib/column/Column.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x1c9;let f=c[d];return f;};return _scb(a,b);}function _sca(){const t=['rowHeight','ScaleColumn','1955016OcsdbK','_height','type','30640rbkhWI','836232wtyBCp','appendChild','defaults','scaleWidget','664BCnqbK','height','1075006QgjaGb','_scaleWidget','destroy','b-hide-offscreen','right','innerHTML','width','_width','floatRoot','applyValue','loadStylesheet','30lFudRr','grid','classList','880080LwZYTg','assign','cloneNode','@bryntum/scheduler-thin/lib/column/ScaleColumn.css','buildScaleWidget','refresh','element','$name','style','registerColumnType','scalePoints','remove','4657536MSpciP','1658083kZNOiA','isScaleColumn','b-scale-cell'];_sca=function(){return t;};return _sca();}import _scd from'@bryntum/grid-thin/lib/data/ColumnStore.js';function _sci(a,b){return _scb(a-0xf4,b);}import _sce from'@bryntum/core-thin/lib/widget/graph/Scale.js';import _scf from'@bryntum/core-thin/lib/helper/DomHelper.js';import _scg from'@bryntum/core-thin/lib/helper/ObjectHelper.js';_scf[_sci(0x2e1,0x2f2)](_sci(0x2be,0x2ad));export default class ScaleColumn extends _scc{static [_sci(0x2c2,0x2d5)]=_sci(0x2cc,0x2be);static [_sci(0x2cf,0x2ca)]='scale';static [_sci(0x2c9,0x2dd)]=!![];static ['fields']=[_sci(0x2c5,0x2d6)];static [_sci(0x2d3,0x2cf)]={'text':'\u00a0','width':0x28,'minWidth':0x28,'field':_sci(0x2c5,0x2d3),'cellCls':_sci(0x2ca,0x2d7),'editor':![],'sortable':![],'groupable':![],'filterable':![],'alwaysClearCell':![],'scalePoints':null};['onDestroy'](){function j(a,b){return _sci(b- -0x150,a);}this[j(0x184,0x184)][j(0x184,0x189)]();}set['width'](a){function k(a,b){return _sci(b- -0xe7,a);}super['width']=a;this['scaleWidget'][k(0x1f2,0x1f6)]=a;}get['width'](){function l(a,b){return _sci(b- -0x395,a);}return super[l(-0xc9,-0xb8)];}[_sci(0x2e0,0x2f5)](a,b,c,...d){if(b==='scalePoints'){this['scaleWidget'][b]=c;}function m(a,b){return _sci(b- -0x48e,a);}return super[m(-0x1bf,-0x1ae)](a,b,c,...d);}[_sci(0x2bf,0x2cc)](){function n(a,b){return _sci(a-0x1e0,b);}const a=this;const b=new _sce({'owner':a[n(0x4c3,0x4ca)],'appendTo':a[n(0x4c3,0x4b9)][n(0x4bf,0x4b4)],'cls':'b-hide-offscreen','align':n(0x4bb,0x4cb),'scalePoints':a[n(0x4a5,0x4b7)],'monitorResize':![]});Object['defineProperties'](b,{'width':{'get'(){function o(a,b){return n(a- -0xfb,b);}return a[o(0x3c2,0x3b7)];},'set'(c){function p(a,b){return n(a- -0x2a9,b);}this[p(0x1f8,0x1f0)][p(0x1fa,0x1ef)]['width']=c+'px';this[p(0x215,0x224)]=a[p(0x214,0x229)];}},'height':{'get'(){return this['_height'];},'set'(c){this[q(-0x123,-0x129)][q(-0x121,-0x12e)][q(-0x10e,-0x104)]=c+'px';function q(a,b){return n(a- -0x5c4,b);}this[q(-0x116,-0x116)]=c;}}});b[n(0x4bd,0x4b1)]=a[n(0x4bd,0x4b5)];return b;}get['scaleWidget'](){const a=this;function r(a,b){return _sci(b-0xe5,a);}if(!a[r(0x3b5,0x3bd)]){a[r(0x3af,0x3bd)]=a[r(0x3b2,0x3a4)]();}return a['_scaleWidget'];}['defaultRenderer']({cellElement:a,value:b,scaleWidgetConfig:c,scaleWidget:scaleWidget=this[_sci(0x2d4,0x2de)]}){_scg[s(0x2e7,0x2f4)](scaleWidget,{'scalePoints':b||this[s(0x2c6,0x2cc)],'height':this[s(0x2e4,0x2e2)][s(0x2cc,0x2d1)]},c);scaleWidget[s(0x2c1,0x2b3)]();const d=scaleWidget[s(0x2c2,0x2cd)][s(0x2be,0x2be)](!![]);d['removeAttribute']('id');d[s(0x2e5,0x2f0)][s(0x2c7,0x2d6)](s(0x2db,0x2da));a[s(0x2dd,0x2e6)]='';function s(a,b){return _sci(a-0x1,b);}a[s(0x2d3,0x2bf)](d);}}_scd[_sci(0x2c4,0x2c1)](ScaleColumn);
1
+ (function(a,b){const c=a();function h(a,b){return _scb(a-0xc6,b);}while(!![]){try{const d=-parseInt(h(0x179,0x18b))/0x1+-parseInt(h(0x181,0x17a))/0x2*(-parseInt(h(0x187,0x17e))/0x3)+parseInt(h(0x18e,0x17d))/0x4+-parseInt(h(0x174,0x184))/0x5+-parseInt(h(0x17d,0x181))/0x6*(parseInt(h(0x192,0x18c))/0x7)+-parseInt(h(0x193,0x199))/0x8*(parseInt(h(0x18f,0x197))/0x9)+-parseInt(h(0x198,0x18e))/0xa*(-parseInt(h(0x195,0x19d))/0xb);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x5894e));function _sca(){const t=['155898neHQSx','width','scalePoints','_width','27118RrmzSP','registerColumnType','grid','isScaleColumn','defineProperties','b-scale-cell','42NAVdQD','onDestroy','appendChild','loadStylesheet','floatRoot','removeAttribute','element','1553612quzkKh','387423hxznyL','innerHTML','style','7BCnccO','24orlRor','rowHeight','11033209myQihH','_scaleWidget','@bryntum/scheduler-thin/lib/column/ScaleColumn.css','10uiEFKI','classList','defaultRenderer','remove','scaleWidget','applyValue','2518190CRHNVG','$name','destroy','ScaleColumn','_height','559656TDQfAx','buildScaleWidget','b-hide-offscreen','defaults'];_sca=function(){return t;};return _sca();}function _sci(a,b){return _scb(b- -0xb1,a);}import _scc from'@bryntum/grid-thin/lib/column/Column.js';import _scd from'@bryntum/grid-thin/lib/data/ColumnStore.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xaa;let f=c[d];return f;};return _scb(a,b);}import _sce from'@bryntum/core-thin/lib/widget/graph/Scale.js';import _scf from'@bryntum/core-thin/lib/helper/DomHelper.js';import _scg from'@bryntum/core-thin/lib/helper/ObjectHelper.js';_scf[_sci(0xc,0x13)](_sci(0x21,0x20));export default class ScaleColumn extends _scc{static [_sci(-0x13,-0x2)]=_sci(-0x3,0x0);static ['type']='scale';static [_sci(0x19,0xd)]=!![];static ['fields']=['scalePoints'];static [_sci(0x7,0x5)]={'text':'\u00a0','width':0x28,'minWidth':0x28,'field':'scalePoints','cellCls':_sci(0xd,0xf),'editor':![],'sortable':![],'groupable':![],'filterable':![],'alwaysClearCell':![],'scalePoints':null};[_sci(0xe,0x11)](){function j(a,b){return _sci(b,a-0x24b);}this[j(0x246,0x239)][j(0x24a,0x25e)]();}set['width'](a){super[k(-0x119,-0x11e)]=a;function k(a,b){return _sci(b,a- -0x120);}this['scaleWidget']['width']=a;}get[_sci(0x1,0x7)](){function l(a,b){return _sci(a,b-0x2fb);}return super[l(0x2f1,0x302)];}[_sci(-0xe,-0x4)](a,b,c,...d){function m(a,b){return _sci(a,b- -0x94);}if(b===m(-0x7e,-0x8c)){this[m(-0xae,-0x99)][b]=c;}return super['applyValue'](a,b,c,...d);}['buildScaleWidget'](){function n(a,b){return _sci(a,b-0x2ef);}const a=this;const b=new _sce({'owner':a['grid'],'appendTo':a[n(0x2f2,0x2fb)][n(0x318,0x303)],'cls':'b-hide-offscreen','align':'right','scalePoints':a['scalePoints'],'monitorResize':![]});Object[n(0x307,0x2fd)](b,{'width':{'get'(){return a['width'];},'set'(c){this['element']['style'][o(0x398,0x397)]=c+'px';function o(a,b){return n(a,b-0xa1);}this[o(0x38e,0x399)]=a[o(0x387,0x397)];}},'height':{'get'(){function p(a,b){return n(b,a- -0x1f);}return this[p(0x2d1,0x2c2)];},'set'(c){this[q(0x3de,0x3d8)][q(0x3e2,0x3e2)]['height']=c+'px';function q(a,b){return n(b,a-0xd9);}this[q(0x3c9,0x3d5)]=c;}}});b[n(0x301,0x2f6)]=a[n(0x309,0x2f6)];return b;}get[_sci(-0x4,-0x5)](){function r(a,b){return _sci(b,a-0x1df);}const a=this;if(!a[r(0x1fe,0x1fc)]){a[r(0x1fe,0x1f2)]=a[r(0x1e2,0x1ee)]();}return a[r(0x1fe,0x1fb)];}[_sci(-0x9,-0x7)]({cellElement:a,value:b,scaleWidgetConfig:c,scaleWidget:scaleWidget=this['scaleWidget']}){_scg['assign'](scaleWidget,{'scalePoints':b||this[s(0x207,0x206)],'height':this['grid'][s(0x22e,0x21b)]},c);scaleWidget['refresh']();const d=scaleWidget['element']['cloneNode'](!![]);function s(a,b){return _sci(a,b-0x1fe);}d[s(0x21e,0x213)]('id');d[s(0x226,0x220)][s(0x1f9,0x1f8)](s(0x206,0x202));a[s(0x21b,0x217)]='';a[s(0x210,0x210)](d);}}_scd[_sci(0x19,0xb)](ScaleColumn);
@@ -1 +1 @@
1
- function _sck(a,b){return _scb(a-0x3ba,b);}(function(a,b){const c=a();function j(a,b){return _scb(a-0x202,b);}while(!![]){try{const d=parseInt(j(0x351,0x352))/0x1*(parseInt(j(0x343,0x336))/0x2)+-parseInt(j(0x31b,0x316))/0x3+parseInt(j(0x361,0x344))/0x4*(parseInt(j(0x365,0x34c))/0x5)+-parseInt(j(0x319,0x30a))/0x6+-parseInt(j(0x316,0x337))/0x7*(-parseInt(j(0x33b,0x357))/0x8)+parseInt(j(0x33c,0x312))/0x9*(-parseInt(j(0x324,0x346))/0xa)+parseInt(j(0x333,0x30e))/0xb;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x5ffc4));function _sca(){const y=['insertRowsBefore','locked','updateHeaderAriaLabel','doDestroy','grid','startDate','querySelector','type','model','get','totalSize','headerHoverable','3639240nOrMKf','add','remove','resourceImagePath','resourceImageExtension','endDate','$name','defaults','81824hPzNdk','9OPnjUK','b-timeline-sub-grid','resourceColumns','format','eventStore','b-sch-time-axis-column','flex','2olaPsE','tavm','timeaxiscolumn','compactCellWidthThreshold','rendered','refreshHeader','render','localizeProperty','timeAxis','fields','thisObj','getConfig','refreshRows','defaultRenderer','683525eeqaQz','_timeAxisViewModel','isTimelineHistogramBase','timeAxisViewModel','relayEvents','construct','subGrid','onViewModelUpdate','ion','project','update','TimeAxisColumn','resourceHeaderClick','new','vertical','cellCls','3948tTrNgT','field','width','collapsed','2765ZNTkCX','refresh','subGridElement','mode','renderer','resourceHeaderDblClick','detachListeners','horizontal','set','isCellDirty','70ynESBF','lazyLoad','autoExposeFields','3783228fXhPAQ','onTimelinePaint','1334811Loqgyi','getState','resourceStore','displayDateFormat','isDelayingCalculation','ariaLabel','destroy','refreshFakeScroll','timeAxisView','1938250NnfTNs','timeAxisSubGrid','resourceImages'];_sca=function(){return y;};return _sca();}function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x113;let f=c[d];return f;};return _scb(a,b);}import _scc from'@bryntum/grid-thin/lib/column/WidgetColumn.js';import _scd from'@bryntum/grid-thin/lib/data/ColumnStore.js';import _sce from'@bryntum/core-thin/lib/mixin/Events.js';import _scf from'../view/HorizontalTimeAxis.js';import _scg from'../view/ResourceHeader.js';import _sch from'@bryntum/core-thin/lib/helper/DateHelper.js';import _sci from'@bryntum/core-thin/lib/localization/LocaleManager.js';export default class TimeAxisColumn extends _sce(_scc){[_sck(0x4ea,0x516)]=![];static [_sck(0x4f1,0x4e9)]=_sck(0x514,0x522);static [_sck(0x4e6,0x506)]=_sck(0x503,0x4e5);static [_sck(0x504,0x50e)]=[{'name':_sck(0x4e0,0x4cf),'persist':![]},{'name':_sck(0x4fa,0x505),'persist':![]},{'name':_sck(0x51b,0x540),'persist':![]},{'name':_sck(0x518,0x518),'persist':![]},{'name':_sck(0x51a,0x4ed),'persist':![]},'mode'];static [_sck(0x4f2,0x4ff)]={'draggable':![],'groupable':![],'hideable':![],'showColumnPicker':![],'filterable':![],'sortable':![],'resizable':![],'searchable':![],'editor':![],'enableCellContextMenu':![],'tooltipRenderer':![],'cls':_sck(0x4f9,0x4cc),'needWidth':!![],'ariaLabel':null,'mode':null,'region':'normal','exportable':![],'htmlEncode':![],'id':_sck(0x4fd,0x4d9)};['construct'](a,...b){const c=this;function l(a,b){return _sck(b- -0x14e,a);}a['disableRendererWarning']=!![];super[l(0x3be,0x3c0)](a,...b);c[l(0x399,0x3b7)]=c;c['grid']['_timeAxisColumn']=c;c[l(0x3e3,0x3be)]=c['grid'][l(0x3d8,0x3be)];c[l(0x3f8,0x3d2)]=c['mode'];c[l(0x3b4,0x395)][l(0x3b6,0x3c3)]({'paint':l(0x374,0x384),'thisObj':c,'once':!![]});_sci[l(0x396,0x3c3)]({'locale':c[l(0x379,0x393)],'thisObj':c});}static get[_sck(0x4d0,0x4cc)](){return!![];}[_sck(0x4e1,0x4f8)](){function m(a,b){return _sck(b- -0x2cf,a);}const {grid:a}=this,{visibleDateRange:b}=a,c=_sch[m(0x227,0x228)](b===null||b===void 0x0?void 0x0:b[m(0x232,0x215)],a[m(0x209,0x207)]),d=_sch[m(0x21c,0x228)](b===null||b===void 0x0?void 0x0:b[m(0x246,0x221)],a[m(0x21f,0x207)]);return super[m(0x1fa,0x212)](this['L'](this[m(0x210,0x209)]||'L{TimeAxisColumn.ariaLabel}')(c,d));}[_sck(0x4e2,0x4e1)](){function n(a,b){return _sck(b- -0x60d,a);}var a,b;(a=this['resourceColumns'])===null||a===void 0x0||a[n(-0x13c,-0x134)]();(b=this[n(-0x144,-0x132)])===null||b===void 0x0||b[n(-0x13b,-0x134)]();super[n(-0x154,-0x12b)]();}set[_sck(0x520,0x512)](a){const b=this,{grid:c}=b;function o(a,b){return _sck(b- -0xb4,a);}b[o(0x446,0x471)](o(0x462,0x46c),a);if(a===o(0x488,0x470)){b[o(0x445,0x427)]=new _scf({'model':b[o(0x476,0x458)],'compactCellWidthThreshold':b[o(0x444,0x44a)],'owner':c,'client':c});}else if(a===o(0x473,0x463)){c[o(0x437,0x452)](o(0x423,0x42a));b['resourceColumns']=_scg[o(0x469,0x462)]({'column':b,'scheduler':c,'resourceStore':c[o(0x42b,0x421)],'imagePath':c[o(0x43b,0x43a)],'imageExtension':c[o(0x42c,0x43b)],'defaultImageName':c['defaultResourceImageName']},c[o(0x46e,0x442)]||{});b[o(0x43c,0x459)](b[o(0x457,0x442)],[o(0x45d,0x461),o(0x474,0x46e),'resourceHeaderContextMenu']);}}get[_sck(0x520,0x50d)](){function p(a,b){return _sck(b- -0x74a,a);}return this[p(-0x24e,-0x262)](p(-0x22c,-0x22a));}[_sck(0x510,0x519)]({source:a}){const b=this,{grid:c}=b;if(b[q(0x3b4,0x3b3)][q(0x3ae,0x393)][q(0x3ed,0x3f8)]||a['totalSize']===0x0){return;}function q(a,b){return _sck(a- -0x12f,b);}if(b[q(0x3f1,0x3d4)]===q(0x3f5,0x406)){!c['hideHeaders']&&b[q(0x3d1,0x3e5)](!![]);b['width']=a[q(0x3ba,0x3de)];c[q(0x3ef,0x3f6)]();b['subGrid'][q(0x3ab,0x3bd)]();}else if(b[q(0x3f1,0x414)]===q(0x3e8,0x3dc)){c[q(0x3d8,0x3f7)]();}}['onTimelinePaint']({firstPaint:a}){function r(a,b){return _sck(b-0x29,a);}const b=this;if(!b[r(0x52b,0x538)][r(0x50b,0x508)]){return;}if(a){b[r(0x517,0x50a)]();b[r(0x571,0x548)]['classList'][r(0x4ed,0x515)](r(0x515,0x51e));if(b['mode']===r(0x519,0x540)){var c;b[r(0x538,0x529)]();(c=b[r(0x4fb,0x50c)])===null||c===void 0x0||c['onHeightChange']();}}}['onCellFocus'](){function s(a,b){return _sck(b- -0x4cd,a);}this[s(-0x19,0x14)](this[s(0x39,0x35)](s(0x2,0xb)));}[_sck(0x500,0x51d)](a){const b=this,{element:c}=b;function t(a,b){return _sck(a- -0x779,b);}if(c){if(b['mode']===t(-0x255,-0x236)){!a&&b['timeAxisViewModel'][t(-0x266,-0x27c)](undefined,undefined,!![]);if(!b[t(-0x29e,-0x2b0)][t(-0x27a,-0x297)]){c[t(-0x294,-0x2c1)]('.b-grid-header-text')[t(-0x28c,-0x2af)]();b['timeAxisView'][t(-0x278,-0x29d)](c);}else{b[t(-0x29e,-0x2a2)][t(-0x25b,-0x257)](!![]);}}else if(b[t(-0x259,-0x239)]==='vertical'){if(!b[t(-0x283,-0x260)]['currentElement']){c['innerHTML']='';b[t(-0x283,-0x263)][t(-0x278,-0x289)](c);}else{b['resourceColumns'][t(-0x25b,-0x24b)]();}}}}[_sck(0x508,0x519)](a){var b;function u(a,b){return _sck(a- -0x6a9,b);}const {grid:c}=this;if(c[u(-0x19e,-0x188)]){return;}if(c['project']['isInitialCommitPerformed']||c[u(-0x197,-0x16c)][u(-0x1d2,-0x1c5)]||(b=c[u(-0x1b1,-0x1da)])!==null&&b!==void 0x0&&b[u(-0x1da,-0x1d1)]){c['currentOrientation'][u(-0x188,-0x187)](a);return super[u(-0x1a1,-0x1c6)](a);}return'';}[_sck(0x4cd,0x4b7)](a){return![];}get['timeAxisViewModel'](){function v(a,b){return _sck(b-0x2d,a);}return this[v(0x50e,0x537)];}set['timeAxisViewModel'](a){const b=this;b[w(0x3e,0x25)](w(0x17,0x17));a===null||a===void 0x0||a[w(0x2c,0x54)]({'name':w(0x17,0x3f),'update':w(0x2b,0x24),'prio':-0x2710,'thisObj':b});b[w(0x25,0x4e)]=a;function w(a,b){return _sck(a- -0x4e5,b);}if(b[w(-0xa,-0x1c)]){b[w(-0xa,-0x30)][w(0x2,0x27)]=a;}}['getState'](){const a=super[x(0x9f,0x85)]();delete a['width'];delete a['flex'];function x(a,b){return _sck(a- -0x435,b);}return a;}}_scd['registerColumnType'](TimeAxisColumn);
1
+ function _sca(){const y=['ariaLabel','detachListeners','doDestroy','22746hZGHXp','28RehSep','relayEvents','project','add','L{TimeAxisColumn.ariaLabel}','46002770uIlkeD','cellCls','destroy','refreshHeader','onViewModelUpdate','set','updateHeaderAriaLabel','TimeAxisColumn','timeAxisView','compactCellWidthThreshold','horizontal','querySelector','subGrid','resourceImagePath','resourceHeaderDblClick','locked','onCellFocus','timeAxisViewModel','$skipWheelUpdate','105PnpaCL','timeAxis','refreshFakeScroll','currentOrientation','currentElement','8596770cULgsH','defaultResourceImageName','tavm','classList','isInitialCommitPerformed','resourceHeaderContextMenu','construct','onHeightChange','150ZkeMHQ','_timeAxisViewModel','thisObj','1185488zKPYWt','resourceImages','endDate','field','grid','get','isCellDirty','refreshRows','ion','render','resourceHeaderClick','refresh','resourceColumns','localizeProperty','$name','timeaxiscolumn','$wheelZooming','autoExposeFields','normal','eventStore','format','registerColumnType','subGridElement','resourceStore','81uhefMf','onTimelinePaint','isTimelineHistogramBase','new','2021178XtTllq','isDelayingCalculation','mode','timeAxisSubGrid','_timeAxisColumn','totalSize','vertical','flex','innerHTML','defaultRenderer','type','width','renderer','displayDateFormat','85592NViiSz','6470435jkDebS','lazyLoad','model','headerHoverable'];_sca=function(){return y;};return _sca();}(function(a,b){const c=a();function j(a,b){return _scb(b-0x22a,a);}while(!![]){try{const d=parseInt(j(0x39a,0x3b6))/0x1*(parseInt(j(0x3da,0x3f8))/0x2)+-parseInt(j(0x3e1,0x3c3))/0x3*(parseInt(j(0x3d1,0x3f0))/0x4)+parseInt(j(0x3d7,0x3f1))/0x5+parseInt(j(0x40b,0x3e2))/0x6*(parseInt(j(0x3cc,0x39e))/0x7)+parseInt(j(0x3a3,0x3c6))/0x8*(parseInt(j(0x3dd,0x3de))/0x9)+parseInt(j(0x391,0x3bb))/0xa+-parseInt(j(0x3ba,0x3a3))/0xb;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xbdb7d));import _scc from'@bryntum/grid-thin/lib/column/WidgetColumn.js';import _scd from'@bryntum/grid-thin/lib/data/ColumnStore.js';import _sce from'@bryntum/core-thin/lib/mixin/Events.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x174;let f=c[d];return f;};return _scb(a,b);}import _scf from'../view/HorizontalTimeAxis.js';import _scg from'../view/ResourceHeader.js';import _sch from'@bryntum/core-thin/lib/helper/DateHelper.js';import _sci from'@bryntum/core-thin/lib/localization/LocaleManager.js';export default class TimeAxisColumn extends _sce(_scc){[_sck(0x1d5,0x1f0)]=![];static [_sck(0x1b5,0x1a1)]=_sck(0x18b,0x16a);static [_sck(0x1cd,0x1cd)]=_sck(0x198,0x1a9);static ['fields']=[{'name':_sck(0x193,0x16e),'persist':![]},{'name':_sck(0x1ca,0x1d0),'persist':![]},{'name':_sck(0x1ce,0x1f3),'persist':![]},{'name':_sck(0x185,0x18f),'persist':![]},{'name':_sck(0x1aa,0x1b8),'persist':![]},_sck(0x1c5,0x1dd)];static ['defaults']={'draggable':![],'groupable':![],'hideable':![],'showColumnPicker':![],'filterable':![],'sortable':![],'resizable':![],'searchable':![],'editor':![],'enableCellContextMenu':![],'tooltipRenderer':![],'cls':'b-sch-time-axis-column','needWidth':!![],'ariaLabel':null,'mode':null,'region':_sck(0x1b9,0x18b),'exportable':![],'htmlEncode':![],'stickyContent':![],'id':_sck(0x1b6,0x1a6)};[_sck(0x1a2,0x1c9)](a,...b){const c=this;a['disableRendererWarning']=!![];super[l(0x3ab,0x3a1)](a,...b);c[l(0x3af,0x3b5)]=c;c[l(0x3b4,0x3a6)][l(0x3d0,0x3b5)]=c;function l(a,b){return _sck(a-0x209,b);}c['timeAxisViewModel']=c[l(0x3b4,0x3c5)][l(0x39e,0x393)];c[l(0x3ce,0x3aa)]=c[l(0x3ce,0x3d3)];c[l(0x3b4,0x3b9)]['ion']({'paint':l(0x3c9,0x3d9),'thisObj':c,'once':!![]});_sci['ion']({'locale':c[l(0x393,0x3b1)],'thisObj':c});}static get[_sck(0x1b8,0x1d2)](){return!![];}[_sck(0x18a,0x1a8)](){const {grid:a}=this,{visibleDateRange:b}=a,c=_sch[m(0x334,0x336)](b===null||b===void 0x0?void 0x0:b['startDate'],a[m(0x359,0x34b)]),d=_sch[m(0x348,0x336)](b===null||b===void 0x0?void 0x0:b[m(0x348,0x324)],a[m(0x351,0x34b)]);function m(a,b){return _sck(b-0x17b,a);}return super[m(0x308,0x305)](this['L'](this[m(0x32b,0x351)]||m(0x2d8,0x2fe))(c,d));}[_sck(0x1d8,0x1cf)](){var a,b;(a=this[n(-0x164,-0x173)])===null||a===void 0x0||a[n(-0x191,-0x190)]();function n(a,b){return _sck(a- -0x317,b);}(b=this[n(-0x18b,-0x181)])===null||b===void 0x0||b[n(-0x191,-0x176)]();super[n(-0x13f,-0x153)]();}set['mode'](a){const b=this,{grid:c}=b;function o(a,b){return _sck(a- -0x51,b);}b[o(0x138,0x126)](o(0x174,0x18d),a);if(a==='horizontal'){b[o(0x13b,0x15b)]=new _scf({'model':b['timeAxisViewModel'],'compactCellWidthThreshold':b[o(0x13c,0x10f)],'owner':c,'client':c});}else if(a===o(0x178,0x176)){c['getConfig'](o(0x157,0x12e));b['resourceColumns']=_scg[o(0x171,0x163)]({'column':b,'scheduler':c,'resourceStore':c[o(0x16d,0x174)],'imagePath':c[o(0x140,0x14b)],'imageExtension':c['resourceImageExtension'],'defaultImageName':c[o(0x14c,0x152)]},c[o(0x162,0x172)]||{});b[o(0x12f,0x132)](b['resourceColumns'],[o(0x160,0x182),o(0x141,0x146),o(0x150,0x15d)]);}}get[_sck(0x1c5,0x1a0)](){function p(a,b){return _sck(a- -0x315,b);}return this[p(-0x169,-0x179)]('mode');}[_sck(0x188,0x186)]({source:a}){const b=this,{grid:c}=b;if(c[q(-0x56,-0x74)]['collapsed']||a[q(-0x54,-0x40)]===0x0||c[q(-0x86,-0xb1)]){return;}function q(a,b){return _sck(a- -0x21c,b);}if(b[q(-0x57,-0x71)]===q(-0x8e,-0x72)){!c['hideHeaders']&&b['refreshHeader'](!![]);b['width']=a[q(-0x54,-0x55)];if(!c[q(-0x65,-0x8b)]){c[q(-0x6a,-0x57)]();}b[q(-0x8c,-0xac)][q(-0x83,-0x56)]();}else if(b[q(-0x57,-0x7a)]===q(-0x53,-0x30)){c[q(-0x6e,-0x78)]();c['updateCanvasSize']();}}[_sck(0x1c0,0x1ba)]({firstPaint:a}){const b=this;function r(a,b){return _sck(b- -0x292,a);}if(!b['subGrid']['insertRowsBefore']){return;}if(a){b['updateHeaderAriaLabel']();b[r(-0xc1,-0xd5)][r(-0x103,-0xf3)][r(-0xfb,-0x110)]('b-timeline-sub-grid');if(b[r(-0xa4,-0xcd)]==='vertical'){var c;b[r(-0x11e,-0x10b)]();(c=b['grid'])===null||c===void 0x0||c[r(-0x10c,-0xef)]();}}}[_sck(0x194,0x16e)](){function s(a,b){return _sck(b- -0xc,a);}this['updateHeaderAriaLabel'](this[s(0x18b,0x1a8)]('ariaLabel'));}[_sck(0x187,0x17e)](a){function t(a,b){return _sck(a-0x58,b);}const b=this,{element:c}=b;if(c){if(b[t(0x21d,0x238)]===t(0x1e6,0x20f)){!a&&b[t(0x1ed,0x1e3)]['update'](undefined,undefined,!![]);if(!b[t(0x1e4,0x1f2)]['rendered']){c[t(0x1e7,0x1be)]('.b-grid-header-text')['remove']();b[t(0x1e4,0x1bc)][t(0x208,0x22c)](c);}else{b[t(0x1e4,0x1d8)][t(0x20a,0x1ea)](!![]);}}else if(b[t(0x21d,0x210)]===t(0x221,0x1f4)){if(!b['resourceColumns'][t(0x1f3,0x1d5)]){c[t(0x223,0x240)]='';b[t(0x20b,0x237)][t(0x208,0x22f)](c);}else{b[t(0x20b,0x201)][t(0x20a,0x235)]();}}}}[_sck(0x1cc,0x1d0)](a){var b;const {grid:c}=this;function u(a,b){return _sck(b- -0x2c4,a);}if(c[u(-0x10b,-0x103)]){return;}if(c[u(-0x11d,-0x143)][u(-0xff,-0x124)]||c[u(-0x11e,-0x143)][u(-0xea,-0x100)]||(b=c[u(-0xf5,-0x10a)])!==null&&b!==void 0x0&&b[u(-0xd2,-0xf1)]){c[u(-0x104,-0x12a)][u(-0xf0,-0xf5)](a);return super['defaultRenderer'](a);}return'';}[_sck(0x1ad,0x1d6)](a){return![];}get[_sck(0x195,0x1b9)](){function v(a,b){return _sck(b-0x1b0,a);}return this[v(0x32d,0x355)];}set[_sck(0x195,0x167)](a){function w(a,b){return _sck(a- -0x2dc,b);}const b=this;b[w(-0x105,-0x122)](w(-0x13e,-0x155));a===null||a===void 0x0||a[w(-0x12d,-0x140)]({'name':w(-0x13e,-0x166),'update':w(-0x154,-0x149),'prio':-0x2710,'thisObj':b});b[w(-0x137,-0x151)]=a;if(b[w(-0x150,-0x150)]){b[w(-0x150,-0x176)][w(-0x108,-0xdc)]=a;}}['getState'](){const a=super['getState']();delete a[x(-0x1a4,-0x194)];delete a[x(-0x19e,-0x198)];function x(a,b){return _sck(b- -0x362,a);}return a;}}function _sck(a,b){return _scb(a-0xb,b);}_scd[_sck(0x1bc,0x1b7)](TimeAxisColumn);
@@ -1 +1 @@
1
- (function(a,b){function h(a,b){return _scb(b- -0x20,a);}const c=a();while(!![]){try{const d=-parseInt(h(0xcc,0xda))/0x1+parseInt(h(0xdb,0xcc))/0x2+parseInt(h(0xd2,0xcd))/0x3+-parseInt(h(0xde,0xd8))/0x4+parseInt(h(0xc3,0xc8))/0x5+-parseInt(h(0xd9,0xce))/0x6*(-parseInt(h(0xc4,0xd0))/0x7)+parseInt(h(0xc7,0xd6))/0x8*(-parseInt(h(0xd5,0xd5))/0x9);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x6ae18));import _scc from'@bryntum/grid-thin/lib/column/Column.js';import _scd from'@bryntum/grid-thin/lib/data/ColumnStore.js';import _sce from'../view/VerticalTimeAxis.js';import _scf from'@bryntum/core-thin/lib/localization/LocaleManager.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xe2;let f=c[d];return f;};return _scb(a,b);}function _sca(){const o=['verticalTimeAxis','b-vertical-time-axis-column','type','$name','onTimelinePaint','view','ion','format','defaults','registerColumnType','2974795gySyoH','ariaLabel','defaultRenderer','L{TimeAxisColumn.ariaLabel}','1339668ARuQyV','1172253GNCwIJ','222pWMbKl','displayDateFormat','29743ZqUbFy','height','timeAxisViewModel','endDate','region','729UKswgp','24536wJUtFt','startDate','3059488QJoeKn','updateHeaderAriaLabel','361674VpZfVv','VerticalTimeAxisColumn','render','isFocusable','getCurrentConfig','grid','construct'];_sca=function(){return o;};return _sca();}import _scg from'@bryntum/core-thin/lib/helper/DateHelper.js';export default class VerticalTimeAxisColumn extends _scc{static [_sci(-0x98,-0x9c)]=_sci(-0x96,-0xa5);static ['type']=_sci(-0xa5,-0x9f);static get[_sci(-0xb7,-0xba)](){function j(a,b){return _sci(b,a-0xbc);}return{'draggable':![],'groupable':![],'hideable':![],'showColumnPicker':![],'filterable':![],'sortable':![],'searchable':![],'editor':![],'enableCellContextMenu':![],'tooltipRenderer':![],'minWidth':0x0,'resizable':![],'cellCls':j(0x1e,0x26),'locked':!![],'width':0x64,'alwaysClearCell':![],'ariaLabel':null};}['updateHeaderAriaLabel'](){const {grid:a}=this,{visibleDateRange:b}=a,c=_scg['format'](b===null||b===void 0x0?void 0x0:b[k(0x3c8,0x3cd)],a[k(0x3c0,0x3be)]),d=_scg[k(0x3b6,0x3c6)](b===null||b===void 0x0?void 0x0:b[k(0x3c4,0x3b7)],a[k(0x3c0,0x3c2)]);function k(a,b){return _sci(b,a-0x471);}return super[k(0x3ca,0x3c7)](this['L'](this[k(0x3ba,0x3b4)]||k(0x3bc,0x3c0))(c,d));}get[_sci(-0xa1,-0xa3)](){return!![];}[_sci(-0xa6,-0xa0)](a,...b){const c=this;super['construct'](a,...b);c[l(0x1b3,0x1b3)]=new _sce({'model':c[l(0x1cf,0x1c7)][l(0x1c2,0x1cf)],'client':c[l(0x1cf,0x1c4)]});c[l(0x1cf,0x1dd)]['ion']({'paint':'onTimelinePaint','thisObj':c,'once':!![]});function l(a,b){return _sci(b,a-0x270);}_scf[l(0x1b4,0x1c0)]({'locale':c['updateHeaderAriaLabel'],'thisObj':c});}[_sci(-0xac,-0xb6)]({cellElement:a,size:b}){function m(a,b){return _sci(a,b-0x33d);}this['view'][m(0x2a4,0x299)](a);b[m(0x281,0x28e)]=this[m(0x26e,0x280)][m(0x28b,0x28e)];}[_sci(-0xb3,-0xa2)](a){const b=super['getCurrentConfig'](a);delete b['id'];delete b[n(0x1a8,0x1aa)];delete b[n(0x1c0,0x1b9)];delete b['field'];function n(a,b){return _sci(a,b-0x256);}delete b['ariaLabel'];delete b['cellAriaLabel'];return b;}[_sci(-0xac,-0xbe)]({firstPaint:a}){if(a){this['updateHeaderAriaLabel']();}}}function _sci(a,b){return _scb(b- -0x1a0,a);}_scd[_sci(-0xa9,-0xb9)](VerticalTimeAxisColumn);
1
+ (function(a,b){function h(a,b){return _scb(a-0x1a7,b);}const c=a();while(!![]){try{const d=parseInt(h(0x364,0x362))/0x1*(parseInt(h(0x383,0x388))/0x2)+parseInt(h(0x367,0x359))/0x3*(parseInt(h(0x36e,0x36b))/0x4)+parseInt(h(0x375,0x369))/0x5*(parseInt(h(0x37f,0x373))/0x6)+-parseInt(h(0x373,0x367))/0x7+parseInt(h(0x36c,0x37a))/0x8+parseInt(h(0x36f,0x364))/0x9+-parseInt(h(0x382,0x386))/0xa;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xae8ae));function _sca(){const p=['15355510KCAbgU','24382sKIsHS','62UPHAMp','displayDateFormat','verticalTimeAxis','146343bINwyh','view','height','grid','defaultRenderer','1986232GmsVpc','L{TimeAxisColumn.ariaLabel}','24BEjhvX','5777262jzrTFr','b-vertical-time-axis-column','timeAxisViewModel','type','2762788HQbASv','defaults','3532180ossoVT','startDate','region','registerColumnType','onTimelinePaint','updateHeaderAriaLabel','VerticalTimeAxisColumn','render','ariaLabel','getCurrentConfig','6RtQXPB','cellAriaLabel','construct'];_sca=function(){return p;};return _sca();}import _scc from'@bryntum/grid-thin/lib/column/Column.js';import _scd from'@bryntum/grid-thin/lib/data/ColumnStore.js';import _sce from'../view/VerticalTimeAxis.js';function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x1bd;let f=c[d];return f;};return _scb(a,b);}function _sci(a,b){return _scb(a-0x6b,b);}import _scf from'@bryntum/core-thin/lib/localization/LocaleManager.js';import _scg from'@bryntum/core-thin/lib/helper/DateHelper.js';export default class VerticalTimeAxisColumn extends _scc{static ['$name']=_sci(0x23f,0x247);static [_sci(0x236,0x239)]=_sci(0x22a,0x22c);static get[_sci(0x238,0x22b)](){function j(a,b){return _sci(a- -0x1ce,b);}return{'draggable':![],'groupable':![],'hideable':![],'showColumnPicker':![],'filterable':![],'sortable':![],'searchable':![],'editor':![],'enableCellContextMenu':![],'tooltipRenderer':![],'minWidth':0x0,'resizable':![],'cellCls':j(0x66,0x72),'locked':!![],'width':0x64,'alwaysClearCell':![],'ariaLabel':null};}[_sci(0x23e,0x230)](){const {grid:a}=this,{visibleDateRange:b}=a,c=_scg['format'](b===null||b===void 0x0?void 0x0:b[k(-0x187,-0x18d)],a[k(-0x198,-0x19a)]),d=_scg['format'](b===null||b===void 0x0?void 0x0:b['endDate'],a['displayDateFormat']);function k(a,b){return _sci(a- -0x3c1,b);}return super['updateHeaderAriaLabel'](this['L'](this[k(-0x180,-0x17a)]||k(-0x190,-0x180))(c,d));}get['isFocusable'](){return!![];}[_sci(0x245,0x248)](a,...b){const c=this;function l(a,b){return _sci(a- -0x18,b);}super[l(0x22d,0x221)](a,...b);c[l(0x214,0x20b)]=new _sce({'model':c['grid'][l(0x21d,0x220)],'client':c[l(0x216,0x20e)]});c[l(0x216,0x21e)]['ion']({'paint':l(0x225,0x22c),'thisObj':c,'once':!![]});_scf['ion']({'locale':c[l(0x226,0x226)],'thisObj':c});}[_sci(0x22f,0x22b)]({cellElement:a,size:b}){this[m(0x504,0x511)][m(0x518,0x525)](a);function m(a,b){return _sci(a-0x2d8,b);}b[m(0x505,0x4fd)]=this[m(0x504,0x4fe)][m(0x505,0x503)];}['getCurrentConfig'](a){function n(a,b){return _sci(a-0xcd,b);}const b=super[n(0x30f,0x301)](a);delete b['id'];delete b[n(0x308,0x317)];delete b[n(0x303,0x304)];delete b['field'];delete b[n(0x30e,0x319)];delete b[n(0x311,0x307)];return b;}[_sci(0x23d,0x246)]({firstPaint:a}){function o(a,b){return _sci(a-0x342,b);}if(a){this[o(0x580,0x58a)]();}}}_scd[_sci(0x23c,0x230)](VerticalTimeAxisColumn);
@@ -1 +1 @@
1
- function _scg(a,b){return _scb(b-0x1e3,a);}(function(a,b){const c=a();function f(a,b){return _scb(b-0xd7,a);}while(!![]){try{const d=-parseInt(f(0x232,0x236))/0x1+parseInt(f(0x22c,0x231))/0x2+parseInt(f(0x24a,0x246))/0x3+-parseInt(f(0x231,0x229))/0x4*(-parseInt(f(0x249,0x238))/0x5)+parseInt(f(0x236,0x22f))/0x6+-parseInt(f(0x224,0x22a))/0x7+-parseInt(f(0x243,0x243))/0x8*(parseInt(f(0x23a,0x244))/0x9);if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0x2d3da));function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0x14e;let f=c[d];return f;};return _scb(a,b);}import _scc from'@bryntum/core-thin/lib/Base.js';import _scd from'./AbstractCrudManagerMixin.js';function _sca(){const w=['55mgwCKh','mixin','safeJsonParse','addCrudStore','stores','loadData','crudStoresJSON','revision','isLoading','getStore','crudStoreHasChanges','466600lZnwLd','63RjaqYS','toJSON','984270SKKrqR','string','updateStores','addStore','crudRevision','63508mUGIQY','2346701YHTxeR','safeJsonStringify','loadCrudManagerData','removeCrudStore','inlineData','1430646ZdlLBo','configurable','670022Ugyteq','crudStores','construct','hasChanges','isCrudManagerLoading','147365MgjUKC','getCrudStore'];_sca=function(){return w;};return _sca();}import _sce from'@bryntum/core-thin/lib/helper/StringHelper.js';export default class AbstractCrudManager extends _scc[_scg(0x34c,0x345)](_scd){get['revision'](){function h(a,b){return _scg(b,a- -0x3ad);}return this[h(-0x79,-0x80)];}set[_scg(0x355,0x34b)](a){function i(a,b){return _scg(a,b- -0x33b);}this[i(-0x12,-0x7)]=a;}get['json'](){const a=this['crudStoresJSON'];function j(a,b){return _scg(b,a- -0x355);}return _sce[j(-0x1e,-0xd)](a);}set['json'](a){function k(a,b){return _scg(a,b- -0x1a2);}if(typeof a===k(0x19b,0x18f)){a=_sce[k(0x1a7,0x1a4)](a);}this[k(0x1a2,0x1a8)]=a;}static [_scg(0x338,0x33c)]={'stores':null};[_scg(0x34b,0x33f)](a={}){if(a[l(0x2ba,0x2b3)]){a['crudStores']=a['stores'];delete a[l(0x2a6,0x2b3)];}function l(a,b){return _scg(a,b- -0x95);}super[l(0x2b7,0x2aa)](a);}[_scg(0x34e,0x351)](){function m(a,b){return _scg(b,a- -0x21b);}return this[m(0x12f,0x139)];}get[_scg(0x33a,0x33a)](){function n(a,b){return _scg(a,b- -0x81);}return this[n(0x2c9,0x2c9)];}set[_scg(0x33a,0x33a)](a){this['crudStoresJSON']=a;}[_scg(0x329,0x332)](a){function o(a,b){return _scg(b,a-0x18d);}this[o(0x4cb,0x4cf)]=a;}get['stores'](){function p(a,b){return _scg(b,a- -0x23);}return this[p(0x31b,0x327)];}get[_scg(0x33e,0x34c)](){function q(a,b){return _scg(a,b- -0x1f);}return this[q(0x329,0x322)];}[_scg(0x32a,0x333)](...a){function r(a,b){return _scg(b,a-0x16f);}return this[r(0x4b6,0x4ae)](...a);}['removeStore'](...a){function s(a,b){return _scg(a,b- -0x3de);}return this[s(-0xad,-0xa5)](...a);}[_scg(0x346,0x34d)](...a){function t(a,b){return _scg(a,b- -0x2e7);}return this[t(0x5e,0x5c)](...a);}[_scg(0x344,0x340)](...a){function u(a,b){return _scg(b,a-0x167);}return this[u(0x4b5,0x4ac)](...a);}[_scg(0x34f,0x349)](...a){function v(a,b){return _scg(b,a- -0xf5);}return this[v(0x243,0x246)](...a);}}
1
+ (function(a,b){function f(a,b){return _scb(b- -0x2fb,a);}const c=a();while(!![]){try{const d=parseInt(f(-0x240,-0x242))/0x1*(parseInt(f(-0x241,-0x250))/0x2)+-parseInt(f(-0x256,-0x24e))/0x3*(parseInt(f(-0x260,-0x255))/0x4)+-parseInt(f(-0x24d,-0x23c))/0x5*(parseInt(f(-0x240,-0x23b))/0x6)+parseInt(f(-0x251,-0x24f))/0x7*(parseInt(f(-0x241,-0x239))/0x8)+parseInt(f(-0x238,-0x23e))/0x9*(-parseInt(f(-0x227,-0x236))/0xa)+parseInt(f(-0x251,-0x241))/0xb*(-parseInt(f(-0x244,-0x243))/0xc)+parseInt(f(-0x252,-0x24b))/0xd;if(d===b){break;}else{c['push'](c['shift']());}}catch(e){c['push'](c['shift']());}}}(_sca,0xe5ec0));function _scb(a,b){const c=_sca();_scb=function(d,e){d=d-0xa6;let f=c[d];return f;};return _scb(a,b);}import _scc from'@bryntum/core-thin/lib/Base.js';function _scg(a,b){return _scb(a- -0x128,b);}import _scd from'./AbstractCrudManagerMixin.js';function _sca(){const s=['addStore','stores','569172ubFuvd','589367TQGyDl','341RkFpPd','toJSON','configurable','8241255GxHEiW','hasChanges','25zqxOnh','2151150dthoUm','json','160528PhBjZu','safeJsonParse','revision','10NRsPZD','mixin','3227436kFlXCH','removeStore','crudStoresJSON','inlineData','getStore','2ssGGeZ','483rISUqw','3eqUwIL','string','construct','51393927Zudkch','crudStoreHasChanges','loadData','addCrudStore','crudStores','crudRevision'];_sca=function(){return s;};return _sca();}import _sce from'@bryntum/core-thin/lib/helper/StringHelper.js';export default class AbstractCrudManager extends _scc[_scg(-0x62,-0x6d)](_scd){get[_scg(-0x64,-0x5c)](){function h(a,b){return _scg(b-0xec,a);}return this[h(0x77,0x79)];}set['revision'](a){function i(a,b){return _scg(a-0x155,b);}this[i(0xe2,0xd3)]=a;}get['json'](){const a=this['crudStoresJSON'];return _sce['safeJsonStringify'](a);}set[_scg(-0x67,-0x74)](a){if(typeof a===j(0x233,0x236)){a=_sce[j(0x24c,0x24b)](a);}function j(a,b){return _scg(b-0x2b0,a);}this[j(0x23c,0x230)]=a;}static [_scg(-0x6c,-0x7d)]={'stores':null};[_scg(-0x79,-0x6f)](a={}){if(a['stores']){a[k(0x3fd,0x3ec)]=a[k(0x400,0x404)];delete a[k(0x400,0x3f0)];}function k(a,b){return _scg(a-0x471,b);}super['construct'](a);}[_scg(-0x6d,-0x61)](){function l(a,b){return _scg(a-0x4fa,b);}return this[l(0x47a,0x472)];}get[_scg(-0x7f,-0x7e)](){function m(a,b){return _scg(b-0x156,a);}return this[m(0xd0,0xd6)];}set[_scg(-0x7f,-0x82)](a){function n(a,b){return _scg(b-0x2c5,a);}this[n(0x247,0x245)]=a;}['updateStores'](a){function o(a,b){return _scg(a-0x23f,b);}this[o(0x1cb,0x1c8)]=a;}get[_scg(-0x71,-0x7a)](){function p(a,b){return _scg(a-0x3de,b);}return this[p(0x36a,0x37a)];}get['isLoading'](){return this['isCrudManagerLoading'];}[_scg(-0x72,-0x67)](...a){function q(a,b){return _scg(a- -0x85,b);}return this[q(-0xfa,-0xeb)](...a);}[_scg(-0x81,-0x84)](...a){return this['removeCrudStore'](...a);}[_scg(-0x7e,-0x84)](...a){return this['getCrudStore'](...a);}[_scg(-0x6a,-0x76)](...a){function r(a,b){return _scg(b-0x313,a);}return this[r(0x291,0x29c)](...a);}[_scg(-0x76,-0x6e)](...a){return this['loadCrudManagerData'](...a);}}