@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.
Files changed (51) hide show
  1. package/app/eo-client/about-state/about-state.component.d.ts.map +1 -1
  2. package/app/eo-client/inbox-state/inbox-state/inbox-state.component.d.ts +1 -0
  3. package/app/eo-client/inbox-state/inbox-state/inbox-state.component.d.ts.map +1 -1
  4. package/app/eo-framework/actions/actions/clipboard/clipboard-object-action/clipboard-object-action.component.d.ts +6 -3
  5. package/app/eo-framework/actions/actions/clipboard/clipboard-object-action/clipboard-object-action.component.d.ts.map +1 -1
  6. package/app/eo-framework/actions/actions/download-action/download-action.d.ts +7 -3
  7. package/app/eo-framework/actions/actions/download-action/download-action.d.ts.map +1 -1
  8. package/app/eo-framework/actions/actions/email/email/email.component.d.ts +7 -4
  9. package/app/eo-framework/actions/actions/email/email/email.component.d.ts.map +1 -1
  10. package/app/eo-framework/form-elements/dynamic-list/dynamic-list.component.d.ts +10 -2
  11. package/app/eo-framework/form-elements/dynamic-list/dynamic-list.component.d.ts.map +1 -1
  12. package/app/eo-framework/form-elements/form-elements.module.d.ts.map +1 -1
  13. package/app/eo-framework/grid/filters/dynamic-list-filter.component.d.ts +2 -2
  14. package/app/eo-framework/grid/filters/dynamic-list-filter.component.d.ts.map +1 -1
  15. package/app/eo-framework/list-container/list-container.component.d.ts +2 -2
  16. package/app/eo-framework/list-container/list-container.component.d.ts.map +1 -1
  17. package/app/eo-framework/object-details/object-details.component.d.ts +33 -35
  18. package/app/eo-framework/object-details/object-details.component.d.ts.map +1 -1
  19. package/app/eo-framework/result-list/result-list.component.d.ts +10 -3
  20. package/app/eo-framework/result-list/result-list.component.d.ts.map +1 -1
  21. package/app/eo-framework/result-list/result-list.module.d.ts +3 -1
  22. package/app/eo-framework/result-list/result-list.module.d.ts.map +1 -1
  23. package/app/eo-framework/settings/permissions/permissions.component.d.ts +3 -1
  24. package/app/eo-framework/settings/permissions/permissions.component.d.ts.map +1 -1
  25. package/assets/_default/i18n/de.json +3 -2
  26. package/assets/_default/i18n/en.json +3 -2
  27. package/esm2022/app/eo-client/about-state/about-state.component.mjs +6 -5
  28. package/esm2022/app/eo-client/favorite-state/favorite-state.component.mjs +1 -1
  29. package/esm2022/app/eo-client/inbox-state/inbox-state/inbox-state.component.mjs +18 -10
  30. package/esm2022/app/eo-client/notifications-state/notifications-state.component.mjs +1 -1
  31. package/esm2022/app/eo-client/object-state/object-state/object-state.component.mjs +1 -1
  32. package/esm2022/app/eo-client/process-state/process-state.component.mjs +1 -1
  33. package/esm2022/app/eo-client/result-state/result-state.component.mjs +1 -1
  34. package/esm2022/app/eo-client/version-state/version-state.component.mjs +1 -1
  35. package/esm2022/app/eo-framework/actions/actions/clipboard/clipboard-object-action/clipboard-object-action.component.mjs +16 -8
  36. package/esm2022/app/eo-framework/actions/actions/download-action/download-action.mjs +11 -7
  37. package/esm2022/app/eo-framework/actions/actions/email/email/email.component.mjs +21 -12
  38. package/esm2022/app/eo-framework/eo-framework.module.mjs +2 -2
  39. package/esm2022/app/eo-framework/form-elements/dynamic-list/dynamic-list.component.mjs +23 -4
  40. package/esm2022/app/eo-framework/form-elements/form-elements.module.mjs +1 -28
  41. package/esm2022/app/eo-framework/grid/filters/dynamic-list-filter.component.mjs +5 -5
  42. package/esm2022/app/eo-framework/list-container/list-container.component.mjs +5 -5
  43. package/esm2022/app/eo-framework/object-details/object-details.component.mjs +219 -216
  44. package/esm2022/app/eo-framework/object-form/object-form/form-element-table/row-edit/row-edit.component.mjs +2 -2
  45. package/esm2022/app/eo-framework/result-list/result-list.component.mjs +46 -25
  46. package/esm2022/app/eo-framework/result-list/result-list.module.mjs +12 -4
  47. package/esm2022/app/eo-framework/settings/permissions/permissions.component.mjs +10 -2
  48. package/fesm2022/eo-sdk-client.mjs +1308 -1254
  49. package/fesm2022/eo-sdk-client.mjs.map +1 -1
  50. package/misc/scripts/prebuild-about-state.js +7 -5
  51. 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
- return {
14
- name: key,
15
- version: depPjson.version,
16
- license: depPjson.license
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.12.1",
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.12.1",
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",