@bryntum/calendar-angular-thin 7.1.1

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 (46) hide show
  1. package/README.md +44 -0
  2. package/bryntum-calendar-angular-thin.d.ts +5 -0
  3. package/bundles/bryntum-calendar-angular-thin.umd.js +22195 -0
  4. package/bundles/bryntum-calendar-angular-thin.umd.js.map +1 -0
  5. package/esm2015/bryntum-calendar-angular-thin.js +5 -0
  6. package/esm2015/lib/bryntum-agenda-view.component.js +2503 -0
  7. package/esm2015/lib/bryntum-calendar-date-picker.component.js +1045 -0
  8. package/esm2015/lib/bryntum-calendar-project-model.component.js +369 -0
  9. package/esm2015/lib/bryntum-calendar.component.js +2355 -0
  10. package/esm2015/lib/bryntum-day-agenda-view.component.js +1338 -0
  11. package/esm2015/lib/bryntum-day-resource-view.component.js +1347 -0
  12. package/esm2015/lib/bryntum-day-view.component.js +1323 -0
  13. package/esm2015/lib/bryntum-event-list.component.js +2453 -0
  14. package/esm2015/lib/bryntum-mode-selector.component.js +702 -0
  15. package/esm2015/lib/bryntum-month-agenda-view.component.js +1201 -0
  16. package/esm2015/lib/bryntum-month-grid.component.js +1262 -0
  17. package/esm2015/lib/bryntum-month-view.component.js +1337 -0
  18. package/esm2015/lib/bryntum-range-menu.component.js +884 -0
  19. package/esm2015/lib/bryntum-resource-view.component.js +1068 -0
  20. package/esm2015/lib/bryntum-week-view.component.js +1323 -0
  21. package/esm2015/lib/bryntum-year-view.component.js +1163 -0
  22. package/esm2015/lib/calendar.module.js +99 -0
  23. package/esm2015/lib/wrapper.helper.js +74 -0
  24. package/esm2015/public-api.js +21 -0
  25. package/fesm2015/bryntum-calendar-angular-thin.js +21714 -0
  26. package/fesm2015/bryntum-calendar-angular-thin.js.map +1 -0
  27. package/lib/bryntum-agenda-view.component.d.ts +2953 -0
  28. package/lib/bryntum-calendar-date-picker.component.d.ts +1525 -0
  29. package/lib/bryntum-calendar-project-model.component.d.ts +399 -0
  30. package/lib/bryntum-calendar.component.d.ts +2577 -0
  31. package/lib/bryntum-day-agenda-view.component.d.ts +1960 -0
  32. package/lib/bryntum-day-resource-view.component.d.ts +2025 -0
  33. package/lib/bryntum-day-view.component.d.ts +1980 -0
  34. package/lib/bryntum-event-list.component.d.ts +2888 -0
  35. package/lib/bryntum-mode-selector.component.d.ts +851 -0
  36. package/lib/bryntum-month-agenda-view.component.d.ts +1765 -0
  37. package/lib/bryntum-month-grid.component.d.ts +1731 -0
  38. package/lib/bryntum-month-view.component.d.ts +1897 -0
  39. package/lib/bryntum-range-menu.component.d.ts +1130 -0
  40. package/lib/bryntum-resource-view.component.d.ts +1512 -0
  41. package/lib/bryntum-week-view.component.d.ts +1980 -0
  42. package/lib/bryntum-year-view.component.d.ts +1661 -0
  43. package/lib/calendar.module.d.ts +22 -0
  44. package/lib/wrapper.helper.d.ts +26 -0
  45. package/package.json +33 -0
  46. package/public-api.d.ts +17 -0
@@ -0,0 +1,2025 @@
1
+ /**
2
+ * Angular wrapper for Bryntum DayResourceView
3
+ */
4
+ import { ElementRef, SimpleChanges, OnDestroy, OnInit } from '@angular/core';
5
+ import { AlignSpec, Base, BryntumScrollOptions, ButtonConfig, DomConfig, DurationConfig, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, PagingToolbarConfig, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, Rectangle, Scroller, ScrollerConfig, StateProvider, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Widget } from '@bryntum/core-thin';
6
+ import { EventModel, ResourceModel } from '@bryntum/scheduler-thin';
7
+ import { ActionButtonsConfig, CalendarRow, CalendarRowConfig, CalendarView, CalendarContainerItemConfig, CalendarContainerLayoutConfig, DayCell, DayCellWithEvents, DayResourceView, DayResourceViewListeners, EventBar, FluidDayLayoutConfig, OverflowPopupConfig } from '@bryntum/calendar-thin';
8
+ import * as i0 from "@angular/core";
9
+ export declare type BryntumDayResourceViewProps = {
10
+ /**
11
+ * An object or an array of button specifications which add clickable icon buttons to
12
+ * the rendered event blocks which contain the following properties.
13
+ * ...
14
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-actionButtons)
15
+ */
16
+ actionButtons?: ActionButtonsConfig[] | Record<string, ActionButtonsConfig>;
17
+ /**
18
+ * A key to use to activate this view.
19
+ * ...
20
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-activationKey)
21
+ */
22
+ activationKey?: string;
23
+ /**
24
+ * Element (or element id) to adopt as this Widget's encapsulating element. The widget's
25
+ * content will be placed inside this element.
26
+ * ...
27
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-adopt)
28
+ */
29
+ adopt?: HTMLElement | string;
30
+ /**
31
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-floating).*
32
+ * ...
33
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-align)
34
+ */
35
+ align?: AlignSpec | string;
36
+ /**
37
+ * When this widget is a child of a [Container](https://bryntum.com/products/calendar/docs/api/Core/widget/Container), it will by default be participating in a
38
+ * flexbox layout. This config allows you to set this widget's
39
+ * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.
40
+ */
41
+ alignSelf?: string;
42
+ /**
43
+ * A [CalendarRow](https://bryntum.com/products/calendar/docs/api/Calendar/widget/CalendarRow) widget containing the horizontal series of calendar cells with the
44
+ * day headers and any all-day, or day-spanning events which fall inside this view's time range.
45
+ * ...
46
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-allDayEvents)
47
+ */
48
+ allDayEvents?: CalendarRow | CalendarRowConfig | null;
49
+ /**
50
+ * Configure this as `false` to disable drag-creating events in this view.
51
+ */
52
+ allowDragCreate?: boolean;
53
+ /**
54
+ * Configure this as `false` to disable drag-moving events in this view.
55
+ */
56
+ allowDragMove?: boolean;
57
+ /**
58
+ * Configure this as `false` to disable drag-resizing events in this view.
59
+ */
60
+ allowDragResize?: boolean;
61
+ /**
62
+ * By default, when mousewheel zooming out from *overflowing* the client height, it is not permitted to zoom
63
+ * further out so that the hours *underflow* the client height.
64
+ * ...
65
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-allowZoomUnderflow)
66
+ */
67
+ allowZoomUnderflow?: boolean;
68
+ /**
69
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-floating) and being shown through [showBy](#Core/widget/Widget#function-showBy).*
70
+ * `true` to show a connector arrow pointing to the align target.
71
+ */
72
+ anchor?: boolean;
73
+ /**
74
+ * By default, when navigating through time, the next time
75
+ * block will be animated in from the appropriate direction.
76
+ * ...
77
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-animateTimeShift)
78
+ */
79
+ animateTimeShift?: boolean;
80
+ /**
81
+ * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
82
+ * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#property-element).
83
+ */
84
+ appendTo?: HTMLElement | string;
85
+ /**
86
+ * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject
87
+ * into an element which will be linked using the `aria-describedby` attribute.
88
+ * ...
89
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-ariaDescription)
90
+ */
91
+ ariaDescription?: string;
92
+ /**
93
+ * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as
94
+ * the `aria-label` attribute.
95
+ * ...
96
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-ariaLabel)
97
+ */
98
+ ariaLabel?: string;
99
+ /**
100
+ * If this config is set, then the `gesture` configured (which defaults to `dblclick`) creates a
101
+ * new event at the mouse or touch event's time point.
102
+ * ...
103
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-autoCreate)
104
+ */
105
+ autoCreate?: {
106
+ gesture?: string;
107
+ newName?: Function | string;
108
+ step?: string;
109
+ snapType?: 'round' | 'ceil' | 'floor';
110
+ duration?: string;
111
+ startHour?: number;
112
+ } | string | boolean;
113
+ /**
114
+ * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/calendar/docs/api/Core/widget/Toolbar),
115
+ * or array of config objects representing the child items of a Toolbar. Another way to add a bbar is to use [strips](https://bryntum.com/products/calendar/docs/api/Core/widget/Panel#config-strips).
116
+ * ...
117
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-bbar)
118
+ */
119
+ bbar?: (CalendarContainerItemConfig | string)[] | ToolbarConfig | PagingToolbarConfig | null;
120
+ /**
121
+ * Custom CSS classes to add to the panel's body element.
122
+ * ...
123
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-bodyCls)
124
+ */
125
+ bodyCls?: string | object;
126
+ /**
127
+ * An object where property names with a truthy value indicate which events should bubble up the ownership
128
+ * hierarchy when triggered.
129
+ * ...
130
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-bubbleEvents)
131
+ */
132
+ bubbleEvents?: object;
133
+ /**
134
+ * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
135
+ * ...
136
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-callOnFunctions)
137
+ */
138
+ callOnFunctions?: boolean;
139
+ /**
140
+ * By default, if an event handler throws an exception, the error propagates up the stack and the
141
+ * application state is undefined. Code which follows the event handler will *not* be executed.
142
+ * ...
143
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-catchEventHandlerExceptions)
144
+ */
145
+ catchEventHandlerExceptions?: boolean;
146
+ /**
147
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-floating).*
148
+ * Set to `true` to centre the Widget in browser viewport space.
149
+ */
150
+ centered?: boolean;
151
+ /**
152
+ * Custom CSS classes to add to element.
153
+ * May be specified as a space separated string, or as an object in which property names
154
+ * with truthy values are used as the class names:
155
+ * ...
156
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-cls)
157
+ */
158
+ cls?: string | object;
159
+ /**
160
+ * Controls whether the panel is collapsed (the body of the panel is hidden while only the header is
161
+ * visible). Only valid if the panel is [collapsible](https://bryntum.com/products/calendar/docs/api/Core/widget/Panel#config-collapsible).
162
+ */
163
+ collapsed?: boolean;
164
+ /**
165
+ * This config enables collapsibility for the panel. See [collapsed](https://bryntum.com/products/calendar/docs/api/Core/widget/Panel#config-collapsed).
166
+ * ...
167
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-collapsible)
168
+ */
169
+ collapsible?: boolean | PanelCollapserConfig | PanelCollapserOverlayConfig;
170
+ /**
171
+ * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
172
+ * `style` block.
173
+ * ...
174
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-color)
175
+ */
176
+ color?: string;
177
+ /**
178
+ * Programmatic control over which column to start in when used in a grid layout.
179
+ */
180
+ column?: number;
181
+ /**
182
+ * A function, or name of a function which is passed the [DayCellWithEvents](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayView#typedef-DayCellWithEvents) object which
183
+ * describes the events and details of the day.
184
+ * ...
185
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-columnHeaderRenderer)
186
+ * @param {DayCellWithEvents} cellData A data block describing the date and the events for that date.
187
+ * @returns {string,object}
188
+ */
189
+ columnHeaderRenderer?: ((cellData: DayCellWithEvents) => string | object) | string;
190
+ /**
191
+ * Configure this property as `true` to show the day name and date headers in a more compact style.
192
+ * ...
193
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-compactHeader)
194
+ */
195
+ compactHeader?: boolean;
196
+ config?: object;
197
+ /**
198
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-floating) or [positioned](#Core/widget/Widget#config-positioned).*
199
+ * Element, Widget or Rectangle to which this Widget is constrained.
200
+ */
201
+ constrainTo?: HTMLElement | Widget | Rectangle;
202
+ /**
203
+ * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#property-contentElement).
204
+ * May be specified as a space separated string, or as an object in which property names
205
+ * with truthy values are used as the class names:
206
+ * ...
207
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-contentElementCls)
208
+ */
209
+ contentElementCls?: string | object;
210
+ /**
211
+ * An object containing two properties, `start` and `end` representing the start and
212
+ * end of core working hours.
213
+ * ...
214
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-coreHours)
215
+ * @param {Date} date Date for hours calculation
216
+ * @returns {object[]}
217
+ */
218
+ coreHours?: object | ((date: Date) => object[]) | string;
219
+ /**
220
+ * A function, or name of a function which produces a [DomConfig](https://bryntum.com/products/calendar/docs/api/Core/helper/DomHelper#typedef-DomConfig) block to create the current time indicator
221
+ * which is displayed in a day column which represents the current date. It is the developer's responsibility
222
+ * to add CSS classes and the appropriate CSS rules to produce the desire appearance.
223
+ * ...
224
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-currentTimeIndicatorRenderer)
225
+ * @returns {DomConfig} An object which describes the DOM structure of the today indicator element.
226
+ */
227
+ currentTimeIndicatorRenderer?: (() => DomConfig) | string;
228
+ /**
229
+ * By default, half hour, fifteen minute tick lines are rendered in a lower contrast
230
+ * colour than hour lines.
231
+ * ...
232
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-dashedSubticks)
233
+ */
234
+ dashedSubticks?: boolean;
235
+ /**
236
+ * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the
237
+ * field on the expanded record to use for populating this widget's store (if applicable)
238
+ */
239
+ dataField?: string;
240
+ /**
241
+ * Object to apply to elements dataset (each key will be used as a data-attribute on the element)
242
+ */
243
+ dataset?: Record<string, string>;
244
+ /**
245
+ * The date to orient this view's [range](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/DateRangeOwner#config-range) around.
246
+ * ...
247
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-date)
248
+ */
249
+ date?: Date;
250
+ /**
251
+ * A callback function, or the name of a function in the ownership hierarchy which an
252
+ * application may provide to filter out day columns for individual dates.
253
+ * @param {DayCell} context Information about the day column to be created.
254
+ * @returns {boolean} Return `false` to not display a column for the passed date.
255
+ */
256
+ dateFilter?: ((context: DayCell) => boolean) | string;
257
+ /**
258
+ * A [DateHelper](https://bryntum.com/products/calendar/docs/api/Core/helper/DateHelper) format string/function to use to create date output for view descriptions.
259
+ * @param {Date} date The date to format.
260
+ * @returns {string} The formatted date.
261
+ */
262
+ dateFormat?: string | ((date: Date) => string);
263
+ /**
264
+ * A string used to separate start and end dates in the [descriptionFormat](https://bryntum.com/products/calendar/docs/api/Scheduler/view/mixin/Describable#config-descriptionFormat).
265
+ */
266
+ dateSeparator?: string;
267
+ /**
268
+ * A function, or name of a function which is passed the [DomConfig](https://bryntum.com/products/calendar/docs/api/Core/helper/DomHelper#typedef-DomConfig) object which
269
+ * will be used to sync with a day column.
270
+ * ...
271
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-dayCellRenderer)
272
+ * @param {DomConfig,object} domConfig A [DomConfig](https://bryntum.com/products/calendar/docs/api/Core/helper/DomHelper#typedef-DomConfig) config object which is used to sync the day column element.
273
+ * @param {object} domConfig.className An object who's truthy property names will be applied as class names.
274
+ * @param {object} domConfig.style A CSS style definition object.
275
+ * @param {object} domConfig.dataset The DOM data properties to set.
276
+ * @param {DomConfig[]} children The [DomConfig](https://bryntum.com/products/calendar/docs/api/Core/helper/DomHelper#typedef-DomConfig) definitions for the events in the day.
277
+ * @param {DayCell} cellData A `DayCell` object that contains data about the cell.
278
+ * @returns {string}
279
+ */
280
+ dayCellRenderer?: ((domConfig: {
281
+ className: object;
282
+ style: object;
283
+ dataset: object;
284
+ }, children: DomConfig[], cellData: DayCell) => string) | string;
285
+ /**
286
+ * Either the end hour of the day, or a *24 hour* `HH:MM` string denoting the end date of the last rendered time block.
287
+ * You can also set this value to a ms timestamp representing time from midnight.
288
+ * ...
289
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-dayEndTime)
290
+ */
291
+ dayEndTime?: string | number;
292
+ /**
293
+ * A function, or name of a function which is passed the [DomConfig](https://bryntum.com/products/calendar/docs/api/Core/helper/DomHelper#typedef-DomConfig) object which
294
+ * will be used to sync with a day cell header <strong>in the all day row</strong>.
295
+ * ...
296
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-dayHeaderRenderer)
297
+ * @param {DomConfig,object} headerDomConfig A [DomConfig](https://bryntum.com/products/calendar/docs/api/Core/helper/DomHelper#typedef-DomConfig) config object which is used to sync the day header element.
298
+ * @param {object} headerDomConfig.className An object who's truthy property names will be applied as class names.
299
+ * @param {object} headerDomConfig.style A CSS style definition object.
300
+ * @param {object} headerDomConfig.dataset The DOM data properties to set.
301
+ * @param {DomConfig[]} headerDomConfig.children The [DomConfig](https://bryntum.com/products/calendar/docs/api/Core/helper/DomHelper#typedef-DomConfig) definitions the header content. There will be 2 `children` encapsulating the day name and the date.
302
+ * @param {DayCell} cellData A `DayCell` object that contains data about the cell.
303
+ * @returns {string}
304
+ */
305
+ dayHeaderRenderer?: ((headerDomConfig: {
306
+ className: object;
307
+ style: object;
308
+ dataset: object;
309
+ children: DomConfig[];
310
+ }, cellData: DayCell) => string) | string;
311
+ /**
312
+ * The [DateHelper](https://bryntum.com/products/calendar/docs/api/Core/helper/DateHelper) format string/function for day names in the header row (e.g., "ddd" for "Mon", "Tue", ...)
313
+ * @param {Date} date The date to format.
314
+ * @returns {string} The formatted date.
315
+ */
316
+ dayNameFormat?: string | ((date: Date) => string);
317
+ /**
318
+ * Either the start hour of the day, or a *24 hour* `HH:MM` string denoting the start time for days. This
319
+ * is midnight by default.
320
+ * ...
321
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-dayStartShift)
322
+ */
323
+ dayStartShift?: string | number;
324
+ /**
325
+ * Either the start hour of the day, or a *24 hour* `HH:MM` string denoting the start of the first rendered
326
+ * daily time block. You can also set this value to a ms timestamp representing time from midnight.
327
+ * ...
328
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-dayStartTime)
329
+ */
330
+ dayStartTime?: string | number;
331
+ /**
332
+ * The name of the property to set when a single value is to be applied to this Widget. Such as when used
333
+ * in a grid WidgetColumn, this is the property to which the column's `field` is applied.
334
+ */
335
+ defaultBindProperty?: string;
336
+ /**
337
+ * A [query](https://bryntum.com/products/calendar/docs/api/Core/widget/Container#function-query) selector function which can identify the descendant widget to which
338
+ * focus should be directed by default.
339
+ * ...
340
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-defaultFocus)
341
+ * @param {Core.widget.Widget} widget Widget passed to method
342
+ * @returns {boolean} truthy value if widget is the default one
343
+ */
344
+ defaultFocus?: ((widget: Widget) => boolean) | string;
345
+ /**
346
+ * A config object containing default settings to apply to all child widgets.
347
+ */
348
+ defaults?: CalendarContainerItemConfig;
349
+ /**
350
+ * Options to add into scroll options when the [scrollTo](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/CalendarMixin#function-scrollTo) method is called.
351
+ * ...
352
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-defaultScrollOptions)
353
+ */
354
+ defaultScrollOptions?: BryntumScrollOptions;
355
+ /**
356
+ * The date format used by the default [descriptionRenderer](https://bryntum.com/products/calendar/docs/api/Scheduler/view/mixin/Describable#config-descriptionRenderer) for rendering the view's description.
357
+ * If this value is `null`, the [dateFormat](https://bryntum.com/products/calendar/docs/api/Scheduler/view/mixin/Describable#config-dateFormat) (and potentially [dateSeparator](#Scheduler/view/mixin/Describable#config-dateSeparator)) will
358
+ * be used.
359
+ * ...
360
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-descriptionFormat)
361
+ * @param {Date} date The date to format.
362
+ * @returns {string} The formatted date.
363
+ */
364
+ descriptionFormat?: string | string[] | boolean[] | ((date: Date) => string) | Function[];
365
+ /**
366
+ * A function that provides the textual description for this view. If provided, this function overrides the
367
+ * [descriptionFormat](https://bryntum.com/products/calendar/docs/api/Scheduler/view/mixin/Describable#config-descriptionFormat).
368
+ * ...
369
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-descriptionRenderer)
370
+ * @param {Core.widget.Widget} view The active view in case the function is in another scope.
371
+ * @returns {string} Description string
372
+ */
373
+ descriptionRenderer?: (view: Widget) => string;
374
+ /**
375
+ * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:
376
+ * ...
377
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-detectCSSCompatibilityIssues)
378
+ */
379
+ detectCSSCompatibilityIssues?: boolean;
380
+ /**
381
+ * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget
382
+ * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.
383
+ * ...
384
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-disabled)
385
+ */
386
+ disabled?: boolean | 'inert';
387
+ /**
388
+ * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/calendar/docs/api/Core/widget/Panel)
389
+ * [strips collection](https://bryntum.com/products/calendar/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
390
+ * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
391
+ * body. Such widgets are called "edge strips".
392
+ * ...
393
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-dock)
394
+ */
395
+ dock?: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
396
+ /**
397
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-floating).*
398
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
399
+ * property which controls when a drag should start.
400
+ * ...
401
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-draggable)
402
+ */
403
+ draggable?: boolean | {
404
+ handleSelector?: string;
405
+ };
406
+ /**
407
+ * The [durationUnit](https://bryntum.com/products/calendar/docs/api/Scheduler/model/EventModel#field-durationUnit) to use when drag-creating events
408
+ * in this view.
409
+ * ...
410
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-dragUnit)
411
+ */
412
+ dragUnit?: string;
413
+ /**
414
+ * Make this Panel a docked drawer which slides out from one side of the browser viewport by default.
415
+ * ...
416
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-drawer)
417
+ * @param {'start','left','end','right','top','bottom'} side The side of the viewport to dock the drawer to. * `'start'` means the `inline-start` side. * `'end'` means the `inline-end` side.
418
+ * @param {string,number} size The size of the drawer in its collapsible axis.
419
+ * @param {boolean} inline If using the [appendTo](https://bryntum.com/products/calendar/docs/api/Core/widget/Panel#config-appendTo) config to place the drawer inside a host widget, this may be set to `true` to make the drawer inline within that host. Note that, if using this, the layout of the host element must have `flex-direction` set appropriately.
420
+ * @param {boolean,object} autoClose Specifies what user actions should automatically close the drawer. Defaults to closing when the user clicks outside of the drawer or when focus moves outside of the drawer.
421
+ * @param {boolean,string} autoClose.mousedown If the user clicks outside of the drawer, the drawer will automatically be hidden. If the value is a string, it is used as a CSS selector to filter clicks which should close the drawer.
422
+ * @param {boolean,string} autoClose.focusout If focus moves outside of the drawer, the drawer will automatically be hidden.
423
+ * @param {string} autoClose.mouseout Hides the drawer when the mouse leaves the drawer after the `autoCloseDelay` period.
424
+ * @param {number} autoCloseDelay When using `mouseout`, this is the delay in milliseconds
425
+ */
426
+ drawer?: boolean | {
427
+ side?: 'start' | 'left' | 'end' | 'right' | 'top' | 'bottom';
428
+ size?: string | number;
429
+ inline?: boolean;
430
+ autoClose: {
431
+ mousedown?: boolean | string;
432
+ focusout?: boolean | string;
433
+ mouseout?: string;
434
+ };
435
+ autoCloseDelay?: number;
436
+ };
437
+ /**
438
+ * An object specifying attributes to assign to the root element of this widget.
439
+ * Set `null` value to attribute to remove it.
440
+ * ...
441
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-elementAttributes)
442
+ */
443
+ elementAttributes?: Record<string, string | null>;
444
+ /**
445
+ * The end date (Time component is zeroed) of this view. Note that in terms of full days,
446
+ * this is exclusive, ie: 2020-01-012 to 2020-01-08 is *seven* days. The end is 00:00:00 on
447
+ * the 8th.
448
+ * ...
449
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-endDate)
450
+ */
451
+ endDate?: Date;
452
+ /**
453
+ * A function, or the name of a function in the ownership hierarchy to filter which events
454
+ * are collected into the day cell data blocks.
455
+ * Return `true` to include the passed event, or a *falsy* value to exclude the event.
456
+ * @param {Scheduler.model.EventModel} event the passed event
457
+ * @returns {boolean}
458
+ */
459
+ eventFilter?: ((event: EventModel) => boolean) | string;
460
+ /**
461
+ * A function, or the name of a function in the ownership hierarchy which you
462
+ * can specify to customize event DOM content.
463
+ * ...
464
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-eventHeaderRenderer)
465
+ * @param {object} detail An object that contains data about the event being rendered
466
+ * @param {CalendarView} detail.view The view rendering the event
467
+ * @param {Scheduler.model.EventModel} detail.eventRecord The event record
468
+ * @param {Scheduler.model.ResourceModel} detail.resourceRecord The resource record
469
+ * @param {object} detail.renderData A data object containing properties that will be used to create the event element
470
+ * @param {object} detail.renderData.style The style property is an object containing style properties for the event element
471
+ * @param {object} detail.renderData.cls The cls property is an object whose property names will be added to the event element if the property value is truthy
472
+ * @param {object} detail.renderData.iconStyle The iconStyle property is an object containing style properties for the icon element if an icon element is to be used
473
+ * @param {object} detail.renderData.iconCls The iconCls property is an object whose property names will be added to the icon element. Initially set from the event record's [iconCls](https://bryntum.com/products/calendar/docs/api/Scheduler/model/EventModel#field-iconCls). Can be mutated by the renderer. If null, or no properties are set, no icon will be rendered
474
+ * @param {string} detail.renderData.eventColor Color to be applied to the event
475
+ * @param {object} detail.renderData.dataset An object which produces the `dataset` of the resulting event bar
476
+ * @param {boolean} detail.renderData.solidBar This is valid for views which create event bars. This is set to `true` by default for all day and interday events so that these appear as a solid block of background color. An eventRenderer may mutate this flag to change in what manner the event bar is colored - as a solid bar of color, or using the foreground color (text and icons) such as the MonthView, the CalendarRow (all day events in a DayView), and OverflowPopups
477
+ * @param {string} detail.renderData.bodyColor When used in a [DayView](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayView), this color is applied to the body of the event element. Note that this must be light enough that the text color (From the SASS variable `$dayview-event-color`) is visible
478
+ * @param {boolean} detail.showBullet If there is no `iconCls`, and the event is not recurring, then by default a "bullet" circular icon is shown if the view's [showBullet](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/CalendarMixin#config-showBullet) if set. Setting this property in an event renderer overrides this behaviour.
479
+ * @returns {DomConfig,DomConfig[],string,void}
480
+ */
481
+ eventHeaderRenderer?: ((detail: {
482
+ view: CalendarView;
483
+ eventRecord: EventModel;
484
+ resourceRecord: ResourceModel;
485
+ renderData: {
486
+ style: object;
487
+ cls: object;
488
+ iconStyle: object;
489
+ iconCls: object;
490
+ eventColor: string;
491
+ dataset: object;
492
+ solidBar: boolean;
493
+ bodyColor: string;
494
+ };
495
+ showBullet: boolean;
496
+ }) => DomConfig | DomConfig[] | string | void) | string;
497
+ /**
498
+ * Configuration to manage event layout class.
499
+ * See [FluidDayLayout](https://bryntum.com/products/calendar/docs/api/Calendar/layout/day/FluidDayLayout) class docs to see all possible configurations.
500
+ * ...
501
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-eventLayout)
502
+ */
503
+ eventLayout?: FluidDayLayoutConfig;
504
+ /**
505
+ * A function, or the name of a function in the ownership hierarchy which you
506
+ * can specify to customize event DOM content.
507
+ * ...
508
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-eventRenderer)
509
+ * @param {object} detail An object that contains data about the event being rendered
510
+ * @param {CalendarView} detail.view The view rendering the event
511
+ * @param {Scheduler.model.EventModel} detail.eventRecord The event record
512
+ * @param {Scheduler.model.ResourceModel} detail.resourceRecord The Resource record
513
+ * @param {object} detail.renderData A data object containing properties that will be used to create the event element
514
+ * @param {object} detail.renderData.style The style property is an object containing style properties for the event element
515
+ * @param {object} detail.renderData.cls The cls property is an object whose property names will be added to the event element if the property value is truthy
516
+ * @param {object} detail.renderData.iconStyle The iconStyle property is an object containing style properties for the icon element if an icon element is to be used
517
+ * @param {object} detail.renderData.iconCls The iconCls property is an object whose property names will be added to the icon element. Initially set from the event record's [iconCls](https://bryntum.com/products/calendar/docs/api/Scheduler/model/EventModel#field-iconCls). Can be mutated by the renderer. If null, or no properties are set, no icon will be rendered
518
+ * @param {string} detail.renderData.eventColor Color to be applied to the event. This may be a CSS color name or a CSS color value in any of the supported CSS color formats such as `#RRGGBB`, `rgb(255, 0, 0)`, or `rgba(255, 0, 0, 0.5)`.
519
+ * @param {string} detail.renderData.eventBackground A CSS background style to be applied to the event. This is not set by default, but can be set by the renderer to provide a background image or gradient for the event bar. This overrides the `eventColor` property if present.
520
+ * @param {string} detail.renderData.textColor A CSS color to be applied to the event text. This is not set by default, but can be set by the renderer to provide a custom color for the event name text in the event bar. This may be a CSS color name or a CSS color value in any of the supported CSS color formats such as `#RRGGBB`, `rgb(255, 0, 0)`, or `rgba(255, 0, 0, 0.5)`.
521
+ * @param {object} detail.renderData.eventInnerStyle The eventInnerStyle property is an object containing style properties for the inner part of the event element, the `.b-cal-event` element.
522
+ * @param {object} detail.renderData.dataset An object which produces the `dataset` of the resulting event bar
523
+ * @param {boolean} detail.renderData.solidBar This is valid for views which create event bars. This is set to `true` by default for all day and interday events so that these appear as a solid block of background color. An eventRenderer may mutate this flag to change in what manner the event bar is colored - as a solid bar of color, or using the foreground color (text and icons) such as the MonthView, the CalendarRow (all day events in a DayView), and OverflowPopups
524
+ * @param {string} detail.renderData.bodyColor When used in a [DayView](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayView), this color is applied to the body of the event element. Note that this must be light enough that the text color (From the SASS variable `$dayview-event-color`) is visible
525
+ * @param {boolean} detail.renderData.showBullet If there is no `iconCls`, and the event is not recurring, then by default a "bullet" circular icon is shown if the view's [showBullet](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/CalendarMixin#config-showBullet) if set. Setting this property in an event renderer overrides this behaviour.
526
+ * @returns {DomConfig,DomConfig[],string,void} The content to be used as the event body.
527
+ */
528
+ eventRenderer?: ((detail: {
529
+ view: CalendarView;
530
+ eventRecord: EventModel;
531
+ resourceRecord: ResourceModel;
532
+ renderData: {
533
+ style: object;
534
+ cls: object;
535
+ iconStyle: object;
536
+ iconCls: object;
537
+ eventColor: string;
538
+ eventBackground: string;
539
+ textColor: string;
540
+ eventInnerStyle: object;
541
+ dataset: object;
542
+ solidBar: boolean;
543
+ bodyColor: string;
544
+ showBullet: boolean;
545
+ };
546
+ }) => DomConfig | DomConfig[] | string | void) | string;
547
+ /**
548
+ * A function which compares events which some views use to decide upon rendering order.
549
+ * ...
550
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-eventSorter)
551
+ * @param {Scheduler.model.EventModel,EventBar} lhs The left side value to conpare
552
+ * @param {Scheduler.model.EventModel,EventBar} rhs The right side value to conpare
553
+ * @returns {number}
554
+ */
555
+ eventSorter?: (lhs: EventModel | EventBar, rhs: EventModel | EventBar) => number;
556
+ /**
557
+ * Number of pixels to reduce the height of events by, to leave a gap between them.
558
+ */
559
+ eventSpacing?: number;
560
+ /**
561
+ * By default, the end date of an all day event is displayed in the UI as
562
+ * the last calendar date on which the event falls. For most end users, this is the
563
+ * expected value.
564
+ * ...
565
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-extendAllDayEndDay)
566
+ */
567
+ extendAllDayEndDay?: boolean;
568
+ extraData?: any;
569
+ /**
570
+ * If this is set to `true`, then when determining which assigned resource of a multi assigned event
571
+ * to use to create the event UI, the first resource which is still selected in the
572
+ * [resourceFilter](https://bryntum.com/products/calendar/docs/api/Calendar/widget/Sidebar#property-resourceFilter) is used.
573
+ * ...
574
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-filterEventResources)
575
+ */
576
+ filterEventResources?: boolean;
577
+ /**
578
+ * When set to `true`, the hours in the day will be sized so that they fit in the available
579
+ * height.
580
+ * ...
581
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-fitHours)
582
+ */
583
+ fitHours?: boolean | {
584
+ minHeight?: number;
585
+ };
586
+ /**
587
+ * By default, reconfiguring the [startDate](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayView#config-startDate) maintains the current duration
588
+ * of the view and moves the [endDate](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayView#config-endDate).
589
+ * ...
590
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-fixedDuration)
591
+ */
592
+ fixedDuration?: boolean;
593
+ /**
594
+ * When this widget is a child of a [Container](https://bryntum.com/products/calendar/docs/api/Core/widget/Container), it will by default be participating in a
595
+ * flexbox layout. This config allows you to set this widget's
596
+ * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.
597
+ * This may be configured as a single number or a `&lt;flex-grow&gt; &lt;flex-shrink&gt; &lt;flex-basis&gt;` format string.
598
+ * numeric-only values are interpreted as the `flex-grow` value.
599
+ */
600
+ flex?: number | string;
601
+ /**
602
+ * Set to `true` to move the widget out of the document flow and position it
603
+ * absolutely in browser viewport space.
604
+ */
605
+ floating?: boolean;
606
+ /**
607
+ * Config object of a footer. May contain a `dock`, `html` and a `cls` property. A footer is not a widget,
608
+ * but rather plain HTML that follows the last element of the panel's body and [strips](https://bryntum.com/products/calendar/docs/api/Core/widget/Panel#config-strips).
609
+ * ...
610
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-footer)
611
+ */
612
+ footer?: {
613
+ dock?: 'top' | 'right' | 'bottom' | 'left' | 'start' | 'end';
614
+ html?: string;
615
+ cls?: string;
616
+ } | string;
617
+ /**
618
+ * A Function (or name of a function in the ownership hierarchy) which returns the
619
+ * [resource record](https://bryntum.com/products/calendar/docs/api/Scheduler/model/ResourceModel) to use to create the UI for an event.
620
+ * ...
621
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-getPrimaryResource)
622
+ * @param {Scheduler.model.EventModel} eventRecord The event from which to extract the primary resource.
623
+ * @returns {Scheduler.model.ResourceModel} The resource to be used to render the event.
624
+ */
625
+ getPrimaryResource?: ((eventRecord: EventModel) => ResourceModel) | string;
626
+ /**
627
+ * A config [object](https://bryntum.com/products/calendar/docs/api/Core/widget/Panel#typedef-PanelHeader) for the panel's header or a string in place of a `title`.
628
+ * ...
629
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-header)
630
+ */
631
+ header?: string | boolean | PanelHeader;
632
+ /**
633
+ * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,
634
+ * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some
635
+ * cases this config is convenient.
636
+ */
637
+ height?: string | number;
638
+ /**
639
+ * Configure with true to make widget initially hidden.
640
+ */
641
+ hidden?: boolean;
642
+ /**
643
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-floating).*
644
+ * ...
645
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-hideAnimation)
646
+ */
647
+ hideAnimation?: boolean | object;
648
+ /**
649
+ * Configure this as `true` to hide day columns which contain no events.
650
+ * ...
651
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-hideEmptyDays)
652
+ */
653
+ hideEmptyDays?: boolean;
654
+ /**
655
+ * Configure this as `true` to hide resource columns which contain no events.
656
+ * ...
657
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-hideEmptyResources)
658
+ */
659
+ hideEmptyResources?: boolean;
660
+ /**
661
+ * Configure as `true` to hide [nonWorkingDays](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/CalendarMixin#config-nonWorkingDays)
662
+ */
663
+ hideNonWorkingDays?: boolean;
664
+ /**
665
+ * By default, when a resource leaf column drops to below 100 pixels wide, the resource avatar
666
+ * hides.
667
+ * ...
668
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-hideResourceNameWhenNarrow)
669
+ */
670
+ hideResourceNameWhenNarrow?: boolean;
671
+ /**
672
+ * Specify `true` to make this container hide when it has no visible children (Either empty
673
+ * or all children hidden).
674
+ * ...
675
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-hideWhenEmpty)
676
+ */
677
+ hideWhenEmpty?: boolean;
678
+ /**
679
+ * The height <strong>in pixels</strong> of one hour cell in a day column.
680
+ * ...
681
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-hourHeight)
682
+ */
683
+ hourHeight?: number;
684
+ /**
685
+ * An array which encapsulates a set of [hourHeight](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayView#config-hourHeight) breakpoints which
686
+ * dictate when subticks - intervening time indicators - are introduced into the DayView's
687
+ * time axis.
688
+ * ...
689
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-hourHeightBreakpoints)
690
+ */
691
+ hourHeightBreakpoints?: number[];
692
+ /**
693
+ * An icon to show before the [title](https://bryntum.com/products/calendar/docs/api/Core/widget/Panel#config-title). Either pass a CSS class as a string, or pass a
694
+ * [DomConfig](https://bryntum.com/products/calendar/docs/api/Core/helper/DomHelper#typedef-DomConfig) object describing an element to represent the icon.
695
+ */
696
+ icon?: string | DomConfig;
697
+ /**
698
+ * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById
699
+ */
700
+ id?: string;
701
+ /**
702
+ * Determines if the widgets read-only state should be controlled by its parent.
703
+ * ...
704
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-ignoreParentReadOnly)
705
+ */
706
+ ignoreParentReadOnly?: boolean;
707
+ /**
708
+ * A millisecond value to which to snap pointer times when clicking or dragging within a day column
709
+ * and when calculating the hovered time for the [ScheduleTooltip](https://bryntum.com/products/calendar/docs/api/Calendar/feature/ScheduleTooltip) tooltip.
710
+ * ...
711
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-increment)
712
+ */
713
+ increment?: string | number;
714
+ /**
715
+ * Convenience setting to align input fields of child widgets. By default, the Field input element is
716
+ * placed immediately following the `label`. If you prefer to have all input fields aligned to the
717
+ * right, set this config to `'end'`.
718
+ * ...
719
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-inputFieldAlign)
720
+ */
721
+ inputFieldAlign?: 'start' | 'end';
722
+ /**
723
+ * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
724
+ */
725
+ insertBefore?: HTMLElement | string;
726
+ /**
727
+ * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
728
+ */
729
+ insertFirst?: HTMLElement | string;
730
+ /**
731
+ * By default, drag-moving an event allows the drag gesture to move the event into other day columns.
732
+ * ...
733
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-interDayDrag)
734
+ */
735
+ interDayDrag?: boolean;
736
+ /**
737
+ * By default, drag-resizing an event (including creating a new event) allows the drag gesture to span multiple day
738
+ * columns to make the event an inter day event.
739
+ * ...
740
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-interDayResize)
741
+ */
742
+ interDayResize?: boolean;
743
+ /**
744
+ * An optional CSS class to add to child items of this container.
745
+ */
746
+ itemCls?: string;
747
+ /**
748
+ * An object containing typed child widget config objects or Widgets. May also be specified
749
+ * as an array.
750
+ * ...
751
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-items)
752
+ */
753
+ items?: Record<string, CalendarContainerItemConfig | MenuItemEntry> | (CalendarContainerItemConfig | MenuItemEntry | Widget)[];
754
+ /**
755
+ * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name
756
+ * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values
757
+ * are the name of the instance method to call when the keystroke is received.
758
+ * ...
759
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-keyMap)
760
+ */
761
+ keyMap?: Record<string, KeyMapConfig>;
762
+ /**
763
+ * Convenience setting to use same label placement on all child widgets.
764
+ * ...
765
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-labelPosition)
766
+ */
767
+ labelPosition?: 'before' | 'above' | 'align-before' | 'auto' | null;
768
+ /**
769
+ * The short name of a helper class which manages rendering and styling of child items.
770
+ * ...
771
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-layout)
772
+ */
773
+ layout?: string | CalendarContainerLayoutConfig;
774
+ /**
775
+ * The CSS style properties to apply to the [contentElement](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#property-contentElement).
776
+ * ...
777
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-layoutStyle)
778
+ */
779
+ layoutStyle?: object;
780
+ /**
781
+ * An array of [child item](https://bryntum.com/products/calendar/docs/api/Core/widget/Container#config-items) *config objects* which is to be converted into
782
+ * instances only when this Container is rendered, rather than eagerly at construct time.
783
+ * ...
784
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-lazyItems)
785
+ */
786
+ lazyItems?: Record<string, CalendarContainerItemConfig> | CalendarContainerItemConfig[] | Widget[];
787
+ /**
788
+ * The listener set for this object.
789
+ * ...
790
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-listeners)
791
+ */
792
+ listeners?: DayResourceViewListeners;
793
+ /**
794
+ * A class translations of which are used for translating this entity.
795
+ * This is often used when translations of an item are defined on its container class.
796
+ * For example:
797
+ * ...
798
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-localeClass)
799
+ */
800
+ localeClass?: typeof Base;
801
+ /**
802
+ * Set to `false` to disable localization of this object.
803
+ */
804
+ localizable?: boolean;
805
+ /**
806
+ * List of properties which values should be translated automatically upon a locale applying.
807
+ * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),
808
+ * you could use 'localeKey' meta configuration.
809
+ * Example:
810
+ * ...
811
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-localizableProperties)
812
+ */
813
+ localizableProperties?: string[];
814
+ /**
815
+ * Widget's margin. This may be configured as a single number or a `TRBL` format string.
816
+ * numeric-only values are interpreted as pixels.
817
+ */
818
+ margin?: number | string;
819
+ /**
820
+ * This config object contains the defaults for the [Mask](https://bryntum.com/products/calendar/docs/api/Core/widget/Mask) created for the
821
+ * [masked](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-masked) config. Any properties specified in the `masked` config will override these
822
+ * values.
823
+ */
824
+ maskDefaults?: MaskConfig;
825
+ /**
826
+ * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a
827
+ * [Mask](https://bryntum.com/products/calendar/docs/api/Core/widget/Mask) config object.
828
+ */
829
+ masked?: boolean | string | MaskConfig;
830
+ /**
831
+ * The maximum height the all day event row is allowed to grow within this view
832
+ * when it is expanded to show all its "all day" events.
833
+ * ...
834
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-maxAllDayHeight)
835
+ */
836
+ maxAllDayHeight?: number | string;
837
+ /**
838
+ * The maximum date to which the `endDate` of this view may be navigated.
839
+ */
840
+ maxDate?: Date | string;
841
+ /**
842
+ * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that
843
+ * like [height](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.
844
+ */
845
+ maxHeight?: string | number;
846
+ /**
847
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-floating).*
848
+ * ...
849
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-maximizeOnMobile)
850
+ */
851
+ maximizeOnMobile?: number | string;
852
+ /**
853
+ * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that
854
+ * like [width](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.
855
+ */
856
+ maxWidth?: string | number;
857
+ /**
858
+ * The minimum date to which the `startDate` of this view may be navigated.
859
+ */
860
+ minDate?: Date | string;
861
+ /**
862
+ * The minimum width of a day column.
863
+ * ...
864
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-minDayWidth)
865
+ */
866
+ minDayWidth?: number | string;
867
+ /**
868
+ * The minimum height to which event blocks in a day cell may shrink. If an event has very
869
+ * short duration, whatever the [hourHeight](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayView#config-hourHeight), and regardless of
870
+ * [timeline zooming](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayView#function-zoomTo), the event block will never drop below this height.
871
+ */
872
+ minEventHeight?: number | string;
873
+ /**
874
+ * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that
875
+ * like [height](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.
876
+ */
877
+ minHeight?: string | number;
878
+ /**
879
+ * The minimum height <strong>in pixels</strong> to allow a zoom request to zoom out to.
880
+ */
881
+ minHourHeight?: number;
882
+ /**
883
+ * The minimum width of a resource column. This must be a non-zero value to ensure that space
884
+ * is allocated even when there are many resources and a narrow viewport.
885
+ * ...
886
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-minResourceWidth)
887
+ */
888
+ minResourceWidth?: number | string;
889
+ /**
890
+ * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that
891
+ * like [width](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.
892
+ */
893
+ minWidth?: string | number;
894
+ /**
895
+ * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)
896
+ * is used to monitor this element for size changes caused by either style manipulation, or by CSS
897
+ * layout.
898
+ * ...
899
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-monitorResize)
900
+ */
901
+ monitorResize?: boolean | {
902
+ immediate?: boolean;
903
+ };
904
+ /**
905
+ * An object containing default config objects which may be referenced by name in the [items](https://bryntum.com/products/calendar/docs/api/Core/widget/Container#config-items)
906
+ * config. For example, a specialized [Menu](https://bryntum.com/products/calendar/docs/api/Core/widget/Menu) subclass may have a `namedItems` default
907
+ * value defined like this:
908
+ * ...
909
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-namedItems)
910
+ */
911
+ namedItems?: Record<string, CalendarContainerItemConfig>;
912
+ /**
913
+ * Text or HTML, or a [DomConfig](https://bryntum.com/products/calendar/docs/api/Core/helper/DomHelper#typedef-DomConfig) block to display when all dates in the range have been filtered out.
914
+ */
915
+ noMatchingDates?: string | DomConfig;
916
+ /**
917
+ * Non-working days as an object where keys are day indices, 0-6 (Sunday-Saturday), and the value is `true`.
918
+ * Defaults to [nonWorkingDays](https://bryntum.com/products/calendar/docs/api/Core/helper/DateHelper#property-nonWorkingDays-static).
919
+ */
920
+ nonWorkingDays?: Record<number, boolean>;
921
+ /**
922
+ * A config object used to create the [OverflowPopup](https://bryntum.com/products/calendar/docs/api/Calendar/widget/OverflowPopup) that the
923
+ * [allDayEvents](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayView#property-allDayEvents) may show when events for one day overflow the available space.
924
+ * ...
925
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-overflowPopup)
926
+ */
927
+ overflowPopup?: OverflowPopupConfig;
928
+ /**
929
+ * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
930
+ * [items](https://bryntum.com/products/calendar/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
931
+ * the owner is <strong>always</strong> the encapsulating Container.
932
+ * ...
933
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-owner)
934
+ */
935
+ owner?: Widget | any;
936
+ /**
937
+ * The class name to add to events which have an end date in the past. Defaults to `'b-past-event'`.
938
+ * ...
939
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-pastEventCls)
940
+ */
941
+ pastEventCls?: string;
942
+ /**
943
+ * Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#property-contentElement), but must
944
+ * not participate in the standard layout of that widget, and must be positioned relatively to that
945
+ * widget's [contentElement](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#property-contentElement).
946
+ * ...
947
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-positioned)
948
+ */
949
+ positioned?: boolean;
950
+ /**
951
+ * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a
952
+ * menu on click etc, since the tooltip would be displayed at the same time.
953
+ */
954
+ preventTooltipOnTouch?: boolean;
955
+ /**
956
+ * The time range around the [date](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/DateRangeOwner#config-date) to display events for.
957
+ * ...
958
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-range)
959
+ */
960
+ range?: string | DurationConfig;
961
+ /**
962
+ * Whether this widget is read-only. This is only valid if the widget is an input
963
+ * field, <strong>or contains input fields at any depth</strong>.
964
+ * ...
965
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-readOnly)
966
+ */
967
+ readOnly?: boolean;
968
+ relayStoreEvents?: boolean;
969
+ /**
970
+ * Either a default `rendition` to apply to all child widgets, or a map of renditions keyed by child widget
971
+ * `type`.
972
+ * ...
973
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-rendition)
974
+ */
975
+ rendition?: string | Record<string, string> | null;
976
+ /**
977
+ * A callback function which an application may provide to filter out resource columns for
978
+ * particular dates.
979
+ * @param {DayCell} context Information about the day column to be created.
980
+ * @returns {boolean} Return `false` to not display a column for the passed resource at the passed date.
981
+ */
982
+ resourceDateFilter?: ((context: DayCell) => boolean) | string;
983
+ /**
984
+ * Path to load resource images from. Used by the [showResourceAvatars](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/CalendarMixin#config-showResourceAvatars) config
985
+ * to create URLs using the resource's
986
+ * [image](https://bryntum.com/products/calendar/docs/api/Scheduler/model/ResourceModel#field-image) or
987
+ * [imageUrl](https://bryntum.com/products/calendar/docs/api/Scheduler/model/ResourceModel#field-imageUrl) fields:
988
+ * ...
989
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-resourceImagePath)
990
+ */
991
+ resourceImagePath?: string;
992
+ /**
993
+ * Specifies the various responsive state objects keyed by their name. Each key (except `'*'`, see below) in
994
+ * this object is a state name (see [responsiveState](https://bryntum.com/products/calendar/docs/api/Core/widget/mixin/Responsive#config-responsiveState)) and its corresponding value is the
995
+ * associated [ResponsiveState](https://bryntum.com/products/calendar/docs/api/Core/widget/mixin/Responsive#typedef-ResponsiveState) object.
996
+ * ...
997
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-responsive)
998
+ */
999
+ responsive?: object;
1000
+ /**
1001
+ * Set to `true` to mark this instance as the default [responsiveTarget](https://bryntum.com/products/calendar/docs/api/Core/widget/mixin/Responsive#config-responsiveTarget) for descendants that do
1002
+ * not specify an explicit [responsiveTarget](https://bryntum.com/products/calendar/docs/api/Core/widget/mixin/Responsive#config-responsiveTarget) of their own.
1003
+ */
1004
+ responsiveRoot?: boolean;
1005
+ /**
1006
+ * The name of the active state of the [responsive](https://bryntum.com/products/calendar/docs/api/Core/widget/mixin/Responsive#config-responsive) config. This is assigned internally
1007
+ * and should not be assigned directly.
1008
+ */
1009
+ responsiveState?: string;
1010
+ /**
1011
+ * The widget whose size and other properties drive this object's responsive behavior. If this config is not
1012
+ * specified, the closest ancestor that specified [responsiveRoot=true](https://bryntum.com/products/calendar/docs/api/Core/widget/mixin/Responsive#config-responsiveRoot) will be
1013
+ * used. If there is no such ancestor, then the instance using this mixin is used.
1014
+ * ...
1015
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-responsiveTarget)
1016
+ */
1017
+ responsiveTarget?: string | Widget;
1018
+ /**
1019
+ * Configure as `true` to have the component display a translucent ripple when its
1020
+ * [focusElement](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the
1021
+ * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.
1022
+ * ...
1023
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-ripple)
1024
+ */
1025
+ ripple?: boolean | {
1026
+ delegate?: string;
1027
+ color?: string;
1028
+ radius?: number;
1029
+ clip?: string;
1030
+ };
1031
+ /**
1032
+ * If you are rendering this widget to a shadow root inside a web component, set this config to the shadowRoot. If not inside a web component, set it to `document.body`
1033
+ */
1034
+ rootElement?: ShadowRoot | HTMLElement;
1035
+ /**
1036
+ * This may be configured as `true` to make the widget's element use the `direction:rtl` style.
1037
+ * ...
1038
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-rtl)
1039
+ */
1040
+ rtl?: boolean;
1041
+ /**
1042
+ * Specifies whether (and optionally in which axes) a Widget may scroll. `true` means this widget may scroll
1043
+ * in both axes. May be an object containing boolean `overflowX` and `overflowY` properties which are
1044
+ * applied to CSS style properties `overflowX` and `overflowY`. If they are boolean, they are translated to
1045
+ * CSS overflow properties thus:
1046
+ * ...
1047
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-scrollable)
1048
+ */
1049
+ scrollable?: boolean | ScrollerConfig | Scroller;
1050
+ /**
1051
+ * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
1052
+ * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
1053
+ */
1054
+ scrollAction?: 'hide' | 'realign' | null;
1055
+ /**
1056
+ * A button configuration object to use for the automatically created mode selector button for this mode.
1057
+ */
1058
+ selectorButton?: ButtonConfig;
1059
+ /**
1060
+ * A menu item configuration object to use for the automatically created mode selector menu item for this mode.
1061
+ */
1062
+ selectorMenuItem?: MenuItemConfig;
1063
+ /**
1064
+ * The time range to move by when [next](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/DateRangeOwner#function-next) or [previous](#Calendar/widget/mixin/DateRangeOwner#function-previous) is called.
1065
+ * ...
1066
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-shiftIncrement)
1067
+ */
1068
+ shiftIncrement?: string | DurationConfig;
1069
+ /**
1070
+ * A [DateHelper](https://bryntum.com/products/calendar/docs/api/Core/helper/DateHelper) format string/function to use to create date output for
1071
+ * abbreviated view descriptions.
1072
+ * @param {Date} date The date to format.
1073
+ * @returns {string} The formatted date.
1074
+ */
1075
+ shortDateFormat?: string | ((date: Date) => string);
1076
+ /**
1077
+ * A [DateHelper](https://bryntum.com/products/calendar/docs/api/Core/helper/DateHelper) format string/function to use to create date and time output for
1078
+ * abbreviated view descriptions.
1079
+ * @param {Date} date The date to format.
1080
+ * @returns {string} The formatted date.
1081
+ */
1082
+ shortDateTimeFormat?: string | ((date: Date) => string);
1083
+ /**
1084
+ * The class name to add to events which have duration less than or equal to
1085
+ * [shortEventDuration](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/CalendarMixin#config-shortEventDuration).
1086
+ */
1087
+ shortEventCls?: string;
1088
+ /**
1089
+ * The duration at which below and equal to this value, an event's encapsulating element gets
1090
+ * the [shortEventCls](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/CalendarMixin#config-shortEventCls) added to it so that small event bars can have style rearrangements.
1091
+ * ...
1092
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-shortEventDuration)
1093
+ */
1094
+ shortEventDuration?: string | number;
1095
+ /**
1096
+ * Shows an all day header above the main schedule for All Day events.
1097
+ * Set to `false` to not show all day, or multi-day events in an all day header, but
1098
+ * to have them showing wrapping through the day cells.
1099
+ */
1100
+ showAllDayHeader?: boolean;
1101
+ /**
1102
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-floating).*
1103
+ * ...
1104
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-showAnimation)
1105
+ */
1106
+ showAnimation?: boolean | object;
1107
+ /**
1108
+ * By default, resource avatars are shown in the resource header if there is horizontal space.
1109
+ * Configure this as `false` to inhibit this.
1110
+ */
1111
+ showAvatars?: boolean;
1112
+ /**
1113
+ * <strong>Not applicable in a `DayView`</strong>
1114
+ * ...
1115
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-showBullet)
1116
+ * @param {boolean} bar This is `false` by default. Set this to `true` in modes where a solid event bar should show a bullet icon
1117
+ * @param {boolean} noBar This is `true` by default. Events with no background colour, use this to show the event's defined `eventColor`
1118
+ */
1119
+ showBullet?: boolean | {
1120
+ bar?: boolean;
1121
+ noBar?: boolean;
1122
+ };
1123
+ /**
1124
+ * By default <b>today's</b> date shows a current time line to indicate the current time. This
1125
+ * line is confined to the day cell for <b>today</b>.
1126
+ * ...
1127
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-showCurrentTime)
1128
+ */
1129
+ showCurrentTime?: boolean | {
1130
+ fullWidth?: boolean;
1131
+ showTime?: boolean;
1132
+ onTop?: boolean;
1133
+ };
1134
+ /**
1135
+ * Configure as `true` to show avatars of the resources (calendars) alongside
1136
+ * resource names in resource column headers.
1137
+ * ...
1138
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-showHeaderAvatars)
1139
+ */
1140
+ showHeaderAvatars?: boolean | 'last';
1141
+ /**
1142
+ * Configure as `true` to show avatars of the assigned resources (calendars) at the
1143
+ * start of the event bar.
1144
+ * ...
1145
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-showResourceAvatars)
1146
+ */
1147
+ showResourceAvatars?: boolean | string;
1148
+ /**
1149
+ * Configure as `false` to hide the start time normally shown at the top of the events.
1150
+ * ...
1151
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-showTime)
1152
+ */
1153
+ showTime?: boolean | Record<('startTime' | 'endTime' | 'duration'), boolean | string | Function>;
1154
+ /**
1155
+ * Set to `false` to not show the tooltip when this widget is [disabled](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#property-disabled)
1156
+ */
1157
+ showTooltipWhenDisabled?: boolean;
1158
+ /**
1159
+ * By default, the most granular time tick level in the DayView's time axis is five minutes.
1160
+ * ...
1161
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-sixMinuteTicks)
1162
+ */
1163
+ sixMinuteTicks?: boolean;
1164
+ /**
1165
+ * Affects drag drop and moving of events with regard to the [increment](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayView#property-increment)
1166
+ * ...
1167
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-snapRelativeToEventStartDate)
1168
+ */
1169
+ snapRelativeToEventStartDate?: boolean;
1170
+ /**
1171
+ * Programmatic control over how many columns to span when used in a grid layout.
1172
+ */
1173
+ span?: number;
1174
+ /**
1175
+ * Set to `true` to stack multi-day events within each cell in the order of their start time.
1176
+ * ...
1177
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-stackMultiDayEvents)
1178
+ */
1179
+ stackMultiDayEvents?: boolean;
1180
+ /**
1181
+ * The start date (Time component is zeroed) of this view.
1182
+ */
1183
+ startDate?: Date;
1184
+ /**
1185
+ * This value can be one of the following:
1186
+ * ...
1187
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-stateful)
1188
+ */
1189
+ stateful?: boolean | object | string[];
1190
+ /**
1191
+ * The events that, when fired by this component, should trigger it to save its state by calling
1192
+ * [saveState](https://bryntum.com/products/calendar/docs/api/Core/mixin/State#function-saveState).
1193
+ * ...
1194
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-statefulEvents)
1195
+ */
1196
+ statefulEvents?: object | string[];
1197
+ /**
1198
+ * The key to use when saving this object's state in the [stateProvider](https://bryntum.com/products/calendar/docs/api/Core/mixin/State#config-stateProvider). If this config is
1199
+ * not assigned, and [stateful](https://bryntum.com/products/calendar/docs/api/Core/mixin/State#config-stateful) is not set to `false`, the [id](#Core/widget/Widget#config-id)
1200
+ * (if explicitly specified) will be used as the `stateId`.
1201
+ * ...
1202
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-stateId)
1203
+ */
1204
+ stateId?: string;
1205
+ /**
1206
+ * The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/calendar/docs/api/Core/mixin/State#property-state). By default, `state`
1207
+ * will be saved using the [default state provider](https://bryntum.com/products/calendar/docs/api/Core/state/StateProvider#property-instance-static).
1208
+ * ...
1209
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-stateProvider)
1210
+ */
1211
+ stateProvider?: StateProvider;
1212
+ /**
1213
+ * Specify `true` to match fields by their `name` property only when assigning a [record](https://bryntum.com/products/calendar/docs/api/Core/widget/Container#config-record),
1214
+ * without falling back to `ref`.
1215
+ */
1216
+ strictRecordMapping?: boolean;
1217
+ /**
1218
+ * An object containing widgets keyed by name. By default (when no `type` is given), strips are
1219
+ * [toolbars](https://bryntum.com/products/calendar/docs/api/Core/widget/Toolbar). If you want to pass an array, you can use
1220
+ * the toolbar's [items](https://bryntum.com/products/calendar/docs/api/Core/widget/Container#config-items).
1221
+ * ...
1222
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-strips)
1223
+ */
1224
+ strips?: Record<string, CalendarContainerItemConfig>;
1225
+ /**
1226
+ * The converse of [syncViewDate](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/CalendarMixin#property-syncViewDate)
1227
+ * ...
1228
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-syncCalendarDate)
1229
+ */
1230
+ syncCalendarDate?: boolean;
1231
+ /**
1232
+ * The converse of [syncCalendarDate](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/CalendarMixin#property-syncCalendarDate)
1233
+ * ...
1234
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-syncViewDate)
1235
+ */
1236
+ syncViewDate?: boolean;
1237
+ /**
1238
+ * A configuration for the [tab](https://bryntum.com/products/calendar/docs/api/Core/widget/Tab) created for this widget when it is placed in a
1239
+ * [TabPanel](https://bryntum.com/products/calendar/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
1240
+ * this widget:
1241
+ * ...
1242
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-tab)
1243
+ */
1244
+ tab?: boolean | TabConfig;
1245
+ /**
1246
+ * When this container is used as a tab in a TabPanel, these items are added to the
1247
+ * [TabBar](https://bryntum.com/products/calendar/docs/api/Core/widget/TabBar) when this container is the active tab.
1248
+ * ...
1249
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-tabBarItems)
1250
+ */
1251
+ tabBarItems?: ToolbarItems[] | Widget[];
1252
+ /**
1253
+ * The tag name of this Widget's root element
1254
+ */
1255
+ tag?: string;
1256
+ /**
1257
+ * A Config object representing the configuration of a [Toolbar](https://bryntum.com/products/calendar/docs/api/Core/widget/Toolbar),
1258
+ * or array of config objects representing the child items of a Toolbar.
1259
+ * This creates a toolbar docked to the top of the panel immediately below the header.
1260
+ * ...
1261
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-tbar)
1262
+ */
1263
+ tbar?: (CalendarContainerItemConfig | string)[] | ToolbarConfig | PagingToolbarConfig | null;
1264
+ /**
1265
+ * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.
1266
+ * ...
1267
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-textAlign)
1268
+ */
1269
+ textAlign?: 'left' | 'center' | 'right' | 'start' | 'end';
1270
+ /**
1271
+ * A function, or name of a function which yields a [DomConfig](https://bryntum.com/products/calendar/docs/api/Core/helper/DomHelper#typedef-DomConfig) object to use as a tick background element
1272
+ * for the tick context passed.
1273
+ * ...
1274
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-tickRenderer)
1275
+ * @param {object} tickContext An object containing the context for the tick being rendered.
1276
+ * @param {Date} tickContext.startTime The start time of the tick.
1277
+ * @param {Date} tickContext.endTime The end time of the tick.
1278
+ * @param {Scheduler.model.EventModel[]} tickContext.events The events that visually intersect with the tick.
1279
+ * @param {number} tickContext.tickIndex The zero-based overall tick index.
1280
+ * @param {number} tickContext.subtickIndex The zero-based subtick index *within* the hour.
1281
+ * @param {number} tickContext.subtickCount The total number of visible subticks in an hour.
1282
+ * @param {Scheduler.model.ResourceModel} tickContext.resourceRecord *If* this view is a resource view, the resource record.
1283
+ * @returns {DomConfig} The DOM config object to use for the tick.
1284
+ */
1285
+ tickRenderer?: ((tickContext: {
1286
+ startTime: Date;
1287
+ endTime: Date;
1288
+ events: EventModel[];
1289
+ tickIndex: number;
1290
+ subtickIndex: number;
1291
+ subtickCount: number;
1292
+ resourceRecord: ResourceModel;
1293
+ }) => DomConfig) | string;
1294
+ /**
1295
+ * A [DateHelper](https://bryntum.com/products/calendar/docs/api/Core/helper/DateHelper) format string/function used to format the time displayed in the
1296
+ * time axis at the left side of the view.
1297
+ * @param {Date} date The date to format.
1298
+ * @returns {string} The formatted date.
1299
+ */
1300
+ timeAxisTimeFormat?: string | ((date: Date) => string);
1301
+ /**
1302
+ * A [DateHelper](https://bryntum.com/products/calendar/docs/api/Core/helper/DateHelper) format string/function used to format the time displayed in events
1303
+ * @param {Date} date The date to format.
1304
+ * @returns {string} The formatted date.
1305
+ */
1306
+ timeFormat?: string | ((date: Date) => string);
1307
+ /**
1308
+ * The type of rounding to apply when calculating a date from a pointer position in a day
1309
+ * column.
1310
+ * ...
1311
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-timeSnapType)
1312
+ */
1313
+ timeSnapType?: 'round' | 'ceil' | 'floor' | null;
1314
+ /**
1315
+ * A title to display in the header or owning TabPanel. Causes creation and docking of a header
1316
+ * to the top if no header is configured.
1317
+ * ...
1318
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-title)
1319
+ */
1320
+ title?: string;
1321
+ /**
1322
+ * The [tools](https://bryntum.com/products/calendar/docs/api/Core/widget/Tool) to add either before or after the `title` in the Panel header. Each
1323
+ * property name is the reference by which an instantiated tool may be retrieved from the live
1324
+ * `[tools](https://bryntum.com/products/calendar/docs/api/Core/widget/mixin/Toolable#property-tools)` property.
1325
+ * ...
1326
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-tools)
1327
+ */
1328
+ tools?: Record<string, ToolConfig> | null;
1329
+ /**
1330
+ * Tooltip for the widget, either as a string or as a Tooltip config object.
1331
+ * ...
1332
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-tooltip)
1333
+ */
1334
+ tooltip?: string | TooltipConfig | null;
1335
+ /**
1336
+ * By default, tabbing within a Panel is not contained, ie you can TAB out of the Panel
1337
+ * forwards or backwards.
1338
+ * Configure this as `true` to disallow tabbing out of the Panel, and make tabbing circular within this Panel.
1339
+ */
1340
+ trapFocus?: boolean;
1341
+ type?: 'dayresource';
1342
+ /**
1343
+ * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
1344
+ * as a space separated string, an array of strings, or as an object in which property names with truthy
1345
+ * values are used as the class names.
1346
+ * ...
1347
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-ui)
1348
+ */
1349
+ ui?: 'plain' | 'toolbar' | string | object;
1350
+ /**
1351
+ * Either the start hour of the day, or a *24 hour* `HH:MM` string denoting the initially visible start
1352
+ * time of the day. Defaults to 7am.
1353
+ * ...
1354
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-visibleStartTime)
1355
+ */
1356
+ visibleStartTime?: string | number | {
1357
+ time?: string | number;
1358
+ block?: 'start' | 'end' | 'center' | 'nearest';
1359
+ edgeOffset?: number;
1360
+ animate?: object | boolean | number;
1361
+ duration?: number;
1362
+ easing?: string;
1363
+ } | null;
1364
+ /**
1365
+ * The week start day, 0 meaning Sunday, 6 meaning Saturday.
1366
+ * Defaults to [weekStartDay](https://bryntum.com/products/calendar/docs/api/Core/helper/DateHelper#property-weekStartDay-static).
1367
+ */
1368
+ weekStartDay?: number;
1369
+ /**
1370
+ * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/calendar/docs/api/Core/widget/Container).
1371
+ * Higher weights go further down.
1372
+ */
1373
+ weight?: number;
1374
+ /**
1375
+ * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which
1376
+ * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases
1377
+ * this config is convenient.
1378
+ */
1379
+ width?: string | number;
1380
+ /**
1381
+ * The x position for the widget.
1382
+ * ...
1383
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-x)
1384
+ */
1385
+ x?: number;
1386
+ /**
1387
+ * The y position for the widget.
1388
+ * ...
1389
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-y)
1390
+ */
1391
+ y?: number;
1392
+ /**
1393
+ * You can zoom in and out on the time axis using CTRL-key + mouse wheel
1394
+ * on mouse-based devices or pinch-zoom on touch devices.
1395
+ * See also the [hourHeightBreakpoints](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayView#config-hourHeightBreakpoints) config option.
1396
+ * ...
1397
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#config-zoomOnMouseWheel)
1398
+ */
1399
+ zoomOnMouseWheel?: boolean | number;
1400
+ };
1401
+ export declare class BryntumDayResourceViewComponent implements OnInit, OnDestroy {
1402
+ static instanceClass: typeof DayResourceView;
1403
+ static instanceName: string;
1404
+ private static bryntumEvents;
1405
+ private static bryntumFeatureNames;
1406
+ private static bryntumConfigs;
1407
+ private static bryntumConfigsOnly;
1408
+ private static bryntumProps;
1409
+ private elementRef;
1410
+ instance: DayResourceView;
1411
+ private bryntumConfig;
1412
+ constructor(element: ElementRef);
1413
+ actionButtons: ActionButtonsConfig[] | Record<string, ActionButtonsConfig>;
1414
+ activationKey: string;
1415
+ adopt: HTMLElement | string;
1416
+ align: AlignSpec | string;
1417
+ allDayEvents: CalendarRow | CalendarRowConfig | null;
1418
+ anchor: boolean;
1419
+ ariaDescription: string;
1420
+ ariaLabel: string;
1421
+ bbar: (CalendarContainerItemConfig | string)[] | ToolbarConfig | PagingToolbarConfig | null;
1422
+ bodyCls: string | object;
1423
+ bubbleEvents: object;
1424
+ centered: boolean;
1425
+ collapsible: boolean | PanelCollapserConfig | PanelCollapserOverlayConfig;
1426
+ color: string;
1427
+ columnHeaderRenderer: ((cellData: DayCellWithEvents) => string | object) | string;
1428
+ config: object;
1429
+ constrainTo: HTMLElement | Widget | Rectangle;
1430
+ contentElementCls: string | object;
1431
+ currentTimeIndicatorRenderer: (() => DomConfig) | string;
1432
+ dataField: string;
1433
+ dayCellRenderer: ((domConfig: {
1434
+ className: object;
1435
+ style: object;
1436
+ dataset: object;
1437
+ }, children: DomConfig[], cellData: DayCell) => string) | string;
1438
+ dayHeaderRenderer: ((headerDomConfig: {
1439
+ className: object;
1440
+ style: object;
1441
+ dataset: object;
1442
+ children: DomConfig[];
1443
+ }, cellData: DayCell) => string) | string;
1444
+ dayNameFormat: string | ((date: Date) => string);
1445
+ dayStartShift: string | number;
1446
+ defaultBindProperty: string;
1447
+ defaultFocus: ((widget: Widget) => boolean) | string;
1448
+ defaults: CalendarContainerItemConfig;
1449
+ descriptionRenderer: (view: Widget) => string;
1450
+ detectCSSCompatibilityIssues: boolean;
1451
+ dock: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
1452
+ draggable: boolean | {
1453
+ handleSelector?: string;
1454
+ };
1455
+ drawer: boolean | {
1456
+ side?: 'start' | 'left' | 'end' | 'right' | 'top' | 'bottom';
1457
+ size?: string | number;
1458
+ inline?: boolean;
1459
+ autoClose: {
1460
+ mousedown?: boolean | string;
1461
+ focusout?: boolean | string;
1462
+ mouseout?: string;
1463
+ };
1464
+ autoCloseDelay?: number;
1465
+ };
1466
+ elementAttributes: Record<string, string | null>;
1467
+ endDate: Date;
1468
+ eventFilter: ((event: EventModel) => boolean) | string;
1469
+ eventHeaderRenderer: ((detail: {
1470
+ view: CalendarView;
1471
+ eventRecord: EventModel;
1472
+ resourceRecord: ResourceModel;
1473
+ renderData: {
1474
+ style: object;
1475
+ cls: object;
1476
+ iconStyle: object;
1477
+ iconCls: object;
1478
+ eventColor: string;
1479
+ dataset: object;
1480
+ solidBar: boolean;
1481
+ bodyColor: string;
1482
+ };
1483
+ showBullet: boolean;
1484
+ }) => DomConfig | DomConfig[] | string | void) | string;
1485
+ eventLayout: FluidDayLayoutConfig;
1486
+ eventRenderer: ((detail: {
1487
+ view: CalendarView;
1488
+ eventRecord: EventModel;
1489
+ resourceRecord: ResourceModel;
1490
+ renderData: {
1491
+ style: object;
1492
+ cls: object;
1493
+ iconStyle: object;
1494
+ iconCls: object;
1495
+ eventColor: string;
1496
+ eventBackground: string;
1497
+ textColor: string;
1498
+ eventInnerStyle: object;
1499
+ dataset: object;
1500
+ solidBar: boolean;
1501
+ bodyColor: string;
1502
+ showBullet: boolean;
1503
+ };
1504
+ }) => DomConfig | DomConfig[] | string | void) | string;
1505
+ eventSorter: (lhs: EventModel | EventBar, rhs: EventModel | EventBar) => number;
1506
+ eventSpacing: number;
1507
+ floating: boolean;
1508
+ footer: {
1509
+ dock?: 'top' | 'right' | 'bottom' | 'left' | 'start' | 'end';
1510
+ html?: string;
1511
+ cls?: string;
1512
+ } | string;
1513
+ getPrimaryResource: ((eventRecord: EventModel) => ResourceModel) | string;
1514
+ header: string | boolean | PanelHeader;
1515
+ hideAnimation: boolean | object;
1516
+ hideWhenEmpty: boolean;
1517
+ icon: string | DomConfig;
1518
+ ignoreParentReadOnly: boolean;
1519
+ itemCls: string;
1520
+ lazyItems: Record<string, CalendarContainerItemConfig> | CalendarContainerItemConfig[] | Widget[];
1521
+ listeners: DayResourceViewListeners;
1522
+ localeClass: typeof Base;
1523
+ localizable: boolean;
1524
+ localizableProperties: string[];
1525
+ maskDefaults: MaskConfig;
1526
+ masked: boolean | string | MaskConfig;
1527
+ maxAllDayHeight: number | string;
1528
+ monitorResize: boolean | {
1529
+ immediate?: boolean;
1530
+ };
1531
+ namedItems: Record<string, CalendarContainerItemConfig>;
1532
+ overflowPopup: OverflowPopupConfig;
1533
+ owner: Widget | any;
1534
+ positioned: boolean;
1535
+ preventTooltipOnTouch: boolean;
1536
+ relayStoreEvents: boolean;
1537
+ resourceImagePath: string;
1538
+ responsive: object;
1539
+ responsiveRoot: boolean;
1540
+ responsiveState: string;
1541
+ responsiveTarget: string | Widget;
1542
+ ripple: boolean | {
1543
+ delegate?: string;
1544
+ color?: string;
1545
+ radius?: number;
1546
+ clip?: string;
1547
+ };
1548
+ rootElement: ShadowRoot | HTMLElement;
1549
+ scrollAction: 'hide' | 'realign' | null;
1550
+ selectorButton: ButtonConfig;
1551
+ selectorMenuItem: MenuItemConfig;
1552
+ shortEventCls: string;
1553
+ shortEventDuration: string | number;
1554
+ showAllDayHeader: boolean;
1555
+ showAnimation: boolean | object;
1556
+ showBullet: boolean | {
1557
+ bar?: boolean;
1558
+ noBar?: boolean;
1559
+ };
1560
+ showHeaderAvatars: boolean | 'last';
1561
+ showResourceAvatars: boolean | string;
1562
+ showTooltipWhenDisabled: boolean;
1563
+ startDate: Date;
1564
+ stateful: boolean | object | string[];
1565
+ statefulEvents: object | string[];
1566
+ stateId: string;
1567
+ stateProvider: StateProvider;
1568
+ strips: Record<string, CalendarContainerItemConfig>;
1569
+ tab: boolean | TabConfig;
1570
+ tabBarItems: ToolbarItems[] | Widget[];
1571
+ tag: string;
1572
+ tbar: (CalendarContainerItemConfig | string)[] | ToolbarConfig | PagingToolbarConfig | null;
1573
+ textAlign: 'left' | 'center' | 'right' | 'start' | 'end';
1574
+ tickRenderer: ((tickContext: {
1575
+ startTime: Date;
1576
+ endTime: Date;
1577
+ events: EventModel[];
1578
+ tickIndex: number;
1579
+ subtickIndex: number;
1580
+ subtickCount: number;
1581
+ resourceRecord: ResourceModel;
1582
+ }) => DomConfig) | string;
1583
+ timeAxisTimeFormat: string | ((date: Date) => string);
1584
+ timeFormat: string | ((date: Date) => string);
1585
+ trapFocus: boolean;
1586
+ type: 'dayresource';
1587
+ ui: 'plain' | 'toolbar' | string | object;
1588
+ visibleStartTime: string | number | {
1589
+ time?: string | number;
1590
+ block?: 'start' | 'end' | 'center' | 'nearest';
1591
+ edgeOffset?: number;
1592
+ animate?: object | boolean | number;
1593
+ duration?: number;
1594
+ easing?: string;
1595
+ } | null;
1596
+ weekStartDay: number;
1597
+ weight: number;
1598
+ zoomOnMouseWheel: boolean | number;
1599
+ alignSelf: string;
1600
+ allowDragCreate: boolean;
1601
+ allowDragMove: boolean;
1602
+ allowDragResize: boolean;
1603
+ allowZoomUnderflow: boolean;
1604
+ animateTimeShift: boolean;
1605
+ appendTo: HTMLElement | string;
1606
+ autoCreate: {
1607
+ gesture?: string;
1608
+ newName?: Function | string;
1609
+ step?: string;
1610
+ snapType?: 'round' | 'ceil' | 'floor';
1611
+ duration?: string;
1612
+ startHour?: number;
1613
+ } | string | boolean;
1614
+ callOnFunctions: boolean;
1615
+ catchEventHandlerExceptions: boolean;
1616
+ cls: string | object;
1617
+ collapsed: boolean;
1618
+ column: number;
1619
+ compactHeader: boolean;
1620
+ coreHours: object | ((date: Date) => object[]) | string;
1621
+ dashedSubticks: boolean;
1622
+ dataset: object | Record<string, string>;
1623
+ date: Date;
1624
+ dateFilter: ((context: DayCell) => boolean) | string;
1625
+ dateFormat: string | ((date: Date) => string);
1626
+ dateSeparator: string;
1627
+ dayEndTime: string | number;
1628
+ dayStartTime: string | number;
1629
+ defaultScrollOptions: BryntumScrollOptions;
1630
+ descriptionFormat: string | string[] | boolean[] | ((date: Date) => string) | Function[];
1631
+ disabled: boolean | 'inert';
1632
+ dragUnit: string;
1633
+ extendAllDayEndDay: boolean;
1634
+ extraData: any;
1635
+ filterEventResources: boolean;
1636
+ fitHours: boolean | {
1637
+ minHeight?: number;
1638
+ };
1639
+ fixedDuration: boolean;
1640
+ flex: number | string;
1641
+ height: number | string;
1642
+ hidden: boolean;
1643
+ hideEmptyDays: boolean;
1644
+ hideEmptyResources: boolean;
1645
+ hideNonWorkingDays: boolean;
1646
+ hideResourceNameWhenNarrow: boolean;
1647
+ hourHeight: number;
1648
+ hourHeightBreakpoints: number[];
1649
+ id: string;
1650
+ increment: string | number;
1651
+ inputFieldAlign: 'start' | 'end';
1652
+ insertBefore: HTMLElement | string;
1653
+ insertFirst: HTMLElement | string;
1654
+ interDayDrag: boolean;
1655
+ interDayResize: boolean;
1656
+ items: (CalendarContainerItemConfig | MenuItemConfig | Widget)[] | Record<string, CalendarContainerItemConfig | MenuItemConfig> | Widget[] | Record<string, CalendarContainerItemConfig | MenuItemEntry> | (CalendarContainerItemConfig | MenuItemEntry | Widget)[];
1657
+ keyMap: Record<string, KeyMapConfig>;
1658
+ labelPosition: 'before' | 'above' | 'align-before' | 'auto' | null;
1659
+ layout: Layout | string | CalendarContainerLayoutConfig;
1660
+ layoutStyle: object;
1661
+ margin: number | string;
1662
+ maxDate: Date | string;
1663
+ maxHeight: string | number;
1664
+ maximizeOnMobile: number | string;
1665
+ maxWidth: string | number;
1666
+ minDate: Date | string;
1667
+ minDayWidth: number | string;
1668
+ minEventHeight: number | string;
1669
+ minHeight: string | number;
1670
+ minHourHeight: number;
1671
+ minResourceWidth: number | string;
1672
+ minWidth: string | number;
1673
+ noMatchingDates: string | DomConfig;
1674
+ nonWorkingDays: Record<number, boolean>;
1675
+ pastEventCls: string;
1676
+ range: string | DurationConfig;
1677
+ readOnly: boolean;
1678
+ rendition: string | Record<string, string> | null;
1679
+ resourceDateFilter: ((context: DayCell) => boolean) | string;
1680
+ rtl: boolean;
1681
+ scrollable: Scroller | boolean | ScrollerConfig;
1682
+ shiftIncrement: string | DurationConfig;
1683
+ shortDateFormat: string | ((date: Date) => string);
1684
+ shortDateTimeFormat: string | ((date: Date) => string);
1685
+ showAvatars: boolean;
1686
+ showCurrentTime: boolean | {
1687
+ fullWidth?: boolean;
1688
+ showTime?: boolean;
1689
+ onTop?: boolean;
1690
+ };
1691
+ showTime: boolean | Record<('startTime' | 'endTime' | 'duration'), boolean | string | Function>;
1692
+ sixMinuteTicks: boolean;
1693
+ snapRelativeToEventStartDate: boolean;
1694
+ span: number;
1695
+ stackMultiDayEvents: boolean;
1696
+ strictRecordMapping: boolean;
1697
+ syncCalendarDate: boolean;
1698
+ syncViewDate: boolean;
1699
+ timeSnapType: 'round' | 'ceil' | 'floor' | null;
1700
+ title: string;
1701
+ tools: Record<string, Tool | ToolConfig> | null | Record<string, Tool> | Record<string, ToolConfig>;
1702
+ tooltip: string | TooltipConfig | null;
1703
+ width: number | string;
1704
+ x: number;
1705
+ y: number;
1706
+ anchorSize: number[];
1707
+ dayCellCls: string;
1708
+ firstVisibleCell: HTMLElement;
1709
+ firstVisibleDate: Date;
1710
+ focusVisible: boolean;
1711
+ hasChanges: boolean;
1712
+ horizontalScroller: Scroller;
1713
+ isSettingValues: boolean;
1714
+ isValid: boolean;
1715
+ lastVisibleCell: HTMLElement;
1716
+ lastVisibleDate: Date;
1717
+ parent: Widget;
1718
+ record: Model;
1719
+ state: any;
1720
+ values: Record<string, object>;
1721
+ /**
1722
+ * This event fires whenever the [autoCreate gesture](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/CalendarMixin#config-autoCreate) is detected
1723
+ * and also when a [drag-create](https://bryntum.com/products/calendar/docs/api/Calendar/feature/CalendarDrag) gesture is detected.
1724
+ * ...
1725
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#event-beforeAutoCreate)
1726
+ * @param {object} event Event object
1727
+ * @param {Event} event.domEvent The DOM event which initiated the creation.
1728
+ * @param {Date} event.date *DEPRECATED in favour of `startDate`.* The starting time of the event to be created. If this is in a `DayView`, this will be snapped according to the specification in [autoCreate](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/CalendarMixin#config-autoCreate)
1729
+ * @param {Date} event.startDate The starting time of the event to be created. If this is in a `DayView`, this will be snapped according to the specification in [autoCreate](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/CalendarMixin#config-autoCreate)
1730
+ * @param {Date} event.endDate The ending time of the event to be created.
1731
+ * @param {Scheduler.model.ResourceModel} event.resourceRecord The resource if the UI includes a resource.
1732
+ * @param {CalendarView} event.view This view.
1733
+ */
1734
+ onBeforeAutoCreate: any;
1735
+ /**
1736
+ * Triggered before a view's orientating date changes.
1737
+ * ...
1738
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#event-beforeChangeDate)
1739
+ * @param {object} event Event object
1740
+ * @param {Date} event.oldDate The current orientating date of this view.
1741
+ * @param {Date} event.date The new date to which this view is to be orientated.
1742
+ */
1743
+ onBeforeChangeDate: any;
1744
+ /**
1745
+ * Fires before an object is destroyed.
1746
+ * @param {object} event Event object
1747
+ * @param {Core.Base} event.source The Object that is being destroyed.
1748
+ */
1749
+ onBeforeDestroy: any;
1750
+ /**
1751
+ * Triggered before a widget is hidden. Return `false` to prevent the action.
1752
+ * @param {object} event Event object
1753
+ * @param {Core.widget.Widget} event.source The widget being hidden.
1754
+ */
1755
+ onBeforeHide: any;
1756
+ /**
1757
+ * Triggered before a new [responsiveState](https://bryntum.com/products/calendar/docs/api/Core/widget/mixin/Responsive#config-responsiveState) is applied.
1758
+ * @param {object} event Event object
1759
+ * @param {Core.widget.Widget} event.source The widget whose `responsiveState` is to be changed
1760
+ * @param {string} event.state The new value for the widget's `responsiveState`
1761
+ * @param {string} event.oldState The previous value for the widget's `responsiveState`
1762
+ */
1763
+ onBeforeResponsiveStateChange: any;
1764
+ /**
1765
+ * Fired before this container will load record values into its child fields. This is useful if you
1766
+ * want to modify the UI before data is loaded (e.g. set some input field to be readonly)
1767
+ * @param {object} event Event object
1768
+ * @param {Core.widget.Container} event.source The container
1769
+ * @param {Core.data.Model} event.record The record
1770
+ */
1771
+ onBeforeSetRecord: any;
1772
+ /**
1773
+ * Triggered before a widget is shown. Return `false` to prevent the action.
1774
+ * @param {object} event Event object
1775
+ * @param {Core.widget.Widget,any} event.source The widget being shown
1776
+ */
1777
+ onBeforeShow: any;
1778
+ /**
1779
+ * Fired before state is applied to the source. Allows editing the state object or preventing the operation.
1780
+ * @param {object} event Event object
1781
+ * @param {any} event.state State object config
1782
+ */
1783
+ onBeforeStateApply: any;
1784
+ /**
1785
+ * Fired before state is saved by the StateProvider. Allows editing the state object or preventing the operation.
1786
+ * @param {object} event Event object
1787
+ * @param {any} event.state State object config
1788
+ */
1789
+ onBeforeStateSave: any;
1790
+ /**
1791
+ * Fires when any other event is fired from the object.
1792
+ * ...
1793
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#event-catchAll)
1794
+ * @param {object} event Event object
1795
+ * @param {{[key: string]: any, type: string}} event.event The Object that contains event details
1796
+ * @param {string} event.event.type The type of the event which is caught by the listener
1797
+ */
1798
+ onCatchAll: any;
1799
+ /**
1800
+ * Fired when a new set of events has been gathered for this view's date range.
1801
+ * @param {object} event Event object
1802
+ * @param {Map<any, any>} event.cellMap The map of date keys to [day cell](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/DayCellCollecter#typedef-DayCell) data blocks.
1803
+ */
1804
+ onCellMapPopulated: any;
1805
+ /**
1806
+ * Fires when a Panel is collapsed using the [collapsible](https://bryntum.com/products/calendar/docs/api/Core/widget/Panel#config-collapsible) setting.
1807
+ * @param {object} event Event object
1808
+ * @param {Core.widget.Panel} event.source This Panel.
1809
+ */
1810
+ onCollapse: any;
1811
+ /**
1812
+ * Fired after one day cell's events are collected in sorted order according to the
1813
+ * [eventSorter](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/CalendarMixin#config-eventSorter)
1814
+ * ...
1815
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#event-dayCellPopulated)
1816
+ * @param {object} event Event object
1817
+ * @param {Scheduler.model.EventModel[]} event.events The events to be shown for the passed date
1818
+ * @param {Date} event.The date the events are to be shown in.
1819
+ */
1820
+ onDayCellPopulated: any;
1821
+ /**
1822
+ * Fires when an object is destroyed.
1823
+ * @param {object} event Event object
1824
+ * @param {Core.Base} event.source The Object that is being destroyed.
1825
+ */
1826
+ onDestroy: any;
1827
+ /**
1828
+ * Fires when a field is mutated and the state of the [hasChanges](https://bryntum.com/products/calendar/docs/api/Core/widget/Container#property-hasChanges) property changes
1829
+ * @param {object} event Event object
1830
+ * @param {Core.widget.Container} event.source The container.
1831
+ * @param {boolean} event.dirty The dirty state of the Container - `true` if there are any fields which have been changed since initial load.
1832
+ */
1833
+ onDirtyStateChange: any;
1834
+ /**
1835
+ * Triggered when a widget's [element](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#property-element) is available.
1836
+ * @param {object} event Event object
1837
+ * @param {HTMLElement} event.element The Widget's element.
1838
+ */
1839
+ onElementCreated: any;
1840
+ /**
1841
+ * Fired when an [autoCreate](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/CalendarMixin#config-autoCreate) gesture has created a new event
1842
+ * and added it to the event store.
1843
+ * ...
1844
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#event-eventAutoCreated)
1845
+ * @param {object} event Event object
1846
+ * @param {CalendarView} event.source This Calendar view instance.
1847
+ * @param {Scheduler.model.EventModel} event.eventRecord The new event record.
1848
+ */
1849
+ onEventAutoCreated: any;
1850
+ /**
1851
+ * Fires when a day spanning event is found, and the date to which its encapsulating event bar
1852
+ * extends has been calculated.
1853
+ * ...
1854
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#event-eventPropagate)
1855
+ * @param {object} event Event object
1856
+ * @param {Date} event.eventEndDate The end date for which to calculate the propagate end date.
1857
+ * @param {Date} event.propagateEndDate The system-calculated end point of the event bar.
1858
+ * @param {boolean} event.isAllDay `true` if the event is an all day event, or spans multiple days.
1859
+ * @param {boolean} event.isOverflow `true` if this is being called as part of further propagation.
1860
+ * @param {boolean} event.overflows `true` if the event extends into future cells.
1861
+ * @param {Scheduler.model.EventModel} event.eventRecord The event record being propagated.
1862
+ * @param {Date} event.date The date from which the event is being propagated.
1863
+ */
1864
+ onEventPropagate: any;
1865
+ /**
1866
+ * Fires when a Panel is expanded using the [collapsible](https://bryntum.com/products/calendar/docs/api/Core/widget/Panel#config-collapsible) setting.
1867
+ * @param {object} event Event object
1868
+ * @param {Core.widget.Panel} event.source This Panel.
1869
+ */
1870
+ onExpand: any;
1871
+ /**
1872
+ * Fired when focus enters this Widget.
1873
+ * @param {object} event Event object
1874
+ * @param {Core.widget.Widget} event.source This Widget
1875
+ * @param {HTMLElement} event.fromElement The element which lost focus.
1876
+ * @param {HTMLElement} event.toElement The element which gained focus.
1877
+ * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.
1878
+ * @param {Core.widget.Widget} event.toWidget The widget which gained focus.
1879
+ * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.
1880
+ */
1881
+ onFocusIn: any;
1882
+ /**
1883
+ * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.
1884
+ * focus moving from within this Widget's ownership tree, even if there are floating widgets
1885
+ * will not trigger this event. This is when focus exits this widget completely.
1886
+ * @param {object} event Event object
1887
+ * @param {Core.widget.Widget} event.source This Widget
1888
+ * @param {HTMLElement} event.fromElement The element which lost focus.
1889
+ * @param {HTMLElement} event.toElement The element which gained focus.
1890
+ * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.
1891
+ * @param {Core.widget.Widget} event.toWidget The widget which gained focus.
1892
+ * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.
1893
+ */
1894
+ onFocusOut: any;
1895
+ /**
1896
+ * Triggered after a widget was hidden
1897
+ * @param {object} event Event object
1898
+ * @param {Core.widget.Widget} event.source The widget
1899
+ */
1900
+ onHide: any;
1901
+ /**
1902
+ * Fires when this DayView changes an aspect of its layout. This happens when changing
1903
+ * [hourHeight](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayView#property-hourHeight), [minDayWidth](#Calendar/widget/DayView#property-minDayWidth), and when the available
1904
+ * day container height changes.
1905
+ * @param {object} event Event object
1906
+ * @param {Calendar.widget.DayView} event.source The triggering instance.
1907
+ */
1908
+ onLayoutUpdate: any;
1909
+ /**
1910
+ * Triggered when a widget which had been in a non-visible state for any reason
1911
+ * achieves visibility.
1912
+ * ...
1913
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#event-paint)
1914
+ * @param {object} event Event object
1915
+ * @param {Core.widget.Widget} event.source The widget being painted.
1916
+ * @param {boolean} event.firstPaint `true` if this is the first paint.
1917
+ */
1918
+ onPaint: any;
1919
+ /**
1920
+ * Fired when the range of dates encapsulated by this view changes.
1921
+ * ...
1922
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayResourceView#event-rangeChange)
1923
+ * @param {object} event Event object
1924
+ * @param {typeof DateRangeOwner} event.source This calendar view instance.
1925
+ * @param {object} event.old The old date range <strong>if any</strong>.
1926
+ * @param {Date} event.old.startDate the old start date.
1927
+ * @param {Date} event.old.endDate the old end date.
1928
+ * @param {object} event.new The new date range
1929
+ * @param {Date} event.new.startDate the new start date.
1930
+ * @param {Date} event.new.endDate the new end date.
1931
+ */
1932
+ onRangeChange: any;
1933
+ /**
1934
+ * Fired when a Widget's read only state is toggled
1935
+ * @param {object} event Event object
1936
+ * @param {boolean} event.readOnly Read only or not
1937
+ */
1938
+ onReadOnly: any;
1939
+ /**
1940
+ * This event is fired after a widget's elements have been synchronized due to a direct or indirect call
1941
+ * to [recompose](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#function-recompose), if this results in some change to the widget's rendered DOM elements.
1942
+ */
1943
+ onRecompose: any;
1944
+ /**
1945
+ * Fires when this DayView refreshes.
1946
+ * @param {object} event Event object
1947
+ * @param {Calendar.widget.DayView} event.source The triggering instance.
1948
+ */
1949
+ onRefresh: any;
1950
+ /**
1951
+ * Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.
1952
+ * @param {object} event Event object
1953
+ * @param {Core.widget.Widget} event.source This Widget
1954
+ * @param {number} event.width The new width
1955
+ * @param {number} event.height The new height
1956
+ * @param {number} event.oldWidth The old width
1957
+ * @param {number} event.oldHeight The old height
1958
+ */
1959
+ onResize: any;
1960
+ /**
1961
+ * Triggered when a new [responsiveState](https://bryntum.com/products/calendar/docs/api/Core/widget/mixin/Responsive#config-responsiveState) is applied.
1962
+ * @param {object} event Event object
1963
+ * @param {Core.widget.Widget} event.source The widget whose `responsiveState` has changed
1964
+ * @param {string} event.state The new value for the widget's `responsiveState`
1965
+ * @param {string} event.oldState The previous value for the widget's `responsiveState`
1966
+ */
1967
+ onResponsiveStateChange: any;
1968
+ /**
1969
+ * Fired when the [shiftIncrement](https://bryntum.com/products/calendar/docs/api/Calendar/widget/mixin/DateRangeOwner#property-shiftIncrement) of this view changes.
1970
+ * @param {object} event Event object
1971
+ * @param {object} event.old The shift increment *if any*.
1972
+ * @param {object} event.new The shift increment
1973
+ */
1974
+ onShiftIncrementChange: any;
1975
+ /**
1976
+ * Triggered after a widget is shown.
1977
+ * @param {object} event Event object
1978
+ * @param {Core.widget.Widget} event.source The widget
1979
+ */
1980
+ onShow: any;
1981
+ /**
1982
+ * Triggered when changing the [hourHeight](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayView#property-hourHeight) causes an
1983
+ * [hour height breakpoint](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayView#config-hourHeightBreakpoints) to be crossed
1984
+ * and the displayed subTick intervals in the time axis change.
1985
+ * @param {object} event Event object
1986
+ * @param {object} event.old The old hour height tick resolution object.
1987
+ * @param {number} event.old.level The level `0` to `4` where `0` is the default with no subTick times displayed, and `4` means every 5 minute time is displayed.
1988
+ * @param {string} event.old.step The time duration of visible subTicks. This is a string in the format required by [parseDuration](https://bryntum.com/products/calendar/docs/api/Core/helper/DateHelper#function-parseDuration-static)
1989
+ * @param {object} event.new The new hour height tick resolution object.
1990
+ * @param {number} event.new.level The level `0` to `4` where `0` is the default with no subTick times displayed, and `4` means every 5 minute time is displayed.
1991
+ * @param {string} event.new.step The time duration of visible subTicks. This is a string in the format required by [parseDuration](https://bryntum.com/products/calendar/docs/api/Core/helper/DateHelper#function-parseDuration-static)
1992
+ */
1993
+ onTickChange: any;
1994
+ /**
1995
+ * Fired when a time axis is clicked on. If the handler returns
1996
+ * `false` the current pointer event is not processed further.
1997
+ * @param {object} event Event object
1998
+ * @param {Event} event.domEvent The triggering DOM event.
1999
+ * @param {Date} event.preciseTime The exact date and time at the clicked position
2000
+ * @param {Date} event.time The date and time at the clicked position snapped according to the [increment](https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayView#config-increment) and [timeSnapType](#Calendar/widget/DayView#config-timeSnapType)
2001
+ */
2002
+ onTimeAxisClick: any;
2003
+ /**
2004
+ * A header [tool](https://bryntum.com/products/calendar/docs/api/Core/widget/Panel#config-tools) has been clicked.
2005
+ * @param {object} event Event object
2006
+ * @param {Core.widget.Tool} event.source This Panel.
2007
+ * @param {Core.widget.Tool} event.tool The tool which is being clicked.
2008
+ */
2009
+ onToolClick: any;
2010
+ /**
2011
+ * Create and append the underlying widget
2012
+ */
2013
+ ngOnInit(): void;
2014
+ /**
2015
+ * Watch for changes
2016
+ * @param changes
2017
+ */
2018
+ ngOnChanges(changes: SimpleChanges): void;
2019
+ /**
2020
+ * Destroy the component
2021
+ */
2022
+ ngOnDestroy(): void;
2023
+ static ɵfac: i0.ɵɵFactoryDeclaration<BryntumDayResourceViewComponent, never>;
2024
+ static ɵcmp: i0.ɵɵComponentDeclaration<BryntumDayResourceViewComponent, "bryntum-day-resource-view", never, { "actionButtons": "actionButtons"; "activationKey": "activationKey"; "adopt": "adopt"; "align": "align"; "allDayEvents": "allDayEvents"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "bbar": "bbar"; "bodyCls": "bodyCls"; "bubbleEvents": "bubbleEvents"; "centered": "centered"; "collapsible": "collapsible"; "color": "color"; "columnHeaderRenderer": "columnHeaderRenderer"; "config": "config"; "constrainTo": "constrainTo"; "contentElementCls": "contentElementCls"; "currentTimeIndicatorRenderer": "currentTimeIndicatorRenderer"; "dataField": "dataField"; "dayCellRenderer": "dayCellRenderer"; "dayHeaderRenderer": "dayHeaderRenderer"; "dayNameFormat": "dayNameFormat"; "dayStartShift": "dayStartShift"; "defaultBindProperty": "defaultBindProperty"; "defaultFocus": "defaultFocus"; "defaults": "defaults"; "descriptionRenderer": "descriptionRenderer"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "dock": "dock"; "draggable": "draggable"; "drawer": "drawer"; "elementAttributes": "elementAttributes"; "endDate": "endDate"; "eventFilter": "eventFilter"; "eventHeaderRenderer": "eventHeaderRenderer"; "eventLayout": "eventLayout"; "eventRenderer": "eventRenderer"; "eventSorter": "eventSorter"; "eventSpacing": "eventSpacing"; "floating": "floating"; "footer": "footer"; "getPrimaryResource": "getPrimaryResource"; "header": "header"; "hideAnimation": "hideAnimation"; "hideWhenEmpty": "hideWhenEmpty"; "icon": "icon"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "itemCls": "itemCls"; "lazyItems": "lazyItems"; "listeners": "listeners"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "maxAllDayHeight": "maxAllDayHeight"; "monitorResize": "monitorResize"; "namedItems": "namedItems"; "overflowPopup": "overflowPopup"; "owner": "owner"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "relayStoreEvents": "relayStoreEvents"; "resourceImagePath": "resourceImagePath"; "responsive": "responsive"; "responsiveRoot": "responsiveRoot"; "responsiveState": "responsiveState"; "responsiveTarget": "responsiveTarget"; "ripple": "ripple"; "rootElement": "rootElement"; "scrollAction": "scrollAction"; "selectorButton": "selectorButton"; "selectorMenuItem": "selectorMenuItem"; "shortEventCls": "shortEventCls"; "shortEventDuration": "shortEventDuration"; "showAllDayHeader": "showAllDayHeader"; "showAnimation": "showAnimation"; "showBullet": "showBullet"; "showHeaderAvatars": "showHeaderAvatars"; "showResourceAvatars": "showResourceAvatars"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "startDate": "startDate"; "stateful": "stateful"; "statefulEvents": "statefulEvents"; "stateId": "stateId"; "stateProvider": "stateProvider"; "strips": "strips"; "tab": "tab"; "tabBarItems": "tabBarItems"; "tag": "tag"; "tbar": "tbar"; "textAlign": "textAlign"; "tickRenderer": "tickRenderer"; "timeAxisTimeFormat": "timeAxisTimeFormat"; "timeFormat": "timeFormat"; "trapFocus": "trapFocus"; "type": "type"; "ui": "ui"; "visibleStartTime": "visibleStartTime"; "weekStartDay": "weekStartDay"; "weight": "weight"; "zoomOnMouseWheel": "zoomOnMouseWheel"; "alignSelf": "alignSelf"; "allowDragCreate": "allowDragCreate"; "allowDragMove": "allowDragMove"; "allowDragResize": "allowDragResize"; "allowZoomUnderflow": "allowZoomUnderflow"; "animateTimeShift": "animateTimeShift"; "appendTo": "appendTo"; "autoCreate": "autoCreate"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "cls": "cls"; "collapsed": "collapsed"; "column": "column"; "compactHeader": "compactHeader"; "coreHours": "coreHours"; "dashedSubticks": "dashedSubticks"; "dataset": "dataset"; "date": "date"; "dateFilter": "dateFilter"; "dateFormat": "dateFormat"; "dateSeparator": "dateSeparator"; "dayEndTime": "dayEndTime"; "dayStartTime": "dayStartTime"; "defaultScrollOptions": "defaultScrollOptions"; "descriptionFormat": "descriptionFormat"; "disabled": "disabled"; "dragUnit": "dragUnit"; "extendAllDayEndDay": "extendAllDayEndDay"; "extraData": "extraData"; "filterEventResources": "filterEventResources"; "fitHours": "fitHours"; "fixedDuration": "fixedDuration"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "hideEmptyDays": "hideEmptyDays"; "hideEmptyResources": "hideEmptyResources"; "hideNonWorkingDays": "hideNonWorkingDays"; "hideResourceNameWhenNarrow": "hideResourceNameWhenNarrow"; "hourHeight": "hourHeight"; "hourHeightBreakpoints": "hourHeightBreakpoints"; "id": "id"; "increment": "increment"; "inputFieldAlign": "inputFieldAlign"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "interDayDrag": "interDayDrag"; "interDayResize": "interDayResize"; "items": "items"; "keyMap": "keyMap"; "labelPosition": "labelPosition"; "layout": "layout"; "layoutStyle": "layoutStyle"; "margin": "margin"; "maxDate": "maxDate"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "minDate": "minDate"; "minDayWidth": "minDayWidth"; "minEventHeight": "minEventHeight"; "minHeight": "minHeight"; "minHourHeight": "minHourHeight"; "minResourceWidth": "minResourceWidth"; "minWidth": "minWidth"; "noMatchingDates": "noMatchingDates"; "nonWorkingDays": "nonWorkingDays"; "pastEventCls": "pastEventCls"; "range": "range"; "readOnly": "readOnly"; "rendition": "rendition"; "resourceDateFilter": "resourceDateFilter"; "rtl": "rtl"; "scrollable": "scrollable"; "shiftIncrement": "shiftIncrement"; "shortDateFormat": "shortDateFormat"; "shortDateTimeFormat": "shortDateTimeFormat"; "showAvatars": "showAvatars"; "showCurrentTime": "showCurrentTime"; "showTime": "showTime"; "sixMinuteTicks": "sixMinuteTicks"; "snapRelativeToEventStartDate": "snapRelativeToEventStartDate"; "span": "span"; "stackMultiDayEvents": "stackMultiDayEvents"; "strictRecordMapping": "strictRecordMapping"; "syncCalendarDate": "syncCalendarDate"; "syncViewDate": "syncViewDate"; "timeSnapType": "timeSnapType"; "title": "title"; "tools": "tools"; "tooltip": "tooltip"; "width": "width"; "x": "x"; "y": "y"; "anchorSize": "anchorSize"; "dayCellCls": "dayCellCls"; "firstVisibleCell": "firstVisibleCell"; "firstVisibleDate": "firstVisibleDate"; "focusVisible": "focusVisible"; "hasChanges": "hasChanges"; "horizontalScroller": "horizontalScroller"; "isSettingValues": "isSettingValues"; "isValid": "isValid"; "lastVisibleCell": "lastVisibleCell"; "lastVisibleDate": "lastVisibleDate"; "parent": "parent"; "record": "record"; "state": "state"; "values": "values"; }, { "onBeforeAutoCreate": "onBeforeAutoCreate"; "onBeforeChangeDate": "onBeforeChangeDate"; "onBeforeDestroy": "onBeforeDestroy"; "onBeforeHide": "onBeforeHide"; "onBeforeResponsiveStateChange": "onBeforeResponsiveStateChange"; "onBeforeSetRecord": "onBeforeSetRecord"; "onBeforeShow": "onBeforeShow"; "onBeforeStateApply": "onBeforeStateApply"; "onBeforeStateSave": "onBeforeStateSave"; "onCatchAll": "onCatchAll"; "onCellMapPopulated": "onCellMapPopulated"; "onCollapse": "onCollapse"; "onDayCellPopulated": "onDayCellPopulated"; "onDestroy": "onDestroy"; "onDirtyStateChange": "onDirtyStateChange"; "onElementCreated": "onElementCreated"; "onEventAutoCreated": "onEventAutoCreated"; "onEventPropagate": "onEventPropagate"; "onExpand": "onExpand"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onHide": "onHide"; "onLayoutUpdate": "onLayoutUpdate"; "onPaint": "onPaint"; "onRangeChange": "onRangeChange"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onRefresh": "onRefresh"; "onResize": "onResize"; "onResponsiveStateChange": "onResponsiveStateChange"; "onShiftIncrementChange": "onShiftIncrementChange"; "onShow": "onShow"; "onTickChange": "onTickChange"; "onTimeAxisClick": "onTimeAxisClick"; "onToolClick": "onToolClick"; }, never, never>;
2025
+ }