@bryntum/grid-angular-thin 7.2.4 → 7.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/README.md +5 -5
  2. package/bundles/bryntum-grid-angular-thin.umd.js +773 -230
  3. package/bundles/bryntum-grid-angular-thin.umd.js.map +1 -1
  4. package/esm2015/lib/bryntum-a-i-filter-field.component.js +66 -14
  5. package/esm2015/lib/bryntum-checklist-filter-combo.component.js +66 -14
  6. package/esm2015/lib/bryntum-grid-base.component.js +78 -35
  7. package/esm2015/lib/bryntum-grid-chart-designer.component.js +61 -12
  8. package/esm2015/lib/bryntum-grid-field-filter-picker-group.component.js +65 -21
  9. package/esm2015/lib/bryntum-grid-field-filter-picker.component.js +65 -21
  10. package/esm2015/lib/bryntum-grid.component.js +78 -35
  11. package/esm2015/lib/bryntum-group-bar.component.js +61 -12
  12. package/esm2015/lib/bryntum-tree-combo.component.js +66 -14
  13. package/esm2015/lib/bryntum-tree-grid.component.js +78 -35
  14. package/esm2015/lib/grid.module.js +5 -4
  15. package/esm2015/lib/shadowdom.helper.js +82 -0
  16. package/fesm2015/bryntum-grid-angular-thin.js +750 -207
  17. package/fesm2015/bryntum-grid-angular-thin.js.map +1 -1
  18. package/lib/bryntum-a-i-filter-field.component.d.ts +97 -133
  19. package/lib/bryntum-checklist-filter-combo.component.d.ts +116 -166
  20. package/lib/bryntum-grid-base.component.d.ts +238 -303
  21. package/lib/bryntum-grid-chart-designer.component.d.ts +71 -108
  22. package/lib/bryntum-grid-field-filter-picker-group.component.d.ts +93 -143
  23. package/lib/bryntum-grid-field-filter-picker.component.d.ts +94 -145
  24. package/lib/bryntum-grid.component.d.ts +238 -303
  25. package/lib/bryntum-group-bar.component.d.ts +77 -118
  26. package/lib/bryntum-tree-combo.component.d.ts +117 -168
  27. package/lib/bryntum-tree-grid.component.d.ts +238 -303
  28. package/lib/grid.module.d.ts +2 -1
  29. package/lib/shadowdom.helper.d.ts +3 -0
  30. package/package.json +1 -1
  31. package/src/lib/bryntum-a-i-filter-field.component.ts +159 -142
  32. package/src/lib/bryntum-checklist-filter-combo.component.ts +179 -176
  33. package/src/lib/bryntum-grid-base.component.ts +300 -344
  34. package/src/lib/bryntum-grid-chart-designer.component.ts +127 -113
  35. package/src/lib/bryntum-grid-field-filter-picker-group.component.ts +154 -154
  36. package/src/lib/bryntum-grid-field-filter-picker.component.ts +153 -154
  37. package/src/lib/bryntum-grid.component.ts +300 -344
  38. package/src/lib/bryntum-group-bar.component.ts +134 -124
  39. package/src/lib/bryntum-theme-combo.component.ts +127 -0
  40. package/src/lib/bryntum-tree-combo.component.ts +179 -177
  41. package/src/lib/bryntum-tree-grid.component.ts +300 -344
  42. package/src/lib/grid.module.ts +2 -1
  43. package/src/lib/shadowdom.helper.ts +91 -0
@@ -7,24 +7,23 @@ import { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, Simpl
7
7
 
8
8
  import WrapperHelper from './wrapper.helper';
9
9
 
10
- import { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Color, Combo, ComboModel, DomConfig, Duration, DurationConfig, Field, FieldContainer, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, List, ListConfig, MaskConfig, Model, Rectangle, Scroller, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
10
+ import { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Color, Combo, DomConfig, Duration, DurationConfig, Field, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, List, ListConfig, MaskConfig, Model, ReactJSX, Rectangle, Scroller, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
11
11
  import { ChecklistFilterCombo, ChecklistFilterComboListeners, GridContainerItemConfig } from '@bryntum/grid-thin';
12
12
 
13
- import { StringHelper } from '@bryntum/core-thin';
13
+ import { DomHelper, StringHelper } from '@bryntum/core-thin';
14
+ import { initThemeInShadowRoots } from './shadowdom.helper';
14
15
 
15
16
  export type BryntumChecklistFilterComboProps = {
16
17
  // Configs
17
18
  /**
18
19
  * Element (or element id) to adopt as this Widget's encapsulating element. The widget's
19
20
  * content will be placed inside this element.
20
- * ...
21
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-adopt)
21
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-adopt)
22
22
  */
23
23
  adopt ? : HTMLElement|string
24
24
  /**
25
25
  * *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/ChecklistFilterCombo#config-align)
26
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-align)
28
27
  */
29
28
  align ? : AlignSpec|string
30
29
  /**
@@ -46,15 +45,13 @@ export type BryntumChecklistFilterComboProps = {
46
45
  /**
47
46
  * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject
48
47
  * into an element which will be linked using the `aria-describedby` attribute.
49
- * ...
50
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ariaDescription)
48
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ariaDescription)
51
49
  */
52
50
  ariaDescription ? : string
53
51
  /**
54
52
  * A localizable string (May contain `'L{}'` tokens which resolve in the locale file) to inject as
55
53
  * the `aria-label` attribute.
56
- * ...
57
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ariaLabel)
54
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ariaLabel)
58
55
  */
59
56
  ariaLabel ? : string
60
57
  /**
@@ -77,20 +74,17 @@ export type BryntumChecklistFilterComboProps = {
77
74
  /**
78
75
  * An object where property names with a truthy value indicate which events should bubble up the ownership
79
76
  * hierarchy when triggered.
80
- * ...
81
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-bubbleEvents)
77
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-bubbleEvents)
82
78
  */
83
79
  bubbleEvents ? : object
84
80
  /**
85
81
  * Enable caching of the last retrieved result until the timeout is reached.
86
- * ...
87
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-cacheLastResult)
82
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-cacheLastResult)
88
83
  */
89
84
  cacheLastResult ? : number|string|Duration|DurationConfig
90
85
  /**
91
86
  * Set to `false` to not call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
92
- * ...
93
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-callOnFunctions)
87
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-callOnFunctions)
94
88
  */
95
89
  callOnFunctions ? : boolean
96
90
  /**
@@ -100,8 +94,7 @@ export type BryntumChecklistFilterComboProps = {
100
94
  /**
101
95
  * By default, if an event handler throws an exception, the error propagates up the stack and the
102
96
  * application state is undefined. Code which follows the event handler will *not* be executed.
103
- * ...
104
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-catchEventHandlerExceptions)
97
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-catchEventHandlerExceptions)
105
98
  */
106
99
  catchEventHandlerExceptions ? : boolean
107
100
  /**
@@ -109,11 +102,19 @@ export type BryntumChecklistFilterComboProps = {
109
102
  * Set to `true` to centre the Widget in browser viewport space.
110
103
  */
111
104
  centered ? : boolean
105
+ /**
106
+ * A function (or the name of a function in the ownership hierarchy) called during field validation
107
+ * to perform custom validity checks. The function is called as part of the [isValid](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-isValid)
108
+ * evaluation, after the built-in [required](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-required) check.
109
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-checkValidity)
110
+ * @param {Core.widget.Field} field The field being validated
111
+ * @returns {void}
112
+ */
113
+ checkValidity ? : ((field: Field) => void)|string
112
114
  /**
113
115
  * A config object to configure the [ChipView](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView) to display the
114
116
  * selected value set when [multiSelect](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-multiSelect) is `true`.
115
- * ...
116
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-chipView)
117
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-chipView)
117
118
  */
118
119
  chipView ? : ChipViewConfig
119
120
  /**
@@ -138,15 +139,13 @@ export type BryntumChecklistFilterComboProps = {
138
139
  * Custom CSS classes to add to element.
139
140
  * May be specified as a space separated string, or as an object in which property names
140
141
  * with truthy values are used as the class names:
141
- * ...
142
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-cls)
142
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-cls)
143
143
  */
144
144
  cls ? : string|object
145
145
  /**
146
146
  * Applies the specified color to the widget, by setting the `--b-primary` CSS variable in the widgets
147
147
  * `style` block.
148
- * ...
149
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-color)
148
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-color)
150
149
  */
151
150
  color ? : Color
152
151
  /**
@@ -163,15 +162,13 @@ export type BryntumChecklistFilterComboProps = {
163
162
  * The configuration for additional items associated to this field. This is typically used to add contextual
164
163
  * fields related to a [checkbox](https://bryntum.com/products/grid/docs/api/Core/widget/Checkbox) or [radio button](#Core/widget/Radio). See
165
164
  * these classes for examples of nested fields.
166
- * ...
167
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-container)
165
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-container)
168
166
  */
169
- container ? : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|FieldContainerConfig|FieldContainer
167
+ container ? : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|FieldContainerConfig
170
168
  /**
171
169
  * The config controls how the value of nested items are handled when a parent container gets or sets its
172
170
  * [values](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-values).
173
- * ...
174
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-containValues)
171
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-containValues)
175
172
  * @param {Core.widget.Field} field Field instance
176
173
  * @returns {boolean}
177
174
  */
@@ -180,16 +177,14 @@ export type BryntumChecklistFilterComboProps = {
180
177
  * Custom CSS classes to add to the [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
181
178
  * May be specified as a space separated string, or as an object in which property names
182
179
  * with truthy values are used as the class names:
183
- * ...
184
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-contentElementCls)
180
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-contentElementCls)
185
181
  */
186
182
  contentElementCls ? : string|object
187
183
  /**
188
184
  * If configured as `true`, this means that when an unmatched string is typed into the
189
185
  * combo's input field, and <kbd>Enter</kbd>, or the [multiValueSeparator](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-multiValueSeparator) is typed,
190
186
  * a new record will be created using the typed string as the [displayField](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-displayField).
191
- * ...
192
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-createOnUnmatched)
187
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-createOnUnmatched)
193
188
  * @param {string} name Record name
194
189
  * @param {Core.widget.Combo} combo Combo instance
195
190
  * @returns {Core.data.Model} New record
@@ -210,16 +205,15 @@ export type BryntumChecklistFilterComboProps = {
210
205
  */
211
206
  defaultBindProperty ? : string
212
207
  /**
213
- * Check for CSS compatibility issues when upgrading to v7. Performs the following checks:
214
- * ...
215
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-detectCSSCompatibilityIssues)
208
+ * Check for CSS compatibility and inclusion related issues and try to auto fix them. Performs the following
209
+ * checks:
210
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-detectCSSCompatibilityIssues)
216
211
  */
217
212
  detectCSSCompatibilityIssues ? : boolean
218
213
  /**
219
214
  * 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
220
215
  * cannot be focused, uses a different rendition (usually greyish) and does not allow selecting its value.
221
- * ...
222
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-disabled)
216
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-disabled)
223
217
  */
224
218
  disabled ? : boolean|'inert'
225
219
  /**
@@ -232,26 +226,23 @@ export type BryntumChecklistFilterComboProps = {
232
226
  * @param {Core.widget.Combo} combo A reference to this Combo
233
227
  * @returns {string,void}
234
228
  */
235
- displayValueRenderer ? : (record: Model|ComboModel, combo: Combo) => string|void
229
+ displayValueRenderer ? : (record: Model, combo: Combo) => string|void
236
230
  /**
237
231
  * Controls the placement of this widget when it is added to a [panel's ](https://bryntum.com/products/grid/docs/api/Core/widget/Panel)
238
232
  * [strips collection](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-strips). Typical values for this config are `'top'`,
239
233
  * `'bottom'`, `'left'`, or `'right'`, which cause the widget to be placed on that side of the panel's
240
234
  * body. Such widgets are called "edge strips".
241
- * ...
242
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-dock)
235
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-dock)
243
236
  */
244
237
  dock ? : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object
245
238
  /**
246
239
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
247
240
  * Set to `true` to be able to drag a widget freely on the page. Or set to an object with a ´handleSelector´
248
241
  * property which controls when a drag should start.
249
- * ...
250
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-draggable)
242
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-draggable)
243
+ * @property {string} handleSelector CSS selector used to determine if drag can be started from a mouse-downed element inside the widget
251
244
  */
252
- draggable ? : boolean|{
253
- handleSelector?: string
254
- }
245
+ draggable ? : boolean|object
255
246
  /**
256
247
  * User can edit text in text field (otherwise only pick from attached picker)
257
248
  */
@@ -259,21 +250,18 @@ export type BryntumChecklistFilterComboProps = {
259
250
  /**
260
251
  * An object specifying attributes to assign to the root element of this widget.
261
252
  * Set `null` value to attribute to remove it.
262
- * ...
263
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-elementAttributes)
253
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-elementAttributes)
264
254
  */
265
255
  elementAttributes ? : Record<string, string|null>
266
256
  /**
267
257
  * Text to display in the drop down when there are no items in the underlying store.
268
- * ...
269
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-emptyText)
258
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-emptyText)
270
259
  */
271
260
  emptyText ? : string
272
261
  /**
273
262
  * A function which creates an array of values for the [filterParamName](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-filterParamName) to pass
274
263
  * any filters to the server upon load.
275
- * ...
276
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-encodeFilterParams)
264
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-encodeFilterParams)
277
265
  * @param {object[]} filters filters
278
266
  * @returns {object[]} array of values
279
267
  */
@@ -287,8 +275,7 @@ export type BryntumChecklistFilterComboProps = {
287
275
  /**
288
276
  * The name of an operator type as implemented in [operator](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter#config-operator)
289
277
  * to use when filtering the dropdown list based upon the typed value.
290
- * ...
291
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-filterOperator)
278
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-filterOperator)
292
279
  */
293
280
  filterOperator ? : CollectionCompareOperator
294
281
  /**
@@ -329,8 +316,7 @@ export type BryntumChecklistFilterComboProps = {
329
316
  hidden ? : boolean
330
317
  /**
331
318
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
332
- * ...
333
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hideAnimation)
319
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hideAnimation)
334
320
  */
335
321
  hideAnimation ? : boolean|object
336
322
  /**
@@ -351,8 +337,7 @@ export type BryntumChecklistFilterComboProps = {
351
337
  /**
352
338
  * An optional string to display inside the input field as an overlay. This can be useful for displaying
353
339
  * a field's units.
354
- * ...
355
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hint)
340
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hint)
356
341
  * @param {object} data A data object
357
342
  * @param {Core.widget.Field} data.source A reference to the field instance
358
343
  * @param {any} data.value The current value of the field
@@ -363,8 +348,7 @@ export type BryntumChecklistFilterComboProps = {
363
348
  * 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.
364
349
  * Since this can allow malicious content to be executed, be sure not to include user-entered data or to
365
350
  * encode such data (see [encodeHtml](https://bryntum.com/products/grid/docs/api/Core/helper/StringHelper#function-encodeHtml-static)).
366
- * ...
367
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hintHtml)
351
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-hintHtml)
368
352
  * @param {object} data A data object
369
353
  * @param {Core.widget.Field} data.source A reference to the field instance
370
354
  * @param {any} data.value The current value of the field
@@ -377,23 +361,20 @@ export type BryntumChecklistFilterComboProps = {
377
361
  id ? : string
378
362
  /**
379
363
  * Determines if the widgets read-only state should be controlled by its parent.
380
- * ...
381
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ignoreParentReadOnly)
364
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ignoreParentReadOnly)
382
365
  */
383
366
  ignoreParentReadOnly ? : boolean
384
367
  /**
385
368
  * Set this config to `true` to always display items horizontally along with this field. This assigns an
386
369
  * [hbox](https://bryntum.com/products/grid/docs/api/Core/widget/layout/Box) as the [layout](#Core/widget/Container#config-layout) to the
387
370
  * [container](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-container).
388
- * ...
389
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-inline)
371
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-inline)
390
372
  */
391
373
  inline ? : boolean
392
374
  /**
393
375
  * Configure this as `true` to render the dropdown list as a permanently visible list
394
376
  * in the document flow immediately below the input area instead of as a popup.
395
- * ...
396
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-inlinePicker)
377
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-inlinePicker)
397
378
  */
398
379
  inlinePicker ? : boolean
399
380
  /**
@@ -431,30 +412,26 @@ export type BryntumChecklistFilterComboProps = {
431
412
  insertFirst ? : HTMLElement|string
432
413
  /**
433
414
  * Rows to display in the dropdown (list items).
434
- * ...
435
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-items)
415
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-items)
436
416
  */
437
417
  items ? : object[]|string[]|object
438
418
  /**
439
419
  * An object whose keys are the [key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) name
440
420
  * and optional modifier prefixes: `'Ctrl+'`, `'Alt+'`, `'Meta+'`, and `'Shift+'` (case-insensitive). The values
441
421
  * are the name of the instance method to call when the keystroke is received.
442
- * ...
443
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyMap)
422
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyMap)
444
423
  */
445
424
  keyMap ? : Record<string, KeyMapConfig>
446
425
  /**
447
426
  * The delay in milliseconds to wait after the last keystroke before triggering a change event.
448
427
  * Set to 0 to not trigger change events from keystrokes (listen for input event instead to have
449
428
  * immediate feedback, change will still be triggered on blur).
450
- * ...
451
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyStrokeChangeDelay)
429
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyStrokeChangeDelay)
452
430
  */
453
431
  keyStrokeChangeDelay ? : number
454
432
  /**
455
433
  * The delay in milliseconds to wait after the last keystroke before filtering the list.
456
- * ...
457
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyStrokeFilterDelay)
434
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-keyStrokeFilterDelay)
458
435
  */
459
436
  keyStrokeFilterDelay ? : number
460
437
  /**
@@ -467,15 +444,15 @@ export type BryntumChecklistFilterComboProps = {
467
444
  labelCls ? : string|object
468
445
  /**
469
446
  * Label position, either 'before' the field or 'above' the field
470
- * ...
471
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-labelPosition)
447
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-labelPosition)
472
448
  */
473
449
  labelPosition ? : 'before'|'above'|null
474
450
  /**
475
451
  * The labels to add either before or after the input field.
476
452
  * Each label may have the following properties:
477
- * ...
478
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-labels)
453
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-labels)
454
+ * @property {string} html Label text
455
+ * @property {'start','end'} align Which end of the file the label should go
479
456
  */
480
457
  labels ? : object[]
481
458
  /**
@@ -488,8 +465,7 @@ export type BryntumChecklistFilterComboProps = {
488
465
  listCls ? : string
489
466
  /**
490
467
  * The listener set for this object.
491
- * ...
492
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-listeners)
468
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-listeners)
493
469
  */
494
470
  listeners ? : ChecklistFilterComboListeners
495
471
  /**
@@ -500,18 +476,16 @@ export type BryntumChecklistFilterComboProps = {
500
476
  listItemPillTpl ? : (record: Model) => string
501
477
  /**
502
478
  * Template string used to render the list items in the dropdown list
503
- * ...
504
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-listItemTpl)
479
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-listItemTpl)
505
480
  * @param {Core.data.Model} record The record representing the item being rendered
506
481
  * @returns {string,void}
507
482
  */
508
- listItemTpl ? : (record: Model|ComboModel) => string|void
483
+ listItemTpl ? : (record: Model) => string|void
509
484
  /**
510
485
  * A class translations of which are used for translating this entity.
511
486
  * This is often used when translations of an item are defined on its container class.
512
487
  * For example:
513
- * ...
514
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-localeClass)
488
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-localeClass)
515
489
  */
516
490
  localeClass ? : typeof Base
517
491
  /**
@@ -523,8 +497,7 @@ export type BryntumChecklistFilterComboProps = {
523
497
  * In case there is a need to localize not typical value (not a String value or a field with re-defined setter/getter),
524
498
  * you could use 'localeKey' meta configuration.
525
499
  * Example:
526
- * ...
527
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-localizableProperties)
500
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-localizableProperties)
528
501
  */
529
502
  localizableProperties ? : string[]
530
503
  /**
@@ -550,8 +523,7 @@ export type BryntumChecklistFilterComboProps = {
550
523
  maxHeight ? : string|number
551
524
  /**
552
525
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
553
- * ...
554
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-maximizeOnMobile)
526
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-maximizeOnMobile)
555
527
  */
556
528
  maximizeOnMobile ? : number|string
557
529
  /**
@@ -565,8 +537,7 @@ export type BryntumChecklistFilterComboProps = {
565
537
  maxWidth ? : string|number
566
538
  /**
567
539
  * The minimum string length to trigger the filtering, only relevant when [editable](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-editable) is `true`.
568
- * ...
569
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-minChars)
540
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-minChars)
570
541
  */
571
542
  minChars ? : number
572
543
  /**
@@ -587,12 +558,10 @@ export type BryntumChecklistFilterComboProps = {
587
558
  * When this is configured as `true` a [ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver)
588
559
  * is used to monitor this element for size changes caused by either style manipulation, or by CSS
589
560
  * layout.
590
- * ...
591
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-monitorResize)
561
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-monitorResize)
562
+ * @property {boolean} immediate Set to `true` to receive resize notifications immediately.
592
563
  */
593
- monitorResize ? : boolean|{
594
- immediate?: boolean
595
- }
564
+ monitorResize ? : boolean|object
596
565
  /**
597
566
  * A key value which, when typed in a [multiSelect](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-multiSelect) Combo, selects the
598
567
  * currently active item in the picker, and clears the input field ready for another
@@ -603,8 +572,7 @@ export type BryntumChecklistFilterComboProps = {
603
572
  * Name of the field which is used as a key to get/set values from/to the field.
604
573
  * Used prior to [ref](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-ref) and [id](#Core/widget/Widget#config-id) in
605
574
  * [Container.values](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-values).
606
- * ...
607
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-name)
575
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-name)
608
576
  */
609
577
  name ? : string
610
578
  /**
@@ -615,10 +583,9 @@ export type BryntumChecklistFilterComboProps = {
615
583
  /**
616
584
  * Configuration object for the [picker](https://bryntum.com/products/grid/docs/api/Core/widget/List) on initialization. Returns the
617
585
  * [picker](https://bryntum.com/products/grid/docs/api/Core/widget/List) instance at runtime.
618
- * ...
619
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-picker)
586
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-picker)
620
587
  */
621
- picker ? : ListConfig|List
588
+ picker ? : ListConfig
622
589
  /**
623
590
  * The name of the element property to which the picker should size and align itself.
624
591
  */
@@ -635,8 +602,7 @@ export type BryntumChecklistFilterComboProps = {
635
602
  * 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
636
603
  * not participate in the standard layout of that widget, and must be positioned relatively to that
637
604
  * widget's [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement).
638
- * ...
639
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-positioned)
605
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-positioned)
640
606
  */
641
607
  positioned ? : boolean
642
608
  /**
@@ -648,22 +614,19 @@ export type BryntumChecklistFilterComboProps = {
648
614
  * Optionally a [Filter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) config object which the combo should use for
649
615
  * filtering using the typed value.
650
616
  * This may use a `filterBy` property to test its `value` against any field in the passed record.
651
- * ...
652
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-primaryFilter)
617
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-primaryFilter)
653
618
  */
654
619
  primaryFilter ? : CollectionFilterConfig
655
620
  /**
656
621
  * Makes the field unmodifiable by user action. The input area is not editable, and triggers
657
622
  * are unresponsive.
658
- * ...
659
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-readOnly)
623
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-readOnly)
660
624
  */
661
625
  readOnly ? : boolean
662
626
  relayStoreEvents ? : boolean
663
627
  /**
664
628
  * Predefined style to use for the field. Possible values are:
665
- * ...
666
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-rendition)
629
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-rendition)
667
630
  */
668
631
  rendition ? : 'outlined'|'filled'|string
669
632
  /**
@@ -682,23 +645,26 @@ export type BryntumChecklistFilterComboProps = {
682
645
  * Configure as `true` to have the component display a translucent ripple when its
683
646
  * [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
684
647
  * current theme supports ripples</em>. Out of the box, only the Material theme supports ripples.
685
- * ...
686
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ripple)
687
- */
688
- ripple ? : boolean|{
689
- delegate?: string
690
- color?: string
691
- radius?: number
692
- clip?: string
693
- }
648
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ripple)
649
+ * @property {string} [delegate] A CSS selector to filter which child elements trigger ripples. By default, the ripple is clipped to the triggering element.
650
+ * @property {string} [color] A CSS color name or specification.
651
+ * @property {number} [radius] The ending radius of the ripple. Note that it will be clipped by the target element by default.
652
+ * @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.
653
+ */
654
+ ripple ? : boolean|object
655
+ /**
656
+ * The ARIA role to apply to this widget's element. By default, this is set to `'presentation'` to avoid
657
+ * accidentally applying a role which may interfere with screen readers.
658
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-role)
659
+ */
660
+ role ? : string
694
661
  /**
695
662
  * 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`
696
663
  */
697
664
  rootElement ? : ShadowRoot|HTMLElement
698
665
  /**
699
666
  * This may be configured as `true` to make the widget's element use the `direction:rtl` style.
700
- * ...
701
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-rtl)
667
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-rtl)
702
668
  */
703
669
  rtl ? : boolean
704
670
  /**
@@ -712,8 +678,7 @@ export type BryntumChecklistFilterComboProps = {
712
678
  searchText ? : string
713
679
  /**
714
680
  * *Only valid if this Widget is [floating](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-floating).*
715
- * ...
716
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-showAnimation)
681
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-showAnimation)
717
682
  */
718
683
  showAnimation ? : boolean|object
719
684
  /**
@@ -751,8 +716,7 @@ export type BryntumChecklistFilterComboProps = {
751
716
  * 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
752
717
  * [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
753
718
  * this widget:
754
- * ...
755
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tab)
719
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tab)
756
720
  */
757
721
  tab ? : boolean|TabConfig
758
722
  /**
@@ -760,14 +724,12 @@ export type BryntumChecklistFilterComboProps = {
760
724
  * is equivalent to natural tab order, but is unnecessary for fields since they are naturally tabbable
761
725
  * (i.e., accessible via the TAB key). Setting to `-1` disables tabbability but allows for focus to be set
762
726
  * to the element programmatically.
763
- * ...
764
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tabIndex)
727
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tabIndex)
765
728
  */
766
729
  tabIndex ? : number
767
730
  /**
768
731
  * Text alignment: 'left', 'center' or 'right'. Also accepts direction neutral 'start' and 'end'.
769
- * ...
770
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-textAlign)
732
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-textAlign)
771
733
  */
772
734
  textAlign ? : 'left'|'center'|'right'|'start'|'end'
773
735
  /**
@@ -776,30 +738,26 @@ export type BryntumChecklistFilterComboProps = {
776
738
  title ? : string
777
739
  /**
778
740
  * Tooltip for the widget, either as a string or as a Tooltip config object.
779
- * ...
780
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tooltip)
741
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-tooltip)
781
742
  */
782
743
  tooltip ? : string|TooltipConfig|null
783
744
  /**
784
745
  * How to query the store upon click of the expand trigger. Specify one of these values:
785
- * ...
786
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-triggerAction)
746
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-triggerAction)
787
747
  */
788
748
  triggerAction ? : 'all'|'last'|null
789
749
  /**
790
750
  * The triggers to add either before or after the input field. Each property name is the reference by which
791
751
  * an instantiated Trigger Widget may be retrieved from the live `triggers` property.
792
- * ...
793
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-triggers)
752
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-triggers)
794
753
  */
795
- triggers ? : Record<string, FieldTriggerConfig>|Record<string, Widget>
754
+ triggers ? : Record<string, FieldTriggerConfig>
796
755
  type ? : 'checklistfiltercombo'
797
756
  /**
798
757
  * Custom CSS class name suffixes to apply to the elements rendered by this widget. This may be specified
799
758
  * as a space separated string, an array of strings, or as an object in which property names with truthy
800
759
  * values are used as the class names.
801
- * ...
802
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ui)
760
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-ui)
803
761
  */
804
762
  ui ? : string|object
805
763
  /**
@@ -818,8 +776,7 @@ export type BryntumChecklistFilterComboProps = {
818
776
  /**
819
777
  * Field used for item value when populating from store. Setting this to `null` will
820
778
  * yield the selected record as the Combo's [value](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#property-value).
821
- * ...
822
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-valueField)
779
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-valueField)
823
780
  */
824
781
  valueField ? : string|null
825
782
  /**
@@ -835,14 +792,12 @@ export type BryntumChecklistFilterComboProps = {
835
792
  width ? : string|number
836
793
  /**
837
794
  * The x position for the widget.
838
- * ...
839
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-x)
795
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-x)
840
796
  */
841
797
  x ? : number
842
798
  /**
843
799
  * The y position for the widget.
844
- * ...
845
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-y)
800
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-y)
846
801
  */
847
802
  y ? : number
848
803
 
@@ -903,6 +858,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
903
858
  'caseSensitive',
904
859
  'catchEventHandlerExceptions',
905
860
  'centered',
861
+ 'checkValidity',
906
862
  'chipView',
907
863
  'clearable',
908
864
  'clearTextOnPickerHide',
@@ -1000,6 +956,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1000
956
  'required',
1001
957
  'revertOnEscape',
1002
958
  'ripple',
959
+ 'role',
1003
960
  'rootElement',
1004
961
  'rtl',
1005
962
  'scrollAction',
@@ -1044,6 +1001,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1044
1001
  'cacheLastResult',
1045
1002
  'caseSensitive',
1046
1003
  'centered',
1004
+ 'checkValidity',
1047
1005
  'chipView',
1048
1006
  'clearable',
1049
1007
  'clearTextOnPickerHide',
@@ -1114,6 +1072,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1114
1072
  'relayStoreEvents',
1115
1073
  'revertOnEscape',
1116
1074
  'ripple',
1075
+ 'role',
1117
1076
  'rootElement',
1118
1077
  'scrollAction',
1119
1078
  'showAnimation',
@@ -1135,7 +1094,6 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1135
1094
 
1136
1095
  private static bryntumProps: string[] = BryntumChecklistFilterComboComponent.bryntumFeatureNames.concat([
1137
1096
  'alignSelf',
1138
- 'anchorSize',
1139
1097
  'appendTo',
1140
1098
  'badge',
1141
1099
  'callOnFunctions',
@@ -1149,7 +1107,6 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1149
1107
  'extraData',
1150
1108
  'filterOperator',
1151
1109
  'flex',
1152
- 'focusVisible',
1153
1110
  'formula',
1154
1111
  'height',
1155
1112
  'hidden',
@@ -1218,6 +1175,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1218
1175
  @Input() cacheLastResult ! : number|string|Duration|DurationConfig;
1219
1176
  @Input() caseSensitive ! : boolean;
1220
1177
  @Input() centered ! : boolean;
1178
+ @Input() checkValidity ! : ((field: Field) => void)|string;
1221
1179
  @Input() chipView ! : ChipViewConfig;
1222
1180
  @Input() clearable ! : boolean|FieldTriggerConfig;
1223
1181
  @Input() clearTextOnPickerHide ! : boolean;
@@ -1226,7 +1184,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1226
1184
  @Input() color ! : Color;
1227
1185
  @Input() config ! : object;
1228
1186
  @Input() constrainTo ! : HTMLElement|Widget|Rectangle;
1229
- @Input() container ! : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|FieldContainerConfig|FieldContainer;
1187
+ @Input() container ! : Record<string, GridContainerItemConfig>|GridContainerItemConfig[]|FieldContainerConfig;
1230
1188
  @Input() containValues ! : boolean|string|((field: Field) => boolean);
1231
1189
  @Input() contentElementCls ! : string|object;
1232
1190
  @Input() createOnUnmatched ! : ((name: string, combo: Combo) => Model)|string|boolean;
@@ -1234,11 +1192,9 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1234
1192
  @Input() defaultBindProperty ! : string;
1235
1193
  @Input() detectCSSCompatibilityIssues ! : boolean;
1236
1194
  @Input() displayField ! : string;
1237
- @Input() displayValueRenderer ! : (record: Model|ComboModel, combo: Combo) => string|void;
1195
+ @Input() displayValueRenderer ! : (record: Model, combo: Combo) => string|void;
1238
1196
  @Input() dock ! : 'top'|'bottom'|'left'|'right'|'start'|'end'|'header'|'pre-header'|object;
1239
- @Input() draggable ! : boolean|{
1240
- handleSelector?: string
1241
- };
1197
+ @Input() draggable ! : boolean|object;
1242
1198
  @Input() elementAttributes ! : Record<string, string|null>;
1243
1199
  @Input() emptyText ! : string;
1244
1200
  @Input() encodeFilterParams ! : (filters: object[]) => object[];
@@ -1269,7 +1225,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1269
1225
  @Input() labelWidth ! : string|number;
1270
1226
  @Input() listCls ! : string;
1271
1227
  @Input() listeners ! : ChecklistFilterComboListeners;
1272
- @Input() listItemTpl ! : (record: Model|ComboModel) => string|void;
1228
+ @Input() listItemTpl ! : (record: Model) => string|void;
1273
1229
  @Input() localeClass ! : typeof Base;
1274
1230
  @Input() localizable ! : boolean;
1275
1231
  @Input() localizableProperties ! : string[];
@@ -1278,9 +1234,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1278
1234
  @Input() maxLength ! : number;
1279
1235
  @Input() minChars ! : number;
1280
1236
  @Input() minLength ! : number;
1281
- @Input() monitorResize ! : boolean|{
1282
- immediate?: boolean
1283
- };
1237
+ @Input() monitorResize ! : boolean|object;
1284
1238
  @Input() multiValueSeparator ! : string;
1285
1239
  @Input() name ! : string;
1286
1240
  @Input() overlayAnchor ! : boolean;
@@ -1291,12 +1245,8 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1291
1245
  @Input() primaryFilter ! : CollectionFilterConfig;
1292
1246
  @Input() relayStoreEvents ! : boolean;
1293
1247
  @Input() revertOnEscape ! : boolean;
1294
- @Input() ripple ! : boolean|{
1295
- delegate?: string
1296
- color?: string
1297
- radius?: number
1298
- clip?: string
1299
- };
1248
+ @Input() ripple ! : boolean|object;
1249
+ @Input() role ! : string;
1300
1250
  @Input() rootElement ! : ShadowRoot|HTMLElement;
1301
1251
  @Input() scrollAction ! : 'hide'|'realign'|null;
1302
1252
  @Input() showAnimation ! : boolean|object;
@@ -1362,15 +1312,13 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1362
1312
  @Input() y ! : number;
1363
1313
 
1364
1314
  // Properties only
1365
- @Input() anchorSize ! : number[];
1366
- @Input() content ! : string;
1367
- @Input() focusVisible ! : boolean;
1368
- @Input() formula ! : string;
1369
- @Input() html ! : string|((widget: Widget) => string)|DomConfig|DomConfig[]|VueConfig;
1370
- @Input() input ! : HTMLElement;
1371
- @Input() multiSelect ! : boolean;
1372
- @Input() parent ! : Widget;
1373
- @Input() scrollable ! : Scroller;
1315
+ @Input() content ! : string;
1316
+ @Input() formula ! : string;
1317
+ @Input() html ! : string|((widget: Widget) => void)|DomConfig|DomConfig[]|VueConfig|ReactJSX;
1318
+ @Input() input ! : HTMLElement;
1319
+ @Input() multiSelect ! : boolean;
1320
+ @Input() parent ! : Widget;
1321
+ @Input() scrollable ! : Scroller;
1374
1322
 
1375
1323
  // Events emitters
1376
1324
  /**
@@ -1394,7 +1342,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1394
1342
  * @param {object} event Event object
1395
1343
  * @param {Core.widget.Widget} event.source The widget being hidden.
1396
1344
  */
1397
- @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => Promise<boolean>|boolean|void)|string>();
1345
+ @Output() onBeforeHide: any = new EventEmitter<((event: { source: Widget }) => boolean|void)|string>();
1398
1346
  /**
1399
1347
  * Triggered before a widget is shown. Return `false` to prevent the action.
1400
1348
  * @param {object} event Event object
@@ -1403,8 +1351,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1403
1351
  @Output() onBeforeShow: any = new EventEmitter<((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string>();
1404
1352
  /**
1405
1353
  * Fires when any other event is fired from the object.
1406
- * ...
1407
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-catchAll)
1354
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-catchAll)
1408
1355
  * @param {object} event Event object
1409
1356
  * @param {{[key: string]: any, type: string}} event.event The Object that contains event details
1410
1357
  * @param {string} event.event.type The type of the event which is caught by the listener
@@ -1424,8 +1371,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1424
1371
  @Output() onChange: any = new EventEmitter<((event: { source: Field|any, value: string|number|boolean|any, oldValue: string|number|boolean|any, valid: boolean, event: Event, userAction: boolean, checked: boolean }) => void)|string>();
1425
1372
  /**
1426
1373
  * Fired when this field is [cleared](https://bryntum.com/products/grid/docs/api/Core/widget/Field#function-clear).
1427
- * ...
1428
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-clear)
1374
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-clear)
1429
1375
  * @param {object} event Event object
1430
1376
  * @param {Core.widget.Field,any} event.source This Field
1431
1377
  */
@@ -1484,8 +1430,7 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1484
1430
  /**
1485
1431
  * Triggered when a widget which had been in a non-visible state for any reason
1486
1432
  * achieves visibility.
1487
- * ...
1488
- * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-paint)
1433
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#event-paint)
1489
1434
  * @param {object} event Event object
1490
1435
  * @param {Core.widget.Widget} event.source The widget being painted.
1491
1436
  * @param {boolean} event.firstPaint `true` if this is the first paint.
@@ -1597,11 +1542,69 @@ export class BryntumChecklistFilterComboComponent implements OnInit, OnDestroy {
1597
1542
  WrapperHelper.devWarningContainer(instanceName, containerParam);
1598
1543
  }
1599
1544
 
1545
+ // In shadow DOM (e.g. Angular ViewEncapsulation.ShadowDom), theme CSS from document.head
1546
+ // does not cascade into the shadow root. Inject a matching <link> so Bryntum's CSS check
1547
+ // finds the theme. The @font-face rules from component styles are also extracted to
1548
+ // document scope so document.fonts detects them (shadow-root @font-face is not reliably
1549
+ // included in document.fonts across all browsers).
1550
+ const shadowRoot = elementRef.nativeElement.getRootNode();
1551
+ if (shadowRoot instanceof ShadowRoot) {
1552
+ initThemeInShadowRoots();
1553
+ BryntumChecklistFilterComboComponent.ensureFontsInDocument(shadowRoot);
1554
+ }
1555
+
1600
1556
  // @ts-ignore
1601
1557
  me.instance = instanceName === 'Widget' ? Widget.create(bryntumConfig) : new instanceClass(bryntumConfig);
1602
1558
 
1603
1559
  }
1604
1560
 
1561
+ /**
1562
+ * Extracts all @font-face declarations from a shadow root's stylesheets and adds them to
1563
+ * document.head as a single <style> element. This is needed because @font-face rules inside
1564
+ * a shadow root are not reliably included in document.fonts across all browsers, causing
1565
+ * Bryntum's CSS compatibility check to incorrectly report missing fonts.
1566
+ * Safe to call multiple times — the extraction runs only once per page.
1567
+ */
1568
+ private static ensureFontsInDocument(shadowRoot: ShadowRoot): void {
1569
+ if (document.querySelector('#b-shadow-root-fonts')) {
1570
+ return;
1571
+ }
1572
+
1573
+ const fontFaceRules: string[] = [];
1574
+
1575
+ const extractFromSheet = (sheet: CSSStyleSheet): void => {
1576
+ try {
1577
+ const rules = sheet.cssRules;
1578
+ for (let i = 0; i < rules.length; i++) {
1579
+ if (rules[i].type === CSSRule.FONT_FACE_RULE) {
1580
+ fontFaceRules.push(rules[i].cssText);
1581
+ }
1582
+ }
1583
+ }
1584
+ catch (_e) {
1585
+ // Cross-origin access may throw; silently skip
1586
+ }
1587
+ };
1588
+
1589
+ // adoptedStyleSheets (Angular 14+ / modern browsers)
1590
+ const adoptedSheets: CSSStyleSheet[] = (shadowRoot as any).adoptedStyleSheets ?? [];
1591
+ adoptedSheets.forEach(sheet => extractFromSheet(sheet));
1592
+
1593
+ // <style> elements (older Angular or fallback)
1594
+ shadowRoot.querySelectorAll('style').forEach(el => {
1595
+ if (el.sheet) {
1596
+ extractFromSheet(el.sheet);
1597
+ }
1598
+ });
1599
+
1600
+ if (fontFaceRules.length > 0) {
1601
+ const style = document.createElement('style');
1602
+ style.id = 'b-shadow-root-fonts';
1603
+ style.textContent = fontFaceRules.join('\n');
1604
+ document.head.appendChild(style);
1605
+ }
1606
+ }
1607
+
1605
1608
  /**
1606
1609
  * Watch for changes
1607
1610
  * @param changes