@yuuvis/client-framework 2.11.3 → 2.12.1
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/actions/lib/actions.interface.d.ts +1 -1
- package/fesm2022/yuuvis-client-framework-actions.mjs +2 -2
- package/fesm2022/yuuvis-client-framework-actions.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-forms.mjs +2 -2
- package/fesm2022/yuuvis-client-framework-forms.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-master-details.mjs +3 -3
- package/fesm2022/yuuvis-client-framework-master-details.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-details.mjs +44 -49
- package/fesm2022/yuuvis-client-framework-object-details.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-form.mjs +3 -3
- package/fesm2022/yuuvis-client-framework-object-form.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-relationship.mjs +2 -2
- package/fesm2022/yuuvis-client-framework-object-relationship.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-popout.mjs +59 -28
- package/fesm2022/yuuvis-client-framework-popout.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-split-view.mjs +0 -1
- package/fesm2022/yuuvis-client-framework-split-view.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-tile-list.mjs +79 -34
- package/fesm2022/yuuvis-client-framework-tile-list.mjs.map +1 -1
- package/object-details/lib/object-metadata/object-metadata.component.d.ts +4 -4
- package/package.json +8 -8
- package/popout/index.d.ts +1 -0
- package/popout/lib/popout-trigger/popout-trigger.component.d.ts +13 -0
- package/popout/lib/popout.component.d.ts +2 -1
- package/popout/lib/popout.interface.d.ts +8 -1
- package/popout/lib/popout.module.d.ts +2 -1
- package/tile-list/lib/tile-list/tile-list.component.d.ts +2 -0
package/popout/index.d.ts
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PopoutComponent } from '../popout.component';
|
|
2
|
+
import { PopoutTriggerConfig } from '../popout.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PopoutTriggerComponent {
|
|
5
|
+
private translate;
|
|
6
|
+
config: import("@angular/core").InputSignal<PopoutTriggerConfig | undefined>;
|
|
7
|
+
popout: import("@angular/core").InputSignal<PopoutComponent | undefined>;
|
|
8
|
+
icon: import("@angular/core").Signal<string>;
|
|
9
|
+
tooltip: import("@angular/core").Signal<any>;
|
|
10
|
+
trigger(e: MouseEvent): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PopoutTriggerComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PopoutTriggerComponent, "yuv-popout-trigger", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "popout": { "alias": "popout"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
@@ -43,6 +43,7 @@ export declare class PopoutComponent implements OnDestroy {
|
|
|
43
43
|
* Emitted when the child component is popped in again
|
|
44
44
|
*/
|
|
45
45
|
popIn: import("@angular/core").OutputEmitterRef<boolean>;
|
|
46
|
+
poppedOut: import("@angular/core").Signal<boolean>;
|
|
46
47
|
get isPoppedOut(): boolean;
|
|
47
48
|
pop(e: MouseEvent): void;
|
|
48
49
|
private _popIn;
|
|
@@ -54,5 +55,5 @@ export declare class PopoutComponent implements OnDestroy {
|
|
|
54
55
|
private _observeFutureStyleChanges;
|
|
55
56
|
ngOnDestroy(): void;
|
|
56
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopoutComponent, never>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PopoutComponent, "yuv-popout",
|
|
58
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PopoutComponent, "yuv-popout", ["yuvPopout"], { "triggerPosition": { "alias": "triggerPosition"; "required": false; "isSignal": true; }; "triggerIcon": { "alias": "triggerIcon"; "required": false; "isSignal": true; }; "triggerTooltip": { "alias": "triggerTooltip"; "required": false; "isSignal": true; }; "popoutWindowConfig": { "alias": "popoutWindowConfig"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "popOut": "popOut"; "popIn": "popIn"; }, never, ["*"], true, never>;
|
|
58
59
|
}
|
|
@@ -2,7 +2,14 @@ export declare enum PopoutTriggerPosition {
|
|
|
2
2
|
TOP_LEFT = "tl",
|
|
3
3
|
TOP_RIGHT = "tr",
|
|
4
4
|
BOTTOM_LEFT = "bl",
|
|
5
|
-
BOTTOM_RIGHT = "br"
|
|
5
|
+
BOTTOM_RIGHT = "br",
|
|
6
|
+
NONE = "none"
|
|
7
|
+
}
|
|
8
|
+
export interface PopoutTriggerConfig {
|
|
9
|
+
popoutIcon?: string;
|
|
10
|
+
popinIcon?: string;
|
|
11
|
+
popoutTooltip?: string;
|
|
12
|
+
popinTooltip?: string;
|
|
6
13
|
}
|
|
7
14
|
export interface PopoutWindowConfig {
|
|
8
15
|
title?: string;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./popout.component";
|
|
3
|
+
import * as i2 from "./popout-trigger/popout-trigger.component";
|
|
3
4
|
export declare class YuvPopoutModule {
|
|
4
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<YuvPopoutModule, never>;
|
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<YuvPopoutModule, never, [typeof i1.PopoutComponent], [typeof i1.PopoutComponent]>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<YuvPopoutModule, never, [typeof i1.PopoutComponent, typeof i2.PopoutTriggerComponent], [typeof i1.PopoutComponent, typeof i2.PopoutTriggerComponent]>;
|
|
6
7
|
static ɵinj: i0.ɵɵInjectorDeclaration<YuvPopoutModule>;
|
|
7
8
|
}
|
|
@@ -131,6 +131,7 @@ export declare class TileListComponent implements OnInit {
|
|
|
131
131
|
totalCount: number;
|
|
132
132
|
}): void;
|
|
133
133
|
onListItemsSelect(sel: number[]): void;
|
|
134
|
+
onDragSelectChange(sel: number[]): void;
|
|
134
135
|
refresh(): void;
|
|
135
136
|
dropItems(objects: DmsObject[]): void;
|
|
136
137
|
applyFlavor(flavor: ObjectFlavor): void;
|
|
@@ -170,6 +171,7 @@ export declare class TileListComponent implements OnInit {
|
|
|
170
171
|
* it wraps around to the last item. Does nothing if no item is currently selected.
|
|
171
172
|
*/
|
|
172
173
|
selectPrev(): void;
|
|
174
|
+
menuItemClicked(t: TileData, event: Event): void;
|
|
173
175
|
private _selectionToTileData;
|
|
174
176
|
ngOnInit(): void;
|
|
175
177
|
static ɵfac: i0.ɵɵFactoryDeclaration<TileListComponent, never>;
|