@yuuvis/client-framework 2.11.2 → 2.12.0

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 (29) hide show
  1. package/actions/lib/actions.interface.d.ts +1 -1
  2. package/fesm2022/yuuvis-client-framework-actions.mjs +2 -2
  3. package/fesm2022/yuuvis-client-framework-actions.mjs.map +1 -1
  4. package/fesm2022/yuuvis-client-framework-forms.mjs +2 -2
  5. package/fesm2022/yuuvis-client-framework-forms.mjs.map +1 -1
  6. package/fesm2022/yuuvis-client-framework-master-details.mjs +3 -3
  7. package/fesm2022/yuuvis-client-framework-master-details.mjs.map +1 -1
  8. package/fesm2022/yuuvis-client-framework-object-details.mjs +44 -49
  9. package/fesm2022/yuuvis-client-framework-object-details.mjs.map +1 -1
  10. package/fesm2022/yuuvis-client-framework-object-form.mjs +3 -3
  11. package/fesm2022/yuuvis-client-framework-object-form.mjs.map +1 -1
  12. package/fesm2022/yuuvis-client-framework-object-relationship.mjs +4 -2
  13. package/fesm2022/yuuvis-client-framework-object-relationship.mjs.map +1 -1
  14. package/fesm2022/yuuvis-client-framework-popout.mjs +59 -28
  15. package/fesm2022/yuuvis-client-framework-popout.mjs.map +1 -1
  16. package/fesm2022/yuuvis-client-framework-split-view.mjs +0 -1
  17. package/fesm2022/yuuvis-client-framework-split-view.mjs.map +1 -1
  18. package/fesm2022/yuuvis-client-framework-tile-list.mjs +71 -34
  19. package/fesm2022/yuuvis-client-framework-tile-list.mjs.map +1 -1
  20. package/lib/assets/i18n/de.json +2 -0
  21. package/lib/assets/i18n/en.json +2 -0
  22. package/object-details/lib/object-metadata/object-metadata.component.d.ts +4 -4
  23. package/package.json +4 -4
  24. package/popout/index.d.ts +1 -0
  25. package/popout/lib/popout-trigger/popout-trigger.component.d.ts +13 -0
  26. package/popout/lib/popout.component.d.ts +2 -1
  27. package/popout/lib/popout.interface.d.ts +8 -1
  28. package/popout/lib/popout.module.d.ts +2 -1
  29. package/tile-list/lib/tile-list/tile-list.component.d.ts +1 -0
package/popout/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './lib/popout.module';
2
2
  export * from './lib/popout.component';
3
3
  export * from './lib/popout.interface';
4
+ export * from './lib/popout-trigger/popout-trigger.component';
@@ -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", never, { "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
+ 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;