@smartbit4all/ng-client 4.0.44 → 4.0.46
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/esm2022/lib/smart-dialog/smartdialog.service.mjs +2 -1
- package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.component.mjs +5 -8
- package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.service.mjs +11 -5
- package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.component.mjs +10 -15
- package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service.mjs +16 -5
- package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.component.mjs +5 -10
- package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.service.mjs +16 -5
- package/fesm2022/smartbit4all-ng-client.mjs +58 -42
- package/fesm2022/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.component.d.ts +0 -1
- package/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.service.d.ts +7 -3
- package/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service.d.ts +7 -3
- package/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.service.d.ts +7 -3
- package/package.json +1 -1
- package/smartbit4all-ng-client-4.0.46.tgz +0 -0
- package/smartbit4all-ng-client-4.0.44.tgz +0 -0
|
@@ -13,7 +13,6 @@ export declare class UiActionConfirmDialogComponent implements OnDestroy {
|
|
|
13
13
|
componentLibrary: typeof ComponentLibrary;
|
|
14
14
|
descriptor?: UiActionDescriptor;
|
|
15
15
|
constructor(service: UiActionConfirmDialogService, compLib: ComponentLibrary, manager: UiActionDescriptorService);
|
|
16
|
-
setUp(): Promise<void>;
|
|
17
16
|
ngOnDestroy(): void;
|
|
18
17
|
getTitle(): string;
|
|
19
18
|
getText(): string;
|
|
@@ -2,17 +2,21 @@ import { Injector } from '@angular/core';
|
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
3
|
import { Router } from '@angular/router';
|
|
4
4
|
import { Subject } from 'rxjs';
|
|
5
|
-
import { UiAction } from '../../../api';
|
|
5
|
+
import { UiAction, UiActionDescriptor } from '../../../api';
|
|
6
6
|
import { SmartdialogService } from '../../../../smart-dialog/smartdialog.service';
|
|
7
7
|
import { DialogService } from 'primeng/dynamicdialog';
|
|
8
|
-
import { ComponentLibrary } from '../../../projects';
|
|
8
|
+
import { ComponentLibrary, UiActionDescriptorService } from '../../../projects';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class UiActionConfirmDialogService extends SmartdialogService {
|
|
11
|
+
private manager;
|
|
11
12
|
_destroy$: Subject<void>;
|
|
12
13
|
action: UiAction;
|
|
14
|
+
descriptor?: UiActionDescriptor;
|
|
15
|
+
dialogType: 'dialog' | 'confirmDialog' | 'inputDialog';
|
|
13
16
|
onAction: Subject<void>;
|
|
14
17
|
shouldDoAction: boolean;
|
|
15
|
-
constructor(dialog: MatDialog, router: Router, dialogService: DialogService, inject: Injector, compLib: ComponentLibrary);
|
|
18
|
+
constructor(dialog: MatDialog, router: Router, dialogService: DialogService, inject: Injector, compLib: ComponentLibrary, manager: UiActionDescriptorService);
|
|
19
|
+
setUp(): Promise<void>;
|
|
16
20
|
openDialog(): void;
|
|
17
21
|
doAction(): void;
|
|
18
22
|
cancel(): void;
|
|
@@ -2,20 +2,24 @@ import { Injector } from '@angular/core';
|
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
3
|
import { Router } from '@angular/router';
|
|
4
4
|
import { Subject } from 'rxjs';
|
|
5
|
-
import { UiAction } from '../../../api';
|
|
5
|
+
import { UiAction, UiActionDescriptor } from '../../../api';
|
|
6
6
|
import { SmartdialogService } from '../../../../smart-dialog/smartdialog.service';
|
|
7
7
|
import { DialogService } from 'primeng/dynamicdialog';
|
|
8
|
-
import { ComponentLibrary } from '../../../projects';
|
|
8
|
+
import { ComponentLibrary, UiActionDescriptorService } from '../../../projects';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class UiActionFileUploadDialogService extends SmartdialogService {
|
|
11
|
+
private manager;
|
|
11
12
|
_destroy$: Subject<void>;
|
|
12
13
|
inputTypeName: 'inputDialog' | 'input2Dialog';
|
|
14
|
+
dialogType: 'dialog' | 'inputDialog' | 'input2Dialog';
|
|
15
|
+
descriptor?: UiActionDescriptor;
|
|
13
16
|
action: UiAction;
|
|
14
17
|
nodeName?: string;
|
|
15
18
|
onAction: Subject<void>;
|
|
16
19
|
files?: any;
|
|
17
20
|
isMultiple: boolean;
|
|
18
|
-
constructor(dialog: MatDialog, router: Router, dialogService: DialogService, inject: Injector, compLib: ComponentLibrary);
|
|
21
|
+
constructor(dialog: MatDialog, router: Router, dialogService: DialogService, inject: Injector, compLib: ComponentLibrary, manager: UiActionDescriptorService);
|
|
22
|
+
setUp(): Promise<void>;
|
|
19
23
|
setDataAndOpenDialog(action: UiAction, nodeName?: string): void;
|
|
20
24
|
openDialog(): void;
|
|
21
25
|
onSave(files: any[]): Promise<void>;
|
|
@@ -2,19 +2,23 @@ import { Injector } from '@angular/core';
|
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
3
|
import { Router } from '@angular/router';
|
|
4
4
|
import { Subject } from 'rxjs';
|
|
5
|
-
import { UiAction, UiActionRequest } from '../../../api';
|
|
5
|
+
import { UiAction, UiActionDescriptor, UiActionRequest } from '../../../api';
|
|
6
6
|
import { SmartdialogService } from '../../../../smart-dialog/smartdialog.service';
|
|
7
7
|
import { DialogService } from 'primeng/dynamicdialog';
|
|
8
|
-
import { ComponentLibrary } from '../../../projects';
|
|
8
|
+
import { ComponentLibrary, UiActionDescriptorService } from '../../../projects';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class UiActionInputDialogService extends SmartdialogService {
|
|
11
|
+
private manager;
|
|
11
12
|
_destroy$: Subject<void>;
|
|
12
13
|
inputTypeName: 'inputDialog' | 'input2Dialog';
|
|
14
|
+
dialogType: 'dialog' | 'inputDialog' | 'input2Dialog';
|
|
15
|
+
descriptor?: UiActionDescriptor;
|
|
13
16
|
action: UiAction;
|
|
14
17
|
nodeName?: string;
|
|
15
18
|
onAction: Subject<EditFolderAction>;
|
|
16
19
|
params?: any;
|
|
17
|
-
constructor(dialog: MatDialog, router: Router, dialogService: DialogService, inject: Injector, compLib: ComponentLibrary);
|
|
20
|
+
constructor(dialog: MatDialog, router: Router, dialogService: DialogService, inject: Injector, compLib: ComponentLibrary, manager: UiActionDescriptorService);
|
|
21
|
+
setUp(): Promise<void>;
|
|
18
22
|
setDataAndOpenDialog(action: UiAction, nodeName?: string): void;
|
|
19
23
|
openDialog(): void;
|
|
20
24
|
onSave(params: any): Promise<void>;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|