@yuuvis/client-framework 2.1.5 → 2.1.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.
- package/fesm2022/yuuvis-client-framework-forms.mjs +1 -4
- package/fesm2022/yuuvis-client-framework-forms.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-details.mjs +22 -5
- package/fesm2022/yuuvis-client-framework-object-details.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-tile-list.mjs +38 -14
- package/fesm2022/yuuvis-client-framework-tile-list.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-widget-grid.mjs +10 -8
- package/fesm2022/yuuvis-client-framework-widget-grid.mjs.map +1 -1
- package/object-details/lib/object-details.component.d.ts +8 -2
- package/package.json +4 -4
- package/tile-list/lib/tile-list/tile-list.component.d.ts +3 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuuvis/client-framework",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.7",
|
|
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.1.
|
|
12
|
-
"@yuuvis/client-shell-core": "^2.1.
|
|
11
|
+
"@yuuvis/client-core": "^2.1.7",
|
|
12
|
+
"@yuuvis/client-shell-core": "^2.1.7",
|
|
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.1.
|
|
19
|
+
"@yuuvis/material": "2.1.7",
|
|
20
20
|
"@yuuvis/media-viewer": "^2.0.4",
|
|
21
21
|
"angular-split": "^19.0.0",
|
|
22
22
|
"tslib": "^2.3.0"
|
|
@@ -4,7 +4,6 @@ import { TileComponent } from '../tile/tile.component';
|
|
|
4
4
|
import { ListItemDirective } from '@yuuvis/client-framework/list';
|
|
5
5
|
import { Pagination } from '@yuuvis/client-framework/pagination';
|
|
6
6
|
import { ObjectFlavor } from '@yuuvis/client-shell-core';
|
|
7
|
-
import { Subscription } from 'rxjs';
|
|
8
7
|
import { TileData, TileListConfigOptions, TileListHighlight } from './tile-list.interface';
|
|
9
8
|
import { PageEvent } from '@angular/material/paginator';
|
|
10
9
|
import * as i0 from "@angular/core";
|
|
@@ -27,7 +26,6 @@ export declare class TileListComponent implements OnInit, OnDestroy {
|
|
|
27
26
|
isTouchDevice: boolean;
|
|
28
27
|
tiles: import("@angular/core").Signal<readonly TileComponent[]>;
|
|
29
28
|
listItems: import("@angular/core").Signal<readonly ListItemDirective[]>;
|
|
30
|
-
searchResultSubscription: Subscription;
|
|
31
29
|
onContextMenu(event: MouseEvent | PointerEvent): void;
|
|
32
30
|
onMouseDown(event: MouseEvent): void;
|
|
33
31
|
onCopy(event: KeyboardEvent): void;
|
|
@@ -64,7 +62,7 @@ export declare class TileListComponent implements OnInit, OnDestroy {
|
|
|
64
62
|
* The search query to be executed
|
|
65
63
|
*/
|
|
66
64
|
query: import("@angular/core").InputSignal<SearchQuery | null | undefined>;
|
|
67
|
-
preselect: import("@angular/core").InputSignal<string[]
|
|
65
|
+
preselect: import("@angular/core").InputSignal<string[]>;
|
|
68
66
|
highlights: import("@angular/core").InputSignal<TileListHighlight[] | null>;
|
|
69
67
|
highlightStyles: import("@angular/core").Signal<Record<string, Record<string, unknown>>>;
|
|
70
68
|
/**
|
|
@@ -96,7 +94,8 @@ export declare class TileListComponent implements OnInit, OnDestroy {
|
|
|
96
94
|
searchExecuted: boolean;
|
|
97
95
|
constructor();
|
|
98
96
|
contextMenuHandler(event: MouseEvent, index: number): void;
|
|
99
|
-
select(i: TileData, evt
|
|
97
|
+
select(i: TileData, evt?: MouseEvent | KeyboardEvent): void;
|
|
98
|
+
selectById(ids: string[]): void;
|
|
100
99
|
onDragSelectChange(sel: number[]): void;
|
|
101
100
|
onDragSelect(sel: number[]): void;
|
|
102
101
|
private _selectByIndex;
|