@bryntum/grid-react-thin 7.2.4 → 7.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/README.md +5 -5
  2. package/lib/BryntumAIFilterField.d.ts +9 -16
  3. package/lib/BryntumAIFilterField.js +2 -2
  4. package/lib/BryntumAIFilterField.js.map +1 -1
  5. package/lib/BryntumChecklistFilterCombo.d.ts +12 -19
  6. package/lib/BryntumChecklistFilterCombo.js +2 -2
  7. package/lib/BryntumChecklistFilterCombo.js.map +1 -1
  8. package/lib/BryntumGrid.d.ts +47 -58
  9. package/lib/BryntumGrid.js +2 -2
  10. package/lib/BryntumGrid.js.map +1 -1
  11. package/lib/BryntumGridBase.d.ts +47 -58
  12. package/lib/BryntumGridBase.js +2 -2
  13. package/lib/BryntumGridBase.js.map +1 -1
  14. package/lib/BryntumGridChartDesigner.d.ts +7 -15
  15. package/lib/BryntumGridChartDesigner.js +1 -2
  16. package/lib/BryntumGridChartDesigner.js.map +1 -1
  17. package/lib/BryntumGridFieldFilterPicker.d.ts +8 -15
  18. package/lib/BryntumGridFieldFilterPicker.js +2 -5
  19. package/lib/BryntumGridFieldFilterPicker.js.map +1 -1
  20. package/lib/BryntumGridFieldFilterPickerGroup.d.ts +9 -16
  21. package/lib/BryntumGridFieldFilterPickerGroup.js +2 -5
  22. package/lib/BryntumGridFieldFilterPickerGroup.js.map +1 -1
  23. package/lib/BryntumGroupBar.d.ts +8 -16
  24. package/lib/BryntumGroupBar.js +1 -2
  25. package/lib/BryntumGroupBar.js.map +1 -1
  26. package/lib/BryntumTreeCombo.d.ts +12 -19
  27. package/lib/BryntumTreeCombo.js +2 -2
  28. package/lib/BryntumTreeCombo.js.map +1 -1
  29. package/lib/BryntumTreeGrid.d.ts +47 -58
  30. package/lib/BryntumTreeGrid.js +2 -2
  31. package/lib/BryntumTreeGrid.js.map +1 -1
  32. package/lib/WrapperHelper.js +2 -2
  33. package/lib/WrapperHelper.js.map +1 -1
  34. package/package.json +1 -1
  35. package/src/BryntumAIFilterField.tsx +85 -120
  36. package/src/BryntumChecklistFilterCombo.tsx +102 -151
  37. package/src/BryntumGrid.tsx +229 -316
  38. package/src/BryntumGridBase.tsx +229 -316
  39. package/src/BryntumGridChartDesigner.tsx +60 -96
  40. package/src/BryntumGridFieldFilterPicker.tsx +83 -133
  41. package/src/BryntumGridFieldFilterPickerGroup.tsx +83 -132
  42. package/src/BryntumGroupBar.tsx +67 -107
  43. package/src/BryntumTreeCombo.tsx +103 -153
  44. package/src/BryntumTreeGrid.tsx +229 -316
  45. package/src/WrapperHelper.tsx +2 -2
@@ -3,7 +3,7 @@
3
3
  */
4
4
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
5
5
  import React, { RefObject } from 'react';
6
- import { AlignSpec, Base, CollectionFilterConfig, Color, Container, DomConfig, FieldFilterPicker, FieldFilterPickerConfig, FieldFilterPickerGroup, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
6
+ import { AlignSpec, Base, CollectionFilterConfig, Color, Container, DomConfig, FieldFilterPicker, FieldFilterPickerConfig, FieldFilterPickerGroup, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, ReactJSX, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
7
7
  import { GridContainerItemConfig, GridContainerLayoutConfig, Grid, GridFieldFilterPickerGroup, GridFieldFilterPickerGroupListeners } from '@bryntum/grid-thin';
8
8
 
9
9
  import { createWidget, shouldComponentUpdate, processWidgetContent } from './WrapperHelper.js';
@@ -17,14 +17,12 @@ export type BryntumGridFieldFilterPickerGroupProps = {
17
17
  /**
18
18
  * Element (or element id) to adopt as this Widget's encapsulating element. The widget's
19
19
  * content will be placed inside this element.
20
- * ...
21
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-adopt)
20
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-adopt)
22
21
  */
23
22
  adopt? : HTMLElement|string
24
23
  /**
25
24
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
26
- * ...
27
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-align)
25
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-align)
28
26
  */
29
27
  align? : AlignSpec|string
30
28
  /**
@@ -52,15 +50,13 @@ export type BryntumGridFieldFilterPickerGroupProps = {
52
50
  /**
53
51
  * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject
54
52
  * into an element which will be linked using the `aria-describedby` attribute.
55
- * ...
56
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-ariaDescription)
53
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-ariaDescription)
57
54
  */
58
55
  ariaDescription? : string
59
56
  /**
60
57
  * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as
61
58
  * the `aria-label` attribute.
62
- * ...
63
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-ariaLabel)
59
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-ariaLabel)
64
60
  */
65
61
  ariaLabel? : string
66
62
  /**
@@ -74,14 +70,12 @@ export type BryntumGridFieldFilterPickerGroupProps = {
74
70
  /**
75
71
  * An object where property names with a truthy value indicate which events should bubble up the ownership
76
72
  * hierarchy when triggered.
77
- * ...
78
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-bubbleEvents)
73
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-bubbleEvents)
79
74
  */
80
75
  bubbleEvents? : object
81
76
  /**
82
77
  * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
83
- * ...
84
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-callOnFunctions)
78
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-callOnFunctions)
85
79
  */
86
80
  callOnFunctions? : boolean
87
81
  /**
@@ -103,8 +97,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
103
97
  /**
104
98
  * By default, if an event handler throws an exception, the error propagates up the stack and the
105
99
  * application state is undefined. Code which follows the event handler will *not* be executed.
106
- * ...
107
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-catchEventHandlerExceptions)
100
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-catchEventHandlerExceptions)
108
101
  */
109
102
  catchEventHandlerExceptions? : boolean
110
103
  /**
@@ -116,15 +109,13 @@ export type BryntumGridFieldFilterPickerGroupProps = {
116
109
  * Custom CSS classes to add to element.
117
110
  * May be specified as a space separated string, or as an object in which property names
118
111
  * with truthy values are used as the class names:
119
- * ...
120
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-cls)
112
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-cls)
121
113
  */
122
114
  cls? : string|object
123
115
  /**
124
116
  * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
125
117
  * `style` block.
126
- * ...
127
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-color)
118
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-color)
128
119
  */
129
120
  color? : Color
130
121
  /**
@@ -148,8 +139,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
148
139
  * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
149
140
  * May be specified as a space separated string, or as an object in which property names
150
141
  * with truthy values are used as the class names:
151
- * ...
152
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-contentElementCls)
142
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-contentElementCls)
153
143
  */
154
144
  contentElementCls? : string|object
155
145
  /**
@@ -174,8 +164,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
174
164
  /**
175
165
  * A [query](https://bryntum.com/products/grid/docs/api/Core/widget/Container#function-query) selector function which can identify the descendant widget to which
176
166
  * focus should be directed by default.
177
- * ...
178
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-defaultFocus)
167
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-defaultFocus)
179
168
  * @param {Core.widget.Widget} widget Widget passed to method
180
169
  * @returns {boolean} truthy value if widget is the default one
181
170
  */
@@ -185,9 +174,9 @@ export type BryntumGridFieldFilterPickerGroupProps = {
185
174
  */
186
175
  defaults? : GridContainerItemConfig
187
176
  /**
188
- * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:
189
- * ...
190
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-detectCSSCompatibilityIssues)
177
+ * Check for CSS compatibility and inclusion related issues and try to auto fix them. Performs the following
178
+ * checks:
179
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-detectCSSCompatibilityIssues)
191
180
  */
192
181
  detectCSSCompatibilityIssues? : boolean
193
182
  /**
@@ -199,25 +188,21 @@ export type BryntumGridFieldFilterPickerGroupProps = {
199
188
  * [strips collection](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
200
189
  * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
201
190
  * body. Such widgets are called "edge strips".
202
- * ...
203
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-dock)
191
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-dock)
204
192
  */
205
193
  dock? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
206
194
  /**
207
195
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
208
196
  * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
209
197
  * property which controls when a drag should start.
210
- * ...
211
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-draggable)
198
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-draggable)
199
+ * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
212
200
  */
213
- draggable? : boolean|{
214
- handleSelector?: string
215
- }
201
+ draggable? : boolean|object
216
202
  /**
217
203
  * An object specifying attributes to assign to the root element of this widget.
218
204
  * Set `null` value to attribute to remove it.
219
- * ...
220
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-elementAttributes)
205
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-elementAttributes)
221
206
  */
222
207
  elementAttributes? : Record<string, string|null>
223
208
  extraData? : any
@@ -225,8 +210,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
225
210
  * Array of [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration objects. One
226
211
  * [FieldFilterPicker](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker) will be created
227
212
  * for each object in the array.
228
- * ...
229
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-filters)
213
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-filters)
230
214
  */
231
215
  filters? : CollectionFilterConfig[]
232
216
  /**
@@ -247,8 +231,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
247
231
  * a given filter. When `getFieldFilterPickerConfig` is provided, it will be called for each filter and the returned
248
232
  * object will be merged with the configuration properties for the individual
249
233
  * [FieldFilterPicker](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker) representing that filter.
250
- * ...
251
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-getFieldFilterPickerConfig)
234
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-getFieldFilterPickerConfig)
252
235
  * @param {CollectionFilterConfig} filter The filter to be displayed in the FieldFilterPicker being configured
253
236
  * @returns {FieldFilterPickerConfig}
254
237
  */
@@ -258,8 +241,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
258
241
  * appear as a selectable property for a filter, a column must have a `field` property.
259
242
  * If the column has a `text` property, that will be shown as the displayed text in the
260
243
  * selector; otherwise, the `field` property will be shown as-is.
261
- * ...
262
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-grid)
244
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-grid)
263
245
  */
264
246
  grid? : Grid
265
247
  /**
@@ -274,25 +256,21 @@ export type BryntumGridFieldFilterPickerGroupProps = {
274
256
  hidden? : boolean
275
257
  /**
276
258
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
277
- * ...
278
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-hideAnimation)
259
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-hideAnimation)
279
260
  */
280
261
  hideAnimation? : boolean|object
281
262
  /**
282
263
  * Specify `true` to make this container hide when it has no visible children (Either empty
283
264
  * or all children hidden).
284
- * ...
285
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-hideWhenEmpty)
265
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-hideWhenEmpty)
286
266
  */
287
267
  hideWhenEmpty? : boolean
288
268
  /**
289
269
  * The HTML to display initially or a function returning the markup (called at widget construction time).
290
- * ...
291
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-html)
270
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-html)
292
271
  * @param {Core.widget.Widget} widget The calling Widget
293
- * @returns {string}
294
272
  */
295
- html? : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig
273
+ html? : string|((widget: Widget) => void)|DomConfig|DomConfig[]|VueConfig|ReactJSX
296
274
  /**
297
275
  * The CSS class(es) to add when HTML content is being applied to this widget.
298
276
  */
@@ -303,16 +281,14 @@ export type BryntumGridFieldFilterPickerGroupProps = {
303
281
  id? : string
304
282
  /**
305
283
  * Determines if the widgets read-only state should be controlled by its parent.
306
- * ...
307
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-ignoreParentReadOnly)
284
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-ignoreParentReadOnly)
308
285
  */
309
286
  ignoreParentReadOnly? : boolean
310
287
  /**
311
288
  * Convenience setting to align input fields of child widgets. By default, the Field input element is
312
289
  * placed immediately following the `label`. If you prefer to have all input fields aligned to the
313
290
  * right, set this config to `'end'`.
314
- * ...
315
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-inputFieldAlign)
291
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-inputFieldAlign)
316
292
  */
317
293
  inputFieldAlign? : 'start'|'end'
318
294
  /**
@@ -330,63 +306,59 @@ export type BryntumGridFieldFilterPickerGroupProps = {
330
306
  /**
331
307
  * An object containing typed child widget config objects or Widgets. May also be specified
332
308
  * as an array.
333
- * ...
334
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-items)
309
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-items)
335
310
  */
336
311
  items? : Record<string, GridContainerItemConfig|MenuItemEntry>|(GridContainerItemConfig|MenuItemEntry|Widget)[]
337
312
  /**
338
313
  * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name
339
314
  * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values
340
315
  * are the name of the instance method to call when the keystroke is received.
341
- * ...
342
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-keyMap)
316
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-keyMap)
343
317
  */
344
318
  keyMap? : Record<string, KeyMapConfig>
345
319
  /**
346
320
  * Convenience setting to use same label placement on all child widgets.
347
- * ...
348
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-labelPosition)
321
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-labelPosition)
349
322
  */
350
323
  labelPosition? : 'before'|'above'|'align-before'|'auto'|null
324
+ /**
325
+ * Sets `labelWidth´ for all children of this Container, that does not define their own `labelWidth`.
326
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-labelWidth)
327
+ */
328
+ labelWidth? : number|null
351
329
  /**
352
330
  * The short name of a helper class which manages rendering and styling of child items.
353
- * ...
354
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-layout)
331
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-layout)
355
332
  */
356
333
  layout? : string|GridContainerLayoutConfig
357
334
  /**
358
335
  * The CSS style properties to apply to the [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
359
- * ...
360
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-layoutStyle)
336
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-layoutStyle)
361
337
  */
362
338
  layoutStyle? : object
363
339
  /**
364
340
  * An array of [child item](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-items) *config objects* which is to be converted into
365
341
  * instances only when this Container is rendered, rather than eagerly at construct time.
366
- * ...
367
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-lazyItems)
342
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-lazyItems)
368
343
  */
369
344
  lazyItems? : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|Widget[]
370
345
  /**
371
346
  * When `limitToProperty` is set to the name of an available field (as specified either
372
347
  * explicitly in [fields](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPickerGroup#config-fields) or implicitly in the
373
348
  * [store](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPickerGroup#config-store)'s model), it has the following effects:
374
- * ...
375
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-limitToProperty)
349
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-limitToProperty)
376
350
  */
377
351
  limitToProperty? : string
378
352
  /**
379
353
  * The listener set for this object.
380
- * ...
381
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-listeners)
354
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-listeners)
382
355
  */
383
356
  listeners? : GridFieldFilterPickerGroupListeners
384
357
  /**
385
358
  * A class translations of which are used for translating this entity.
386
359
  * This is often used when translations of an item are defined on its container class.
387
360
  * For example:
388
- * ...
389
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-localeClass)
361
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-localeClass)
390
362
  */
391
363
  localeClass? : typeof Base
392
364
  /**
@@ -398,8 +370,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
398
370
  * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),
399
371
  * you could use 'localeKey' meta configuration.
400
372
  * Example:
401
- * ...
402
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-localizableProperties)
373
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-localizableProperties)
403
374
  */
404
375
  localizableProperties? : string[]
405
376
  /**
@@ -425,8 +396,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
425
396
  maxHeight? : string|number
426
397
  /**
427
398
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
428
- * ...
429
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-maximizeOnMobile)
399
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-maximizeOnMobile)
430
400
  */
431
401
  maximizeOnMobile? : number|string
432
402
  /**
@@ -448,18 +418,15 @@ export type BryntumGridFieldFilterPickerGroupProps = {
448
418
  * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)
449
419
  * is used to monitor this element for size changes caused by either style manipulation, or by CSS
450
420
  * layout.
451
- * ...
452
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-monitorResize)
421
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-monitorResize)
422
+ * @property {boolean} immediate Set to `true` to receive resize notifications immediately.
453
423
  */
454
- monitorResize? : boolean|{
455
- immediate?: boolean
456
- }
424
+ monitorResize? : boolean|object
457
425
  /**
458
426
  * An object containing default config objects which may be referenced by name in the [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-items)
459
427
  * config. For example, a specialized [Menu](https://bryntum.com/products/grid/docs/api/Core/widget/Menu) subclass may have a `namedItems` default
460
428
  * value defined like this:
461
- * ...
462
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-namedItems)
429
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-namedItems)
463
430
  */
464
431
  namedItems? : Record<string, GridContainerItemConfig>
465
432
  /**
@@ -471,8 +438,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
471
438
  * 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
472
439
  * not participate in the standard layout of that widget, and must be positioned relatively to that
473
440
  * widget's [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
474
- * ...
475
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-positioned)
441
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-positioned)
476
442
  */
477
443
  positioned? : boolean
478
444
  /**
@@ -482,45 +448,45 @@ export type BryntumGridFieldFilterPickerGroupProps = {
482
448
  preventTooltipOnTouch? : boolean
483
449
  /**
484
450
  * Whether the picker group is read-only.
485
- * ...
486
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-readOnly)
451
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-readOnly)
487
452
  */
488
453
  readOnly? : boolean
489
454
  /**
490
455
  * [Record](https://bryntum.com/products/grid/docs/api/Core/data/Model) whose values will be used to populate fields in the container.
491
- * ...
492
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-record)
456
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-record)
493
457
  */
494
458
  record? : Model
495
459
  relayStoreEvents? : boolean
496
460
  /**
497
461
  * Either a default `rendition` to apply to all child widgets, or a map of renditions keyed by child widget
498
462
  * `type`.
499
- * ...
500
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-rendition)
463
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-rendition)
501
464
  */
502
465
  rendition? : string|Record<string, string>|null
503
466
  /**
504
467
  * Configure as `true` to have the component display a translucent ripple when its
505
468
  * [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
506
469
  * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.
507
- * ...
508
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-ripple)
509
- */
510
- ripple? : boolean|{
511
- delegate?: string
512
- color?: string
513
- radius?: number
514
- clip?: string
515
- }
470
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-ripple)
471
+ * @property {string} [delegate] A CSS selector to filter which child elements trigger ripples. By default, the ripple is clipped to the triggering element.
472
+ * @property {string} [color] A CSS color name or specification.
473
+ * @property {number} [radius] The ending radius of the ripple. Note that it will be clipped by the target element by default.
474
+ * @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.
475
+ */
476
+ ripple? : boolean|object
477
+ /**
478
+ * The ARIA role to apply to this widget's element. By default, this is set to `'presentation'` to avoid
479
+ * accidentally applying a role which may interfere with screen readers.
480
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-role)
481
+ */
482
+ role? : string
516
483
  /**
517
484
  * 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`
518
485
  */
519
486
  rootElement? : ShadowRoot|HTMLElement
520
487
  /**
521
488
  * This may be configured as `true` to make the widget's element use the `direction:rtl` style.
522
- * ...
523
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-rtl)
489
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-rtl)
524
490
  */
525
491
  rtl? : boolean
526
492
  /**
@@ -528,8 +494,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
528
494
  * in both axes. May be an object containing boolean `overflowX` and `overflowY` properties which are
529
495
  * applied to CSS style properties `overflowX` and `overflowY`. If they are boolean, they are translated to
530
496
  * CSS overflow properties thus:
531
- * ...
532
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-scrollable)
497
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-scrollable)
533
498
  */
534
499
  scrollable? : boolean|ScrollerConfig|Scroller
535
500
  /**
@@ -543,8 +508,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
543
508
  showAddFilterButton? : boolean
544
509
  /**
545
510
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
546
- * ...
547
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-showAnimation)
511
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-showAnimation)
548
512
  */
549
513
  showAnimation? : boolean|object
550
514
  /**
@@ -564,15 +528,13 @@ export type BryntumGridFieldFilterPickerGroupProps = {
564
528
  * 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
565
529
  * [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
566
530
  * this widget:
567
- * ...
568
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-tab)
531
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-tab)
569
532
  */
570
533
  tab? : boolean|TabConfig
571
534
  /**
572
535
  * When this container is used as a tab in a TabPanel, these items are added to the
573
536
  * [TabBar](https://bryntum.com/products/grid/docs/api/Core/widget/TabBar) when this container is the active tab.
574
- * ...
575
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-tabBarItems)
537
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-tabBarItems)
576
538
  */
577
539
  tabBarItems? : ToolbarItems[]|Widget[]
578
540
  /**
@@ -581,15 +543,13 @@ export type BryntumGridFieldFilterPickerGroupProps = {
581
543
  tag? : string
582
544
  /**
583
545
  * 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/GridFieldFilterPickerGroup#config-textAlign)
546
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-textAlign)
586
547
  */
587
548
  textAlign? : 'left'|'center'|'right'|'start'|'end'
588
549
  /**
589
550
  * Specify `true` for a container used to show text markup. It will apply the CSS class `b-text-content`
590
551
  * which specifies a default max-width that makes long text more readable.
591
- * ...
592
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-textContent)
552
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-textContent)
593
553
  */
594
554
  textContent? : boolean
595
555
  /**
@@ -598,8 +558,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
598
558
  title? : string
599
559
  /**
600
560
  * Tooltip for the widget, either as a string or as a Tooltip config object.
601
- * ...
602
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-tooltip)
561
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-tooltip)
603
562
  */
604
563
  tooltip? : string|TooltipConfig|null
605
564
  /**
@@ -613,8 +572,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
613
572
  * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
614
573
  * as a space separated string, an array of strings, or as an object in which property names with truthy
615
574
  * values are used as the class names.
616
- * ...
617
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-ui)
575
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-ui)
618
576
  */
619
577
  ui? : string|object
620
578
  /**
@@ -630,14 +588,12 @@ export type BryntumGridFieldFilterPickerGroupProps = {
630
588
  width? : string|number
631
589
  /**
632
590
  * The x position for the widget.
633
- * ...
634
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-x)
591
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-x)
635
592
  */
636
593
  x? : number
637
594
  /**
638
595
  * The y position for the widget.
639
- * ...
640
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-y)
596
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-y)
641
597
  */
642
598
  y? : number
643
599
 
@@ -649,7 +605,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
649
605
  * @param {Core.widget.FieldFilterPicker} event.source The FieldFilterPicker instance that fired the event.
650
606
  * @param {CollectionFilterConfig} event.filter The [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration object for the filter represented by this [FieldFilterPicker](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker).
651
607
  */
652
- onBeforeAddFilter? : ((event: { source: FieldFilterPicker, filter: CollectionFilterConfig }) => Promise<boolean>|boolean|void)|string
608
+ onBeforeAddFilter? : ((event: { source: FieldFilterPicker, filter: CollectionFilterConfig }) => boolean|void)|string
653
609
  /**
654
610
  * Fires before an object is destroyed.
655
611
  * @param {object} event Event object
@@ -661,7 +617,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
661
617
  * @param {object} event Event object
662
618
  * @param {Core.widget.Widget} event.source The widget being hidden.
663
619
  */
664
- onBeforeHide? : ((event: { source: Widget }) => Promise<boolean>|boolean|void)|string
620
+ onBeforeHide? : ((event: { source: Widget }) => boolean|void)|string
665
621
  /**
666
622
  * Fired before this container will load record values into its child fields. This is useful if you
667
623
  * want to modify the UI before data is loaded (e.g. set some input field to be readonly)
@@ -678,8 +634,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
678
634
  onBeforeShow? : ((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string
679
635
  /**
680
636
  * Fires when any other event is fired from the object.
681
- * ...
682
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#event-catchAll)
637
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#event-catchAll)
683
638
  * @param {object} event Event object
684
639
  * @param {{[key: string]: any, type: string}} event.event The Object that contains event details
685
640
  * @param {string} event.event.type The type of the event which is caught by the listener
@@ -745,8 +700,7 @@ export type BryntumGridFieldFilterPickerGroupProps = {
745
700
  /**
746
701
  * Triggered when a widget which had been in a non-visible state for any reason
747
702
  * achieves visibility.
748
- * ...
749
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#event-paint)
703
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#event-paint)
750
704
  * @param {object} event Event object
751
705
  * @param {Core.widget.Widget} event.source The widget being painted.
752
706
  * @param {boolean} event.firstPaint `true` if this is the first paint.
@@ -841,6 +795,7 @@ export class BryntumGridFieldFilterPickerGroup extends React.Component<BryntumGr
841
795
  'preventTooltipOnTouch',
842
796
  'relayStoreEvents',
843
797
  'ripple',
798
+ 'role',
844
799
  'rootElement',
845
800
  'scrollAction',
846
801
  'showAddFilterButton',
@@ -880,6 +835,7 @@ export class BryntumGridFieldFilterPickerGroup extends React.Component<BryntumGr
880
835
  'items',
881
836
  'keyMap',
882
837
  'labelPosition',
838
+ 'labelWidth',
883
839
  'layout',
884
840
  'layoutStyle',
885
841
  'margin',
@@ -920,11 +876,6 @@ export class BryntumGridFieldFilterPickerGroup extends React.Component<BryntumGr
920
876
  ];
921
877
 
922
878
  static propertyNames = [
923
- 'anchorSize',
924
- 'focusVisible',
925
- 'hasChanges',
926
- 'isSettingValues',
927
- 'isValid',
928
879
  'parent',
929
880
  'value',
930
881
  'values'