@bryntum/grid-vue-3-thin 7.1.2 → 7.2.0

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 (54) hide show
  1. package/README.md +16 -10
  2. package/lib/chunks/{COu7hi0l.js → 1N5MmU6T.js} +14 -6
  3. package/lib/chunks/1N5MmU6T.js.map +1 -0
  4. package/lib/chunks/{DGygz4dO.js → B02B9_9A.js} +14 -6
  5. package/lib/chunks/B02B9_9A.js.map +1 -0
  6. package/lib/chunks/BiSBQkoK.js.map +1 -1
  7. package/lib/chunks/CBFPsO1m.js.map +1 -1
  8. package/lib/chunks/{BhovLWj6.js → CMUbwEab.js} +3 -1
  9. package/lib/chunks/CMUbwEab.js.map +1 -0
  10. package/lib/chunks/{BU8UU05k.js → CalpnIlY.js} +3 -3
  11. package/lib/chunks/CalpnIlY.js.map +1 -0
  12. package/lib/chunks/Dgq4wGRw.js.map +1 -1
  13. package/lib/chunks/Dod-SqEN.js.map +1 -1
  14. package/lib/chunks/{BddaT4s7.js → Dos88vME.js} +14 -6
  15. package/lib/chunks/Dos88vME.js.map +1 -0
  16. package/lib/chunks/{CsxXtWQr.js → OIBqQHze.js} +8 -6
  17. package/lib/chunks/OIBqQHze.js.map +1 -0
  18. package/lib/components/BryntumGrid.js +1 -1
  19. package/lib/components/BryntumGridBase.js +1 -1
  20. package/lib/components/BryntumGridFieldFilterPicker.js +1 -1
  21. package/lib/components/BryntumGridFieldFilterPickerGroup.js +1 -1
  22. package/lib/components/BryntumGroupBar.js +1 -1
  23. package/lib/components/BryntumTreeGrid.js +1 -1
  24. package/lib/helper/WrapperHelper.js +42 -42
  25. package/lib/helper/WrapperHelper.js.map +1 -1
  26. package/lib/index.js +6 -6
  27. package/package.json +1 -1
  28. package/src/components/BryntumAIFilterField.vue +2 -2
  29. package/src/components/BryntumAIFilterFieldProps.ts +2 -2
  30. package/src/components/BryntumChecklistFilterCombo.vue +2 -2
  31. package/src/components/BryntumChecklistFilterComboProps.ts +2 -2
  32. package/src/components/BryntumGrid.vue +68 -25
  33. package/src/components/BryntumGridBase.vue +68 -25
  34. package/src/components/BryntumGridBaseProps.ts +16 -3
  35. package/src/components/BryntumGridChartDesigner.vue +2 -2
  36. package/src/components/BryntumGridChartDesignerProps.ts +2 -2
  37. package/src/components/BryntumGridFieldFilterPicker.vue +7 -2
  38. package/src/components/BryntumGridFieldFilterPickerGroup.vue +7 -2
  39. package/src/components/BryntumGridFieldFilterPickerGroupProps.ts +6 -2
  40. package/src/components/BryntumGridFieldFilterPickerProps.ts +6 -2
  41. package/src/components/BryntumGridProps.ts +16 -3
  42. package/src/components/BryntumGroupBar.vue +4 -4
  43. package/src/components/BryntumGroupBarProps.ts +2 -2
  44. package/src/components/BryntumTreeCombo.vue +2 -2
  45. package/src/components/BryntumTreeComboProps.ts +2 -2
  46. package/src/components/BryntumTreeGrid.vue +68 -25
  47. package/src/components/BryntumTreeGridProps.ts +16 -3
  48. package/src/helper/WrapperHelper.ts +5 -1
  49. package/lib/chunks/BU8UU05k.js.map +0 -1
  50. package/lib/chunks/BddaT4s7.js.map +0 -1
  51. package/lib/chunks/BhovLWj6.js.map +0 -1
  52. package/lib/chunks/COu7hi0l.js.map +0 -1
  53. package/lib/chunks/CsxXtWQr.js.map +0 -1
  54. package/lib/chunks/DGygz4dO.js.map +0 -1
@@ -10,7 +10,7 @@
10
10
 
11
11
  import { getCurrentInstance, onBeforeUnmount, onMounted, provide, ref, watch, toRaw } from 'vue';
12
12
 
13
- import type { AlignSpec, Base, CollectionFilter, CollectionFilterConfig, ComboConfig, Container, DomConfig, FieldFilterPicker, FieldOption, KeyMapConfig, MaskConfig, MenuItemEntry, Model, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, ValueFieldPlaceholders, VueConfig, Widget } from '@bryntum/core-thin';
13
+ import type { AlignSpec, Base, CollectionFilter, CollectionFilterConfig, Color, ComboConfig, Container, DomConfig, FieldFilterPicker, FieldOption, KeyMapConfig, MaskConfig, MenuItemEntry, Model, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, ValueFieldPlaceholders, VueConfig, Widget } from '@bryntum/core-thin';
14
14
  import type { GridContainerItemConfig, GridContainerLayoutConfig, Grid, GridFieldFilterPickerListeners } from '@bryntum/grid-thin';
15
15
  import { GridFieldFilterPicker } from '@bryntum/grid-thin';
16
16
 
@@ -73,6 +73,10 @@ defineProps<{
73
73
  * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
74
74
  */
75
75
  autoUpdateRecord ? : Boolean
76
+ /**
77
+ * Set `true` to add a border to this container's element.
78
+ */
79
+ border ? : Boolean
76
80
  /**
77
81
  * An object where property names with a truthy value indicate which events should bubble up the ownership
78
82
  * hierarchy when triggered.
@@ -112,7 +116,7 @@ defineProps<{
112
116
  * ...
113
117
  * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-color)
114
118
  */
115
- color ? : string
119
+ color ? : Color
116
120
  /**
117
121
  * Programmatic control over which column to start in when used in a grid layout.
118
122
  */
@@ -858,6 +862,7 @@ const widgetData = {
858
862
  'ariaDescription',
859
863
  'ariaLabel',
860
864
  'autoUpdateRecord',
865
+ 'border',
861
866
  'bubbleEvents',
862
867
  'centered',
863
868
  'color',
@@ -10,7 +10,7 @@
10
10
 
11
11
  import { getCurrentInstance, onBeforeUnmount, onMounted, provide, ref, watch, toRaw } from 'vue';
12
12
 
13
- import type { AlignSpec, Base, CollectionFilterConfig, Container, DomConfig, FieldFilterPicker, FieldFilterPickerConfig, FieldFilterPickerGroup, KeyMapConfig, MaskConfig, MenuItemEntry, Model, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
13
+ import type { AlignSpec, Base, CollectionFilterConfig, Color, Container, DomConfig, FieldFilterPicker, FieldFilterPickerConfig, FieldFilterPickerGroup, KeyMapConfig, MaskConfig, MenuItemEntry, Model, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
14
14
  import type { GridContainerItemConfig, GridContainerLayoutConfig, Grid, GridFieldFilterPickerGroupListeners } from '@bryntum/grid-thin';
15
15
  import { GridFieldFilterPickerGroup } from '@bryntum/grid-thin';
16
16
 
@@ -75,6 +75,10 @@ defineProps<{
75
75
  * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
76
76
  */
77
77
  autoUpdateRecord ? : Boolean
78
+ /**
79
+ * Set `true` to add a border to this container's element.
80
+ */
81
+ border ? : Boolean
78
82
  /**
79
83
  * An object where property names with a truthy value indicate which events should bubble up the ownership
80
84
  * hierarchy when triggered.
@@ -130,7 +134,7 @@ defineProps<{
130
134
  * ...
131
135
  * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-color)
132
136
  */
133
- color ? : string
137
+ color ? : Color
134
138
  /**
135
139
  * Programmatic control over which column to start in when used in a grid layout.
136
140
  */
@@ -876,6 +880,7 @@ const widgetData = {
876
880
  'ariaDescription',
877
881
  'ariaLabel',
878
882
  'autoUpdateRecord',
883
+ 'border',
879
884
  'bubbleEvents',
880
885
  'canDeleteFilter',
881
886
  'canManageFilter',
@@ -1,4 +1,4 @@
1
- import type { AlignSpec, Base, CollectionFilterConfig, DomConfig, FieldFilterPickerConfig, KeyMapConfig, MaskConfig, MenuItemEntry, Model, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
1
+ import type { AlignSpec, Base, CollectionFilterConfig, Color, DomConfig, FieldFilterPickerConfig, KeyMapConfig, MaskConfig, MenuItemEntry, Model, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
2
2
  import type { GridContainerItemConfig, GridContainerLayoutConfig, Grid, GridFieldFilterPickerGroupListeners } from '@bryntum/grid-thin';
3
3
 
4
4
  export declare type BryntumGridFieldFilterPickerGroupProps = {
@@ -60,6 +60,10 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
60
60
  * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
61
61
  */
62
62
  autoUpdateRecord ? : Boolean
63
+ /**
64
+ * Set `true` to add a border to this container's element.
65
+ */
66
+ border ? : Boolean
63
67
  /**
64
68
  * An object where property names with a truthy value indicate which events should bubble up the ownership
65
69
  * hierarchy when triggered.
@@ -115,7 +119,7 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
115
119
  * ...
116
120
  * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-color)
117
121
  */
118
- color ? : string
122
+ color ? : Color
119
123
  /**
120
124
  * Programmatic control over which column to start in when used in a grid layout.
121
125
  */
@@ -1,4 +1,4 @@
1
- import type { AlignSpec, Base, CollectionFilter, CollectionFilterConfig, ComboConfig, DomConfig, FieldOption, KeyMapConfig, MaskConfig, MenuItemEntry, Model, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, ValueFieldPlaceholders, VueConfig, Widget } from '@bryntum/core-thin';
1
+ import type { AlignSpec, Base, CollectionFilter, CollectionFilterConfig, Color, ComboConfig, DomConfig, FieldOption, KeyMapConfig, MaskConfig, MenuItemEntry, Model, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, ValueFieldPlaceholders, VueConfig, Widget } from '@bryntum/core-thin';
2
2
  import type { GridContainerItemConfig, GridContainerLayoutConfig, Grid, GridFieldFilterPickerListeners } from '@bryntum/grid-thin';
3
3
 
4
4
  export declare type BryntumGridFieldFilterPickerProps = {
@@ -58,6 +58,10 @@ export declare type BryntumGridFieldFilterPickerProps = {
58
58
  * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
59
59
  */
60
60
  autoUpdateRecord ? : Boolean
61
+ /**
62
+ * Set `true` to add a border to this container's element.
63
+ */
64
+ border ? : Boolean
61
65
  /**
62
66
  * An object where property names with a truthy value indicate which events should bubble up the ownership
63
67
  * hierarchy when triggered.
@@ -97,7 +101,7 @@ export declare type BryntumGridFieldFilterPickerProps = {
97
101
  * ...
98
102
  * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-color)
99
103
  */
100
- color ? : string
104
+ color ? : Color
101
105
  /**
102
106
  * Programmatic control over which column to start in when used in a grid layout.
103
107
  */
@@ -1,5 +1,5 @@
1
- import type { AjaxStore, AjaxStoreConfig, DomConfig, FormulaProviderConfig, KeyMapConfig, Mask, MaskConfig, Model, ModelConfig, PagingToolbarConfig, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, ToolConfig, ToolbarConfig, ToolbarItems, Widget } from '@bryntum/core-thin';
2
- import type { AIFilter, AIFilterConfig, CellCopyPaste, CellCopyPasteConfig, CellEdit, CellEditConfig, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, GridContainerItemConfig, EmptyTextDomConfig, ExcelExporter, ExcelExporterConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, GridColumnConfig, GridListeners, GridSelectionMode, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, LockRows, LockRowsConfig, MergeCells, MergeCellsConfig, PdfExport, PdfExportConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, Print, PrintConfig, QuickFind, QuickFindConfig, RegionResize, RegionResizeConfig, ResponsiveLevelConfig, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, Search, SearchConfig, Sort, SortConfig, Split, SplitConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGridConfig, Summary, SummaryConfig, Tree, TreeConfig, TreeGroup, TreeGroupConfig } from '@bryntum/grid-thin';
1
+ import type { AjaxStore, AjaxStoreConfig, Color, DomConfig, FormulaProviderConfig, KeyMapConfig, Mask, MaskConfig, Model, ModelConfig, PagingToolbarConfig, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, ToolConfig, ToolbarConfig, ToolbarItems, Widget } from '@bryntum/core-thin';
2
+ import type { AI, AIConfig, AIFilter, AIFilterConfig, CellCopyPaste, CellCopyPasteConfig, CellEdit, CellEditConfig, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, GridContainerItemConfig, EmptyTextDomConfig, ExcelExporter, ExcelExporterConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, GridColumnConfig, GridListeners, GridSelectionMode, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, LockRows, LockRowsConfig, MergeCells, MergeCellsConfig, PdfExport, PdfExportConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, Print, PrintConfig, QuickFind, QuickFindConfig, RegionResize, RegionResizeConfig, ResponsiveLevelConfig, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, Search, SearchConfig, Sort, SortConfig, Split, SplitConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGridConfig, Summary, SummaryConfig, Tree, TreeConfig, TreeGroup, TreeGroupConfig } from '@bryntum/grid-thin';
3
3
 
4
4
  export declare type BryntumGridProps = {
5
5
  // Configs
@@ -72,6 +72,10 @@ export declare type BryntumGridProps = {
72
72
  * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-bodyCls)
73
73
  */
74
74
  bodyCls ? : string|object
75
+ /**
76
+ * Set `true` to add a border to this container's element.
77
+ */
78
+ border ? : Boolean
75
79
  /**
76
80
  * An object where property names with a truthy value indicate which events should bubble up the ownership
77
81
  * hierarchy when triggered.
@@ -123,7 +127,7 @@ export declare type BryntumGridProps = {
123
127
  * ...
124
128
  * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-color)
125
129
  */
126
- color ? : string
130
+ color ? : Color
127
131
  /**
128
132
  * Programmatic control over which column to start in when used in a grid layout.
129
133
  */
@@ -745,6 +749,15 @@ export declare type BryntumGridProps = {
745
749
  width ? : string|number
746
750
 
747
751
  // Features
752
+ /**
753
+ * This feature provides an AI agent for Grid. It provides a chat panel that allows the user to send messages to the
754
+ * agent and see the responses. Which allows the user to use natural language to interact with the Grid in different
755
+ * ways. For example, the user can ask the agent to filter the data, sort it, or select specific records. The agent can
756
+ * also perform data manipulation operations such as adding, updating, deleting records.
757
+ * ...
758
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/AI)
759
+ */
760
+ aiFeature ? : object|Boolean|string|AI|AIConfig
748
761
  /**
749
762
  * AI-powered filter feature for Grid. Allows users to type natural language queries to filter grid data.
750
763
  * ...
@@ -10,7 +10,7 @@
10
10
 
11
11
  import { getCurrentInstance, onBeforeUnmount, onMounted, provide, ref, watch, toRaw } from 'vue';
12
12
 
13
- import type { AlignSpec, Base, Collection, CollectionConfig, DomConfig, KeyMapConfig, List, MaskConfig, Model, Rectangle, Scroller, ScrollerConfig, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
13
+ import type { AlignSpec, Base, Collection, CollectionConfig, Color, DomConfig, KeyMapConfig, List, MaskConfig, Model, Rectangle, Scroller, ScrollerConfig, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
14
14
  import type { GroupBarListeners } from '@bryntum/grid-thin';
15
15
  import { GroupBar } from '@bryntum/grid-thin';
16
16
 
@@ -131,7 +131,7 @@ defineProps<{
131
131
  * ...
132
132
  * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-color)
133
133
  */
134
- color ? : string
134
+ color ? : Color
135
135
  /**
136
136
  * Programmatic control over which column to start in when used in a grid layout.
137
137
  */
@@ -830,13 +830,11 @@ const widgetData = {
830
830
  'activateOnMouseover',
831
831
  'adopt',
832
832
  'align',
833
- 'allowGroupSelect',
834
833
  'anchor',
835
834
  'ariaDescription',
836
835
  'ariaLabel',
837
836
  'bubbleEvents',
838
837
  'centered',
839
- 'clearSelectionOnEmptySpaceClick',
840
838
  'closable',
841
839
  'closeHandler',
842
840
  'color',
@@ -888,9 +886,11 @@ const widgetData = {
888
886
  ],
889
887
  propertyConfigNames : [
890
888
  'alignSelf',
889
+ 'allowGroupSelect',
891
890
  'appendTo',
892
891
  'callOnFunctions',
893
892
  'catchEventHandlerExceptions',
893
+ 'clearSelectionOnEmptySpaceClick',
894
894
  'cls',
895
895
  'collapsibleGroups',
896
896
  'column',
@@ -1,4 +1,4 @@
1
- import type { AlignSpec, Base, Collection, CollectionConfig, DomConfig, KeyMapConfig, MaskConfig, Model, Rectangle, Scroller, ScrollerConfig, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
1
+ import type { AlignSpec, Base, Collection, CollectionConfig, Color, DomConfig, KeyMapConfig, MaskConfig, Model, Rectangle, Scroller, ScrollerConfig, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
2
2
  import type { GroupBarListeners } from '@bryntum/grid-thin';
3
3
 
4
4
  export declare type BryntumGroupBarProps = {
@@ -116,7 +116,7 @@ export declare type BryntumGroupBarProps = {
116
116
  * ...
117
117
  * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-color)
118
118
  */
119
- color ? : string
119
+ color ? : Color
120
120
  /**
121
121
  * Programmatic control over which column to start in when used in a grid layout.
122
122
  */
@@ -10,7 +10,7 @@
10
10
 
11
11
  import { getCurrentInstance, onBeforeUnmount, onMounted, provide, ref, watch, toRaw } from 'vue';
12
12
 
13
- import type { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Combo, ComboModel, Duration, DurationConfig, Field, FieldContainer, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, List, ListConfig, MaskConfig, Model, Rectangle, Store, StoreConfig, TabConfig, TooltipConfig, Widget } from '@bryntum/core-thin';
13
+ import type { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Color, Combo, ComboModel, Duration, DurationConfig, Field, FieldContainer, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, List, ListConfig, MaskConfig, Model, Rectangle, Store, StoreConfig, TabConfig, TooltipConfig, Widget } from '@bryntum/core-thin';
14
14
  import type { GridContainerItemConfig, TreeComboListeners } from '@bryntum/grid-thin';
15
15
  import { TreeCombo } from '@bryntum/grid-thin';
16
16
 
@@ -152,7 +152,7 @@ defineProps<{
152
152
  * ...
153
153
  * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-color)
154
154
  */
155
- color ? : string
155
+ color ? : Color
156
156
  /**
157
157
  * Programmatic control over which column to start in when used in a grid layout.
158
158
  */
@@ -1,4 +1,4 @@
1
- import type { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Combo, ComboModel, Duration, DurationConfig, Field, FieldContainer, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, List, ListConfig, MaskConfig, Model, Rectangle, Store, StoreConfig, TabConfig, TooltipConfig, Widget } from '@bryntum/core-thin';
1
+ import type { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Color, Combo, ComboModel, Duration, DurationConfig, Field, FieldContainer, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, List, ListConfig, MaskConfig, Model, Rectangle, Store, StoreConfig, TabConfig, TooltipConfig, Widget } from '@bryntum/core-thin';
2
2
  import type { GridContainerItemConfig, TreeComboListeners } from '@bryntum/grid-thin';
3
3
 
4
4
  export declare type BryntumTreeComboProps = {
@@ -137,7 +137,7 @@ export declare type BryntumTreeComboProps = {
137
137
  * ...
138
138
  * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-color)
139
139
  */
140
- color ? : string
140
+ color ? : Color
141
141
  /**
142
142
  * Programmatic control over which column to start in when used in a grid layout.
143
143
  */
@@ -33,8 +33,8 @@
33
33
 
34
34
  import { getCurrentInstance, onBeforeUnmount, onMounted, provide, ref, watch, toRaw } from 'vue';
35
35
 
36
- import type { Base, Container, DomConfig, FormulaProviderConfig, KeyMapConfig, Mask, MaskConfig, Menu, MenuItem, MenuItemEntry, Model, ModelConfig, PagingToolbarConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, Widget } from '@bryntum/core-thin';
37
- import type { AIFilter, AIFilterConfig, CellCopyPaste, CellCopyPasteConfig, CellEdit, CellEditConfig, CellEditorContext, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, Column, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, GridContainerItemConfig, EmptyTextDomConfig, ExcelExporter, ExcelExporterConfig, ExportConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, Grid, GridBase, GridColumnConfig, GridLocation, GridLocationConfig, GridSelectionMode, GridStateInfo, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, LockRows, LockRowsConfig, MergeCells, MergeCellsConfig, PdfExport, PdfExportConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, Print, PrintConfig, QuickFind, QuickFindConfig, RecordPositionContext, RegionResize, RegionResizeConfig, ResponsiveLevelConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, Search, SearchConfig, Sort, SortConfig, Split, SplitConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, Summary, SummaryConfig, Tree, TreeConfig, TreeGridListeners, TreeGroup, TreeGroupConfig, XLSColumn } from '@bryntum/grid-thin';
36
+ import type { Base, Color, Container, DomConfig, FormulaProviderConfig, KeyMapConfig, Mask, MaskConfig, Menu, MenuItem, MenuItemEntry, Model, ModelConfig, PagingToolbarConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, Widget } from '@bryntum/core-thin';
37
+ import type { AI, AIConfig, AIFilter, AIFilterConfig, CellCopyPaste, CellCopyPasteConfig, CellEdit, CellEditConfig, CellEditorContext, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, Column, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, GridContainerItemConfig, EmptyTextDomConfig, ExcelExporter, ExcelExporterConfig, ExportConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, Grid, GridBase, GridColumnConfig, GridLocation, GridLocationConfig, GridSelectionMode, GridStateInfo, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, LockRows, LockRowsConfig, MergeCells, MergeCellsConfig, PdfExport, PdfExportConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, Print, PrintConfig, QuickFind, QuickFindConfig, RecordPositionContext, RegionResize, RegionResizeConfig, ResponsiveLevelConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, Search, SearchConfig, Sort, SortConfig, Split, SplitConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, Summary, SummaryConfig, Tree, TreeConfig, TreeGridListeners, TreeGroup, TreeGroupConfig, XLSColumn } from '@bryntum/grid-thin';
38
38
  import { TreeGrid } from '@bryntum/grid-thin';
39
39
 
40
40
  import { WrapperHelper } from '../helper/WrapperHelper';
@@ -110,6 +110,10 @@ defineProps<{
110
110
  * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-bodyCls)
111
111
  */
112
112
  bodyCls ? : string|object
113
+ /**
114
+ * Set `true` to add a border to this container's element.
115
+ */
116
+ border ? : Boolean
113
117
  /**
114
118
  * An object where property names with a truthy value indicate which events should bubble up the ownership
115
119
  * hierarchy when triggered.
@@ -161,7 +165,7 @@ defineProps<{
161
165
  * ...
162
166
  * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-color)
163
167
  */
164
- color ? : string
168
+ color ? : Color
165
169
  /**
166
170
  * Programmatic control over which column to start in when used in a grid layout.
167
171
  */
@@ -783,6 +787,15 @@ defineProps<{
783
787
  width ? : string|number
784
788
 
785
789
  // Features
790
+ /**
791
+ * This feature provides an AI agent for Grid. It provides a chat panel that allows the user to send messages to the
792
+ * agent and see the responses. Which allows the user to use natural language to interact with the Grid in different
793
+ * ways. For example, the user can ask the agent to filter the data, sort it, or select specific records. The agent can
794
+ * also perform data manipulation operations such as adding, updating, deleting records.
795
+ * ...
796
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/AI)
797
+ */
798
+ aiFeature ? : object|Boolean|string|AI|AIConfig
786
799
  /**
787
800
  * AI-powered filter feature for Grid. Allows users to type natural language queries to filter grid data.
788
801
  * ...
@@ -1125,6 +1138,18 @@ const emit = defineEmits<{
1125
1138
  * @param {any} params.params.event.value The value being set
1126
1139
  */
1127
1140
  (e: 'beforeCellRangeEdit', params: ((event: { record: Model, field: string, value: any }) => Promise<boolean>|boolean|void)|string): Promise<boolean>|boolean|void
1141
+ /**
1142
+ * This event is triggered before a parent column is collapsed or expanded.
1143
+ * @param {string} e Event name
1144
+ * @param {object} params Event parameters
1145
+ * @param {string} params.e Event name
1146
+ * @param {object} params.params Event parameters
1147
+ * @param {object} params.params.event Event object
1148
+ * @param {Grid.view.GridBase} params.params.event.source The grid instance
1149
+ * @param {Grid.column.Column} params.params.event.column The column
1150
+ * @param {boolean} params.params.event.collapsed `true` if the column is being collapsed, `false` if expanded
1151
+ */
1152
+ (e: 'beforeColumnCollapseToggle', params: ((event: { source: GridBase, column: Column, collapsed: boolean }) => void)|string): void
1128
1153
  /**
1129
1154
  * This event is fired prior to starting a column drag gesture. The drag is canceled if a listener returns `false`.
1130
1155
  * @param {string} e Event name
@@ -1291,12 +1316,12 @@ const emit = defineEmits<{
1291
1316
  * @param {string} params.e Event name
1292
1317
  * @param {object} params.params Event parameters
1293
1318
  * @param {object} params.params.event Event object
1294
- * @param {Grid.view.Grid} params.params.event.source The firing Grid instance.
1295
- * @param {Grid.row.Row} params.params.event.row The row about to be rendered.
1296
- * @param {Core.data.Model} params.params.event.record The record for the row.
1297
- * @param {number} params.params.event.recordIndex The zero-based index of the record.
1319
+ * @param {Grid.view.GridBase} params.params.event.source The firing Grid instance
1320
+ * @param {Grid.row.Row} params.params.event.row The row about to be rendered
1321
+ * @param {Core.data.Model} params.params.event.record The record for the row
1322
+ * @param {number} params.params.event.recordIndex The zero-based index of the record
1298
1323
  */
1299
- (e: 'beforeRenderRow', params: ((event: { source: Grid, row: Row, record: Model, recordIndex: number }) => void)|string): void
1324
+ (e: 'beforeRenderRow', params: ((event: { source: GridBase, row: Row, record: Model, recordIndex: number }) => void)|string): void
1300
1325
  /**
1301
1326
  * Grid rows are about to be rendered
1302
1327
  * @param {string} e Event name
@@ -1304,9 +1329,9 @@ const emit = defineEmits<{
1304
1329
  * @param {string} params.e Event name
1305
1330
  * @param {object} params.params Event parameters
1306
1331
  * @param {object} params.params.event Event object
1307
- * @param {Grid.view.Grid} params.params.event.source This grid.
1332
+ * @param {Grid.view.GridBase} params.params.event.source This grid.
1308
1333
  */
1309
- (e: 'beforeRenderRows', params: ((event: { source: Grid }) => void)|string): void
1334
+ (e: 'beforeRenderRows', params: ((event: { source: GridBase }) => void)|string): void
1310
1335
  /**
1311
1336
  * This event fires before row collapse is started.
1312
1337
  * ...
@@ -1637,6 +1662,18 @@ const emit = defineEmits<{
1637
1662
  * @param {Core.data.Model} params.params.event.record The record which has been collapsed.
1638
1663
  */
1639
1664
  (e: 'collapseNode', params: ((event: { source: Grid, record: Model }) => void)|string): void
1665
+ /**
1666
+ * This event is triggered after a parent column has been collapsed or expanded.
1667
+ * @param {string} e Event name
1668
+ * @param {object} params Event parameters
1669
+ * @param {string} params.e Event name
1670
+ * @param {object} params.params Event parameters
1671
+ * @param {object} params.params.event Event object
1672
+ * @param {Grid.view.GridBase} params.params.event.source The Grid instance
1673
+ * @param {Grid.column.Column} params.params.event.column The column being toggled
1674
+ * @param {boolean} params.params.event.collapsed `true` if the column is now collapsed, `false` if expanded
1675
+ */
1676
+ (e: 'columnCollapseToggle', params: ((event: { source: GridBase, column: Column, collapsed: boolean }) => void)|string): void
1640
1677
  /**
1641
1678
  * This event is fired when a column is being dragged, and you can set the `valid` flag on the `context` object
1642
1679
  * to indicate whether the drop position is valid or not.
@@ -1754,14 +1791,14 @@ const emit = defineEmits<{
1754
1791
  * @param {string} params.e Event name
1755
1792
  * @param {object} params.params Event parameters
1756
1793
  * @param {object} params.params.event Event object
1757
- * @param {Grid.view.Grid} params.params.event.source Owning grid
1794
+ * @param {Grid.view.GridBase} params.params.event.source Owning grid
1758
1795
  * @param {Core.data.Store} params.params.event.store The originating store
1759
1796
  * @param {'remove','removeAll','add','clearchanges','filter','update','dataset','replace'} params.params.event.action Name of action which triggered the change. May be one of: * `'remove'` * `'removeAll'` * `'add'` * `'clearchanges'` * `'filter'` * `'update'` * `'dataset'` * `'replace'`
1760
1797
  * @param {Core.data.Model} params.params.event.record Changed record, for actions that affects exactly one record (`'update'`)
1761
1798
  * @param {Core.data.Model[]} params.params.event.records Changed records, passed for all actions except `'removeAll'`
1762
1799
  * @param {object} params.params.event.changes Passed for the `'update'` action, info on which record fields changed
1763
1800
  */
1764
- (e: 'dataChange', params: ((event: { source: Grid, store: Store, action: 'remove'|'removeAll'|'add'|'clearchanges'|'filter'|'update'|'dataset'|'replace', record: Model, records: Model[], changes: object }) => void)|string): void
1801
+ (e: 'dataChange', params: ((event: { source: GridBase, store: Store, action: 'remove'|'removeAll'|'add'|'clearchanges'|'filter'|'update'|'dataset'|'replace', record: Model, records: Model[], changes: object }) => void)|string): void
1765
1802
  /**
1766
1803
  * Fires when an object is destroyed.
1767
1804
  * @param {string} e Event name
@@ -2209,12 +2246,12 @@ const emit = defineEmits<{
2209
2246
  * @param {string} params.e Event name
2210
2247
  * @param {object} params.params Event parameters
2211
2248
  * @param {object} params.params.event Event object
2212
- * @param {Grid.view.Grid} params.params.event.source The firing Grid instance.
2213
- * @param {Grid.row.Row} params.params.event.row The row that has been rendered.
2214
- * @param {Core.data.Model} params.params.event.record The record for the row.
2215
- * @param {number} params.params.event.recordIndex The zero-based index of the record.
2249
+ * @param {Grid.view.GridBase} params.params.event.source The firing Grid instance
2250
+ * @param {Grid.row.Row} params.params.event.row The row that has been rendered
2251
+ * @param {Core.data.Model} params.params.event.record The record for the row
2252
+ * @param {number} params.params.event.recordIndex The zero-based index of the record
2216
2253
  */
2217
- (e: 'renderRow', params: ((event: { source: Grid, row: Row, record: Model, recordIndex: number }) => void)|string): void
2254
+ (e: 'renderRow', params: ((event: { source: GridBase, row: Row, record: Model, recordIndex: number }) => void)|string): void
2218
2255
  /**
2219
2256
  * Grid rows have been rendered
2220
2257
  * @param {string} e Event name
@@ -2222,9 +2259,9 @@ const emit = defineEmits<{
2222
2259
  * @param {string} params.e Event name
2223
2260
  * @param {object} params.params Event parameters
2224
2261
  * @param {object} params.params.event Event object
2225
- * @param {Grid.view.Grid} params.params.event.source This grid.
2262
+ * @param {Grid.view.GridBase} params.params.event.source This grid.
2226
2263
  */
2227
- (e: 'renderRows', params: ((event: { source: Grid }) => void)|string): void
2264
+ (e: 'renderRows', params: ((event: { source: GridBase }) => void)|string): void
2228
2265
  /**
2229
2266
  * 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`*.
2230
2267
  * @param {string} e Event name
@@ -2312,10 +2349,10 @@ const emit = defineEmits<{
2312
2349
  * @param {string} params.e Event name
2313
2350
  * @param {object} params.params Event parameters
2314
2351
  * @param {object} params.params.event Event object
2315
- * @param {Grid.view.Grid} params.params.event.source The firing Grid instance.
2352
+ * @param {Grid.view.GridBase} params.params.event.source The firing Grid instance.
2316
2353
  * @param {number} params.params.event.scrollTop The vertical scroll position.
2317
2354
  */
2318
- (e: 'scroll', params: ((event: { source: Grid, scrollTop: number }) => void)|string): void
2355
+ (e: 'scroll', params: ((event: { source: GridBase, scrollTop: number }) => void)|string): void
2319
2356
  /**
2320
2357
  * The selection has been changed.
2321
2358
  * @param {string} e Event name
@@ -2447,10 +2484,10 @@ const emit = defineEmits<{
2447
2484
  * @param {string} params.e Event name
2448
2485
  * @param {object} params.params Event parameters
2449
2486
  * @param {object} params.params.event Event object
2450
- * @param {Grid.view.Grid} params.params.event.source The firing Grid instance
2487
+ * @param {Grid.view.GridBase} params.params.event.source The firing Grid instance
2451
2488
  * @param {Grid.view.SubGrid} params.params.event.subGrid The sub grid instance
2452
2489
  */
2453
- (e: 'subGridCollapse', params: ((event: { source: Grid, subGrid: SubGrid }) => void)|string): void
2490
+ (e: 'subGridCollapse', params: ((event: { source: GridBase, subGrid: SubGrid }) => void)|string): void
2454
2491
  /**
2455
2492
  * Fires after a sub grid is expanded.
2456
2493
  * @param {string} e Event name
@@ -2458,10 +2495,10 @@ const emit = defineEmits<{
2458
2495
  * @param {string} params.e Event name
2459
2496
  * @param {object} params.params Event parameters
2460
2497
  * @param {object} params.params.event Event object
2461
- * @param {Grid.view.Grid} params.params.event.source The firing Grid instance
2498
+ * @param {Grid.view.GridBase} params.params.event.source The firing Grid instance
2462
2499
  * @param {Grid.view.SubGrid} params.params.event.subGrid The sub grid instance
2463
2500
  */
2464
- (e: 'subGridExpand', params: ((event: { source: Grid, subGrid: SubGrid }) => void)|string): void
2501
+ (e: 'subGridExpand', params: ((event: { source: GridBase, subGrid: SubGrid }) => void)|string): void
2465
2502
  /**
2466
2503
  * Fired when one or more groups are expanded or collapsed
2467
2504
  * @param {string} e Event name
@@ -2523,6 +2560,7 @@ const widgetData = {
2523
2560
  },
2524
2561
  projectStores : false,
2525
2562
  featureNames : [
2563
+ 'aiFeature',
2526
2564
  'aiFilterFeature',
2527
2565
  'cellCopyPasteFeature',
2528
2566
  'cellEditFeature',
@@ -2574,6 +2612,7 @@ const widgetData = {
2574
2612
  'autoHeight',
2575
2613
  'bbar',
2576
2614
  'bodyCls',
2615
+ 'border',
2577
2616
  'bubbleEvents',
2578
2617
  'collapsible',
2579
2618
  'color',
@@ -2678,6 +2717,7 @@ const widgetData = {
2678
2717
  'onBeforeCellEditStart',
2679
2718
  'onBeforeCellRangeDelete',
2680
2719
  'onBeforeCellRangeEdit',
2720
+ 'onBeforeColumnCollapseToggle',
2681
2721
  'onBeforeColumnDragStart',
2682
2722
  'onBeforeColumnDropFinalize',
2683
2723
  'onBeforeColumnResize',
@@ -2718,6 +2758,7 @@ const widgetData = {
2718
2758
  'onCellMouseOver',
2719
2759
  'onCollapse',
2720
2760
  'onCollapseNode',
2761
+ 'onColumnCollapseToggle',
2721
2762
  'onColumnDrag',
2722
2763
  'onColumnDragStart',
2723
2764
  'onColumnDrop',
@@ -2825,6 +2866,7 @@ const widgetData = {
2825
2866
  'beforeCellEditStart',
2826
2867
  'beforeCellRangeDelete',
2827
2868
  'beforeCellRangeEdit',
2869
+ 'beforeColumnCollapseToggle',
2828
2870
  'beforeColumnDragStart',
2829
2871
  'beforeColumnDropFinalize',
2830
2872
  'beforeColumnResize',
@@ -2865,6 +2907,7 @@ const widgetData = {
2865
2907
  'cellMouseOver',
2866
2908
  'collapse',
2867
2909
  'collapseNode',
2910
+ 'columnCollapseToggle',
2868
2911
  'columnDrag',
2869
2912
  'columnDragStart',
2870
2913
  'columnDrop',
@@ -1,5 +1,5 @@
1
- import type { DomConfig, FormulaProviderConfig, KeyMapConfig, Mask, MaskConfig, Model, ModelConfig, PagingToolbarConfig, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, ToolConfig, ToolbarConfig, ToolbarItems, Widget } from '@bryntum/core-thin';
2
- import type { AIFilter, AIFilterConfig, CellCopyPaste, CellCopyPasteConfig, CellEdit, CellEditConfig, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, GridContainerItemConfig, EmptyTextDomConfig, ExcelExporter, ExcelExporterConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, GridColumnConfig, GridSelectionMode, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, LockRows, LockRowsConfig, MergeCells, MergeCellsConfig, PdfExport, PdfExportConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, Print, PrintConfig, QuickFind, QuickFindConfig, RegionResize, RegionResizeConfig, ResponsiveLevelConfig, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, Search, SearchConfig, Sort, SortConfig, Split, SplitConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGridConfig, Summary, SummaryConfig, Tree, TreeConfig, TreeGridListeners, TreeGroup, TreeGroupConfig } from '@bryntum/grid-thin';
1
+ import type { Color, DomConfig, FormulaProviderConfig, KeyMapConfig, Mask, MaskConfig, Model, ModelConfig, PagingToolbarConfig, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, ToolConfig, ToolbarConfig, ToolbarItems, Widget } from '@bryntum/core-thin';
2
+ import type { AI, AIConfig, AIFilter, AIFilterConfig, CellCopyPaste, CellCopyPasteConfig, CellEdit, CellEditConfig, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, GridContainerItemConfig, EmptyTextDomConfig, ExcelExporter, ExcelExporterConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, GridColumnConfig, GridSelectionMode, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, LockRows, LockRowsConfig, MergeCells, MergeCellsConfig, PdfExport, PdfExportConfig, PinColumns, PinColumnsConfig, PreserveScrollOptions, Print, PrintConfig, QuickFind, QuickFindConfig, RegionResize, RegionResizeConfig, ResponsiveLevelConfig, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, Search, SearchConfig, Sort, SortConfig, Split, SplitConfig, StickyCells, StickyCellsConfig, Stripe, StripeConfig, SubGridConfig, Summary, SummaryConfig, Tree, TreeConfig, TreeGridListeners, TreeGroup, TreeGroupConfig } from '@bryntum/grid-thin';
3
3
 
4
4
  export declare type BryntumTreeGridProps = {
5
5
  // Configs
@@ -72,6 +72,10 @@ export declare type BryntumTreeGridProps = {
72
72
  * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-bodyCls)
73
73
  */
74
74
  bodyCls ? : string|object
75
+ /**
76
+ * Set `true` to add a border to this container's element.
77
+ */
78
+ border ? : Boolean
75
79
  /**
76
80
  * An object where property names with a truthy value indicate which events should bubble up the ownership
77
81
  * hierarchy when triggered.
@@ -123,7 +127,7 @@ export declare type BryntumTreeGridProps = {
123
127
  * ...
124
128
  * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-color)
125
129
  */
126
- color ? : string
130
+ color ? : Color
127
131
  /**
128
132
  * Programmatic control over which column to start in when used in a grid layout.
129
133
  */
@@ -745,6 +749,15 @@ export declare type BryntumTreeGridProps = {
745
749
  width ? : string|number
746
750
 
747
751
  // Features
752
+ /**
753
+ * This feature provides an AI agent for Grid. It provides a chat panel that allows the user to send messages to the
754
+ * agent and see the responses. Which allows the user to use natural language to interact with the Grid in different
755
+ * ways. For example, the user can ask the agent to filter the data, sort it, or select specific records. The agent can
756
+ * also perform data manipulation operations such as adding, updating, deleting records.
757
+ * ...
758
+ * [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/AI)
759
+ */
760
+ aiFeature ? : object|Boolean|string|AI|AIConfig
748
761
  /**
749
762
  * AI-powered filter feature for Grid. Allows users to type natural language queries to filter grid data.
750
763
  * ...
@@ -469,9 +469,13 @@ export class WrapperHelper {
469
469
  isRecurring = eventRecord.isRecurring || eventRecord.isOccurrence,
470
470
  key = `assignment-${assignmentRecord?.id}${isRecurring ? '-' + eventRecord.id : ''}`;
471
471
 
472
- if (wrap.vueKey) {
472
+ // Only delete the teleport if it's rendering into this specific targetElement.
473
+ // Prevents issues when elements are reused during scrolling with LockRows feature.
474
+ if (wrap.vueKey && teleports.get(wrap.vueKey)?.to === targetElement) {
475
+ // Only delete if the existing teleport is rendering into this specific targetElement
473
476
  teleports.delete(wrap.vueKey);
474
477
  }
478
+
475
479
  const
476
480
  bind = { ...rendererConfig },
477
481
  { is, on = {} } = bind;