@bryntum/grid-angular-thin 7.3.5 → 7.3.6

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.
@@ -64,7 +64,7 @@ export type BryntumGridFieldFilterPickerProps = {
64
64
  */
65
65
  ariaLabel ? : string
66
66
  /**
67
- * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes
67
+ * Update assigned [record](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-record) automatically on field changes.
68
68
  */
69
69
  autoUpdateRecord ? : boolean
70
70
  /**
@@ -764,7 +764,6 @@ export class BryntumGridFieldFilterPickerComponent implements OnInit, OnDestroy
764
764
  'anchor',
765
765
  'ariaDescription',
766
766
  'ariaLabel',
767
- 'autoUpdateRecord',
768
767
  'border',
769
768
  'bubbleEvents',
770
769
  'color',
@@ -830,6 +829,7 @@ export class BryntumGridFieldFilterPickerComponent implements OnInit, OnDestroy
830
829
  private static bryntumProps: string[] = BryntumGridFieldFilterPickerComponent.bryntumFeatureNames.concat([
831
830
  'alignSelf',
832
831
  'appendTo',
832
+ 'autoUpdateRecord',
833
833
  'callOnFunctions',
834
834
  'catchEventHandlerExceptions',
835
835
  'centered',
@@ -897,7 +897,6 @@ export class BryntumGridFieldFilterPickerComponent implements OnInit, OnDestroy
897
897
  @Input() anchor ! : boolean;
898
898
  @Input() ariaDescription ! : string;
899
899
  @Input() ariaLabel ! : string;
900
- @Input() autoUpdateRecord ! : boolean;
901
900
  @Input() border ! : boolean;
902
901
  @Input() bubbleEvents ! : object;
903
902
  @Input() color ! : Color;
@@ -962,6 +961,7 @@ export class BryntumGridFieldFilterPickerComponent implements OnInit, OnDestroy
962
961
  // Configs and properties
963
962
  @Input() alignSelf ! : string;
964
963
  @Input() appendTo ! : HTMLElement|string;
964
+ @Input() autoUpdateRecord ! : boolean;
965
965
  @Input() callOnFunctions ! : boolean;
966
966
  @Input() catchEventHandlerExceptions ! : boolean;
967
967
  @Input() centered ! : boolean|{
@@ -1076,6 +1076,8 @@ export class BryntumGridComponent implements OnInit, OnDestroy {
1076
1076
  'onHeaderMenuShow',
1077
1077
  'onHeaderMenuToggleItem',
1078
1078
  'onHide',
1079
+ 'onHorizontalScroll',
1080
+ 'onHorizontalScrollEnd',
1079
1081
  'onLockRows',
1080
1082
  'onMouseOut',
1081
1083
  'onMouseOver',
@@ -1363,6 +1365,7 @@ export class BryntumGridComponent implements OnInit, OnDestroy {
1363
1365
  'alignSelf',
1364
1366
  'animateTreeNodeToggle',
1365
1367
  'appendTo',
1368
+ 'autoUpdateRecord',
1366
1369
  'callOnFunctions',
1367
1370
  'catchEventHandlerExceptions',
1368
1371
  'cellEllipsis',
@@ -1580,18 +1583,19 @@ export class BryntumGridComponent implements OnInit, OnDestroy {
1580
1583
  @Input() width ! : number|string;
1581
1584
 
1582
1585
  // Properties only
1583
- @Input() centered ! : boolean|{
1586
+ @Input() autoUpdateRecord ! : boolean;
1587
+ @Input() centered ! : boolean|{
1584
1588
  once?: boolean
1585
1589
  };
1586
- @Input() originalStore ! : Store;
1587
- @Input() parent ! : Widget;
1588
- @Input() selectedCell ! : GridLocation|GridLocationConfig;
1589
- @Input() selectedCells ! : GridLocation[]|GridLocationConfig[];
1590
- @Input() selectedRecord ! : Model;
1591
- @Input() selectedRecords ! : Model[]|number[];
1592
- @Input() selectedRows ! : Model[]|number[];
1593
- @Input() state ! : GridStateInfo;
1594
- @Input() tooltip ! : string|TooltipConfig;
1590
+ @Input() originalStore ! : Store;
1591
+ @Input() parent ! : Widget;
1592
+ @Input() selectedCell ! : GridLocation|GridLocationConfig;
1593
+ @Input() selectedCells ! : GridLocation[]|GridLocationConfig[];
1594
+ @Input() selectedRecord ! : Model;
1595
+ @Input() selectedRecords ! : Model[]|number[];
1596
+ @Input() selectedRows ! : Model[]|number[];
1597
+ @Input() state ! : GridStateInfo;
1598
+ @Input() tooltip ! : string|TooltipConfig;
1595
1599
 
1596
1600
  // Features
1597
1601
  @Input() aiFeature ! : object|boolean|string|AI|AIConfig;
@@ -2371,6 +2375,23 @@ export class BryntumGridComponent implements OnInit, OnDestroy {
2371
2375
  * @param {Core.widget.Widget} event.source The widget
2372
2376
  */
2373
2377
  @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();
2378
+ /**
2379
+ * Fires when the Grid is scrolling horizontally in one of its SubGrids.
2380
+ * @param {object} event Event object
2381
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
2382
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
2383
+ * @param {number} event.scrollLeft The horizontal scroll position
2384
+ * @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
2385
+ */
2386
+ @Output() onHorizontalScroll: any = new EventEmitter<((event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void)|string>();
2387
+ /**
2388
+ * Fires after the Grid is done scrolling horizontally in one of its SubGrids.
2389
+ * @param {object} event Event object
2390
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
2391
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
2392
+ * @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
2393
+ */
2394
+ @Output() onHorizontalScrollEnd: any = new EventEmitter<((event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void)|string>();
2374
2395
  /**
2375
2396
  * Fires when row locking is enabled.
2376
2397
  * @param {object} event Event object
@@ -1076,6 +1076,8 @@ export class BryntumTreeGridComponent implements OnInit, OnDestroy {
1076
1076
  'onHeaderMenuShow',
1077
1077
  'onHeaderMenuToggleItem',
1078
1078
  'onHide',
1079
+ 'onHorizontalScroll',
1080
+ 'onHorizontalScrollEnd',
1079
1081
  'onLockRows',
1080
1082
  'onMouseOut',
1081
1083
  'onMouseOver',
@@ -1363,6 +1365,7 @@ export class BryntumTreeGridComponent implements OnInit, OnDestroy {
1363
1365
  'alignSelf',
1364
1366
  'animateTreeNodeToggle',
1365
1367
  'appendTo',
1368
+ 'autoUpdateRecord',
1366
1369
  'callOnFunctions',
1367
1370
  'catchEventHandlerExceptions',
1368
1371
  'cellEllipsis',
@@ -1580,18 +1583,19 @@ export class BryntumTreeGridComponent implements OnInit, OnDestroy {
1580
1583
  @Input() width ! : number|string;
1581
1584
 
1582
1585
  // Properties only
1583
- @Input() centered ! : boolean|{
1586
+ @Input() autoUpdateRecord ! : boolean;
1587
+ @Input() centered ! : boolean|{
1584
1588
  once?: boolean
1585
1589
  };
1586
- @Input() originalStore ! : Store;
1587
- @Input() parent ! : Widget;
1588
- @Input() selectedCell ! : GridLocation|GridLocationConfig;
1589
- @Input() selectedCells ! : GridLocation[]|GridLocationConfig[];
1590
- @Input() selectedRecord ! : Model;
1591
- @Input() selectedRecords ! : Model[]|number[];
1592
- @Input() selectedRows ! : Model[]|number[];
1593
- @Input() state ! : GridStateInfo;
1594
- @Input() tooltip ! : string|TooltipConfig;
1590
+ @Input() originalStore ! : Store;
1591
+ @Input() parent ! : Widget;
1592
+ @Input() selectedCell ! : GridLocation|GridLocationConfig;
1593
+ @Input() selectedCells ! : GridLocation[]|GridLocationConfig[];
1594
+ @Input() selectedRecord ! : Model;
1595
+ @Input() selectedRecords ! : Model[]|number[];
1596
+ @Input() selectedRows ! : Model[]|number[];
1597
+ @Input() state ! : GridStateInfo;
1598
+ @Input() tooltip ! : string|TooltipConfig;
1595
1599
 
1596
1600
  // Features
1597
1601
  @Input() aiFeature ! : object|boolean|string|AI|AIConfig;
@@ -2371,6 +2375,23 @@ export class BryntumTreeGridComponent implements OnInit, OnDestroy {
2371
2375
  * @param {Core.widget.Widget} event.source The widget
2372
2376
  */
2373
2377
  @Output() onHide: any = new EventEmitter<((event: { source: Widget }) => void)|string>();
2378
+ /**
2379
+ * Fires when the Grid is scrolling horizontally in one of its SubGrids.
2380
+ * @param {object} event Event object
2381
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
2382
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
2383
+ * @param {number} event.scrollLeft The horizontal scroll position
2384
+ * @param {number} event.scrollX The horizontal scroll position in the RTL-safe coordinate system
2385
+ */
2386
+ @Output() onHorizontalScroll: any = new EventEmitter<((event: { source: GridBase, subGrid: SubGrid, scrollLeft: number, scrollX: number }) => void)|string>();
2387
+ /**
2388
+ * Fires after the Grid is done scrolling horizontally in one of its SubGrids.
2389
+ * @param {object} event Event object
2390
+ * @param {Grid.view.GridBase} event.source The firing Grid instance
2391
+ * @param {Grid.view.SubGrid} event.subGrid The scrolling SubGrid instance
2392
+ * @param {number} [event.scrollLeft] The horizontal scroll position. Only supplied when the event follows a SubGrid resize, the scroll driven path does not report a position
2393
+ */
2394
+ @Output() onHorizontalScrollEnd: any = new EventEmitter<((event: { source: GridBase, subGrid: SubGrid, scrollLeft?: number }) => void)|string>();
2374
2395
  /**
2375
2396
  * Fires when row locking is enabled.
2376
2397
  * @param {object} event Event object