iszolea-ui 1.2.85 → 1.2.86

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.
@@ -82,6 +82,7 @@ export declare class ControlDisplay {
82
82
  private changePreviewImageSizeHandler;
83
83
  private deleteDocumentHandler;
84
84
  private reorderImagesHandler;
85
+ private isActiveDocumentRowNew;
85
86
  private hasPermission;
86
87
  private buildTree;
87
88
  private renderDisplayType;
@@ -3,6 +3,7 @@ export default class InlineEditingManager extends EditingManagerBase {
3
3
  private readonly editValidationTracker;
4
4
  private readonly requestQueue;
5
5
  private pendingInsertPromise;
6
+ private keyExpr;
6
7
  constructor(gridGetter: () => DevExpress.ui.dxDataGrid, batchUpdateUrl: string, $savingIndicator: JQuery);
7
8
  private setupRequestQueue;
8
9
  protected privateContructor(): void;
@@ -10,4 +11,6 @@ export default class InlineEditingManager extends EditingManagerBase {
10
11
  getServiceColumns(): DevExpress.ui.dxDataGridColumn[];
11
12
  getRowUpdatingHandler(): DevExpress.ui.dxDataGrid.Properties['onRowUpdating'];
12
13
  dataRowCellPrepared(key: any, dataField: string, cellElement: DevExpress.core.ElementWrapper<HTMLElement>): void;
14
+ private getRequestKey;
15
+ private getGridKey;
13
16
  }
@@ -1,9 +1,10 @@
1
1
  import { EventEmitter } from './EventEmitter';
2
2
  export interface IDataChange {
3
3
  type: 'update' | 'insert' | 'remove';
4
- key?: string;
4
+ key?: any;
5
5
  data?: string;
6
6
  isSeparatedRequest?: boolean;
7
+ gridKey?: any;
7
8
  }
8
9
  export declare enum RequestStatus {
9
10
  PENDING = 0,
@@ -32,4 +33,6 @@ export declare class UpdateRequestQueue extends EventEmitter {
32
33
  constructor(updateUrl: string);
33
34
  push(change: IDataChange, separatedRequest?: boolean): void;
34
35
  private sendRequest;
36
+ private attachGridKey;
37
+ private areKeysEqual;
35
38
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iszolea-ui",
3
- "version": "1.2.85",
3
+ "version": "1.2.86",
4
4
  "description": "Common scripts and styles for Iszolea projects",
5
5
  "main": "dist/js/index.js",
6
6
  "types": "dist/types/index.d.ts",