@yuuvis/app-drive 2.1.27 → 2.2.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/fesm2022/yuuvis-app-drive-extensions.mjs +3 -3
- package/fesm2022/yuuvis-app-drive-extensions.mjs.map +1 -1
- package/fesm2022/yuuvis-app-drive.mjs +679 -819
- package/fesm2022/yuuvis-app-drive.mjs.map +1 -1
- package/index.d.ts +5 -4
- package/lib/actions/manage-versions/component/manage-versions.component.d.ts +10 -10
- package/lib/assets/i18n/de.json +1 -1
- package/lib/assets/i18n/en.json +1 -1
- package/lib/components/drive-search/drive-search-overlay/drive-search-overlay.component.d.ts +1 -0
- package/lib/components/drive-search/drive-search.component.d.ts +4 -3
- package/lib/components/versions-list/versions-list.component.d.ts +6 -4
- package/lib/container/drive/drive.component.d.ts +1 -1
- package/lib/pages/files/files.component.d.ts +15 -15
- package/lib/pages/object/object.component.d.ts +4 -3
- package/lib/services/drive/drive.service.d.ts +2 -1
- package/package.json +5 -5
- package/public-api.d.ts +4 -0
- package/yuv-manifest.json +4 -7
package/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
/// <amd-module name="@yuuvis/app-drive" />
|
|
5
|
+
export * from './public-api';
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { OnDestroy, OnInit } from '@angular/core';
|
|
1
|
+
import { OnDestroy, OnInit, Signal } from '@angular/core';
|
|
2
2
|
import { DmsObject, FlavoredDmsObject } from '@yuuvis/client-core';
|
|
3
|
+
import { TileData } from '@yuuvis/client-framework/tile-list';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ManageVersionsComponent implements OnInit, OnDestroy {
|
|
5
6
|
#private;
|
|
6
|
-
versionsList:
|
|
7
|
-
selectedVersion:
|
|
8
|
-
selectedDmsObject:
|
|
9
|
-
isLoading:
|
|
7
|
+
versionsList: Signal<TileData[]>;
|
|
8
|
+
selectedVersion: Signal<DmsObject[] | null>;
|
|
9
|
+
selectedDmsObject: Signal<DmsObject | null>;
|
|
10
|
+
isLoading: Signal<boolean>;
|
|
10
11
|
item: DmsObject;
|
|
11
12
|
layoutSettingIdBase: string;
|
|
12
|
-
dmsObject:
|
|
13
|
+
dmsObject: Signal<{
|
|
13
14
|
id: string | null;
|
|
14
15
|
name: string;
|
|
15
16
|
}>;
|
|
16
|
-
id:
|
|
17
|
-
flavoredDmsObject:
|
|
18
|
-
disabledRestore:
|
|
17
|
+
id: Signal<string | null>;
|
|
18
|
+
flavoredDmsObject: Signal<FlavoredDmsObject | undefined>;
|
|
19
|
+
disabledRestore: Signal<boolean>;
|
|
19
20
|
close(): void;
|
|
20
21
|
reloadList(): void;
|
|
21
22
|
setNewVersion(): void;
|
|
22
|
-
isUnderRetention(o: DmsObject | null): boolean | null;
|
|
23
23
|
ngOnInit(): void;
|
|
24
24
|
ngOnDestroy(): void;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<ManageVersionsComponent, never>;
|
package/lib/assets/i18n/de.json
CHANGED
package/lib/assets/i18n/en.json
CHANGED
package/lib/components/drive-search/drive-search-overlay/drive-search-overlay.component.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ interface SearchToken {
|
|
|
9
9
|
export declare class DriveSearchOverlayComponent {
|
|
10
10
|
#private;
|
|
11
11
|
readonly translate: TranslateService;
|
|
12
|
+
private close$;
|
|
12
13
|
objectForms: import("@angular/core").Signal<readonly ObjectFormComponent[]>;
|
|
13
14
|
ANY_OPTION: string;
|
|
14
15
|
selectedFlavorsRec: Record<string, ObjectFlavor>;
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
+
import { Signal } from '@angular/core';
|
|
1
2
|
import { TranslateService } from '@ngx-translate/core';
|
|
2
3
|
import { SearchQuery } from '@yuuvis/client-core';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class DriveSearchComponent {
|
|
5
6
|
#private;
|
|
6
7
|
readonly translate: TranslateService;
|
|
7
|
-
query:
|
|
8
|
-
extendedQuery:
|
|
9
|
-
currentFolder:
|
|
8
|
+
query: Signal<SearchQuery | null>;
|
|
9
|
+
extendedQuery: Signal<boolean>;
|
|
10
|
+
currentFolder: Signal<string | null>;
|
|
10
11
|
term: string;
|
|
11
12
|
openModal(event: MouseEvent | KeyboardEvent): void;
|
|
12
13
|
clear(): void;
|
|
@@ -1,14 +1,16 @@
|
|
|
1
|
+
import { Signal } from '@angular/core';
|
|
1
2
|
import { DmsObject } from '@yuuvis/client-core';
|
|
2
3
|
import { ListItemDirective } from '@yuuvis/client-framework/list';
|
|
4
|
+
import { TileData } from '@yuuvis/client-framework/tile-list';
|
|
3
5
|
import * as i0 from "@angular/core";
|
|
4
6
|
export declare class VersionsListComponent {
|
|
5
7
|
#private;
|
|
6
|
-
versionsList:
|
|
7
|
-
selectedVersion:
|
|
8
|
-
selection:
|
|
8
|
+
versionsList: Signal<TileData[]>;
|
|
9
|
+
selectedVersion: Signal<DmsObject[] | null>;
|
|
10
|
+
selection: Signal<number[]>;
|
|
9
11
|
onBlur(): void;
|
|
10
12
|
onKeydown(event: KeyboardEvent): void;
|
|
11
|
-
listItems:
|
|
13
|
+
listItems: Signal<readonly ListItemDirective[]>;
|
|
12
14
|
selectedVersionAction(event: any): void;
|
|
13
15
|
selectedVersionByIndex(index: number): void;
|
|
14
16
|
setSelectedVersion(version: any): void;
|
|
@@ -6,7 +6,7 @@ export declare class DriveFrameComponent implements OnInit, OnDestroy {
|
|
|
6
6
|
#private;
|
|
7
7
|
query: Signal<SearchQuery | null>;
|
|
8
8
|
currentFolder: Signal<string | null>;
|
|
9
|
-
busy:
|
|
9
|
+
busy: Signal<boolean>;
|
|
10
10
|
appName: string;
|
|
11
11
|
appIcon: string | undefined;
|
|
12
12
|
headerNavItems: OverflowMenuItem[];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { OnDestroy } from '@angular/core';
|
|
1
|
+
import { OnDestroy, Signal } from '@angular/core';
|
|
2
2
|
import { ConfigTypeOption, DmsObject, SearchQuery } from '@yuuvis/client-core';
|
|
3
|
-
import { ContextMenuItemSelectEvent } from '@yuuvis/client-framework/actions';
|
|
3
|
+
import { Action, ContextMenuItemSelectEvent } from '@yuuvis/client-framework/actions';
|
|
4
4
|
import { OverflowMenuItem } from '@yuuvis/client-framework/overflow-menu';
|
|
5
5
|
import { SplitViewComponent } from '@yuuvis/client-framework/split-view';
|
|
6
6
|
import { TileData, TileListComponent, TileListConfigOptions, TileListHighlight } from '@yuuvis/client-framework/tile-list';
|
|
@@ -10,7 +10,7 @@ import { DriveFolderId } from '../../services/drive/drive.interface';
|
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class FilesPageComponent implements OnDestroy {
|
|
12
12
|
#private;
|
|
13
|
-
tileList:
|
|
13
|
+
tileList: Signal<TileListComponent | undefined>;
|
|
14
14
|
LAYOUT_SETTINGS_STORAGE_KEY: string;
|
|
15
15
|
private shellService;
|
|
16
16
|
private dmsService;
|
|
@@ -25,23 +25,23 @@ export declare class FilesPageComponent implements OnDestroy {
|
|
|
25
25
|
INVALID_ID: string;
|
|
26
26
|
};
|
|
27
27
|
objectConfigBucket: string;
|
|
28
|
-
splitViewCmp:
|
|
28
|
+
splitViewCmp: Signal<SplitViewComponent>;
|
|
29
29
|
selected: import("@angular/core").WritableSignal<DmsObject | undefined>;
|
|
30
30
|
sortOptions: import("@angular/core").WritableSignal<string[]>;
|
|
31
31
|
storageKey: string;
|
|
32
|
-
summaryActions:
|
|
33
|
-
fileDropSummaryDisabled:
|
|
32
|
+
summaryActions: Signal<OverflowMenuItem[]>;
|
|
33
|
+
fileDropSummaryDisabled: Signal<boolean>;
|
|
34
34
|
disableCreate: boolean;
|
|
35
|
-
actions:
|
|
36
|
-
selection:
|
|
37
|
-
extendedQuery:
|
|
38
|
-
hasActions:
|
|
39
|
-
busy:
|
|
35
|
+
actions: Signal<Action[]>;
|
|
36
|
+
selection: Signal<DmsObject[]>;
|
|
37
|
+
extendedQuery: Signal<boolean>;
|
|
38
|
+
hasActions: Signal<boolean>;
|
|
39
|
+
busy: Signal<boolean>;
|
|
40
40
|
flavorChips: ObjectFlavor[];
|
|
41
41
|
appliedFlavor?: ObjectFlavor;
|
|
42
|
-
selectionActions:
|
|
42
|
+
selectionActions: Signal<{
|
|
43
43
|
selection: DmsObject[];
|
|
44
|
-
actions:
|
|
44
|
+
actions: Action[];
|
|
45
45
|
}>;
|
|
46
46
|
emptyMode: import("@angular/core").WritableSignal<DriveFolderId | null>;
|
|
47
47
|
error: import("@angular/core").WritableSignal<string | undefined>;
|
|
@@ -57,8 +57,8 @@ export declare class FilesPageComponent implements OnDestroy {
|
|
|
57
57
|
id: import("@angular/core").InputSignal<string | null>;
|
|
58
58
|
highlightStyles$: Observable<TileListHighlight[]>;
|
|
59
59
|
tileListOptions: TileListConfigOptions;
|
|
60
|
-
query:
|
|
61
|
-
queryTitle:
|
|
60
|
+
query: Signal<SearchQuery | null>;
|
|
61
|
+
queryTitle: Signal<string | null>;
|
|
62
62
|
constructor();
|
|
63
63
|
onSortChanged(event: any): void;
|
|
64
64
|
onFilterQueryChange(q: SearchQuery): void;
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
+
import { Signal } from '@angular/core';
|
|
1
2
|
import { DmsObject, FlavoredDmsObject, RetentionState, TranslateService } from '@yuuvis/client-core';
|
|
2
3
|
import { RendererDirectiveInput } from '@yuuvis/client-framework/renderer';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ObjectPageComponent {
|
|
5
6
|
#private;
|
|
6
7
|
translate: TranslateService;
|
|
7
|
-
busy:
|
|
8
|
+
busy: Signal<boolean>;
|
|
8
9
|
smallScreenLayout: import("@angular/core").WritableSignal<boolean>;
|
|
9
10
|
errorMessage?: string;
|
|
10
11
|
dmsObject: import("@angular/core").WritableSignal<DmsObject | undefined>;
|
|
11
12
|
retentionState: import("@angular/core").WritableSignal<RetentionState | undefined>;
|
|
12
|
-
fileDropReplaceDisabled:
|
|
13
|
-
flavoredDmsObject:
|
|
13
|
+
fileDropReplaceDisabled: Signal<boolean>;
|
|
14
|
+
flavoredDmsObject: Signal<FlavoredDmsObject | undefined>;
|
|
14
15
|
icons: {
|
|
15
16
|
back: any;
|
|
16
17
|
error: any;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Signal } from '@angular/core';
|
|
1
2
|
import { DmsObject, SearchQuery } from '@yuuvis/client-core';
|
|
2
3
|
import { Action } from '@yuuvis/client-framework/actions';
|
|
3
4
|
import { Observable } from 'rxjs';
|
|
@@ -10,7 +11,7 @@ export declare class DriveService {
|
|
|
10
11
|
readonly events$: Observable<string>;
|
|
11
12
|
readonly initialState: DriveState;
|
|
12
13
|
readonly state$: import("@ngrx/signals").SignalState<DriveState>;
|
|
13
|
-
readonly breadcrumbFolderPreview:
|
|
14
|
+
readonly breadcrumbFolderPreview: Signal<{
|
|
14
15
|
folderId: string | null;
|
|
15
16
|
entry: BreadCrumb[];
|
|
16
17
|
loading: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuuvis/app-drive",
|
|
3
|
-
"version": "2.1
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/material": "^19.2.15",
|
|
@@ -9,7 +9,10 @@
|
|
|
9
9
|
"@angular/core": "^19.2.1",
|
|
10
10
|
"@colsen1991/ngx-translate-extract-marker": "^3",
|
|
11
11
|
"@yuuvis/media-viewer": "^2.0.5",
|
|
12
|
-
"@yuuvis/client-shell": "^2.1.
|
|
12
|
+
"@yuuvis/client-shell": "^2.1.25"
|
|
13
|
+
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"tslib": "^2.3.0"
|
|
13
16
|
},
|
|
14
17
|
"sideEffects": false,
|
|
15
18
|
"module": "fesm2022/yuuvis-app-drive.mjs",
|
|
@@ -26,8 +29,5 @@
|
|
|
26
29
|
"types": "./extensions/index.d.ts",
|
|
27
30
|
"default": "./fesm2022/yuuvis-app-drive-extensions.mjs"
|
|
28
31
|
}
|
|
29
|
-
},
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"tslib": "^2.3.0"
|
|
32
32
|
}
|
|
33
33
|
}
|
package/public-api.d.ts
ADDED
package/yuv-manifest.json
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "io.yuuvis.app.drive",
|
|
3
|
-
"title": "
|
|
3
|
+
"title": "App-drive Title",
|
|
4
4
|
"ui": {
|
|
5
5
|
"path": "drive",
|
|
6
|
-
"iconName": "
|
|
7
|
-
"routes": "YuuvisDriveRoutes"
|
|
8
|
-
"options": {
|
|
9
|
-
"appHeader": true
|
|
10
|
-
}
|
|
6
|
+
"iconName": "logo_dev",
|
|
7
|
+
"routes": "YuuvisDriveRoutes"
|
|
11
8
|
},
|
|
12
9
|
"extension": "AppDriveExtension"
|
|
13
|
-
}
|
|
10
|
+
}
|