@bryntum/grid-vue-3-thin 7.3.0 → 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 (42) 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/{BeyOFZne.js → C87PnYXS.js} +11 -9
  6. package/lib/chunks/C87PnYXS.js.map +1 -0
  7. package/lib/chunks/{Ba35uKyP.js → C9RmZYoQ.js} +7 -5
  8. package/lib/chunks/C9RmZYoQ.js.map +1 -0
  9. package/lib/chunks/CAlh-Y8B.js.map +1 -1
  10. package/lib/chunks/CWYhi4DG.js.map +1 -1
  11. package/lib/chunks/CcfDAcJD.js.map +1 -1
  12. package/lib/chunks/{BGeNcVH6.js → DZ2V6NNc.js} +12 -10
  13. package/lib/chunks/DZ2V6NNc.js.map +1 -0
  14. package/lib/chunks/w2GDktIt.js.map +1 -1
  15. package/lib/components/BryntumAIFilterField.js +1 -1
  16. package/lib/components/BryntumChecklistFilterCombo.js +1 -1
  17. package/lib/components/BryntumTreeCombo.js +1 -1
  18. package/lib/index.js +3 -3
  19. package/package.json +1 -1
  20. package/src/components/BryntumAIFilterField.vue +86 -106
  21. package/src/components/BryntumAIFilterFieldProps.ts +15 -0
  22. package/src/components/BryntumChecklistFilterCombo.vue +87 -109
  23. package/src/components/BryntumChecklistFilterComboProps.ts +15 -0
  24. package/src/components/BryntumGrid.vue +529 -755
  25. package/src/components/BryntumGridBase.vue +529 -755
  26. package/src/components/BryntumGridBaseProps.ts +6 -0
  27. package/src/components/BryntumGridChartDesigner.vue +49 -69
  28. package/src/components/BryntumGridChartDesignerProps.ts +6 -0
  29. package/src/components/BryntumGridFieldFilterPicker.vue +59 -85
  30. package/src/components/BryntumGridFieldFilterPickerGroup.vue +63 -91
  31. package/src/components/BryntumGridFieldFilterPickerGroupProps.ts +6 -0
  32. package/src/components/BryntumGridFieldFilterPickerProps.ts +6 -0
  33. package/src/components/BryntumGridProps.ts +6 -0
  34. package/src/components/BryntumGroupBar.vue +74 -102
  35. package/src/components/BryntumGroupBarProps.ts +9 -1
  36. package/src/components/BryntumTreeCombo.vue +87 -109
  37. package/src/components/BryntumTreeComboProps.ts +15 -0
  38. package/src/components/BryntumTreeGrid.vue +529 -755
  39. package/src/components/BryntumTreeGridProps.ts +6 -0
  40. package/lib/chunks/BGeNcVH6.js.map +0 -1
  41. package/lib/chunks/Ba35uKyP.js.map +0 -1
  42. package/lib/chunks/BeyOFZne.js.map +0 -1
@@ -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
  /**
@@ -613,53 +619,43 @@ const emit = defineEmits<{
613
619
  * Return `false` from the event handler to prevent the filter being added.
614
620
  * @param {string} e Event name
615
621
  * @param {object} params Event parameters
616
- * @param {string} params.e Event name
617
- * @param {object} params.params Event parameters
618
- * @param {object} params.params.event Event object
619
- * @param {Core.widget.FieldFilterPicker} params.params.event.source The FieldFilterPicker instance that fired the event.
620
- * @param {CollectionFilterConfig} params.params.event.filter The [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration object for the filter represented by this [FieldFilterPicker](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker).
622
+ * @param {object} params.event Event object
623
+ * @param {Core.widget.FieldFilterPicker} params.event.source The FieldFilterPicker instance that fired the event.
624
+ * @param {CollectionFilterConfig} params.event.filter The [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration object for the filter represented by this [FieldFilterPicker](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker).
621
625
  */
622
- (e: 'beforeAddFilter', params: ((event: { source: FieldFilterPicker, filter: CollectionFilterConfig }) => Promise<boolean>|boolean|void)|string): Promise<boolean>|boolean|void
626
+ (e: 'beforeAddFilter', params: ((event: { source: FieldFilterPicker, filter: CollectionFilterConfig }) => boolean|void)|string): boolean|void
623
627
  /**
624
628
  * Fires before an object is destroyed.
625
629
  * @param {string} e Event name
626
630
  * @param {object} params Event parameters
627
- * @param {string} params.e Event name
628
- * @param {object} params.params Event parameters
629
- * @param {object} params.params.event Event object
630
- * @param {Core.Base} params.params.event.source The Object that is being destroyed.
631
+ * @param {object} params.event Event object
632
+ * @param {Core.Base} params.event.source The Object that is being destroyed.
631
633
  */
632
634
  (e: 'beforeDestroy', params: ((event: { source: Base }) => void)|string): void
633
635
  /**
634
636
  * Triggered before a widget is hidden. Return `false` to prevent the action.
635
637
  * @param {string} e Event name
636
638
  * @param {object} params Event parameters
637
- * @param {string} params.e Event name
638
- * @param {object} params.params Event parameters
639
- * @param {object} params.params.event Event object
640
- * @param {Core.widget.Widget} params.params.event.source The widget being hidden.
639
+ * @param {object} params.event Event object
640
+ * @param {Core.widget.Widget} params.event.source The widget being hidden.
641
641
  */
642
- (e: 'beforeHide', params: ((event: { source: Widget }) => Promise<boolean>|boolean|void)|string): Promise<boolean>|boolean|void
642
+ (e: 'beforeHide', params: ((event: { source: Widget }) => boolean|void)|string): boolean|void
643
643
  /**
644
644
  * Fired before this container will load record values into its child fields. This is useful if you
645
645
  * want to modify the UI before data is loaded (e.g. set some input field to be readonly)
646
646
  * @param {string} e Event name
647
647
  * @param {object} params Event parameters
648
- * @param {string} params.e Event name
649
- * @param {object} params.params Event parameters
650
- * @param {object} params.params.event Event object
651
- * @param {Core.widget.Container} params.params.event.source The container
652
- * @param {Core.data.Model} params.params.event.record The record
648
+ * @param {object} params.event Event object
649
+ * @param {Core.widget.Container} params.event.source The container
650
+ * @param {Core.data.Model} params.event.record The record
653
651
  */
654
652
  (e: 'beforeSetRecord', params: ((event: { source: Container, record: Model }) => void)|string): void
655
653
  /**
656
654
  * Triggered before a widget is shown. Return `false` to prevent the action.
657
655
  * @param {string} e Event name
658
656
  * @param {object} params Event parameters
659
- * @param {string} params.e Event name
660
- * @param {object} params.params Event parameters
661
- * @param {object} params.params.event Event object
662
- * @param {Core.widget.Widget,any} params.params.event.source The widget being shown
657
+ * @param {object} params.event Event object
658
+ * @param {Core.widget.Widget,any} params.event.source The widget being shown
663
659
  */
664
660
  (e: 'beforeShow', params: ((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string): Promise<boolean>|boolean|void
665
661
  /**
@@ -667,69 +663,57 @@ const emit = defineEmits<{
667
663
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#event-catchAll)
668
664
  * @param {string} e Event name
669
665
  * @param {object} params Event parameters
670
- * @param {string} params.e Event name
671
- * @param {object} params.params Event parameters
672
- * @param {object} params.params.event Event object
673
- * @param {{[key: string]: any, type: string}} params.params.event.event The Object that contains event details
674
- * @param {string} params.params.event.event.type The type of the event which is caught by the listener
666
+ * @param {object} params.event Event object
667
+ * @param {{[key: string]: any, type: string}} params.event.event The Object that contains event details
668
+ * @param {string} params.event.event.type The type of the event which is caught by the listener
675
669
  */
676
670
  (e: 'catchAll', params: ((event: {[key: string]: any, type: string}) => void)|string): void
677
671
  /**
678
672
  * Fires when any filter in the group is added, removed, or modified.
679
673
  * @param {string} e Event name
680
674
  * @param {object} params Event parameters
681
- * @param {string} params.e Event name
682
- * @param {object} params.params Event parameters
683
- * @param {object} params.params.event Event object
684
- * @param {Core.widget.FieldFilterPickerGroup} params.params.event.source The FieldFilterPickerGroup instance that fired the event.
685
- * @param {CollectionFilterConfig[]} params.params.event.filters The array of [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration objects currently represented by the FieldFilterPickerGroup. <strong>IMPORTANT:</strong> Note that this includes all filters currently present in the UI, including partially completed ones that may not be ready to apply to a Store. To retrieve only valid filters, use the `validFilters` parameter on this event, or filter out incomplete filters in your own code.
686
- * @param {CollectionFilterConfig[]} params.params.event.validFilters The subset of [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration objects in the `filters` parameter on this event that are complete and valid for application to a Store.
675
+ * @param {object} params.event Event object
676
+ * @param {Core.widget.FieldFilterPickerGroup} params.event.source The FieldFilterPickerGroup instance that fired the event.
677
+ * @param {CollectionFilterConfig[]} params.event.filters The array of [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration objects currently represented by the FieldFilterPickerGroup. <strong>IMPORTANT:</strong> Note that this includes all filters currently present in the UI, including partially completed ones that may not be ready to apply to a Store. To retrieve only valid filters, use the `validFilters` parameter on this event, or filter out incomplete filters in your own code.
678
+ * @param {CollectionFilterConfig[]} params.event.validFilters The subset of [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration objects in the `filters` parameter on this event that are complete and valid for application to a Store.
687
679
  */
688
680
  (e: 'change', params: ((event: { source: FieldFilterPickerGroup, filters: CollectionFilterConfig[], validFilters: CollectionFilterConfig[] }) => void)|string): void
689
681
  /**
690
682
  * Fires when an object is destroyed.
691
683
  * @param {string} e Event name
692
684
  * @param {object} params Event parameters
693
- * @param {string} params.e Event name
694
- * @param {object} params.params Event parameters
695
- * @param {object} params.params.event Event object
696
- * @param {Core.Base} params.params.event.source The Object that is being destroyed.
685
+ * @param {object} params.event Event object
686
+ * @param {Core.Base} params.event.source The Object that is being destroyed.
697
687
  */
698
688
  (e: 'destroy', params: ((event: { source: Base }) => void)|string): void
699
689
  /**
700
690
  * Fires when a field is mutated and the state of the [hasChanges](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-hasChanges) property changes
701
691
  * @param {string} e Event name
702
692
  * @param {object} params Event parameters
703
- * @param {string} params.e Event name
704
- * @param {object} params.params Event parameters
705
- * @param {object} params.params.event Event object
706
- * @param {Core.widget.Container} params.params.event.source The container.
707
- * @param {boolean} params.params.event.dirty The dirty state of the Container - `true` if there are any fields which have been changed since initial load.
693
+ * @param {object} params.event Event object
694
+ * @param {Core.widget.Container} params.event.source The container.
695
+ * @param {boolean} params.event.dirty The dirty state of the Container - `true` if there are any fields which have been changed since initial load.
708
696
  */
709
697
  (e: 'dirtyStateChange', params: ((event: { source: Container, dirty: boolean }) => void)|string): void
710
698
  /**
711
699
  * Triggered when a widget's [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element) is available.
712
700
  * @param {string} e Event name
713
701
  * @param {object} params Event parameters
714
- * @param {string} params.e Event name
715
- * @param {object} params.params Event parameters
716
- * @param {object} params.params.event Event object
717
- * @param {HTMLElement} params.params.event.element The Widget's element.
702
+ * @param {object} params.event Event object
703
+ * @param {HTMLElement} params.event.element The Widget's element.
718
704
  */
719
705
  (e: 'elementCreated', params: ((event: { element: HTMLElement }) => void)|string): void
720
706
  /**
721
707
  * Fired when focus enters this Widget.
722
708
  * @param {string} e Event name
723
709
  * @param {object} params Event parameters
724
- * @param {string} params.e Event name
725
- * @param {object} params.params Event parameters
726
- * @param {object} params.params.event Event object
727
- * @param {Core.widget.Widget} params.params.event.source This Widget
728
- * @param {HTMLElement} params.params.event.fromElement The element which lost focus.
729
- * @param {HTMLElement} params.params.event.toElement The element which gained focus.
730
- * @param {Core.widget.Widget} params.params.event.fromWidget The widget which lost focus.
731
- * @param {Core.widget.Widget} params.params.event.toWidget The widget which gained focus.
732
- * @param {boolean} params.params.event.backwards `true` if the `toElement` is before the `fromElement` in document order.
710
+ * @param {object} params.event Event object
711
+ * @param {Core.widget.Widget} params.event.source This Widget
712
+ * @param {HTMLElement} params.event.fromElement The element which lost focus.
713
+ * @param {HTMLElement} params.event.toElement The element which gained focus.
714
+ * @param {Core.widget.Widget} params.event.fromWidget The widget which lost focus.
715
+ * @param {Core.widget.Widget} params.event.toWidget The widget which gained focus.
716
+ * @param {boolean} params.event.backwards `true` if the `toElement` is before the `fromElement` in document order.
733
717
  */
734
718
  (e: 'focusIn', params: ((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string): void
735
719
  /**
@@ -738,25 +722,21 @@ const emit = defineEmits<{
738
722
  * will not trigger this event. This is when focus exits this widget completely.
739
723
  * @param {string} e Event name
740
724
  * @param {object} params Event parameters
741
- * @param {string} params.e Event name
742
- * @param {object} params.params Event parameters
743
- * @param {object} params.params.event Event object
744
- * @param {Core.widget.Widget} params.params.event.source This Widget
745
- * @param {HTMLElement} params.params.event.fromElement The element which lost focus.
746
- * @param {HTMLElement} params.params.event.toElement The element which gained focus.
747
- * @param {Core.widget.Widget} params.params.event.fromWidget The widget which lost focus.
748
- * @param {Core.widget.Widget} params.params.event.toWidget The widget which gained focus.
749
- * @param {boolean} params.params.event.backwards `true` if the `toElement` is before the `fromElement` in document order.
725
+ * @param {object} params.event Event object
726
+ * @param {Core.widget.Widget} params.event.source This Widget
727
+ * @param {HTMLElement} params.event.fromElement The element which lost focus.
728
+ * @param {HTMLElement} params.event.toElement The element which gained focus.
729
+ * @param {Core.widget.Widget} params.event.fromWidget The widget which lost focus.
730
+ * @param {Core.widget.Widget} params.event.toWidget The widget which gained focus.
731
+ * @param {boolean} params.event.backwards `true` if the `toElement` is before the `fromElement` in document order.
750
732
  */
751
733
  (e: 'focusOut', params: ((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string): void
752
734
  /**
753
735
  * Triggered after a widget was hidden
754
736
  * @param {string} e Event name
755
737
  * @param {object} params Event parameters
756
- * @param {string} params.e Event name
757
- * @param {object} params.params Event parameters
758
- * @param {object} params.params.event Event object
759
- * @param {Core.widget.Widget} params.params.event.source The widget
738
+ * @param {object} params.event Event object
739
+ * @param {Core.widget.Widget} params.event.source The widget
760
740
  */
761
741
  (e: 'hide', params: ((event: { source: Widget }) => void)|string): void
762
742
  /**
@@ -765,21 +745,17 @@ const emit = defineEmits<{
765
745
  * [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#event-paint)
766
746
  * @param {string} e Event name
767
747
  * @param {object} params Event parameters
768
- * @param {string} params.e Event name
769
- * @param {object} params.params Event parameters
770
- * @param {object} params.params.event Event object
771
- * @param {Core.widget.Widget} params.params.event.source The widget being painted.
772
- * @param {boolean} params.params.event.firstPaint `true` if this is the first paint.
748
+ * @param {object} params.event Event object
749
+ * @param {Core.widget.Widget} params.event.source The widget being painted.
750
+ * @param {boolean} params.event.firstPaint `true` if this is the first paint.
773
751
  */
774
752
  (e: 'paint', params: ((event: { source: Widget, firstPaint: boolean }) => void)|string): void
775
753
  /**
776
754
  * Fired when a Widget's read only state is toggled
777
755
  * @param {string} e Event name
778
756
  * @param {object} params Event parameters
779
- * @param {string} params.e Event name
780
- * @param {object} params.params Event parameters
781
- * @param {object} params.params.event Event object
782
- * @param {boolean} params.params.event.readOnly Read only or not
757
+ * @param {object} params.event Event object
758
+ * @param {boolean} params.event.readOnly Read only or not
783
759
  */
784
760
  (e: 'readOnly', params: ((event: { readOnly: boolean }) => void)|string): void
785
761
  /**
@@ -791,24 +767,20 @@ const emit = defineEmits<{
791
767
  * Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.
792
768
  * @param {string} e Event name
793
769
  * @param {object} params Event parameters
794
- * @param {string} params.e Event name
795
- * @param {object} params.params Event parameters
796
- * @param {object} params.params.event Event object
797
- * @param {Core.widget.Widget} params.params.event.source This Widget
798
- * @param {number} params.params.event.width The new width
799
- * @param {number} params.params.event.height The new height
800
- * @param {number} params.params.event.oldWidth The old width
801
- * @param {number} params.params.event.oldHeight The old height
770
+ * @param {object} params.event Event object
771
+ * @param {Core.widget.Widget} params.event.source This Widget
772
+ * @param {number} params.event.width The new width
773
+ * @param {number} params.event.height The new height
774
+ * @param {number} params.event.oldWidth The old width
775
+ * @param {number} params.event.oldHeight The old height
802
776
  */
803
777
  (e: 'resize', params: ((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string): void
804
778
  /**
805
779
  * Triggered after a widget is shown.
806
780
  * @param {string} e Event name
807
781
  * @param {object} params Event parameters
808
- * @param {string} params.e Event name
809
- * @param {object} params.params Event parameters
810
- * @param {object} params.params.event Event object
811
- * @param {Core.widget.Widget} params.params.event.source The widget
782
+ * @param {object} params.event Event object
783
+ * @param {Core.widget.Widget} params.event.source The widget
812
784
  */
813
785
  (e: 'show', params: ((event: { source: Widget }) => void)|string): void
814
786
  }>();
@@ -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
  /**