@eo-sdk/client 11.12.1 → 11.13.0-rc.2
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-client/about-state/about-state.component.d.ts.map +1 -1
- package/app/eo-client/inbox-state/inbox-state/inbox-state.component.d.ts +1 -0
- package/app/eo-client/inbox-state/inbox-state/inbox-state.component.d.ts.map +1 -1
- package/app/eo-framework/actions/actions/clipboard/clipboard-object-action/clipboard-object-action.component.d.ts +6 -3
- package/app/eo-framework/actions/actions/clipboard/clipboard-object-action/clipboard-object-action.component.d.ts.map +1 -1
- package/app/eo-framework/actions/actions/download-action/download-action.d.ts +7 -3
- package/app/eo-framework/actions/actions/download-action/download-action.d.ts.map +1 -1
- package/app/eo-framework/actions/actions/email/email/email.component.d.ts +7 -4
- package/app/eo-framework/actions/actions/email/email/email.component.d.ts.map +1 -1
- package/app/eo-framework/form-elements/dynamic-list/dynamic-list.component.d.ts +10 -2
- package/app/eo-framework/form-elements/dynamic-list/dynamic-list.component.d.ts.map +1 -1
- package/app/eo-framework/form-elements/form-elements.module.d.ts.map +1 -1
- package/app/eo-framework/grid/filters/dynamic-list-filter.component.d.ts +2 -2
- package/app/eo-framework/grid/filters/dynamic-list-filter.component.d.ts.map +1 -1
- package/app/eo-framework/list-container/list-container.component.d.ts +2 -2
- package/app/eo-framework/list-container/list-container.component.d.ts.map +1 -1
- package/app/eo-framework/object-details/object-details.component.d.ts +33 -35
- package/app/eo-framework/object-details/object-details.component.d.ts.map +1 -1
- package/app/eo-framework/result-list/result-list.component.d.ts +10 -3
- package/app/eo-framework/result-list/result-list.component.d.ts.map +1 -1
- package/app/eo-framework/result-list/result-list.module.d.ts +3 -1
- package/app/eo-framework/result-list/result-list.module.d.ts.map +1 -1
- package/app/eo-framework/settings/permissions/permissions.component.d.ts +3 -1
- package/app/eo-framework/settings/permissions/permissions.component.d.ts.map +1 -1
- package/assets/_default/i18n/de.json +3 -2
- package/assets/_default/i18n/en.json +3 -2
- package/esm2022/app/eo-client/about-state/about-state.component.mjs +6 -5
- package/esm2022/app/eo-client/favorite-state/favorite-state.component.mjs +1 -1
- package/esm2022/app/eo-client/inbox-state/inbox-state/inbox-state.component.mjs +18 -10
- package/esm2022/app/eo-client/notifications-state/notifications-state.component.mjs +1 -1
- package/esm2022/app/eo-client/object-state/object-state/object-state.component.mjs +1 -1
- package/esm2022/app/eo-client/process-state/process-state.component.mjs +1 -1
- package/esm2022/app/eo-client/result-state/result-state.component.mjs +1 -1
- package/esm2022/app/eo-client/version-state/version-state.component.mjs +1 -1
- package/esm2022/app/eo-framework/actions/actions/clipboard/clipboard-object-action/clipboard-object-action.component.mjs +16 -8
- package/esm2022/app/eo-framework/actions/actions/download-action/download-action.mjs +11 -7
- package/esm2022/app/eo-framework/actions/actions/email/email/email.component.mjs +21 -12
- package/esm2022/app/eo-framework/eo-framework.module.mjs +2 -2
- package/esm2022/app/eo-framework/form-elements/dynamic-list/dynamic-list.component.mjs +23 -4
- package/esm2022/app/eo-framework/form-elements/form-elements.module.mjs +1 -28
- package/esm2022/app/eo-framework/grid/filters/dynamic-list-filter.component.mjs +5 -5
- package/esm2022/app/eo-framework/list-container/list-container.component.mjs +5 -5
- package/esm2022/app/eo-framework/object-details/object-details.component.mjs +219 -216
- package/esm2022/app/eo-framework/object-form/object-form/form-element-table/row-edit/row-edit.component.mjs +2 -2
- package/esm2022/app/eo-framework/result-list/result-list.component.mjs +46 -25
- package/esm2022/app/eo-framework/result-list/result-list.module.mjs +12 -4
- package/esm2022/app/eo-framework/settings/permissions/permissions.component.mjs +10 -2
- package/fesm2022/eo-sdk-client.mjs +1308 -1254
- package/fesm2022/eo-sdk-client.mjs.map +1 -1
- package/misc/scripts/prebuild-about-state.js +7 -5
- package/package.json +2 -2
|
@@ -10,11 +10,13 @@ var deps = function(p, modules) {
|
|
|
10
10
|
return Object.keys(p.dependencies).map(function(key) {
|
|
11
11
|
const packageJsonPath = path.resolve(__dirname, '../../node_modules/' + modules + key + '/package.json');
|
|
12
12
|
const depPjson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
if (depPjson.license) {
|
|
14
|
+
return {
|
|
15
|
+
name: key,
|
|
16
|
+
version: depPjson.version,
|
|
17
|
+
license: depPjson.license
|
|
18
|
+
};
|
|
19
|
+
}
|
|
18
20
|
});
|
|
19
21
|
};
|
|
20
22
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@eo-sdk/client",
|
|
3
3
|
"description": "yuuvis RAD client",
|
|
4
4
|
"author": "OPTIMAL SYSTEMS GmbH <npm@optimal-systems.de>",
|
|
5
|
-
"version": "11.
|
|
5
|
+
"version": "11.13.0-rc.2",
|
|
6
6
|
"main": "electron/main.js",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"angular-cli": {},
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@angular/platform-browser-dynamic": "18.1.0",
|
|
32
32
|
"@angular/router": "18.1.0",
|
|
33
33
|
"@carbon/charts-angular": "1.16.3",
|
|
34
|
-
"@eo-sdk/core": "11.
|
|
34
|
+
"@eo-sdk/core": "11.13.0-rc.2",
|
|
35
35
|
"@ngneat/until-destroy": "^10.0.0",
|
|
36
36
|
"@ngx-pwa/local-storage": "^18.0.0",
|
|
37
37
|
"@ngx-translate/core": "^15.0.0",
|