@yuuvis/app-drive 2.0.15 → 2.1.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 +4 -7
- package/fesm2022/yuuvis-app-drive-extensions.mjs.map +1 -1
- package/fesm2022/yuuvis-app-drive.mjs +92 -89
- package/fesm2022/yuuvis-app-drive.mjs.map +1 -1
- package/lib/assets/i18n/de.json +3 -5
- package/lib/assets/i18n/en.json +1 -3
- package/lib/container/drive/drive.component.d.ts +1 -1
- package/lib/drive.schema.d.ts +1 -5
- package/lib/pages/files/files.component.d.ts +4 -4
- package/package.json +2 -2
- package/yuv-manifest.json +4 -1
package/lib/assets/i18n/de.json
CHANGED
|
@@ -59,7 +59,6 @@
|
|
|
59
59
|
"yuv.app.drive.name.conflict.upload.message": "Der Upload beinhaltet Dateien mit Namen, die im aktuellen Ordner bereits vorhanden sind.",
|
|
60
60
|
"yuv.app.drive.name.conflict.upload.messageValid": "Die folgenden Dateien können ohne Konflikte hochgeladen werden:",
|
|
61
61
|
"yuv.app.drive.name.conflict.upload.proceed": "Übrige Dateien hochladen",
|
|
62
|
-
"yuv.app.drive.navigation.aria.label": "Navigation yuuvis Drive-App",
|
|
63
62
|
"yuv.app.drive.object-metadata.tabs.content.title": "Inhalt",
|
|
64
63
|
"yuv.app.drive.object-metadata.tabs.history.title": "Historie",
|
|
65
64
|
"yuv.app.drive.object-metadata.tabs.indexdata.title": "Metadaten",
|
|
@@ -67,7 +66,6 @@
|
|
|
67
66
|
"yuv.app.drive.page.object.error.default": "Das Objekt konnte nicht geladen werden.",
|
|
68
67
|
"yuv.app.drive.page.object.refresh.tooltip": "Aktualisieren",
|
|
69
68
|
"yuv.app.drive.property.name": "Name",
|
|
70
|
-
"yuv.app.drive.search.advanced.dialog.title": "Erweiterte Suche",
|
|
71
69
|
"yuv.app.drive.search.extended.dialog.title": "Erweiterte Suche",
|
|
72
70
|
"yuv.app.drive.search.filter.button.reset": "Zurücksetzen",
|
|
73
71
|
"yuv.app.drive.search.filter.option.any": "Beliebiger Typ",
|
|
@@ -99,7 +97,7 @@
|
|
|
99
97
|
"yuv.app.drive.versions.header.label": "Versionen verwalten",
|
|
100
98
|
"yuv.app.drive.versions.header.label.short": "Versionen",
|
|
101
99
|
"yuv.app.drive.versions.label": "Version",
|
|
102
|
-
|
|
103
|
-
|
|
100
|
+
"yuv.object-metadata.button.reset": "Änderungen verwerfen",
|
|
101
|
+
"yuv.object-metadata.button.save": "Speichern",
|
|
104
102
|
"yuv.object-summary.action.edit": ""
|
|
105
|
-
}
|
|
103
|
+
}
|
package/lib/assets/i18n/en.json
CHANGED
|
@@ -59,7 +59,6 @@
|
|
|
59
59
|
"yuv.app.drive.name.conflict.upload.message": "The upload contains files with names that already exist in the current folder.",
|
|
60
60
|
"yuv.app.drive.name.conflict.upload.messageValid": "The following files can be uploaded without conflicts:",
|
|
61
61
|
"yuv.app.drive.name.conflict.upload.proceed": "Upload remaining files",
|
|
62
|
-
"yuv.app.drive.navigation.aria.label": "yuuvis Drive app navigation",
|
|
63
62
|
"yuv.app.drive.object-metadata.tabs.content.title": "Content",
|
|
64
63
|
"yuv.app.drive.object-metadata.tabs.history.title": "History",
|
|
65
64
|
"yuv.app.drive.object-metadata.tabs.indexdata.title": "Metadata",
|
|
@@ -67,7 +66,6 @@
|
|
|
67
66
|
"yuv.app.drive.page.object.error.default": "Unable to load the object.",
|
|
68
67
|
"yuv.app.drive.page.object.refresh.tooltip": "Update",
|
|
69
68
|
"yuv.app.drive.property.name": "Name",
|
|
70
|
-
"yuv.app.drive.search.advanced.dialog.title": "Advanced Search",
|
|
71
69
|
"yuv.app.drive.search.extended.dialog.title": "Extended Search",
|
|
72
70
|
"yuv.app.drive.search.filter.button.reset": "Reset",
|
|
73
71
|
"yuv.app.drive.search.filter.option.any": "Any type",
|
|
@@ -102,4 +100,4 @@
|
|
|
102
100
|
"yuv.object-metadata.button.reset": "Discard changes",
|
|
103
101
|
"yuv.object-metadata.button.save": "Save",
|
|
104
102
|
"yuv.object-summary.action.edit": ""
|
|
105
|
-
}
|
|
103
|
+
}
|
|
@@ -8,7 +8,7 @@ export declare class DriveFrameComponent implements OnInit, OnDestroy {
|
|
|
8
8
|
currentFolder: Signal<string | null>;
|
|
9
9
|
busy: import("@ngrx/signals/src/deep-signal").Signal<boolean>;
|
|
10
10
|
appName: string;
|
|
11
|
-
appIcon: string;
|
|
11
|
+
appIcon: string | undefined;
|
|
12
12
|
headerNavItems: OverflowMenuItem[];
|
|
13
13
|
constructor();
|
|
14
14
|
onUploadProgressResultItemClick(uploadRes: UploadResult): void;
|
package/lib/drive.schema.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { VirtualObjectType } from '@yuuvis/client-core';
|
|
2
|
-
import { AppSchema } from '@yuuvis/client-shell-core';
|
|
3
2
|
import { ActionContext } from '@yuuvis/client-framework/actions';
|
|
4
3
|
export declare const FS_PROPERTIES: {
|
|
5
4
|
name: string;
|
|
@@ -9,10 +8,7 @@ export declare const FS_SOTS: {
|
|
|
9
8
|
};
|
|
10
9
|
export declare const APP_PREFIX = "appDrive:";
|
|
11
10
|
export declare const APP_ID = "io.yuuvis.app.drive";
|
|
12
|
-
export declare const
|
|
13
|
-
folder: VirtualObjectType;
|
|
14
|
-
file: VirtualObjectType;
|
|
15
|
-
}>;
|
|
11
|
+
export declare const APP_TYPES: Record<string, VirtualObjectType>;
|
|
16
12
|
export declare const APP_ACTIONS: {
|
|
17
13
|
rename: string;
|
|
18
14
|
paste: string;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { OnDestroy } from '@angular/core';
|
|
2
2
|
import { ConfigTypeOption, DmsObject, SearchQuery } from '@yuuvis/client-core';
|
|
3
|
-
import {
|
|
3
|
+
import { ContextMenuItemSelectEvent } from '@yuuvis/client-framework/actions';
|
|
4
|
+
import { OverflowMenuItem } from '@yuuvis/client-framework/overflow-menu';
|
|
4
5
|
import { SplitViewComponent } from '@yuuvis/client-framework/split-view';
|
|
5
6
|
import { TileData, TileListComponent, TileListConfigOptions, TileListHighlight } from '@yuuvis/client-framework/tile-list';
|
|
6
7
|
import { ObjectFlavor } from '@yuuvis/client-shell-core';
|
|
7
8
|
import { Observable } from 'rxjs';
|
|
8
9
|
import { DriveFolderId } from '../../services/drive/drive.interface';
|
|
9
|
-
import { OverflowMenuItem } from '@yuuvis/client-framework/overflow-menu';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class FilesPageComponent implements OnDestroy {
|
|
12
12
|
#private;
|
|
@@ -30,7 +30,7 @@ export declare class FilesPageComponent implements OnDestroy {
|
|
|
30
30
|
summaryActions: import("@angular/core").Signal<OverflowMenuItem[]>;
|
|
31
31
|
fileDropSummaryDisabled: import("@angular/core").Signal<boolean>;
|
|
32
32
|
disableCreate: boolean;
|
|
33
|
-
actions: import("@ngrx/signals/src/deep-signal").Signal<Action[]>;
|
|
33
|
+
actions: import("@ngrx/signals/src/deep-signal").Signal<import("@yuuvis/client-framework/actions").Action[]>;
|
|
34
34
|
selection: import("@ngrx/signals/src/deep-signal").Signal<DmsObject[]>;
|
|
35
35
|
extendedQuery: import("@ngrx/signals/src/deep-signal").Signal<boolean>;
|
|
36
36
|
hasActions: import("@angular/core").Signal<boolean>;
|
|
@@ -39,7 +39,7 @@ export declare class FilesPageComponent implements OnDestroy {
|
|
|
39
39
|
appliedFlavor?: ObjectFlavor;
|
|
40
40
|
selectionActions: import("@angular/core").Signal<{
|
|
41
41
|
selection: DmsObject[];
|
|
42
|
-
actions: Action[];
|
|
42
|
+
actions: import("@yuuvis/client-framework/actions").Action[];
|
|
43
43
|
}>;
|
|
44
44
|
emptyMode: import("@angular/core").WritableSignal<DriveFolderId | null>;
|
|
45
45
|
error: import("@angular/core").WritableSignal<string | undefined>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuuvis/app-drive",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/material": "^19.2.15",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"@angular/core": "^19.2.1",
|
|
10
10
|
"@colsen1991/ngx-translate-extract-marker": "^3",
|
|
11
11
|
"@yuuvis/media-viewer": "^2.0.4",
|
|
12
|
-
"@yuuvis/client-shell": "^2.
|
|
12
|
+
"@yuuvis/client-shell": "^2.1.1"
|
|
13
13
|
},
|
|
14
14
|
"sideEffects": false,
|
|
15
15
|
"module": "fesm2022/yuuvis-app-drive.mjs",
|