@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 { Injectable, NgZone, Pipe, NgModule, EventEmitter, Injector, ɵɵdefineInjectable, ɵɵinject, ErrorHandler, Optional, SkipSelf, Component, Input, Output, ViewEncapsulation, ElementRef, Renderer2, Directive, HostListener, ChangeDetectionStrategy, ChangeDetectorRef, ViewChild, HostBinding, forwardRef, ViewChildren, ViewContainerRef, ContentChildren, ANALYZE_FOR_ENTRY_COMPONENTS, InjectionToken, Inject, ComponentFactoryResolver, ContentChild, QueryList } from '@angular/core';
|
|
1
|
+
import { Injectable, ApplicationRef, NgZone, Pipe, NgModule, EventEmitter, Injector, ɵɵdefineInjectable, ɵɵinject, ErrorHandler, Optional, SkipSelf, Component, Input, Output, ViewEncapsulation, ElementRef, Renderer2, Directive, HostListener, ChangeDetectionStrategy, ChangeDetectorRef, ViewChild, HostBinding, forwardRef, ViewChildren, ViewContainerRef, ContentChildren, ANALYZE_FOR_ENTRY_COMPONENTS, InjectionToken, Inject, ComponentFactoryResolver, ContentChild, QueryList } from '@angular/core';
|
|
2
2
|
import { DecimalPipe, PercentPipe, CurrencyPipe, DatePipe, getLocaleDateTimeFormat, FormatWidth, getLocaleTimeFormat, getLocaleDateFormat, CommonModule, Location, PlatformLocation } from '@angular/common';
|
|
3
3
|
import { HttpClient, HttpResponse, HttpErrorResponse, HttpClientModule, HTTP_INTERCEPTORS, HttpHeaders } from '@angular/common/http';
|
|
4
4
|
import { ReplaySubject, BehaviorSubject, from, forkJoin, of, Subject, fromEvent, AsyncSubject, Observable } from 'rxjs';
|
|
@@ -770,7 +770,7 @@ SelectionService.ctorParameters = () => [
|
|
|
770
770
|
|
|
771
771
|
const UNDOCK_WINDOW_NAME = 'eoViewer';
|
|
772
772
|
class PluginsService {
|
|
773
|
-
constructor(backend, notifications, clipboard, logger, translate, dmsService, router, agentService, eventService, userService, ngZone) {
|
|
773
|
+
constructor(backend, notifications, clipboard, logger, translate, dmsService, router, agentService, eventService, userService, appRef, ngZone) {
|
|
774
774
|
this.backend = backend;
|
|
775
775
|
this.notifications = notifications;
|
|
776
776
|
this.clipboard = clipboard;
|
|
@@ -781,6 +781,7 @@ class PluginsService {
|
|
|
781
781
|
this.agentService = agentService;
|
|
782
782
|
this.eventService = eventService;
|
|
783
783
|
this.userService = userService;
|
|
784
|
+
this.appRef = appRef;
|
|
784
785
|
this.ngZone = ngZone;
|
|
785
786
|
this.agentAction = {
|
|
786
787
|
OPEN: 'eo.agent.action.open',
|
|
@@ -821,6 +822,11 @@ class PluginsService {
|
|
|
821
822
|
// todo: create inreface for API
|
|
822
823
|
getApi() {
|
|
823
824
|
return {
|
|
825
|
+
detectChanges: () => {
|
|
826
|
+
setTimeout(() => {
|
|
827
|
+
this.appRef.tick();
|
|
828
|
+
}, 500);
|
|
829
|
+
},
|
|
824
830
|
router: {
|
|
825
831
|
get: () => this.router
|
|
826
832
|
},
|
|
@@ -1013,6 +1019,7 @@ PluginsService.ctorParameters = () => [
|
|
|
1013
1019
|
{ type: AgentService },
|
|
1014
1020
|
{ type: EventService },
|
|
1015
1021
|
{ type: UserService },
|
|
1022
|
+
{ type: ApplicationRef },
|
|
1016
1023
|
{ type: NgZone }
|
|
1017
1024
|
];
|
|
1018
1025
|
|
|
@@ -9431,7 +9438,7 @@ class ObjectFormComponent extends UnsubscribeOnDestroy {
|
|
|
9431
9438
|
}
|
|
9432
9439
|
else {
|
|
9433
9440
|
if (element.type === 'DATETIME' && data[element.name]) {
|
|
9434
|
-
value = new Date(`${data[element.name]}T00:00:00`);
|
|
9441
|
+
value = new Date(`${data[element.name]}${element.withtime ? '' : 'T00:00:00'}`);
|
|
9435
9442
|
}
|
|
9436
9443
|
else {
|
|
9437
9444
|
value = data[element.name];
|
|
@@ -22026,10 +22033,10 @@ class AboutStateComponent {
|
|
|
22026
22033
|
this.http = http;
|
|
22027
22034
|
this.userService = userService;
|
|
22028
22035
|
this.config = config;
|
|
22029
|
-
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.
|
|
22036
|
+
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" }];
|
|
22030
22037
|
this.ctrl = {
|
|
22031
22038
|
productName: 'yuuvis® RAD client',
|
|
22032
|
-
clientVersion: '7.16.
|
|
22039
|
+
clientVersion: '7.16.11'
|
|
22033
22040
|
};
|
|
22034
22041
|
this.licenses = {
|
|
22035
22042
|
'MIT': {
|