@eo-sdk/client 10.0.0-beta.5 → 10.0.0-rc.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.
Files changed (96) hide show
  1. package/app/eo-client/about-state/about-state.component.d.ts +0 -5
  2. package/app/eo-client/about-state/about-state.component.d.ts.map +1 -1
  3. package/app/eo-client/dashboard/dashboard.component.d.ts +23 -30
  4. package/app/eo-client/dashboard/dashboard.component.d.ts.map +1 -1
  5. package/app/eo-client/dashboard/widgets/iframe-widget/iframe-setup/iframe-setup.component.d.ts +19 -0
  6. package/app/eo-client/dashboard/widgets/iframe-widget/iframe-setup/iframe-setup.component.d.ts.map +1 -0
  7. package/app/eo-client/dashboard/widgets/iframe-widget/iframe-widget.component.d.ts +24 -0
  8. package/app/eo-client/dashboard/widgets/iframe-widget/iframe-widget.component.d.ts.map +1 -0
  9. package/app/eo-client/dashboard/widgets/info-inbox-widget/info-inbox-setup/info-inbox-setup.component.d.ts +20 -0
  10. package/app/eo-client/dashboard/widgets/info-inbox-widget/info-inbox-setup/info-inbox-setup.component.d.ts.map +1 -0
  11. package/app/eo-client/dashboard/widgets/info-inbox-widget/info-inbox-widget.component.d.ts +19 -0
  12. package/app/eo-client/dashboard/widgets/info-inbox-widget/info-inbox-widget.component.d.ts.map +1 -0
  13. package/app/eo-client/dashboard/widgets/info-inbox-widget/info-inbox.model.d.ts +4 -0
  14. package/app/eo-client/dashboard/widgets/info-inbox-widget/info-inbox.model.d.ts.map +1 -0
  15. package/app/eo-client/dashboard/widgets/info-intray-widget/info-intray-setup/info-intray-setup.component.d.ts +25 -0
  16. package/app/eo-client/dashboard/widgets/info-intray-widget/info-intray-setup/info-intray-setup.component.d.ts.map +1 -0
  17. package/app/eo-client/dashboard/widgets/info-intray-widget/info-intray-widget.component.d.ts +20 -0
  18. package/app/eo-client/dashboard/widgets/info-intray-widget/info-intray-widget.component.d.ts.map +1 -0
  19. package/app/eo-client/dashboard/widgets/info-intray-widget/info-intray.model.d.ts +4 -0
  20. package/app/eo-client/dashboard/widgets/info-intray-widget/info-intray.model.d.ts.map +1 -0
  21. package/app/eo-client/dashboard/widgets/last-edited-widget/last-edited-and-created.component.d.ts +28 -0
  22. package/app/eo-client/dashboard/widgets/last-edited-widget/last-edited-and-created.component.d.ts.map +1 -0
  23. package/app/eo-client/dashboard/widgets/search-widget/search-widget.component.d.ts +44 -0
  24. package/app/eo-client/dashboard/widgets/search-widget/search-widget.component.d.ts.map +1 -0
  25. package/app/eo-client/eo-client.module.d.ts +24 -13
  26. package/app/eo-client/eo-client.module.d.ts.map +1 -1
  27. package/app/eo-client/login/login.component.d.ts +8 -3
  28. package/app/eo-client/login/login.component.d.ts.map +1 -1
  29. package/app/eo-framework/actions/action.module.d.ts.map +1 -1
  30. package/app/eo-framework/app-shell/app-bar/app-search/app-search.component.d.ts.map +1 -1
  31. package/app/eo-framework/object-details/object-details.component.d.ts +9 -2
  32. package/app/eo-framework/object-details/object-details.component.d.ts.map +1 -1
  33. package/app/eo-framework/result-list/result-list.component.d.ts.map +1 -1
  34. package/app/eo-framework/ui/indexdata-summary/indexdata-summary.component.d.ts +1 -0
  35. package/app/eo-framework/ui/indexdata-summary/indexdata-summary.component.d.ts.map +1 -1
  36. package/assets/_default/i18n/de.json +30 -1
  37. package/assets/_default/i18n/en.json +30 -1
  38. package/assets/_default/svg/ic_noUrl.svg +1 -0
  39. package/assets/dashboard.json +47 -0
  40. package/esm2020/app/eo-client/about-state/about-state.component.mjs +5 -11
  41. package/esm2020/app/eo-client/dashboard/dashboard.component.mjs +133 -91
  42. package/esm2020/app/eo-client/dashboard/widgets/iframe-widget/iframe-setup/iframe-setup.component.mjs +59 -0
  43. package/esm2020/app/eo-client/dashboard/widgets/iframe-widget/iframe-widget.component.mjs +39 -0
  44. package/esm2020/app/eo-client/dashboard/widgets/info-inbox-widget/info-inbox-setup/info-inbox-setup.component.mjs +53 -0
  45. package/esm2020/app/eo-client/dashboard/widgets/info-inbox-widget/info-inbox-widget.component.mjs +42 -0
  46. package/esm2020/app/eo-client/dashboard/widgets/info-inbox-widget/info-inbox.model.mjs +2 -0
  47. package/esm2020/app/eo-client/dashboard/widgets/info-intray-widget/info-intray-setup/info-intray-setup.component.mjs +65 -0
  48. package/esm2020/app/eo-client/dashboard/widgets/info-intray-widget/info-intray-widget.component.mjs +43 -0
  49. package/esm2020/app/eo-client/dashboard/widgets/info-intray-widget/info-intray.model.mjs +2 -0
  50. package/esm2020/app/eo-client/dashboard/widgets/last-edited-widget/last-edited-and-created.component.mjs +117 -0
  51. package/esm2020/app/eo-client/dashboard/widgets/search-widget/search-widget.component.mjs +115 -0
  52. package/esm2020/app/eo-client/eo-client.module.mjs +44 -6
  53. package/esm2020/app/eo-client/login/login.component.mjs +33 -13
  54. package/esm2020/app/eo-client/settings/settings.component.mjs +3 -3
  55. package/esm2020/app/eo-framework/actions/action.module.mjs +1 -1
  56. package/esm2020/app/eo-framework/app-shell/app-bar/app-search/app-search.component.mjs +2 -1
  57. package/esm2020/app/eo-framework/app-shell/app-bar/side-bar/side-bar.component.mjs +3 -3
  58. package/esm2020/app/eo-framework/form-elements/form-input/form-input.component.mjs +3 -3
  59. package/esm2020/app/eo-framework/form-elements/reference/reference.component.mjs +3 -3
  60. package/esm2020/app/eo-framework/form-elements/string/string.component.mjs +2 -2
  61. package/esm2020/app/eo-framework/frame/frame.component.mjs +2 -2
  62. package/esm2020/app/eo-framework/object-details/object-details.component.mjs +27 -13
  63. package/esm2020/app/eo-framework/prepare-details/prepare-details.component.mjs +2 -2
  64. package/esm2020/app/eo-framework/recyclebin-details/recyclebin-details.component.mjs +1 -1
  65. package/esm2020/app/eo-framework/result-list/result-list.component.mjs +4 -2
  66. package/esm2020/app/eo-framework/stored-query/stored-query-details/stored-query-details.component.mjs +3 -3
  67. package/esm2020/app/eo-framework/ui/indexdata-summary/indexdata-summary.component.mjs +20 -12
  68. package/esm2020/app/eo-framework/ui/signature-tab/signature-tab.component.mjs +3 -3
  69. package/esm2020/projects/eo-sdk/core/lib/service/auth/auth.service.mjs +24 -30
  70. package/esm2020/projects/eo-sdk/core/lib/service/capabilities/capabilities.model.mjs +1 -1
  71. package/esm2020/projects/eo-sdk/core/lib/service/capabilities/capabilities.service.mjs +8 -6
  72. package/esm2020/projects/eo-sdk/core/lib/service/config/config.service.mjs +1 -1
  73. package/esm2020/projects/eo-sdk/core/lib/service/signing/signing.service.mjs +12 -6
  74. package/esm2020/projects/eo-sdk/core/lib/service/user/user.service.mjs +11 -1
  75. package/fesm2015/eo-sdk-client-projects-eo-sdk-core.mjs +925 -914
  76. package/fesm2015/eo-sdk-client-projects-eo-sdk-core.mjs.map +1 -1
  77. package/fesm2015/eo-sdk-client.mjs +766 -229
  78. package/fesm2015/eo-sdk-client.mjs.map +1 -1
  79. package/fesm2020/eo-sdk-client-projects-eo-sdk-core.mjs +925 -914
  80. package/fesm2020/eo-sdk-client-projects-eo-sdk-core.mjs.map +1 -1
  81. package/fesm2020/eo-sdk-client.mjs +770 -228
  82. package/fesm2020/eo-sdk-client.mjs.map +1 -1
  83. package/package.json +5 -4
  84. package/projects/eo-sdk/core/lib/service/auth/auth.service.d.ts +14 -20
  85. package/projects/eo-sdk/core/lib/service/auth/auth.service.d.ts.map +1 -1
  86. package/projects/eo-sdk/core/lib/service/capabilities/capabilities.model.d.ts +4 -0
  87. package/projects/eo-sdk/core/lib/service/capabilities/capabilities.model.d.ts.map +1 -1
  88. package/projects/eo-sdk/core/lib/service/capabilities/capabilities.service.d.ts +3 -1
  89. package/projects/eo-sdk/core/lib/service/capabilities/capabilities.service.d.ts.map +1 -1
  90. package/projects/eo-sdk/core/lib/service/config/config.service.d.ts.map +1 -1
  91. package/projects/eo-sdk/core/lib/service/signing/signing.service.d.ts +4 -1
  92. package/projects/eo-sdk/core/lib/service/signing/signing.service.d.ts.map +1 -1
  93. package/projects/eo-sdk/core/lib/service/user/user.service.d.ts +6 -0
  94. package/projects/eo-sdk/core/lib/service/user/user.service.d.ts.map +1 -1
  95. package/scss/_eo-variables.scss +1 -0
  96. package/styles.css +1 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.