@eo-sdk/client 7.16.10 → 7.16.11
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/app/eo-framework-core/api/plugins.service.d.ts +3 -2
- package/bundles/eo-sdk-client.umd.js +11 -4
- package/bundles/eo-sdk-client.umd.js.map +1 -1
- package/bundles/eo-sdk-client.umd.min.js +1 -1
- package/bundles/eo-sdk-client.umd.min.js.map +1 -1
- package/eo-sdk-client.metadata.json +1 -1
- package/esm2015/app/eo-client/about-state/about-state.component.js +3 -3
- package/esm2015/app/eo-framework/object-form/object-form/object-form.component.js +2 -2
- package/esm2015/app/eo-framework-core/api/plugins.service.js +10 -3
- package/fesm2015/eo-sdk-client.js +12 -5
- package/fesm2015/eo-sdk-client.js.map +1 -1
- package/package.json +2 -2
- package/projects/eo-sdk/core/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { NgZone } from '@angular/core';
|
|
1
|
+
import { ApplicationRef, NgZone } from '@angular/core';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { AgentService } from '../agent/agent.service';
|
|
4
4
|
import { EoUser, Logger, NotificationsService, BackendService, ClipboardService, DmsService, EventService, UserService, DmsObject, TranslateService, HttpOptions } from '@eo-sdk/core';
|
|
@@ -14,13 +14,14 @@ export declare class PluginsService {
|
|
|
14
14
|
private agentService;
|
|
15
15
|
private eventService;
|
|
16
16
|
private userService;
|
|
17
|
+
private appRef;
|
|
17
18
|
private ngZone;
|
|
18
19
|
private user;
|
|
19
20
|
private agentAction;
|
|
20
21
|
get currentUrl(): string;
|
|
21
22
|
get api(): any;
|
|
22
23
|
applyFunction(value: string | Function | any, params?: string, args?: any): any;
|
|
23
|
-
constructor(backend: BackendService, notifications: NotificationsService, clipboard: ClipboardService, logger: Logger, translate: TranslateService, dmsService: DmsService, router: Router, agentService: AgentService, eventService: EventService, userService: UserService, ngZone: NgZone);
|
|
24
|
+
constructor(backend: BackendService, notifications: NotificationsService, clipboard: ClipboardService, logger: Logger, translate: TranslateService, dmsService: DmsService, router: Router, agentService: AgentService, eventService: EventService, userService: UserService, appRef: ApplicationRef, ngZone: NgZone);
|
|
24
25
|
getApi(): any;
|
|
25
26
|
getAgentAvailability(): Promise<string>;
|
|
26
27
|
executeAgentAction(action: any, args: any): void;
|
|
@@ -1152,7 +1152,7 @@
|
|
|
1152
1152
|
|
|
1153
1153
|
var UNDOCK_WINDOW_NAME = 'eoViewer';
|
|
1154
1154
|
var PluginsService = /** @class */ (function () {
|
|
1155
|
-
function PluginsService(backend, notifications, clipboard, logger, translate, dmsService, router, agentService, eventService, userService, ngZone) {
|
|
1155
|
+
function PluginsService(backend, notifications, clipboard, logger, translate, dmsService, router, agentService, eventService, userService, appRef, ngZone) {
|
|
1156
1156
|
var _this = this;
|
|
1157
1157
|
this.backend = backend;
|
|
1158
1158
|
this.notifications = notifications;
|
|
@@ -1164,6 +1164,7 @@
|
|
|
1164
1164
|
this.agentService = agentService;
|
|
1165
1165
|
this.eventService = eventService;
|
|
1166
1166
|
this.userService = userService;
|
|
1167
|
+
this.appRef = appRef;
|
|
1167
1168
|
this.ngZone = ngZone;
|
|
1168
1169
|
this.agentAction = {
|
|
1169
1170
|
OPEN: 'eo.agent.action.open',
|
|
@@ -1213,6 +1214,11 @@
|
|
|
1213
1214
|
PluginsService.prototype.getApi = function () {
|
|
1214
1215
|
var _this = this;
|
|
1215
1216
|
return {
|
|
1217
|
+
detectChanges: function () {
|
|
1218
|
+
setTimeout(function () {
|
|
1219
|
+
_this.appRef.tick();
|
|
1220
|
+
}, 500);
|
|
1221
|
+
},
|
|
1216
1222
|
router: {
|
|
1217
1223
|
get: function () { return _this.router; }
|
|
1218
1224
|
},
|
|
@@ -1424,6 +1430,7 @@
|
|
|
1424
1430
|
{ type: AgentService },
|
|
1425
1431
|
{ type: i1.EventService },
|
|
1426
1432
|
{ type: i1.UserService },
|
|
1433
|
+
{ type: i0.ApplicationRef },
|
|
1427
1434
|
{ type: i0.NgZone }
|
|
1428
1435
|
]; };
|
|
1429
1436
|
|
|
@@ -10589,7 +10596,7 @@
|
|
|
10589
10596
|
}
|
|
10590
10597
|
else {
|
|
10591
10598
|
if (element.type === 'DATETIME' && data[element.name]) {
|
|
10592
|
-
value = new Date(data[element.name] +
|
|
10599
|
+
value = new Date("" + data[element.name] + (element.withtime ? '' : 'T00:00:00'));
|
|
10593
10600
|
}
|
|
10594
10601
|
else {
|
|
10595
10602
|
value = data[element.name];
|
|
@@ -24184,10 +24191,10 @@
|
|
|
24184
24191
|
this.http = http;
|
|
24185
24192
|
this.userService = userService;
|
|
24186
24193
|
this.config = config;
|
|
24187
|
-
this.__libraries__ = [{ "name": "@ag-grid-community/angular", "version": "22.1.2", "license": "MIT" }, { "name": "@ag-grid-community/client-side-row-model", "version": "22.1.1", "license": "MIT" }, { "name": "@ag-grid-community/core", "version": "22.1.1", "license": "MIT" }, { "name": "@ag-grid-community/csv-export", "version": "22.1.1", "license": "MIT" }, { "name": "@angular/animations", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/cdk", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/common", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/compiler", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/core", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/forms", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/platform-browser", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/platform-browser-dynamic", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/router", "version": "11.2.0", "license": "MIT" }, { "name": "@eo-sdk/core", "version": "7.16.
|
|
24194
|
+
this.__libraries__ = [{ "name": "@ag-grid-community/angular", "version": "22.1.2", "license": "MIT" }, { "name": "@ag-grid-community/client-side-row-model", "version": "22.1.1", "license": "MIT" }, { "name": "@ag-grid-community/core", "version": "22.1.1", "license": "MIT" }, { "name": "@ag-grid-community/csv-export", "version": "22.1.1", "license": "MIT" }, { "name": "@angular/animations", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/cdk", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/common", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/compiler", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/core", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/forms", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/platform-browser", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/platform-browser-dynamic", "version": "11.2.0", "license": "MIT" }, { "name": "@angular/router", "version": "11.2.0", "license": "MIT" }, { "name": "@eo-sdk/core", "version": "7.16.11", "license": "MIT" }, { "name": "@ngx-pwa/local-storage", "version": "11.1.0", "license": "MIT" }, { "name": "@ngx-translate/core", "version": "13.0.0", "license": "MIT" }, { "name": "@types/lodash", "version": "4.14.88", "license": "MIT" }, { "name": "core-js", "version": "2.5.7", "license": "MIT" }, { "name": "file-saver", "version": "2.0.5", "license": "MIT" }, { "name": "font-awesome", "version": "4.7.0", "license": "(OFL-1.1 AND MIT)" }, { "name": "keyboardevent-key-polyfill", "version": "1.1.0", "license": "CC0-1.0" }, { "name": "keycode-js", "version": "0.0.4", "license": "MIT" }, { "name": "mobile-drag-drop", "version": "2.2.0", "license": "MIT" }, { "name": "moment", "version": "2.22.2", "license": "MIT" }, { "name": "ngx-toastr", "version": "13.2.0", "license": "MIT" }, { "name": "primeicons", "version": "1.0.0-beta.6", "license": "MIT" }, { "name": "primeng", "version": "6.0.0-beta.1", "license": "MIT" }, { "name": "reflect-metadata", "version": "0.1.10", "license": "Apache-2.0" }, { "name": "rxjs", "version": "6.6.3", "license": "Apache-2.0" }, { "name": "tslib", "version": "2.1.0", "license": "0BSD" }, { "name": "zone.js", "version": "0.10.3", "license": "MIT" }];
|
|
24188
24195
|
this.ctrl = {
|
|
24189
24196
|
productName: 'yuuvis® RAD client',
|
|
24190
|
-
clientVersion: '7.16.
|
|
24197
|
+
clientVersion: '7.16.11'
|
|
24191
24198
|
};
|
|
24192
24199
|
this.licenses = {
|
|
24193
24200
|
'MIT': {
|