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