@yuuvis/client-framework 2.4.1 → 2.4.3
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-autocomplete.mjs +11 -1
- package/fesm2022/yuuvis-client-framework-autocomplete.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-forms.mjs +118 -117
- package/fesm2022/yuuvis-client-framework-forms.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-list.mjs +38 -6
- 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-object-relationship.mjs +63 -47
- package/fesm2022/yuuvis-client-framework-object-relationship.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-renderer.mjs +82 -7
- package/fesm2022/yuuvis-client-framework-renderer.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-tile-list.mjs +135 -177
- package/fesm2022/yuuvis-client-framework-tile-list.mjs.map +1 -1
- package/forms/lib/elements/data-grid/data-grid/data-grid.component.d.ts +3 -3
- package/forms/lib/elements/organization/organization.component.d.ts +6 -11
- package/forms/lib/elements/organization-set/organization-set.component.d.ts +3 -5
- package/lib/assets/i18n/de.json +1 -0
- package/lib/assets/i18n/en.json +1 -0
- package/list/index.d.ts +1 -0
- package/list/lib/list-tile/list-tile.component.d.ts +14 -0
- package/list/lib/list.component.d.ts +1 -0
- package/list/lib/list.module.d.ts +2 -1
- package/object-relationship/lib/actions/add-relationship/add-relationship.component.d.ts +3 -1
- package/object-relationship/lib/object-relationship.component.d.ts +1 -0
- package/object-relationship/lib/object-relationship.const.d.ts +4 -0
- package/package.json +8 -8
- package/renderer/lib/property-renderer/organization.renderer.d.ts +7 -1
- package/tile-list/index.d.ts +1 -1
- package/tile-list/lib/tile-actions-menu/tile-actions-menu.component.d.ts +11 -0
- package/tile-list/lib/tile-list/tile-list.component.d.ts +18 -24
- package/tile-list/lib/tile/tile.component.d.ts +0 -22
|
@@ -19,7 +19,6 @@ import * as i0 from "@angular/core";
|
|
|
19
19
|
*/
|
|
20
20
|
export declare class OrganizationSetComponent extends AbstractMatFormField<string | string[] | undefined> implements ControlValueAccessor, OnDestroy, OnInit {
|
|
21
21
|
#private;
|
|
22
|
-
types: import("@angular/core").InputSignal<string[] | undefined>;
|
|
23
22
|
/**
|
|
24
23
|
* Possibles values are `EDIT` (default),`SEARCH`,`CREATE`. In search situation validation of the form element will be turned off, so you are able to enter search terms that do not meet the elements validators.
|
|
25
24
|
*/
|
|
@@ -41,9 +40,8 @@ export declare class OrganizationSetComponent extends AbstractMatFormField<strin
|
|
|
41
40
|
* Minimum length of the autocomplete input before a query is sent to the server.
|
|
42
41
|
*/
|
|
43
42
|
autocompleteMinLength: import("@angular/core").InputSignal<number>;
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
get classifications(): string[] | undefined;
|
|
43
|
+
classifications: import("@angular/core").InputSignal<string[] | undefined>;
|
|
44
|
+
types: import("@angular/core").InputSignal<string[] | undefined>;
|
|
47
45
|
busy: import("@angular/core").WritableSignal<boolean>;
|
|
48
46
|
acFormControl: FormControl<AutocompleteItem | AutocompleteItem[] | null | undefined>;
|
|
49
47
|
ngControl: import("@angular/forms").NgControl | null;
|
|
@@ -59,5 +57,5 @@ export declare class OrganizationSetComponent extends AbstractMatFormField<strin
|
|
|
59
57
|
ngOnInit(): void;
|
|
60
58
|
ngOnDestroy(): void;
|
|
61
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<OrganizationSetComponent, never>;
|
|
62
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OrganizationSetComponent, "yuv-organization-set", never, { "
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OrganizationSetComponent, "yuv-organization-set", never, { "situation": { "alias": "situation"; "required": false; "isSignal": true; }; "multiselect": { "alias": "multiselect"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "withMetadata": { "alias": "withMetadata"; "required": false; "isSignal": true; }; "autocompleteMinLength": { "alias": "autocompleteMinLength"; "required": false; "isSignal": true; }; "classifications": { "alias": "classifications"; "required": false; "isSignal": true; }; "types": { "alias": "types"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
63
61
|
}
|
package/lib/assets/i18n/de.json
CHANGED
|
@@ -122,6 +122,7 @@
|
|
|
122
122
|
"cm.app.cases.action.add-link.search.relation.label": "Verweistyp",
|
|
123
123
|
"yuv.object-relationship.action.add-relationship.description": "",
|
|
124
124
|
"yuv.object-relationship.action.add-relationship.label": "Verweis hinzufügen",
|
|
125
|
+
"yuv.object-relationship.add-relation.error-message": "Fehler beim Hinzufügen des Verweises.",
|
|
125
126
|
"yuv.object-relationship.add-relationship.action.cancel": "Abbrechen",
|
|
126
127
|
"yuv.object-relationship.add-relationship.action.submit": "Verweis hinzufügen",
|
|
127
128
|
"yuv.object-relationship.add-relationship.error.invalidRelationTargetCombination": "Der ausgewählte Verweistyp ist für das gewählte Zielobjekt nicht gültig.",
|
package/lib/assets/i18n/en.json
CHANGED
|
@@ -122,6 +122,7 @@
|
|
|
122
122
|
"cm.app.cases.action.add-link.search.relation.label": "Relation type",
|
|
123
123
|
"yuv.object-relationship.action.add-relationship.description": "",
|
|
124
124
|
"yuv.object-relationship.action.add-relationship.label": "Add relation",
|
|
125
|
+
"yuv.object-relationship.add-relation.error-message": "Failed to add relation.",
|
|
125
126
|
"yuv.object-relationship.add-relationship.action.cancel": "Cancel",
|
|
126
127
|
"yuv.object-relationship.add-relationship.action.submit": "Add relation",
|
|
127
128
|
"yuv.object-relationship.add-relationship.error.invalidRelationTargetCombination": "The selected relation type is not valid for the chosen target object.",
|
package/list/index.d.ts
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ListTileComponent {
|
|
4
|
+
iconSlot: import("@angular/core").Signal<TemplateRef<any> | undefined>;
|
|
5
|
+
titleSlot: import("@angular/core").Signal<TemplateRef<any> | undefined>;
|
|
6
|
+
descriptionSlot: import("@angular/core").Signal<TemplateRef<any> | undefined>;
|
|
7
|
+
asideSlot: import("@angular/core").Signal<TemplateRef<any> | undefined>;
|
|
8
|
+
actionsSlot: import("@angular/core").Signal<TemplateRef<any> | undefined>;
|
|
9
|
+
badgesSlot: import("@angular/core").Signal<TemplateRef<any> | undefined>;
|
|
10
|
+
metaSlot: import("@angular/core").Signal<TemplateRef<any> | undefined>;
|
|
11
|
+
extensionSlot: import("@angular/core").Signal<TemplateRef<any> | undefined>;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListTileComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListTileComponent, "yuv-list-tile", never, {}, {}, ["iconSlot", "titleSlot", "descriptionSlot", "asideSlot", "actionsSlot", "badgesSlot", "metaSlot", "extensionSlot"], ["*"], true, never>;
|
|
14
|
+
}
|
|
@@ -54,6 +54,7 @@ export declare class ListComponent implements AfterContentInit, OnDestroy {
|
|
|
54
54
|
*/
|
|
55
55
|
disableSelection: import("@angular/core").InputSignal<boolean>;
|
|
56
56
|
focus(): void;
|
|
57
|
+
multiSelect(index: number[]): void;
|
|
57
58
|
select(index: number, shiftKey?: boolean, ctrlKey?: boolean): void;
|
|
58
59
|
/**
|
|
59
60
|
* Clear the current selection.
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./list.component";
|
|
3
3
|
import * as i2 from "./list-item.directive";
|
|
4
|
+
import * as i3 from "./list-tile/list-tile.component";
|
|
4
5
|
export declare class YuvListModule {
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<YuvListModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<YuvListModule, never, [typeof i1.ListComponent, typeof i2.ListItemDirective], [typeof i1.ListComponent, typeof i2.ListItemDirective]>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<YuvListModule, never, [typeof i1.ListComponent, typeof i2.ListItemDirective, typeof i3.ListTileComponent], [typeof i1.ListComponent, typeof i2.ListItemDirective, typeof i3.ListTileComponent]>;
|
|
7
8
|
static ɵinj: i0.ɵɵInjectorDeclaration<YuvListModule>;
|
|
8
9
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { FormControl, FormGroup } from '@angular/forms';
|
|
2
|
-
import { DmsObject, Relationship } from '@yuuvis/client-core';
|
|
2
|
+
import { DmsObject, Relationship, TranslateService } from '@yuuvis/client-core';
|
|
3
3
|
import { RelationshipComponentConfig } from '../../object-relationship.interface';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class AddRelationshipComponent {
|
|
6
6
|
#private;
|
|
7
|
+
readonly translate: TranslateService;
|
|
7
8
|
object: import("@angular/core").InputSignal<DmsObject>;
|
|
8
9
|
config: import("@angular/core").InputSignal<RelationshipComponentConfig>;
|
|
9
10
|
supportedRelationships: import("@angular/core").Signal<Relationship[]>;
|
|
@@ -17,6 +18,7 @@ export declare class AddRelationshipComponent {
|
|
|
17
18
|
targetObject: FormControl<Record<string, unknown> | null>;
|
|
18
19
|
}>;
|
|
19
20
|
busy: import("@angular/core").WritableSignal<boolean>;
|
|
21
|
+
error: import("@angular/core").WritableSignal<string | null>;
|
|
20
22
|
optionCompareWith(o1: Relationship | undefined, o2: Relationship | undefined): boolean;
|
|
21
23
|
submit(): void;
|
|
22
24
|
close(): void;
|
|
@@ -16,6 +16,7 @@ export declare class ObjectRelationshipComponent {
|
|
|
16
16
|
config: import("@angular/core").InputSignal<RelationshipComponentConfig>;
|
|
17
17
|
originObject: import("@angular/core").WritableSignal<DmsObject | null>;
|
|
18
18
|
supportedRelationships: import("@angular/core").Signal<Relationship[]>;
|
|
19
|
+
busy: import("@angular/core").WritableSignal<boolean>;
|
|
19
20
|
relationActions: import("@angular/core").InputSignal<TemplateRef<any> | null>;
|
|
20
21
|
toggleMode(): void;
|
|
21
22
|
addRelationship(): void;
|
|
@@ -5,3 +5,7 @@ export declare const NODE_SETTINGS: Partial<Node>;
|
|
|
5
5
|
export declare const NODE_FONT_SETTINGS: Font;
|
|
6
6
|
export declare const EDGE_SETTINGS: Partial<Edge>;
|
|
7
7
|
export declare const EDGE_FONT_SETTINGS: Font;
|
|
8
|
+
export declare const ADD_RELATIONSHIP_DIALOG_OPTIONS: {
|
|
9
|
+
width: string;
|
|
10
|
+
maxWidth: string;
|
|
11
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuuvis/client-framework",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.3",
|
|
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.4.
|
|
12
|
-
"@yuuvis/client-shell-core": "^2.4.
|
|
11
|
+
"@yuuvis/client-core": "^2.4.3",
|
|
12
|
+
"@yuuvis/client-shell-core": "^2.4.3",
|
|
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.4.
|
|
19
|
+
"@yuuvis/material": "2.4.3",
|
|
20
20
|
"@yuuvis/media-viewer": "^2.0.11",
|
|
21
21
|
"angular-split": "^19.0.0",
|
|
22
22
|
"vis-network": "^10.0.2",
|
|
@@ -52,14 +52,14 @@
|
|
|
52
52
|
"types": "./common/index.d.ts",
|
|
53
53
|
"default": "./fesm2022/yuuvis-client-framework-common.mjs"
|
|
54
54
|
},
|
|
55
|
-
"./forms": {
|
|
56
|
-
"types": "./forms/index.d.ts",
|
|
57
|
-
"default": "./fesm2022/yuuvis-client-framework-forms.mjs"
|
|
58
|
-
},
|
|
59
55
|
"./datepicker": {
|
|
60
56
|
"types": "./datepicker/index.d.ts",
|
|
61
57
|
"default": "./fesm2022/yuuvis-client-framework-datepicker.mjs"
|
|
62
58
|
},
|
|
59
|
+
"./forms": {
|
|
60
|
+
"types": "./forms/index.d.ts",
|
|
61
|
+
"default": "./fesm2022/yuuvis-client-framework-forms.mjs"
|
|
62
|
+
},
|
|
63
63
|
"./icons": {
|
|
64
64
|
"types": "./icons/index.d.ts",
|
|
65
65
|
"default": "./fesm2022/yuuvis-client-framework-icons.mjs"
|
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
import { AbstractRendererComponent } from './abstract.renderer';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class OrganizationRendererComponent extends AbstractRendererComponent {
|
|
4
|
-
|
|
4
|
+
#private;
|
|
5
|
+
resolvedValue: import("@angular/core").Signal<string[]>;
|
|
6
|
+
userAndRole: import("@angular/core").WritableSignal<{
|
|
7
|
+
type: string;
|
|
8
|
+
label: any;
|
|
9
|
+
}[] | undefined>;
|
|
10
|
+
userAndRoleLoading: import("@angular/core").Signal<boolean>;
|
|
5
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<OrganizationRendererComponent, never>;
|
|
6
12
|
static ɵcmp: i0.ɵɵComponentDeclaration<OrganizationRendererComponent, "yuv-organization-renderer", never, {}, {}, never, never, true, never>;
|
|
7
13
|
}
|
package/tile-list/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from './lib/tile-list/tile-list.interface';
|
|
2
2
|
export * from './lib/tile-list/tile-list.component';
|
|
3
|
-
export * from './lib/tile/tile.component';
|
|
3
|
+
export * from './lib/tile-actions-menu/tile-actions-menu.component';
|
|
4
4
|
export * from './lib/tile-config/tile-config.component';
|
|
5
5
|
export * from './lib/tile-config/property-select/property-select.component';
|
|
6
6
|
export * from './lib/tile-config/tile-config-trigger/tile-config-trigger.component';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { MatMenu } from '@angular/material/menu';
|
|
2
|
+
import { Action } from '@yuuvis/client-framework/actions';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TileActionsMenuComponent {
|
|
5
|
+
actions: import("@angular/core").InputSignal<Action[]>;
|
|
6
|
+
itemSelect: import("@angular/core").OutputEmitterRef<Action>;
|
|
7
|
+
matMenu: import("@angular/core").Signal<MatMenu>;
|
|
8
|
+
itemClicked(event: Event, action: Action): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TileActionsMenuComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TileActionsMenuComponent, "yuv-tile-actions-menu", never, { "actions": { "alias": "actions"; "required": true; "isSignal": true; }; }, { "itemSelect": "itemSelect"; }, never, never, true, never>;
|
|
11
|
+
}
|
|
@@ -1,37 +1,27 @@
|
|
|
1
1
|
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { DmsObject, SearchQuery } from '@yuuvis/client-core';
|
|
3
|
-
import { TileComponent } from '../tile/tile.component';
|
|
4
3
|
import { PageEvent } from '@angular/material/paginator';
|
|
5
|
-
import {
|
|
4
|
+
import { Action } from '@yuuvis/client-framework/actions';
|
|
5
|
+
import { ListComponent, ListTileComponent } from '@yuuvis/client-framework/list';
|
|
6
6
|
import { Pagination } from '@yuuvis/client-framework/pagination';
|
|
7
7
|
import { ObjectFlavor } from '@yuuvis/client-shell-core';
|
|
8
8
|
import { TileData, TileListConfigOptions, TileListHighlight } from './tile-list.interface';
|
|
9
|
+
import { MatMenu } from '@angular/material/menu';
|
|
10
|
+
import { TileActionsMenuComponent } from '../tile-actions-menu/tile-actions-menu.component';
|
|
9
11
|
import * as i0 from "@angular/core";
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
*
|
|
14
|
-
* ## Paging
|
|
15
|
-
* If the search result contains more items than the page size, the list will show a
|
|
16
|
-
* pagination control to navigate inbetween the pages.
|
|
17
|
-
*
|
|
18
|
-
* ## Staggered animation
|
|
19
|
-
* Adding a class of `staggered` to the `yuv-tile-list` component will animate
|
|
20
|
-
* the tiles in a staggered way (only if the user has not set up the OS to not
|
|
21
|
-
* play animation).
|
|
22
|
-
*/
|
|
12
|
+
type InnerTileData = TileData & {
|
|
13
|
+
actions: any;
|
|
14
|
+
};
|
|
23
15
|
export declare class TileListComponent implements OnInit, OnDestroy {
|
|
24
16
|
#private;
|
|
17
|
+
menuComponent: import("@angular/core").Signal<TileActionsMenuComponent | undefined>;
|
|
18
|
+
menu: import("@angular/core").Signal<MatMenu | null>;
|
|
25
19
|
emptyContent: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
26
20
|
isTouchDevice: boolean;
|
|
27
|
-
tiles: import("@angular/core").Signal<readonly
|
|
28
|
-
|
|
29
|
-
onContextMenu(event: MouseEvent | PointerEvent): void;
|
|
30
|
-
onMouseDown(event: MouseEvent): void;
|
|
21
|
+
tiles: import("@angular/core").Signal<readonly ListTileComponent[]>;
|
|
22
|
+
list: import("@angular/core").Signal<ListComponent>;
|
|
31
23
|
onCopy(event: KeyboardEvent): void;
|
|
32
24
|
onCut(event: KeyboardEvent): void;
|
|
33
|
-
onKeydown(event: KeyboardEvent): void;
|
|
34
|
-
private _keyManager;
|
|
35
25
|
_busy: import("@angular/core").WritableSignal<boolean>;
|
|
36
26
|
private oc?;
|
|
37
27
|
pagination?: Pagination;
|
|
@@ -92,17 +82,20 @@ export declare class TileListComponent implements OnInit, OnDestroy {
|
|
|
92
82
|
event: MouseEvent | PointerEvent;
|
|
93
83
|
selection: any;
|
|
94
84
|
}>;
|
|
95
|
-
items: TileData[]
|
|
85
|
+
items: import("@angular/core").WritableSignal<TileData[]>;
|
|
86
|
+
_items: import("@angular/core").Signal<InnerTileData[]>;
|
|
96
87
|
private _rawResult?;
|
|
97
88
|
searchExecuted: boolean;
|
|
98
89
|
constructor();
|
|
99
90
|
getPageSize(): number;
|
|
100
91
|
contextMenuHandler(event: MouseEvent, index: number): void;
|
|
92
|
+
executeAction(t: InnerTileData, a: Action, evt: Event): void;
|
|
101
93
|
select(i: TileData, evt?: MouseEvent | KeyboardEvent): void;
|
|
102
94
|
selectById(ids: string[]): void;
|
|
103
95
|
onDragSelectChange(sel: number[]): void;
|
|
104
96
|
onDragSelect(sel: number[]): void;
|
|
105
|
-
|
|
97
|
+
onListItemsSelect(sel: number[]): void;
|
|
98
|
+
selectByIndex(idx: number, evt?: MouseEvent | KeyboardEvent): void;
|
|
106
99
|
refresh(): void;
|
|
107
100
|
applyFlavor(flavor: ObjectFlavor): void;
|
|
108
101
|
clearSelection(silent?: boolean): void;
|
|
@@ -116,5 +109,6 @@ export declare class TileListComponent implements OnInit, OnDestroy {
|
|
|
116
109
|
ngOnInit(): void;
|
|
117
110
|
ngOnDestroy(): void;
|
|
118
111
|
static ɵfac: i0.ɵɵFactoryDeclaration<TileListComponent, never>;
|
|
119
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TileListComponent, "yuv-tile-list", never, { "bucket": { "alias": "bucket"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "multiselect": { "alias": "multiselect"; "required": false; "isSignal": true; }; "dense": { "alias": "dense"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "flavor": { "alias": "flavor"; "required": false; "isSignal": true; }; "query": { "alias": "query"; "required": false; "isSignal": true; }; "preselect": { "alias": "preselect"; "required": false; "isSignal": true; }; "highlights": { "alias": "highlights"; "required": false; "isSignal": true; }; "preventChangeUntil": { "alias": "preventChangeUntil"; "required": false; "isSignal": true; }; }, { "itemSelect": "itemSelect"; "tileCopy": "tileCopy"; "tileCut": "tileCut"; "busy": "busy"; "queryResult": "queryResult"; "selectionChange": "selectionChange"; "itemDblClick": "itemDblClick"; "ctxMenu": "ctxMenu"; }, ["emptyContent"], ["*"], true, never>;
|
|
112
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TileListComponent, "yuv-tile-list", never, { "bucket": { "alias": "bucket"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "multiselect": { "alias": "multiselect"; "required": false; "isSignal": true; }; "dense": { "alias": "dense"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "flavor": { "alias": "flavor"; "required": false; "isSignal": true; }; "query": { "alias": "query"; "required": false; "isSignal": true; }; "preselect": { "alias": "preselect"; "required": false; "isSignal": true; }; "highlights": { "alias": "highlights"; "required": false; "isSignal": true; }; "preventChangeUntil": { "alias": "preventChangeUntil"; "required": false; "isSignal": true; }; }, { "itemSelect": "itemSelect"; "tileCopy": "tileCopy"; "tileCut": "tileCut"; "busy": "busy"; "queryResult": "queryResult"; "selectionChange": "selectionChange"; "itemDblClick": "itemDblClick"; "ctxMenu": "ctxMenu"; }, ["menuComponent", "emptyContent"], ["*", "yuv-tile-actions-menu, [yuv-tile-actions-menu]"], true, never>;
|
|
120
113
|
}
|
|
114
|
+
export {};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
2
|
-
import { Action, ActionContext } from '@yuuvis/client-framework/actions';
|
|
3
|
-
import { TileData } from '../tile-list/tile-list.interface';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class TileComponent {
|
|
6
|
-
#private;
|
|
7
|
-
elRef: ElementRef<any>;
|
|
8
|
-
tile: import("@angular/core").InputSignal<TileData>;
|
|
9
|
-
actionContext: import("@angular/core").InputSignal<ActionContext | undefined>;
|
|
10
|
-
dense: import("@angular/core").InputSignal<boolean>;
|
|
11
|
-
actions: import("@angular/core").Signal<Action[]>;
|
|
12
|
-
rendererInputs: import("@angular/core").Signal<{
|
|
13
|
-
icon: import("@yuuvis/client-core").ResolvedObjectConfigItem | undefined;
|
|
14
|
-
title: import("@yuuvis/client-core").ResolvedObjectConfigItem;
|
|
15
|
-
description: import("@yuuvis/client-core").ResolvedObjectConfigItem | undefined;
|
|
16
|
-
meta: import("@yuuvis/client-core").ResolvedObjectConfigItem | undefined;
|
|
17
|
-
aside: import("@yuuvis/client-core").ResolvedObjectConfigItem | undefined;
|
|
18
|
-
}>;
|
|
19
|
-
executeAction(a: Action, evt: Event): void;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TileComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TileComponent, "yuv-tile", never, { "tile": { "alias": "tile"; "required": true; "isSignal": true; }; "actionContext": { "alias": "actionContext"; "required": false; "isSignal": true; }; "dense": { "alias": "dense"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
22
|
-
}
|