@smartbit4all/ng-client 4.0.40 → 4.0.42
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-client/smart-file-uploader/smart-file-uploader.component.mjs +3 -3
- package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.component.mjs +3 -3
- package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service.mjs +18 -12
- package/esm2022/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.service.mjs +18 -12
- package/esm2022/lib/view-context/smart-view-context-dialog.service.mjs +1 -1
- package/fesm2022/smartbit4all-ng-client.mjs +127 -121
- package/fesm2022/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service.d.ts +10 -4
- package/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.service.d.ts +10 -4
- package/lib/view-context/smart-view-context-dialog.service.d.ts +1 -1
- package/package.json +1 -1
- package/smartbit4all-ng-client-4.0.42.tgz +0 -0
- package/smartbit4all-ng-client-4.0.40.tgz +0 -0
|
@@ -7920,11 +7920,112 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImpo
|
|
|
7920
7920
|
const SmartLinkChannelVariableInPath = 'channel';
|
|
7921
7921
|
const SmartLinkUuidVariableInPath = 'uuid';
|
|
7922
7922
|
|
|
7923
|
-
|
|
7923
|
+
var UiActionDialogType;
|
|
7924
|
+
(function (UiActionDialogType) {
|
|
7925
|
+
UiActionDialogType["inputDialog"] = "inputDialog";
|
|
7926
|
+
UiActionDialogType["confirmDialog"] = "confirmDialog";
|
|
7927
|
+
UiActionDialogType["dialog"] = "dialog";
|
|
7928
|
+
})(UiActionDialogType || (UiActionDialogType = {}));
|
|
7929
|
+
|
|
7930
|
+
class UiActionConfirmDialogComponent {
|
|
7931
|
+
constructor(service, manager) {
|
|
7932
|
+
this.service = service;
|
|
7933
|
+
this.manager = manager;
|
|
7934
|
+
this.code = this.service.action.code;
|
|
7935
|
+
this.setUp();
|
|
7936
|
+
}
|
|
7937
|
+
async setUp() {
|
|
7938
|
+
this.descriptor = await this.manager.getActionDescriptor(this.service.action);
|
|
7939
|
+
this.dialogType = this.descriptor.confirmDialog ? 'confirmDialog' : 'dialog';
|
|
7940
|
+
}
|
|
7941
|
+
ngOnDestroy() {
|
|
7942
|
+
this.service._destroy$.next();
|
|
7943
|
+
this.cancel();
|
|
7944
|
+
}
|
|
7945
|
+
getTitle() {
|
|
7946
|
+
return this.descriptor[this.dialogType].title;
|
|
7947
|
+
}
|
|
7948
|
+
getText() {
|
|
7949
|
+
return this.descriptor[this.dialogType].text ?? '';
|
|
7950
|
+
}
|
|
7951
|
+
getActionButtonLabel() {
|
|
7952
|
+
return this.descriptor[this.dialogType].actionButton.caption;
|
|
7953
|
+
}
|
|
7954
|
+
getActionButtonColor() {
|
|
7955
|
+
return this.descriptor[this.dialogType].actionButton.color;
|
|
7956
|
+
}
|
|
7957
|
+
getCancelButtonLabel() {
|
|
7958
|
+
return this.descriptor[this.dialogType].cancelButton.caption;
|
|
7959
|
+
}
|
|
7960
|
+
getCancelButtonColor() {
|
|
7961
|
+
return this.descriptor[this.dialogType].cancelButton.color;
|
|
7962
|
+
}
|
|
7963
|
+
doAction() {
|
|
7964
|
+
this.service.doAction();
|
|
7965
|
+
}
|
|
7966
|
+
cancel() {
|
|
7967
|
+
this.service.cancel();
|
|
7968
|
+
}
|
|
7969
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionConfirmDialogComponent, deps: [{ token: 'confirmDialogService' }, { token: UiActionDescriptorService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7970
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.11", type: UiActionConfirmDialogComponent, selector: "app-ui-action-confirm-dialog", ngImport: i0, template: "<div class=\"folderNameDialogContainer\">\r\n\t<div class=\"headerContainer\">\r\n\t\t<h3 class=\"color-accent-700\">\r\n\t\t\t{{ getTitle() }}\r\n\t\t</h3>\r\n\t\t<button mat-icon-button title=\"close\" (click)=\"cancel()\">\r\n\t\t\t<smart-icon [color]=\"'primary'\" [icon]=\"'X'\"></smart-icon>\r\n\t\t</button>\r\n\t</div>\r\n\t<p>\r\n\t\t{{ getText() }}\r\n\t</p>\r\n\t<div class=\"folderNameDialogButtonsContainer\">\r\n\t\t<button mat-button color=\"accent\" [color]=\"getCancelButtonColor()\" (click)=\"cancel()\">\r\n\t\t\t{{ getCancelButtonLabel() }}\r\n\t\t</button>\r\n\t\t<button mat-raised-button [color]=\"getActionButtonColor()\" (click)=\"doAction()\">\r\n\t\t\t{{ getActionButtonLabel() }}\r\n\t\t</button>\r\n\t</div>\r\n</div>\r\n", styles: [".folderNameDialogContainer{width:25rem;display:flex;flex-direction:column;gap:1rem}.headerContainer{display:flex;flex-direction:row;justify-content:space-between}.headerContainer h3{margin:0}.folderNameDialogButtonsContainer{display:flex;flex-direction:row;justify-content:flex-end;gap:.5rem}\n"], dependencies: [{ kind: "component", type: i2$3.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "component", type: i2$3.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "component", type: SmartIconComponent, selector: "smart-icon", inputs: ["icon", "color"] }] }); }
|
|
7971
|
+
}
|
|
7972
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionConfirmDialogComponent, decorators: [{
|
|
7973
|
+
type: Component,
|
|
7974
|
+
args: [{ selector: 'app-ui-action-confirm-dialog', template: "<div class=\"folderNameDialogContainer\">\r\n\t<div class=\"headerContainer\">\r\n\t\t<h3 class=\"color-accent-700\">\r\n\t\t\t{{ getTitle() }}\r\n\t\t</h3>\r\n\t\t<button mat-icon-button title=\"close\" (click)=\"cancel()\">\r\n\t\t\t<smart-icon [color]=\"'primary'\" [icon]=\"'X'\"></smart-icon>\r\n\t\t</button>\r\n\t</div>\r\n\t<p>\r\n\t\t{{ getText() }}\r\n\t</p>\r\n\t<div class=\"folderNameDialogButtonsContainer\">\r\n\t\t<button mat-button color=\"accent\" [color]=\"getCancelButtonColor()\" (click)=\"cancel()\">\r\n\t\t\t{{ getCancelButtonLabel() }}\r\n\t\t</button>\r\n\t\t<button mat-raised-button [color]=\"getActionButtonColor()\" (click)=\"doAction()\">\r\n\t\t\t{{ getActionButtonLabel() }}\r\n\t\t</button>\r\n\t</div>\r\n</div>\r\n", styles: [".folderNameDialogContainer{width:25rem;display:flex;flex-direction:column;gap:1rem}.headerContainer{display:flex;flex-direction:row;justify-content:space-between}.headerContainer h3{margin:0}.folderNameDialogButtonsContainer{display:flex;flex-direction:row;justify-content:flex-end;gap:.5rem}\n"] }]
|
|
7975
|
+
}], ctorParameters: () => [{ type: UiActionConfirmDialogService, decorators: [{
|
|
7976
|
+
type: Inject,
|
|
7977
|
+
args: ['confirmDialogService']
|
|
7978
|
+
}] }, { type: UiActionDescriptorService }] });
|
|
7979
|
+
|
|
7980
|
+
class UiActionConfirmDialogService extends SmartdialogService {
|
|
7924
7981
|
constructor(dialog, router) {
|
|
7925
7982
|
super(dialog, router);
|
|
7926
7983
|
this._destroy$ = new Subject();
|
|
7927
7984
|
this.onAction = new SmartSubject(this._destroy$);
|
|
7985
|
+
this.shouldDoAction = false;
|
|
7986
|
+
}
|
|
7987
|
+
openDialog() {
|
|
7988
|
+
this.shouldDoAction = false;
|
|
7989
|
+
this.onAction = new SmartSubject(this._destroy$);
|
|
7990
|
+
const dialogData = {
|
|
7991
|
+
content: {
|
|
7992
|
+
title: '',
|
|
7993
|
+
},
|
|
7994
|
+
size: {},
|
|
7995
|
+
customComponent: UiActionConfirmDialogComponent,
|
|
7996
|
+
};
|
|
7997
|
+
this.createDialog(dialogData, UiActionConfirmDialogComponent);
|
|
7998
|
+
}
|
|
7999
|
+
doAction() {
|
|
8000
|
+
this.shouldDoAction = true;
|
|
8001
|
+
this.onAction.complete();
|
|
8002
|
+
this.closeDialog();
|
|
8003
|
+
this.onAction = new SmartSubject(this._destroy$);
|
|
8004
|
+
}
|
|
8005
|
+
cancel() {
|
|
8006
|
+
this.onAction.complete();
|
|
8007
|
+
this.closeDialog();
|
|
8008
|
+
this.onAction = new SmartSubject(this._destroy$);
|
|
8009
|
+
}
|
|
8010
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionConfirmDialogService, deps: [{ token: i1$1.MatDialog }, { token: i2$1.Router }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
8011
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionConfirmDialogService, providedIn: 'root' }); }
|
|
8012
|
+
}
|
|
8013
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionConfirmDialogService, decorators: [{
|
|
8014
|
+
type: Injectable,
|
|
8015
|
+
args: [{
|
|
8016
|
+
providedIn: 'root',
|
|
8017
|
+
}]
|
|
8018
|
+
}], ctorParameters: () => [{ type: i1$1.MatDialog }, { type: i2$1.Router }] });
|
|
8019
|
+
|
|
8020
|
+
/*
|
|
8021
|
+
* Public API Surface of smart-view-context
|
|
8022
|
+
*/
|
|
8023
|
+
|
|
8024
|
+
class UiActionInputDialogService extends SmartViewContextDialogService {
|
|
8025
|
+
constructor(dialog, router, dialogService, inject, compLib) {
|
|
8026
|
+
super(dialog, router, dialogService, inject, compLib);
|
|
8027
|
+
this._destroy$ = new Subject();
|
|
8028
|
+
this.onAction = new SmartSubject(this._destroy$);
|
|
7928
8029
|
}
|
|
7929
8030
|
setDataAndOpenDialog(action, nodeName) {
|
|
7930
8031
|
this.action = action;
|
|
@@ -7934,27 +8035,27 @@ class UiActionInputDialogService extends SmartdialogService {
|
|
|
7934
8035
|
openDialog() {
|
|
7935
8036
|
this.params = undefined;
|
|
7936
8037
|
this.onAction = new SmartSubject(this._destroy$);
|
|
7937
|
-
|
|
8038
|
+
this.dialogData = {
|
|
7938
8039
|
content: {
|
|
7939
8040
|
title: '',
|
|
7940
8041
|
},
|
|
7941
8042
|
size: {},
|
|
7942
8043
|
customComponent: UiActionInputDialogComponent,
|
|
7943
8044
|
};
|
|
7944
|
-
this.createDialog(dialogData, UiActionInputDialogComponent);
|
|
8045
|
+
this.dialofRef = this.createDialog(this.dialogData, UiActionInputDialogComponent);
|
|
7945
8046
|
}
|
|
7946
8047
|
async onSave(params) {
|
|
7947
8048
|
this.params = params;
|
|
7948
8049
|
this.onAction.complete();
|
|
7949
|
-
this.closeDialog();
|
|
8050
|
+
this.closeDialog(this.dialofRef, this.dialogData);
|
|
7950
8051
|
this.onAction = new SmartSubject(this._destroy$);
|
|
7951
8052
|
}
|
|
7952
8053
|
cancel() {
|
|
7953
8054
|
this.onAction.complete();
|
|
7954
|
-
this.closeDialog();
|
|
8055
|
+
this.closeDialog(this.dialofRef, this.dialogData);
|
|
7955
8056
|
this.onAction = new SmartSubject(this._destroy$);
|
|
7956
8057
|
}
|
|
7957
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionInputDialogService, deps: [{ token: i1$1.MatDialog }, { token: i2$1.Router }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
8058
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionInputDialogService, deps: [{ token: i1$1.MatDialog }, { token: i2$1.Router }, { token: i3$1.DialogService }, { token: i0.Injector }, { token: COMPONENT_LIBRARY }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
7958
8059
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionInputDialogService, providedIn: 'root' }); }
|
|
7959
8060
|
}
|
|
7960
8061
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionInputDialogService, decorators: [{
|
|
@@ -7962,7 +8063,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImpo
|
|
|
7962
8063
|
args: [{
|
|
7963
8064
|
providedIn: 'root',
|
|
7964
8065
|
}]
|
|
7965
|
-
}], ctorParameters: () => [{ type: i1$1.MatDialog }, { type: i2$1.Router }
|
|
8066
|
+
}], ctorParameters: () => [{ type: i1$1.MatDialog }, { type: i2$1.Router }, { type: i3$1.DialogService }, { type: i0.Injector }, { type: ComponentLibrary, decorators: [{
|
|
8067
|
+
type: Inject,
|
|
8068
|
+
args: [COMPONENT_LIBRARY]
|
|
8069
|
+
}] }] });
|
|
7966
8070
|
|
|
7967
8071
|
class UiActionInputDialogComponent {
|
|
7968
8072
|
constructor(service, manager) {
|
|
@@ -8077,110 +8181,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImpo
|
|
|
8077
8181
|
args: ['form']
|
|
8078
8182
|
}] } });
|
|
8079
8183
|
|
|
8080
|
-
class
|
|
8081
|
-
constructor(dialog, router) {
|
|
8082
|
-
super(dialog, router);
|
|
8083
|
-
this._destroy$ = new Subject();
|
|
8084
|
-
this.onAction = new SmartSubject(this._destroy$);
|
|
8085
|
-
this.shouldDoAction = false;
|
|
8086
|
-
}
|
|
8087
|
-
openDialog() {
|
|
8088
|
-
this.shouldDoAction = false;
|
|
8089
|
-
this.onAction = new SmartSubject(this._destroy$);
|
|
8090
|
-
const dialogData = {
|
|
8091
|
-
content: {
|
|
8092
|
-
title: '',
|
|
8093
|
-
},
|
|
8094
|
-
size: {},
|
|
8095
|
-
customComponent: UiActionConfirmDialogComponent,
|
|
8096
|
-
};
|
|
8097
|
-
this.createDialog(dialogData, UiActionConfirmDialogComponent);
|
|
8098
|
-
}
|
|
8099
|
-
doAction() {
|
|
8100
|
-
this.shouldDoAction = true;
|
|
8101
|
-
this.onAction.complete();
|
|
8102
|
-
this.closeDialog();
|
|
8103
|
-
this.onAction = new SmartSubject(this._destroy$);
|
|
8104
|
-
}
|
|
8105
|
-
cancel() {
|
|
8106
|
-
this.onAction.complete();
|
|
8107
|
-
this.closeDialog();
|
|
8108
|
-
this.onAction = new SmartSubject(this._destroy$);
|
|
8109
|
-
}
|
|
8110
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionConfirmDialogService, deps: [{ token: i1$1.MatDialog }, { token: i2$1.Router }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
8111
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionConfirmDialogService, providedIn: 'root' }); }
|
|
8112
|
-
}
|
|
8113
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionConfirmDialogService, decorators: [{
|
|
8114
|
-
type: Injectable,
|
|
8115
|
-
args: [{
|
|
8116
|
-
providedIn: 'root',
|
|
8117
|
-
}]
|
|
8118
|
-
}], ctorParameters: () => [{ type: i1$1.MatDialog }, { type: i2$1.Router }] });
|
|
8119
|
-
|
|
8120
|
-
class UiActionConfirmDialogComponent {
|
|
8121
|
-
constructor(service, manager) {
|
|
8122
|
-
this.service = service;
|
|
8123
|
-
this.manager = manager;
|
|
8124
|
-
this.code = this.service.action.code;
|
|
8125
|
-
this.setUp();
|
|
8126
|
-
}
|
|
8127
|
-
async setUp() {
|
|
8128
|
-
this.descriptor = await this.manager.getActionDescriptor(this.service.action);
|
|
8129
|
-
this.dialogType = this.descriptor.confirmDialog ? 'confirmDialog' : 'dialog';
|
|
8130
|
-
}
|
|
8131
|
-
ngOnDestroy() {
|
|
8132
|
-
this.service._destroy$.next();
|
|
8133
|
-
this.cancel();
|
|
8134
|
-
}
|
|
8135
|
-
getTitle() {
|
|
8136
|
-
return this.descriptor[this.dialogType].title;
|
|
8137
|
-
}
|
|
8138
|
-
getText() {
|
|
8139
|
-
return this.descriptor[this.dialogType].text ?? '';
|
|
8140
|
-
}
|
|
8141
|
-
getActionButtonLabel() {
|
|
8142
|
-
return this.descriptor[this.dialogType].actionButton.caption;
|
|
8143
|
-
}
|
|
8144
|
-
getActionButtonColor() {
|
|
8145
|
-
return this.descriptor[this.dialogType].actionButton.color;
|
|
8146
|
-
}
|
|
8147
|
-
getCancelButtonLabel() {
|
|
8148
|
-
return this.descriptor[this.dialogType].cancelButton.caption;
|
|
8149
|
-
}
|
|
8150
|
-
getCancelButtonColor() {
|
|
8151
|
-
return this.descriptor[this.dialogType].cancelButton.color;
|
|
8152
|
-
}
|
|
8153
|
-
doAction() {
|
|
8154
|
-
this.service.doAction();
|
|
8155
|
-
}
|
|
8156
|
-
cancel() {
|
|
8157
|
-
this.service.cancel();
|
|
8158
|
-
}
|
|
8159
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionConfirmDialogComponent, deps: [{ token: 'confirmDialogService' }, { token: UiActionDescriptorService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8160
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.11", type: UiActionConfirmDialogComponent, selector: "app-ui-action-confirm-dialog", ngImport: i0, template: "<div class=\"folderNameDialogContainer\">\r\n\t<div class=\"headerContainer\">\r\n\t\t<h3 class=\"color-accent-700\">\r\n\t\t\t{{ getTitle() }}\r\n\t\t</h3>\r\n\t\t<button mat-icon-button title=\"close\" (click)=\"cancel()\">\r\n\t\t\t<smart-icon [color]=\"'primary'\" [icon]=\"'X'\"></smart-icon>\r\n\t\t</button>\r\n\t</div>\r\n\t<p>\r\n\t\t{{ getText() }}\r\n\t</p>\r\n\t<div class=\"folderNameDialogButtonsContainer\">\r\n\t\t<button mat-button color=\"accent\" [color]=\"getCancelButtonColor()\" (click)=\"cancel()\">\r\n\t\t\t{{ getCancelButtonLabel() }}\r\n\t\t</button>\r\n\t\t<button mat-raised-button [color]=\"getActionButtonColor()\" (click)=\"doAction()\">\r\n\t\t\t{{ getActionButtonLabel() }}\r\n\t\t</button>\r\n\t</div>\r\n</div>\r\n", styles: [".folderNameDialogContainer{width:25rem;display:flex;flex-direction:column;gap:1rem}.headerContainer{display:flex;flex-direction:row;justify-content:space-between}.headerContainer h3{margin:0}.folderNameDialogButtonsContainer{display:flex;flex-direction:row;justify-content:flex-end;gap:.5rem}\n"], dependencies: [{ kind: "component", type: i2$3.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "component", type: i2$3.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "component", type: SmartIconComponent, selector: "smart-icon", inputs: ["icon", "color"] }] }); }
|
|
8161
|
-
}
|
|
8162
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionConfirmDialogComponent, decorators: [{
|
|
8163
|
-
type: Component,
|
|
8164
|
-
args: [{ selector: 'app-ui-action-confirm-dialog', template: "<div class=\"folderNameDialogContainer\">\r\n\t<div class=\"headerContainer\">\r\n\t\t<h3 class=\"color-accent-700\">\r\n\t\t\t{{ getTitle() }}\r\n\t\t</h3>\r\n\t\t<button mat-icon-button title=\"close\" (click)=\"cancel()\">\r\n\t\t\t<smart-icon [color]=\"'primary'\" [icon]=\"'X'\"></smart-icon>\r\n\t\t</button>\r\n\t</div>\r\n\t<p>\r\n\t\t{{ getText() }}\r\n\t</p>\r\n\t<div class=\"folderNameDialogButtonsContainer\">\r\n\t\t<button mat-button color=\"accent\" [color]=\"getCancelButtonColor()\" (click)=\"cancel()\">\r\n\t\t\t{{ getCancelButtonLabel() }}\r\n\t\t</button>\r\n\t\t<button mat-raised-button [color]=\"getActionButtonColor()\" (click)=\"doAction()\">\r\n\t\t\t{{ getActionButtonLabel() }}\r\n\t\t</button>\r\n\t</div>\r\n</div>\r\n", styles: [".folderNameDialogContainer{width:25rem;display:flex;flex-direction:column;gap:1rem}.headerContainer{display:flex;flex-direction:row;justify-content:space-between}.headerContainer h3{margin:0}.folderNameDialogButtonsContainer{display:flex;flex-direction:row;justify-content:flex-end;gap:.5rem}\n"] }]
|
|
8165
|
-
}], ctorParameters: () => [{ type: UiActionConfirmDialogService, decorators: [{
|
|
8166
|
-
type: Inject,
|
|
8167
|
-
args: ['confirmDialogService']
|
|
8168
|
-
}] }, { type: UiActionDescriptorService }] });
|
|
8169
|
-
|
|
8170
|
-
var UiActionDialogType;
|
|
8171
|
-
(function (UiActionDialogType) {
|
|
8172
|
-
UiActionDialogType["inputDialog"] = "inputDialog";
|
|
8173
|
-
UiActionDialogType["confirmDialog"] = "confirmDialog";
|
|
8174
|
-
UiActionDialogType["dialog"] = "dialog";
|
|
8175
|
-
})(UiActionDialogType || (UiActionDialogType = {}));
|
|
8176
|
-
|
|
8177
|
-
/*
|
|
8178
|
-
* Public API Surface of smart-view-context
|
|
8179
|
-
*/
|
|
8180
|
-
|
|
8181
|
-
class UiActionFileUploadDialogService extends SmartdialogService {
|
|
8182
|
-
constructor(dialog, router) {
|
|
8183
|
-
super(dialog, router);
|
|
8184
|
+
class UiActionFileUploadDialogService extends SmartViewContextDialogService {
|
|
8185
|
+
constructor(dialog, router, dialogService, inject, compLib) {
|
|
8186
|
+
super(dialog, router, dialogService, inject, compLib);
|
|
8184
8187
|
this._destroy$ = new Subject();
|
|
8185
8188
|
this.onAction = new SmartSubject(this._destroy$);
|
|
8186
8189
|
this.isMultiple = false;
|
|
@@ -8193,27 +8196,27 @@ class UiActionFileUploadDialogService extends SmartdialogService {
|
|
|
8193
8196
|
openDialog() {
|
|
8194
8197
|
this.files = undefined;
|
|
8195
8198
|
this.onAction = new SmartSubject(this._destroy$);
|
|
8196
|
-
|
|
8199
|
+
this.dialogData = {
|
|
8197
8200
|
content: {
|
|
8198
8201
|
title: '',
|
|
8199
8202
|
},
|
|
8200
8203
|
size: {},
|
|
8201
8204
|
customComponent: UiActionFileUploadDialogComponent,
|
|
8202
8205
|
};
|
|
8203
|
-
this.createDialog(dialogData, UiActionFileUploadDialogComponent);
|
|
8206
|
+
this.createDialog(this.dialogData, UiActionFileUploadDialogComponent);
|
|
8204
8207
|
}
|
|
8205
8208
|
async onSave(files) {
|
|
8206
8209
|
this.files = files;
|
|
8207
8210
|
this.onAction.complete();
|
|
8208
|
-
this.closeDialog();
|
|
8211
|
+
this.closeDialog(this.dialofRef, this.dialogData);
|
|
8209
8212
|
this.onAction = new SmartSubject(this._destroy$);
|
|
8210
8213
|
}
|
|
8211
8214
|
cancel() {
|
|
8212
8215
|
this.onAction.complete();
|
|
8213
|
-
this.closeDialog();
|
|
8216
|
+
this.closeDialog(this.dialofRef, this.dialogData);
|
|
8214
8217
|
this.onAction = new SmartSubject(this._destroy$);
|
|
8215
8218
|
}
|
|
8216
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionFileUploadDialogService, deps: [{ token: i1$1.MatDialog }, { token: i2$1.Router }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
8219
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionFileUploadDialogService, deps: [{ token: i1$1.MatDialog }, { token: i2$1.Router }, { token: i3$1.DialogService }, { token: i0.Injector }, { token: COMPONENT_LIBRARY }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
8217
8220
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionFileUploadDialogService, providedIn: 'root' }); }
|
|
8218
8221
|
}
|
|
8219
8222
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionFileUploadDialogService, decorators: [{
|
|
@@ -8221,7 +8224,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImpo
|
|
|
8221
8224
|
args: [{
|
|
8222
8225
|
providedIn: 'root',
|
|
8223
8226
|
}]
|
|
8224
|
-
}], ctorParameters: () => [{ type: i1$1.MatDialog }, { type: i2$1.Router }
|
|
8227
|
+
}], ctorParameters: () => [{ type: i1$1.MatDialog }, { type: i2$1.Router }, { type: i3$1.DialogService }, { type: i0.Injector }, { type: ComponentLibrary, decorators: [{
|
|
8228
|
+
type: Inject,
|
|
8229
|
+
args: [COMPONENT_LIBRARY]
|
|
8230
|
+
}] }] });
|
|
8225
8231
|
|
|
8226
8232
|
class UiActionFileUploadDialogComponent {
|
|
8227
8233
|
constructor(service, compLib, manager) {
|
|
@@ -8293,11 +8299,11 @@ class UiActionFileUploadDialogComponent {
|
|
|
8293
8299
|
this.service.cancel();
|
|
8294
8300
|
}
|
|
8295
8301
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionFileUploadDialogComponent, deps: [{ token: 'fileUploadDialogService' }, { token: COMPONENT_LIBRARY }, { token: UiActionDescriptorService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8296
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.11", type: UiActionFileUploadDialogComponent, selector: "lib-ui-action-file-upload-dialog", ngImport: i0, template: "<div class=\"folderNameDialogContainer\">\r\n <div class=\"headerContainer\">\r\n <h3 class=\"color-accent-700\">\r\n {{ getTitle() }}\r\n </h3>\r\n <button mat-icon-button title=\"close\" (click)=\"cancel()\">\r\n <smart-icon [color]=\"'primary'\" [icon]=\"'X'\"></smart-icon>\r\n </button>\r\n </div>\r\n <p>\r\n {{ getText() }}\r\n </p>\r\n @if(compLib === componentLibrary.PRIMENG) {\r\n\r\n <p-fileUpload\r\n name=\"files[]\"\r\n url=\"\"\r\n (onSend)=\"uploadFiles($event)\"\r\n (onSelect)=\"onSelect($event)\"\r\n (onRemove)=\"onRemove($event)\"\r\n [multiple]=\"isMultiple\"\r\n [accept]=\"fileFormats?.join(',')\"\r\n [maxFileSize]=\"maxSizeMb\"\r\n >\r\n <ng-template pTemplate=\"content\"> </ng-template>\r\n </p-fileUpload>\r\n }@else{\r\n <smartfileuploader\r\n [i18n]=\"i18n\"\r\n [fileFormats]=\"fileFormats\"\r\n [maxSizeMb]=\"maxSizeMb\"\r\n [uploadCallback]=\"upload.bind(this)\"\r\n [isMultiple]=\"isMultiple\"\r\n ></smartfileuploader>\r\n\r\n }\r\n\r\n <div class=\"folderNameDialogButtonsContainer\">\r\n <button mat-button color=\"accent\" [color]=\"getCancelButtonColor()\" (click)=\"cancel()\">\r\n {{ getCancelButtonLabel() }}\r\n </button>\r\n <!-- <button mat-raised-button [color]=\"getActionButtonColor()\" (click)=\"upload()\">\r\n {{ getActionButtonLabel() }}\r\n </button> -->\r\n </div>\r\n</div>\r\n", styles: [".folderNameDialogContainer{width:25rem;display:flex;flex-direction:column;gap:1rem}.headerContainer{display:flex;flex-direction:row;justify-content:space-between}.headerContainer h3{margin:0}.folderNameDialogButtonsContainer{display:flex;flex-direction:row;justify-content:flex-end;gap:.5rem}\n"], dependencies: [{ kind: "component", type: i2$3.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "component", type: i2$3.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "directive", type: i3$3.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: SmartIconComponent, selector: "smart-icon", inputs: ["icon", "color"] }, { kind: "component", type: i5$3.FileUpload, selector: "p-fileUpload", inputs: ["name", "url", "method", "multiple", "accept", "disabled", "auto", "withCredentials", "maxFileSize", "invalidFileSizeMessageSummary", "invalidFileSizeMessageDetail", "invalidFileTypeMessageSummary", "invalidFileTypeMessageDetail", "invalidFileLimitMessageDetail", "invalidFileLimitMessageSummary", "style", "styleClass", "previewWidth", "chooseLabel", "uploadLabel", "cancelLabel", "chooseIcon", "uploadIcon", "cancelIcon", "showUploadButton", "showCancelButton", "mode", "headers", "customUpload", "fileLimit", "uploadStyleClass", "cancelStyleClass", "removeStyleClass", "chooseStyleClass", "files"], outputs: ["onBeforeUpload", "onSend", "onUpload", "onError", "onClear", "onRemove", "onSelect", "onProgress", "uploadHandler", "onImageError", "onRemoveUploadedFile"] }, { kind: "component", type: SmartfileuploaderComponent, selector: "smartfileuploader", inputs: ["uploadCallback", "fileFormats", "maxSizeMb", "i18n", "useIconButton", "isMultiple"] }] }); }
|
|
8302
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.11", type: UiActionFileUploadDialogComponent, selector: "lib-ui-action-file-upload-dialog", ngImport: i0, template: "<div class=\"folderNameDialogContainer\">\r\n <div class=\"headerContainer\">\r\n <h3 class=\"color-accent-700\">\r\n {{ getTitle() }}\r\n </h3>\r\n <button mat-icon-button title=\"close\" (click)=\"cancel()\">\r\n @if(compLib === componentLibrary.PRIMENG) {\r\n <smart-icon [color]=\"'primary'\" [icon]=\"'times'\"></smart-icon>\r\n }@else{\r\n\r\n <smart-icon [color]=\"'primary'\" [icon]=\"'X'\"></smart-icon>\r\n }\r\n </button>\r\n </div>\r\n <p>\r\n {{ getText() }}\r\n </p>\r\n @if(compLib === componentLibrary.PRIMENG) {\r\n\r\n <p-fileUpload\r\n name=\"files[]\"\r\n url=\"\"\r\n (onSend)=\"uploadFiles($event)\"\r\n (onSelect)=\"onSelect($event)\"\r\n (onRemove)=\"onRemove($event)\"\r\n [multiple]=\"isMultiple\"\r\n [accept]=\"fileFormats?.join(',')\"\r\n [maxFileSize]=\"maxSizeMb\"\r\n uploadLabel=\"Felt\u00F6lt\u00E9s\"\r\n cancelLabel=\"M\u00E9gsem\"\r\n chooseLabel=\"V\u00E1laszt\u00E1s\"\r\n >\r\n <ng-template pTemplate=\"content\"> </ng-template>\r\n </p-fileUpload>\r\n }@else{\r\n <smartfileuploader\r\n [i18n]=\"i18n\"\r\n [fileFormats]=\"fileFormats\"\r\n [maxSizeMb]=\"maxSizeMb\"\r\n [uploadCallback]=\"upload.bind(this)\"\r\n [isMultiple]=\"isMultiple\"\r\n ></smartfileuploader>\r\n\r\n }\r\n\r\n <div class=\"folderNameDialogButtonsContainer\">\r\n <button mat-button color=\"accent\" [color]=\"getCancelButtonColor()\" (click)=\"cancel()\">\r\n {{ getCancelButtonLabel() }}\r\n </button>\r\n <!-- <button mat-raised-button [color]=\"getActionButtonColor()\" (click)=\"upload()\">\r\n {{ getActionButtonLabel() }}\r\n </button> -->\r\n </div>\r\n</div>\r\n", styles: [".folderNameDialogContainer{width:25rem;display:flex;flex-direction:column;gap:1rem}.headerContainer{display:flex;flex-direction:row;justify-content:space-between}.headerContainer h3{margin:0}.folderNameDialogButtonsContainer{display:flex;flex-direction:row;justify-content:flex-end;gap:.5rem}\n"], dependencies: [{ kind: "component", type: i2$3.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "component", type: i2$3.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "directive", type: i3$3.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: SmartIconComponent, selector: "smart-icon", inputs: ["icon", "color"] }, { kind: "component", type: i5$3.FileUpload, selector: "p-fileUpload", inputs: ["name", "url", "method", "multiple", "accept", "disabled", "auto", "withCredentials", "maxFileSize", "invalidFileSizeMessageSummary", "invalidFileSizeMessageDetail", "invalidFileTypeMessageSummary", "invalidFileTypeMessageDetail", "invalidFileLimitMessageDetail", "invalidFileLimitMessageSummary", "style", "styleClass", "previewWidth", "chooseLabel", "uploadLabel", "cancelLabel", "chooseIcon", "uploadIcon", "cancelIcon", "showUploadButton", "showCancelButton", "mode", "headers", "customUpload", "fileLimit", "uploadStyleClass", "cancelStyleClass", "removeStyleClass", "chooseStyleClass", "files"], outputs: ["onBeforeUpload", "onSend", "onUpload", "onError", "onClear", "onRemove", "onSelect", "onProgress", "uploadHandler", "onImageError", "onRemoveUploadedFile"] }, { kind: "component", type: SmartfileuploaderComponent, selector: "smartfileuploader", inputs: ["uploadCallback", "fileFormats", "maxSizeMb", "i18n", "useIconButton", "isMultiple"] }] }); }
|
|
8297
8303
|
}
|
|
8298
8304
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: UiActionFileUploadDialogComponent, decorators: [{
|
|
8299
8305
|
type: Component,
|
|
8300
|
-
args: [{ selector: 'lib-ui-action-file-upload-dialog', template: "<div class=\"folderNameDialogContainer\">\r\n <div class=\"headerContainer\">\r\n <h3 class=\"color-accent-700\">\r\n {{ getTitle() }}\r\n </h3>\r\n <button mat-icon-button title=\"close\" (click)=\"cancel()\">\r\n <smart-icon [color]=\"'primary'\" [icon]=\"'X'\"></smart-icon>\r\n </button>\r\n </div>\r\n <p>\r\n {{ getText() }}\r\n </p>\r\n @if(compLib === componentLibrary.PRIMENG) {\r\n\r\n <p-fileUpload\r\n name=\"files[]\"\r\n url=\"\"\r\n (onSend)=\"uploadFiles($event)\"\r\n (onSelect)=\"onSelect($event)\"\r\n (onRemove)=\"onRemove($event)\"\r\n [multiple]=\"isMultiple\"\r\n [accept]=\"fileFormats?.join(',')\"\r\n [maxFileSize]=\"maxSizeMb\"\r\n >\r\n <ng-template pTemplate=\"content\"> </ng-template>\r\n </p-fileUpload>\r\n }@else{\r\n <smartfileuploader\r\n [i18n]=\"i18n\"\r\n [fileFormats]=\"fileFormats\"\r\n [maxSizeMb]=\"maxSizeMb\"\r\n [uploadCallback]=\"upload.bind(this)\"\r\n [isMultiple]=\"isMultiple\"\r\n ></smartfileuploader>\r\n\r\n }\r\n\r\n <div class=\"folderNameDialogButtonsContainer\">\r\n <button mat-button color=\"accent\" [color]=\"getCancelButtonColor()\" (click)=\"cancel()\">\r\n {{ getCancelButtonLabel() }}\r\n </button>\r\n <!-- <button mat-raised-button [color]=\"getActionButtonColor()\" (click)=\"upload()\">\r\n {{ getActionButtonLabel() }}\r\n </button> -->\r\n </div>\r\n</div>\r\n", styles: [".folderNameDialogContainer{width:25rem;display:flex;flex-direction:column;gap:1rem}.headerContainer{display:flex;flex-direction:row;justify-content:space-between}.headerContainer h3{margin:0}.folderNameDialogButtonsContainer{display:flex;flex-direction:row;justify-content:flex-end;gap:.5rem}\n"] }]
|
|
8306
|
+
args: [{ selector: 'lib-ui-action-file-upload-dialog', template: "<div class=\"folderNameDialogContainer\">\r\n <div class=\"headerContainer\">\r\n <h3 class=\"color-accent-700\">\r\n {{ getTitle() }}\r\n </h3>\r\n <button mat-icon-button title=\"close\" (click)=\"cancel()\">\r\n @if(compLib === componentLibrary.PRIMENG) {\r\n <smart-icon [color]=\"'primary'\" [icon]=\"'times'\"></smart-icon>\r\n }@else{\r\n\r\n <smart-icon [color]=\"'primary'\" [icon]=\"'X'\"></smart-icon>\r\n }\r\n </button>\r\n </div>\r\n <p>\r\n {{ getText() }}\r\n </p>\r\n @if(compLib === componentLibrary.PRIMENG) {\r\n\r\n <p-fileUpload\r\n name=\"files[]\"\r\n url=\"\"\r\n (onSend)=\"uploadFiles($event)\"\r\n (onSelect)=\"onSelect($event)\"\r\n (onRemove)=\"onRemove($event)\"\r\n [multiple]=\"isMultiple\"\r\n [accept]=\"fileFormats?.join(',')\"\r\n [maxFileSize]=\"maxSizeMb\"\r\n uploadLabel=\"Felt\u00F6lt\u00E9s\"\r\n cancelLabel=\"M\u00E9gsem\"\r\n chooseLabel=\"V\u00E1laszt\u00E1s\"\r\n >\r\n <ng-template pTemplate=\"content\"> </ng-template>\r\n </p-fileUpload>\r\n }@else{\r\n <smartfileuploader\r\n [i18n]=\"i18n\"\r\n [fileFormats]=\"fileFormats\"\r\n [maxSizeMb]=\"maxSizeMb\"\r\n [uploadCallback]=\"upload.bind(this)\"\r\n [isMultiple]=\"isMultiple\"\r\n ></smartfileuploader>\r\n\r\n }\r\n\r\n <div class=\"folderNameDialogButtonsContainer\">\r\n <button mat-button color=\"accent\" [color]=\"getCancelButtonColor()\" (click)=\"cancel()\">\r\n {{ getCancelButtonLabel() }}\r\n </button>\r\n <!-- <button mat-raised-button [color]=\"getActionButtonColor()\" (click)=\"upload()\">\r\n {{ getActionButtonLabel() }}\r\n </button> -->\r\n </div>\r\n</div>\r\n", styles: [".folderNameDialogContainer{width:25rem;display:flex;flex-direction:column;gap:1rem}.headerContainer{display:flex;flex-direction:row;justify-content:space-between}.headerContainer h3{margin:0}.folderNameDialogButtonsContainer{display:flex;flex-direction:row;justify-content:flex-end;gap:.5rem}\n"] }]
|
|
8301
8307
|
}], ctorParameters: () => [{ type: UiActionFileUploadDialogService, decorators: [{
|
|
8302
8308
|
type: Inject,
|
|
8303
8309
|
args: ['fileUploadDialogService']
|
|
@@ -9424,11 +9430,11 @@ class SmartFileUploaderComponent {
|
|
|
9424
9430
|
this.uiActionService.execute(this.uiActionModel.uiAction);
|
|
9425
9431
|
}
|
|
9426
9432
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: SmartFileUploaderComponent, deps: [{ token: UiActionService }, { token: UiActionDescriptorService }, { token: COMPONENT_LIBRARY }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
9427
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.11", type: SmartFileUploaderComponent, selector: "smart-file-uploader4sc", inputs: { config: "config" }, usesOnChanges: true, ngImport: i0, template: "@if(compLib === componentLibrary.PRIMENG) {\r\n<p-fileUpload\r\n name=\"files[]\"\r\n url=\"\"\r\n (onSend)=\"uploadFiles($event)\"\r\n (onSelect)=\"onSelect($event)\"\r\n (onRemove)=\"onRemove($event)\"\r\n [multiple]=\"true\"\r\n [accept]=\"config?.fileFormats?.join(',')\"\r\n [maxFileSize]=\"config?.maxSizeMb\"\r\n>\r\n <ng-template pTemplate=\"content\"> </ng-template>\r\n</p-fileUpload>\r\n}@else{\r\n<smartfileuploader\r\n *ngIf=\"i18n\"\r\n [i18n]=\"i18n\"\r\n [fileFormats]=\"config?.fileFormats\"\r\n [isMultiple]=\"config?.isMultiple\"\r\n [maxSizeMb]=\"config?.maxSizeMb\"\r\n [uploadCallback]=\"executeUpload.bind(this)\"\r\n></smartfileuploader>\r\n}\r\n", styles: [""], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: SmartfileuploaderComponent, selector: "smartfileuploader", inputs: ["uploadCallback", "fileFormats", "maxSizeMb", "i18n", "useIconButton", "isMultiple"] }, { kind: "component", type: i5$3.FileUpload, selector: "p-fileUpload", inputs: ["name", "url", "method", "multiple", "accept", "disabled", "auto", "withCredentials", "maxFileSize", "invalidFileSizeMessageSummary", "invalidFileSizeMessageDetail", "invalidFileTypeMessageSummary", "invalidFileTypeMessageDetail", "invalidFileLimitMessageDetail", "invalidFileLimitMessageSummary", "style", "styleClass", "previewWidth", "chooseLabel", "uploadLabel", "cancelLabel", "chooseIcon", "uploadIcon", "cancelIcon", "showUploadButton", "showCancelButton", "mode", "headers", "customUpload", "fileLimit", "uploadStyleClass", "cancelStyleClass", "removeStyleClass", "chooseStyleClass", "files"], outputs: ["onBeforeUpload", "onSend", "onUpload", "onError", "onClear", "onRemove", "onSelect", "onProgress", "uploadHandler", "onImageError", "onRemoveUploadedFile"] }, { kind: "directive", type: i3$3.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }] }); }
|
|
9433
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.11", type: SmartFileUploaderComponent, selector: "smart-file-uploader4sc", inputs: { config: "config" }, usesOnChanges: true, ngImport: i0, template: "@if(compLib === componentLibrary.PRIMENG) {\r\n<p-fileUpload\r\n name=\"files[]\"\r\n url=\"\"\r\n (onSend)=\"uploadFiles($event)\"\r\n (onSelect)=\"onSelect($event)\"\r\n (onRemove)=\"onRemove($event)\"\r\n [multiple]=\"true\"\r\n [accept]=\"config?.fileFormats?.join(',')\"\r\n [maxFileSize]=\"config?.maxSizeMb\"\r\n uploadLabel=\"Felt\u00F6lt\u00E9s\"\r\n cancelLabel=\"M\u00E9gsem\"\r\n chooseLabel=\"V\u00E1laszt\u00E1s\"\r\n>\r\n <ng-template pTemplate=\"content\"> </ng-template>\r\n</p-fileUpload>\r\n}@else{\r\n<smartfileuploader\r\n *ngIf=\"i18n\"\r\n [i18n]=\"i18n\"\r\n [fileFormats]=\"config?.fileFormats\"\r\n [isMultiple]=\"config?.isMultiple\"\r\n [maxSizeMb]=\"config?.maxSizeMb\"\r\n [uploadCallback]=\"executeUpload.bind(this)\"\r\n></smartfileuploader>\r\n}\r\n", styles: [""], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: SmartfileuploaderComponent, selector: "smartfileuploader", inputs: ["uploadCallback", "fileFormats", "maxSizeMb", "i18n", "useIconButton", "isMultiple"] }, { kind: "component", type: i5$3.FileUpload, selector: "p-fileUpload", inputs: ["name", "url", "method", "multiple", "accept", "disabled", "auto", "withCredentials", "maxFileSize", "invalidFileSizeMessageSummary", "invalidFileSizeMessageDetail", "invalidFileTypeMessageSummary", "invalidFileTypeMessageDetail", "invalidFileLimitMessageDetail", "invalidFileLimitMessageSummary", "style", "styleClass", "previewWidth", "chooseLabel", "uploadLabel", "cancelLabel", "chooseIcon", "uploadIcon", "cancelIcon", "showUploadButton", "showCancelButton", "mode", "headers", "customUpload", "fileLimit", "uploadStyleClass", "cancelStyleClass", "removeStyleClass", "chooseStyleClass", "files"], outputs: ["onBeforeUpload", "onSend", "onUpload", "onError", "onClear", "onRemove", "onSelect", "onProgress", "uploadHandler", "onImageError", "onRemoveUploadedFile"] }, { kind: "directive", type: i3$3.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }] }); }
|
|
9428
9434
|
}
|
|
9429
9435
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: SmartFileUploaderComponent, decorators: [{
|
|
9430
9436
|
type: Component,
|
|
9431
|
-
args: [{ selector: 'smart-file-uploader4sc', template: "@if(compLib === componentLibrary.PRIMENG) {\r\n<p-fileUpload\r\n name=\"files[]\"\r\n url=\"\"\r\n (onSend)=\"uploadFiles($event)\"\r\n (onSelect)=\"onSelect($event)\"\r\n (onRemove)=\"onRemove($event)\"\r\n [multiple]=\"true\"\r\n [accept]=\"config?.fileFormats?.join(',')\"\r\n [maxFileSize]=\"config?.maxSizeMb\"\r\n>\r\n <ng-template pTemplate=\"content\"> </ng-template>\r\n</p-fileUpload>\r\n}@else{\r\n<smartfileuploader\r\n *ngIf=\"i18n\"\r\n [i18n]=\"i18n\"\r\n [fileFormats]=\"config?.fileFormats\"\r\n [isMultiple]=\"config?.isMultiple\"\r\n [maxSizeMb]=\"config?.maxSizeMb\"\r\n [uploadCallback]=\"executeUpload.bind(this)\"\r\n></smartfileuploader>\r\n}\r\n" }]
|
|
9437
|
+
args: [{ selector: 'smart-file-uploader4sc', template: "@if(compLib === componentLibrary.PRIMENG) {\r\n<p-fileUpload\r\n name=\"files[]\"\r\n url=\"\"\r\n (onSend)=\"uploadFiles($event)\"\r\n (onSelect)=\"onSelect($event)\"\r\n (onRemove)=\"onRemove($event)\"\r\n [multiple]=\"true\"\r\n [accept]=\"config?.fileFormats?.join(',')\"\r\n [maxFileSize]=\"config?.maxSizeMb\"\r\n uploadLabel=\"Felt\u00F6lt\u00E9s\"\r\n cancelLabel=\"M\u00E9gsem\"\r\n chooseLabel=\"V\u00E1laszt\u00E1s\"\r\n>\r\n <ng-template pTemplate=\"content\"> </ng-template>\r\n</p-fileUpload>\r\n}@else{\r\n<smartfileuploader\r\n *ngIf=\"i18n\"\r\n [i18n]=\"i18n\"\r\n [fileFormats]=\"config?.fileFormats\"\r\n [isMultiple]=\"config?.isMultiple\"\r\n [maxSizeMb]=\"config?.maxSizeMb\"\r\n [uploadCallback]=\"executeUpload.bind(this)\"\r\n></smartfileuploader>\r\n}\r\n" }]
|
|
9432
9438
|
}], ctorParameters: () => [{ type: UiActionService }, { type: UiActionDescriptorService }, { type: ComponentLibrary, decorators: [{
|
|
9433
9439
|
type: Inject,
|
|
9434
9440
|
args: [COMPONENT_LIBRARY]
|