@bryntum/grid-react-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.
- package/README.md +16 -10
- package/lib/BryntumAIFilterField.d.ts +2 -2
- package/lib/BryntumChecklistFilterCombo.d.ts +2 -2
- package/lib/BryntumGrid.d.ts +23 -11
- package/lib/BryntumGrid.js +4 -0
- package/lib/BryntumGrid.js.map +1 -1
- package/lib/BryntumGridBase.d.ts +23 -11
- package/lib/BryntumGridBase.js +4 -0
- package/lib/BryntumGridBase.js.map +1 -1
- package/lib/BryntumGridChartDesigner.d.ts +2 -2
- package/lib/BryntumGridFieldFilterPicker.d.ts +3 -2
- package/lib/BryntumGridFieldFilterPicker.js +1 -0
- package/lib/BryntumGridFieldFilterPicker.js.map +1 -1
- package/lib/BryntumGridFieldFilterPickerGroup.d.ts +3 -2
- package/lib/BryntumGridFieldFilterPickerGroup.js +1 -0
- package/lib/BryntumGridFieldFilterPickerGroup.js.map +1 -1
- package/lib/BryntumGroupBar.d.ts +2 -2
- package/lib/BryntumGroupBar.js +2 -2
- package/lib/BryntumGroupBar.js.map +1 -1
- package/lib/BryntumTreeCombo.d.ts +2 -2
- package/lib/BryntumTreeGrid.d.ts +23 -11
- package/lib/BryntumTreeGrid.js +4 -0
- package/lib/BryntumTreeGrid.js.map +1 -1
- package/lib/WrapperHelper.js +46 -1
- package/lib/WrapperHelper.js.map +1 -1
- package/package.json +1 -1
- package/src/BryntumAIFilterField.tsx +2 -2
- package/src/BryntumChecklistFilterCombo.tsx +2 -2
- package/src/BryntumGrid.tsx +58 -25
- package/src/BryntumGridBase.tsx +58 -25
- package/src/BryntumGridChartDesigner.tsx +2 -2
- package/src/BryntumGridFieldFilterPicker.tsx +7 -2
- package/src/BryntumGridFieldFilterPickerGroup.tsx +7 -2
- package/src/BryntumGroupBar.tsx +4 -4
- package/src/BryntumTreeCombo.tsx +2 -2
- package/src/BryntumTreeGrid.tsx +58 -25
- package/src/WrapperHelper.tsx +162 -35
package/README.md
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
|
-
<
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
<br>
|
|
2
|
+
<br>
|
|
3
|
+
|
|
4
|
+
<p align="center">
|
|
5
|
+
<a href="https://bryntum.com/" rel="noopener" target="_blank">
|
|
6
|
+
<img height="50" src="https://bryntum.com/resources/bryntum_logo_blue.svg" alt="Bryntum logo">
|
|
7
|
+
</a>
|
|
8
|
+
     
|
|
9
|
+
<img src="https://bryntum.com/products/grid/docs/data/Core/images/logo/react.svg" alt="React" height="55">
|
|
10
|
+
</p>
|
|
11
|
+
|
|
12
|
+
<br>
|
|
7
13
|
|
|
8
14
|
# React wrapper for Bryntum Grid Thin packages
|
|
9
15
|
|
|
@@ -146,8 +152,8 @@ API packages:
|
|
|
146
152
|
```json
|
|
147
153
|
{
|
|
148
154
|
"dependencies": {
|
|
149
|
-
"@bryntum/core-thin": "7.
|
|
150
|
-
"@bryntum/grid-thin": "7.
|
|
155
|
+
"@bryntum/core-thin": "7.2.0",
|
|
156
|
+
"@bryntum/grid-thin": "7.2.0"
|
|
151
157
|
}
|
|
152
158
|
}
|
|
153
159
|
```
|
|
@@ -157,8 +163,8 @@ Framework wrapper packages:
|
|
|
157
163
|
```json
|
|
158
164
|
{
|
|
159
165
|
"dependencies": {
|
|
160
|
-
"@bryntum/core-react-thin": "7.
|
|
161
|
-
"@bryntum/grid-react-thin": "7.
|
|
166
|
+
"@bryntum/core-react-thin": "7.2.0",
|
|
167
|
+
"@bryntum/grid-react-thin": "7.2.0"
|
|
162
168
|
}
|
|
163
169
|
}
|
|
164
170
|
```
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { AlignSpec, Base, Field, FieldContainer, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, MaskConfig, Model, Rectangle, TabConfig, TooltipConfig, Widget } from '@bryntum/core-thin';
|
|
2
|
+
import { AlignSpec, Base, Color, Field, FieldContainer, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, MaskConfig, Model, Rectangle, TabConfig, TooltipConfig, Widget } from '@bryntum/core-thin';
|
|
3
3
|
import { AIFilterField, AIFilterFieldListeners, GridContainerItemConfig, Grid } from '@bryntum/grid-thin';
|
|
4
4
|
import { processWidgetContent } from './WrapperHelper.js';
|
|
5
5
|
export declare type BryntumAIFilterFieldProps = {
|
|
@@ -20,7 +20,7 @@ export declare type BryntumAIFilterFieldProps = {
|
|
|
20
20
|
clearable?: boolean | FieldTriggerConfig;
|
|
21
21
|
client?: Grid;
|
|
22
22
|
cls?: string | object;
|
|
23
|
-
color?:
|
|
23
|
+
color?: Color;
|
|
24
24
|
column?: number;
|
|
25
25
|
config?: object;
|
|
26
26
|
constrainTo?: HTMLElement | Widget | Rectangle;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { 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';
|
|
2
|
+
import { 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';
|
|
3
3
|
import { ChecklistFilterCombo, ChecklistFilterComboListeners, GridContainerItemConfig } from '@bryntum/grid-thin';
|
|
4
4
|
import { processWidgetContent } from './WrapperHelper.js';
|
|
5
5
|
export declare type BryntumChecklistFilterComboProps = {
|
|
@@ -26,7 +26,7 @@ export declare type BryntumChecklistFilterComboProps = {
|
|
|
26
26
|
clearTextOnSelection?: boolean;
|
|
27
27
|
clearWhenInputEmpty?: boolean;
|
|
28
28
|
cls?: string | object;
|
|
29
|
-
color?:
|
|
29
|
+
color?: Color;
|
|
30
30
|
column?: number;
|
|
31
31
|
config?: object;
|
|
32
32
|
constrainTo?: HTMLElement | Widget | Rectangle;
|
package/lib/BryntumGrid.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { AjaxStore, AjaxStoreConfig, 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';
|
|
3
|
-
import { 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, GridListeners, 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, TreeGroup, TreeGroupConfig, XLSColumn } from '@bryntum/grid-thin';
|
|
2
|
+
import { AjaxStore, AjaxStoreConfig, 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';
|
|
3
|
+
import { 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, GridListeners, 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, TreeGroup, TreeGroupConfig, XLSColumn } from '@bryntum/grid-thin';
|
|
4
4
|
import { processWidgetContent } from './WrapperHelper.js';
|
|
5
5
|
export declare type BryntumGridProps = {
|
|
6
6
|
adopt?: HTMLElement | string;
|
|
@@ -14,6 +14,7 @@ export declare type BryntumGridProps = {
|
|
|
14
14
|
autoHeight?: boolean;
|
|
15
15
|
bbar?: (GridContainerItemConfig | string)[] | ToolbarConfig | PagingToolbarConfig | null;
|
|
16
16
|
bodyCls?: string | object;
|
|
17
|
+
border?: boolean;
|
|
17
18
|
bubbleEvents?: object;
|
|
18
19
|
callOnFunctions?: boolean;
|
|
19
20
|
catchEventHandlerExceptions?: boolean;
|
|
@@ -21,7 +22,7 @@ export declare type BryntumGridProps = {
|
|
|
21
22
|
cls?: string | object;
|
|
22
23
|
collapsed?: boolean;
|
|
23
24
|
collapsible?: boolean | PanelCollapserConfig | PanelCollapserOverlayConfig;
|
|
24
|
-
color?:
|
|
25
|
+
color?: Color;
|
|
25
26
|
column?: number;
|
|
26
27
|
columnLines?: boolean;
|
|
27
28
|
columns?: ColumnStore | GridColumnConfig[] | ColumnStoreConfig;
|
|
@@ -186,6 +187,11 @@ export declare type BryntumGridProps = {
|
|
|
186
187
|
field: string;
|
|
187
188
|
value: any;
|
|
188
189
|
}) => Promise<boolean> | boolean | void) | string;
|
|
190
|
+
onBeforeColumnCollapseToggle?: ((event: {
|
|
191
|
+
source: GridBase;
|
|
192
|
+
column: Column;
|
|
193
|
+
collapsed: boolean;
|
|
194
|
+
}) => void) | string;
|
|
189
195
|
onBeforeColumnDragStart?: ((event: {
|
|
190
196
|
source: Grid;
|
|
191
197
|
column: Column;
|
|
@@ -252,13 +258,13 @@ export declare type BryntumGridProps = {
|
|
|
252
258
|
config: PdfExportConfig;
|
|
253
259
|
}) => Promise<boolean> | boolean | void) | string;
|
|
254
260
|
onBeforeRenderRow?: ((event: {
|
|
255
|
-
source:
|
|
261
|
+
source: GridBase;
|
|
256
262
|
row: Row;
|
|
257
263
|
record: Model;
|
|
258
264
|
recordIndex: number;
|
|
259
265
|
}) => void) | string;
|
|
260
266
|
onBeforeRenderRows?: ((event: {
|
|
261
|
-
source:
|
|
267
|
+
source: GridBase;
|
|
262
268
|
}) => void) | string;
|
|
263
269
|
onBeforeRowCollapse?: ((event: {
|
|
264
270
|
record: Model;
|
|
@@ -404,6 +410,11 @@ export declare type BryntumGridProps = {
|
|
|
404
410
|
source: Grid;
|
|
405
411
|
record: Model;
|
|
406
412
|
}) => void) | string;
|
|
413
|
+
onColumnCollapseToggle?: ((event: {
|
|
414
|
+
source: GridBase;
|
|
415
|
+
column: Column;
|
|
416
|
+
collapsed: boolean;
|
|
417
|
+
}) => void) | string;
|
|
407
418
|
onColumnDrag?: ((event: {
|
|
408
419
|
source: Grid;
|
|
409
420
|
column: Column;
|
|
@@ -456,7 +467,7 @@ export declare type BryntumGridProps = {
|
|
|
456
467
|
entityName: string;
|
|
457
468
|
}) => void) | string;
|
|
458
469
|
onDataChange?: ((event: {
|
|
459
|
-
source:
|
|
470
|
+
source: GridBase;
|
|
460
471
|
store: Store;
|
|
461
472
|
action: 'remove' | 'removeAll' | 'add' | 'clearchanges' | 'filter' | 'update' | 'dataset' | 'replace';
|
|
462
473
|
record: Model;
|
|
@@ -648,13 +659,13 @@ export declare type BryntumGridProps = {
|
|
|
648
659
|
}) => void) | string;
|
|
649
660
|
onRecompose?: (() => void) | string;
|
|
650
661
|
onRenderRow?: ((event: {
|
|
651
|
-
source:
|
|
662
|
+
source: GridBase;
|
|
652
663
|
row: Row;
|
|
653
664
|
record: Model;
|
|
654
665
|
recordIndex: number;
|
|
655
666
|
}) => void) | string;
|
|
656
667
|
onRenderRows?: ((event: {
|
|
657
|
-
source:
|
|
668
|
+
source: GridBase;
|
|
658
669
|
}) => void) | string;
|
|
659
670
|
onResize?: ((event: {
|
|
660
671
|
source: Widget;
|
|
@@ -693,7 +704,7 @@ export declare type BryntumGridProps = {
|
|
|
693
704
|
event: MouseEvent;
|
|
694
705
|
}) => void) | string;
|
|
695
706
|
onScroll?: ((event: {
|
|
696
|
-
source:
|
|
707
|
+
source: GridBase;
|
|
697
708
|
scrollTop: number;
|
|
698
709
|
}) => void) | string;
|
|
699
710
|
onSelectionChange?: ((event: {
|
|
@@ -750,11 +761,11 @@ export declare type BryntumGridProps = {
|
|
|
750
761
|
editorContext: RowEditorContext;
|
|
751
762
|
}) => void) | string;
|
|
752
763
|
onSubGridCollapse?: ((event: {
|
|
753
|
-
source:
|
|
764
|
+
source: GridBase;
|
|
754
765
|
subGrid: SubGrid;
|
|
755
766
|
}) => void) | string;
|
|
756
767
|
onSubGridExpand?: ((event: {
|
|
757
|
-
source:
|
|
768
|
+
source: GridBase;
|
|
758
769
|
subGrid: SubGrid;
|
|
759
770
|
}) => void) | string;
|
|
760
771
|
onToggleGroup?: ((event: {
|
|
@@ -775,6 +786,7 @@ export declare type BryntumGridProps = {
|
|
|
775
786
|
clone: GridBase;
|
|
776
787
|
}) => void) | string;
|
|
777
788
|
onUnsplit?: (() => void) | string;
|
|
789
|
+
aiFeature?: object | boolean | string | AI | AIConfig;
|
|
778
790
|
aiFilterFeature?: object | boolean | string | AIFilter | AIFilterConfig;
|
|
779
791
|
cellCopyPasteFeature?: object | boolean | string | CellCopyPaste | CellCopyPasteConfig;
|
|
780
792
|
cellEditFeature?: object | boolean | string | CellEdit | CellEditConfig;
|
package/lib/BryntumGrid.js
CHANGED
|
@@ -37,6 +37,7 @@ BryntumGrid.instanceClass = Grid;
|
|
|
37
37
|
BryntumGrid.instanceName = 'Grid';
|
|
38
38
|
BryntumGrid.isView = true;
|
|
39
39
|
BryntumGrid.featureNames = [
|
|
40
|
+
'aiFeature',
|
|
40
41
|
'aiFilterFeature',
|
|
41
42
|
'cellCopyPasteFeature',
|
|
42
43
|
'cellEditFeature',
|
|
@@ -87,6 +88,7 @@ BryntumGrid.configNames = [
|
|
|
87
88
|
'autoHeight',
|
|
88
89
|
'bbar',
|
|
89
90
|
'bodyCls',
|
|
91
|
+
'border',
|
|
90
92
|
'bubbleEvents',
|
|
91
93
|
'collapsible',
|
|
92
94
|
'color',
|
|
@@ -191,6 +193,7 @@ BryntumGrid.propertyConfigNames = [
|
|
|
191
193
|
'onBeforeCellEditStart',
|
|
192
194
|
'onBeforeCellRangeDelete',
|
|
193
195
|
'onBeforeCellRangeEdit',
|
|
196
|
+
'onBeforeColumnCollapseToggle',
|
|
194
197
|
'onBeforeColumnDragStart',
|
|
195
198
|
'onBeforeColumnDropFinalize',
|
|
196
199
|
'onBeforeColumnResize',
|
|
@@ -231,6 +234,7 @@ BryntumGrid.propertyConfigNames = [
|
|
|
231
234
|
'onCellMouseOver',
|
|
232
235
|
'onCollapse',
|
|
233
236
|
'onCollapseNode',
|
|
237
|
+
'onColumnCollapseToggle',
|
|
234
238
|
'onColumnDrag',
|
|
235
239
|
'onColumnDragStart',
|
|
236
240
|
'onColumnDrop',
|
package/lib/BryntumGrid.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BryntumGrid.js","sourceRoot":"","sources":["../src/BryntumGrid.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,
|
|
1
|
+
{"version":3,"file":"BryntumGrid.js","sourceRoot":"","sources":["../src/BryntumGrid.tsx"],"names":[],"mappings":"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"}
|
package/lib/BryntumGridBase.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { AjaxStore, AjaxStoreConfig, 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';
|
|
3
|
-
import { 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, GridBaseListeners, 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, TreeGroup, TreeGroupConfig, XLSColumn } from '@bryntum/grid-thin';
|
|
2
|
+
import { AjaxStore, AjaxStoreConfig, 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';
|
|
3
|
+
import { 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, GridBaseListeners, 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, TreeGroup, TreeGroupConfig, XLSColumn } from '@bryntum/grid-thin';
|
|
4
4
|
import { processWidgetContent } from './WrapperHelper.js';
|
|
5
5
|
export declare type BryntumGridBaseProps = {
|
|
6
6
|
adopt?: HTMLElement | string;
|
|
@@ -14,6 +14,7 @@ export declare type BryntumGridBaseProps = {
|
|
|
14
14
|
autoHeight?: boolean;
|
|
15
15
|
bbar?: (GridContainerItemConfig | string)[] | ToolbarConfig | PagingToolbarConfig | null;
|
|
16
16
|
bodyCls?: string | object;
|
|
17
|
+
border?: boolean;
|
|
17
18
|
bubbleEvents?: object;
|
|
18
19
|
callOnFunctions?: boolean;
|
|
19
20
|
catchEventHandlerExceptions?: boolean;
|
|
@@ -21,7 +22,7 @@ export declare type BryntumGridBaseProps = {
|
|
|
21
22
|
cls?: string | object;
|
|
22
23
|
collapsed?: boolean;
|
|
23
24
|
collapsible?: boolean | PanelCollapserConfig | PanelCollapserOverlayConfig;
|
|
24
|
-
color?:
|
|
25
|
+
color?: Color;
|
|
25
26
|
column?: number;
|
|
26
27
|
columnLines?: boolean;
|
|
27
28
|
columns?: ColumnStore | GridColumnConfig[] | ColumnStoreConfig;
|
|
@@ -185,6 +186,11 @@ export declare type BryntumGridBaseProps = {
|
|
|
185
186
|
field: string;
|
|
186
187
|
value: any;
|
|
187
188
|
}) => Promise<boolean> | boolean | void) | string;
|
|
189
|
+
onBeforeColumnCollapseToggle?: ((event: {
|
|
190
|
+
source: GridBase;
|
|
191
|
+
column: Column;
|
|
192
|
+
collapsed: boolean;
|
|
193
|
+
}) => void) | string;
|
|
188
194
|
onBeforeColumnDragStart?: ((event: {
|
|
189
195
|
source: Grid;
|
|
190
196
|
column: Column;
|
|
@@ -251,13 +257,13 @@ export declare type BryntumGridBaseProps = {
|
|
|
251
257
|
config: PdfExportConfig;
|
|
252
258
|
}) => Promise<boolean> | boolean | void) | string;
|
|
253
259
|
onBeforeRenderRow?: ((event: {
|
|
254
|
-
source:
|
|
260
|
+
source: GridBase;
|
|
255
261
|
row: Row;
|
|
256
262
|
record: Model;
|
|
257
263
|
recordIndex: number;
|
|
258
264
|
}) => void) | string;
|
|
259
265
|
onBeforeRenderRows?: ((event: {
|
|
260
|
-
source:
|
|
266
|
+
source: GridBase;
|
|
261
267
|
}) => void) | string;
|
|
262
268
|
onBeforeRowCollapse?: ((event: {
|
|
263
269
|
record: Model;
|
|
@@ -403,6 +409,11 @@ export declare type BryntumGridBaseProps = {
|
|
|
403
409
|
source: Grid;
|
|
404
410
|
record: Model;
|
|
405
411
|
}) => void) | string;
|
|
412
|
+
onColumnCollapseToggle?: ((event: {
|
|
413
|
+
source: GridBase;
|
|
414
|
+
column: Column;
|
|
415
|
+
collapsed: boolean;
|
|
416
|
+
}) => void) | string;
|
|
406
417
|
onColumnDrag?: ((event: {
|
|
407
418
|
source: Grid;
|
|
408
419
|
column: Column;
|
|
@@ -455,7 +466,7 @@ export declare type BryntumGridBaseProps = {
|
|
|
455
466
|
entityName: string;
|
|
456
467
|
}) => void) | string;
|
|
457
468
|
onDataChange?: ((event: {
|
|
458
|
-
source:
|
|
469
|
+
source: GridBase;
|
|
459
470
|
store: Store;
|
|
460
471
|
action: 'remove' | 'removeAll' | 'add' | 'clearchanges' | 'filter' | 'update' | 'dataset' | 'replace';
|
|
461
472
|
record: Model;
|
|
@@ -647,13 +658,13 @@ export declare type BryntumGridBaseProps = {
|
|
|
647
658
|
}) => void) | string;
|
|
648
659
|
onRecompose?: (() => void) | string;
|
|
649
660
|
onRenderRow?: ((event: {
|
|
650
|
-
source:
|
|
661
|
+
source: GridBase;
|
|
651
662
|
row: Row;
|
|
652
663
|
record: Model;
|
|
653
664
|
recordIndex: number;
|
|
654
665
|
}) => void) | string;
|
|
655
666
|
onRenderRows?: ((event: {
|
|
656
|
-
source:
|
|
667
|
+
source: GridBase;
|
|
657
668
|
}) => void) | string;
|
|
658
669
|
onResize?: ((event: {
|
|
659
670
|
source: Widget;
|
|
@@ -692,7 +703,7 @@ export declare type BryntumGridBaseProps = {
|
|
|
692
703
|
event: MouseEvent;
|
|
693
704
|
}) => void) | string;
|
|
694
705
|
onScroll?: ((event: {
|
|
695
|
-
source:
|
|
706
|
+
source: GridBase;
|
|
696
707
|
scrollTop: number;
|
|
697
708
|
}) => void) | string;
|
|
698
709
|
onSelectionChange?: ((event: {
|
|
@@ -749,11 +760,11 @@ export declare type BryntumGridBaseProps = {
|
|
|
749
760
|
editorContext: RowEditorContext;
|
|
750
761
|
}) => void) | string;
|
|
751
762
|
onSubGridCollapse?: ((event: {
|
|
752
|
-
source:
|
|
763
|
+
source: GridBase;
|
|
753
764
|
subGrid: SubGrid;
|
|
754
765
|
}) => void) | string;
|
|
755
766
|
onSubGridExpand?: ((event: {
|
|
756
|
-
source:
|
|
767
|
+
source: GridBase;
|
|
757
768
|
subGrid: SubGrid;
|
|
758
769
|
}) => void) | string;
|
|
759
770
|
onToggleGroup?: ((event: {
|
|
@@ -774,6 +785,7 @@ export declare type BryntumGridBaseProps = {
|
|
|
774
785
|
clone: GridBase;
|
|
775
786
|
}) => void) | string;
|
|
776
787
|
onUnsplit?: (() => void) | string;
|
|
788
|
+
aiFeature?: object | boolean | string | AI | AIConfig;
|
|
777
789
|
aiFilterFeature?: object | boolean | string | AIFilter | AIFilterConfig;
|
|
778
790
|
cellCopyPasteFeature?: object | boolean | string | CellCopyPaste | CellCopyPasteConfig;
|
|
779
791
|
cellEditFeature?: object | boolean | string | CellEdit | CellEditConfig;
|
package/lib/BryntumGridBase.js
CHANGED
|
@@ -36,6 +36,7 @@ BryntumGridBase.instanceClass = GridBase;
|
|
|
36
36
|
BryntumGridBase.instanceName = 'GridBase';
|
|
37
37
|
BryntumGridBase.isView = true;
|
|
38
38
|
BryntumGridBase.featureNames = [
|
|
39
|
+
'aiFeature',
|
|
39
40
|
'aiFilterFeature',
|
|
40
41
|
'cellCopyPasteFeature',
|
|
41
42
|
'cellEditFeature',
|
|
@@ -86,6 +87,7 @@ BryntumGridBase.configNames = [
|
|
|
86
87
|
'autoHeight',
|
|
87
88
|
'bbar',
|
|
88
89
|
'bodyCls',
|
|
90
|
+
'border',
|
|
89
91
|
'bubbleEvents',
|
|
90
92
|
'collapsible',
|
|
91
93
|
'color',
|
|
@@ -189,6 +191,7 @@ BryntumGridBase.propertyConfigNames = [
|
|
|
189
191
|
'onBeforeCellEditStart',
|
|
190
192
|
'onBeforeCellRangeDelete',
|
|
191
193
|
'onBeforeCellRangeEdit',
|
|
194
|
+
'onBeforeColumnCollapseToggle',
|
|
192
195
|
'onBeforeColumnDragStart',
|
|
193
196
|
'onBeforeColumnDropFinalize',
|
|
194
197
|
'onBeforeColumnResize',
|
|
@@ -229,6 +232,7 @@ BryntumGridBase.propertyConfigNames = [
|
|
|
229
232
|
'onCellMouseOver',
|
|
230
233
|
'onCollapse',
|
|
231
234
|
'onCollapseNode',
|
|
235
|
+
'onColumnCollapseToggle',
|
|
232
236
|
'onColumnDrag',
|
|
233
237
|
'onColumnDragStart',
|
|
234
238
|
'onColumnDrop',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BryntumGridBase.js","sourceRoot":"","sources":["../src/BryntumGridBase.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,
|
|
1
|
+
{"version":3,"file":"BryntumGridBase.js","sourceRoot":"","sources":["../src/BryntumGridBase.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { AlignSpec, Base, DomConfig, KeyMapConfig, MaskConfig, Rectangle, Scroller, ScrollerConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
2
|
+
import { AlignSpec, Base, Color, DomConfig, KeyMapConfig, MaskConfig, Rectangle, Scroller, ScrollerConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
3
3
|
import { Grid, GridChartDesigner, GridChartDesignerListeners } from '@bryntum/grid-thin';
|
|
4
4
|
import { processWidgetContent } from './WrapperHelper.js';
|
|
5
5
|
export declare type BryntumGridChartDesignerProps = {
|
|
@@ -15,7 +15,7 @@ export declare type BryntumGridChartDesignerProps = {
|
|
|
15
15
|
catchEventHandlerExceptions?: boolean;
|
|
16
16
|
centered?: boolean;
|
|
17
17
|
cls?: string | object;
|
|
18
|
-
color?:
|
|
18
|
+
color?: Color;
|
|
19
19
|
column?: number;
|
|
20
20
|
config?: object;
|
|
21
21
|
constrainTo?: HTMLElement | Widget | Rectangle;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { 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';
|
|
2
|
+
import { 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';
|
|
3
3
|
import { GridContainerItemConfig, GridContainerLayoutConfig, Grid, GridFieldFilterPicker, GridFieldFilterPickerListeners } from '@bryntum/grid-thin';
|
|
4
4
|
import { processWidgetContent } from './WrapperHelper.js';
|
|
5
5
|
export declare type BryntumGridFieldFilterPickerProps = {
|
|
@@ -12,12 +12,13 @@ export declare type BryntumGridFieldFilterPickerProps = {
|
|
|
12
12
|
ariaDescription?: string;
|
|
13
13
|
ariaLabel?: string;
|
|
14
14
|
autoUpdateRecord?: boolean;
|
|
15
|
+
border?: boolean;
|
|
15
16
|
bubbleEvents?: object;
|
|
16
17
|
callOnFunctions?: boolean;
|
|
17
18
|
catchEventHandlerExceptions?: boolean;
|
|
18
19
|
centered?: boolean;
|
|
19
20
|
cls?: string | object;
|
|
20
|
-
color?:
|
|
21
|
+
color?: Color;
|
|
21
22
|
column?: number;
|
|
22
23
|
config?: object;
|
|
23
24
|
constrainTo?: HTMLElement | Widget | Rectangle;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BryntumGridFieldFilterPicker.js","sourceRoot":"","sources":["../src/BryntumGridFieldFilterPicker.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,EAA4D,qBAAqB,EAAkC,MAAM,oBAAoB,CAAC;AAErJ,OAAO,EAAE,YAAY,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"BryntumGridFieldFilterPicker.js","sourceRoot":"","sources":["../src/BryntumGridFieldFilterPicker.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { AlignSpec, Base, CollectionFilterConfig, Container, DomConfig, FieldFilterPicker, FieldFilterPickerConfig, FieldFilterPickerGroup, KeyMapConfig, MaskConfig, MenuItemEntry, Model, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
2
|
+
import { 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';
|
|
3
3
|
import { GridContainerItemConfig, GridContainerLayoutConfig, Grid, GridFieldFilterPickerGroup, GridFieldFilterPickerGroupListeners } from '@bryntum/grid-thin';
|
|
4
4
|
import { processWidgetContent } from './WrapperHelper.js';
|
|
5
5
|
export declare type BryntumGridFieldFilterPickerGroupProps = {
|
|
@@ -13,6 +13,7 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
|
|
|
13
13
|
ariaDescription?: string;
|
|
14
14
|
ariaLabel?: string;
|
|
15
15
|
autoUpdateRecord?: boolean;
|
|
16
|
+
border?: boolean;
|
|
16
17
|
bubbleEvents?: object;
|
|
17
18
|
callOnFunctions?: boolean;
|
|
18
19
|
canDeleteFilter?: (filter: any) => boolean;
|
|
@@ -20,7 +21,7 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
|
|
|
20
21
|
catchEventHandlerExceptions?: boolean;
|
|
21
22
|
centered?: boolean;
|
|
22
23
|
cls?: string | object;
|
|
23
|
-
color?:
|
|
24
|
+
color?: Color;
|
|
24
25
|
column?: number;
|
|
25
26
|
config?: object;
|
|
26
27
|
constrainTo?: HTMLElement | Widget | Rectangle;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BryntumGridFieldFilterPickerGroup.js","sourceRoot":"","sources":["../src/BryntumGridFieldFilterPickerGroup.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,EAA4D,0BAA0B,EAAuC,MAAM,oBAAoB,CAAC;AAE/J,OAAO,EAAE,YAAY,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"BryntumGridFieldFilterPickerGroup.js","sourceRoot":"","sources":["../src/BryntumGridFieldFilterPickerGroup.tsx"],"names":[],"mappings":"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"}
|
package/lib/BryntumGroupBar.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { AlignSpec, Base, Collection, CollectionConfig, DomConfig, KeyMapConfig, List, MaskConfig, Model, Rectangle, Scroller, ScrollerConfig, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
2
|
+
import { AlignSpec, Base, Collection, CollectionConfig, Color, DomConfig, KeyMapConfig, List, MaskConfig, Model, Rectangle, Scroller, ScrollerConfig, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
3
3
|
import { GroupBar, GroupBarListeners } from '@bryntum/grid-thin';
|
|
4
4
|
import { processWidgetContent } from './WrapperHelper.js';
|
|
5
5
|
export declare type BryntumGroupBarProps = {
|
|
@@ -21,7 +21,7 @@ export declare type BryntumGroupBarProps = {
|
|
|
21
21
|
closeHandler?: string | (() => void);
|
|
22
22
|
cls?: string | object;
|
|
23
23
|
collapsibleGroups?: boolean;
|
|
24
|
-
color?:
|
|
24
|
+
color?: Color;
|
|
25
25
|
column?: number;
|
|
26
26
|
config?: object;
|
|
27
27
|
constrainTo?: HTMLElement | Widget | Rectangle;
|
package/lib/BryntumGroupBar.js
CHANGED
|
@@ -27,13 +27,11 @@ BryntumGroupBar.configNames = [
|
|
|
27
27
|
'activateOnMouseover',
|
|
28
28
|
'adopt',
|
|
29
29
|
'align',
|
|
30
|
-
'allowGroupSelect',
|
|
31
30
|
'anchor',
|
|
32
31
|
'ariaDescription',
|
|
33
32
|
'ariaLabel',
|
|
34
33
|
'bubbleEvents',
|
|
35
34
|
'centered',
|
|
36
|
-
'clearSelectionOnEmptySpaceClick',
|
|
37
35
|
'closable',
|
|
38
36
|
'closeHandler',
|
|
39
37
|
'color',
|
|
@@ -85,9 +83,11 @@ BryntumGroupBar.configNames = [
|
|
|
85
83
|
];
|
|
86
84
|
BryntumGroupBar.propertyConfigNames = [
|
|
87
85
|
'alignSelf',
|
|
86
|
+
'allowGroupSelect',
|
|
88
87
|
'appendTo',
|
|
89
88
|
'callOnFunctions',
|
|
90
89
|
'catchEventHandlerExceptions',
|
|
90
|
+
'clearSelectionOnEmptySpaceClick',
|
|
91
91
|
'cls',
|
|
92
92
|
'collapsibleGroups',
|
|
93
93
|
'column',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BryntumGroupBar.js","sourceRoot":"","sources":["../src/BryntumGroupBar.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAEzC,OAAO,EAAE,QAAQ,EAAqB,MAAM,oBAAoB,CAAC;AAEjE,OAAO,EAAE,YAAY,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AA+tB/F,MAAM,OAAO,eAAgB,SAAQ,KAAK,CAAC,SAA+B;IAA1E;;QAMI,yBAAoB,GAAG,oBAAoB,CAAC;IAqKhD,CAAC;IA5BG,iBAAiB;QACb,IAAI,CAAC,QAAQ,GAAG,YAAY,CAAC,IAAI,CAAC,CAAC;IACvC,CAAC;IAED,oBAAoB;;QAEhB,MAAA,MAAA,IAAI,CAAC,QAAQ,0CAAE,OAAO,kDAAI,CAAC;IAC/B,CAAC;IASD,qBAAqB,CAAC,SAAyC,EAAE,SAAuB;QACpF,OAAO,qBAAqB,CAAC,IAAI,EAAE,SAAS,EAAE,SAAS,CAAC,CAAC;IAC7D,CAAC;IAED,MAAM;QAEF,MAAM,SAAS,GAAG,6BAA6B,CAAC;QAChD,OAAO,CACH,6BAAK,SAAS,EAAE,SAAS,EAAE,GAAG,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,GAAG,OAAQ,CAAC,GAAQ,CACjF,CAAC;IAEN,CAAC;;AAxKM,6BAAa,GAAG,QAAQ,CAAC;AAEzB,4BAAY,GAAG,UAAU,CAAC;AAI1B,2BAAW,GAAG;IACjB,qBAAqB;IACrB,OAAO;IACP,OAAO;IACP,
|
|
1
|
+
{"version":3,"file":"BryntumGroupBar.js","sourceRoot":"","sources":["../src/BryntumGroupBar.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { 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';
|
|
2
|
+
import { 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';
|
|
3
3
|
import { GridContainerItemConfig, TreeCombo, TreeComboListeners } from '@bryntum/grid-thin';
|
|
4
4
|
import { processWidgetContent } from './WrapperHelper.js';
|
|
5
5
|
export declare type BryntumTreeComboProps = {
|
|
@@ -26,7 +26,7 @@ export declare type BryntumTreeComboProps = {
|
|
|
26
26
|
clearTextOnSelection?: boolean;
|
|
27
27
|
clearWhenInputEmpty?: boolean;
|
|
28
28
|
cls?: string | object;
|
|
29
|
-
color?:
|
|
29
|
+
color?: Color;
|
|
30
30
|
column?: number;
|
|
31
31
|
config?: object;
|
|
32
32
|
constrainTo?: HTMLElement | Widget | Rectangle;
|