@yuuvis/app-drive 2.0.15 → 2.1.0
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 +91 -88
- package/fesm2022/yuuvis-app-drive.mjs.map +1 -1
- 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
|
@@ -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.0
|
|
3
|
+
"version": "2.1.0",
|
|
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.0
|
|
12
|
+
"@yuuvis/client-shell": "^2.1.0"
|
|
13
13
|
},
|
|
14
14
|
"sideEffects": false,
|
|
15
15
|
"module": "fesm2022/yuuvis-app-drive.mjs",
|