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