@yuuvis/client-framework 2.8.2 → 2.8.3
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.
- package/fesm2022/yuuvis-client-framework-forms.mjs +10 -2
- package/fesm2022/yuuvis-client-framework-forms.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-tile-list.mjs +17 -2
- package/fesm2022/yuuvis-client-framework-tile-list.mjs.map +1 -1
- package/package.json +4 -4
- package/tile-list/lib/tile-list/tile-list.component.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuuvis/client-framework",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.3",
|
|
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.8.
|
|
12
|
-
"@yuuvis/client-shell-core": "^2.8.
|
|
11
|
+
"@yuuvis/client-core": "^2.8.3",
|
|
12
|
+
"@yuuvis/client-shell-core": "^2.8.3",
|
|
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.8.
|
|
19
|
+
"@yuuvis/material": "2.8.3",
|
|
20
20
|
"@yuuvis/media-viewer": "^2.0.12",
|
|
21
21
|
"angular-split": "^19.0.0",
|
|
22
22
|
"vis-network": "^10.0.2",
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ElementRef, OnInit, Signal } from '@angular/core';
|
|
2
2
|
import { DmsObject, ResolvedObjectConfigItem, SearchQuery, SearchResultItem } from '@yuuvis/client-core';
|
|
3
|
+
import { MatMenuTrigger } from '@angular/material/menu';
|
|
3
4
|
import { Action } from '@yuuvis/client-framework/actions';
|
|
4
5
|
import { QueryListComponent } from '@yuuvis/client-framework/query-list';
|
|
5
6
|
import { ObjectFlavor } from '@yuuvis/client-shell-core';
|
|
@@ -16,6 +17,7 @@ export declare class TileListComponent implements OnInit {
|
|
|
16
17
|
menu: Signal<import("@angular/material/menu").MatMenu | null>;
|
|
17
18
|
emptyContent: Signal<ElementRef<any> | undefined>;
|
|
18
19
|
list: Signal<QueryListComponent>;
|
|
20
|
+
menuTriggers: Signal<readonly MatMenuTrigger[]>;
|
|
19
21
|
transformer: (res: SearchResultItem[]) => {
|
|
20
22
|
actions: Action[];
|
|
21
23
|
id: string;
|
|
@@ -75,6 +77,7 @@ export declare class TileListComponent implements OnInit {
|
|
|
75
77
|
appliedFlavor?: ObjectFlavor;
|
|
76
78
|
/**
|
|
77
79
|
* The search query to be executed. This may be a SearchQuery object or a CMIS query statement.
|
|
80
|
+
* Ensure that the query includes the object type ID field to allow proper tile rendering.
|
|
78
81
|
*/
|
|
79
82
|
query: import("@angular/core").InputSignal<string | SearchQuery | null | undefined>;
|
|
80
83
|
preselect: import("@angular/core").InputSignal<string[]>;
|