@revolist/revogrid 3.2.10 → 3.2.13

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.
@@ -150,6 +150,7 @@ export declare class RevoGridComponent {
150
150
  */
151
151
  afterfocus: EventEmitter<{
152
152
  model: any;
153
+ column: RevoGrid.ColumnRegular;
153
154
  }>;
154
155
  /**
155
156
  * Before rgRow order apply.
@@ -1,15 +1,17 @@
1
1
  import { EventEmitter } from '../../stencil-public-runtime';
2
2
  import { Observable, RevoGrid, Selection } from '../../interfaces';
3
- import { RowSource } from '../data/columnService';
3
+ import { ColumnSource, RowSource } from '../data/columnService';
4
4
  export declare class RevogrFocus {
5
5
  el: HTMLElement;
6
6
  /** Dynamic stores */
7
7
  dataStore: RowSource;
8
+ colData: ColumnSource;
8
9
  selectionStore: Observable<Selection.SelectionStoreState>;
9
10
  dimensionRow: Observable<RevoGrid.DimensionSettingsState>;
10
11
  dimensionCol: Observable<RevoGrid.DimensionSettingsState>;
11
12
  afterFocus: EventEmitter<{
12
13
  model: any;
14
+ column: RevoGrid.ColumnRegular;
13
15
  }>;
14
16
  private changed;
15
17
  componentDidRender(): void;
@@ -251,6 +251,7 @@ export namespace Components {
251
251
  "uuid": string;
252
252
  }
253
253
  interface RevogrFocus {
254
+ "colData": ColumnSource;
254
255
  /**
255
256
  * Dynamic stores
256
257
  */
@@ -554,7 +555,7 @@ declare namespace LocalJSX {
554
555
  /**
555
556
  * Triggered after focus render finished. Can be used to access a focus element through @event.target
556
557
  */
557
- "onAfterfocus"?: (event: RevoGridCustomEvent<{ model: any; }>) => void;
558
+ "onAfterfocus"?: (event: RevoGridCustomEvent<{ model: any; column: RevoGrid.ColumnRegular; }>) => void;
558
559
  /**
559
560
  * After rows updated
560
561
  */
@@ -767,6 +768,7 @@ declare namespace LocalJSX {
767
768
  "uuid"?: string;
768
769
  }
769
770
  interface RevogrFocus {
771
+ "colData": ColumnSource;
770
772
  /**
771
773
  * Dynamic stores
772
774
  */
@@ -775,6 +777,7 @@ declare namespace LocalJSX {
775
777
  "dimensionRow": Observable<RevoGrid.DimensionSettingsState>;
776
778
  "onAfterfocus"?: (event: RevogrFocusCustomEvent<{
777
779
  model: any;
780
+ column: RevoGrid.ColumnRegular;
778
781
  }>) => void;
779
782
  "selectionStore": Observable<Selection.SelectionStoreState>;
780
783
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revolist/revogrid",
3
- "version": "3.2.10",
3
+ "version": "3.2.13",
4
4
  "description": "Virtual reactive data grid component - RevoGrid.",
5
5
  "license": "MIT",
6
6
  "directories": {