@yuuvis/client-framework 2.1.8 → 2.1.10
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/common/lib/services/layout-settings/layout-settings.service.d.ts +1 -0
- package/fesm2022/yuuvis-client-framework-common.mjs +3 -2
- package/fesm2022/yuuvis-client-framework-common.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-list.mjs +7 -2
- package/fesm2022/yuuvis-client-framework-list.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-metadata-form-defaults.mjs +1 -1
- package/fesm2022/yuuvis-client-framework-metadata-form-defaults.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-metadata-form.mjs +48 -18
- package/fesm2022/yuuvis-client-framework-metadata-form.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-details.mjs +23 -8
- package/fesm2022/yuuvis-client-framework-object-details.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-summary.mjs +120 -118
- package/fesm2022/yuuvis-client-framework-object-summary.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-versions.mjs +177 -0
- package/fesm2022/yuuvis-client-framework-object-versions.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-overflow-hidden.mjs +70 -0
- package/fesm2022/yuuvis-client-framework-overflow-hidden.mjs.map +1 -0
- package/fesm2022/yuuvis-client-framework-widget-grid.mjs +7 -4
- package/fesm2022/yuuvis-client-framework-widget-grid.mjs.map +1 -1
- package/lib/assets/i18n/de.json +8 -0
- package/lib/assets/i18n/en.json +8 -0
- package/list/lib/list.component.d.ts +1 -0
- package/metadata-form/lib/metadata-form-element-registry.service.d.ts +1 -0
- package/metadata-form/lib/object-metadata-element-template.directive.d.ts +23 -5
- package/object-details/lib/object-details-header/object-details-header.component.d.ts +12 -1
- package/object-details/lib/object-details.component.d.ts +5 -0
- package/object-form/README.md +43 -0
- package/object-summary/lib/object-summary.module.d.ts +7 -5
- package/object-versions/README.md +3 -0
- package/object-versions/index.d.ts +2 -0
- package/object-versions/lib/object-versions.component.d.ts +30 -0
- package/object-versions/lib/object-versions.module.d.ts +7 -0
- package/overflow-hidden/README.md +3 -0
- package/overflow-hidden/index.d.ts +2 -0
- package/overflow-hidden/lib/overflow-hidden.component.d.ts +19 -0
- package/overflow-hidden/lib/overflow-hidden.module.d.ts +7 -0
- package/package.json +12 -4
- package/widget-grid/lib/widget-grid.component.d.ts +1 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { DmsObject, VirtualObjectType } from '@yuuvis/client-core';
|
|
2
|
+
import { ListComponent } from '@yuuvis/client-framework/list';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ObjectVersionsComponent {
|
|
5
|
+
#private;
|
|
6
|
+
private translate;
|
|
7
|
+
versionList: import("@angular/core").Signal<ListComponent | undefined>;
|
|
8
|
+
dmsObject: import("@angular/core").InputSignal<DmsObject>;
|
|
9
|
+
/**
|
|
10
|
+
* Object type to use for retrieving header data
|
|
11
|
+
*/
|
|
12
|
+
type: import("@angular/core").InputSignal<VirtualObjectType>;
|
|
13
|
+
/**
|
|
14
|
+
* If the object config for the given type has been stored in a certain bucket, this
|
|
15
|
+
* bucket can be provided here. If no bucket is set, the config will be retrieved
|
|
16
|
+
* from the main object config
|
|
17
|
+
*/
|
|
18
|
+
objectConfigBucket: import("@angular/core").InputSignal<string | undefined>;
|
|
19
|
+
objectRestored: import("@angular/core").OutputEmitterRef<number>;
|
|
20
|
+
splitGutterSize: number;
|
|
21
|
+
busy: import("@angular/core").WritableSignal<boolean>;
|
|
22
|
+
versions: import("@angular/core").WritableSignal<DmsObject[]>;
|
|
23
|
+
selectedVersion: import("@angular/core").WritableSignal<DmsObject | undefined>;
|
|
24
|
+
error: import("@angular/core").WritableSignal<string | undefined>;
|
|
25
|
+
itemSelected(selectedIndex: number[]): void;
|
|
26
|
+
downloadCurrentVersion(): void;
|
|
27
|
+
restoreCurrentVersion(): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectVersionsComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ObjectVersionsComponent, "yuv-object-versions", never, { "dmsObject": { "alias": "dmsObject"; "required": true; "isSignal": true; }; "type": { "alias": "type"; "required": true; "isSignal": true; }; "objectConfigBucket": { "alias": "objectConfigBucket"; "required": false; "isSignal": true; }; }, { "objectRestored": "objectRestored"; }, never, never, true, never>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./object-versions.component";
|
|
3
|
+
export declare class YuvObjectVersionsModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<YuvObjectVersionsModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<YuvObjectVersionsModule, never, [typeof i1.ObjectVersionsComponent], [typeof i1.ObjectVersionsComponent]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<YuvObjectVersionsModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { AfterViewInit, OnDestroy, TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* This component is designed to switch the rendered content when it is overflowing due to
|
|
5
|
+
* resizing. If there is enough available space you can render the 'real' component. If there
|
|
6
|
+
* is not enough space to render the whole component anymore (it would overflow) another component
|
|
7
|
+
* can take it's place. If you do not specify that replace-component, the component will just
|
|
8
|
+
* disappear and make room for other more important components.
|
|
9
|
+
*/
|
|
10
|
+
export declare class OverflowHiddenComponent implements AfterViewInit, OnDestroy {
|
|
11
|
+
#private;
|
|
12
|
+
defaultSlot: import("@angular/core").Signal<TemplateRef<any>>;
|
|
13
|
+
overflowSlot: import("@angular/core").Signal<TemplateRef<any> | undefined>;
|
|
14
|
+
overflow: import("@angular/core").WritableSignal<boolean>;
|
|
15
|
+
ngAfterViewInit(): void;
|
|
16
|
+
ngOnDestroy(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverflowHiddenComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OverflowHiddenComponent, "yuv-overflow-hidden", never, {}, {}, ["defaultSlot", "overflowSlot"], never, true, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./overflow-hidden.component";
|
|
3
|
+
export declare class YuvOverflowHiddenModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<YuvOverflowHiddenModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<YuvOverflowHiddenModule, never, [typeof i1.OverflowHiddenComponent], [typeof i1.OverflowHiddenComponent]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<YuvOverflowHiddenModule>;
|
|
7
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuuvis/client-framework",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.10",
|
|
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.10",
|
|
12
|
+
"@yuuvis/client-shell-core": "^2.1.10",
|
|
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.10",
|
|
20
20
|
"@yuuvis/media-viewer": "^2.0.4",
|
|
21
21
|
"angular-split": "^19.0.0",
|
|
22
22
|
"tslib": "^2.3.0"
|
|
@@ -99,6 +99,14 @@
|
|
|
99
99
|
"types": "./object-summary/index.d.ts",
|
|
100
100
|
"default": "./fesm2022/yuuvis-client-framework-object-summary.mjs"
|
|
101
101
|
},
|
|
102
|
+
"./object-versions": {
|
|
103
|
+
"types": "./object-versions/index.d.ts",
|
|
104
|
+
"default": "./fesm2022/yuuvis-client-framework-object-versions.mjs"
|
|
105
|
+
},
|
|
106
|
+
"./overflow-hidden": {
|
|
107
|
+
"types": "./overflow-hidden/index.d.ts",
|
|
108
|
+
"default": "./fesm2022/yuuvis-client-framework-overflow-hidden.mjs"
|
|
109
|
+
},
|
|
102
110
|
"./overflow-menu": {
|
|
103
111
|
"types": "./overflow-menu/index.d.ts",
|
|
104
112
|
"default": "./fesm2022/yuuvis-client-framework-overflow-menu.mjs"
|
|
@@ -8,6 +8,7 @@ export declare class YuvWidgetGridComponent {
|
|
|
8
8
|
widgetPicker: import("@angular/core").Signal<TemplateRef<any>>;
|
|
9
9
|
options: GridsterConfig;
|
|
10
10
|
gridConfig: import("@angular/core").InputSignal<WidgetGridConfig | undefined>;
|
|
11
|
+
_editMode: import("@angular/core").WritableSignal<boolean>;
|
|
11
12
|
/**
|
|
12
13
|
* Whether or not to enable edit mode. In edit mode controls
|
|
13
14
|
* for editing existing tiles and creating new ones are shown.
|