@bryntum/grid-angular-thin 7.3.3 → 7.3.5
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 +32 -55
- package/bundles/bryntum-grid-angular-thin.umd.js +59 -19
- package/bundles/bryntum-grid-angular-thin.umd.js.map +1 -1
- package/esm2015/lib/bryntum-a-i-filter-field.component.js +6 -2
- package/esm2015/lib/bryntum-checklist-filter-combo.component.js +6 -2
- package/esm2015/lib/bryntum-grid-base.component.js +9 -5
- package/esm2015/lib/bryntum-grid-chart-designer.component.js +6 -2
- package/esm2015/lib/bryntum-grid-field-filter-picker-group.component.js +6 -2
- package/esm2015/lib/bryntum-grid-field-filter-picker.component.js +6 -2
- package/esm2015/lib/bryntum-grid.component.js +9 -5
- package/esm2015/lib/bryntum-group-bar.component.js +6 -2
- package/esm2015/lib/bryntum-tree-combo.component.js +6 -2
- package/esm2015/lib/bryntum-tree-grid.component.js +9 -5
- package/fesm2015/bryntum-grid-angular-thin.js +59 -19
- package/fesm2015/bryntum-grid-angular-thin.js.map +1 -1
- package/lib/bryntum-a-i-filter-field.component.d.ts +10 -2
- package/lib/bryntum-checklist-filter-combo.component.d.ts +10 -2
- package/lib/bryntum-grid-base.component.d.ts +11 -4
- package/lib/bryntum-grid-chart-designer.component.d.ts +9 -2
- package/lib/bryntum-grid-field-filter-picker-group.component.d.ts +9 -2
- package/lib/bryntum-grid-field-filter-picker.component.d.ts +9 -2
- package/lib/bryntum-grid.component.d.ts +11 -4
- package/lib/bryntum-group-bar.component.d.ts +9 -2
- package/lib/bryntum-tree-combo.component.d.ts +10 -2
- package/lib/bryntum-tree-grid.component.d.ts +11 -4
- package/package.json +1 -1
- package/src/lib/bryntum-a-i-filter-field.component.ts +11 -1
- package/src/lib/bryntum-checklist-filter-combo.component.ts +11 -1
- package/src/lib/bryntum-grid-base.component.ts +13 -4
- package/src/lib/bryntum-grid-chart-designer.component.ts +10 -1
- package/src/lib/bryntum-grid-field-filter-picker-group.component.ts +10 -1
- package/src/lib/bryntum-grid-field-filter-picker.component.ts +10 -1
- package/src/lib/bryntum-grid.component.ts +13 -4
- package/src/lib/bryntum-group-bar.component.ts +10 -1
- package/src/lib/bryntum-tree-combo.component.ts +11 -1
- package/src/lib/bryntum-tree-grid.component.ts +13 -4
|
@@ -7,7 +7,7 @@ import { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, Simpl
|
|
|
7
7
|
|
|
8
8
|
import WrapperHelper from './wrapper.helper';
|
|
9
9
|
|
|
10
|
-
import { AjaxStore, AjaxStoreConfig, Base, Color, Container, DomConfig, FormulaProviderConfig, InstancePlugin, 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, TooltipConfig, Widget } from '@bryntum/core-thin';
|
|
10
|
+
import { AjaxStore, AjaxStoreConfig, Base, Color, Container, DomConfig, FormulaProviderConfig, InstancePlugin, KeyMapConfig, Mask, MaskConfig, Menu, MenuItem, MenuItemEntry, Model, ModelConfig, OverflowTwinConfig, PagingToolbarConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Widget } from '@bryntum/core-thin';
|
|
11
11
|
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';
|
|
12
12
|
|
|
13
13
|
import { DomHelper, StringHelper } from '@bryntum/core-thin';
|
|
@@ -456,6 +456,12 @@ export type BryntumGridBaseProps = {
|
|
|
456
456
|
* Grid monitors window resize by default.
|
|
457
457
|
*/
|
|
458
458
|
monitorResize ? : boolean
|
|
459
|
+
/**
|
|
460
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
461
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
462
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-overflowTwinConfig)
|
|
463
|
+
*/
|
|
464
|
+
overflowTwinConfig ? : OverflowTwinConfig|null
|
|
459
465
|
/**
|
|
460
466
|
* Specify plugins (an array of classes) in config
|
|
461
467
|
*/
|
|
@@ -606,7 +612,7 @@ export type BryntumGridBaseProps = {
|
|
|
606
612
|
* (if explicitly specified) will be used as the `stateId`.
|
|
607
613
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-stateId)
|
|
608
614
|
*/
|
|
609
|
-
stateId ? : string
|
|
615
|
+
stateId ? : string|null
|
|
610
616
|
/**
|
|
611
617
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
612
618
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -1231,6 +1237,7 @@ export class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1231
1237
|
'minHeight',
|
|
1232
1238
|
'minWidth',
|
|
1233
1239
|
'monitorResize',
|
|
1240
|
+
'overflowTwinConfig',
|
|
1234
1241
|
'plugins',
|
|
1235
1242
|
'preserveFocusOnDatasetChange',
|
|
1236
1243
|
'preserveScroll',
|
|
@@ -1321,6 +1328,7 @@ export class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1321
1328
|
'maskDefaults',
|
|
1322
1329
|
'masked',
|
|
1323
1330
|
'monitorResize',
|
|
1331
|
+
'overflowTwinConfig',
|
|
1324
1332
|
'plugins',
|
|
1325
1333
|
'preserveFocusOnDatasetChange',
|
|
1326
1334
|
'preserveScrollOnDatasetChange',
|
|
@@ -1337,7 +1345,6 @@ export class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1337
1345
|
'showDirty',
|
|
1338
1346
|
'stateful',
|
|
1339
1347
|
'statefulEvents',
|
|
1340
|
-
'stateId',
|
|
1341
1348
|
'stateProvider',
|
|
1342
1349
|
'strips',
|
|
1343
1350
|
'subGridConfigs',
|
|
@@ -1403,6 +1410,7 @@ export class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1403
1410
|
'selectionMode',
|
|
1404
1411
|
'span',
|
|
1405
1412
|
'state',
|
|
1413
|
+
'stateId',
|
|
1406
1414
|
'stateSettings',
|
|
1407
1415
|
'store',
|
|
1408
1416
|
'title',
|
|
@@ -1475,6 +1483,7 @@ export class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1475
1483
|
@Input() maskDefaults ! : MaskConfig;
|
|
1476
1484
|
@Input() masked ! : boolean|string|MaskConfig;
|
|
1477
1485
|
@Input() monitorResize ! : boolean;
|
|
1486
|
+
@Input() overflowTwinConfig ! : OverflowTwinConfig|null;
|
|
1478
1487
|
@Input() plugins ! : InstancePlugin[]|InstancePlugin;
|
|
1479
1488
|
@Input() preserveFocusOnDatasetChange ! : boolean;
|
|
1480
1489
|
@Input() preserveScrollOnDatasetChange ! : boolean;
|
|
@@ -1491,7 +1500,6 @@ export class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1491
1500
|
@Input() showDirty ! : boolean|{ duringEdit: boolean, newRecord: boolean };
|
|
1492
1501
|
@Input() stateful ! : boolean|object|string[];
|
|
1493
1502
|
@Input() statefulEvents ! : object|string[];
|
|
1494
|
-
@Input() stateId ! : string;
|
|
1495
1503
|
@Input() stateProvider ! : StateProvider;
|
|
1496
1504
|
@Input() strips ! : Record<string, GridContainerItemConfig>;
|
|
1497
1505
|
@Input() subGridConfigs ! : Record<string, SubGridConfig>;
|
|
@@ -1547,6 +1555,7 @@ export class BryntumGridBaseComponent implements OnInit, OnDestroy {
|
|
|
1547
1555
|
@Input() scrollable ! : Scroller|boolean|ScrollerConfig;
|
|
1548
1556
|
@Input() selectionMode ! : GridSelectionMode;
|
|
1549
1557
|
@Input() span ! : number;
|
|
1558
|
+
@Input() stateId ! : string|null;
|
|
1550
1559
|
@Input() stateSettings ! : {
|
|
1551
1560
|
restoreUnconfiguredColumns?: boolean
|
|
1552
1561
|
};
|
|
@@ -7,7 +7,7 @@ import { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, Simpl
|
|
|
7
7
|
|
|
8
8
|
import WrapperHelper from './wrapper.helper';
|
|
9
9
|
|
|
10
|
-
import { AlignSpec, Base, Color, DomConfig, KeyMapConfig, MaskConfig, ReactJSX, Rectangle, Scroller, ScrollerConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
10
|
+
import { AlignSpec, Base, Color, DomConfig, KeyMapConfig, MaskConfig, OverflowTwinConfig, ReactJSX, Rectangle, Scroller, ScrollerConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
11
11
|
import { Grid, GridChartDesigner, GridChartDesignerListeners } from '@bryntum/grid-thin';
|
|
12
12
|
|
|
13
13
|
import { DomHelper, StringHelper } from '@bryntum/core-thin';
|
|
@@ -310,6 +310,12 @@ export type BryntumGridChartDesignerProps = {
|
|
|
310
310
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
311
311
|
*/
|
|
312
312
|
monitorResize ? : boolean|object
|
|
313
|
+
/**
|
|
314
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
315
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
316
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-overflowTwinConfig)
|
|
317
|
+
*/
|
|
318
|
+
overflowTwinConfig ? : OverflowTwinConfig|null
|
|
313
319
|
/**
|
|
314
320
|
* Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement), but must
|
|
315
321
|
* not participate in the standard layout of that widget, and must be positioned relatively to that
|
|
@@ -528,6 +534,7 @@ export class BryntumGridChartDesignerComponent implements OnInit, OnDestroy {
|
|
|
528
534
|
'minHeight',
|
|
529
535
|
'minWidth',
|
|
530
536
|
'monitorResize',
|
|
537
|
+
'overflowTwinConfig',
|
|
531
538
|
'positioned',
|
|
532
539
|
'preventTooltipOnTouch',
|
|
533
540
|
'readOnly',
|
|
@@ -584,6 +591,7 @@ export class BryntumGridChartDesignerComponent implements OnInit, OnDestroy {
|
|
|
584
591
|
'maskDefaults',
|
|
585
592
|
'masked',
|
|
586
593
|
'monitorResize',
|
|
594
|
+
'overflowTwinConfig',
|
|
587
595
|
'positioned',
|
|
588
596
|
'preventTooltipOnTouch',
|
|
589
597
|
'relayStoreEvents',
|
|
@@ -685,6 +693,7 @@ export class BryntumGridChartDesignerComponent implements OnInit, OnDestroy {
|
|
|
685
693
|
@Input() maskDefaults ! : MaskConfig;
|
|
686
694
|
@Input() masked ! : boolean|string|MaskConfig;
|
|
687
695
|
@Input() monitorResize ! : boolean|object;
|
|
696
|
+
@Input() overflowTwinConfig ! : OverflowTwinConfig|null;
|
|
688
697
|
@Input() positioned ! : boolean;
|
|
689
698
|
@Input() preventTooltipOnTouch ! : boolean;
|
|
690
699
|
@Input() relayStoreEvents ! : boolean;
|
|
@@ -7,7 +7,7 @@ import { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, Simpl
|
|
|
7
7
|
|
|
8
8
|
import WrapperHelper from './wrapper.helper';
|
|
9
9
|
|
|
10
|
-
import { AlignSpec, Base, CollectionFilterConfig, Color, Container, DomConfig, FieldFilterPicker, FieldFilterPickerConfig, FieldFilterPickerGroup, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, ReactJSX, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
10
|
+
import { AlignSpec, Base, CollectionFilterConfig, Color, Container, DomConfig, FieldFilterPicker, FieldFilterPickerConfig, FieldFilterPickerGroup, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, OverflowTwinConfig, ReactJSX, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
11
11
|
import { GridContainerItemConfig, GridContainerLayoutConfig, Grid, GridFieldFilterPickerGroup, GridFieldFilterPickerGroupListeners } from '@bryntum/grid-thin';
|
|
12
12
|
|
|
13
13
|
import { DomHelper, StringHelper } from '@bryntum/core-thin';
|
|
@@ -446,6 +446,12 @@ export type BryntumGridFieldFilterPickerGroupProps = {
|
|
|
446
446
|
* [operators](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-operators).
|
|
447
447
|
*/
|
|
448
448
|
operators ? : object
|
|
449
|
+
/**
|
|
450
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
451
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
452
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-overflowTwinConfig)
|
|
453
|
+
*/
|
|
454
|
+
overflowTwinConfig ? : OverflowTwinConfig|null
|
|
449
455
|
/**
|
|
450
456
|
* Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement), but must
|
|
451
457
|
* not participate in the standard layout of that widget, and must be positioned relatively to that
|
|
@@ -723,6 +729,7 @@ export class BryntumGridFieldFilterPickerGroupComponent implements OnInit, OnDes
|
|
|
723
729
|
'monitorResize',
|
|
724
730
|
'namedItems',
|
|
725
731
|
'operators',
|
|
732
|
+
'overflowTwinConfig',
|
|
726
733
|
'positioned',
|
|
727
734
|
'preventTooltipOnTouch',
|
|
728
735
|
'readOnly',
|
|
@@ -802,6 +809,7 @@ export class BryntumGridFieldFilterPickerGroupComponent implements OnInit, OnDes
|
|
|
802
809
|
'monitorResize',
|
|
803
810
|
'namedItems',
|
|
804
811
|
'operators',
|
|
812
|
+
'overflowTwinConfig',
|
|
805
813
|
'positioned',
|
|
806
814
|
'preventTooltipOnTouch',
|
|
807
815
|
'relayStoreEvents',
|
|
@@ -934,6 +942,7 @@ export class BryntumGridFieldFilterPickerGroupComponent implements OnInit, OnDes
|
|
|
934
942
|
@Input() monitorResize ! : boolean|object;
|
|
935
943
|
@Input() namedItems ! : Record<string, GridContainerItemConfig>;
|
|
936
944
|
@Input() operators ! : object;
|
|
945
|
+
@Input() overflowTwinConfig ! : OverflowTwinConfig|null;
|
|
937
946
|
@Input() positioned ! : boolean;
|
|
938
947
|
@Input() preventTooltipOnTouch ! : boolean;
|
|
939
948
|
@Input() relayStoreEvents ! : boolean;
|
|
@@ -7,7 +7,7 @@ import { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, Simpl
|
|
|
7
7
|
|
|
8
8
|
import WrapperHelper from './wrapper.helper';
|
|
9
9
|
|
|
10
|
-
import { AlignSpec, Base, CollectionFilter, CollectionFilterConfig, Color, ComboConfig, Container, DomConfig, FieldFilterPicker, FieldOption, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, ReactJSX, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, ValueFieldPlaceholders, VueConfig, Widget } from '@bryntum/core-thin';
|
|
10
|
+
import { AlignSpec, Base, CollectionFilter, CollectionFilterConfig, Color, ComboConfig, Container, DomConfig, FieldFilterPicker, FieldOption, KeyMapConfig, Layout, MaskConfig, MenuItemConfig, MenuItemEntry, Model, OverflowTwinConfig, ReactJSX, Rectangle, Scroller, ScrollerConfig, TabConfig, ToolbarItems, TooltipConfig, ValueFieldPlaceholders, VueConfig, Widget } from '@bryntum/core-thin';
|
|
11
11
|
import { GridContainerItemConfig, GridContainerLayoutConfig, Grid, GridFieldFilterPicker, GridFieldFilterPickerListeners } from '@bryntum/grid-thin';
|
|
12
12
|
|
|
13
13
|
import { DomHelper, StringHelper } from '@bryntum/core-thin';
|
|
@@ -429,6 +429,12 @@ export type BryntumGridFieldFilterPickerProps = {
|
|
|
429
429
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-operators)
|
|
430
430
|
*/
|
|
431
431
|
operators ? : object
|
|
432
|
+
/**
|
|
433
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
434
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
435
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-overflowTwinConfig)
|
|
436
|
+
*/
|
|
437
|
+
overflowTwinConfig ? : OverflowTwinConfig|null
|
|
432
438
|
/**
|
|
433
439
|
* Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement), but must
|
|
434
440
|
* not participate in the standard layout of that widget, and must be positioned relatively to that
|
|
@@ -714,6 +720,7 @@ export class BryntumGridFieldFilterPickerComponent implements OnInit, OnDestroy
|
|
|
714
720
|
'namedItems',
|
|
715
721
|
'operatorLocked',
|
|
716
722
|
'operators',
|
|
723
|
+
'overflowTwinConfig',
|
|
717
724
|
'positioned',
|
|
718
725
|
'preventTooltipOnTouch',
|
|
719
726
|
'propertyFieldConfig',
|
|
@@ -794,6 +801,7 @@ export class BryntumGridFieldFilterPickerComponent implements OnInit, OnDestroy
|
|
|
794
801
|
'namedItems',
|
|
795
802
|
'operatorLocked',
|
|
796
803
|
'operators',
|
|
804
|
+
'overflowTwinConfig',
|
|
797
805
|
'positioned',
|
|
798
806
|
'preventTooltipOnTouch',
|
|
799
807
|
'propertyFieldConfig',
|
|
@@ -926,6 +934,7 @@ export class BryntumGridFieldFilterPickerComponent implements OnInit, OnDestroy
|
|
|
926
934
|
@Input() namedItems ! : Record<string, GridContainerItemConfig>;
|
|
927
935
|
@Input() operatorLocked ! : boolean;
|
|
928
936
|
@Input() operators ! : object;
|
|
937
|
+
@Input() overflowTwinConfig ! : OverflowTwinConfig|null;
|
|
929
938
|
@Input() positioned ! : boolean;
|
|
930
939
|
@Input() preventTooltipOnTouch ! : boolean;
|
|
931
940
|
@Input() propertyFieldConfig ! : ComboConfig;
|
|
@@ -7,7 +7,7 @@ import { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, Simpl
|
|
|
7
7
|
|
|
8
8
|
import WrapperHelper from './wrapper.helper';
|
|
9
9
|
|
|
10
|
-
import { AjaxStore, AjaxStoreConfig, Base, Color, Container, DomConfig, FormulaProviderConfig, InstancePlugin, 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, TooltipConfig, Widget } from '@bryntum/core-thin';
|
|
10
|
+
import { AjaxStore, AjaxStoreConfig, Base, Color, Container, DomConfig, FormulaProviderConfig, InstancePlugin, KeyMapConfig, Mask, MaskConfig, Menu, MenuItem, MenuItemEntry, Model, ModelConfig, OverflowTwinConfig, PagingToolbarConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Widget } from '@bryntum/core-thin';
|
|
11
11
|
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';
|
|
12
12
|
|
|
13
13
|
import { DomHelper, StringHelper } from '@bryntum/core-thin';
|
|
@@ -456,6 +456,12 @@ export type BryntumGridProps = {
|
|
|
456
456
|
* Grid monitors window resize by default.
|
|
457
457
|
*/
|
|
458
458
|
monitorResize ? : boolean
|
|
459
|
+
/**
|
|
460
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
461
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
462
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-overflowTwinConfig)
|
|
463
|
+
*/
|
|
464
|
+
overflowTwinConfig ? : OverflowTwinConfig|null
|
|
459
465
|
/**
|
|
460
466
|
* Specify plugins (an array of classes) in config
|
|
461
467
|
*/
|
|
@@ -606,7 +612,7 @@ export type BryntumGridProps = {
|
|
|
606
612
|
* (if explicitly specified) will be used as the `stateId`.
|
|
607
613
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-stateId)
|
|
608
614
|
*/
|
|
609
|
-
stateId ? : string
|
|
615
|
+
stateId ? : string|null
|
|
610
616
|
/**
|
|
611
617
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
612
618
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -1232,6 +1238,7 @@ export class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1232
1238
|
'minHeight',
|
|
1233
1239
|
'minWidth',
|
|
1234
1240
|
'monitorResize',
|
|
1241
|
+
'overflowTwinConfig',
|
|
1235
1242
|
'plugins',
|
|
1236
1243
|
'preserveFocusOnDatasetChange',
|
|
1237
1244
|
'preserveScroll',
|
|
@@ -1323,6 +1330,7 @@ export class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1323
1330
|
'maskDefaults',
|
|
1324
1331
|
'masked',
|
|
1325
1332
|
'monitorResize',
|
|
1333
|
+
'overflowTwinConfig',
|
|
1326
1334
|
'plugins',
|
|
1327
1335
|
'preserveFocusOnDatasetChange',
|
|
1328
1336
|
'preserveScrollOnDatasetChange',
|
|
@@ -1339,7 +1347,6 @@ export class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1339
1347
|
'showDirty',
|
|
1340
1348
|
'stateful',
|
|
1341
1349
|
'statefulEvents',
|
|
1342
|
-
'stateId',
|
|
1343
1350
|
'stateProvider',
|
|
1344
1351
|
'strips',
|
|
1345
1352
|
'subGridConfigs',
|
|
@@ -1406,6 +1413,7 @@ export class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1406
1413
|
'selectionMode',
|
|
1407
1414
|
'span',
|
|
1408
1415
|
'state',
|
|
1416
|
+
'stateId',
|
|
1409
1417
|
'stateSettings',
|
|
1410
1418
|
'store',
|
|
1411
1419
|
'title',
|
|
@@ -1478,6 +1486,7 @@ export class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1478
1486
|
@Input() maskDefaults ! : MaskConfig;
|
|
1479
1487
|
@Input() masked ! : boolean|string|MaskConfig;
|
|
1480
1488
|
@Input() monitorResize ! : boolean;
|
|
1489
|
+
@Input() overflowTwinConfig ! : OverflowTwinConfig|null;
|
|
1481
1490
|
@Input() plugins ! : InstancePlugin[]|InstancePlugin;
|
|
1482
1491
|
@Input() preserveFocusOnDatasetChange ! : boolean;
|
|
1483
1492
|
@Input() preserveScrollOnDatasetChange ! : boolean;
|
|
@@ -1494,7 +1503,6 @@ export class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1494
1503
|
@Input() showDirty ! : boolean|{ duringEdit: boolean, newRecord: boolean };
|
|
1495
1504
|
@Input() stateful ! : boolean|object|string[];
|
|
1496
1505
|
@Input() statefulEvents ! : object|string[];
|
|
1497
|
-
@Input() stateId ! : string;
|
|
1498
1506
|
@Input() stateProvider ! : StateProvider;
|
|
1499
1507
|
@Input() strips ! : Record<string, GridContainerItemConfig>;
|
|
1500
1508
|
@Input() subGridConfigs ! : Record<string, SubGridConfig>;
|
|
@@ -1551,6 +1559,7 @@ export class BryntumGridComponent implements OnInit, OnDestroy {
|
|
|
1551
1559
|
@Input() scrollable ! : Scroller|boolean|ScrollerConfig;
|
|
1552
1560
|
@Input() selectionMode ! : GridSelectionMode;
|
|
1553
1561
|
@Input() span ! : number;
|
|
1562
|
+
@Input() stateId ! : string|null;
|
|
1554
1563
|
@Input() stateSettings ! : {
|
|
1555
1564
|
restoreUnconfiguredColumns?: boolean
|
|
1556
1565
|
};
|
|
@@ -7,7 +7,7 @@ import { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, Simpl
|
|
|
7
7
|
|
|
8
8
|
import WrapperHelper from './wrapper.helper';
|
|
9
9
|
|
|
10
|
-
import { AlignSpec, Base, Collection, CollectionConfig, Color, DomConfig, KeyMapConfig, List, MaskConfig, Model, ModelConfig, ReactJSX, Rectangle, Scroller, ScrollerConfig, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
10
|
+
import { AlignSpec, Base, Collection, CollectionConfig, Color, DomConfig, KeyMapConfig, List, MaskConfig, Model, ModelConfig, OverflowTwinConfig, ReactJSX, Rectangle, Scroller, ScrollerConfig, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
11
11
|
import { GroupBar, GroupBarListeners } from '@bryntum/grid-thin';
|
|
12
12
|
|
|
13
13
|
import { DomHelper, StringHelper } from '@bryntum/core-thin';
|
|
@@ -396,6 +396,12 @@ export type BryntumGroupBarProps = {
|
|
|
396
396
|
* Configure as `true` to allow multi select and allow clicking and key navigation to select multiple chips.
|
|
397
397
|
*/
|
|
398
398
|
multiSelect ? : boolean
|
|
399
|
+
/**
|
|
400
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
401
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
402
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-overflowTwinConfig)
|
|
403
|
+
*/
|
|
404
|
+
overflowTwinConfig ? : OverflowTwinConfig|null
|
|
399
405
|
/**
|
|
400
406
|
* Set to `true` when a widget is rendered into another widget's [contentElement](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-contentElement), but must
|
|
401
407
|
* not participate in the standard layout of that widget, and must be positioned relatively to that
|
|
@@ -663,6 +669,7 @@ export class BryntumGroupBarComponent implements OnInit, OnDestroy {
|
|
|
663
669
|
'minWidth',
|
|
664
670
|
'monitorResize',
|
|
665
671
|
'multiSelect',
|
|
672
|
+
'overflowTwinConfig',
|
|
666
673
|
'positioned',
|
|
667
674
|
'preventTooltipOnTouch',
|
|
668
675
|
'readOnly',
|
|
@@ -733,6 +740,7 @@ export class BryntumGroupBarComponent implements OnInit, OnDestroy {
|
|
|
733
740
|
'maskDefaults',
|
|
734
741
|
'masked',
|
|
735
742
|
'monitorResize',
|
|
743
|
+
'overflowTwinConfig',
|
|
736
744
|
'positioned',
|
|
737
745
|
'preventTooltipOnTouch',
|
|
738
746
|
'relayStoreEvents',
|
|
@@ -854,6 +862,7 @@ export class BryntumGroupBarComponent implements OnInit, OnDestroy {
|
|
|
854
862
|
@Input() maskDefaults ! : MaskConfig;
|
|
855
863
|
@Input() masked ! : boolean|string|MaskConfig;
|
|
856
864
|
@Input() monitorResize ! : boolean|object;
|
|
865
|
+
@Input() overflowTwinConfig ! : OverflowTwinConfig|null;
|
|
857
866
|
@Input() positioned ! : boolean;
|
|
858
867
|
@Input() preventTooltipOnTouch ! : boolean;
|
|
859
868
|
@Input() relayStoreEvents ! : boolean;
|
|
@@ -7,7 +7,7 @@ import { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, Simpl
|
|
|
7
7
|
|
|
8
8
|
import WrapperHelper from './wrapper.helper';
|
|
9
9
|
|
|
10
|
-
import { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Color, Combo, DomConfig, Duration, DurationConfig, Field, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, List, ListConfig, MaskConfig, Model, ReactJSX, Rectangle, Scroller, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
10
|
+
import { AlignSpec, Base, ChipViewConfig, CollectionCompareOperator, CollectionFilterConfig, Color, Combo, DomConfig, Duration, DurationConfig, Field, FieldContainerConfig, FieldTriggerConfig, KeyMapConfig, List, ListConfig, MaskConfig, Model, OverflowTwinConfig, ReactJSX, Rectangle, Scroller, Store, StoreConfig, TabConfig, TooltipConfig, VueConfig, Widget } from '@bryntum/core-thin';
|
|
11
11
|
import { GridContainerItemConfig, TreeCombo, TreeComboListeners } from '@bryntum/grid-thin';
|
|
12
12
|
|
|
13
13
|
import { DomHelper, StringHelper } from '@bryntum/core-thin';
|
|
@@ -124,6 +124,7 @@ export type BryntumTreeComboProps = {
|
|
|
124
124
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
125
125
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
126
126
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
127
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-clearable)
|
|
127
128
|
*/
|
|
128
129
|
clearable ? : boolean|FieldTriggerConfig
|
|
129
130
|
/**
|
|
@@ -581,6 +582,12 @@ export type BryntumTreeComboProps = {
|
|
|
581
582
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-name)
|
|
582
583
|
*/
|
|
583
584
|
name ? : string
|
|
585
|
+
/**
|
|
586
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
587
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
588
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-overflowTwinConfig)
|
|
589
|
+
*/
|
|
590
|
+
overflowTwinConfig ? : OverflowTwinConfig|null
|
|
584
591
|
/**
|
|
585
592
|
* This implies that the picker will display an anchor pointer, but also means that the picker will align closer
|
|
586
593
|
* to the input field so that the pointer pierces the [pickerAlignElement](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-pickerAlignElement)
|
|
@@ -940,6 +947,7 @@ export class BryntumTreeComboComponent implements OnInit, OnDestroy {
|
|
|
940
947
|
'multiSelect',
|
|
941
948
|
'multiValueSeparator',
|
|
942
949
|
'name',
|
|
950
|
+
'overflowTwinConfig',
|
|
943
951
|
'overlayAnchor',
|
|
944
952
|
'picker',
|
|
945
953
|
'pickerAlignElement',
|
|
@@ -1058,6 +1066,7 @@ export class BryntumTreeComboComponent implements OnInit, OnDestroy {
|
|
|
1058
1066
|
'monitorResize',
|
|
1059
1067
|
'multiValueSeparator',
|
|
1060
1068
|
'name',
|
|
1069
|
+
'overflowTwinConfig',
|
|
1061
1070
|
'overlayAnchor',
|
|
1062
1071
|
'pickerAlignElement',
|
|
1063
1072
|
'pickerWidth',
|
|
@@ -1229,6 +1238,7 @@ export class BryntumTreeComboComponent implements OnInit, OnDestroy {
|
|
|
1229
1238
|
@Input() monitorResize ! : boolean|object;
|
|
1230
1239
|
@Input() multiValueSeparator ! : string;
|
|
1231
1240
|
@Input() name ! : string;
|
|
1241
|
+
@Input() overflowTwinConfig ! : OverflowTwinConfig|null;
|
|
1232
1242
|
@Input() overlayAnchor ! : boolean;
|
|
1233
1243
|
@Input() pickerAlignElement ! : string;
|
|
1234
1244
|
@Input() pickerWidth ! : number|string;
|
|
@@ -7,7 +7,7 @@ import { Component, ElementRef, EventEmitter, Output, Input, SimpleChange, Simpl
|
|
|
7
7
|
|
|
8
8
|
import WrapperHelper from './wrapper.helper';
|
|
9
9
|
|
|
10
|
-
import { AjaxStore, AjaxStoreConfig, Base, Color, Container, DomConfig, FormulaProviderConfig, InstancePlugin, 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, TooltipConfig, Widget } from '@bryntum/core-thin';
|
|
10
|
+
import { AjaxStore, AjaxStoreConfig, Base, Color, Container, DomConfig, FormulaProviderConfig, InstancePlugin, KeyMapConfig, Mask, MaskConfig, Menu, MenuItem, MenuItemEntry, Model, ModelConfig, OverflowTwinConfig, PagingToolbarConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, StateProvider, Store, StoreConfig, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Widget } from '@bryntum/core-thin';
|
|
11
11
|
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, 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, TreeGrid, TreeGridListeners, TreeGroup, TreeGroupConfig, XLSColumn } from '@bryntum/grid-thin';
|
|
12
12
|
|
|
13
13
|
import { DomHelper, StringHelper } from '@bryntum/core-thin';
|
|
@@ -456,6 +456,12 @@ export type BryntumTreeGridProps = {
|
|
|
456
456
|
* Grid monitors window resize by default.
|
|
457
457
|
*/
|
|
458
458
|
monitorResize ? : boolean
|
|
459
|
+
/**
|
|
460
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
461
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
462
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-overflowTwinConfig)
|
|
463
|
+
*/
|
|
464
|
+
overflowTwinConfig ? : OverflowTwinConfig|null
|
|
459
465
|
/**
|
|
460
466
|
* Specify plugins (an array of classes) in config
|
|
461
467
|
*/
|
|
@@ -606,7 +612,7 @@ export type BryntumTreeGridProps = {
|
|
|
606
612
|
* (if explicitly specified) will be used as the `stateId`.
|
|
607
613
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-stateId)
|
|
608
614
|
*/
|
|
609
|
-
stateId ? : string
|
|
615
|
+
stateId ? : string|null
|
|
610
616
|
/**
|
|
611
617
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
612
618
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -1232,6 +1238,7 @@ export class BryntumTreeGridComponent implements OnInit, OnDestroy {
|
|
|
1232
1238
|
'minHeight',
|
|
1233
1239
|
'minWidth',
|
|
1234
1240
|
'monitorResize',
|
|
1241
|
+
'overflowTwinConfig',
|
|
1235
1242
|
'plugins',
|
|
1236
1243
|
'preserveFocusOnDatasetChange',
|
|
1237
1244
|
'preserveScroll',
|
|
@@ -1323,6 +1330,7 @@ export class BryntumTreeGridComponent implements OnInit, OnDestroy {
|
|
|
1323
1330
|
'maskDefaults',
|
|
1324
1331
|
'masked',
|
|
1325
1332
|
'monitorResize',
|
|
1333
|
+
'overflowTwinConfig',
|
|
1326
1334
|
'plugins',
|
|
1327
1335
|
'preserveFocusOnDatasetChange',
|
|
1328
1336
|
'preserveScrollOnDatasetChange',
|
|
@@ -1339,7 +1347,6 @@ export class BryntumTreeGridComponent implements OnInit, OnDestroy {
|
|
|
1339
1347
|
'showDirty',
|
|
1340
1348
|
'stateful',
|
|
1341
1349
|
'statefulEvents',
|
|
1342
|
-
'stateId',
|
|
1343
1350
|
'stateProvider',
|
|
1344
1351
|
'strips',
|
|
1345
1352
|
'subGridConfigs',
|
|
@@ -1406,6 +1413,7 @@ export class BryntumTreeGridComponent implements OnInit, OnDestroy {
|
|
|
1406
1413
|
'selectionMode',
|
|
1407
1414
|
'span',
|
|
1408
1415
|
'state',
|
|
1416
|
+
'stateId',
|
|
1409
1417
|
'stateSettings',
|
|
1410
1418
|
'store',
|
|
1411
1419
|
'title',
|
|
@@ -1478,6 +1486,7 @@ export class BryntumTreeGridComponent implements OnInit, OnDestroy {
|
|
|
1478
1486
|
@Input() maskDefaults ! : MaskConfig;
|
|
1479
1487
|
@Input() masked ! : boolean|string|MaskConfig;
|
|
1480
1488
|
@Input() monitorResize ! : boolean;
|
|
1489
|
+
@Input() overflowTwinConfig ! : OverflowTwinConfig|null;
|
|
1481
1490
|
@Input() plugins ! : InstancePlugin[]|InstancePlugin;
|
|
1482
1491
|
@Input() preserveFocusOnDatasetChange ! : boolean;
|
|
1483
1492
|
@Input() preserveScrollOnDatasetChange ! : boolean;
|
|
@@ -1494,7 +1503,6 @@ export class BryntumTreeGridComponent implements OnInit, OnDestroy {
|
|
|
1494
1503
|
@Input() showDirty ! : boolean|{ duringEdit: boolean, newRecord: boolean };
|
|
1495
1504
|
@Input() stateful ! : boolean|object|string[];
|
|
1496
1505
|
@Input() statefulEvents ! : object|string[];
|
|
1497
|
-
@Input() stateId ! : string;
|
|
1498
1506
|
@Input() stateProvider ! : StateProvider;
|
|
1499
1507
|
@Input() strips ! : Record<string, GridContainerItemConfig>;
|
|
1500
1508
|
@Input() subGridConfigs ! : Record<string, SubGridConfig>;
|
|
@@ -1551,6 +1559,7 @@ export class BryntumTreeGridComponent implements OnInit, OnDestroy {
|
|
|
1551
1559
|
@Input() scrollable ! : Scroller|boolean|ScrollerConfig;
|
|
1552
1560
|
@Input() selectionMode ! : GridSelectionMode;
|
|
1553
1561
|
@Input() span ! : number;
|
|
1562
|
+
@Input() stateId ! : string|null;
|
|
1554
1563
|
@Input() stateSettings ! : {
|
|
1555
1564
|
restoreUnconfiguredColumns?: boolean
|
|
1556
1565
|
};
|