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.
- package/dist/js/index.development.js +125 -16
- package/dist/js/index.js +17 -17
- package/dist/types/Reports/Pages/CDM/ControlDisplay.d.ts +1 -0
- package/dist/types/Reports/Pages/CDM/Display/EditingManager/InlineEditingManager.d.ts +3 -0
- package/dist/types/Utils/PromiseQueue.d.ts +4 -1
- package/package.json +1 -1
|
@@ -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?:
|
|
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
|
}
|