iszolea-ui 1.2.84 → 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 +198 -85
- package/dist/js/index.js +19 -19
- package/dist/types/Reports/Pages/CDM/ControlDisplay.d.ts +4 -2
- 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
|
@@ -72,16 +72,18 @@ export declare class ControlDisplay {
|
|
|
72
72
|
private readonly loadPanel;
|
|
73
73
|
private readonly getReferencedDataUrl;
|
|
74
74
|
private readonly asyncSummaryLoad;
|
|
75
|
+
private fieldRefDataDict;
|
|
75
76
|
constructor(options: IControlDisplayOptions);
|
|
76
77
|
private readonly tryParseJson;
|
|
77
78
|
private showLoader;
|
|
78
79
|
private hideLoader;
|
|
79
|
-
render(): void
|
|
80
|
+
render(): Promise<void>;
|
|
80
81
|
private uploadAndUpdateDocuments;
|
|
81
82
|
private changePreviewImageSizeHandler;
|
|
82
83
|
private deleteDocumentHandler;
|
|
83
84
|
private reorderImagesHandler;
|
|
84
|
-
private
|
|
85
|
+
private isActiveDocumentRowNew;
|
|
86
|
+
private hasPermission;
|
|
85
87
|
private buildTree;
|
|
86
88
|
private renderDisplayType;
|
|
87
89
|
private configureColumn;
|
|
@@ -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
|
}
|