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