@bryntum/grid-angular-thin 7.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/README.md +44 -0
  2. package/bryntum-grid-angular-thin.d.ts +5 -0
  3. package/bundles/bryntum-grid-angular-thin.umd.js +12313 -0
  4. package/bundles/bryntum-grid-angular-thin.umd.js.map +1 -0
  5. package/esm2015/bryntum-grid-angular-thin.js +5 -0
  6. package/esm2015/lib/bryntum-a-i-filter-field.component.js +792 -0
  7. package/esm2015/lib/bryntum-checklist-filter-combo.component.js +944 -0
  8. package/esm2015/lib/bryntum-grid-base.component.js +2100 -0
  9. package/esm2015/lib/bryntum-grid-chart-designer.component.js +589 -0
  10. package/esm2015/lib/bryntum-grid-field-filter-picker-group.component.js +755 -0
  11. package/esm2015/lib/bryntum-grid-field-filter-picker.component.js +745 -0
  12. package/esm2015/lib/bryntum-grid.component.js +2104 -0
  13. package/esm2015/lib/bryntum-group-bar.component.js +728 -0
  14. package/esm2015/lib/bryntum-tree-combo.component.js +933 -0
  15. package/esm2015/lib/bryntum-tree-grid.component.js +2104 -0
  16. package/esm2015/lib/grid.module.js +69 -0
  17. package/esm2015/lib/wrapper.helper.js +74 -0
  18. package/esm2015/public-api.js +15 -0
  19. package/fesm2015/bryntum-grid-angular-thin.js +11856 -0
  20. package/fesm2015/bryntum-grid-angular-thin.js.map +1 -0
  21. package/lib/bryntum-a-i-filter-field.component.d.ts +969 -0
  22. package/lib/bryntum-checklist-filter-combo.component.d.ts +1211 -0
  23. package/lib/bryntum-grid-base.component.d.ts +2272 -0
  24. package/lib/bryntum-grid-chart-designer.component.d.ts +692 -0
  25. package/lib/bryntum-grid-field-filter-picker-group.component.d.ts +930 -0
  26. package/lib/bryntum-grid-field-filter-picker.component.d.ts +917 -0
  27. package/lib/bryntum-grid.component.d.ts +2274 -0
  28. package/lib/bryntum-group-bar.component.d.ts +873 -0
  29. package/lib/bryntum-tree-combo.component.d.ts +1200 -0
  30. package/lib/bryntum-tree-grid.component.d.ts +2274 -0
  31. package/lib/grid.module.d.ts +16 -0
  32. package/lib/wrapper.helper.d.ts +26 -0
  33. package/package.json +33 -0
  34. package/public-api.d.ts +11 -0
@@ -0,0 +1,969 @@
1
+ /**
2
+ * Angular wrapper for Bryntum AIFilterField
3
+ */
4
+ import { ElementRef, SimpleChanges, OnDestroy, OnInit } from '@angular/core';
5
+ import { AlignSpec, Base, DomConfig, Field, FieldContainer, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, MaskConfig, Rectangle, Scroller, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
6
+ import { AIFilterField, AIFilterFieldListeners, GridContainerItemConfig, Grid } from '@bryntum/grid-thin';
7
+ import * as i0 from "@angular/core";
8
+ export declare type BryntumAIFilterFieldProps = {
9
+ /**
10
+ * Element (or element id) to adopt as this Widget's encapsulating element. The widget's
11
+ * content will be placed inside this element.
12
+ * ...
13
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-adopt)
14
+ */
15
+ adopt?: HTMLElement | string;
16
+ /**
17
+ * *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)
20
+ */
21
+ align?: AlignSpec | string;
22
+ /**
23
+ * When this widget is a child of a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container), it will by default be participating in a
24
+ * flexbox layout. This config allows you to set this widget's
25
+ * [align-self](https://developer.mozilla.org/en-US/docs/Web/CSS/align-self) style.
26
+ */
27
+ alignSelf?: string;
28
+ /**
29
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating) and being shown through [showBy](#Core/widget/Widget#function-showBy).*
30
+ * `true` to show a connector arrow pointing to the align target.
31
+ */
32
+ anchor?: boolean;
33
+ /**
34
+ * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
35
+ * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
36
+ */
37
+ appendTo?: HTMLElement | string;
38
+ /**
39
+ * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject
40
+ * into an element which will be linked using the `aria-describedby` attribute.
41
+ * ...
42
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ariaDescription)
43
+ */
44
+ ariaDescription?: string;
45
+ /**
46
+ * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as
47
+ * the `aria-label` attribute.
48
+ * ...
49
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ariaLabel)
50
+ */
51
+ ariaLabel?: string;
52
+ /**
53
+ * Sets the native `autocomplete` property of the underlying input element. For more information, please refer to
54
+ * [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete)
55
+ */
56
+ autoComplete?: string;
57
+ /**
58
+ * Specify `true` to auto select field contents on focus
59
+ */
60
+ autoSelect?: boolean;
61
+ /**
62
+ * Initial text to show in badge.
63
+ */
64
+ badge?: string;
65
+ /**
66
+ * An object where property names with a truthy value indicate which events should bubble up the ownership
67
+ * hierarchy when triggered.
68
+ * ...
69
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-bubbleEvents)
70
+ */
71
+ bubbleEvents?: object;
72
+ /**
73
+ * 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)
76
+ */
77
+ callOnFunctions?: boolean;
78
+ /**
79
+ * By default, if an event handler throws an exception, the error propagates up the stack and the
80
+ * 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)
83
+ */
84
+ catchEventHandlerExceptions?: boolean;
85
+ /**
86
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
87
+ * Set to `true` to centre the Widget in browser viewport space.
88
+ */
89
+ centered?: boolean;
90
+ /**
91
+ * 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
+ * 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
93
+ * configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
94
+ */
95
+ clearable?: boolean | FieldTriggerConfig;
96
+ /**
97
+ * The Grid instance this field is filtering. Defaults to the closest Grid instance found when the field is
98
+ * added to the DOM. If you are not adding the field to the Grid's DOM, you must set this property.
99
+ */
100
+ client?: Grid;
101
+ /**
102
+ * Custom CSS classes to add to element.
103
+ * May be specified as a space separated string, or as an object in which property names
104
+ * 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
+ */
108
+ cls?: string | object;
109
+ /**
110
+ * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
111
+ * `style` block.
112
+ * ...
113
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-color)
114
+ */
115
+ color?: string;
116
+ /**
117
+ * Programmatic control over which column to start in when used in a grid layout.
118
+ */
119
+ column?: number;
120
+ config?: object;
121
+ /**
122
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating) or [positioned](#Core/widget/Widget#config-positioned).*
123
+ * Element, Widget or Rectangle to which this Widget is constrained.
124
+ */
125
+ constrainTo?: HTMLElement | Widget | Rectangle;
126
+ /**
127
+ * The configuration for additional items associated to this field. This is typically used to add contextual
128
+ * fields related to a [checkbox](https://bryntum.com/products/grid/docs/api/Core/widget/Checkbox) or [radio button](#Core/widget/Radio). See
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)
132
+ */
133
+ container?: Record<string, GridContainerItemConfig> | GridContainerItemConfig[] | FieldContainerConfig | FieldContainer;
134
+ /**
135
+ * The config controls how the value of nested items are handled when a parent container gets or sets its
136
+ * [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)
139
+ * @param {Core.widget.Field} field Field instance
140
+ * @returns {boolean}
141
+ */
142
+ containValues?: boolean | string | ((field: Field) => boolean);
143
+ /**
144
+ * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
145
+ * May be specified as a space separated string, or as an object in which property names
146
+ * 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)
149
+ */
150
+ contentElementCls?: string | object;
151
+ /**
152
+ * When this Widget configuration is used in the Grid's RowExpander feature's `widget` config, provide the
153
+ * field on the expanded record to use for populating this widget's store (if applicable)
154
+ */
155
+ dataField?: string;
156
+ /**
157
+ * Object to apply to elements dataset (each key will be used as a data-attribute on the element)
158
+ */
159
+ dataset?: Record<string, string>;
160
+ /**
161
+ * The name of the property to set when a single value is to be applied to this Widget. Such as when used
162
+ * in a grid WidgetColumn, this is the property to which the column's `field` is applied.
163
+ */
164
+ defaultBindProperty?: string;
165
+ /**
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)
169
+ */
170
+ detectCSSCompatibilityIssues?: boolean;
171
+ /**
172
+ * 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
+ * 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)
176
+ */
177
+ disabled?: boolean | 'inert';
178
+ /**
179
+ * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/grid/docs/api/Core/widget/Panel)
180
+ * [strips collection](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
181
+ * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
182
+ * body. Such widgets are called "edge strips".
183
+ * ...
184
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-dock)
185
+ */
186
+ dock?: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
187
+ /**
188
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
189
+ * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
190
+ * 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)
193
+ */
194
+ draggable?: boolean | {
195
+ handleSelector?: string;
196
+ };
197
+ /**
198
+ * Set to `false` to prevent user from editing the field. For TextFields it is basically the same as setting
199
+ * [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
+ * 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)
203
+ */
204
+ editable?: boolean;
205
+ /**
206
+ * An object specifying attributes to assign to the root element of this widget.
207
+ * 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)
210
+ */
211
+ elementAttributes?: Record<string, string | null>;
212
+ extraData?: any;
213
+ /**
214
+ * When this widget is a child of a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container), it will by default be participating in a
215
+ * flexbox layout. This config allows you to set this widget's
216
+ * [flex](https://developer.mozilla.org/en-US/docs/Web/CSS/flex) style.
217
+ * This may be configured as a single number or a `&lt;flex-grow&gt; &lt;flex-shrink&gt; &lt;flex-basis&gt;` format string.
218
+ * numeric-only values are interpreted as the `flex-grow` value.
219
+ */
220
+ flex?: number | string;
221
+ /**
222
+ * Set to `true` to move the widget out of the document flow and position it
223
+ * absolutely in browser viewport space.
224
+ */
225
+ floating?: boolean;
226
+ /**
227
+ * Widget's height, used to set element `style.height`. Either specify a valid height string or a number,
228
+ * which will get 'px' appended. We recommend using CSS as the primary way to control height, but in some
229
+ * cases this config is convenient.
230
+ */
231
+ height?: string | number;
232
+ /**
233
+ * Configure with true to make widget initially hidden.
234
+ */
235
+ hidden?: boolean;
236
+ /**
237
+ * *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)
240
+ */
241
+ hideAnimation?: boolean | object;
242
+ /**
243
+ * Specify `true` to highlight field after external value changes
244
+ */
245
+ highlightExternalChange?: boolean;
246
+ /**
247
+ * An optional string to display inside the input field as an overlay. This can be useful for displaying
248
+ * a field's units.
249
+ * ...
250
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-hint)
251
+ * @param {object} data A data object
252
+ * @param {Core.widget.Field} data.source A reference to the field instance
253
+ * @param {any} data.value The current value of the field
254
+ * @returns {string}
255
+ */
256
+ hint?: string | ((data: {
257
+ source: Field;
258
+ value: any;
259
+ }) => string);
260
+ /**
261
+ * 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
+ * Since this can allow malicious content to be executed, be sure not to include user-entered data or to
263
+ * 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)
266
+ * @param {object} data A data object
267
+ * @param {Core.widget.Field} data.source A reference to the field instance
268
+ * @param {any} data.value The current value of the field
269
+ * @returns {string}
270
+ */
271
+ hintHtml?: string | ((data: {
272
+ source: Field;
273
+ value: any;
274
+ }) => string);
275
+ /**
276
+ * Widget id, if not specified one will be generated. Also used for lookups through Widget.getById
277
+ */
278
+ id?: string;
279
+ /**
280
+ * 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)
283
+ */
284
+ ignoreParentReadOnly?: boolean;
285
+ /**
286
+ * Set this config to `true` to always display items horizontally along with this field. This assigns an
287
+ * [hbox](https://bryntum.com/products/grid/docs/api/Core/widget/layout/Box) as the [layout](#Core/widget/Container#config-layout) to the
288
+ * [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)
291
+ */
292
+ inline?: boolean;
293
+ /**
294
+ * Text alignment for the input field.
295
+ */
296
+ inputAlign?: string;
297
+ /**
298
+ * Sets custom attributes of the underlying input element. For more information, please refer to
299
+ * [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes)
300
+ */
301
+ inputAttributes?: Record<string, string>;
302
+ /**
303
+ * If you need to use something else than a default `input` element, as the input element, provide the tag
304
+ * name here. Please note that this is used for advanced usage only, for example when using WebComponents
305
+ * (custom elements), and that the configured element must fulfil the same contract as a regular input
306
+ * element.
307
+ */
308
+ inputTag?: string;
309
+ /**
310
+ * Sets the `type` attribute of the underlying input element (password, hidden, date, color, etc.).
311
+ */
312
+ inputType?: string;
313
+ /**
314
+ * The width to apply to the `.b-field-inner` element, which encompasses the `input` element and any
315
+ * triggers. If a number is specified, `px` will be used.
316
+ */
317
+ inputWidth?: string | number;
318
+ /**
319
+ * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
320
+ */
321
+ insertBefore?: HTMLElement | string;
322
+ /**
323
+ * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
324
+ */
325
+ insertFirst?: HTMLElement | string;
326
+ /**
327
+ * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name
328
+ * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values
329
+ * 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)
332
+ */
333
+ keyMap?: Record<string, KeyMapConfig>;
334
+ /**
335
+ * The delay in milliseconds to wait after the last keystroke before triggering a change event.
336
+ * Set to 0 to not trigger change events from keystrokes (listen for input event instead to have
337
+ * 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)
340
+ */
341
+ keyStrokeChangeDelay?: number;
342
+ /**
343
+ * Label, prepended to field
344
+ */
345
+ label?: string;
346
+ /**
347
+ * CSS class name or class names to add to any configured [label](https://bryntum.com/products/grid/docs/api/Core/widget/mixin/Labelable#config-label)
348
+ */
349
+ labelCls?: string | object;
350
+ /**
351
+ * 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)
354
+ */
355
+ labelPosition?: 'before' | 'above' | null;
356
+ /**
357
+ * The labels to add either before or after the input field.
358
+ * Each label may have the following properties:
359
+ * ...
360
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-labels)
361
+ */
362
+ labels?: object[];
363
+ /**
364
+ * The width to apply to the `&lt;label&gt;` element. If a number is specified, `px` will be used.
365
+ */
366
+ labelWidth?: string | number;
367
+ /**
368
+ * The listener set for this object.
369
+ * ...
370
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-listeners)
371
+ */
372
+ listeners?: AIFilterFieldListeners;
373
+ /**
374
+ * A class translations of which are used for translating this entity.
375
+ * This is often used when translations of an item are defined on its container class.
376
+ * For example:
377
+ * ...
378
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-localeClass)
379
+ */
380
+ localeClass?: typeof Base;
381
+ /**
382
+ * Set to `false` to disable localization of this object.
383
+ */
384
+ localizable?: boolean;
385
+ /**
386
+ * List of properties which values should be translated automatically upon a locale applying.
387
+ * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),
388
+ * you could use 'localeKey' meta configuration.
389
+ * Example:
390
+ * ...
391
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-localizableProperties)
392
+ */
393
+ localizableProperties?: string[];
394
+ /**
395
+ * Widget's margin. This may be configured as a single number or a `TRBL` format string.
396
+ * numeric-only values are interpreted as pixels.
397
+ */
398
+ margin?: number | string;
399
+ /**
400
+ * This config object contains the defaults for the [Mask](https://bryntum.com/products/grid/docs/api/Core/widget/Mask) created for the
401
+ * [masked](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-masked) config. Any properties specified in the `masked` config will override these
402
+ * values.
403
+ */
404
+ maskDefaults?: MaskConfig;
405
+ /**
406
+ * Set to `true` to apply the default mask to the widget. Alternatively, this can be the mask message or a
407
+ * [Mask](https://bryntum.com/products/grid/docs/api/Core/widget/Mask) config object.
408
+ */
409
+ masked?: boolean | string | MaskConfig;
410
+ /**
411
+ * The element's maxHeight. Can be either a String or a Number (which will have 'px' appended). Note that
412
+ * like [height](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.
413
+ */
414
+ maxHeight?: string | number;
415
+ /**
416
+ * *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)
419
+ */
420
+ maximizeOnMobile?: number | string;
421
+ /**
422
+ * The max number of characters for the input field
423
+ */
424
+ maxLength?: number;
425
+ /**
426
+ * The elements maxWidth. Can be either a String or a Number (which will have 'px' appended). Note that
427
+ * like [width](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.
428
+ */
429
+ maxWidth?: string | number;
430
+ /**
431
+ * The element's minHeight. Can be either a String or a Number (which will have 'px' appended). Note that
432
+ * like [height](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-height), *reading* the value will return the numeric value in pixels.
433
+ */
434
+ minHeight?: string | number;
435
+ /**
436
+ * The min number of characters for the input field
437
+ */
438
+ minLength?: number;
439
+ /**
440
+ * The elements minWidth. Can be either a String or a Number (which will have 'px' appended). Note that
441
+ * like [width](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-width), *reading* the value will return the numeric value in pixels.
442
+ */
443
+ minWidth?: string | number;
444
+ /**
445
+ * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)
446
+ * is used to monitor this element for size changes caused by either style manipulation, or by CSS
447
+ * layout.
448
+ * ...
449
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-monitorResize)
450
+ */
451
+ monitorResize?: boolean | {
452
+ immediate?: boolean;
453
+ };
454
+ /**
455
+ * Name of the field which is used as a key to get/set values from/to the field.
456
+ * 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
+ * [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)
460
+ */
461
+ name?: string;
462
+ /**
463
+ * The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
464
+ * [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
465
+ * the owner is <strong>always</strong> the encapsulating Container.
466
+ * ...
467
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-owner)
468
+ */
469
+ owner?: Widget | any;
470
+ /**
471
+ * Text to display in empty field.
472
+ */
473
+ placeholder?: string;
474
+ /**
475
+ * 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
476
+ * not participate in the standard layout of that widget, and must be positioned relatively to that
477
+ * widget's [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
478
+ * ...
479
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-positioned)
480
+ */
481
+ positioned?: boolean;
482
+ /**
483
+ * Prevent tooltip from being displayed on touch devices. Useful for example for buttons that display a
484
+ * menu on click etc, since the tooltip would be displayed at the same time.
485
+ */
486
+ preventTooltipOnTouch?: boolean;
487
+ /**
488
+ * The text to show in the load mask when the AI is processing the filter request
489
+ */
490
+ progressText?: string;
491
+ /**
492
+ * Makes the field unmodifiable by user action. The input area is not editable, and triggers
493
+ * are unresponsive.
494
+ * ...
495
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-readOnly)
496
+ */
497
+ readOnly?: boolean;
498
+ relayStoreEvents?: boolean;
499
+ /**
500
+ * Predefined style to use for the field. Possible values are:
501
+ * ...
502
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-rendition)
503
+ */
504
+ rendition?: 'outlined' | 'filled' | string;
505
+ /**
506
+ * Configure as `true` to indicate that a `null` field value is to be marked as invalid. This will
507
+ * optionally append a * to the field label if [showRequiredIndicator](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-showRequiredIndicator) is set.
508
+ */
509
+ required?: boolean;
510
+ /**
511
+ * If this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly), then setting this option means that pressing
512
+ * the `ESCAPE` key after editing the field will revert the field to the value it had when
513
+ * the user focused the field. If the field is *not* changed from when focused, the [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
514
+ * behaviour will be activated.
515
+ */
516
+ revertOnEscape?: boolean;
517
+ /**
518
+ * Configure as `true` to have the component display a translucent ripple when its
519
+ * [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
520
+ * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.
521
+ * ...
522
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ripple)
523
+ */
524
+ ripple?: boolean | {
525
+ delegate?: string;
526
+ color?: string;
527
+ radius?: number;
528
+ clip?: string;
529
+ };
530
+ /**
531
+ * 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`
532
+ */
533
+ rootElement?: ShadowRoot | HTMLElement;
534
+ /**
535
+ * This may be configured as `true` to make the widget's element use the `direction:rtl` style.
536
+ * ...
537
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-rtl)
538
+ */
539
+ rtl?: boolean;
540
+ /**
541
+ * Defines what to do if document is scrolled while Widget is visible (only relevant when floating is set to `true`).
542
+ * Valid values: ´null´: do nothing, ´hide´: hide the widget or ´realign´: realign to the target if possible.
543
+ */
544
+ scrollAction?: 'hide' | 'realign' | null;
545
+ /**
546
+ * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
547
+ * ...
548
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-showAnimation)
549
+ */
550
+ showAnimation?: boolean | object;
551
+ /**
552
+ * `true` to automatically display a * after the label for this field when it is [required](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-required).
553
+ */
554
+ showRequiredIndicator?: string;
555
+ /**
556
+ * Set to `false` to not show the tooltip when this widget is [disabled](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-disabled)
557
+ */
558
+ showTooltipWhenDisabled?: boolean;
559
+ /**
560
+ * Set to `true`, completely bypasses validation logic (could be userful if your field is not `editable`
561
+ * to the user).
562
+ */
563
+ skipValidation?: boolean;
564
+ /**
565
+ * Programmatic control over how many columns to span when used in a grid layout.
566
+ */
567
+ span?: number;
568
+ /**
569
+ * Sets the native `spellcheck` property of the underlying input element. For more information, please refer to
570
+ * [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/spellcheck)
571
+ */
572
+ spellCheck?: boolean;
573
+ /**
574
+ * 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
575
+ * [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
576
+ * this widget:
577
+ * ...
578
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-tab)
579
+ */
580
+ tab?: boolean | TabConfig;
581
+ /**
582
+ * The tab index of the input field or fields, or `null` for natural tab order (recommended). Setting to `0`
583
+ * is equivalent to natural tab order, but is unnecessary for fields since they are naturally tabbable
584
+ * (i.e., accessible via the TAB key). Setting to `-1` disables tabbability but allows for focus to be set
585
+ * to the element programmatically.
586
+ * ...
587
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-tabIndex)
588
+ */
589
+ tabIndex?: number;
590
+ /**
591
+ * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.
592
+ * ...
593
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-textAlign)
594
+ */
595
+ textAlign?: 'left' | 'center' | 'right' | 'start' | 'end';
596
+ /**
597
+ * A title to display for the widget. Only in effect when inside a container that uses it (such as TabPanel)
598
+ */
599
+ title?: string;
600
+ /**
601
+ * Tooltip for the widget, either as a string or as a Tooltip config object.
602
+ * ...
603
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-tooltip)
604
+ */
605
+ tooltip?: string | TooltipConfig | null;
606
+ /**
607
+ * The triggers to add either before or after the input field. Each property name is the reference by which
608
+ * an instantiated Trigger Widget may be retrieved from the live `triggers` property.
609
+ * ...
610
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-triggers)
611
+ */
612
+ triggers?: Record<string, FieldTriggerConfig> | Record<string, Widget>;
613
+ type?: 'aifilterfield';
614
+ /**
615
+ * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
616
+ * as a space separated string, an array of strings, or as an object in which property names with truthy
617
+ * values are used as the class names.
618
+ * ...
619
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-ui)
620
+ */
621
+ ui?: string | object;
622
+ /**
623
+ * Set to `false` to not highlight a field as invalid while typing, to instead show it on ENTER key press
624
+ * or similar.
625
+ */
626
+ validateOnInput?: boolean;
627
+ /**
628
+ * Default value
629
+ */
630
+ value?: string;
631
+ /**
632
+ * A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container).
633
+ * Higher weights go further down.
634
+ */
635
+ weight?: number;
636
+ /**
637
+ * Widget's width, used to set element `style.width`. Either specify a valid width string or a number, which
638
+ * will get 'px' appended. We recommend using CSS as the primary way to control width, but in some cases
639
+ * this config is convenient.
640
+ */
641
+ width?: string | number;
642
+ /**
643
+ * The x position for the widget.
644
+ * ...
645
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-x)
646
+ */
647
+ x?: number;
648
+ /**
649
+ * The y position for the widget.
650
+ * ...
651
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-y)
652
+ */
653
+ y?: number;
654
+ };
655
+ export declare class BryntumAIFilterFieldComponent implements OnInit, OnDestroy {
656
+ static instanceClass: typeof AIFilterField;
657
+ static instanceName: string;
658
+ private static bryntumEvents;
659
+ private static bryntumFeatureNames;
660
+ private static bryntumConfigs;
661
+ private static bryntumConfigsOnly;
662
+ private static bryntumProps;
663
+ private elementRef;
664
+ instance: AIFilterField;
665
+ private bryntumConfig;
666
+ constructor(element: ElementRef);
667
+ adopt: HTMLElement | string;
668
+ align: AlignSpec | string;
669
+ anchor: boolean;
670
+ ariaDescription: string;
671
+ ariaLabel: string;
672
+ autoComplete: string;
673
+ autoSelect: boolean;
674
+ bubbleEvents: object;
675
+ centered: boolean;
676
+ clearable: boolean | FieldTriggerConfig;
677
+ client: Grid;
678
+ color: string;
679
+ config: object;
680
+ constrainTo: HTMLElement | Widget | Rectangle;
681
+ container: Record<string, GridContainerItemConfig> | GridContainerItemConfig[] | FieldContainerConfig | FieldContainer;
682
+ containValues: boolean | string | ((field: Field) => boolean);
683
+ contentElementCls: string | object;
684
+ dataField: string;
685
+ defaultBindProperty: string;
686
+ detectCSSCompatibilityIssues: boolean;
687
+ dock: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object;
688
+ draggable: boolean | {
689
+ handleSelector?: string;
690
+ };
691
+ elementAttributes: Record<string, string | null>;
692
+ floating: boolean;
693
+ hideAnimation: boolean | object;
694
+ highlightExternalChange: boolean;
695
+ hint: string | ((data: {
696
+ source: Field;
697
+ value: any;
698
+ }) => string);
699
+ hintHtml: string | ((data: {
700
+ source: Field;
701
+ value: any;
702
+ }) => string);
703
+ ignoreParentReadOnly: boolean;
704
+ inline: boolean;
705
+ inputAlign: string;
706
+ inputAttributes: Record<string, string>;
707
+ inputTag: string;
708
+ inputType: string;
709
+ inputWidth: string | number;
710
+ keyStrokeChangeDelay: number;
711
+ labelCls: string | object;
712
+ labelPosition: 'before' | 'above' | null;
713
+ labels: object[];
714
+ labelWidth: string | number;
715
+ listeners: AIFilterFieldListeners;
716
+ localeClass: typeof Base;
717
+ localizable: boolean;
718
+ localizableProperties: string[];
719
+ maskDefaults: MaskConfig;
720
+ masked: boolean | string | MaskConfig;
721
+ maxLength: number;
722
+ minLength: number;
723
+ monitorResize: boolean | {
724
+ immediate?: boolean;
725
+ };
726
+ name: string;
727
+ owner: Widget | any;
728
+ positioned: boolean;
729
+ preventTooltipOnTouch: boolean;
730
+ progressText: string;
731
+ relayStoreEvents: boolean;
732
+ revertOnEscape: boolean;
733
+ ripple: boolean | {
734
+ delegate?: string;
735
+ color?: string;
736
+ radius?: number;
737
+ clip?: string;
738
+ };
739
+ rootElement: ShadowRoot | HTMLElement;
740
+ scrollAction: 'hide' | 'realign' | null;
741
+ showAnimation: boolean | object;
742
+ showTooltipWhenDisabled: boolean;
743
+ skipValidation: boolean;
744
+ spellCheck: boolean;
745
+ tab: boolean | TabConfig;
746
+ tabIndex: number;
747
+ textAlign: 'left' | 'center' | 'right' | 'start' | 'end';
748
+ title: string;
749
+ type: 'aifilterfield';
750
+ ui: string | object;
751
+ validateOnInput: boolean;
752
+ weight: number;
753
+ alignSelf: string;
754
+ appendTo: HTMLElement | string;
755
+ badge: string;
756
+ callOnFunctions: boolean;
757
+ catchEventHandlerExceptions: boolean;
758
+ cls: string | object;
759
+ column: number;
760
+ dataset: object | Record<string, string>;
761
+ disabled: boolean | 'inert';
762
+ editable: boolean;
763
+ extraData: any;
764
+ flex: number | string;
765
+ height: number | string;
766
+ hidden: boolean;
767
+ id: string;
768
+ insertBefore: HTMLElement | string;
769
+ insertFirst: HTMLElement | string;
770
+ keyMap: Record<string, KeyMapConfig>;
771
+ label: string;
772
+ margin: number | string;
773
+ maxHeight: string | number;
774
+ maximizeOnMobile: number | string;
775
+ maxWidth: string | number;
776
+ minHeight: string | number;
777
+ minWidth: string | number;
778
+ placeholder: string;
779
+ readOnly: boolean;
780
+ rendition: 'outlined' | 'filled' | string;
781
+ required: boolean;
782
+ rtl: boolean;
783
+ showRequiredIndicator: string;
784
+ span: number;
785
+ tooltip: string | TooltipConfig | null;
786
+ triggers: Record<string, FieldTriggerConfig> | Record<string, Widget>;
787
+ value: any | string;
788
+ width: number | string;
789
+ x: number;
790
+ y: number;
791
+ anchorSize: number[];
792
+ content: string;
793
+ focusVisible: boolean;
794
+ formula: string;
795
+ html: string | ((widget: Widget) => string) | DomConfig | DomConfig[] | VueConfig;
796
+ input: HTMLElement;
797
+ parent: Widget;
798
+ scrollable: Scroller;
799
+ /**
800
+ * User performed default action (typed into this field).
801
+ * @param {object} event Event object
802
+ * @param {Core.widget.Field,any} event.source This Field
803
+ * @param {string,number,boolean,any} event.value This field's value
804
+ * @param {string,number,boolean,any} event.oldValue This field's previous value
805
+ * @param {boolean} event.valid True if this field is in a valid state
806
+ * @param {Event} event.event The triggering DOM event if any
807
+ * @param {Core.data.Model} event.record Selected record. Available for fields with records selection functionality
808
+ * @param {Core.data.Model[]} event.records Selected records as an array. Available for fields with records selection functionality
809
+ * @param {boolean} event.userAction Triggered by user taking an action (`true`) or by setting a value (`false`)
810
+ * @param {boolean} event.checked
811
+ */
812
+ onAction: any;
813
+ /**
814
+ * Fires before an object is destroyed.
815
+ * @param {object} event Event object
816
+ * @param {Core.Base} event.source The Object that is being destroyed.
817
+ */
818
+ onBeforeDestroy: any;
819
+ /**
820
+ * Triggered before a widget is hidden. Return `false` to prevent the action.
821
+ * @param {object} event Event object
822
+ * @param {Core.widget.Widget} event.source The widget being hidden.
823
+ */
824
+ onBeforeHide: any;
825
+ /**
826
+ * Triggered before a widget is shown. Return `false` to prevent the action.
827
+ * @param {object} event Event object
828
+ * @param {Core.widget.Widget,any} event.source The widget being shown
829
+ */
830
+ onBeforeShow: any;
831
+ /**
832
+ * Fires when any other event is fired from the object.
833
+ * ...
834
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#event-catchAll)
835
+ * @param {object} event Event object
836
+ * @param {{[key: string]: any, type: string}} event.event The Object that contains event details
837
+ * @param {string} event.event.type The type of the event which is caught by the listener
838
+ */
839
+ onCatchAll: any;
840
+ /**
841
+ * Fired when this field's value changes.
842
+ * @param {object} event Event object
843
+ * @param {Core.widget.Field,any} event.source This Field
844
+ * @param {string,number,boolean,any} event.value This field's value
845
+ * @param {string,number,boolean,any} event.oldValue This field's previous value
846
+ * @param {boolean} event.valid True if this field is in a valid state
847
+ * @param {Event} event.event The triggering DOM event if any
848
+ * @param {boolean} event.userAction Triggered by user taking an action (`true`) or by setting a value (`false`)
849
+ * @param {boolean} event.checked
850
+ */
851
+ onChange: any;
852
+ /**
853
+ * Fired when this field is [cleared](https://bryntum.com/products/grid/docs/api/Core/widget/Field#function-clear).
854
+ * ...
855
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#event-clear)
856
+ * @param {object} event Event object
857
+ * @param {Core.widget.Field,any} event.source This Field
858
+ */
859
+ onClear: any;
860
+ /**
861
+ * Fires when an object is destroyed.
862
+ * @param {object} event Event object
863
+ * @param {Core.Base} event.source The Object that is being destroyed.
864
+ */
865
+ onDestroy: any;
866
+ /**
867
+ * Triggered when a widget's [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element) is available.
868
+ * @param {object} event Event object
869
+ * @param {HTMLElement} event.element The Widget's element.
870
+ */
871
+ onElementCreated: any;
872
+ /**
873
+ * Fired when focus enters this Widget.
874
+ * @param {object} event Event object
875
+ * @param {Core.widget.Widget} event.source This Widget
876
+ * @param {HTMLElement} event.fromElement The element which lost focus.
877
+ * @param {HTMLElement} event.toElement The element which gained focus.
878
+ * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.
879
+ * @param {Core.widget.Widget} event.toWidget The widget which gained focus.
880
+ * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.
881
+ */
882
+ onFocusIn: any;
883
+ /**
884
+ * Fired when focus exits this Widget's ownership tree. This is different from a `blur` event.
885
+ * focus moving from within this Widget's ownership tree, even if there are floating widgets
886
+ * will not trigger this event. This is when focus exits this widget completely.
887
+ * @param {object} event Event object
888
+ * @param {Core.widget.Widget} event.source This Widget
889
+ * @param {HTMLElement} event.fromElement The element which lost focus.
890
+ * @param {HTMLElement} event.toElement The element which gained focus.
891
+ * @param {Core.widget.Widget} event.fromWidget The widget which lost focus.
892
+ * @param {Core.widget.Widget} event.toWidget The widget which gained focus.
893
+ * @param {boolean} event.backwards `true` if the `toElement` is before the `fromElement` in document order.
894
+ */
895
+ onFocusOut: any;
896
+ /**
897
+ * Triggered after a widget was hidden
898
+ * @param {object} event Event object
899
+ * @param {Core.widget.Widget} event.source The widget
900
+ */
901
+ onHide: any;
902
+ /**
903
+ * Fired when the user types into this field.
904
+ * @param {object} event Event object
905
+ * @param {Core.widget.Field,any} event.source This field
906
+ * @param {string,number,boolean,any} event.value This field's value
907
+ * @param {Event} event.event The triggering DOM event
908
+ */
909
+ onInput: any;
910
+ /**
911
+ * Triggered when a widget which had been in a non-visible state for any reason
912
+ * achieves visibility.
913
+ * ...
914
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#event-paint)
915
+ * @param {object} event Event object
916
+ * @param {Core.widget.Widget} event.source The widget being painted.
917
+ * @param {boolean} event.firstPaint `true` if this is the first paint.
918
+ */
919
+ onPaint: any;
920
+ /**
921
+ * Fired when a Widget's read only state is toggled
922
+ * @param {object} event Event object
923
+ * @param {boolean} event.readOnly Read only or not
924
+ */
925
+ onReadOnly: any;
926
+ /**
927
+ * This event is fired after a widget's elements have been synchronized due to a direct or indirect call
928
+ * to [recompose](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#function-recompose), if this results in some change to the widget's rendered DOM elements.
929
+ */
930
+ onRecompose: any;
931
+ /**
932
+ * Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.
933
+ * @param {object} event Event object
934
+ * @param {Core.widget.Widget} event.source This Widget
935
+ * @param {number} event.width The new width
936
+ * @param {number} event.height The new height
937
+ * @param {number} event.oldWidth The old width
938
+ * @param {number} event.oldHeight The old height
939
+ */
940
+ onResize: any;
941
+ /**
942
+ * Triggered after a widget is shown.
943
+ * @param {object} event Event object
944
+ * @param {Core.widget.Widget} event.source The widget
945
+ */
946
+ onShow: any;
947
+ /**
948
+ * User clicked one of this field's [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers)
949
+ * @param {object} event Event object
950
+ * @param {Core.widget.Field,any} event.source This field
951
+ * @param {Core.widget.Widget} event.trigger The trigger activated by click or touch tap.
952
+ */
953
+ onTrigger: any;
954
+ /**
955
+ * Create and append the underlying widget
956
+ */
957
+ ngOnInit(): void;
958
+ /**
959
+ * Watch for changes
960
+ * @param changes
961
+ */
962
+ ngOnChanges(changes: SimpleChanges): void;
963
+ /**
964
+ * Destroy the component
965
+ */
966
+ ngOnDestroy(): void;
967
+ static ɵfac: i0.ɵɵFactoryDeclaration<BryntumAIFilterFieldComponent, never>;
968
+ 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"; "owner": "owner"; "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>;
969
+ }