@bryntum/grid-angular-thin 7.3.1 → 7.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/README.md +4 -4
  2. package/bundles/bryntum-grid-angular-thin.umd.js.map +1 -1
  3. package/esm2015/lib/bryntum-a-i-filter-field.component.js +1 -1
  4. package/esm2015/lib/bryntum-checklist-filter-combo.component.js +1 -1
  5. package/esm2015/lib/bryntum-grid-base.component.js +1 -1
  6. package/esm2015/lib/bryntum-grid-chart-designer.component.js +1 -1
  7. package/esm2015/lib/bryntum-grid-field-filter-picker-group.component.js +1 -1
  8. package/esm2015/lib/bryntum-grid-field-filter-picker.component.js +1 -1
  9. package/esm2015/lib/bryntum-grid.component.js +1 -1
  10. package/esm2015/lib/bryntum-group-bar.component.js +1 -1
  11. package/esm2015/lib/bryntum-tree-combo.component.js +1 -1
  12. package/esm2015/lib/bryntum-tree-grid.component.js +1 -1
  13. package/fesm2015/bryntum-grid-angular-thin.js.map +1 -1
  14. package/lib/bryntum-a-i-filter-field.component.d.ts +6 -0
  15. package/lib/bryntum-checklist-filter-combo.component.d.ts +6 -0
  16. package/lib/bryntum-grid-base.component.d.ts +6 -0
  17. package/lib/bryntum-grid-chart-designer.component.d.ts +6 -0
  18. package/lib/bryntum-grid-field-filter-picker-group.component.d.ts +6 -0
  19. package/lib/bryntum-grid-field-filter-picker.component.d.ts +6 -0
  20. package/lib/bryntum-grid.component.d.ts +6 -0
  21. package/lib/bryntum-group-bar.component.d.ts +10 -2
  22. package/lib/bryntum-tree-combo.component.d.ts +6 -0
  23. package/lib/bryntum-tree-grid.component.d.ts +6 -0
  24. package/package.json +1 -1
  25. package/src/lib/bryntum-a-i-filter-field.component.ts +6 -0
  26. package/src/lib/bryntum-checklist-filter-combo.component.ts +6 -0
  27. package/src/lib/bryntum-grid-base.component.ts +6 -0
  28. package/src/lib/bryntum-grid-chart-designer.component.ts +6 -0
  29. package/src/lib/bryntum-grid-field-filter-picker-group.component.ts +6 -0
  30. package/src/lib/bryntum-grid-field-filter-picker.component.ts +6 -0
  31. package/src/lib/bryntum-grid.component.ts +6 -0
  32. package/src/lib/bryntum-group-bar.component.ts +10 -2
  33. package/src/lib/bryntum-tree-combo.component.ts +6 -0
  34. package/src/lib/bryntum-tree-grid.component.ts +6 -0
@@ -31,6 +31,8 @@ export declare type BryntumAIFilterFieldProps = {
31
31
  /**
32
32
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
33
33
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
34
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
35
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-appendTo)
34
36
  */
35
37
  appendTo?: HTMLElement | string;
36
38
  /**
@@ -303,10 +305,14 @@ export declare type BryntumAIFilterFieldProps = {
303
305
  inputWidth?: string | number;
304
306
  /**
305
307
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
308
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
309
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertBefore)
306
310
  */
307
311
  insertBefore?: HTMLElement | string;
308
312
  /**
309
313
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
314
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
315
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertFirst)
310
316
  */
311
317
  insertFirst?: HTMLElement | string;
312
318
  /**
@@ -31,6 +31,8 @@ export declare type BryntumChecklistFilterComboProps = {
31
31
  /**
32
32
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
33
33
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
34
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
35
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-appendTo)
34
36
  */
35
37
  appendTo?: HTMLElement | string;
36
38
  /**
@@ -401,10 +403,14 @@ export declare type BryntumChecklistFilterComboProps = {
401
403
  inputWidth?: string | number;
402
404
  /**
403
405
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
406
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
407
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertBefore)
404
408
  */
405
409
  insertBefore?: HTMLElement | string;
406
410
  /**
407
411
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
412
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
413
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertFirst)
408
414
  */
409
415
  insertFirst?: HTMLElement | string;
410
416
  /**
@@ -39,6 +39,8 @@ export declare type BryntumGridBaseProps = {
39
39
  /**
40
40
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
41
41
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
42
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
43
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-appendTo)
42
44
  */
43
45
  appendTo?: HTMLElement | string;
44
46
  /**
@@ -360,10 +362,14 @@ export declare type BryntumGridBaseProps = {
360
362
  inputFieldAlign?: 'start' | 'end';
361
363
  /**
362
364
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
365
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
366
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-insertBefore)
363
367
  */
364
368
  insertBefore?: HTMLElement | string;
365
369
  /**
366
370
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
371
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
372
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-insertFirst)
367
373
  */
368
374
  insertFirst?: HTMLElement | string;
369
375
  /**
@@ -31,6 +31,8 @@ export declare type BryntumGridChartDesignerProps = {
31
31
  /**
32
32
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
33
33
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
34
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
35
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-appendTo)
34
36
  */
35
37
  appendTo?: HTMLElement | string;
36
38
  /**
@@ -208,10 +210,14 @@ export declare type BryntumGridChartDesignerProps = {
208
210
  ignoreParentReadOnly?: boolean;
209
211
  /**
210
212
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
213
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
214
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-insertBefore)
211
215
  */
212
216
  insertBefore?: HTMLElement | string;
213
217
  /**
214
218
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
219
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
220
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-insertFirst)
215
221
  */
216
222
  insertFirst?: HTMLElement | string;
217
223
  /**
@@ -41,6 +41,8 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
41
41
  /**
42
42
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
43
43
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
44
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
45
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-appendTo)
44
46
  */
45
47
  appendTo?: HTMLElement | string;
46
48
  /**
@@ -289,10 +291,14 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
289
291
  inputFieldAlign?: 'start' | 'end';
290
292
  /**
291
293
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
294
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
295
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertBefore)
292
296
  */
293
297
  insertBefore?: HTMLElement | string;
294
298
  /**
295
299
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
300
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
301
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertFirst)
296
302
  */
297
303
  insertFirst?: HTMLElement | string;
298
304
  /**
@@ -38,6 +38,8 @@ export declare type BryntumGridFieldFilterPickerProps = {
38
38
  /**
39
39
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
40
40
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
41
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
42
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-appendTo)
41
43
  */
42
44
  appendTo?: HTMLElement | string;
43
45
  /**
@@ -274,10 +276,14 @@ export declare type BryntumGridFieldFilterPickerProps = {
274
276
  inputFieldAlign?: 'start' | 'end';
275
277
  /**
276
278
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
279
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
280
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-insertBefore)
277
281
  */
278
282
  insertBefore?: HTMLElement | string;
279
283
  /**
280
284
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
285
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
286
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-insertFirst)
281
287
  */
282
288
  insertFirst?: HTMLElement | string;
283
289
  /**
@@ -39,6 +39,8 @@ export declare type BryntumGridProps = {
39
39
  /**
40
40
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
41
41
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
42
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
43
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-appendTo)
42
44
  */
43
45
  appendTo?: HTMLElement | string;
44
46
  /**
@@ -360,10 +362,14 @@ export declare type BryntumGridProps = {
360
362
  inputFieldAlign?: 'start' | 'end';
361
363
  /**
362
364
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
365
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
366
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-insertBefore)
363
367
  */
364
368
  insertBefore?: HTMLElement | string;
365
369
  /**
366
370
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
371
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
372
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-insertFirst)
367
373
  */
368
374
  insertFirst?: HTMLElement | string;
369
375
  /**
@@ -41,6 +41,8 @@ export declare type BryntumGroupBarProps = {
41
41
  /**
42
42
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
43
43
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
44
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
45
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-appendTo)
44
46
  */
45
47
  appendTo?: HTMLElement | string;
46
48
  /**
@@ -90,9 +92,11 @@ export declare type BryntumGroupBarProps = {
90
92
  /**
91
93
  * If [closable](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-closable) is `true`, this is the name of a callback function to handle what the "close"
92
94
  * action means. If not provided, the record representing the chip is removed from the store.
95
+ * @param {Core.data.Model[]} records Records to be closed
96
+ * @param {object} options Close options
93
97
  * @returns {void}
94
98
  */
95
- closeHandler?: string | (() => void);
99
+ closeHandler?: string | ((records: Model[], options: object) => void);
96
100
  /**
97
101
  * Custom CSS classes to add to element.
98
102
  * May be specified as a space separated string, or as an object in which property names
@@ -269,10 +273,14 @@ export declare type BryntumGroupBarProps = {
269
273
  ignoreParentReadOnly?: boolean;
270
274
  /**
271
275
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
276
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
277
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-insertBefore)
272
278
  */
273
279
  insertBefore?: HTMLElement | string;
274
280
  /**
275
281
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
282
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
283
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-insertFirst)
276
284
  */
277
285
  insertFirst?: HTMLElement | string;
278
286
  /**
@@ -559,7 +567,7 @@ export declare class BryntumGroupBarComponent implements OnInit, OnDestroy {
559
567
  bubbleEvents: object;
560
568
  centered: boolean;
561
569
  closable: boolean;
562
- closeHandler: string | (() => void);
570
+ closeHandler: string | ((records: Model[], options: object) => void);
563
571
  color: Color;
564
572
  config: object;
565
573
  constrainTo: HTMLElement | Widget | Rectangle;
@@ -31,6 +31,8 @@ export declare type BryntumTreeComboProps = {
31
31
  /**
32
32
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
33
33
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
34
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
35
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-appendTo)
34
36
  */
35
37
  appendTo?: HTMLElement | string;
36
38
  /**
@@ -401,10 +403,14 @@ export declare type BryntumTreeComboProps = {
401
403
  inputWidth?: string | number;
402
404
  /**
403
405
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
406
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
407
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-insertBefore)
404
408
  */
405
409
  insertBefore?: HTMLElement | string;
406
410
  /**
407
411
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
412
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
413
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-insertFirst)
408
414
  */
409
415
  insertFirst?: HTMLElement | string;
410
416
  /**
@@ -39,6 +39,8 @@ export declare type BryntumTreeGridProps = {
39
39
  /**
40
40
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
41
41
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
42
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
43
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-appendTo)
42
44
  */
43
45
  appendTo?: HTMLElement | string;
44
46
  /**
@@ -360,10 +362,14 @@ export declare type BryntumTreeGridProps = {
360
362
  inputFieldAlign?: 'start' | 'end';
361
363
  /**
362
364
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
365
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
366
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-insertBefore)
363
367
  */
364
368
  insertBefore?: HTMLElement | string;
365
369
  /**
366
370
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
371
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
372
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-insertFirst)
367
373
  */
368
374
  insertFirst?: HTMLElement | string;
369
375
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bryntum/grid-angular-thin",
3
- "version": "7.3.1",
3
+ "version": "7.3.2",
4
4
  "description": "Angular IVY wrappers for Bryntum Grid JavaScript component",
5
5
  "keywords": [
6
6
  "bryntum",
@@ -40,6 +40,8 @@ export type BryntumAIFilterFieldProps = {
40
40
  /**
41
41
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
42
42
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
43
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
44
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-appendTo)
43
45
  */
44
46
  appendTo ? : HTMLElement|string
45
47
  /**
@@ -306,10 +308,14 @@ export type BryntumAIFilterFieldProps = {
306
308
  inputWidth ? : string|number
307
309
  /**
308
310
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
311
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
312
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertBefore)
309
313
  */
310
314
  insertBefore ? : HTMLElement|string
311
315
  /**
312
316
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
317
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
318
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertFirst)
313
319
  */
314
320
  insertFirst ? : HTMLElement|string
315
321
  /**
@@ -40,6 +40,8 @@ export type BryntumChecklistFilterComboProps = {
40
40
  /**
41
41
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
42
42
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
43
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
44
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-appendTo)
43
45
  */
44
46
  appendTo ? : HTMLElement|string
45
47
  /**
@@ -404,10 +406,14 @@ export type BryntumChecklistFilterComboProps = {
404
406
  inputWidth ? : string|number
405
407
  /**
406
408
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
409
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
410
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertBefore)
407
411
  */
408
412
  insertBefore ? : HTMLElement|string
409
413
  /**
410
414
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
415
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
416
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertFirst)
411
417
  */
412
418
  insertFirst ? : HTMLElement|string
413
419
  /**
@@ -48,6 +48,8 @@ export type BryntumGridBaseProps = {
48
48
  /**
49
49
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
50
50
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
51
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
52
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-appendTo)
51
53
  */
52
54
  appendTo ? : HTMLElement|string
53
55
  /**
@@ -359,10 +361,14 @@ export type BryntumGridBaseProps = {
359
361
  inputFieldAlign ? : 'start'|'end'
360
362
  /**
361
363
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
364
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
365
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-insertBefore)
362
366
  */
363
367
  insertBefore ? : HTMLElement|string
364
368
  /**
365
369
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
370
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
371
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-insertFirst)
366
372
  */
367
373
  insertFirst ? : HTMLElement|string
368
374
  /**
@@ -40,6 +40,8 @@ export type BryntumGridChartDesignerProps = {
40
40
  /**
41
41
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
42
42
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
43
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
44
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-appendTo)
43
45
  */
44
46
  appendTo ? : HTMLElement|string
45
47
  /**
@@ -217,10 +219,14 @@ export type BryntumGridChartDesignerProps = {
217
219
  ignoreParentReadOnly ? : boolean
218
220
  /**
219
221
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
222
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
223
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-insertBefore)
220
224
  */
221
225
  insertBefore ? : HTMLElement|string
222
226
  /**
223
227
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
228
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
229
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-insertFirst)
224
230
  */
225
231
  insertFirst ? : HTMLElement|string
226
232
  /**
@@ -50,6 +50,8 @@ export type BryntumGridFieldFilterPickerGroupProps = {
50
50
  /**
51
51
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
52
52
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
53
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
54
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-appendTo)
53
55
  */
54
56
  appendTo ? : HTMLElement|string
55
57
  /**
@@ -298,10 +300,14 @@ export type BryntumGridFieldFilterPickerGroupProps = {
298
300
  inputFieldAlign ? : 'start'|'end'
299
301
  /**
300
302
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
303
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
304
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertBefore)
301
305
  */
302
306
  insertBefore ? : HTMLElement|string
303
307
  /**
304
308
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
309
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
310
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertFirst)
305
311
  */
306
312
  insertFirst ? : HTMLElement|string
307
313
  /**
@@ -47,6 +47,8 @@ export type BryntumGridFieldFilterPickerProps = {
47
47
  /**
48
48
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
49
49
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
50
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
51
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-appendTo)
50
52
  */
51
53
  appendTo ? : HTMLElement|string
52
54
  /**
@@ -283,10 +285,14 @@ export type BryntumGridFieldFilterPickerProps = {
283
285
  inputFieldAlign ? : 'start'|'end'
284
286
  /**
285
287
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
288
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
289
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-insertBefore)
286
290
  */
287
291
  insertBefore ? : HTMLElement|string
288
292
  /**
289
293
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
294
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
295
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-insertFirst)
290
296
  */
291
297
  insertFirst ? : HTMLElement|string
292
298
  /**
@@ -48,6 +48,8 @@ export type BryntumGridProps = {
48
48
  /**
49
49
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
50
50
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
51
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
52
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-appendTo)
51
53
  */
52
54
  appendTo ? : HTMLElement|string
53
55
  /**
@@ -359,10 +361,14 @@ export type BryntumGridProps = {
359
361
  inputFieldAlign ? : 'start'|'end'
360
362
  /**
361
363
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
364
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
365
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-insertBefore)
362
366
  */
363
367
  insertBefore ? : HTMLElement|string
364
368
  /**
365
369
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
370
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
371
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-insertFirst)
366
372
  */
367
373
  insertFirst ? : HTMLElement|string
368
374
  /**
@@ -50,6 +50,8 @@ export type BryntumGroupBarProps = {
50
50
  /**
51
51
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
52
52
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
53
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
54
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-appendTo)
53
55
  */
54
56
  appendTo ? : HTMLElement|string
55
57
  /**
@@ -99,9 +101,11 @@ export type BryntumGroupBarProps = {
99
101
  /**
100
102
  * If [closable](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-closable) is `true`, this is the name of a callback function to handle what the "close"
101
103
  * action means. If not provided, the record representing the chip is removed from the store.
104
+ * @param {Core.data.Model[]} records Records to be closed
105
+ * @param {object} options Close options
102
106
  * @returns {void}
103
107
  */
104
- closeHandler ? : string|(() => void)
108
+ closeHandler ? : string|((records: Model[], options: object) => void)
105
109
  /**
106
110
  * Custom CSS classes to add to element.
107
111
  * May be specified as a space separated string, or as an object in which property names
@@ -278,10 +282,14 @@ export type BryntumGroupBarProps = {
278
282
  ignoreParentReadOnly ? : boolean
279
283
  /**
280
284
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
285
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
286
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-insertBefore)
281
287
  */
282
288
  insertBefore ? : HTMLElement|string
283
289
  /**
284
290
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
291
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
292
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-insertFirst)
285
293
  */
286
294
  insertFirst ? : HTMLElement|string
287
295
  /**
@@ -817,7 +825,7 @@ export class BryntumGroupBarComponent implements OnInit, OnDestroy {
817
825
  @Input() bubbleEvents ! : object;
818
826
  @Input() centered ! : boolean;
819
827
  @Input() closable ! : boolean;
820
- @Input() closeHandler ! : string|(() => void);
828
+ @Input() closeHandler ! : string|((records: Model[], options: object) => void);
821
829
  @Input() color ! : Color;
822
830
  @Input() config ! : object;
823
831
  @Input() constrainTo ! : HTMLElement|Widget|Rectangle;
@@ -40,6 +40,8 @@ export type BryntumTreeComboProps = {
40
40
  /**
41
41
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
42
42
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
43
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
44
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-appendTo)
43
45
  */
44
46
  appendTo ? : HTMLElement|string
45
47
  /**
@@ -404,10 +406,14 @@ export type BryntumTreeComboProps = {
404
406
  inputWidth ? : string|number
405
407
  /**
406
408
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
409
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
410
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-insertBefore)
407
411
  */
408
412
  insertBefore ? : HTMLElement|string
409
413
  /**
410
414
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
415
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
416
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-insertFirst)
411
417
  */
412
418
  insertFirst ? : HTMLElement|string
413
419
  /**
@@ -48,6 +48,8 @@ export type BryntumTreeGridProps = {
48
48
  /**
49
49
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
50
50
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
51
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
52
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-appendTo)
51
53
  */
52
54
  appendTo ? : HTMLElement|string
53
55
  /**
@@ -359,10 +361,14 @@ export type BryntumTreeGridProps = {
359
361
  inputFieldAlign ? : 'start'|'end'
360
362
  /**
361
363
  * Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
364
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
365
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-insertBefore)
362
366
  */
363
367
  insertBefore ? : HTMLElement|string
364
368
  /**
365
369
  * Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
370
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
371
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-insertFirst)
366
372
  */
367
373
  insertFirst ? : HTMLElement|string
368
374
  /**