@bryntum/grid-angular-thin 7.2.4 → 7.3.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 (43) hide show
  1. package/README.md +5 -5
  2. package/bundles/bryntum-grid-angular-thin.umd.js +773 -230
  3. package/bundles/bryntum-grid-angular-thin.umd.js.map +1 -1
  4. package/esm2015/lib/bryntum-a-i-filter-field.component.js +66 -14
  5. package/esm2015/lib/bryntum-checklist-filter-combo.component.js +66 -14
  6. package/esm2015/lib/bryntum-grid-base.component.js +78 -35
  7. package/esm2015/lib/bryntum-grid-chart-designer.component.js +61 -12
  8. package/esm2015/lib/bryntum-grid-field-filter-picker-group.component.js +65 -21
  9. package/esm2015/lib/bryntum-grid-field-filter-picker.component.js +65 -21
  10. package/esm2015/lib/bryntum-grid.component.js +78 -35
  11. package/esm2015/lib/bryntum-group-bar.component.js +61 -12
  12. package/esm2015/lib/bryntum-tree-combo.component.js +66 -14
  13. package/esm2015/lib/bryntum-tree-grid.component.js +78 -35
  14. package/esm2015/lib/grid.module.js +5 -4
  15. package/esm2015/lib/shadowdom.helper.js +82 -0
  16. package/fesm2015/bryntum-grid-angular-thin.js +750 -207
  17. package/fesm2015/bryntum-grid-angular-thin.js.map +1 -1
  18. package/lib/bryntum-a-i-filter-field.component.d.ts +97 -133
  19. package/lib/bryntum-checklist-filter-combo.component.d.ts +116 -166
  20. package/lib/bryntum-grid-base.component.d.ts +238 -303
  21. package/lib/bryntum-grid-chart-designer.component.d.ts +71 -108
  22. package/lib/bryntum-grid-field-filter-picker-group.component.d.ts +93 -143
  23. package/lib/bryntum-grid-field-filter-picker.component.d.ts +94 -145
  24. package/lib/bryntum-grid.component.d.ts +238 -303
  25. package/lib/bryntum-group-bar.component.d.ts +77 -118
  26. package/lib/bryntum-tree-combo.component.d.ts +117 -168
  27. package/lib/bryntum-tree-grid.component.d.ts +238 -303
  28. package/lib/grid.module.d.ts +2 -1
  29. package/lib/shadowdom.helper.d.ts +3 -0
  30. package/package.json +1 -1
  31. package/src/lib/bryntum-a-i-filter-field.component.ts +159 -142
  32. package/src/lib/bryntum-checklist-filter-combo.component.ts +179 -176
  33. package/src/lib/bryntum-grid-base.component.ts +300 -344
  34. package/src/lib/bryntum-grid-chart-designer.component.ts +127 -113
  35. package/src/lib/bryntum-grid-field-filter-picker-group.component.ts +154 -154
  36. package/src/lib/bryntum-grid-field-filter-picker.component.ts +153 -154
  37. package/src/lib/bryntum-grid.component.ts +300 -344
  38. package/src/lib/bryntum-group-bar.component.ts +134 -124
  39. package/src/lib/bryntum-theme-combo.component.ts +127 -0
  40. package/src/lib/bryntum-tree-combo.component.ts +179 -177
  41. package/src/lib/bryntum-tree-grid.component.ts +300 -344
  42. package/src/lib/grid.module.ts +2 -1
  43. package/src/lib/shadowdom.helper.ts +91 -0
@@ -2,21 +2,19 @@
2
2
  * Angular wrapper for Bryntum AIFilterField
3
3
  */
4
4
  import { ElementRef, SimpleChanges, OnDestroy, OnInit } from '@angular/core';
5
- import { AlignSpec, Base, Color, DomConfig, Field, FieldContainer, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, MaskConfig, Rectangle, Scroller, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
5
+ import { AlignSpec, Base, Color, DomConfig, Field, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, MaskConfig, ReactJSX, Rectangle, Scroller, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
6
6
  import { AIFilterField, AIFilterFieldListeners, GridContainerItemConfig, Grid } from '@bryntum/grid-thin';
7
7
  import * as i0 from "@angular/core";
8
8
  export declare type BryntumAIFilterFieldProps = {
9
9
  /**
10
10
  * Element (or element id) to adopt as this Widget's encapsulating element. The widget's
11
11
  * content will be placed inside this element.
12
- * ...
13
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-adopt)
12
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-adopt)
14
13
  */
15
14
  adopt?: HTMLElement | string;
16
15
  /**
17
16
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
18
- * ...
19
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-align)
17
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-align)
20
18
  */
21
19
  align?: AlignSpec | string;
22
20
  /**
@@ -38,15 +36,13 @@ export declare type BryntumAIFilterFieldProps = {
38
36
  /**
39
37
  * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject
40
38
  * into an element which will be linked using the `aria-describedby` attribute.
41
- * ...
42
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ariaDescription)
39
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ariaDescription)
43
40
  */
44
41
  ariaDescription?: string;
45
42
  /**
46
43
  * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as
47
44
  * the `aria-label` attribute.
48
- * ...
49
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ariaLabel)
45
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ariaLabel)
50
46
  */
51
47
  ariaLabel?: string;
52
48
  /**
@@ -65,21 +61,18 @@ export declare type BryntumAIFilterFieldProps = {
65
61
  /**
66
62
  * An object where property names with a truthy value indicate which events should bubble up the ownership
67
63
  * hierarchy when triggered.
68
- * ...
69
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-bubbleEvents)
64
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-bubbleEvents)
70
65
  */
71
66
  bubbleEvents?: object;
72
67
  /**
73
68
  * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
74
- * ...
75
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-callOnFunctions)
69
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-callOnFunctions)
76
70
  */
77
71
  callOnFunctions?: boolean;
78
72
  /**
79
73
  * By default, if an event handler throws an exception, the error propagates up the stack and the
80
74
  * application state is undefined. Code which follows the event handler will *not* be executed.
81
- * ...
82
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-catchEventHandlerExceptions)
75
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-catchEventHandlerExceptions)
83
76
  */
84
77
  catchEventHandlerExceptions?: boolean;
85
78
  /**
@@ -87,6 +80,15 @@ export declare type BryntumAIFilterFieldProps = {
87
80
  * Set to `true` to centre the Widget in browser viewport space.
88
81
  */
89
82
  centered?: boolean;
83
+ /**
84
+ * A function (or the name of a function in the ownership hierarchy) called during field validation
85
+ * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
86
+ * evaluation, after the built-in [required](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-required) check.
87
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-checkValidity)
88
+ * @param {Core.widget.Field} field The field being validated
89
+ * @returns {void}
90
+ */
91
+ checkValidity?: ((field: Field) => void) | string;
90
92
  /**
91
93
  * Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
92
94
  * in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
@@ -102,15 +104,13 @@ export declare type BryntumAIFilterFieldProps = {
102
104
  * Custom CSS classes to add to element.
103
105
  * May be specified as a space separated string, or as an object in which property names
104
106
  * with truthy values are used as the class names:
105
- * ...
106
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-cls)
107
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-cls)
107
108
  */
108
109
  cls?: string | object;
109
110
  /**
110
111
  * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
111
112
  * `style` block.
112
- * ...
113
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-color)
113
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-color)
114
114
  */
115
115
  color?: Color;
116
116
  /**
@@ -127,15 +127,13 @@ export declare type BryntumAIFilterFieldProps = {
127
127
  * The configuration for additional items associated to this field. This is typically used to add contextual
128
128
  * fields related to a [checkbox](https://bryntum.com/products/grid/docs/api/Core/widget/Checkbox) or [radio button](#Core/widget/Radio). See
129
129
  * these classes for examples of nested fields.
130
- * ...
131
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-container)
130
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-container)
132
131
  */
133
- container?: Record<string, GridContainerItemConfig> | GridContainerItemConfig[] | FieldContainerConfig | FieldContainer;
132
+ container?: Record<string, GridContainerItemConfig> | GridContainerItemConfig[] | FieldContainerConfig;
134
133
  /**
135
134
  * The config controls how the value of nested items are handled when a parent container gets or sets its
136
135
  * [values](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-values).
137
- * ...
138
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-containValues)
136
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-containValues)
139
137
  * @param {Core.widget.Field} field Field instance
140
138
  * @returns {boolean}
141
139
  */
@@ -144,8 +142,7 @@ export declare type BryntumAIFilterFieldProps = {
144
142
  * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
145
143
  * May be specified as a space separated string, or as an object in which property names
146
144
  * with truthy values are used as the class names:
147
- * ...
148
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-contentElementCls)
145
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-contentElementCls)
149
146
  */
150
147
  contentElementCls?: string | object;
151
148
  /**
@@ -163,16 +160,15 @@ export declare type BryntumAIFilterFieldProps = {
163
160
  */
164
161
  defaultBindProperty?: string;
165
162
  /**
166
- * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:
167
- * ...
168
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-detectCSSCompatibilityIssues)
163
+ * Check for CSS compatibility and inclusion related issues and try to auto fix them. Performs the following
164
+ * checks:
165
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-detectCSSCompatibilityIssues)
169
166
  */
170
167
  detectCSSCompatibilityIssues?: boolean;
171
168
  /**
172
169
  * Disable or enable the widget. It is similar to [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-readOnly) except a disabled widget
173
170
  * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.
174
- * ...
175
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-disabled)
171
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-disabled)
176
172
  */
177
173
  disabled?: boolean | 'inert';
178
174
  /**
@@ -180,33 +176,28 @@ export declare type BryntumAIFilterFieldProps = {
180
176
  * [strips collection](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
181
177
  * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
182
178
  * body. Such widgets are called "edge strips".
183
- * ...
184
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-dock)
179
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-dock)
185
180
  */
186
181
  dock?: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
187
182
  /**
188
183
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
189
184
  * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
190
185
  * property which controls when a drag should start.
191
- * ...
192
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-draggable)
186
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-draggable)
187
+ * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
193
188
  */
194
- draggable?: boolean | {
195
- handleSelector?: string;
196
- };
189
+ draggable?: boolean | object;
197
190
  /**
198
191
  * Set to `false` to prevent user from editing the field. For TextFields it is basically the same as setting
199
192
  * [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly), but for PickerFields there is a distinction where it allows you to pick a value
200
193
  * but not to type one in the field.
201
- * ...
202
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-editable)
194
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-editable)
203
195
  */
204
196
  editable?: boolean;
205
197
  /**
206
198
  * An object specifying attributes to assign to the root element of this widget.
207
199
  * Set `null` value to attribute to remove it.
208
- * ...
209
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-elementAttributes)
200
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-elementAttributes)
210
201
  */
211
202
  elementAttributes?: Record<string, string | null>;
212
203
  extraData?: any;
@@ -235,8 +226,7 @@ export declare type BryntumAIFilterFieldProps = {
235
226
  hidden?: boolean;
236
227
  /**
237
228
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
238
- * ...
239
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-hideAnimation)
229
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-hideAnimation)
240
230
  */
241
231
  hideAnimation?: boolean | object;
242
232
  /**
@@ -246,8 +236,7 @@ export declare type BryntumAIFilterFieldProps = {
246
236
  /**
247
237
  * An optional string to display inside the input field as an overlay. This can be useful for displaying
248
238
  * a field's units.
249
- * ...
250
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-hint)
239
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-hint)
251
240
  * @param {object} data A data object
252
241
  * @param {Core.widget.Field} data.source A reference to the field instance
253
242
  * @param {any} data.value The current value of the field
@@ -261,8 +250,7 @@ export declare type BryntumAIFilterFieldProps = {
261
250
  * This config is similar to [hint](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-hint) except that this config is used to display HTML content.
262
251
  * Since this can allow malicious content to be executed, be sure not to include user-entered data or to
263
252
  * encode such data (see [encodeHtml](https://bryntum.com/products/grid/docs/api/Core/helper/StringHelper#function-encodeHtml-static)).
264
- * ...
265
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-hintHtml)
253
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-hintHtml)
266
254
  * @param {object} data A data object
267
255
  * @param {Core.widget.Field} data.source A reference to the field instance
268
256
  * @param {any} data.value The current value of the field
@@ -278,16 +266,14 @@ export declare type BryntumAIFilterFieldProps = {
278
266
  id?: string;
279
267
  /**
280
268
  * Determines if the widgets read-only state should be controlled by its parent.
281
- * ...
282
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ignoreParentReadOnly)
269
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ignoreParentReadOnly)
283
270
  */
284
271
  ignoreParentReadOnly?: boolean;
285
272
  /**
286
273
  * Set this config to `true` to always display items horizontally along with this field. This assigns an
287
274
  * [hbox](https://bryntum.com/products/grid/docs/api/Core/widget/layout/Box) as the [layout](#Core/widget/Container#config-layout) to the
288
275
  * [container](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-container).
289
- * ...
290
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-inline)
276
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-inline)
291
277
  */
292
278
  inline?: boolean;
293
279
  /**
@@ -327,16 +313,14 @@ export declare type BryntumAIFilterFieldProps = {
327
313
  * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name
328
314
  * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values
329
315
  * are the name of the instance method to call when the keystroke is received.
330
- * ...
331
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-keyMap)
316
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-keyMap)
332
317
  */
333
318
  keyMap?: Record<string, KeyMapConfig>;
334
319
  /**
335
320
  * The delay in milliseconds to wait after the last keystroke before triggering a change event.
336
321
  * Set to 0 to not trigger change events from keystrokes (listen for input event instead to have
337
322
  * immediate feedback, change will still be triggered on blur).
338
- * ...
339
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-keyStrokeChangeDelay)
323
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-keyStrokeChangeDelay)
340
324
  */
341
325
  keyStrokeChangeDelay?: number;
342
326
  /**
@@ -349,15 +333,15 @@ export declare type BryntumAIFilterFieldProps = {
349
333
  labelCls?: string | object;
350
334
  /**
351
335
  * Label position, either 'before' the field or 'above' the field
352
- * ...
353
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-labelPosition)
336
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-labelPosition)
354
337
  */
355
338
  labelPosition?: 'before' | 'above' | null;
356
339
  /**
357
340
  * The labels to add either before or after the input field.
358
341
  * Each label may have the following properties:
359
- * ...
360
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-labels)
342
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-labels)
343
+ * @property {string} html Label text
344
+ * @property {'start','end'} align Which end of the file the label should go
361
345
  */
362
346
  labels?: object[];
363
347
  /**
@@ -366,16 +350,14 @@ export declare type BryntumAIFilterFieldProps = {
366
350
  labelWidth?: string | number;
367
351
  /**
368
352
  * The listener set for this object.
369
- * ...
370
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-listeners)
353
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-listeners)
371
354
  */
372
355
  listeners?: AIFilterFieldListeners;
373
356
  /**
374
357
  * A class translations of which are used for translating this entity.
375
358
  * This is often used when translations of an item are defined on its container class.
376
359
  * For example:
377
- * ...
378
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-localeClass)
360
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-localeClass)
379
361
  */
380
362
  localeClass?: typeof Base;
381
363
  /**
@@ -387,8 +369,7 @@ export declare type BryntumAIFilterFieldProps = {
387
369
  * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),
388
370
  * you could use 'localeKey' meta configuration.
389
371
  * Example:
390
- * ...
391
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-localizableProperties)
372
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-localizableProperties)
392
373
  */
393
374
  localizableProperties?: string[];
394
375
  /**
@@ -414,8 +395,7 @@ export declare type BryntumAIFilterFieldProps = {
414
395
  maxHeight?: string | number;
415
396
  /**
416
397
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
417
- * ...
418
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-maximizeOnMobile)
398
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-maximizeOnMobile)
419
399
  */
420
400
  maximizeOnMobile?: number | string;
421
401
  /**
@@ -445,18 +425,15 @@ export declare type BryntumAIFilterFieldProps = {
445
425
  * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)
446
426
  * is used to monitor this element for size changes caused by either style manipulation, or by CSS
447
427
  * layout.
448
- * ...
449
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-monitorResize)
428
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-monitorResize)
429
+ * @property {boolean} immediate Set to `true` to receive resize notifications immediately.
450
430
  */
451
- monitorResize?: boolean | {
452
- immediate?: boolean;
453
- };
431
+ monitorResize?: boolean | object;
454
432
  /**
455
433
  * Name of the field which is used as a key to get/set values from/to the field.
456
434
  * Used prior to [ref](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-ref) and [id](#Core/widget/Widget#config-id) in
457
435
  * [Container.values](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-values).
458
- * ...
459
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-name)
436
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-name)
460
437
  */
461
438
  name?: string;
462
439
  /**
@@ -467,8 +444,7 @@ export declare type BryntumAIFilterFieldProps = {
467
444
  * Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement), but must
468
445
  * not participate in the standard layout of that widget, and must be positioned relatively to that
469
446
  * widget's [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
470
- * ...
471
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-positioned)
447
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-positioned)
472
448
  */
473
449
  positioned?: boolean;
474
450
  /**
@@ -483,15 +459,13 @@ export declare type BryntumAIFilterFieldProps = {
483
459
  /**
484
460
  * Makes the field unmodifiable by user action. The input area is not editable, and triggers
485
461
  * are unresponsive.
486
- * ...
487
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-readOnly)
462
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-readOnly)
488
463
  */
489
464
  readOnly?: boolean;
490
465
  relayStoreEvents?: boolean;
491
466
  /**
492
467
  * Predefined style to use for the field. Possible values are:
493
- * ...
494
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-rendition)
468
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-rendition)
495
469
  */
496
470
  rendition?: 'outlined' | 'filled' | string;
497
471
  /**
@@ -510,23 +484,26 @@ export declare type BryntumAIFilterFieldProps = {
510
484
  * Configure as `true` to have the component display a translucent ripple when its
511
485
  * [focusElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-focusElement), or [element](#Core/widget/Widget#property-element) is tapped <em>if the
512
486
  * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.
513
- * ...
514
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ripple)
487
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ripple)
488
+ * @property {string} [delegate] A CSS selector to filter which child elements trigger ripples. By default, the ripple is clipped to the triggering element.
489
+ * @property {string} [color] A CSS color name or specification.
490
+ * @property {number} [radius] The ending radius of the ripple. Note that it will be clipped by the target element by default.
491
+ * @property {string} [clip] A string which describes how to clip the ripple if it is not to be clipped to the default element. Either the property of the widget to use as the clipping element, or a selector to allow clipping to the closest matching ancestor to the target element.
492
+ */
493
+ ripple?: boolean | object;
494
+ /**
495
+ * The ARIA role to apply to this widget's element. By default, this is set to `'presentation'` to avoid
496
+ * accidentally applying a role which may interfere with screen readers.
497
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-role)
515
498
  */
516
- ripple?: boolean | {
517
- delegate?: string;
518
- color?: string;
519
- radius?: number;
520
- clip?: string;
521
- };
499
+ role?: string;
522
500
  /**
523
501
  * 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`
524
502
  */
525
503
  rootElement?: ShadowRoot | HTMLElement;
526
504
  /**
527
505
  * This may be configured as `true` to make the widget's element use the `direction:rtl` style.
528
- * ...
529
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-rtl)
506
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-rtl)
530
507
  */
531
508
  rtl?: boolean;
532
509
  /**
@@ -536,8 +513,7 @@ export declare type BryntumAIFilterFieldProps = {
536
513
  scrollAction?: 'hide' | 'realign' | null;
537
514
  /**
538
515
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
539
- * ...
540
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-showAnimation)
516
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-showAnimation)
541
517
  */
542
518
  showAnimation?: boolean | object;
543
519
  /**
@@ -566,8 +542,7 @@ export declare type BryntumAIFilterFieldProps = {
566
542
  * A configuration for the [tab](https://bryntum.com/products/grid/docs/api/Core/widget/Tab) created for this widget when it is placed in a
567
543
  * [TabPanel](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel). For example, this config can be used to control the icon of the `tab` for
568
544
  * this widget:
569
- * ...
570
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-tab)
545
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-tab)
571
546
  */
572
547
  tab?: boolean | TabConfig;
573
548
  /**
@@ -575,14 +550,12 @@ export declare type BryntumAIFilterFieldProps = {
575
550
  * is equivalent to natural tab order, but is unnecessary for fields since they are naturally tabbable
576
551
  * (i.e., accessible via the TAB key). Setting to `-1` disables tabbability but allows for focus to be set
577
552
  * to the element programmatically.
578
- * ...
579
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-tabIndex)
553
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-tabIndex)
580
554
  */
581
555
  tabIndex?: number;
582
556
  /**
583
557
  * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.
584
- * ...
585
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-textAlign)
558
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-textAlign)
586
559
  */
587
560
  textAlign?: 'left' | 'center' | 'right' | 'start' | 'end';
588
561
  /**
@@ -591,24 +564,21 @@ export declare type BryntumAIFilterFieldProps = {
591
564
  title?: string;
592
565
  /**
593
566
  * Tooltip for the widget, either as a string or as a Tooltip config object.
594
- * ...
595
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-tooltip)
567
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-tooltip)
596
568
  */
597
569
  tooltip?: string | TooltipConfig | null;
598
570
  /**
599
571
  * The triggers to add either before or after the input field. Each property name is the reference by which
600
572
  * an instantiated Trigger Widget may be retrieved from the live `triggers` property.
601
- * ...
602
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-triggers)
573
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-triggers)
603
574
  */
604
- triggers?: Record<string, FieldTriggerConfig> | Record<string, Widget>;
575
+ triggers?: Record<string, FieldTriggerConfig>;
605
576
  type?: 'aifilterfield';
606
577
  /**
607
578
  * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
608
579
  * as a space separated string, an array of strings, or as an object in which property names with truthy
609
580
  * values are used as the class names.
610
- * ...
611
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ui)
581
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ui)
612
582
  */
613
583
  ui?: string | object;
614
584
  /**
@@ -633,14 +603,12 @@ export declare type BryntumAIFilterFieldProps = {
633
603
  width?: string | number;
634
604
  /**
635
605
  * The x position for the widget.
636
- * ...
637
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-x)
606
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-x)
638
607
  */
639
608
  x?: number;
640
609
  /**
641
610
  * The y position for the widget.
642
- * ...
643
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-y)
611
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-y)
644
612
  */
645
613
  y?: number;
646
614
  };
@@ -665,21 +633,20 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
665
633
  autoSelect: boolean;
666
634
  bubbleEvents: object;
667
635
  centered: boolean;
636
+ checkValidity: ((field: Field) => void) | string;
668
637
  clearable: boolean | FieldTriggerConfig;
669
638
  client: Grid;
670
639
  color: Color;
671
640
  config: object;
672
641
  constrainTo: HTMLElement | Widget | Rectangle;
673
- container: Record<string, GridContainerItemConfig> | GridContainerItemConfig[] | FieldContainerConfig | FieldContainer;
642
+ container: Record<string, GridContainerItemConfig> | GridContainerItemConfig[] | FieldContainerConfig;
674
643
  containValues: boolean | string | ((field: Field) => boolean);
675
644
  contentElementCls: string | object;
676
645
  dataField: string;
677
646
  defaultBindProperty: string;
678
647
  detectCSSCompatibilityIssues: boolean;
679
648
  dock: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
680
- draggable: boolean | {
681
- handleSelector?: string;
682
- };
649
+ draggable: boolean | object;
683
650
  elementAttributes: Record<string, string | null>;
684
651
  floating: boolean;
685
652
  hideAnimation: boolean | object;
@@ -712,21 +679,15 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
712
679
  masked: boolean | string | MaskConfig;
713
680
  maxLength: number;
714
681
  minLength: number;
715
- monitorResize: boolean | {
716
- immediate?: boolean;
717
- };
682
+ monitorResize: boolean | object;
718
683
  name: string;
719
684
  positioned: boolean;
720
685
  preventTooltipOnTouch: boolean;
721
686
  progressText: string;
722
687
  relayStoreEvents: boolean;
723
688
  revertOnEscape: boolean;
724
- ripple: boolean | {
725
- delegate?: string;
726
- color?: string;
727
- radius?: number;
728
- clip?: string;
729
- };
689
+ ripple: boolean | object;
690
+ role: string;
730
691
  rootElement: ShadowRoot | HTMLElement;
731
692
  scrollAction: 'hide' | 'realign' | null;
732
693
  showAnimation: boolean | object;
@@ -779,11 +740,9 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
779
740
  width: number | string;
780
741
  x: number;
781
742
  y: number;
782
- anchorSize: number[];
783
743
  content: string;
784
- focusVisible: boolean;
785
744
  formula: string;
786
- html: string | ((widget: Widget) => string) | DomConfig | DomConfig[] | VueConfig;
745
+ html: string | ((widget: Widget) => void) | DomConfig | DomConfig[] | VueConfig | ReactJSX;
787
746
  input: HTMLElement;
788
747
  parent: Widget;
789
748
  scrollable: Scroller;
@@ -821,8 +780,7 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
821
780
  onBeforeShow: any;
822
781
  /**
823
782
  * Fires when any other event is fired from the object.
824
- * ...
825
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#event-catchAll)
783
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#event-catchAll)
826
784
  * @param {object} event Event object
827
785
  * @param {{[key: string]: any, type: string}} event.event The Object that contains event details
828
786
  * @param {string} event.event.type The type of the event which is caught by the listener
@@ -842,8 +800,7 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
842
800
  onChange: any;
843
801
  /**
844
802
  * Fired when this field is [cleared](https://bryntum.com/products/grid/docs/api/Core/widget/Field#function-clear).
845
- * ...
846
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#event-clear)
803
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#event-clear)
847
804
  * @param {object} event Event object
848
805
  * @param {Core.widget.Field,any} event.source This Field
849
806
  */
@@ -901,8 +858,7 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
901
858
  /**
902
859
  * Triggered when a widget which had been in a non-visible state for any reason
903
860
  * achieves visibility.
904
- * ...
905
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#event-paint)
861
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#event-paint)
906
862
  * @param {object} event Event object
907
863
  * @param {Core.widget.Widget} event.source The widget being painted.
908
864
  * @param {boolean} event.firstPaint `true` if this is the first paint.
@@ -946,6 +902,14 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
946
902
  * Create and append the underlying widget
947
903
  */
948
904
  ngOnInit(): void;
905
+ /**
906
+ * Extracts all @font-face declarations from a shadow root's stylesheets and adds them to
907
+ * document.head as a single <style> element. This is needed because @font-face rules inside
908
+ * a shadow root are not reliably included in document.fonts across all browsers, causing
909
+ * Bryntum's CSS compatibility check to incorrectly report missing fonts.
910
+ * Safe to call multiple times — the extraction runs only once per page.
911
+ */
912
+ private static ensureFontsInDocument;
949
913
  /**
950
914
  * Watch for changes
951
915
  * @param changes
@@ -956,5 +920,5 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
956
920
  */
957
921
  ngOnDestroy(): void;
958
922
  static ɵfac: i0.ɵɵFactoryDeclaration<BryntumAIFilterFieldComponent, never>;
959
- static ɵcmp: i0.ɵɵComponentDeclaration<BryntumAIFilterFieldComponent, "bryntum-a-i-filter-field", never, { "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoComplete": "autoComplete"; "autoSelect": "autoSelect"; "bubbleEvents": "bubbleEvents"; "centered": "centered"; "clearable": "clearable"; "client": "client"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "container": "container"; "containValues": "containValues"; "contentElementCls": "contentElementCls"; "dataField": "dataField"; "defaultBindProperty": "defaultBindProperty"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "floating": "floating"; "hideAnimation": "hideAnimation"; "highlightExternalChange": "highlightExternalChange"; "hint": "hint"; "hintHtml": "hintHtml"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "inline": "inline"; "inputAlign": "inputAlign"; "inputAttributes": "inputAttributes"; "inputTag": "inputTag"; "inputType": "inputType"; "inputWidth": "inputWidth"; "keyStrokeChangeDelay": "keyStrokeChangeDelay"; "labelCls": "labelCls"; "labelPosition": "labelPosition"; "labels": "labels"; "labelWidth": "labelWidth"; "listeners": "listeners"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "maxLength": "maxLength"; "minLength": "minLength"; "monitorResize": "monitorResize"; "name": "name"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "progressText": "progressText"; "relayStoreEvents": "relayStoreEvents"; "revertOnEscape": "revertOnEscape"; "ripple": "ripple"; "rootElement": "rootElement"; "scrollAction": "scrollAction"; "showAnimation": "showAnimation"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "skipValidation": "skipValidation"; "spellCheck": "spellCheck"; "tab": "tab"; "tabIndex": "tabIndex"; "textAlign": "textAlign"; "title": "title"; "type": "type"; "ui": "ui"; "validateOnInput": "validateOnInput"; "weight": "weight"; "alignSelf": "alignSelf"; "appendTo": "appendTo"; "badge": "badge"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "cls": "cls"; "column": "column"; "dataset": "dataset"; "disabled": "disabled"; "editable": "editable"; "extraData": "extraData"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "id": "id"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "keyMap": "keyMap"; "label": "label"; "margin": "margin"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "placeholder": "placeholder"; "readOnly": "readOnly"; "rendition": "rendition"; "required": "required"; "rtl": "rtl"; "showRequiredIndicator": "showRequiredIndicator"; "span": "span"; "tooltip": "tooltip"; "triggers": "triggers"; "value": "value"; "width": "width"; "x": "x"; "y": "y"; "anchorSize": "anchorSize"; "content": "content"; "focusVisible": "focusVisible"; "formula": "formula"; "html": "html"; "input": "input"; "parent": "parent"; "scrollable": "scrollable"; }, { "onAction": "onAction"; "onBeforeDestroy": "onBeforeDestroy"; "onBeforeHide": "onBeforeHide"; "onBeforeShow": "onBeforeShow"; "onCatchAll": "onCatchAll"; "onChange": "onChange"; "onClear": "onClear"; "onDestroy": "onDestroy"; "onElementCreated": "onElementCreated"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onHide": "onHide"; "onInput": "onInput"; "onPaint": "onPaint"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onResize": "onResize"; "onShow": "onShow"; "onTrigger": "onTrigger"; }, never, never>;
923
+ static ɵcmp: i0.ɵɵComponentDeclaration<BryntumAIFilterFieldComponent, "bryntum-a-i-filter-field", never, { "adopt": "adopt"; "align": "align"; "anchor": "anchor"; "ariaDescription": "ariaDescription"; "ariaLabel": "ariaLabel"; "autoComplete": "autoComplete"; "autoSelect": "autoSelect"; "bubbleEvents": "bubbleEvents"; "centered": "centered"; "checkValidity": "checkValidity"; "clearable": "clearable"; "client": "client"; "color": "color"; "config": "config"; "constrainTo": "constrainTo"; "container": "container"; "containValues": "containValues"; "contentElementCls": "contentElementCls"; "dataField": "dataField"; "defaultBindProperty": "defaultBindProperty"; "detectCSSCompatibilityIssues": "detectCSSCompatibilityIssues"; "dock": "dock"; "draggable": "draggable"; "elementAttributes": "elementAttributes"; "floating": "floating"; "hideAnimation": "hideAnimation"; "highlightExternalChange": "highlightExternalChange"; "hint": "hint"; "hintHtml": "hintHtml"; "ignoreParentReadOnly": "ignoreParentReadOnly"; "inline": "inline"; "inputAlign": "inputAlign"; "inputAttributes": "inputAttributes"; "inputTag": "inputTag"; "inputType": "inputType"; "inputWidth": "inputWidth"; "keyStrokeChangeDelay": "keyStrokeChangeDelay"; "labelCls": "labelCls"; "labelPosition": "labelPosition"; "labels": "labels"; "labelWidth": "labelWidth"; "listeners": "listeners"; "localeClass": "localeClass"; "localizable": "localizable"; "localizableProperties": "localizableProperties"; "maskDefaults": "maskDefaults"; "masked": "masked"; "maxLength": "maxLength"; "minLength": "minLength"; "monitorResize": "monitorResize"; "name": "name"; "positioned": "positioned"; "preventTooltipOnTouch": "preventTooltipOnTouch"; "progressText": "progressText"; "relayStoreEvents": "relayStoreEvents"; "revertOnEscape": "revertOnEscape"; "ripple": "ripple"; "role": "role"; "rootElement": "rootElement"; "scrollAction": "scrollAction"; "showAnimation": "showAnimation"; "showTooltipWhenDisabled": "showTooltipWhenDisabled"; "skipValidation": "skipValidation"; "spellCheck": "spellCheck"; "tab": "tab"; "tabIndex": "tabIndex"; "textAlign": "textAlign"; "title": "title"; "type": "type"; "ui": "ui"; "validateOnInput": "validateOnInput"; "weight": "weight"; "alignSelf": "alignSelf"; "appendTo": "appendTo"; "badge": "badge"; "callOnFunctions": "callOnFunctions"; "catchEventHandlerExceptions": "catchEventHandlerExceptions"; "cls": "cls"; "column": "column"; "dataset": "dataset"; "disabled": "disabled"; "editable": "editable"; "extraData": "extraData"; "flex": "flex"; "height": "height"; "hidden": "hidden"; "id": "id"; "insertBefore": "insertBefore"; "insertFirst": "insertFirst"; "keyMap": "keyMap"; "label": "label"; "margin": "margin"; "maxHeight": "maxHeight"; "maximizeOnMobile": "maximizeOnMobile"; "maxWidth": "maxWidth"; "minHeight": "minHeight"; "minWidth": "minWidth"; "placeholder": "placeholder"; "readOnly": "readOnly"; "rendition": "rendition"; "required": "required"; "rtl": "rtl"; "showRequiredIndicator": "showRequiredIndicator"; "span": "span"; "tooltip": "tooltip"; "triggers": "triggers"; "value": "value"; "width": "width"; "x": "x"; "y": "y"; "content": "content"; "formula": "formula"; "html": "html"; "input": "input"; "parent": "parent"; "scrollable": "scrollable"; }, { "onAction": "onAction"; "onBeforeDestroy": "onBeforeDestroy"; "onBeforeHide": "onBeforeHide"; "onBeforeShow": "onBeforeShow"; "onCatchAll": "onCatchAll"; "onChange": "onChange"; "onClear": "onClear"; "onDestroy": "onDestroy"; "onElementCreated": "onElementCreated"; "onFocusIn": "onFocusIn"; "onFocusOut": "onFocusOut"; "onHide": "onHide"; "onInput": "onInput"; "onPaint": "onPaint"; "onReadOnly": "onReadOnly"; "onRecompose": "onRecompose"; "onResize": "onResize"; "onShow": "onShow"; "onTrigger": "onTrigger"; }, never, never>;
960
924
  }