@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,851 @@
1
+ /**
2
+ * Angular wrapper for Bryntum ModeSelector
3
+ */
4
+ import { ElementRef, SimpleChanges, OnDestroy, OnInit } from '@angular/core';
5
+ import { AlignSpec, Base, Button, ButtonGroup, DomConfig, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
6
+ import { CalendarContainerItemConfig, CalendarContainerLayoutConfig, ModeSelector, ModeSelectorListeners } from '@bryntum/calendar-thin';
7
+ import * as i0 from "@angular/core";
8
+ export declare type BryntumModeSelectorProps = {
9
+ /**
10
+ * Element (or element id) to adopt as this Widget's encapsulating element. The widget's
11
+ * content will be placed inside this element.
12
+ * ...
13
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-adopt)
14
+ */
15
+ adopt?: HTMLElement | string;
16
+ /**
17
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-floating).*
18
+ * ...
19
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-align)
20
+ */
21
+ align?: AlignSpec | string;
22
+ /**
23
+ * 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
24
+ * flexbox layout. This config allows you to set this widget's
25
+ * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.
26
+ */
27
+ alignSelf?: string;
28
+ /**
29
+ * *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).*
30
+ * `true` to show a connector arrow pointing to the align target.
31
+ */
32
+ anchor?: boolean;
33
+ /**
34
+ * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
35
+ * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#property-element).
36
+ */
37
+ appendTo?: HTMLElement | string;
38
+ /**
39
+ * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject
40
+ * into an element which will be linked using the `aria-describedby` attribute.
41
+ * ...
42
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-ariaDescription)
43
+ */
44
+ ariaDescription?: string;
45
+ /**
46
+ * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as
47
+ * the `aria-label` attribute.
48
+ * ...
49
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-ariaLabel)
50
+ */
51
+ ariaLabel?: string;
52
+ /**
53
+ * Update assigned [record](https://bryntum.com/products/calendar/docs/api/Core/widget/Container#config-record) automatically on field changes
54
+ */
55
+ autoUpdateRecord?: boolean;
56
+ /**
57
+ * An object where property names with a truthy value indicate which events should bubble up the ownership
58
+ * hierarchy when triggered.
59
+ * ...
60
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-bubbleEvents)
61
+ */
62
+ bubbleEvents?: object;
63
+ /**
64
+ * The button or button config object that will display a popup menu to select the calendar mode.
65
+ */
66
+ button?: Button;
67
+ /**
68
+ * The button group or button group config object that will display the calendar modes, one per button.
69
+ */
70
+ buttonBar?: ButtonGroup;
71
+ /**
72
+ * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
73
+ * ...
74
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-callOnFunctions)
75
+ */
76
+ callOnFunctions?: boolean;
77
+ /**
78
+ * By default, if an event handler throws an exception, the error propagates up the stack and the
79
+ * application state is undefined. Code which follows the event handler will *not* be executed.
80
+ * ...
81
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-catchEventHandlerExceptions)
82
+ */
83
+ catchEventHandlerExceptions?: boolean;
84
+ /**
85
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-floating).*
86
+ * Set to `true` to centre the Widget in browser viewport space.
87
+ */
88
+ centered?: boolean;
89
+ /**
90
+ * Custom CSS classes to add to element.
91
+ * May be specified as a space separated string, or as an object in which property names
92
+ * with truthy values are used as the class names:
93
+ * ...
94
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-cls)
95
+ */
96
+ cls?: string | object;
97
+ /**
98
+ * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
99
+ * `style` block.
100
+ * ...
101
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-color)
102
+ */
103
+ color?: string;
104
+ /**
105
+ * Programmatic control over which column to start in when used in a grid layout.
106
+ */
107
+ column?: number;
108
+ config?: object;
109
+ /**
110
+ * *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).*
111
+ * Element, Widget or Rectangle to which this Widget is constrained.
112
+ */
113
+ constrainTo?: HTMLElement | Widget | Rectangle;
114
+ /**
115
+ * The HTML content that coexists with sibling elements which may have been added to the
116
+ * [contentElement](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#property-contentElement) by plugins and features.
117
+ * When specifying html, this widget's element will also have the [htmlCls](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-htmlCls)
118
+ * class added to its classList, to allow targeted styling.
119
+ */
120
+ content?: string;
121
+ /**
122
+ * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#property-contentElement).
123
+ * May be specified as a space separated string, or as an object in which property names
124
+ * with truthy values are used as the class names:
125
+ * ...
126
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-contentElementCls)
127
+ */
128
+ contentElementCls?: string | object;
129
+ /**
130
+ * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the
131
+ * field on the expanded record to use for populating this widget's store (if applicable)
132
+ */
133
+ dataField?: string;
134
+ /**
135
+ * Object to apply to elements dataset (each key will be used as a data-attribute on the element)
136
+ */
137
+ dataset?: Record<string, string>;
138
+ /**
139
+ * The name of the property to set when a single value is to be applied to this Widget. Such as when used
140
+ * in a grid WidgetColumn, this is the property to which the column's `field` is applied.
141
+ */
142
+ defaultBindProperty?: string;
143
+ /**
144
+ * A [query](https://bryntum.com/products/calendar/docs/api/Core/widget/Container#function-query) selector function which can identify the descendant widget to which
145
+ * focus should be directed by default.
146
+ * ...
147
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-defaultFocus)
148
+ * @param {Core.widget.Widget} widget Widget passed to method
149
+ * @returns {boolean} truthy value if widget is the default one
150
+ */
151
+ defaultFocus?: ((widget: Widget) => boolean) | string;
152
+ /**
153
+ * A config object containing default settings to apply to all child widgets.
154
+ */
155
+ defaults?: CalendarContainerItemConfig;
156
+ /**
157
+ * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:
158
+ * ...
159
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-detectCSSCompatibilityIssues)
160
+ */
161
+ detectCSSCompatibilityIssues?: boolean;
162
+ /**
163
+ * 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
164
+ * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.
165
+ * ...
166
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-disabled)
167
+ */
168
+ disabled?: boolean | 'inert';
169
+ /**
170
+ * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/calendar/docs/api/Core/widget/Panel)
171
+ * [strips collection](https://bryntum.com/products/calendar/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
172
+ * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
173
+ * body. Such widgets are called "edge strips".
174
+ * ...
175
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-dock)
176
+ */
177
+ dock?: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
178
+ /**
179
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-floating).*
180
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
181
+ * property which controls when a drag should start.
182
+ * ...
183
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-draggable)
184
+ */
185
+ draggable?: boolean | {
186
+ handleSelector?: string;
187
+ };
188
+ /**
189
+ * An object specifying attributes to assign to the root element of this widget.
190
+ * Set `null` value to attribute to remove it.
191
+ * ...
192
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-elementAttributes)
193
+ */
194
+ elementAttributes?: Record<string, string | null>;
195
+ extraData?: any;
196
+ /**
197
+ * 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
198
+ * flexbox layout. This config allows you to set this widget's
199
+ * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.
200
+ * This may be configured as a single number or a `&lt;flex-grow&gt; &lt;flex-shrink&gt; &lt;flex-basis&gt;` format string.
201
+ * numeric-only values are interpreted as the `flex-grow` value.
202
+ */
203
+ flex?: number | string;
204
+ /**
205
+ * Set to `true` to move the widget out of the document flow and position it
206
+ * absolutely in browser viewport space.
207
+ */
208
+ floating?: boolean;
209
+ /**
210
+ * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,
211
+ * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some
212
+ * cases this config is convenient.
213
+ */
214
+ height?: string | number;
215
+ /**
216
+ * Configure with true to make widget initially hidden.
217
+ */
218
+ hidden?: boolean;
219
+ /**
220
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-floating).*
221
+ * ...
222
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-hideAnimation)
223
+ */
224
+ hideAnimation?: boolean | object;
225
+ /**
226
+ * Specify `true` to make this container hide when it has no visible children (Either empty
227
+ * or all children hidden).
228
+ * ...
229
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-hideWhenEmpty)
230
+ */
231
+ hideWhenEmpty?: boolean;
232
+ /**
233
+ * The HTML to display initially or a function returning the markup (called at widget construction time).
234
+ * ...
235
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-html)
236
+ * @param {Core.widget.Widget} widget The calling Widget
237
+ * @returns {string}
238
+ */
239
+ html?: string | ((widget: Widget) => string) | DomConfig | DomConfig[] | VueConfig;
240
+ /**
241
+ * The CSS class(es) to add when HTML content is being applied to this widget.
242
+ */
243
+ htmlCls?: string | object;
244
+ /**
245
+ * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById
246
+ */
247
+ id?: string;
248
+ /**
249
+ * Determines if the widgets read-only state should be controlled by its parent.
250
+ * ...
251
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-ignoreParentReadOnly)
252
+ */
253
+ ignoreParentReadOnly?: boolean;
254
+ /**
255
+ * Convenience setting to align input fields of child widgets. By default, the Field input element is
256
+ * placed immediately following the `label`. If you prefer to have all input fields aligned to the
257
+ * right, set this config to `'end'`.
258
+ * ...
259
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-inputFieldAlign)
260
+ */
261
+ inputFieldAlign?: 'start' | 'end';
262
+ /**
263
+ * 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.
264
+ */
265
+ insertBefore?: HTMLElement | string;
266
+ /**
267
+ * 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.
268
+ */
269
+ insertFirst?: HTMLElement | string;
270
+ /**
271
+ * An optional CSS class to add to child items of this container.
272
+ */
273
+ itemCls?: string;
274
+ /**
275
+ * An object containing typed child widget config objects or Widgets. May also be specified
276
+ * as an array.
277
+ * ...
278
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-items)
279
+ */
280
+ items?: Record<string, CalendarContainerItemConfig | MenuItemEntry> | (CalendarContainerItemConfig | MenuItemEntry | Widget)[];
281
+ /**
282
+ * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name
283
+ * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values
284
+ * are the name of the instance method to call when the keystroke is received.
285
+ * ...
286
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-keyMap)
287
+ */
288
+ keyMap?: Record<string, KeyMapConfig>;
289
+ /**
290
+ * Convenience setting to use same label placement on all child widgets.
291
+ * ...
292
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-labelPosition)
293
+ */
294
+ labelPosition?: 'before' | 'above' | 'align-before' | 'auto' | null;
295
+ /**
296
+ * The short name of a helper class which manages rendering and styling of child items.
297
+ * ...
298
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-layout)
299
+ */
300
+ layout?: string | CalendarContainerLayoutConfig;
301
+ /**
302
+ * The CSS style properties to apply to the [contentElement](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#property-contentElement).
303
+ * ...
304
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-layoutStyle)
305
+ */
306
+ layoutStyle?: object;
307
+ /**
308
+ * 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
309
+ * instances only when this Container is rendered, rather than eagerly at construct time.
310
+ * ...
311
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-lazyItems)
312
+ */
313
+ lazyItems?: Record<string, CalendarContainerItemConfig> | CalendarContainerItemConfig[] | Widget[];
314
+ /**
315
+ * The listener set for this object.
316
+ * ...
317
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-listeners)
318
+ */
319
+ listeners?: ModeSelectorListeners;
320
+ /**
321
+ * A class translations of which are used for translating this entity.
322
+ * This is often used when translations of an item are defined on its container class.
323
+ * For example:
324
+ * ...
325
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-localeClass)
326
+ */
327
+ localeClass?: typeof Base;
328
+ /**
329
+ * Set to `false` to disable localization of this object.
330
+ */
331
+ localizable?: boolean;
332
+ /**
333
+ * List of properties which values should be translated automatically upon a locale applying.
334
+ * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),
335
+ * you could use 'localeKey' meta configuration.
336
+ * Example:
337
+ * ...
338
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-localizableProperties)
339
+ */
340
+ localizableProperties?: string[];
341
+ /**
342
+ * Widget's margin. This may be configured as a single number or a `TRBL` format string.
343
+ * numeric-only values are interpreted as pixels.
344
+ */
345
+ margin?: number | string;
346
+ /**
347
+ * This config object contains the defaults for the [Mask](https://bryntum.com/products/calendar/docs/api/Core/widget/Mask) created for the
348
+ * [masked](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-masked) config. Any properties specified in the `masked` config will override these
349
+ * values.
350
+ */
351
+ maskDefaults?: MaskConfig;
352
+ /**
353
+ * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a
354
+ * [Mask](https://bryntum.com/products/calendar/docs/api/Core/widget/Mask) config object.
355
+ */
356
+ masked?: boolean | string | MaskConfig;
357
+ /**
358
+ * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that
359
+ * like [height](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.
360
+ */
361
+ maxHeight?: string | number;
362
+ /**
363
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-floating).*
364
+ * ...
365
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-maximizeOnMobile)
366
+ */
367
+ maximizeOnMobile?: number | string;
368
+ /**
369
+ * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that
370
+ * like [width](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.
371
+ */
372
+ maxWidth?: string | number;
373
+ /**
374
+ * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that
375
+ * like [height](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.
376
+ */
377
+ minHeight?: string | number;
378
+ /**
379
+ * Set to `false` to prevent this widget from assuming is [minified](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-minified) form automatically (for
380
+ * example, due to [overflow](https://bryntum.com/products/calendar/docs/api/Core/widget/Toolbar#config-overflow) handling.
381
+ * ...
382
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-minifiable)
383
+ */
384
+ minifiable?: boolean;
385
+ /**
386
+ * Set to `true` to present this widget in its minimal form.
387
+ */
388
+ minified?: boolean;
389
+ /**
390
+ * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that
391
+ * like [width](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.
392
+ */
393
+ minWidth?: string | number;
394
+ /**
395
+ * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)
396
+ * is used to monitor this element for size changes caused by either style manipulation, or by CSS
397
+ * layout.
398
+ * ...
399
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-monitorResize)
400
+ */
401
+ monitorResize?: boolean | {
402
+ immediate?: boolean;
403
+ };
404
+ /**
405
+ * 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)
406
+ * config. For example, a specialized [Menu](https://bryntum.com/products/calendar/docs/api/Core/widget/Menu) subclass may have a `namedItems` default
407
+ * value defined like this:
408
+ * ...
409
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-namedItems)
410
+ */
411
+ namedItems?: Record<string, CalendarContainerItemConfig>;
412
+ /**
413
+ * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
414
+ * [items](https://bryntum.com/products/calendar/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
415
+ * the owner is <strong>always</strong> the encapsulating Container.
416
+ * ...
417
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-owner)
418
+ */
419
+ owner?: Widget | any;
420
+ /**
421
+ * 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
422
+ * not participate in the standard layout of that widget, and must be positioned relatively to that
423
+ * widget's [contentElement](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#property-contentElement).
424
+ * ...
425
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-positioned)
426
+ */
427
+ positioned?: boolean;
428
+ /**
429
+ * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a
430
+ * menu on click etc, since the tooltip would be displayed at the same time.
431
+ */
432
+ preventTooltipOnTouch?: boolean;
433
+ /**
434
+ * Whether this widget is read-only. This is only valid if the widget is an input
435
+ * field, <strong>or contains input fields at any depth</strong>.
436
+ * ...
437
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-readOnly)
438
+ */
439
+ readOnly?: boolean;
440
+ /**
441
+ * [Record](https://bryntum.com/products/calendar/docs/api/Core/data/Model) whose values will be used to populate fields in the container.
442
+ * ...
443
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-record)
444
+ */
445
+ record?: Model;
446
+ relayStoreEvents?: boolean;
447
+ /**
448
+ * Either a default `rendition` to apply to all child widgets, or a map of renditions keyed by child widget
449
+ * `type`.
450
+ * ...
451
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-rendition)
452
+ */
453
+ rendition?: string | Record<string, string> | null;
454
+ /**
455
+ * Configure as `true` to have the component display a translucent ripple when its
456
+ * [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
457
+ * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.
458
+ * ...
459
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-ripple)
460
+ */
461
+ ripple?: boolean | {
462
+ delegate?: string;
463
+ color?: string;
464
+ radius?: number;
465
+ clip?: string;
466
+ };
467
+ /**
468
+ * 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`
469
+ */
470
+ rootElement?: ShadowRoot | HTMLElement;
471
+ /**
472
+ * This may be configured as `true` to make the widget's element use the `direction:rtl` style.
473
+ * ...
474
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-rtl)
475
+ */
476
+ rtl?: boolean;
477
+ /**
478
+ * Specifies whether (and optionally in which axes) a Widget may scroll. `true` means this widget may scroll
479
+ * in both axes. May be an object containing boolean `overflowX` and `overflowY` properties which are
480
+ * applied to CSS style properties `overflowX` and `overflowY`. If they are boolean, they are translated to
481
+ * CSS overflow properties thus:
482
+ * ...
483
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-scrollable)
484
+ */
485
+ scrollable?: boolean | ScrollerConfig | Scroller;
486
+ /**
487
+ * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
488
+ * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
489
+ */
490
+ scrollAction?: 'hide' | 'realign' | null;
491
+ /**
492
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#config-floating).*
493
+ * ...
494
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-showAnimation)
495
+ */
496
+ showAnimation?: boolean | object;
497
+ /**
498
+ * 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)
499
+ */
500
+ showTooltipWhenDisabled?: boolean;
501
+ /**
502
+ * Programmatic control over how many columns to span when used in a grid layout.
503
+ */
504
+ span?: number;
505
+ /**
506
+ * 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),
507
+ * without falling back to `ref`.
508
+ */
509
+ strictRecordMapping?: boolean;
510
+ /**
511
+ * 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
512
+ * [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
513
+ * this widget:
514
+ * ...
515
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-tab)
516
+ */
517
+ tab?: boolean | TabConfig;
518
+ /**
519
+ * When this container is used as a tab in a TabPanel, these items are added to the
520
+ * [TabBar](https://bryntum.com/products/calendar/docs/api/Core/widget/TabBar) when this container is the active tab.
521
+ * ...
522
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-tabBarItems)
523
+ */
524
+ tabBarItems?: ToolbarItems[] | Widget[];
525
+ /**
526
+ * The tag name of this Widget's root element
527
+ */
528
+ tag?: string;
529
+ /**
530
+ * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.
531
+ * ...
532
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-textAlign)
533
+ */
534
+ textAlign?: 'left' | 'center' | 'right' | 'start' | 'end';
535
+ /**
536
+ * Specify `true` for a container used to show text markup. It will apply the CSS class `b-text-content`
537
+ * which specifies a default max-width that makes long text more readable.
538
+ * ...
539
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-textContent)
540
+ */
541
+ textContent?: boolean;
542
+ /**
543
+ * A title to display for the widget. Only in effect when inside a container that uses it (such as TabPanel)
544
+ */
545
+ title?: string;
546
+ /**
547
+ * The config property that will be used as the readable title for each mode.
548
+ */
549
+ titleProperty?: string;
550
+ /**
551
+ * Tooltip for the widget, either as a string or as a Tooltip config object.
552
+ * ...
553
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-tooltip)
554
+ */
555
+ tooltip?: string | TooltipConfig | null;
556
+ type?: 'calendarModeSelector' | 'calendarmodeselector';
557
+ /**
558
+ * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
559
+ * as a space separated string, an array of strings, or as an object in which property names with truthy
560
+ * values are used as the class names.
561
+ * ...
562
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-ui)
563
+ */
564
+ ui?: string | object;
565
+ /**
566
+ * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/calendar/docs/api/Core/widget/Container).
567
+ * Higher weights go further down.
568
+ */
569
+ weight?: number;
570
+ /**
571
+ * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which
572
+ * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases
573
+ * this config is convenient.
574
+ */
575
+ width?: string | number;
576
+ /**
577
+ * The x position for the widget.
578
+ * ...
579
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-x)
580
+ */
581
+ x?: number;
582
+ /**
583
+ * The y position for the widget.
584
+ * ...
585
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#config-y)
586
+ */
587
+ y?: number;
588
+ };
589
+ export declare class BryntumModeSelectorComponent implements OnInit, OnDestroy {
590
+ static instanceClass: typeof ModeSelector;
591
+ static instanceName: string;
592
+ private static bryntumEvents;
593
+ private static bryntumFeatureNames;
594
+ private static bryntumConfigs;
595
+ private static bryntumConfigsOnly;
596
+ private static bryntumProps;
597
+ private elementRef;
598
+ instance: ModeSelector;
599
+ private bryntumConfig;
600
+ constructor(element: ElementRef);
601
+ adopt: HTMLElement | string;
602
+ align: AlignSpec | string;
603
+ anchor: boolean;
604
+ ariaDescription: string;
605
+ ariaLabel: string;
606
+ autoUpdateRecord: boolean;
607
+ bubbleEvents: object;
608
+ button: Button;
609
+ buttonBar: ButtonGroup;
610
+ centered: boolean;
611
+ color: string;
612
+ config: object;
613
+ constrainTo: HTMLElement | Widget | Rectangle;
614
+ contentElementCls: string | object;
615
+ dataField: string;
616
+ defaultBindProperty: string;
617
+ defaultFocus: ((widget: Widget) => boolean) | string;
618
+ defaults: CalendarContainerItemConfig;
619
+ detectCSSCompatibilityIssues: boolean;
620
+ dock: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
621
+ draggable: boolean | {
622
+ handleSelector?: string;
623
+ };
624
+ elementAttributes: Record<string, string | null>;
625
+ floating: boolean;
626
+ hideAnimation: boolean | object;
627
+ hideWhenEmpty: boolean;
628
+ htmlCls: string | object;
629
+ ignoreParentReadOnly: boolean;
630
+ itemCls: string;
631
+ lazyItems: Record<string, CalendarContainerItemConfig> | CalendarContainerItemConfig[] | Widget[];
632
+ listeners: ModeSelectorListeners;
633
+ localeClass: typeof Base;
634
+ localizable: boolean;
635
+ localizableProperties: string[];
636
+ maskDefaults: MaskConfig;
637
+ masked: boolean | string | MaskConfig;
638
+ minifiable: boolean;
639
+ minified: boolean;
640
+ monitorResize: boolean | {
641
+ immediate?: boolean;
642
+ };
643
+ namedItems: Record<string, CalendarContainerItemConfig>;
644
+ owner: Widget | any;
645
+ positioned: boolean;
646
+ preventTooltipOnTouch: boolean;
647
+ relayStoreEvents: boolean;
648
+ ripple: boolean | {
649
+ delegate?: string;
650
+ color?: string;
651
+ radius?: number;
652
+ clip?: string;
653
+ };
654
+ rootElement: ShadowRoot | HTMLElement;
655
+ scrollAction: 'hide' | 'realign' | null;
656
+ showAnimation: boolean | object;
657
+ showTooltipWhenDisabled: boolean;
658
+ tab: boolean | TabConfig;
659
+ tabBarItems: ToolbarItems[] | Widget[];
660
+ tag: string;
661
+ textAlign: 'left' | 'center' | 'right' | 'start' | 'end';
662
+ textContent: boolean;
663
+ title: string;
664
+ titleProperty: string;
665
+ type: 'calendarModeSelector' | 'calendarmodeselector';
666
+ ui: string | object;
667
+ weight: number;
668
+ alignSelf: string;
669
+ appendTo: HTMLElement | string;
670
+ callOnFunctions: boolean;
671
+ catchEventHandlerExceptions: boolean;
672
+ cls: string | object;
673
+ column: number;
674
+ content: string;
675
+ dataset: object | Record<string, string>;
676
+ disabled: boolean | 'inert';
677
+ extraData: any;
678
+ flex: number | string;
679
+ height: number | string;
680
+ hidden: boolean;
681
+ html: string | ((widget: Widget) => string) | DomConfig | DomConfig[] | VueConfig;
682
+ id: string;
683
+ inputFieldAlign: 'start' | 'end';
684
+ insertBefore: HTMLElement | string;
685
+ insertFirst: HTMLElement | string;
686
+ items: (CalendarContainerItemConfig | MenuItemConfig | Widget)[] | Record<string, CalendarContainerItemConfig | MenuItemConfig> | Widget[] | Record<string, CalendarContainerItemConfig | MenuItemEntry> | (CalendarContainerItemConfig | MenuItemEntry | Widget)[];
687
+ keyMap: Record<string, KeyMapConfig>;
688
+ labelPosition: 'before' | 'above' | 'align-before' | 'auto' | null;
689
+ layout: Layout | string | CalendarContainerLayoutConfig;
690
+ layoutStyle: object;
691
+ margin: number | string;
692
+ maxHeight: string | number;
693
+ maximizeOnMobile: number | string;
694
+ maxWidth: string | number;
695
+ minHeight: string | number;
696
+ minWidth: string | number;
697
+ readOnly: boolean;
698
+ record: Model;
699
+ rendition: string | Record<string, string> | null;
700
+ rtl: boolean;
701
+ scrollable: Scroller | boolean | ScrollerConfig;
702
+ span: number;
703
+ strictRecordMapping: boolean;
704
+ tooltip: string | TooltipConfig | null;
705
+ width: number | string;
706
+ x: number;
707
+ y: number;
708
+ anchorSize: number[];
709
+ focusVisible: boolean;
710
+ hasChanges: boolean;
711
+ isSettingValues: boolean;
712
+ isValid: boolean;
713
+ parent: Widget;
714
+ values: Record<string, object>;
715
+ /**
716
+ * Fires before an object is destroyed.
717
+ * @param {object} event Event object
718
+ * @param {Core.Base} event.source The Object that is being destroyed.
719
+ */
720
+ onBeforeDestroy: any;
721
+ /**
722
+ * Triggered before a widget is hidden. Return `false` to prevent the action.
723
+ * @param {object} event Event object
724
+ * @param {Core.widget.Widget} event.source The widget being hidden.
725
+ */
726
+ onBeforeHide: any;
727
+ /**
728
+ * Fired before this container will load record values into its child fields. This is useful if you
729
+ * want to modify the UI before data is loaded (e.g. set some input field to be readonly)
730
+ * @param {object} event Event object
731
+ * @param {Core.widget.Container} event.source The container
732
+ * @param {Core.data.Model} event.record The record
733
+ */
734
+ onBeforeSetRecord: any;
735
+ /**
736
+ * Triggered before a widget is shown. Return `false` to prevent the action.
737
+ * @param {object} event Event object
738
+ * @param {Core.widget.Widget,any} event.source The widget being shown
739
+ */
740
+ onBeforeShow: any;
741
+ /**
742
+ * Fires when any other event is fired from the object.
743
+ * ...
744
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#event-catchAll)
745
+ * @param {object} event Event object
746
+ * @param {{[key: string]: any, type: string}} event.event The Object that contains event details
747
+ * @param {string} event.event.type The type of the event which is caught by the listener
748
+ */
749
+ onCatchAll: any;
750
+ /**
751
+ * Fires when an object is destroyed.
752
+ * @param {object} event Event object
753
+ * @param {Core.Base} event.source The Object that is being destroyed.
754
+ */
755
+ onDestroy: any;
756
+ /**
757
+ * 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
758
+ * @param {object} event Event object
759
+ * @param {Core.widget.Container} event.source The container.
760
+ * @param {boolean} event.dirty The dirty state of the Container - `true` if there are any fields which have been changed since initial load.
761
+ */
762
+ onDirtyStateChange: any;
763
+ /**
764
+ * Triggered when a widget's [element](https://bryntum.com/products/calendar/docs/api/Core/widget/Widget#property-element) is available.
765
+ * @param {object} event Event object
766
+ * @param {HTMLElement} event.element The Widget's element.
767
+ */
768
+ onElementCreated: any;
769
+ /**
770
+ * Fired when focus enters this Widget.
771
+ * @param {object} event Event object
772
+ * @param {Core.widget.Widget} event.source This Widget
773
+ * @param {HTMLElement} event.fromElement The element which lost focus.
774
+ * @param {HTMLElement} event.toElement The element which gained focus.
775
+ * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.
776
+ * @param {Core.widget.Widget} event.toWidget The widget which gained focus.
777
+ * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.
778
+ */
779
+ onFocusIn: any;
780
+ /**
781
+ * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.
782
+ * focus moving from within this Widget's ownership tree, even if there are floating widgets
783
+ * will not trigger this event. This is when focus exits this widget completely.
784
+ * @param {object} event Event object
785
+ * @param {Core.widget.Widget} event.source This Widget
786
+ * @param {HTMLElement} event.fromElement The element which lost focus.
787
+ * @param {HTMLElement} event.toElement The element which gained focus.
788
+ * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.
789
+ * @param {Core.widget.Widget} event.toWidget The widget which gained focus.
790
+ * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.
791
+ */
792
+ onFocusOut: any;
793
+ /**
794
+ * Triggered after a widget was hidden
795
+ * @param {object} event Event object
796
+ * @param {Core.widget.Widget} event.source The widget
797
+ */
798
+ onHide: any;
799
+ /**
800
+ * Triggered when a widget which had been in a non-visible state for any reason
801
+ * achieves visibility.
802
+ * ...
803
+ * [View online docs...](https://bryntum.com/products/calendar/docs/api/Calendar/widget/ModeSelector#event-paint)
804
+ * @param {object} event Event object
805
+ * @param {Core.widget.Widget} event.source The widget being painted.
806
+ * @param {boolean} event.firstPaint `true` if this is the first paint.
807
+ */
808
+ onPaint: any;
809
+ /**
810
+ * Fired when a Widget's read only state is toggled
811
+ * @param {object} event Event object
812
+ * @param {boolean} event.readOnly Read only or not
813
+ */
814
+ onReadOnly: any;
815
+ /**
816
+ * This event is fired after a widget's elements have been synchronized due to a direct or indirect call
817
+ * 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.
818
+ */
819
+ onRecompose: any;
820
+ /**
821
+ * 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`*.
822
+ * @param {object} event Event object
823
+ * @param {Core.widget.Widget} event.source This Widget
824
+ * @param {number} event.width The new width
825
+ * @param {number} event.height The new height
826
+ * @param {number} event.oldWidth The old width
827
+ * @param {number} event.oldHeight The old height
828
+ */
829
+ onResize: any;
830
+ /**
831
+ * Triggered after a widget is shown.
832
+ * @param {object} event Event object
833
+ * @param {Core.widget.Widget} event.source The widget
834
+ */
835
+ onShow: any;
836
+ /**
837
+ * Create and append the underlying widget
838
+ */
839
+ ngOnInit(): void;
840
+ /**
841
+ * Watch for changes
842
+ * @param changes
843
+ */
844
+ ngOnChanges(changes: SimpleChanges): void;
845
+ /**
846
+ * Destroy the component
847
+ */
848
+ ngOnDestroy(): void;
849
+ static ɵfac: i0.ɵɵFactoryDeclaration<BryntumModeSelectorComponent, never>;
850
+ static ɵcmp: i0.ɵɵComponentDeclaration<BryntumModeSelectorComponent, "bryntum-mode-selector", never, { "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoUpdateRecord": "autoUpdateRecord"; "bubbleEvents": "bubbleEvents"; "button": "button"; "buttonBar": "buttonBar"; "centered": "centered"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "contentElementCls": "contentElementCls"; "dataField": "dataField"; "defaultBindProperty": "defaultBindProperty"; "defaultFocus": "defaultFocus"; "defaults": "defaults"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "floating": "floating"; "hideAnimation": "hideAnimation"; "hideWhenEmpty": "hideWhenEmpty"; "htmlCls": "htmlCls"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "itemCls": "itemCls"; "lazyItems": "lazyItems"; "listeners": "listeners"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "minifiable": "minifiable"; "minified": "minified"; "monitorResize": "monitorResize"; "namedItems": "namedItems"; "owner": "owner"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "relayStoreEvents": "relayStoreEvents"; "ripple": "ripple"; "rootElement": "rootElement"; "scrollAction": "scrollAction"; "showAnimation": "showAnimation"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "tab": "tab"; "tabBarItems": "tabBarItems"; "tag": "tag"; "textAlign": "textAlign"; "textContent": "textContent"; "title": "title"; "titleProperty": "titleProperty"; "type": "type"; "ui": "ui"; "weight": "weight"; "alignSelf": "alignSelf"; "appendTo": "appendTo"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "cls": "cls"; "column": "column"; "content": "content"; "dataset": "dataset"; "disabled": "disabled"; "extraData": "extraData"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "html": "html"; "id": "id"; "inputFieldAlign": "inputFieldAlign"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "items": "items"; "keyMap": "keyMap"; "labelPosition": "labelPosition"; "layout": "layout"; "layoutStyle": "layoutStyle"; "margin": "margin"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "readOnly": "readOnly"; "record": "record"; "rendition": "rendition"; "rtl": "rtl"; "scrollable": "scrollable"; "span": "span"; "strictRecordMapping": "strictRecordMapping"; "tooltip": "tooltip"; "width": "width"; "x": "x"; "y": "y"; "anchorSize": "anchorSize"; "focusVisible": "focusVisible"; "hasChanges": "hasChanges"; "isSettingValues": "isSettingValues"; "isValid": "isValid"; "parent": "parent"; "values": "values"; }, { "onBeforeDestroy": "onBeforeDestroy"; "onBeforeHide": "onBeforeHide"; "onBeforeSetRecord": "onBeforeSetRecord"; "onBeforeShow": "onBeforeShow"; "onCatchAll": "onCatchAll"; "onDestroy": "onDestroy"; "onDirtyStateChange": "onDirtyStateChange"; "onElementCreated": "onElementCreated"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onHide": "onHide"; "onPaint": "onPaint"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onResize": "onResize"; "onShow": "onShow"; }, never, never>;
851
+ }