@eo-sdk/client 10.6.0-rc.4 → 10.6.0-rc.5

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 (23) hide show
  1. package/app/eo-framework/object-details/object-details.component.d.ts +2 -1
  2. package/app/eo-framework/object-details/object-details.component.d.ts.map +1 -1
  3. package/app/eo-framework/object-state-details/object-state-details.component.d.ts +2 -0
  4. package/app/eo-framework/object-state-details/object-state-details.component.d.ts.map +1 -1
  5. package/app/eo-framework/ui/eo-dialog/eo-dialog.component.d.ts +5 -18
  6. package/app/eo-framework/ui/eo-dialog/eo-dialog.component.d.ts.map +1 -1
  7. package/app/eo-framework/ui/ui.module.d.ts +3 -2
  8. package/app/eo-framework/ui/ui.module.d.ts.map +1 -1
  9. package/esm2020/app/eo-client/about-state/about-state.component.mjs +3 -3
  10. package/esm2020/app/eo-framework/form-elements/date/date.component.mjs +2 -2
  11. package/esm2020/app/eo-framework/grid/filters/datetime-filter.component.mjs +2 -2
  12. package/esm2020/app/eo-framework/inbox-details/inbox-details.component.mjs +3 -3
  13. package/esm2020/app/eo-framework/object-details/object-details.component.mjs +9 -5
  14. package/esm2020/app/eo-framework/object-state-details/object-state-details.component.mjs +9 -5
  15. package/esm2020/app/eo-framework/ui/eo-dialog/eo-dialog.component.mjs +32 -117
  16. package/esm2020/app/eo-framework/ui/ui.module.mjs +5 -1
  17. package/fesm2015/eo-sdk-client.mjs +70 -140
  18. package/fesm2015/eo-sdk-client.mjs.map +1 -1
  19. package/fesm2020/eo-sdk-client.mjs +70 -140
  20. package/fesm2020/eo-sdk-client.mjs.map +1 -1
  21. package/package.json +3 -3
  22. package/scss/_yuuvis-components.scss +22 -14
  23. package/styles.css +6 -0
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": "10.6.0-rc.4",
5
+ "version": "10.6.0-rc.5",
6
6
  "main": "electron/main.js",
7
7
  "license": "MIT",
8
8
  "angular-cli": {},
@@ -30,12 +30,12 @@
30
30
  "@angular/platform-browser-dynamic": "15.2.2",
31
31
  "@angular/router": "15.2.2",
32
32
  "@carbon/charts-angular": "^1.8.1",
33
- "@eo-sdk/core": "10.6.0-rc.4",
33
+ "@eo-sdk/core": "10.6.0-rc.5",
34
34
  "@ngneat/until-destroy": "^10.0.0",
35
35
  "@ngx-pwa/local-storage": "15.0.0",
36
36
  "@ngx-translate/core": "14.0.0",
37
37
  "@types/lodash": "4.14.88",
38
- "@yuuvis/components": "^0.0.64",
38
+ "@yuuvis/components": "^0.0.65",
39
39
  "@yuuvis/widget-grid": "1.0.2",
40
40
  "core-js": "^2.5.4",
41
41
  "file-saver": "^2.0.5",
@@ -1,23 +1,31 @@
1
+ .cdk-overlay-pane {
2
+ .eo-dialog {
3
+ height: 100%;
4
+ }
5
+ yvc-overlay {
6
+ width: 100%;
7
+ }
8
+ }
1
9
 
2
10
  yvc-tabs {
3
- > header {
4
- --yvc-tab-nav-button-margin: 1px;
5
- > .scroll-x nav > a {
6
- padding: calc(var(--app-pane-padding) / 4) !important;
7
- }
11
+ > header {
12
+ --yvc-tab-nav-button-margin: 1px;
13
+ > .scroll-x nav > a {
14
+ padding: calc(var(--app-pane-padding) / 4) !important;
8
15
  }
16
+ }
9
17
  }
10
18
 
11
19
  yvc-chips-list ul.chips li.chip {
12
- background: var(--eo-chips-background-color);
13
- border: 1px solid var(--eo-chips-border-color);
14
- border-radius: 2px;
15
- color: var(--eo-chips-text-color);
16
- margin: 2px 2px 0 0;
17
- display: flex;
18
- align-items: center;
20
+ background: var(--eo-chips-background-color);
21
+ border: 1px solid var(--eo-chips-border-color);
22
+ border-radius: 2px;
23
+ color: var(--eo-chips-text-color);
24
+ margin: 2px 2px 0 0;
25
+ display: flex;
26
+ align-items: center;
19
27
  }
20
28
  yvc-autocomplete-options .org-item {
21
- display: flex;
22
- align-items: center;
29
+ display: flex;
30
+ align-items: center;
23
31
  }
package/styles.css CHANGED
@@ -118,6 +118,12 @@
118
118
  .ag-theme-balham .ag-icon-checkbox-checked:empty:before, .ag-theme-balham .ag-header .ag-icon-checkbox-checked:empty:before {
119
119
  opacity: 0; }
120
120
 
121
+ .cdk-overlay-pane .eo-dialog {
122
+ height: 100%; }
123
+
124
+ .cdk-overlay-pane yvc-overlay {
125
+ width: 100%; }
126
+
121
127
  yvc-tabs > header {
122
128
  --yvc-tab-nav-button-margin: 1px; }
123
129
  yvc-tabs > header > .scroll-x nav > a {