@eo-sdk/client 11.14.0-rc.6 → 11.14.0-rc.7

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/stored-queries-state/stored-queries-state.component.d.ts.map +1 -1
  2. package/app/eo-framework/accordion/simple-accordion/simple-accordion.component.d.ts +5 -1
  3. package/app/eo-framework/accordion/simple-accordion/simple-accordion.component.d.ts.map +1 -1
  4. package/app/eo-framework/eo-framework.module.d.ts +8 -9
  5. package/app/eo-framework/eo-framework.module.d.ts.map +1 -1
  6. package/app/eo-framework/form-elements/form-elements.module.d.ts +6 -7
  7. package/app/eo-framework/form-elements/form-elements.module.d.ts.map +1 -1
  8. package/app/eo-framework/form-elements/organization/organization.component.d.ts.map +1 -1
  9. package/app/eo-framework/index.d.ts +0 -1
  10. package/app/eo-framework/index.d.ts.map +1 -1
  11. package/app/eo-framework/object-details/object-links/object-links.component.d.ts +2 -2
  12. package/app/eo-framework/object-details/object-links/object-links.component.d.ts.map +1 -1
  13. package/app/eo-framework/object-form/object-form/form-element-table/form-element-table.component.d.ts.map +1 -1
  14. package/app/eo-framework/result-list/result-list.component.d.ts.map +1 -1
  15. package/app/eo-framework/stored-query/stored-query-details/stored-query-details.component.d.ts.map +1 -1
  16. package/app/eo-framework/ui/index.d.ts +1 -0
  17. package/app/eo-framework/ui/index.d.ts.map +1 -1
  18. package/app/eo-framework/ui/ui.module.d.ts +7 -7
  19. package/app/eo-framework/ui/ui.module.d.ts.map +1 -1
  20. package/app/eo-framework-core/references/reference.service.d.ts +1 -0
  21. package/app/eo-framework-core/references/reference.service.d.ts.map +1 -1
  22. package/esm2022/app/eo-client/about-state/about-state.component.mjs +3 -3
  23. package/esm2022/app/eo-client/settings/settings.component.mjs +6 -6
  24. package/esm2022/app/eo-client/stored-queries-state/stored-queries-state.component.mjs +21 -4
  25. package/esm2022/app/eo-framework/accordion/simple-accordion/simple-accordion.component.mjs +11 -5
  26. package/esm2022/app/eo-framework/eo-framework.module.mjs +1 -8
  27. package/esm2022/app/eo-framework/form-elements/form-elements.module.mjs +1 -5
  28. package/esm2022/app/eo-framework/form-elements/id-reference/reference-finder/reference-finder.component.mjs +2 -2
  29. package/esm2022/app/eo-framework/form-elements/organization/organization.component.mjs +13 -11
  30. package/esm2022/app/eo-framework/index.mjs +1 -2
  31. package/esm2022/app/eo-framework/object-details/object-links/object-links.component.mjs +40 -14
  32. package/esm2022/app/eo-framework/object-form/object-form/form-element-table/form-element-table.component.mjs +2 -1
  33. package/esm2022/app/eo-framework/prepare-details/prepare-details.component.mjs +3 -3
  34. package/esm2022/app/eo-framework/result-list/result-list.component.mjs +13 -6
  35. package/esm2022/app/eo-framework/stored-query/stored-query-details/stored-query-details.component.mjs +4 -3
  36. package/esm2022/app/eo-framework/ui/index.mjs +2 -1
  37. package/esm2022/app/eo-framework/ui/indexdata-summary/indexdata-summary.component.mjs +3 -3
  38. package/esm2022/app/eo-framework/ui/ui.module.mjs +10 -9
  39. package/esm2022/app/eo-framework/upload-overlay/upload-overlay.component.mjs +2 -2
  40. package/esm2022/app/eo-framework-core/references/reference.service.mjs +32 -16
  41. package/fesm2022/eo-sdk-client.mjs +184 -135
  42. package/fesm2022/eo-sdk-client.mjs.map +1 -1
  43. package/package.json +2 -2
  44. package/app/eo-framework/accordion/accordion.module.d.ts +0 -9
  45. package/app/eo-framework/accordion/accordion.module.d.ts.map +0 -1
  46. package/app/eo-framework/accordion/index.d.ts +0 -3
  47. package/app/eo-framework/accordion/index.d.ts.map +0 -1
  48. package/esm2022/app/eo-framework/accordion/accordion.module.mjs +0 -20
  49. package/esm2022/app/eo-framework/accordion/index.mjs +0 -3
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.14.0-rc.6",
5
+ "version": "11.14.0-rc.7",
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.14.0-rc.6",
34
+ "@eo-sdk/core": "11.14.0-rc.7",
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",
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./simple-accordion/simple-accordion.component";
3
- import * as i2 from "@angular/common";
4
- export declare class AccordionModule {
5
- static ɵfac: i0.ɵɵFactoryDeclaration<AccordionModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<AccordionModule, [typeof i1.SimpleAccordionComponent], [typeof i2.CommonModule], [typeof i1.SimpleAccordionComponent]>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<AccordionModule>;
8
- }
9
- //# sourceMappingURL=accordion.module.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"accordion.module.d.ts","sourceRoot":"","sources":["../../../../../../src/app/eo-framework/accordion/accordion.module.ts"],"names":[],"mappings":";;;AAIA,qBAOa,eAAe;yCAAf,eAAe;0CAAf,eAAe;0CAAf,eAAe;CAC3B"}
@@ -1,3 +0,0 @@
1
- export * from './accordion.module';
2
- export * from './simple-accordion/simple-accordion.component';
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/app/eo-framework/accordion/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,+CAA+C,CAAC"}
@@ -1,20 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { SimpleAccordionComponent } from './simple-accordion/simple-accordion.component';
4
- import * as i0 from "@angular/core";
5
- export class AccordionModule {
6
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.0", ngImport: i0, type: AccordionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
7
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.0", ngImport: i0, type: AccordionModule, declarations: [SimpleAccordionComponent], imports: [CommonModule], exports: [SimpleAccordionComponent] }); }
8
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.0", ngImport: i0, type: AccordionModule, imports: [CommonModule] }); }
9
- }
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.0", ngImport: i0, type: AccordionModule, decorators: [{
11
- type: NgModule,
12
- args: [{
13
- imports: [
14
- CommonModule,
15
- ],
16
- declarations: [SimpleAccordionComponent],
17
- exports: [SimpleAccordionComponent]
18
- }]
19
- }] });
20
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNjb3JkaW9uLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9hcHAvZW8tZnJhbWV3b3JrL2FjY29yZGlvbi9hY2NvcmRpb24ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDdkMsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBQyx3QkFBd0IsRUFBQyxNQUFNLCtDQUErQyxDQUFDOztBQVN2RixNQUFNLE9BQU8sZUFBZTs4R0FBZixlQUFlOytHQUFmLGVBQWUsaUJBSFgsd0JBQXdCLGFBRnJDLFlBQVksYUFHSix3QkFBd0I7K0dBRXZCLGVBQWUsWUFMeEIsWUFBWTs7MkZBS0gsZUFBZTtrQkFQM0IsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUU7d0JBQ1AsWUFBWTtxQkFDYjtvQkFDRCxZQUFZLEVBQUUsQ0FBQyx3QkFBd0IsQ0FBQztvQkFDeEMsT0FBTyxFQUFFLENBQUMsd0JBQXdCLENBQUM7aUJBQ3BDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7U2ltcGxlQWNjb3JkaW9uQ29tcG9uZW50fSBmcm9tICcuL3NpbXBsZS1hY2NvcmRpb24vc2ltcGxlLWFjY29yZGlvbi5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICBdLFxuICBkZWNsYXJhdGlvbnM6IFtTaW1wbGVBY2NvcmRpb25Db21wb25lbnRdLFxuICBleHBvcnRzOiBbU2ltcGxlQWNjb3JkaW9uQ29tcG9uZW50XVxufSlcbmV4cG9ydCBjbGFzcyBBY2NvcmRpb25Nb2R1bGUge1xufVxuIl19
@@ -1,3 +0,0 @@
1
- export * from './accordion.module';
2
- export * from './simple-accordion/simple-accordion.component';
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXBwL2VvLWZyYW1ld29yay9hY2NvcmRpb24vaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLCtDQUErQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9hY2NvcmRpb24ubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vc2ltcGxlLWFjY29yZGlvbi9zaW1wbGUtYWNjb3JkaW9uLmNvbXBvbmVudCc7XG5cblxuXG4iXX0=