@eo-sdk/client 8.12.0-rc.1 → 8.12.1
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/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js +17 -6
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js.map +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js.map +1 -1
- package/bundles/eo-sdk-client.umd.js +20 -17
- 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/app-shell/app-bar/app-bar.component.js +2 -3
- package/esm2015/app/eo-framework/app-shell/app-bar/app-process/app-process.component.js +17 -14
- package/esm2015/projects/eo-sdk/core/lib/service/bpm/bpm.service.js +18 -7
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js +17 -6
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js.map +1 -1
- package/fesm2015/eo-sdk-client.js +19 -17
- package/fesm2015/eo-sdk-client.js.map +1 -1
- package/package.json +2 -2
- package/projects/eo-sdk/core/lib/service/bpm/bpm.service.d.ts +6 -1
- package/projects/eo-sdk/core/package.json +1 -1
|
@@ -3904,9 +3904,8 @@ class AppBarComponent extends UnsubscribeOnDestroy {
|
|
|
3904
3904
|
.on(EnaioEvent.SCHEMA_LOCALE_CHANGED).pipe(takeUntil(this.componentDestroyed$))
|
|
3905
3905
|
.subscribe(() => {
|
|
3906
3906
|
this.bpmService
|
|
3907
|
-
.
|
|
3907
|
+
.initExecutableProcesses()
|
|
3908
3908
|
.subscribe(res => {
|
|
3909
|
-
// this.exeActions = !!res.length;
|
|
3910
3909
|
this.exeActions = this.bpmService.hasMainExecutableProcesses;
|
|
3911
3910
|
});
|
|
3912
3911
|
});
|
|
@@ -4853,19 +4852,22 @@ class AppProcessComponent {
|
|
|
4853
4852
|
* @param executableProcess Process to be selected/started
|
|
4854
4853
|
*/
|
|
4855
4854
|
selectProcess(executableProcess) {
|
|
4856
|
-
this.
|
|
4857
|
-
|
|
4858
|
-
|
|
4859
|
-
this.selectedProcess.form
|
|
4860
|
-
|
|
4861
|
-
|
|
4862
|
-
|
|
4863
|
-
|
|
4864
|
-
|
|
4865
|
-
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
|
-
|
|
4855
|
+
this.bpmService.getExecutableProcesses(null, false, true, executableProcess.id).subscribe(res => {
|
|
4856
|
+
executableProcess = res[0];
|
|
4857
|
+
this.selectedProcess = JSON.parse(JSON.stringify(executableProcess)); // Only copies of the original processes are used.
|
|
4858
|
+
if (this.selectedProcess.form) {
|
|
4859
|
+
// create form options from the execitable process to be passed to the rendering form component
|
|
4860
|
+
this.selectedProcess.form.situation = 'CREATE';
|
|
4861
|
+
this.processForm = {
|
|
4862
|
+
formModel: this.selectedProcess.form,
|
|
4863
|
+
data: this.selectedProcess.data || {}
|
|
4864
|
+
};
|
|
4865
|
+
}
|
|
4866
|
+
else {
|
|
4867
|
+
// start process right away
|
|
4868
|
+
this.executeProcess(this.selectedProcess, {}, this.translate.instant('eo.process.started', { processName: this.selectedProcess.title }));
|
|
4869
|
+
}
|
|
4870
|
+
});
|
|
4869
4871
|
}
|
|
4870
4872
|
/**
|
|
4871
4873
|
* Starts the currently selected executable process with data provided by
|
|
@@ -22200,10 +22202,10 @@ class AboutStateComponent {
|
|
|
22200
22202
|
this.http = http;
|
|
22201
22203
|
this.userService = userService;
|
|
22202
22204
|
this.config = config;
|
|
22203
|
-
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": "8.12.
|
|
22205
|
+
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": "8.12.1", "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" }];
|
|
22204
22206
|
this.ctrl = {
|
|
22205
22207
|
productName: 'yuuvis® RAD client',
|
|
22206
|
-
clientVersion: '8.12.
|
|
22208
|
+
clientVersion: '8.12.1'
|
|
22207
22209
|
};
|
|
22208
22210
|
this.licenses = {
|
|
22209
22211
|
'MIT': {
|