@yuuvis/client-framework 2.3.8 → 2.3.10

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 (28) hide show
  1. package/fesm2022/yuuvis-client-framework-forms.mjs +35 -13
  2. package/fesm2022/yuuvis-client-framework-forms.mjs.map +1 -1
  3. package/fesm2022/yuuvis-client-framework-metadata-form.mjs +17 -18
  4. package/fesm2022/yuuvis-client-framework-metadata-form.mjs.map +1 -1
  5. package/fesm2022/yuuvis-client-framework-object-details.mjs +28 -30
  6. package/fesm2022/yuuvis-client-framework-object-details.mjs.map +1 -1
  7. package/fesm2022/yuuvis-client-framework-object-flavor.mjs +2 -2
  8. package/fesm2022/yuuvis-client-framework-object-flavor.mjs.map +1 -1
  9. package/fesm2022/yuuvis-client-framework-object-form.mjs +4 -4
  10. package/fesm2022/yuuvis-client-framework-object-form.mjs.map +1 -1
  11. package/fesm2022/yuuvis-client-framework-sort.mjs +39 -15
  12. package/fesm2022/yuuvis-client-framework-sort.mjs.map +1 -1
  13. package/fesm2022/yuuvis-client-framework-tile-list.mjs +10 -5
  14. package/fesm2022/yuuvis-client-framework-tile-list.mjs.map +1 -1
  15. package/fesm2022/yuuvis-client-framework-widget-grid.mjs +28 -15
  16. package/fesm2022/yuuvis-client-framework-widget-grid.mjs.map +1 -1
  17. package/fesm2022/yuuvis-client-framework.mjs +1 -1
  18. package/fesm2022/yuuvis-client-framework.mjs.map +1 -1
  19. package/forms/lib/elements/data-grid/data-grid/data-grid.component.d.ts +3 -4
  20. package/lib/assets/i18n/de.json +8 -6
  21. package/lib/assets/i18n/en.json +2 -0
  22. package/metadata-form/lib/metadata-form-field/metadata-form-field.component.d.ts +1 -1
  23. package/object-details/lib/object-audit/object-audit.component.d.ts +3 -8
  24. package/package.json +8 -8
  25. package/sort/lib/sort/sort.component.d.ts +5 -1
  26. package/tile-list/lib/tile/tile.component.d.ts +2 -1
  27. package/tile-list/lib/tile-list/tile-list.component.d.ts +2 -1
  28. package/widget-grid/lib/widget-grid-registry.service.d.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuuvis/client-framework",
3
- "version": "2.3.8",
3
+ "version": "2.3.10",
4
4
  "author": "OPTIMAL SYSTEMS GmbH <npm@optimal-systems.de>",
5
5
  "license": "MIT",
6
6
  "peerDependencies": {
@@ -8,15 +8,15 @@
8
8
  "@angular/common": "^19.2.1",
9
9
  "@angular/core": "^19.2.1",
10
10
  "angular-gridster2": "^19.0.0",
11
- "@yuuvis/client-core": "^2.3.8",
12
- "@yuuvis/client-shell-core": "^2.3.8",
11
+ "@yuuvis/client-core": "^2.3.10",
12
+ "@yuuvis/client-shell-core": "^2.3.10",
13
13
  "ng-dynamic-component": "^10.8.2",
14
14
  "modern-normalize": "^3.0.1"
15
15
  },
16
16
  "dependencies": {
17
17
  "@angular/material": "^19.2.15",
18
18
  "@ngrx/signals": "^19.2.0",
19
- "@yuuvis/material": "2.3.8",
19
+ "@yuuvis/material": "2.3.10",
20
20
  "@yuuvis/media-viewer": "^2.0.10",
21
21
  "angular-split": "^19.0.0",
22
22
  "tslib": "^2.3.0"
@@ -151,13 +151,13 @@
151
151
  "types": "./tree/index.d.ts",
152
152
  "default": "./fesm2022/yuuvis-client-framework-tree.mjs"
153
153
  },
154
- "./upload-progress": {
155
- "types": "./upload-progress/index.d.ts",
156
- "default": "./fesm2022/yuuvis-client-framework-upload-progress.mjs"
157
- },
158
154
  "./widget-grid": {
159
155
  "types": "./widget-grid/index.d.ts",
160
156
  "default": "./fesm2022/yuuvis-client-framework-widget-grid.mjs"
157
+ },
158
+ "./upload-progress": {
159
+ "types": "./upload-progress/index.d.ts",
160
+ "default": "./fesm2022/yuuvis-client-framework-upload-progress.mjs"
161
161
  }
162
162
  },
163
163
  "module": "fesm2022/yuuvis-client-framework.mjs",
@@ -5,6 +5,10 @@ export declare class SortComponent {
5
5
  #private;
6
6
  readonly translate: TranslateService;
7
7
  sortOptions: import("@angular/core").InputSignal<string[]>;
8
+ selectedSortOption: import("@angular/core").InputSignal<{
9
+ field: string;
10
+ order: SortType;
11
+ } | undefined>;
8
12
  storageKey: import("@angular/core").InputSignal<string | undefined>;
9
13
  sortChanged: import("@angular/core").OutputEmitterRef<{
10
14
  field: string;
@@ -15,5 +19,5 @@ export declare class SortComponent {
15
19
  constructor();
16
20
  selectSort(option: SortMenuOption): void;
17
21
  static ɵfac: i0.ɵɵFactoryDeclaration<SortComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<SortComponent, "yuv-sort", never, { "sortOptions": { "alias": "sortOptions"; "required": false; "isSignal": true; }; "storageKey": { "alias": "storageKey"; "required": false; "isSignal": true; }; }, { "sortChanged": "sortChanged"; }, never, never, true, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<SortComponent, "yuv-sort", never, { "sortOptions": { "alias": "sortOptions"; "required": false; "isSignal": true; }; "selectedSortOption": { "alias": "selectedSortOption"; "required": false; "isSignal": true; }; "storageKey": { "alias": "storageKey"; "required": false; "isSignal": true; }; }, { "sortChanged": "sortChanged"; }, never, never, true, never>;
19
23
  }
@@ -7,6 +7,7 @@ export declare class TileComponent {
7
7
  elRef: ElementRef<any>;
8
8
  tile: import("@angular/core").InputSignal<TileData>;
9
9
  actionContext: import("@angular/core").InputSignal<ActionContext | undefined>;
10
+ dense: import("@angular/core").InputSignal<boolean>;
10
11
  actions: import("@angular/core").Signal<Action[]>;
11
12
  rendererInputs: import("@angular/core").Signal<{
12
13
  icon: import("@yuuvis/client-core").ResolvedObjectConfigItem | undefined;
@@ -17,5 +18,5 @@ export declare class TileComponent {
17
18
  }>;
18
19
  executeAction(a: Action, evt: Event): void;
19
20
  static ɵfac: i0.ɵɵFactoryDeclaration<TileComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<TileComponent, "yuv-tile", never, { "tile": { "alias": "tile"; "required": true; "isSignal": true; }; "actionContext": { "alias": "actionContext"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<TileComponent, "yuv-tile", never, { "tile": { "alias": "tile"; "required": true; "isSignal": true; }; "actionContext": { "alias": "actionContext"; "required": false; "isSignal": true; }; "dense": { "alias": "dense"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
21
22
  }
@@ -55,6 +55,7 @@ export declare class TileListComponent implements OnInit, OnDestroy {
55
55
  * Sets up the ability to select multile tiles
56
56
  */
57
57
  multiselect: import("@angular/core").InputSignal<boolean>;
58
+ dense: import("@angular/core").InputSignal<boolean>;
58
59
  options: import("@angular/core").InputSignal<TileListConfigOptions | undefined>;
59
60
  flavor: import("@angular/core").InputSignal<ObjectFlavor | undefined>;
60
61
  flavorEffect: import("@angular/core").EffectRef;
@@ -115,5 +116,5 @@ export declare class TileListComponent implements OnInit, OnDestroy {
115
116
  ngOnInit(): void;
116
117
  ngOnDestroy(): void;
117
118
  static ɵfac: i0.ɵɵFactoryDeclaration<TileListComponent, never>;
118
- static ɵcmp: i0.ɵɵComponentDeclaration<TileListComponent, "yuv-tile-list", never, { "bucket": { "alias": "bucket"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "multiselect": { "alias": "multiselect"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "flavor": { "alias": "flavor"; "required": false; "isSignal": true; }; "query": { "alias": "query"; "required": false; "isSignal": true; }; "preselect": { "alias": "preselect"; "required": false; "isSignal": true; }; "highlights": { "alias": "highlights"; "required": false; "isSignal": true; }; "preventChangeUntil": { "alias": "preventChangeUntil"; "required": false; "isSignal": true; }; }, { "itemSelect": "itemSelect"; "tileCopy": "tileCopy"; "tileCut": "tileCut"; "busy": "busy"; "queryResult": "queryResult"; "selectionChange": "selectionChange"; "itemDblClick": "itemDblClick"; "ctxMenu": "ctxMenu"; }, ["emptyContent"], ["*"], true, never>;
119
+ static ɵcmp: i0.ɵɵComponentDeclaration<TileListComponent, "yuv-tile-list", never, { "bucket": { "alias": "bucket"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "multiselect": { "alias": "multiselect"; "required": false; "isSignal": true; }; "dense": { "alias": "dense"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "flavor": { "alias": "flavor"; "required": false; "isSignal": true; }; "query": { "alias": "query"; "required": false; "isSignal": true; }; "preselect": { "alias": "preselect"; "required": false; "isSignal": true; }; "highlights": { "alias": "highlights"; "required": false; "isSignal": true; }; "preventChangeUntil": { "alias": "preventChangeUntil"; "required": false; "isSignal": true; }; }, { "itemSelect": "itemSelect"; "tileCopy": "tileCopy"; "tileCut": "tileCut"; "busy": "busy"; "queryResult": "queryResult"; "selectionChange": "selectionChange"; "itemDblClick": "itemDblClick"; "ctxMenu": "ctxMenu"; }, ["emptyContent"], ["*"], true, never>;
119
120
  }
@@ -8,6 +8,7 @@ import * as i0 from "@angular/core";
8
8
  * widgets.
9
9
  */
10
10
  export declare class WidgetGridRegistry {
11
+ #private;
11
12
  readonly translate: TranslateService;
12
13
  /**
13
14
  * List of pre-registered widgets provided out-of-the-box