@yuuvis/client-framework 2.3.16 → 2.3.17

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuuvis/client-framework",
3
- "version": "2.3.16",
3
+ "version": "2.3.17",
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.16",
12
- "@yuuvis/client-shell-core": "^2.3.16",
11
+ "@yuuvis/client-core": "^2.3.17",
12
+ "@yuuvis/client-shell-core": "^2.3.17",
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.16",
19
+ "@yuuvis/material": "2.3.17",
20
20
  "@yuuvis/media-viewer": "^2.0.11",
21
21
  "angular-split": "^19.0.0",
22
22
  "tslib": "^2.3.0"
@@ -51,6 +51,10 @@
51
51
  "types": "./common/index.d.ts",
52
52
  "default": "./fesm2022/yuuvis-client-framework-common.mjs"
53
53
  },
54
+ "./forms": {
55
+ "types": "./forms/index.d.ts",
56
+ "default": "./fesm2022/yuuvis-client-framework-forms.mjs"
57
+ },
54
58
  "./datepicker": {
55
59
  "types": "./datepicker/index.d.ts",
56
60
  "default": "./fesm2022/yuuvis-client-framework-datepicker.mjs"
@@ -59,10 +63,6 @@
59
63
  "types": "./icons/index.d.ts",
60
64
  "default": "./fesm2022/yuuvis-client-framework-icons.mjs"
61
65
  },
62
- "./forms": {
63
- "types": "./forms/index.d.ts",
64
- "default": "./fesm2022/yuuvis-client-framework-forms.mjs"
65
- },
66
66
  "./list": {
67
67
  "types": "./list/index.d.ts",
68
68
  "default": "./fesm2022/yuuvis-client-framework-list.mjs"
@@ -1,13 +1,17 @@
1
+ import { TranslateService } from '@yuuvis/client-core';
1
2
  import { AbstractRendererComponent } from './abstract.renderer';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class TableRendererComponent extends AbstractRendererComponent<any[]> {
4
5
  #private;
6
+ readonly translate: TranslateService;
5
7
  protected tableHeaders: import("@angular/core").Signal<{
6
- key: string;
7
- label: string;
8
+ id: string;
9
+ key: any;
10
+ label: any;
8
11
  }[]>;
9
12
  protected tableData: import("@angular/core").Signal<any[]>;
10
13
  protected reducedData: import("@angular/core").Signal<boolean>;
14
+ protected getCellValue(row: any[], key: string): any;
11
15
  static ɵfac: i0.ɵɵFactoryDeclaration<TableRendererComponent, never>;
12
16
  static ɵcmp: i0.ɵɵComponentDeclaration<TableRendererComponent, "yuv-table-renderer", never, {}, {}, never, never, true, never>;
13
17
  }
@@ -10,7 +10,6 @@ export declare class SplitAreaDirective {
10
10
  panelClass: import("@angular/core").InputSignal<string | undefined>;
11
11
  visible: import("@angular/core").InputSignal<boolean>;
12
12
  lockSize: import("@angular/core").InputSignal<boolean>;
13
- efff: import("@angular/core").EffectRef;
14
13
  areaProperties: import("@angular/core").WritableSignal<{
15
14
  size: SplitAreaSize | undefined;
16
15
  visible: boolean;
@@ -1,34 +0,0 @@
1
- import { AfterViewInit } from '@angular/core';
2
- import { SplitViewLayoutSettings, SplitViewOutputData } from '@yuuvis/client-framework/split-view';
3
- import { SplitComponent, SplitDirection } from 'angular-split';
4
- import { YuvPaneDirective } from './pane.directive';
5
- import { MasterDetailsPaneLayoutOptions, PaneLayoutSettings } from './master-details-pane.interface';
6
- import * as i0 from "@angular/core";
7
- /**
8
- * Master details pane component. This component is used to create viewports with
9
- * a variety of master-details layouts.
10
- */
11
- export declare class YuvMasterDetailsPaneComponent implements AfterViewInit {
12
- #private;
13
- panes: import("@angular/core").Signal<readonly YuvPaneDirective[]>;
14
- asSplitComponent: import("@angular/core").Signal<SplitComponent>;
15
- layoutSettingsID: import("@angular/core").InputSignal<string | undefined>;
16
- options: import("@angular/core").InputSignal<MasterDetailsPaneLayoutOptions>;
17
- /**
18
- * The split views direction. Could be 'horizontal' or 'vertical'. Defaults to 'horizontal'.
19
- */
20
- direction: import("@angular/core").InputSignal<SplitDirection>;
21
- /**
22
- * Size of the gutter in Pixel.
23
- */
24
- gutterSize: import("@angular/core").InputSignal<number>;
25
- _gutterSize: import("@angular/core").WritableSignal<number>;
26
- detailsActive: import("@angular/core").InputSignal<boolean>;
27
- paneProps(p: YuvPaneDirective): PaneLayoutSettings;
28
- paneToggled(collapsed: boolean, pane: YuvPaneDirective, index: number): void;
29
- onDragEnd(e: SplitViewOutputData): void;
30
- applyLayoutSettings(settings: SplitViewLayoutSettings): void;
31
- ngAfterViewInit(): void;
32
- static ɵfac: i0.ɵɵFactoryDeclaration<YuvMasterDetailsPaneComponent, never>;
33
- static ɵcmp: i0.ɵɵComponentDeclaration<YuvMasterDetailsPaneComponent, "yuv-master-details-pane", never, { "layoutSettingsID": { "alias": "layoutSettingsID"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "gutterSize": { "alias": "gutterSize"; "required": false; "isSignal": true; }; "detailsActive": { "alias": "detailsActive"; "required": false; "isSignal": true; }; }, {}, ["panes"], never, true, never>;
34
- }
@@ -1,17 +0,0 @@
1
- import { SplitAreaSize } from "angular-split";
2
- export interface MasterDetailsPaneLayoutOptions {
3
- contextSize?: number | 'auto';
4
- contextMinSize?: number;
5
- contextMaxSize?: number;
6
- detailsSize?: number | 'auto';
7
- detailsMinSize?: number;
8
- detailsMaxSize?: number;
9
- resizable: boolean;
10
- }
11
- export interface PaneLayoutSettings {
12
- visible?: boolean;
13
- lockSize?: boolean;
14
- size?: SplitAreaSize;
15
- minSize?: number;
16
- maxSize?: number;
17
- }
@@ -1,15 +0,0 @@
1
- import { TemplateRef } from '@angular/core';
2
- import { PaneLayoutSettings } from './master-details-pane.interface';
3
- import * as i0 from "@angular/core";
4
- export declare class YuvPaneDirective {
5
- #private;
6
- template: TemplateRef<any>;
7
- role: import("@angular/core").InputSignal<"master" | "details" | "context">;
8
- collapsable: import("@angular/core").InputSignal<boolean>;
9
- topBarActions: import("@angular/core").InputSignal<TemplateRef<any> | undefined>;
10
- collapsed: import("@angular/core").WritableSignal<boolean>;
11
- updateSettings(s: PaneLayoutSettings): void;
12
- areaProperties: import("@angular/core").WritableSignal<PaneLayoutSettings>;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<YuvPaneDirective, never>;
14
- static ɵdir: i0.ɵɵDirectiveDeclaration<YuvPaneDirective, "[yuvPane]", never, { "role": { "alias": "role"; "required": false; "isSignal": true; }; "collapsable": { "alias": "collapsable"; "required": false; "isSignal": true; }; "topBarActions": { "alias": "topBarActions"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
15
- }