@bryntum/grid-angular-thin 7.2.4 → 7.3.0

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 +4 -4
  2. package/bundles/bryntum-grid-angular-thin.umd.js +761 -230
  3. package/bundles/bryntum-grid-angular-thin.umd.js.map +1 -1
  4. package/esm2015/lib/bryntum-a-i-filter-field.component.js +62 -14
  5. package/esm2015/lib/bryntum-checklist-filter-combo.component.js +62 -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 +62 -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 +738 -207
  17. package/fesm2015/bryntum-grid-angular-thin.js.map +1 -1
  18. package/lib/bryntum-a-i-filter-field.component.d.ts +87 -133
  19. package/lib/bryntum-checklist-filter-combo.component.d.ts +106 -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 +107 -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 +146 -141
  32. package/src/lib/bryntum-checklist-filter-combo.component.ts +166 -175
  33. package/src/lib/bryntum-grid-base.component.ts +275 -319
  34. package/src/lib/bryntum-grid-chart-designer.component.ts +126 -112
  35. package/src/lib/bryntum-grid-field-filter-picker-group.component.ts +152 -152
  36. package/src/lib/bryntum-grid-field-filter-picker.component.ts +152 -153
  37. package/src/lib/bryntum-grid.component.ts +275 -319
  38. package/src/lib/bryntum-group-bar.component.ts +132 -122
  39. package/src/lib/bryntum-theme-combo.component.ts +128 -0
  40. package/src/lib/bryntum-tree-combo.component.ts +166 -176
  41. package/src/lib/bryntum-tree-grid.component.ts +275 -319
  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
  /**
@@ -102,15 +95,13 @@ export declare type BryntumAIFilterFieldProps = {
102
95
  * Custom CSS classes to add to element.
103
96
  * May be specified as a space separated string, or as an object in which property names
104
97
  * 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)
98
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-cls)
107
99
  */
108
100
  cls?: string | object;
109
101
  /**
110
102
  * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
111
103
  * `style` block.
112
- * ...
113
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-color)
104
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-color)
114
105
  */
115
106
  color?: Color;
116
107
  /**
@@ -127,15 +118,13 @@ export declare type BryntumAIFilterFieldProps = {
127
118
  * The configuration for additional items associated to this field. This is typically used to add contextual
128
119
  * fields related to a [checkbox](https://bryntum.com/products/grid/docs/api/Core/widget/Checkbox) or [radio button](#Core/widget/Radio). See
129
120
  * these classes for examples of nested fields.
130
- * ...
131
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-container)
121
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-container)
132
122
  */
133
- container?: Record<string, GridContainerItemConfig> | GridContainerItemConfig[] | FieldContainerConfig | FieldContainer;
123
+ container?: Record<string, GridContainerItemConfig> | GridContainerItemConfig[] | FieldContainerConfig;
134
124
  /**
135
125
  * The config controls how the value of nested items are handled when a parent container gets or sets its
136
126
  * [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)
127
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-containValues)
139
128
  * @param {Core.widget.Field} field Field instance
140
129
  * @returns {boolean}
141
130
  */
@@ -144,8 +133,7 @@ export declare type BryntumAIFilterFieldProps = {
144
133
  * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
145
134
  * May be specified as a space separated string, or as an object in which property names
146
135
  * 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)
136
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-contentElementCls)
149
137
  */
150
138
  contentElementCls?: string | object;
151
139
  /**
@@ -163,16 +151,15 @@ export declare type BryntumAIFilterFieldProps = {
163
151
  */
164
152
  defaultBindProperty?: string;
165
153
  /**
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)
154
+ * Check for CSS compatibility and inclusion related issues and try to auto fix them. Performs the following
155
+ * checks:
156
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-detectCSSCompatibilityIssues)
169
157
  */
170
158
  detectCSSCompatibilityIssues?: boolean;
171
159
  /**
172
160
  * 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
161
  * 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)
162
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-disabled)
176
163
  */
177
164
  disabled?: boolean | 'inert';
178
165
  /**
@@ -180,33 +167,28 @@ export declare type BryntumAIFilterFieldProps = {
180
167
  * [strips collection](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
181
168
  * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
182
169
  * body. Such widgets are called "edge strips".
183
- * ...
184
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-dock)
170
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-dock)
185
171
  */
186
172
  dock?: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
187
173
  /**
188
174
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
189
175
  * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
190
176
  * 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)
177
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-draggable)
178
+ * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
193
179
  */
194
- draggable?: boolean | {
195
- handleSelector?: string;
196
- };
180
+ draggable?: boolean | object;
197
181
  /**
198
182
  * Set to `false` to prevent user from editing the field. For TextFields it is basically the same as setting
199
183
  * [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
184
  * 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)
185
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-editable)
203
186
  */
204
187
  editable?: boolean;
205
188
  /**
206
189
  * An object specifying attributes to assign to the root element of this widget.
207
190
  * 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)
191
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-elementAttributes)
210
192
  */
211
193
  elementAttributes?: Record<string, string | null>;
212
194
  extraData?: any;
@@ -235,8 +217,7 @@ export declare type BryntumAIFilterFieldProps = {
235
217
  hidden?: boolean;
236
218
  /**
237
219
  * *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)
220
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-hideAnimation)
240
221
  */
241
222
  hideAnimation?: boolean | object;
242
223
  /**
@@ -246,8 +227,7 @@ export declare type BryntumAIFilterFieldProps = {
246
227
  /**
247
228
  * An optional string to display inside the input field as an overlay. This can be useful for displaying
248
229
  * a field's units.
249
- * ...
250
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-hint)
230
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-hint)
251
231
  * @param {object} data A data object
252
232
  * @param {Core.widget.Field} data.source A reference to the field instance
253
233
  * @param {any} data.value The current value of the field
@@ -261,8 +241,7 @@ export declare type BryntumAIFilterFieldProps = {
261
241
  * 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
242
  * Since this can allow malicious content to be executed, be sure not to include user-entered data or to
263
243
  * 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)
244
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-hintHtml)
266
245
  * @param {object} data A data object
267
246
  * @param {Core.widget.Field} data.source A reference to the field instance
268
247
  * @param {any} data.value The current value of the field
@@ -278,16 +257,14 @@ export declare type BryntumAIFilterFieldProps = {
278
257
  id?: string;
279
258
  /**
280
259
  * 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)
260
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ignoreParentReadOnly)
283
261
  */
284
262
  ignoreParentReadOnly?: boolean;
285
263
  /**
286
264
  * Set this config to `true` to always display items horizontally along with this field. This assigns an
287
265
  * [hbox](https://bryntum.com/products/grid/docs/api/Core/widget/layout/Box) as the [layout](#Core/widget/Container#config-layout) to the
288
266
  * [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)
267
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-inline)
291
268
  */
292
269
  inline?: boolean;
293
270
  /**
@@ -327,16 +304,14 @@ export declare type BryntumAIFilterFieldProps = {
327
304
  * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name
328
305
  * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values
329
306
  * 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)
307
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-keyMap)
332
308
  */
333
309
  keyMap?: Record<string, KeyMapConfig>;
334
310
  /**
335
311
  * The delay in milliseconds to wait after the last keystroke before triggering a change event.
336
312
  * Set to 0 to not trigger change events from keystrokes (listen for input event instead to have
337
313
  * 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)
314
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-keyStrokeChangeDelay)
340
315
  */
341
316
  keyStrokeChangeDelay?: number;
342
317
  /**
@@ -349,15 +324,15 @@ export declare type BryntumAIFilterFieldProps = {
349
324
  labelCls?: string | object;
350
325
  /**
351
326
  * 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)
327
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-labelPosition)
354
328
  */
355
329
  labelPosition?: 'before' | 'above' | null;
356
330
  /**
357
331
  * The labels to add either before or after the input field.
358
332
  * Each label may have the following properties:
359
- * ...
360
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-labels)
333
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-labels)
334
+ * @property {string} html Label text
335
+ * @property {'start','end'} align Which end of the file the label should go
361
336
  */
362
337
  labels?: object[];
363
338
  /**
@@ -366,16 +341,14 @@ export declare type BryntumAIFilterFieldProps = {
366
341
  labelWidth?: string | number;
367
342
  /**
368
343
  * The listener set for this object.
369
- * ...
370
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-listeners)
344
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-listeners)
371
345
  */
372
346
  listeners?: AIFilterFieldListeners;
373
347
  /**
374
348
  * A class translations of which are used for translating this entity.
375
349
  * This is often used when translations of an item are defined on its container class.
376
350
  * For example:
377
- * ...
378
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-localeClass)
351
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-localeClass)
379
352
  */
380
353
  localeClass?: typeof Base;
381
354
  /**
@@ -387,8 +360,7 @@ export declare type BryntumAIFilterFieldProps = {
387
360
  * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),
388
361
  * you could use 'localeKey' meta configuration.
389
362
  * Example:
390
- * ...
391
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-localizableProperties)
363
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-localizableProperties)
392
364
  */
393
365
  localizableProperties?: string[];
394
366
  /**
@@ -414,8 +386,7 @@ export declare type BryntumAIFilterFieldProps = {
414
386
  maxHeight?: string | number;
415
387
  /**
416
388
  * *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)
389
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-maximizeOnMobile)
419
390
  */
420
391
  maximizeOnMobile?: number | string;
421
392
  /**
@@ -445,18 +416,15 @@ export declare type BryntumAIFilterFieldProps = {
445
416
  * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)
446
417
  * is used to monitor this element for size changes caused by either style manipulation, or by CSS
447
418
  * layout.
448
- * ...
449
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-monitorResize)
419
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-monitorResize)
420
+ * @property {boolean} immediate Set to `true` to receive resize notifications immediately.
450
421
  */
451
- monitorResize?: boolean | {
452
- immediate?: boolean;
453
- };
422
+ monitorResize?: boolean | object;
454
423
  /**
455
424
  * Name of the field which is used as a key to get/set values from/to the field.
456
425
  * 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
426
  * [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)
427
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-name)
460
428
  */
461
429
  name?: string;
462
430
  /**
@@ -467,8 +435,7 @@ export declare type BryntumAIFilterFieldProps = {
467
435
  * 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
436
  * not participate in the standard layout of that widget, and must be positioned relatively to that
469
437
  * 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)
438
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-positioned)
472
439
  */
473
440
  positioned?: boolean;
474
441
  /**
@@ -483,15 +450,13 @@ export declare type BryntumAIFilterFieldProps = {
483
450
  /**
484
451
  * Makes the field unmodifiable by user action. The input area is not editable, and triggers
485
452
  * are unresponsive.
486
- * ...
487
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-readOnly)
453
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-readOnly)
488
454
  */
489
455
  readOnly?: boolean;
490
456
  relayStoreEvents?: boolean;
491
457
  /**
492
458
  * 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)
459
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-rendition)
495
460
  */
496
461
  rendition?: 'outlined' | 'filled' | string;
497
462
  /**
@@ -510,23 +475,26 @@ export declare type BryntumAIFilterFieldProps = {
510
475
  * Configure as `true` to have the component display a translucent ripple when its
511
476
  * [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
477
  * 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)
478
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ripple)
479
+ * @property {string} [delegate] A CSS selector to filter which child elements trigger ripples. By default, the ripple is clipped to the triggering element.
480
+ * @property {string} [color] A CSS color name or specification.
481
+ * @property {number} [radius] The ending radius of the ripple. Note that it will be clipped by the target element by default.
482
+ * @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.
515
483
  */
516
- ripple?: boolean | {
517
- delegate?: string;
518
- color?: string;
519
- radius?: number;
520
- clip?: string;
521
- };
484
+ ripple?: boolean | object;
485
+ /**
486
+ * The ARIA role to apply to this widget's element. By default, this is set to `'presentation'` to avoid
487
+ * accidentally applying a role which may interfere with screen readers.
488
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-role)
489
+ */
490
+ role?: string;
522
491
  /**
523
492
  * 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
493
  */
525
494
  rootElement?: ShadowRoot | HTMLElement;
526
495
  /**
527
496
  * 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)
497
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-rtl)
530
498
  */
531
499
  rtl?: boolean;
532
500
  /**
@@ -536,8 +504,7 @@ export declare type BryntumAIFilterFieldProps = {
536
504
  scrollAction?: 'hide' | 'realign' | null;
537
505
  /**
538
506
  * *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)
507
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-showAnimation)
541
508
  */
542
509
  showAnimation?: boolean | object;
543
510
  /**
@@ -566,8 +533,7 @@ export declare type BryntumAIFilterFieldProps = {
566
533
  * 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
534
  * [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
535
  * this widget:
569
- * ...
570
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-tab)
536
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-tab)
571
537
  */
572
538
  tab?: boolean | TabConfig;
573
539
  /**
@@ -575,14 +541,12 @@ export declare type BryntumAIFilterFieldProps = {
575
541
  * is equivalent to natural tab order, but is unnecessary for fields since they are naturally tabbable
576
542
  * (i.e., accessible via the TAB key). Setting to `-1` disables tabbability but allows for focus to be set
577
543
  * to the element programmatically.
578
- * ...
579
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-tabIndex)
544
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-tabIndex)
580
545
  */
581
546
  tabIndex?: number;
582
547
  /**
583
548
  * 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)
549
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-textAlign)
586
550
  */
587
551
  textAlign?: 'left' | 'center' | 'right' | 'start' | 'end';
588
552
  /**
@@ -591,24 +555,21 @@ export declare type BryntumAIFilterFieldProps = {
591
555
  title?: string;
592
556
  /**
593
557
  * 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)
558
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-tooltip)
596
559
  */
597
560
  tooltip?: string | TooltipConfig | null;
598
561
  /**
599
562
  * The triggers to add either before or after the input field. Each property name is the reference by which
600
563
  * 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)
564
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-triggers)
603
565
  */
604
- triggers?: Record<string, FieldTriggerConfig> | Record<string, Widget>;
566
+ triggers?: Record<string, FieldTriggerConfig>;
605
567
  type?: 'aifilterfield';
606
568
  /**
607
569
  * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
608
570
  * as a space separated string, an array of strings, or as an object in which property names with truthy
609
571
  * values are used as the class names.
610
- * ...
611
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ui)
572
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ui)
612
573
  */
613
574
  ui?: string | object;
614
575
  /**
@@ -633,14 +594,12 @@ export declare type BryntumAIFilterFieldProps = {
633
594
  width?: string | number;
634
595
  /**
635
596
  * The x position for the widget.
636
- * ...
637
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-x)
597
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-x)
638
598
  */
639
599
  x?: number;
640
600
  /**
641
601
  * The y position for the widget.
642
- * ...
643
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-y)
602
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-y)
644
603
  */
645
604
  y?: number;
646
605
  };
@@ -670,16 +629,14 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
670
629
  color: Color;
671
630
  config: object;
672
631
  constrainTo: HTMLElement | Widget | Rectangle;
673
- container: Record<string, GridContainerItemConfig> | GridContainerItemConfig[] | FieldContainerConfig | FieldContainer;
632
+ container: Record<string, GridContainerItemConfig> | GridContainerItemConfig[] | FieldContainerConfig;
674
633
  containValues: boolean | string | ((field: Field) => boolean);
675
634
  contentElementCls: string | object;
676
635
  dataField: string;
677
636
  defaultBindProperty: string;
678
637
  detectCSSCompatibilityIssues: boolean;
679
638
  dock: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
680
- draggable: boolean | {
681
- handleSelector?: string;
682
- };
639
+ draggable: boolean | object;
683
640
  elementAttributes: Record<string, string | null>;
684
641
  floating: boolean;
685
642
  hideAnimation: boolean | object;
@@ -712,21 +669,15 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
712
669
  masked: boolean | string | MaskConfig;
713
670
  maxLength: number;
714
671
  minLength: number;
715
- monitorResize: boolean | {
716
- immediate?: boolean;
717
- };
672
+ monitorResize: boolean | object;
718
673
  name: string;
719
674
  positioned: boolean;
720
675
  preventTooltipOnTouch: boolean;
721
676
  progressText: string;
722
677
  relayStoreEvents: boolean;
723
678
  revertOnEscape: boolean;
724
- ripple: boolean | {
725
- delegate?: string;
726
- color?: string;
727
- radius?: number;
728
- clip?: string;
729
- };
679
+ ripple: boolean | object;
680
+ role: string;
730
681
  rootElement: ShadowRoot | HTMLElement;
731
682
  scrollAction: 'hide' | 'realign' | null;
732
683
  showAnimation: boolean | object;
@@ -779,11 +730,9 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
779
730
  width: number | string;
780
731
  x: number;
781
732
  y: number;
782
- anchorSize: number[];
783
733
  content: string;
784
- focusVisible: boolean;
785
734
  formula: string;
786
- html: string | ((widget: Widget) => string) | DomConfig | DomConfig[] | VueConfig;
735
+ html: string | ((widget: Widget) => void) | DomConfig | DomConfig[] | VueConfig | ReactJSX;
787
736
  input: HTMLElement;
788
737
  parent: Widget;
789
738
  scrollable: Scroller;
@@ -821,8 +770,7 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
821
770
  onBeforeShow: any;
822
771
  /**
823
772
  * 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)
773
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#event-catchAll)
826
774
  * @param {object} event Event object
827
775
  * @param {{[key: string]: any, type: string}} event.event The Object that contains event details
828
776
  * @param {string} event.event.type The type of the event which is caught by the listener
@@ -842,8 +790,7 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
842
790
  onChange: any;
843
791
  /**
844
792
  * 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)
793
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#event-clear)
847
794
  * @param {object} event Event object
848
795
  * @param {Core.widget.Field,any} event.source This Field
849
796
  */
@@ -901,8 +848,7 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
901
848
  /**
902
849
  * Triggered when a widget which had been in a non-visible state for any reason
903
850
  * achieves visibility.
904
- * ...
905
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#event-paint)
851
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#event-paint)
906
852
  * @param {object} event Event object
907
853
  * @param {Core.widget.Widget} event.source The widget being painted.
908
854
  * @param {boolean} event.firstPaint `true` if this is the first paint.
@@ -946,6 +892,14 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
946
892
  * Create and append the underlying widget
947
893
  */
948
894
  ngOnInit(): void;
895
+ /**
896
+ * Extracts all @font-face declarations from a shadow root's stylesheets and adds them to
897
+ * document.head as a single <style> element. This is needed because @font-face rules inside
898
+ * a shadow root are not reliably included in document.fonts across all browsers, causing
899
+ * Bryntum's CSS compatibility check to incorrectly report missing fonts.
900
+ * Safe to call multiple times — the extraction runs only once per page.
901
+ */
902
+ private static ensureFontsInDocument;
949
903
  /**
950
904
  * Watch for changes
951
905
  * @param changes
@@ -956,5 +910,5 @@ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy
956
910
  */
957
911
  ngOnDestroy(): void;
958
912
  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>;
913
+ 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"; "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
914
  }