@bryntum/grid-vue-3-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 (32) hide show
  1. package/README.md +4 -4
  2. package/lib/chunks/Bc2x_WPR.js.map +1 -1
  3. package/lib/chunks/Be7ZZzGW.js.map +1 -1
  4. package/lib/chunks/BpNo5v3W.js.map +1 -1
  5. package/lib/chunks/C87PnYXS.js.map +1 -1
  6. package/lib/chunks/C9RmZYoQ.js.map +1 -1
  7. package/lib/chunks/CAlh-Y8B.js.map +1 -1
  8. package/lib/chunks/CWYhi4DG.js.map +1 -1
  9. package/lib/chunks/CcfDAcJD.js.map +1 -1
  10. package/lib/chunks/DZ2V6NNc.js.map +1 -1
  11. package/lib/chunks/w2GDktIt.js.map +1 -1
  12. package/package.json +1 -1
  13. package/src/components/BryntumAIFilterField.vue +6 -0
  14. package/src/components/BryntumAIFilterFieldProps.ts +6 -0
  15. package/src/components/BryntumChecklistFilterCombo.vue +6 -0
  16. package/src/components/BryntumChecklistFilterComboProps.ts +6 -0
  17. package/src/components/BryntumGrid.vue +6 -0
  18. package/src/components/BryntumGridBase.vue +6 -0
  19. package/src/components/BryntumGridBaseProps.ts +6 -0
  20. package/src/components/BryntumGridChartDesigner.vue +6 -0
  21. package/src/components/BryntumGridChartDesignerProps.ts +6 -0
  22. package/src/components/BryntumGridFieldFilterPicker.vue +6 -0
  23. package/src/components/BryntumGridFieldFilterPickerGroup.vue +6 -0
  24. package/src/components/BryntumGridFieldFilterPickerGroupProps.ts +6 -0
  25. package/src/components/BryntumGridFieldFilterPickerProps.ts +6 -0
  26. package/src/components/BryntumGridProps.ts +6 -0
  27. package/src/components/BryntumGroupBar.vue +9 -1
  28. package/src/components/BryntumGroupBarProps.ts +9 -1
  29. package/src/components/BryntumTreeCombo.vue +6 -0
  30. package/src/components/BryntumTreeComboProps.ts +6 -0
  31. package/src/components/BryntumTreeGrid.vue +6 -0
  32. package/src/components/BryntumTreeGridProps.ts +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bryntum/grid-vue-3-thin",
3
- "version": "7.3.1",
3
+ "version": "7.3.2",
4
4
  "description": "Vue 3 wrappers for Bryntum Grid JavaScript component",
5
5
  "keywords": [
6
6
  "bryntum",
@@ -43,6 +43,8 @@ defineProps<{
43
43
  /**
44
44
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
45
45
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
46
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
47
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-appendTo)
46
48
  */
47
49
  appendTo ? : HTMLElement|string
48
50
  /**
@@ -309,10 +311,14 @@ defineProps<{
309
311
  inputWidth ? : string|number
310
312
  /**
311
313
  * 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.
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-insertBefore)
312
316
  */
313
317
  insertBefore ? : HTMLElement|string
314
318
  /**
315
319
  * 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.
320
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
321
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertFirst)
316
322
  */
317
323
  insertFirst ? : HTMLElement|string
318
324
  /**
@@ -28,6 +28,8 @@ export declare type BryntumAIFilterFieldProps = {
28
28
  /**
29
29
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
30
30
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
31
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
32
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-appendTo)
31
33
  */
32
34
  appendTo ? : HTMLElement|string
33
35
  /**
@@ -294,10 +296,14 @@ export declare type BryntumAIFilterFieldProps = {
294
296
  inputWidth ? : string|number
295
297
  /**
296
298
  * 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.
299
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
300
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertBefore)
297
301
  */
298
302
  insertBefore ? : HTMLElement|string
299
303
  /**
300
304
  * 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.
305
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
306
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertFirst)
301
307
  */
302
308
  insertFirst ? : HTMLElement|string
303
309
  /**
@@ -43,6 +43,8 @@ defineProps<{
43
43
  /**
44
44
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
45
45
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
46
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
47
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-appendTo)
46
48
  */
47
49
  appendTo ? : HTMLElement|string
48
50
  /**
@@ -407,10 +409,14 @@ defineProps<{
407
409
  inputWidth ? : string|number
408
410
  /**
409
411
  * 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.
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-insertBefore)
410
414
  */
411
415
  insertBefore ? : HTMLElement|string
412
416
  /**
413
417
  * 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.
418
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
419
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertFirst)
414
420
  */
415
421
  insertFirst ? : HTMLElement|string
416
422
  /**
@@ -28,6 +28,8 @@ export declare type BryntumChecklistFilterComboProps = {
28
28
  /**
29
29
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
30
30
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
31
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
32
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-appendTo)
31
33
  */
32
34
  appendTo ? : HTMLElement|string
33
35
  /**
@@ -392,10 +394,14 @@ export declare type BryntumChecklistFilterComboProps = {
392
394
  inputWidth ? : string|number
393
395
  /**
394
396
  * 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.
397
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
398
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertBefore)
395
399
  */
396
400
  insertBefore ? : HTMLElement|string
397
401
  /**
398
402
  * 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.
403
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
404
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertFirst)
399
405
  */
400
406
  insertFirst ? : HTMLElement|string
401
407
  /**
@@ -74,6 +74,8 @@ defineProps<{
74
74
  /**
75
75
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
76
76
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
77
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
78
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-appendTo)
77
79
  */
78
80
  appendTo ? : HTMLElement|string
79
81
  /**
@@ -385,10 +387,14 @@ defineProps<{
385
387
  inputFieldAlign ? : 'start'|'end'
386
388
  /**
387
389
  * 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.
390
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
391
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-insertBefore)
388
392
  */
389
393
  insertBefore ? : HTMLElement|string
390
394
  /**
391
395
  * 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.
396
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
397
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-insertFirst)
392
398
  */
393
399
  insertFirst ? : HTMLElement|string
394
400
  /**
@@ -74,6 +74,8 @@ defineProps<{
74
74
  /**
75
75
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
76
76
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
77
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
78
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-appendTo)
77
79
  */
78
80
  appendTo ? : HTMLElement|string
79
81
  /**
@@ -385,10 +387,14 @@ defineProps<{
385
387
  inputFieldAlign ? : 'start'|'end'
386
388
  /**
387
389
  * 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.
390
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
391
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-insertBefore)
388
392
  */
389
393
  insertBefore ? : HTMLElement|string
390
394
  /**
391
395
  * 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.
396
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
397
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-insertFirst)
392
398
  */
393
399
  insertFirst ? : HTMLElement|string
394
400
  /**
@@ -36,6 +36,8 @@ export declare type BryntumGridBaseProps = {
36
36
  /**
37
37
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
38
38
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
39
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
40
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-appendTo)
39
41
  */
40
42
  appendTo ? : HTMLElement|string
41
43
  /**
@@ -347,10 +349,14 @@ export declare type BryntumGridBaseProps = {
347
349
  inputFieldAlign ? : 'start'|'end'
348
350
  /**
349
351
  * 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.
352
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
353
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-insertBefore)
350
354
  */
351
355
  insertBefore ? : HTMLElement|string
352
356
  /**
353
357
  * 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.
358
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
359
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-insertFirst)
354
360
  */
355
361
  insertFirst ? : HTMLElement|string
356
362
  /**
@@ -43,6 +43,8 @@ defineProps<{
43
43
  /**
44
44
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
45
45
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
46
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
47
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-appendTo)
46
48
  */
47
49
  appendTo ? : HTMLElement|string
48
50
  /**
@@ -220,10 +222,14 @@ defineProps<{
220
222
  ignoreParentReadOnly ? : Boolean
221
223
  /**
222
224
  * 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.
225
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
226
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-insertBefore)
223
227
  */
224
228
  insertBefore ? : HTMLElement|string
225
229
  /**
226
230
  * 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.
231
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
232
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-insertFirst)
227
233
  */
228
234
  insertFirst ? : HTMLElement|string
229
235
  /**
@@ -28,6 +28,8 @@ export declare type BryntumGridChartDesignerProps = {
28
28
  /**
29
29
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
30
30
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
31
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
32
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-appendTo)
31
33
  */
32
34
  appendTo ? : HTMLElement|string
33
35
  /**
@@ -205,10 +207,14 @@ export declare type BryntumGridChartDesignerProps = {
205
207
  ignoreParentReadOnly ? : Boolean
206
208
  /**
207
209
  * 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.
210
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
211
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-insertBefore)
208
212
  */
209
213
  insertBefore ? : HTMLElement|string
210
214
  /**
211
215
  * 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.
216
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
217
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-insertFirst)
212
218
  */
213
219
  insertFirst ? : HTMLElement|string
214
220
  /**
@@ -50,6 +50,8 @@ defineProps<{
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/GridFieldFilterPicker#config-appendTo)
53
55
  */
54
56
  appendTo ? : HTMLElement|string
55
57
  /**
@@ -286,10 +288,14 @@ defineProps<{
286
288
  inputFieldAlign ? : 'start'|'end'
287
289
  /**
288
290
  * 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.
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/GridFieldFilterPicker#config-insertBefore)
289
293
  */
290
294
  insertBefore ? : HTMLElement|string
291
295
  /**
292
296
  * 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.
297
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
298
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-insertFirst)
293
299
  */
294
300
  insertFirst ? : HTMLElement|string
295
301
  /**
@@ -53,6 +53,8 @@ defineProps<{
53
53
  /**
54
54
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
55
55
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
56
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
57
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-appendTo)
56
58
  */
57
59
  appendTo ? : HTMLElement|string
58
60
  /**
@@ -301,10 +303,14 @@ defineProps<{
301
303
  inputFieldAlign ? : 'start'|'end'
302
304
  /**
303
305
  * 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.
306
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
307
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertBefore)
304
308
  */
305
309
  insertBefore ? : HTMLElement|string
306
310
  /**
307
311
  * 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.
312
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
313
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertFirst)
308
314
  */
309
315
  insertFirst ? : HTMLElement|string
310
316
  /**
@@ -38,6 +38,8 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
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/GridFieldFilterPickerGroup#config-appendTo)
41
43
  */
42
44
  appendTo ? : HTMLElement|string
43
45
  /**
@@ -286,10 +288,14 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
286
288
  inputFieldAlign ? : 'start'|'end'
287
289
  /**
288
290
  * 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.
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/GridFieldFilterPickerGroup#config-insertBefore)
289
293
  */
290
294
  insertBefore ? : HTMLElement|string
291
295
  /**
292
296
  * 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.
297
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
298
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertFirst)
293
299
  */
294
300
  insertFirst ? : HTMLElement|string
295
301
  /**
@@ -35,6 +35,8 @@ export declare type BryntumGridFieldFilterPickerProps = {
35
35
  /**
36
36
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
37
37
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
38
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
39
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-appendTo)
38
40
  */
39
41
  appendTo ? : HTMLElement|string
40
42
  /**
@@ -271,10 +273,14 @@ export declare type BryntumGridFieldFilterPickerProps = {
271
273
  inputFieldAlign ? : 'start'|'end'
272
274
  /**
273
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/GridFieldFilterPicker#config-insertBefore)
274
278
  */
275
279
  insertBefore ? : HTMLElement|string
276
280
  /**
277
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/GridFieldFilterPicker#config-insertFirst)
278
284
  */
279
285
  insertFirst ? : HTMLElement|string
280
286
  /**
@@ -36,6 +36,8 @@ export declare type BryntumGridProps = {
36
36
  /**
37
37
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
38
38
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
39
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
40
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-appendTo)
39
41
  */
40
42
  appendTo ? : HTMLElement|string
41
43
  /**
@@ -347,10 +349,14 @@ export declare type BryntumGridProps = {
347
349
  inputFieldAlign ? : 'start'|'end'
348
350
  /**
349
351
  * 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.
352
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
353
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-insertBefore)
350
354
  */
351
355
  insertBefore ? : HTMLElement|string
352
356
  /**
353
357
  * 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.
358
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
359
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-insertFirst)
354
360
  */
355
361
  insertFirst ? : HTMLElement|string
356
362
  /**
@@ -53,6 +53,8 @@ defineProps<{
53
53
  /**
54
54
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
55
55
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
56
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
57
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-appendTo)
56
58
  */
57
59
  appendTo ? : HTMLElement|string
58
60
  /**
@@ -102,9 +104,11 @@ defineProps<{
102
104
  /**
103
105
  * 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"
104
106
  * action means. If not provided, the record representing the chip is removed from the store.
107
+ * @param {Core.data.Model[]} records Records to be closed
108
+ * @param {object} options Close options
105
109
  * @returns {void}
106
110
  */
107
- closeHandler ? : string|(() => void)
111
+ closeHandler ? : string|((records: Model[], options: object) => void)
108
112
  /**
109
113
  * Custom CSS classes to add to element.
110
114
  * May be specified as a space separated string, or as an object in which property names
@@ -281,10 +285,14 @@ defineProps<{
281
285
  ignoreParentReadOnly ? : Boolean
282
286
  /**
283
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/GroupBar#config-insertBefore)
284
290
  */
285
291
  insertBefore ? : HTMLElement|string
286
292
  /**
287
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/GroupBar#config-insertFirst)
288
296
  */
289
297
  insertFirst ? : HTMLElement|string
290
298
  /**
@@ -38,6 +38,8 @@ export declare type BryntumGroupBarProps = {
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/GroupBar#config-appendTo)
41
43
  */
42
44
  appendTo ? : HTMLElement|string
43
45
  /**
@@ -87,9 +89,11 @@ export declare type BryntumGroupBarProps = {
87
89
  /**
88
90
  * 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"
89
91
  * action means. If not provided, the record representing the chip is removed from the store.
92
+ * @param {Core.data.Model[]} records Records to be closed
93
+ * @param {object} options Close options
90
94
  * @returns {void}
91
95
  */
92
- closeHandler ? : string|(() => void)
96
+ closeHandler ? : string|((records: Model[], options: object) => void)
93
97
  /**
94
98
  * Custom CSS classes to add to element.
95
99
  * May be specified as a space separated string, or as an object in which property names
@@ -266,10 +270,14 @@ export declare type BryntumGroupBarProps = {
266
270
  ignoreParentReadOnly ? : Boolean
267
271
  /**
268
272
  * 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.
273
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
274
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-insertBefore)
269
275
  */
270
276
  insertBefore ? : HTMLElement|string
271
277
  /**
272
278
  * 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.
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/GroupBar#config-insertFirst)
273
281
  */
274
282
  insertFirst ? : HTMLElement|string
275
283
  /**
@@ -43,6 +43,8 @@ defineProps<{
43
43
  /**
44
44
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
45
45
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
46
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
47
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-appendTo)
46
48
  */
47
49
  appendTo ? : HTMLElement|string
48
50
  /**
@@ -407,10 +409,14 @@ defineProps<{
407
409
  inputWidth ? : string|number
408
410
  /**
409
411
  * 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.
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-insertBefore)
410
414
  */
411
415
  insertBefore ? : HTMLElement|string
412
416
  /**
413
417
  * 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.
418
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
419
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-insertFirst)
414
420
  */
415
421
  insertFirst ? : HTMLElement|string
416
422
  /**
@@ -28,6 +28,8 @@ export declare type BryntumTreeComboProps = {
28
28
  /**
29
29
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
30
30
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
31
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
32
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-appendTo)
31
33
  */
32
34
  appendTo ? : HTMLElement|string
33
35
  /**
@@ -392,10 +394,14 @@ export declare type BryntumTreeComboProps = {
392
394
  inputWidth ? : string|number
393
395
  /**
394
396
  * 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.
397
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
398
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-insertBefore)
395
399
  */
396
400
  insertBefore ? : HTMLElement|string
397
401
  /**
398
402
  * 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.
403
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
404
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-insertFirst)
399
405
  */
400
406
  insertFirst ? : HTMLElement|string
401
407
  /**
@@ -74,6 +74,8 @@ defineProps<{
74
74
  /**
75
75
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
76
76
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
77
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
78
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-appendTo)
77
79
  */
78
80
  appendTo ? : HTMLElement|string
79
81
  /**
@@ -385,10 +387,14 @@ defineProps<{
385
387
  inputFieldAlign ? : 'start'|'end'
386
388
  /**
387
389
  * 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.
390
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
391
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-insertBefore)
388
392
  */
389
393
  insertBefore ? : HTMLElement|string
390
394
  /**
391
395
  * 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.
396
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
397
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-insertFirst)
392
398
  */
393
399
  insertFirst ? : HTMLElement|string
394
400
  /**
@@ -36,6 +36,8 @@ export declare type BryntumTreeGridProps = {
36
36
  /**
37
37
  * Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
38
38
  * runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
39
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
40
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-appendTo)
39
41
  */
40
42
  appendTo ? : HTMLElement|string
41
43
  /**
@@ -347,10 +349,14 @@ export declare type BryntumTreeGridProps = {
347
349
  inputFieldAlign ? : 'start'|'end'
348
350
  /**
349
351
  * 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.
352
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
353
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-insertBefore)
350
354
  */
351
355
  insertBefore ? : HTMLElement|string
352
356
  /**
353
357
  * 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.
358
+ * <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
359
+ * [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-insertFirst)
354
360
  */
355
361
  insertFirst ? : HTMLElement|string
356
362
  /**