@eo-sdk/client 10.6.6 → 10.6.8

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 (49) hide show
  1. package/app/eo-client/process-state/process-state.component.d.ts +1 -0
  2. package/app/eo-client/process-state/process-state.component.d.ts.map +1 -1
  3. package/app/eo-framework/app-shell/app-bar/app-bar.component.d.ts +1 -2
  4. package/app/eo-framework/app-shell/app-bar/app-bar.component.d.ts.map +1 -1
  5. package/app/eo-framework/app-shell/app-bar/user-avatar-overlay/user-avatar-overlay.component.d.ts +18 -0
  6. package/app/eo-framework/app-shell/app-bar/user-avatar-overlay/user-avatar-overlay.component.d.ts.map +1 -0
  7. package/app/eo-framework/app-shell/app-shell.module.d.ts +17 -16
  8. package/app/eo-framework/app-shell/app-shell.module.d.ts.map +1 -1
  9. package/app/eo-framework/form-elements/datetime-range/datetime-range.component.d.ts +3 -1
  10. package/app/eo-framework/form-elements/datetime-range/datetime-range.component.d.ts.map +1 -1
  11. package/app/eo-framework/form-elements/dynamic-list/dynamic-list.component.d.ts.map +1 -1
  12. package/app/eo-framework/form-elements/string/string.component.d.ts.map +1 -1
  13. package/app/eo-framework/object-details/object-details.component.d.ts.map +1 -1
  14. package/app/eo-framework/process/details/process-details.component.d.ts.map +1 -1
  15. package/app/eo-framework/ui/indexdata-summary/indexdata-summary-entry/indexdata-summary-entry.component.d.ts.map +1 -1
  16. package/app/eo-framework/ui/overlay/overlay.component.d.ts +11 -7
  17. package/app/eo-framework/ui/overlay/overlay.component.d.ts.map +1 -1
  18. package/esm2020/app/eo-client/about-state/about-state.component.mjs +3 -3
  19. package/esm2020/app/eo-client/favorite-state/favorite-state.component.mjs +1 -1
  20. package/esm2020/app/eo-client/inbox-state/inbox-state/inbox-state.component.mjs +2 -2
  21. package/esm2020/app/eo-client/notifications-state/notifications-state.component.mjs +1 -1
  22. package/esm2020/app/eo-client/prepare-state/prepare-state/prepare-state.component.mjs +1 -1
  23. package/esm2020/app/eo-client/process-state/process-state.component.mjs +22 -14
  24. package/esm2020/app/eo-client/recyclebin-state/recyclebin-state.component.mjs +1 -1
  25. package/esm2020/app/eo-client/stored-queries-state/stored-queries-state.component.mjs +1 -1
  26. package/esm2020/app/eo-client/version-state/version-state.component.mjs +1 -1
  27. package/esm2020/app/eo-framework/app-shell/app-bar/app-bar.component.mjs +10 -19
  28. package/esm2020/app/eo-framework/app-shell/app-bar/user-avatar-overlay/user-avatar-overlay.component.mjs +42 -0
  29. package/esm2020/app/eo-framework/app-shell/app-shell.module.mjs +5 -2
  30. package/esm2020/app/eo-framework/form-elements/datetime-range/datetime-range.component.mjs +31 -13
  31. package/esm2020/app/eo-framework/form-elements/dynamic-list/dynamic-list.component.mjs +4 -1
  32. package/esm2020/app/eo-framework/form-elements/string/string.component.mjs +7 -3
  33. package/esm2020/app/eo-framework/grid/extensions/custom-sort/custom-sort.component.mjs +2 -2
  34. package/esm2020/app/eo-framework/grid/extensions/filter/custom/custom-filter.component.mjs +2 -2
  35. package/esm2020/app/eo-framework/object-details/object-details.component.mjs +9 -3
  36. package/esm2020/app/eo-framework/prepare-details/prepare-details.component.mjs +1 -1
  37. package/esm2020/app/eo-framework/process/details/process-details.component.mjs +1 -2
  38. package/esm2020/app/eo-framework/ui/indexdata-summary/indexdata-summary-entry/indexdata-summary-entry.component.mjs +10 -1
  39. package/esm2020/app/eo-framework/ui/overlay/overlay.component.mjs +38 -18
  40. package/esm2020/projects/eo-sdk/core/lib/service/auth/auth.service.mjs +2 -2
  41. package/fesm2015/eo-sdk-client-projects-eo-sdk-core.mjs +1 -1
  42. package/fesm2015/eo-sdk-client-projects-eo-sdk-core.mjs.map +1 -1
  43. package/fesm2015/eo-sdk-client.mjs +306 -220
  44. package/fesm2015/eo-sdk-client.mjs.map +1 -1
  45. package/fesm2020/eo-sdk-client-projects-eo-sdk-core.mjs +1 -1
  46. package/fesm2020/eo-sdk-client-projects-eo-sdk-core.mjs.map +1 -1
  47. package/fesm2020/eo-sdk-client.mjs +306 -220
  48. package/fesm2020/eo-sdk-client.mjs.map +1 -1
  49. package/package.json +3 -3
@@ -3898,7 +3898,7 @@ class AuthService {
3898
3898
  active: false
3899
3899
  };
3900
3900
  if (gatewayLogout) {
3901
- window.location.href = this.config.getContextPath() + '/logout?fallbackredir=/' + Utils.getBaseHref();
3901
+ window.location.href = this.config.getContextPath() + '/logout?fallbackredir=' + Utils.getBaseHref();
3902
3902
  }
3903
3903
  this.backend.setAuthProfile(this.profile);
3904
3904
  this.eventService.trigger(EnaioEvent.LOGOUT);