barsa-sap-ui 1.0.248 → 1.0.249

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.
@@ -1,7 +1,7 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { Component, ChangeDetectionStrategy, Input, ElementRef, ViewChild, HostBinding, EventEmitter, Output, ViewEncapsulation, ViewChildren, Inject, Optional, Self, TemplateRef, HostListener, Pipe, Directive, ViewContainerRef, SkipSelf, NgModule, APP_INITIALIZER, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
3
3
  import * as i2 from 'barsa-novin-ray-core';
4
- import { BaseComponent, ReportViewBaseComponent, getUniqueId, BarsaApi, LayoutItemBaseComponent, getDeviceIsMobile, LayoutService, BaseUlvSettingComponent, FormComponent, createFormPanelMetaConditions, ReportBaseComponent, GetAllColumnsSorted, getControlSizeMode, getGridSettings, FieldBaseComponent, DateService, getDateService as getDateService$1, DateMiladiService, DateHijriService, DateShamsiService, BaseDirective, EllipsifyDirective, createGridEditorFormPanel, FormPanelService, BaseViewItemPropsComponent, LayoutPanelBaseComponent, BaseViewContentPropsComponent, enumValueToStringSize, DateRanges, LogService, UlvMainService, isFunction, FilesValidationHelper, getValidExtension, isImage, getImagePath, getIcon, UploadService, LinearListHelper, FormToolbarBaseComponent, FormBaseComponent, ContainerService, PageBaseComponent, getHeaderValue, ContainerComponent, FormPropsBaseComponent, NumberBaseComponent, ImageMimeType, FormService, BaseFormToolbaritemPropsComponent, getDeviceIsPhone, getDeviceIsTablet, PortalService, BaseModule, BarsaNovinRayCoreModule, DIALOG_SERVICE } from 'barsa-novin-ray-core';
4
+ import { BaseComponent, ReportViewBaseComponent, getUniqueId, BarsaApi, LayoutItemBaseComponent, getDeviceIsMobile, LayoutService, BaseUlvSettingComponent, FormComponent, createFormPanelMetaConditions, ReportBaseComponent, GetAllColumnsSorted, getControlSizeMode, getGridSettings, FieldBaseComponent, DateService, getDateService as getDateService$1, DateMiladiService, DateHijriService, DateShamsiService, BaseDirective, EllipsifyDirective, createGridEditorFormPanel, FormPanelService, BaseViewItemPropsComponent, LayoutPanelBaseComponent, BaseViewContentPropsComponent, enumValueToStringSize, DateRanges, LogService, UlvMainService, isFunction, FilesValidationHelper, getValidExtension, isImage, getImagePath, getIcon, UploadService, LinearListHelper, FormToolbarBaseComponent, FormBaseComponent, PageWithFormHandlerBaseComponent, getHeaderValue, ContainerComponent, FORM_DIALOG_COMPONENT, ContainerService, FormPropsBaseComponent, NumberBaseComponent, ImageMimeType, BaseFormToolbaritemPropsComponent, getDeviceIsPhone, getDeviceIsTablet, PortalService, BaseModule, BarsaNovinRayCoreModule, DIALOG_SERVICE } from 'barsa-novin-ray-core';
5
5
  import moment from 'moment';
6
6
  import jmoment from 'moment-jalaali';
7
7
  import { merge, of, BehaviorSubject, Subject, combineLatest, takeUntil as takeUntil$1, fromEvent, filter as filter$1 } from 'rxjs';
@@ -7975,194 +7975,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
7975
7975
  type: Input
7976
7976
  }] } });
7977
7977
 
7978
- class FormDialogComponent extends BaseComponent {
7979
- constructor(_dialogService, dialogParams, _portalService) {
7980
- super();
7981
- this._dialogService = _dialogService;
7982
- this.dialogParams = dialogParams;
7983
- this._portalService = _portalService;
7984
- this.caption = '';
7985
- this.fullscreen = false;
7986
- this.isNonePersistance = false;
7987
- this.showSaveButton = true;
7988
- this.showToolbar = true;
7989
- this._portalService.deviceSize$.subscribe((deviceSize) => {
7990
- this.deviceSize = deviceSize;
7991
- });
7992
- const formPanelCtrlr = this.dialogParams.context.formpanelCtrlr;
7993
- const moId = this.dialogParams.context.id;
7994
- const typeDefId = this.dialogParams.context.tyid;
7995
- const reportId = this.dialogParams.context.repid;
7996
- this.inDialog = this.dialogParams.context.inDialog;
7997
- this.fullscreen = this.dialogParams.context.fullscreen;
7998
- this.params = { moId, typeDefId, reportId, inDialog: true };
7999
- this._setCaption(formPanelCtrlr);
8000
- this.formPanelCtrlr = formPanelCtrlr;
8001
- }
8002
- ngOnInit() {
8003
- var _a, _b;
8004
- super.ngOnInit();
8005
- const formPanelCtrlr = this.formPanelCtrlr;
8006
- this.showSaveButton = BarsaApi.Common.Util.TryGetValue(formPanelCtrlr, 'Setting.View.FormSettings.ShowSaveButton');
8007
- this.showToolbar = BarsaApi.Common.Util.TryGetValue(formPanelCtrlr, 'Setting.View.FormSettings.ShowToolbar');
8008
- this.isNonePersistance = (_b = (_a = formPanelCtrlr === null || formPanelCtrlr === void 0 ? void 0 : formPanelCtrlr.Setting) === null || _a === void 0 ? void 0 : _a.View) === null || _b === void 0 ? void 0 : _b.IsNonePersistance;
8009
- this.showFooter = this.isNonePersistance
8010
- ? this.showSaveButton !== false && this.showToolbar !== false
8011
- : this.showSaveButton;
8012
- if (typeof this.showFooter == typeof null) {
8013
- this.showFooter = true;
8014
- }
8015
- this.openDialog();
8016
- }
8017
- openDialog() {
8018
- const smallDevice = this.deviceSize === 's' || this.deviceSize === 'm';
8019
- const width = smallDevice ? '100vw' : '30vw';
8020
- let height = smallDevice ? '100vh' : 'auto';
8021
- const viewWidth = BarsaApi.Common.Util.TryGetValue(this.formPanelCtrlr, 'Setting.View.CustomSize.width', null);
8022
- const viewHieght = BarsaApi.Common.Util.TryGetValue(this.formPanelCtrlr, 'Setting.View.CustomSize.height', null);
8023
- const minWidth = smallDevice ? '100vw' : viewWidth ? viewWidth + 'px' : 'auto';
8024
- const minHeight = smallDevice ? '100vw' : viewHieght ? viewHieght + 'px' : 'auto';
8025
- if (viewHieght) {
8026
- height = '100%';
8027
- }
8028
- const modalSetting = BarsaApi.Common.Util.TryGetValue(this.formPanelCtrlr, 'Setting.View.CustomUi.Parameters.ModalSetting', null);
8029
- let setting = {
8030
- escKeyCloseable: false,
8031
- responsivePadding: true,
8032
- backdropClickCloseable: false,
8033
- mobile: smallDevice,
8034
- width,
8035
- height,
8036
- // bodyMinHeight: minHeight,
8037
- minHeight,
8038
- minWidth,
8039
- fullScreen: smallDevice,
8040
- verticalPadding: true,
8041
- resizable: false,
8042
- data: { caption: this.caption }
8043
- };
8044
- if (modalSetting) {
8045
- setting = Object.assign(Object.assign({}, setting), modalSetting);
8046
- }
8047
- this.dialogRef = this._dialogService.open(this.dialogTemplateRef, setting);
8048
- }
8049
- onCancel() {
8050
- this._close();
8051
- }
8052
- onSave() {
8053
- const adapter = this.formPanelCtrlr.Adapter;
8054
- adapter.fireEvent('ToolClick', adapter, { Key: 'SaveAndClose' });
8055
- }
8056
- onOk() {
8057
- const adapter = this.formPanelCtrlr.Adapter;
8058
- adapter.fireEvent('ToolClick', adapter, { Key: 'Ok' });
8059
- }
8060
- onFormClose() {
8061
- this.dialogRef.close();
8062
- this.dialogParams.close();
8063
- this.dialogOpened = false;
8064
- }
8065
- // /* eslint-disable */
8066
- // @Input() ShowFormPanelControl = (formpanelCtrlr) => {};
8067
- // /* eslint-disable */
8068
- // @Input() ForceCloseChild = () => {};
8069
- // /* eslint-disable */
8070
- // @Input() RefreshFormPanelControl = (formpanelCtrlr) => {};
8071
- _close() {
8072
- // this.dialogRef.nativeElement.close();
8073
- this.formPanelCtrlr.Adapter.Control.fireEvent('RequestForClose', this.formPanelCtrlr.Adapter.Control);
8074
- // this.dialogRef.close();
8075
- // this.dialogParams.close();
8076
- // this.dialogOpened = false;
8077
- }
8078
- _setCaption(formPanelCtrlr) {
8079
- const typeDefName = BarsaApi.Common.Util.TryGetValue(formPanelCtrlr, 'Mo.$TypeDefName', '');
8080
- const moCaption = BarsaApi.Common.Util.TryGetValue(formPanelCtrlr, 'Mo.$Caption', '');
8081
- this.caption = typeDefName + ':' + moCaption;
8082
- }
8083
- }
8084
- FormDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: FormDialogComponent, deps: [{ token: i1$1.DialogService }, { token: i2.DialogParams }, { token: i2.PortalService }], target: i0.ɵɵFactoryTarget.Component });
8085
- FormDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: FormDialogComponent, selector: "bsu-form-dialog", providers: [ContainerService], viewQueries: [{ propertyName: "dialogTemplateRef", first: true, predicate: ["dialog"], descendants: true, read: TemplateRef, static: true }], usesInheritance: true, ngImport: i0, template: "<ng-template let-dialog let-dialogConfig=\"dialogConfig\" #dialog>\r\n <fd-dialog [dialogConfig]=\"dialogConfig\" [dialogRef]=\"dialog\">\r\n <fd-dialog-header>\r\n <h1 fd-title>{{ dialogConfig.data.caption }}</h1>\r\n <button fd-dialog-close-button (click)=\"onCancel()\"></button>\r\n </fd-dialog-header>\r\n\r\n <fd-dialog-body>\r\n <bnrc-form [formPanelCtrl]=\"formPanelCtrlr\" [params]=\"params\" (formClose)=\"onFormClose()\"></bnrc-form>\r\n </fd-dialog-body>\r\n <fd-dialog-footer [style.display]=\"!showFooter ? 'none' : null\">\r\n <ng-container *ngIf=\"isNonePersistance; else saveBtn\">\r\n <fd-dialog-footer-button>\r\n <fd-button-bar\r\n fd-dialog-decisive-button\r\n fdType=\"emphasized\"\r\n [label]=\"'Ok' | bbbTranslate\"\r\n (click)=\"onOk()\"\r\n ></fd-button-bar>\r\n </fd-dialog-footer-button>\r\n </ng-container>\r\n <ng-template #saveBtn>\r\n <fd-dialog-footer-button>\r\n <fd-button-bar\r\n fd-dialog-decisive-button\r\n fdType=\"emphasized\"\r\n [label]=\"'Save' | bbbTranslate\"\r\n (click)=\"onSave()\"\r\n ></fd-button-bar>\r\n </fd-dialog-footer-button>\r\n </ng-template>\r\n\r\n <fd-dialog-footer-button>\r\n <fd-button-bar\r\n fd-initial-focus\r\n fd-dialog-decisive-button\r\n fdType=\"transparent\"\r\n [label]=\"'Cancel' | bbbTranslate\"\r\n (click)=\"onCancel()\"\r\n ></fd-button-bar>\r\n </fd-dialog-footer-button>\r\n </fd-dialog-footer>\r\n </fd-dialog>\r\n</ng-template>\r\n", styles: [":host{display:block;height:auto}fd-dialog-body{display:flex;flex-direction:column;height:100%;align-items:stretch;justify-content:stretch}fd-dialog-body>bnrc-form{flex-grow:1;display:flex;flex-direction:row;height:100%;justify-content:stretch;align-items:stretch}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.FormComponent, selector: "bnrc-form", inputs: ["params", "customFormPanelUi", "formPanelCtrl", "formPanelCtrlId"], outputs: ["titleChanged", "moChanged", "formClose", "formRendered"] }, { kind: "component", type: i3$1.ButtonBarComponent, selector: "fd-button-bar", inputs: ["fullWidth", "fdType", "title", "ariaLabel", "ariaLabelledby", "id"] }, { kind: "component", type: i4.DialogComponent, selector: "fd-dialog", inputs: ["class", "dialogRef", "dialogConfig"] }, { kind: "component", type: i4.DialogBodyComponent, selector: "fd-dialog-body" }, { kind: "component", type: i4.DialogFooterComponent, selector: "fd-dialog-footer" }, { kind: "component", type: i4.DialogHeaderComponent, selector: "fd-dialog-header" }, { kind: "component", type: i4.DialogCloseButtonComponent, selector: "[fd-dialog-close-button]", inputs: ["mobile", "title"] }, { kind: "component", type: i4.DialogFooterButtonComponent, selector: "fd-dialog-footer-button" }, { kind: "directive", type: i4.DialogDecisiveButtonDirective, selector: "[fd-dialog-decisive-button]" }, { kind: "component", type: i5.TitleComponent, selector: "h1[fd-title], h2[fd-title], h3[fd-title], h4[fd-title], h5[fd-title], h6[fd-title]", inputs: ["headerSize", "wrap"], exportAs: ["fd-title"] }, { kind: "directive", type: i6$2.InitialFocusDirective, selector: "[fdInitialFocus], [fd-initial-focus]", inputs: ["fd-initial-focus", "enabled", "focusLastElement"] }, { kind: "pipe", type: i2.BbbTranslatePipe, name: "bbbTranslate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
8086
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: FormDialogComponent, decorators: [{
8087
- type: Component,
8088
- args: [{ selector: 'bsu-form-dialog', providers: [ContainerService], changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-template let-dialog let-dialogConfig=\"dialogConfig\" #dialog>\r\n <fd-dialog [dialogConfig]=\"dialogConfig\" [dialogRef]=\"dialog\">\r\n <fd-dialog-header>\r\n <h1 fd-title>{{ dialogConfig.data.caption }}</h1>\r\n <button fd-dialog-close-button (click)=\"onCancel()\"></button>\r\n </fd-dialog-header>\r\n\r\n <fd-dialog-body>\r\n <bnrc-form [formPanelCtrl]=\"formPanelCtrlr\" [params]=\"params\" (formClose)=\"onFormClose()\"></bnrc-form>\r\n </fd-dialog-body>\r\n <fd-dialog-footer [style.display]=\"!showFooter ? 'none' : null\">\r\n <ng-container *ngIf=\"isNonePersistance; else saveBtn\">\r\n <fd-dialog-footer-button>\r\n <fd-button-bar\r\n fd-dialog-decisive-button\r\n fdType=\"emphasized\"\r\n [label]=\"'Ok' | bbbTranslate\"\r\n (click)=\"onOk()\"\r\n ></fd-button-bar>\r\n </fd-dialog-footer-button>\r\n </ng-container>\r\n <ng-template #saveBtn>\r\n <fd-dialog-footer-button>\r\n <fd-button-bar\r\n fd-dialog-decisive-button\r\n fdType=\"emphasized\"\r\n [label]=\"'Save' | bbbTranslate\"\r\n (click)=\"onSave()\"\r\n ></fd-button-bar>\r\n </fd-dialog-footer-button>\r\n </ng-template>\r\n\r\n <fd-dialog-footer-button>\r\n <fd-button-bar\r\n fd-initial-focus\r\n fd-dialog-decisive-button\r\n fdType=\"transparent\"\r\n [label]=\"'Cancel' | bbbTranslate\"\r\n (click)=\"onCancel()\"\r\n ></fd-button-bar>\r\n </fd-dialog-footer-button>\r\n </fd-dialog-footer>\r\n </fd-dialog>\r\n</ng-template>\r\n", styles: [":host{display:block;height:auto}fd-dialog-body{display:flex;flex-direction:column;height:100%;align-items:stretch;justify-content:stretch}fd-dialog-body>bnrc-form{flex-grow:1;display:flex;flex-direction:row;height:100%;justify-content:stretch;align-items:stretch}\n"] }]
8089
- }], ctorParameters: function () { return [{ type: i1$1.DialogService }, { type: i2.DialogParams }, { type: i2.PortalService }]; }, propDecorators: { dialogTemplateRef: [{
8090
- type: ViewChild,
8091
- args: ['dialog', { read: TemplateRef, static: true }]
8092
- }] } });
8093
-
8094
- class PageWithFormHandlerBaseComponent extends PageBaseComponent {
8095
- constructor() {
8096
- super(...arguments);
8097
- /* eslint-disable */
8098
- this.ShowFormPanelControl = (formpanelCtrlr) => {
8099
- this.formpanelCtrlr = formpanelCtrlr;
8100
- this._portalService.ShowFormPanelControl(formpanelCtrlr, this._router, this._activatedRoute, FormDialogComponent, true);
8101
- };
8102
- /* eslint-disable */
8103
- this.ForceCloseChild = () => {
8104
- this._router.navigate(['../'], { relativeTo: this._activatedRoute });
8105
- };
8106
- /* eslint-disable */
8107
- this.RefreshFormPanelControl = (formpanelCtrlr) => {
8108
- if (!this.formpanelCtrlr) {
8109
- this.formpanelCtrlr = formpanelCtrlr;
8110
- }
8111
- this._portalService.ShowFormPanelControl(this.formpanelCtrlr, this._router, this._activatedRoute, FormDialogComponent, true, true);
8112
- };
8113
- }
8114
- }
8115
- PageWithFormHandlerBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PageWithFormHandlerBaseComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
8116
- PageWithFormHandlerBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: PageWithFormHandlerBaseComponent, selector: "bsu-page-with-form-handler-base", inputs: { ShowFormPanelControl: "ShowFormPanelControl", ForceCloseChild: "ForceCloseChild", RefreshFormPanelControl: "RefreshFormPanelControl" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
8117
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: PageWithFormHandlerBaseComponent, decorators: [{
8118
- type: Component,
8119
- args: [{
8120
- selector: 'bsu-page-with-form-handler-base',
8121
- template: '',
8122
- changeDetection: ChangeDetectionStrategy.OnPush
8123
- }]
8124
- }], propDecorators: { ShowFormPanelControl: [{
8125
- type: Input
8126
- }], ForceCloseChild: [{
8127
- type: Input
8128
- }], RefreshFormPanelControl: [{
8129
- type: Input
8130
- }] } });
8131
-
8132
- class EmptyPageComponent extends PageWithFormHandlerBaseComponent {
8133
- constructor() {
8134
- super(...arguments);
8135
- this._position = null;
8136
- this.sectionClass = true;
8137
- this.absolutePageClass = true;
8138
- }
8139
- ngOnInit() {
8140
- var _a, _b, _c, _d;
8141
- super.ngOnInit();
8142
- if (!BarsaApi.LoginFormData.IsServiceDesk) {
8143
- this._position = 'relative';
8144
- }
8145
- if ((_d = (_c = (_b = (_a = this._activatedRoute.snapshot.data) === null || _a === void 0 ? void 0 : _a.pageData) === null || _b === void 0 ? void 0 : _b.Component) === null || _c === void 0 ? void 0 : _c.Settings) === null || _d === void 0 ? void 0 : _d.IsRelativePage) {
8146
- this._position = 'relative';
8147
- }
8148
- }
8149
- }
8150
- EmptyPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: EmptyPageComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
8151
- EmptyPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: EmptyPageComponent, selector: "bsu-empty-page", host: { properties: { "style.position": "this._position", "class.section": "this.sectionClass", "class.absolute-page": "this.absolutePageClass" } }, providers: [ContainerService], usesInheritance: true, ngImport: i0, template: "<ng-container #containerRef></ng-container>\r\n<router-outlet></router-outlet>\r\n<router-outlet name=\"main\"></router-outlet>\r\n", styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type: i3$7.RouterOutlet, selector: "router-outlet", outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
8152
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: EmptyPageComponent, decorators: [{
8153
- type: Component,
8154
- args: [{ selector: 'bsu-empty-page', providers: [ContainerService], changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container #containerRef></ng-container>\r\n<router-outlet></router-outlet>\r\n<router-outlet name=\"main\"></router-outlet>\r\n", styles: [":host{display:block}\n"] }]
8155
- }], propDecorators: { _position: [{
8156
- type: HostBinding,
8157
- args: ['style.position']
8158
- }], sectionClass: [{
8159
- type: HostBinding,
8160
- args: ['class.section']
8161
- }], absolutePageClass: [{
8162
- type: HostBinding,
8163
- args: ['class.absolute-page']
8164
- }] } });
8165
-
8166
7978
  class HeaderAvatarComponent extends BaseComponent {
8167
7979
  }
8168
7980
  HeaderAvatarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: HeaderAvatarComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
@@ -8868,8 +8680,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
8868
8680
  }] } });
8869
8681
 
8870
8682
  class FormDialogLessComponent extends ContainerComponent {
8871
- constructor(dialogParams, _el, _activatedRoute, _portalService, _vcr, _barsaDialogService, _injector, _router, _cdr, _containerService) {
8872
- super(_el, _activatedRoute, _portalService, _vcr, _barsaDialogService, _injector, _router, _cdr, _containerService);
8683
+ constructor(dialogParams, _el, _activatedRoute, _portalService, _vcr, _barsaDialogService, _injector, _router, _cdr, _containerService, _formDialogComponent) {
8684
+ super(_el, _activatedRoute, _portalService, _vcr, _barsaDialogService, _injector, _router, _cdr, _containerService, _formDialogComponent);
8873
8685
  this.dialogParams = dialogParams;
8874
8686
  this._el = _el;
8875
8687
  this._activatedRoute = _activatedRoute;
@@ -8880,6 +8692,7 @@ class FormDialogLessComponent extends ContainerComponent {
8880
8692
  this._router = _router;
8881
8693
  this._cdr = _cdr;
8882
8694
  this._containerService = _containerService;
8695
+ this._formDialogComponent = _formDialogComponent;
8883
8696
  this.formPanelCtrlr = this.dialogParams.context.formpanelCtrlr;
8884
8697
  const moId = this.dialogParams.context.queryParams.id;
8885
8698
  const typeDefId = this.dialogParams.context.queryParams.tyid;
@@ -8888,7 +8701,7 @@ class FormDialogLessComponent extends ContainerComponent {
8888
8701
  }
8889
8702
  onFormClose() { }
8890
8703
  }
8891
- FormDialogLessComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: FormDialogLessComponent, deps: [{ token: i2.DialogParams }, { token: i0.ElementRef }, { token: i3$7.ActivatedRoute }, { token: i2.PortalService }, { token: i0.ViewContainerRef }, { token: i2.BarsaDialogService }, { token: i0.Injector }, { token: i3$7.Router }, { token: i0.ChangeDetectorRef }, { token: i2.ContainerService, optional: true, self: true }], target: i0.ɵɵFactoryTarget.Component });
8704
+ FormDialogLessComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: FormDialogLessComponent, deps: [{ token: i2.DialogParams }, { token: i0.ElementRef }, { token: i3$7.ActivatedRoute }, { token: i2.PortalService }, { token: i0.ViewContainerRef }, { token: i2.BarsaDialogService }, { token: i0.Injector }, { token: i3$7.Router }, { token: i0.ChangeDetectorRef }, { token: i2.ContainerService, optional: true, self: true }, { token: FORM_DIALOG_COMPONENT, optional: true }], target: i0.ɵɵFactoryTarget.Component });
8892
8705
  FormDialogLessComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: FormDialogLessComponent, selector: "bsu-form-dialog-less", providers: [ContainerService], usesInheritance: true, ngImport: i0, template: "<bnrc-form *ngIf=\"rendered\" [formPanelCtrl]=\"formPanelCtrlr\" [params]=\"params\" (formClose)=\"onFormClose()\"></bnrc-form>\r\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.FormComponent, selector: "bnrc-form", inputs: ["params", "customFormPanelUi", "formPanelCtrl", "formPanelCtrlId"], outputs: ["titleChanged", "moChanged", "formClose", "formRendered"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
8893
8706
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: FormDialogLessComponent, decorators: [{
8894
8707
  type: Component,
@@ -8898,6 +8711,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
8898
8711
  type: Self
8899
8712
  }, {
8900
8713
  type: Optional
8714
+ }] }, { type: i0.Type, decorators: [{
8715
+ type: Optional
8716
+ }, {
8717
+ type: Inject,
8718
+ args: [FORM_DIALOG_COMPONENT]
8901
8719
  }] }];
8902
8720
  } });
8903
8721
 
@@ -9394,6 +9212,122 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
9394
9212
  args: ['class.control-readonly']
9395
9213
  }] } });
9396
9214
 
9215
+ class FormDialogComponent extends BaseComponent {
9216
+ constructor(_dialogService, dialogParams, _portalService) {
9217
+ super();
9218
+ this._dialogService = _dialogService;
9219
+ this.dialogParams = dialogParams;
9220
+ this._portalService = _portalService;
9221
+ this.caption = '';
9222
+ this.fullscreen = false;
9223
+ this.isNonePersistance = false;
9224
+ this.showSaveButton = true;
9225
+ this.showToolbar = true;
9226
+ this._portalService.deviceSize$.subscribe((deviceSize) => {
9227
+ this.deviceSize = deviceSize;
9228
+ });
9229
+ const formPanelCtrlr = this.dialogParams.context.formpanelCtrlr;
9230
+ const moId = this.dialogParams.context.id;
9231
+ const typeDefId = this.dialogParams.context.tyid;
9232
+ const reportId = this.dialogParams.context.repid;
9233
+ this.inDialog = this.dialogParams.context.inDialog;
9234
+ this.fullscreen = this.dialogParams.context.fullscreen;
9235
+ this.params = { moId, typeDefId, reportId, inDialog: true };
9236
+ this._setCaption(formPanelCtrlr);
9237
+ this.formPanelCtrlr = formPanelCtrlr;
9238
+ }
9239
+ ngOnInit() {
9240
+ var _a, _b;
9241
+ super.ngOnInit();
9242
+ const formPanelCtrlr = this.formPanelCtrlr;
9243
+ this.showSaveButton = BarsaApi.Common.Util.TryGetValue(formPanelCtrlr, 'Setting.View.FormSettings.ShowSaveButton');
9244
+ this.showToolbar = BarsaApi.Common.Util.TryGetValue(formPanelCtrlr, 'Setting.View.FormSettings.ShowToolbar');
9245
+ this.isNonePersistance = (_b = (_a = formPanelCtrlr === null || formPanelCtrlr === void 0 ? void 0 : formPanelCtrlr.Setting) === null || _a === void 0 ? void 0 : _a.View) === null || _b === void 0 ? void 0 : _b.IsNonePersistance;
9246
+ this.showFooter = this.isNonePersistance
9247
+ ? this.showSaveButton !== false && this.showToolbar !== false
9248
+ : this.showSaveButton;
9249
+ if (typeof this.showFooter == typeof null) {
9250
+ this.showFooter = true;
9251
+ }
9252
+ this.openDialog();
9253
+ }
9254
+ openDialog() {
9255
+ const smallDevice = this.deviceSize === 's' || this.deviceSize === 'm';
9256
+ const width = smallDevice ? '100vw' : '30vw';
9257
+ let height = smallDevice ? '100vh' : 'auto';
9258
+ const viewWidth = BarsaApi.Common.Util.TryGetValue(this.formPanelCtrlr, 'Setting.View.CustomSize.width', null);
9259
+ const viewHieght = BarsaApi.Common.Util.TryGetValue(this.formPanelCtrlr, 'Setting.View.CustomSize.height', null);
9260
+ const minWidth = smallDevice ? '100vw' : viewWidth ? viewWidth + 'px' : 'auto';
9261
+ const minHeight = smallDevice ? '100vw' : viewHieght ? viewHieght + 'px' : 'auto';
9262
+ if (viewHieght) {
9263
+ height = '100%';
9264
+ }
9265
+ const modalSetting = BarsaApi.Common.Util.TryGetValue(this.formPanelCtrlr, 'Setting.View.CustomUi.Parameters.ModalSetting', null);
9266
+ let setting = {
9267
+ escKeyCloseable: false,
9268
+ responsivePadding: true,
9269
+ backdropClickCloseable: false,
9270
+ mobile: smallDevice,
9271
+ width,
9272
+ height,
9273
+ // bodyMinHeight: minHeight,
9274
+ minHeight,
9275
+ minWidth,
9276
+ fullScreen: smallDevice,
9277
+ verticalPadding: true,
9278
+ resizable: false,
9279
+ data: { caption: this.caption }
9280
+ };
9281
+ if (modalSetting) {
9282
+ setting = Object.assign(Object.assign({}, setting), modalSetting);
9283
+ }
9284
+ this.dialogRef = this._dialogService.open(this.dialogTemplateRef, setting);
9285
+ }
9286
+ onCancel() {
9287
+ this._close();
9288
+ }
9289
+ onSave() {
9290
+ const adapter = this.formPanelCtrlr.Adapter;
9291
+ adapter.fireEvent('ToolClick', adapter, { Key: 'SaveAndClose' });
9292
+ }
9293
+ onOk() {
9294
+ const adapter = this.formPanelCtrlr.Adapter;
9295
+ adapter.fireEvent('ToolClick', adapter, { Key: 'Ok' });
9296
+ }
9297
+ onFormClose() {
9298
+ this.dialogRef.close();
9299
+ this.dialogParams.close();
9300
+ this.dialogOpened = false;
9301
+ }
9302
+ // /* eslint-disable */
9303
+ // @Input() ShowFormPanelControl = (formpanelCtrlr) => {};
9304
+ // /* eslint-disable */
9305
+ // @Input() ForceCloseChild = () => {};
9306
+ // /* eslint-disable */
9307
+ // @Input() RefreshFormPanelControl = (formpanelCtrlr) => {};
9308
+ _close() {
9309
+ // this.dialogRef.nativeElement.close();
9310
+ this.formPanelCtrlr.Adapter.Control.fireEvent('RequestForClose', this.formPanelCtrlr.Adapter.Control);
9311
+ // this.dialogRef.close();
9312
+ // this.dialogParams.close();
9313
+ // this.dialogOpened = false;
9314
+ }
9315
+ _setCaption(formPanelCtrlr) {
9316
+ const typeDefName = BarsaApi.Common.Util.TryGetValue(formPanelCtrlr, 'Mo.$TypeDefName', '');
9317
+ const moCaption = BarsaApi.Common.Util.TryGetValue(formPanelCtrlr, 'Mo.$Caption', '');
9318
+ this.caption = typeDefName + ':' + moCaption;
9319
+ }
9320
+ }
9321
+ FormDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: FormDialogComponent, deps: [{ token: i1$1.DialogService }, { token: i2.DialogParams }, { token: i2.PortalService }], target: i0.ɵɵFactoryTarget.Component });
9322
+ FormDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: FormDialogComponent, selector: "bsu-form-dialog", providers: [ContainerService], viewQueries: [{ propertyName: "dialogTemplateRef", first: true, predicate: ["dialog"], descendants: true, read: TemplateRef, static: true }], usesInheritance: true, ngImport: i0, template: "<ng-template let-dialog let-dialogConfig=\"dialogConfig\" #dialog>\r\n <fd-dialog [dialogConfig]=\"dialogConfig\" [dialogRef]=\"dialog\">\r\n <fd-dialog-header>\r\n <h1 fd-title>{{ dialogConfig.data.caption }}</h1>\r\n <button fd-dialog-close-button (click)=\"onCancel()\"></button>\r\n </fd-dialog-header>\r\n\r\n <fd-dialog-body>\r\n <bnrc-form [formPanelCtrl]=\"formPanelCtrlr\" [params]=\"params\" (formClose)=\"onFormClose()\"></bnrc-form>\r\n </fd-dialog-body>\r\n <fd-dialog-footer [style.display]=\"!showFooter ? 'none' : null\">\r\n <ng-container *ngIf=\"isNonePersistance; else saveBtn\">\r\n <fd-dialog-footer-button>\r\n <fd-button-bar\r\n fd-dialog-decisive-button\r\n fdType=\"emphasized\"\r\n [label]=\"'Ok' | bbbTranslate\"\r\n (click)=\"onOk()\"\r\n ></fd-button-bar>\r\n </fd-dialog-footer-button>\r\n </ng-container>\r\n <ng-template #saveBtn>\r\n <fd-dialog-footer-button>\r\n <fd-button-bar\r\n fd-dialog-decisive-button\r\n fdType=\"emphasized\"\r\n [label]=\"'Save' | bbbTranslate\"\r\n (click)=\"onSave()\"\r\n ></fd-button-bar>\r\n </fd-dialog-footer-button>\r\n </ng-template>\r\n\r\n <fd-dialog-footer-button>\r\n <fd-button-bar\r\n fd-initial-focus\r\n fd-dialog-decisive-button\r\n fdType=\"transparent\"\r\n [label]=\"'Cancel' | bbbTranslate\"\r\n (click)=\"onCancel()\"\r\n ></fd-button-bar>\r\n </fd-dialog-footer-button>\r\n </fd-dialog-footer>\r\n </fd-dialog>\r\n</ng-template>\r\n", styles: [":host{display:block;height:auto}fd-dialog-body{display:flex;flex-direction:column;height:100%;align-items:stretch;justify-content:stretch}fd-dialog-body>bnrc-form{flex-grow:1;display:flex;flex-direction:row;height:100%;justify-content:stretch;align-items:stretch}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.FormComponent, selector: "bnrc-form", inputs: ["params", "customFormPanelUi", "formPanelCtrl", "formPanelCtrlId"], outputs: ["titleChanged", "moChanged", "formClose", "formRendered"] }, { kind: "component", type: i3$1.ButtonBarComponent, selector: "fd-button-bar", inputs: ["fullWidth", "fdType", "title", "ariaLabel", "ariaLabelledby", "id"] }, { kind: "component", type: i4.DialogComponent, selector: "fd-dialog", inputs: ["class", "dialogRef", "dialogConfig"] }, { kind: "component", type: i4.DialogBodyComponent, selector: "fd-dialog-body" }, { kind: "component", type: i4.DialogFooterComponent, selector: "fd-dialog-footer" }, { kind: "component", type: i4.DialogHeaderComponent, selector: "fd-dialog-header" }, { kind: "component", type: i4.DialogCloseButtonComponent, selector: "[fd-dialog-close-button]", inputs: ["mobile", "title"] }, { kind: "component", type: i4.DialogFooterButtonComponent, selector: "fd-dialog-footer-button" }, { kind: "directive", type: i4.DialogDecisiveButtonDirective, selector: "[fd-dialog-decisive-button]" }, { kind: "component", type: i5.TitleComponent, selector: "h1[fd-title], h2[fd-title], h3[fd-title], h4[fd-title], h5[fd-title], h6[fd-title]", inputs: ["headerSize", "wrap"], exportAs: ["fd-title"] }, { kind: "directive", type: i6$2.InitialFocusDirective, selector: "[fdInitialFocus], [fd-initial-focus]", inputs: ["fd-initial-focus", "enabled", "focusLastElement"] }, { kind: "pipe", type: i2.BbbTranslatePipe, name: "bbbTranslate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
9323
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: FormDialogComponent, decorators: [{
9324
+ type: Component,
9325
+ args: [{ selector: 'bsu-form-dialog', providers: [ContainerService], changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-template let-dialog let-dialogConfig=\"dialogConfig\" #dialog>\r\n <fd-dialog [dialogConfig]=\"dialogConfig\" [dialogRef]=\"dialog\">\r\n <fd-dialog-header>\r\n <h1 fd-title>{{ dialogConfig.data.caption }}</h1>\r\n <button fd-dialog-close-button (click)=\"onCancel()\"></button>\r\n </fd-dialog-header>\r\n\r\n <fd-dialog-body>\r\n <bnrc-form [formPanelCtrl]=\"formPanelCtrlr\" [params]=\"params\" (formClose)=\"onFormClose()\"></bnrc-form>\r\n </fd-dialog-body>\r\n <fd-dialog-footer [style.display]=\"!showFooter ? 'none' : null\">\r\n <ng-container *ngIf=\"isNonePersistance; else saveBtn\">\r\n <fd-dialog-footer-button>\r\n <fd-button-bar\r\n fd-dialog-decisive-button\r\n fdType=\"emphasized\"\r\n [label]=\"'Ok' | bbbTranslate\"\r\n (click)=\"onOk()\"\r\n ></fd-button-bar>\r\n </fd-dialog-footer-button>\r\n </ng-container>\r\n <ng-template #saveBtn>\r\n <fd-dialog-footer-button>\r\n <fd-button-bar\r\n fd-dialog-decisive-button\r\n fdType=\"emphasized\"\r\n [label]=\"'Save' | bbbTranslate\"\r\n (click)=\"onSave()\"\r\n ></fd-button-bar>\r\n </fd-dialog-footer-button>\r\n </ng-template>\r\n\r\n <fd-dialog-footer-button>\r\n <fd-button-bar\r\n fd-initial-focus\r\n fd-dialog-decisive-button\r\n fdType=\"transparent\"\r\n [label]=\"'Cancel' | bbbTranslate\"\r\n (click)=\"onCancel()\"\r\n ></fd-button-bar>\r\n </fd-dialog-footer-button>\r\n </fd-dialog-footer>\r\n </fd-dialog>\r\n</ng-template>\r\n", styles: [":host{display:block;height:auto}fd-dialog-body{display:flex;flex-direction:column;height:100%;align-items:stretch;justify-content:stretch}fd-dialog-body>bnrc-form{flex-grow:1;display:flex;flex-direction:row;height:100%;justify-content:stretch;align-items:stretch}\n"] }]
9326
+ }], ctorParameters: function () { return [{ type: i1$1.DialogService }, { type: i2.DialogParams }, { type: i2.PortalService }]; }, propDecorators: { dialogTemplateRef: [{
9327
+ type: ViewChild,
9328
+ args: ['dialog', { read: TemplateRef, static: true }]
9329
+ }] } });
9330
+
9397
9331
  class UiDateTimeComponent extends FieldBaseComponent {
9398
9332
  constructor() {
9399
9333
  super(...arguments);
@@ -10744,177 +10678,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
10744
10678
  type: Input
10745
10679
  }] } });
10746
10680
 
10747
- class FormPageBaseComponent extends ContainerComponent {
10748
- constructor() {
10749
- super(...arguments);
10750
- /* eslint-disable */
10751
- this.ShowFormPanelControl = (formpanelCtrlr) => {
10752
- this._portalService.ShowFormPanelControl(formpanelCtrlr, this._router, this._activatedRoute, FormDialogComponent, false);
10753
- };
10754
- /* eslint-disable */
10755
- this.RefreshFormPanelControl = () => {
10756
- const formpanelCtrlr = this._portalService.formPanels[this.formpanelCtrlrId];
10757
- this.parentContainer.RefreshFormPanelControl(formpanelCtrlr);
10758
- };
10759
- /* eslint-disable */
10760
- this.ForceCloseChild = () => {
10761
- this._router.navigate([{ outlets: { popup: null } }], {
10762
- relativeTo: this._activatedRoute
10763
- });
10764
- };
10765
- /* eslint-disable */
10766
- this.ForceClose = () => {
10767
- this.parentContainer.ForceCloseChild();
10768
- };
10769
- }
10770
- ngOnInit() {
10771
- super.ngOnInit();
10772
- this._activatedRoute.params.pipe(takeUntil(this._onDestroy$)).subscribe((params) => {
10773
- var _a;
10774
- const state = (_a = this._router.getCurrentNavigation()) === null || _a === void 0 ? void 0 : _a.extras.state;
10775
- this.prepareIds(state === null || state === void 0 ? void 0 : state.formPanelCtrlrId, params);
10776
- });
10777
- }
10778
- ngAfterViewInit() {
10779
- super.ngAfterViewInit();
10780
- if (!this.formPanelCtrlr) {
10781
- this.formPanelCtrlr = this._portalService.formPanels[this.formpanelCtrlrId];
10782
- }
10783
- this.hideAllPageContent();
10784
- if (BarsaApi.LoginFormData.IsServiceDesk) {
10785
- setTimeout(() => {
10786
- window.scrollTo({ top: 0 });
10787
- }, 0);
10788
- }
10789
- }
10790
- ngOnDestroy() {
10791
- super.ngOnDestroy();
10792
- this._portalService.formPanels[this.formpanelCtrlrId] = null;
10793
- this.removeLastHidePage();
10794
- }
10795
- hideAllPageContent() {
10796
- // const pages = document.querySelectorAll('.section.absolute-page');
10797
- // pages?.forEach((pageEl) => {
10798
- // if (pageEl !== this._el.nativeElement) {
10799
- // // (pageEl as HTMLElement).classList.add('hide');
10800
- // }
10801
- // });
10802
- // if (pages && pages.length > 0) {
10803
- // (pages[pages.length - 1]?.firstChild as HTMLElement)?.classList?.remove('hide');
10804
- // }
10805
- }
10806
- removeLastHidePage() {
10807
- // const pages = document.querySelectorAll('.section.absolute-page');
10808
- // if (pages && pages.length > 0) {
10809
- // const last: null | Element = pages[pages.length - 2];
10810
- // last.classList?.remove('hide');
10811
- // }
10812
- }
10813
- onFormClose() {
10814
- var _a, _b, _c;
10815
- if (this._activatedRoute.snapshot.params.isFirst &&
10816
- ((_c = (_b = (_a = this._activatedRoute.parent) === null || _a === void 0 ? void 0 : _a.parent) === null || _b === void 0 ? void 0 : _b.routeConfig) === null || _c === void 0 ? void 0 : _c.path) === 'form') {
10817
- const parentUrl = this._router.url.split('/form/')[0];
10818
- this._router.navigateByUrl(parentUrl, {
10819
- replaceUrl: true
10820
- });
10821
- // this.router.navigate(['../']);
10822
- // this.router.navigate([{ outlets: { main: null } }], {
10823
- // relativeTo: this.activatedRoute,
10824
- // });
10825
- }
10826
- else {
10827
- this._router.navigate(['../'], {
10828
- relativeTo: this._activatedRoute,
10829
- replaceUrl: true
10830
- });
10831
- }
10832
- return;
10833
- const outlet = this._activatedRoute.outlet;
10834
- // let outlets = {};
10835
- // outlets[outlet] = null;
10836
- // if(this.location.getState())
10837
- this._router.navigate([{ outlets: { main: null } }]);
10838
- }
10839
- prepareIds(formpanelCtrlrId, params) {
10840
- this.formpanelCtrlrId = formpanelCtrlrId || params.formPanelCtrlrId;
10841
- if (this.formpanelCtrlrId) {
10842
- this.formPanelCtrlr = this._portalService.formPanels[this.formpanelCtrlrId];
10843
- }
10844
- const moId = params.id;
10845
- const typeDefId = params.tyid;
10846
- const reportId = params.repid;
10847
- const viewId = params.vid;
10848
- this.params = Object.assign({}, { moId, typeDefId, reportId, viewId });
10849
- this._cdr.detectChanges();
10850
- }
10851
- }
10852
- FormPageBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: FormPageBaseComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
10853
- FormPageBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: FormPageBaseComponent, selector: "bsu-form-page-base", inputs: { formPanelCtrlr: "formPanelCtrlr", ShowFormPanelControl: "ShowFormPanelControl", RefreshFormPanelControl: "RefreshFormPanelControl", ForceCloseChild: "ForceCloseChild", ForceClose: "ForceClose" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
10854
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: FormPageBaseComponent, decorators: [{
10855
- type: Component,
10856
- args: [{
10857
- selector: 'bsu-form-page-base',
10858
- template: '',
10859
- changeDetection: ChangeDetectionStrategy.OnPush
10860
- }]
10861
- }], propDecorators: { formPanelCtrlr: [{
10862
- type: Input
10863
- }], ShowFormPanelControl: [{
10864
- type: Input
10865
- }], RefreshFormPanelControl: [{
10866
- type: Input
10867
- }], ForceCloseChild: [{
10868
- type: Input
10869
- }], ForceClose: [{
10870
- type: Input
10871
- }] } });
10872
-
10873
- class FormPageComponent extends FormPageBaseComponent {
10874
- constructor() {
10875
- super(...arguments);
10876
- this.sectionClass = true;
10877
- this.absolutePageClass = true;
10878
- }
10879
- ngOnInit() {
10880
- this.containerRef = this.formRef.vcr; // it must be first because we change containerRef
10881
- super.ngOnInit();
10882
- }
10883
- }
10884
- FormPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: FormPageComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
10885
- FormPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: FormPageComponent, selector: "bsu-form-page", inputs: { formPanelCtrlr: "formPanelCtrlr" }, host: { properties: { "class.section": "this.sectionClass", "class.absolute-page": "this.absolutePageClass" } }, providers: [FormService, ContainerService], viewQueries: [{ propertyName: "formRef", first: true, predicate: FormComponent, descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: `
10886
- <bnrc-form
10887
- [formPanelCtrl]="formPanelCtrlr"
10888
- [formPanelCtrlId]="formpanelCtrlrId"
10889
- [params]="params"
10890
- (formClose)="onFormClose()"
10891
- ></bnrc-form>
10892
- <router-outlet></router-outlet>
10893
- `, isInline: true, styles: [":host{display:block;background:var(--sapBackgroundColor)}\n"], dependencies: [{ kind: "component", type: i2.FormComponent, selector: "bnrc-form", inputs: ["params", "customFormPanelUi", "formPanelCtrl", "formPanelCtrlId"], outputs: ["titleChanged", "moChanged", "formClose", "formRendered"] }, { kind: "directive", type: i3$7.RouterOutlet, selector: "router-outlet", outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
10894
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: FormPageComponent, decorators: [{
10895
- type: Component,
10896
- args: [{ selector: 'bsu-form-page', template: `
10897
- <bnrc-form
10898
- [formPanelCtrl]="formPanelCtrlr"
10899
- [formPanelCtrlId]="formpanelCtrlrId"
10900
- [params]="params"
10901
- (formClose)="onFormClose()"
10902
- ></bnrc-form>
10903
- <router-outlet></router-outlet>
10904
- `, providers: [FormService, ContainerService], changeDetection: ChangeDetectionStrategy.OnPush, styles: [":host{display:block;background:var(--sapBackgroundColor)}\n"] }]
10905
- }], propDecorators: { formRef: [{
10906
- type: ViewChild,
10907
- args: [FormComponent, { static: true }]
10908
- }], formPanelCtrlr: [{
10909
- type: Input
10910
- }], sectionClass: [{
10911
- type: HostBinding,
10912
- args: ['class.section']
10913
- }], absolutePageClass: [{
10914
- type: HostBinding,
10915
- args: ['class.absolute-page']
10916
- }] } });
10917
-
10918
10681
  class ColRendererDirective extends BaseDirective {
10919
10682
  constructor(el) {
10920
10683
  super();
@@ -11057,15 +10820,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
11057
10820
  args: [{ selector: 'bsu-title', changeDetection: ChangeDetectionStrategy.OnPush, template: "<h1\r\n fd-title\r\n [ngStyle]=\"parameters?.Style | removeNewline | convertToStyle\"\r\n [headerSize]=\"parameters.Size\"\r\n [wrap]=\"parameters.Wrap\"\r\n>\r\n {{ value }}\r\n</h1>\r\n" }]
11058
10821
  }] });
11059
10822
 
10823
+ const routes = [];
11060
10824
  class BarsaSapUiRoutingModule {
11061
10825
  }
11062
10826
  BarsaSapUiRoutingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiRoutingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
11063
10827
  BarsaSapUiRoutingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiRoutingModule, imports: [i3$7.RouterModule], exports: [RouterModule] });
11064
- BarsaSapUiRoutingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiRoutingModule, imports: [RouterModule.forChild([]), RouterModule] });
10828
+ BarsaSapUiRoutingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiRoutingModule, imports: [RouterModule.forChild(routes), RouterModule] });
11065
10829
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiRoutingModule, decorators: [{
11066
10830
  type: NgModule,
11067
10831
  args: [{
11068
- imports: [RouterModule.forChild([])],
10832
+ imports: [RouterModule.forChild(routes)],
11069
10833
  exports: [RouterModule]
11070
10834
  }]
11071
10835
  }] });
@@ -11442,7 +11206,6 @@ const components = [
11442
11206
  LayoutWizardComponent,
11443
11207
  FormWizardComponent,
11444
11208
  FormDialogLessComponent,
11445
- FormPageComponent,
11446
11209
  RichTextStaticComponent,
11447
11210
  UiPicturesInfoComponent,
11448
11211
  LyHorizontalLayoutComponent,
@@ -11455,7 +11218,6 @@ const components = [
11455
11218
  UiTreeComponent,
11456
11219
  PageWithHeaderComponent,
11457
11220
  HeaderAvatarComponent,
11458
- EmptyPageComponent,
11459
11221
  UiWorkflowPanelUiComponent,
11460
11222
  UlvContextMenuComponent,
11461
11223
  UlLoadingMaskUiComponent,
@@ -11668,7 +11430,8 @@ const rootProviders = [
11668
11430
  useFactory: INIT_SAPFIORI,
11669
11431
  deps: [RtlService, GlobalContentDensityService, ThemesService, PortalService],
11670
11432
  multi: true
11671
- }
11433
+ },
11434
+ { provide: FORM_DIALOG_COMPONENT, useValue: FormDialogComponent }
11672
11435
  ];
11673
11436
  class BarsaSapUiModule extends BaseModule {
11674
11437
  constructor(dcm, componentFactoryResolver) {
@@ -11685,7 +11448,7 @@ class BarsaSapUiModule extends BaseModule {
11685
11448
  }
11686
11449
  }
11687
11450
  BarsaSapUiModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiModule, deps: [{ token: i2.DynamicComponentService }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.NgModule });
11688
- BarsaSapUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiModule, declarations: [UiTextFieldComponent, LyLayoutFieldLabelComponent, UiCheckBoxComponent, UiSimpleComboComponent, UiRadioGroupComponent, UiGridComponent, LyLayoutContainerOfRootComponent, LyLayoutPanelComponent, UiReadOnlyFieldComponent, UiContainerWithButtonComponent, UiPictureFileComponent, UiMoInfoUlvComboComponent, UiMultiSelectComboComponent, UiNumDecimalUiComponent, UiNumIntUiComponent, UiTimeSpanComponent, UiFileLinearListBoxComponent, LyEmptySpaceComponent, UiSinglePictureComponent, UlvSelectionComponent, UlvToolbarComponent, UlvPagingComponent, UiGridSortSettingComponent, UiGridSortItemComponent, UiGridColumnsComponent, MaskComponent, UiInfoBarPanelComponent, UiFormPanelToolbarComponent, UiFormPanelComponent, UiSearchCommandInfoUiComponent, UlvSettingsComponent, UiTinymceComponent, UiButtonComponent, UiDateTimeComponent, FormDialogComponent, HeaderFacetKeyValueComponent, HeaderFacetFormComponent, HeaderFacetRateComponent, HeaderFacetProgressComponent, HeaderFacetMicrochartComponent, HeaderFacetPlainTextComponent, UiMoInfoSubFormUiComponent, ResponsiveToolbarComponent, ResponsiveToolbarRendererComponent, UiTextAreaComponent, LayoutControlComponent, LayoutWizardComponent, FormWizardComponent, FormDialogLessComponent, FormPageComponent, RichTextStaticComponent, UiPicturesInfoComponent, LyHorizontalLayoutComponent, LyVerticalLayoutComponent, LyTabContainerComponent, LyTabPageComponent, LyLabelComponent, UiMoInfoComboViewerComponent, UlMsgBoxAdapterComponent, UiTreeComponent, PageWithHeaderComponent, HeaderAvatarComponent, EmptyPageComponent, UiWorkflowPanelUiComponent, UlvContextMenuComponent, UlLoadingMaskUiComponent, UiTextFieldAutoCompleteComponent, CaptchaFieldComponent, LySimpleLabelComponent, GlobalSearchPanelComponent, GlobalSearchModuleComponent, GlobalSearchComponent, HyperlinkComponent, StaticTextComponent, UlToastAdapterComponent, MessageStripComponent, UiLinearListContainerWithButtonComponent, FundamentalDynamicFormComponent, LayoutActionsComponent, LyLayoutContainerComponent, UiUlvFormMultiSelectUiComponent, UlvFormMultiSelectComponent, UlvColumnSettingsComponent, UlvFilterSettingsComponent, UlvSortSettingsComponent, UlvGroupbySettingsComponent, BarsaListFileLinearComponent, UiPdfViewerComponent, BarsaTinyemceComponent, UiMonacoEditorComponent, BarsaMonacoEditorComponent, BarsaDateTimePickerComponent, BarsaTreeItemComponent, UiSwitchButtonComponent, UiColorUiComponent, LyLineComponent, UiUlvMainUiComponent, ReportNavigatorComponent, ManageFiltersReportComponent, ReportSearchFieldsManageComponent, ReportSearchFieldsHiddenSettingsComponent, SearchPanelComponent, ReportSearchPanelSaveComponent, UiGridFilterSettingsComponent, UiGridFilterItemComponent, UiDateRangeExComponent, UlNotifyPopupComponent, UiTableViewComponent, UiListViewComponent, UiCardViewComponent, UiReportContainerComponent, NoDataComponent, ColumnRendererComponent, InlineSaveAndCancelComponent, UiTreeViewComponent, InlineSaveAndCancelComponent, UiCalendarComponent, UiAspReportViewerComponent, UiGraphComponent, UiExceptionFormComponent, UiEditableGridComponent, ColumnMatrixRendererComponent, UiMatrixViewComponent, CustomDateTimeComponent, BarsaAspViewerComponent, FileInDialogComponent, UiMoInfoGeneralObjectUiComponent, UiGanttChartComponent, GanttDhtmlChartViewComponent, ProgressIndicatorComponent, CardViewContentComponent, CardItemComponent, UiCardViewHorizontalGroupComponent, TitleComponent, BarsaUlvMainComponent, ListItemComponent, HtreeCreateNewComponent, BarsaTableHeaderComponent, BarsaTableRowComponent, BreadcrumbComponent, UiLabelComponent, FormToolbarButtonComponent, BarsaSearchFormComponent, ReportNewTopFormComponent, BarsaNetworkOfflineComponent, FileViewerContentComponent, FileViewerPopoverComponent, FileViewerComponent, BlobViewerComponent, UploadFileStatusPipe, SapFontPipe, SapFontClassPipe, StringToArrayPipe, NodeHasOneDepthLevelPipe, MatrixValuePipe, DynamicPageSizePipe, WizardLayoutDirective, ColRendererDirective, ApplyConditionalFormatsDirective, ReportViewRendererDirective, FullscreenDialogDirective, FullscreenFilesDirective, DownloadFilesDirective], imports: [CommonModule,
11451
+ BarsaSapUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiModule, declarations: [UiTextFieldComponent, LyLayoutFieldLabelComponent, UiCheckBoxComponent, UiSimpleComboComponent, UiRadioGroupComponent, UiGridComponent, LyLayoutContainerOfRootComponent, LyLayoutPanelComponent, UiReadOnlyFieldComponent, UiContainerWithButtonComponent, UiPictureFileComponent, UiMoInfoUlvComboComponent, UiMultiSelectComboComponent, UiNumDecimalUiComponent, UiNumIntUiComponent, UiTimeSpanComponent, UiFileLinearListBoxComponent, LyEmptySpaceComponent, UiSinglePictureComponent, UlvSelectionComponent, UlvToolbarComponent, UlvPagingComponent, UiGridSortSettingComponent, UiGridSortItemComponent, UiGridColumnsComponent, MaskComponent, UiInfoBarPanelComponent, UiFormPanelToolbarComponent, UiFormPanelComponent, UiSearchCommandInfoUiComponent, UlvSettingsComponent, UiTinymceComponent, UiButtonComponent, UiDateTimeComponent, FormDialogComponent, HeaderFacetKeyValueComponent, HeaderFacetFormComponent, HeaderFacetRateComponent, HeaderFacetProgressComponent, HeaderFacetMicrochartComponent, HeaderFacetPlainTextComponent, UiMoInfoSubFormUiComponent, ResponsiveToolbarComponent, ResponsiveToolbarRendererComponent, UiTextAreaComponent, LayoutControlComponent, LayoutWizardComponent, FormWizardComponent, FormDialogLessComponent, RichTextStaticComponent, UiPicturesInfoComponent, LyHorizontalLayoutComponent, LyVerticalLayoutComponent, LyTabContainerComponent, LyTabPageComponent, LyLabelComponent, UiMoInfoComboViewerComponent, UlMsgBoxAdapterComponent, UiTreeComponent, PageWithHeaderComponent, HeaderAvatarComponent, UiWorkflowPanelUiComponent, UlvContextMenuComponent, UlLoadingMaskUiComponent, UiTextFieldAutoCompleteComponent, CaptchaFieldComponent, LySimpleLabelComponent, GlobalSearchPanelComponent, GlobalSearchModuleComponent, GlobalSearchComponent, HyperlinkComponent, StaticTextComponent, UlToastAdapterComponent, MessageStripComponent, UiLinearListContainerWithButtonComponent, FundamentalDynamicFormComponent, LayoutActionsComponent, LyLayoutContainerComponent, UiUlvFormMultiSelectUiComponent, UlvFormMultiSelectComponent, UlvColumnSettingsComponent, UlvFilterSettingsComponent, UlvSortSettingsComponent, UlvGroupbySettingsComponent, BarsaListFileLinearComponent, UiPdfViewerComponent, BarsaTinyemceComponent, UiMonacoEditorComponent, BarsaMonacoEditorComponent, BarsaDateTimePickerComponent, BarsaTreeItemComponent, UiSwitchButtonComponent, UiColorUiComponent, LyLineComponent, UiUlvMainUiComponent, ReportNavigatorComponent, ManageFiltersReportComponent, ReportSearchFieldsManageComponent, ReportSearchFieldsHiddenSettingsComponent, SearchPanelComponent, ReportSearchPanelSaveComponent, UiGridFilterSettingsComponent, UiGridFilterItemComponent, UiDateRangeExComponent, UlNotifyPopupComponent, UiTableViewComponent, UiListViewComponent, UiCardViewComponent, UiReportContainerComponent, NoDataComponent, ColumnRendererComponent, InlineSaveAndCancelComponent, UiTreeViewComponent, InlineSaveAndCancelComponent, UiCalendarComponent, UiAspReportViewerComponent, UiGraphComponent, UiExceptionFormComponent, UiEditableGridComponent, ColumnMatrixRendererComponent, UiMatrixViewComponent, CustomDateTimeComponent, BarsaAspViewerComponent, FileInDialogComponent, UiMoInfoGeneralObjectUiComponent, UiGanttChartComponent, GanttDhtmlChartViewComponent, ProgressIndicatorComponent, CardViewContentComponent, CardItemComponent, UiCardViewHorizontalGroupComponent, TitleComponent, BarsaUlvMainComponent, ListItemComponent, HtreeCreateNewComponent, BarsaTableHeaderComponent, BarsaTableRowComponent, BreadcrumbComponent, UiLabelComponent, FormToolbarButtonComponent, BarsaSearchFormComponent, ReportNewTopFormComponent, BarsaNetworkOfflineComponent, FileViewerContentComponent, FileViewerPopoverComponent, FileViewerComponent, BlobViewerComponent, UploadFileStatusPipe, SapFontPipe, SapFontClassPipe, StringToArrayPipe, NodeHasOneDepthLevelPipe, MatrixValuePipe, DynamicPageSizePipe, WizardLayoutDirective, ColRendererDirective, ApplyConditionalFormatsDirective, ReportViewRendererDirective, FullscreenDialogDirective, FullscreenFilesDirective, DownloadFilesDirective], imports: [CommonModule,
11689
11452
  FormsModule,
11690
11453
  ReactiveFormsModule,
11691
11454
  BarsaNovinRayCoreModule,
@@ -11703,7 +11466,7 @@ BarsaSapUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", versio
11703
11466
  ColorChromeModule,
11704
11467
  ClipboardModule,
11705
11468
  BarsaCalendarModule,
11706
- BarsaSapUiRoutingModule, i1$1.ContentDensityModule], exports: [UiTextFieldComponent, LyLayoutFieldLabelComponent, UiCheckBoxComponent, UiSimpleComboComponent, UiRadioGroupComponent, UiGridComponent, LyLayoutContainerOfRootComponent, LyLayoutPanelComponent, UiReadOnlyFieldComponent, UiContainerWithButtonComponent, UiPictureFileComponent, UiMoInfoUlvComboComponent, UiMultiSelectComboComponent, UiNumDecimalUiComponent, UiNumIntUiComponent, UiTimeSpanComponent, UiFileLinearListBoxComponent, LyEmptySpaceComponent, UiSinglePictureComponent, UlvSelectionComponent, UlvToolbarComponent, UlvPagingComponent, UiGridSortSettingComponent, UiGridSortItemComponent, UiGridColumnsComponent, MaskComponent, UiInfoBarPanelComponent, UiFormPanelToolbarComponent, UiFormPanelComponent, UiSearchCommandInfoUiComponent, UlvSettingsComponent, UiTinymceComponent, UiButtonComponent, UiDateTimeComponent, FormDialogComponent, HeaderFacetKeyValueComponent, HeaderFacetFormComponent, HeaderFacetRateComponent, HeaderFacetProgressComponent, HeaderFacetMicrochartComponent, HeaderFacetPlainTextComponent, UiMoInfoSubFormUiComponent, ResponsiveToolbarComponent, ResponsiveToolbarRendererComponent, UiTextAreaComponent, LayoutControlComponent, LayoutWizardComponent, FormWizardComponent, FormDialogLessComponent, FormPageComponent, RichTextStaticComponent, UiPicturesInfoComponent, LyHorizontalLayoutComponent, LyVerticalLayoutComponent, LyTabContainerComponent, LyTabPageComponent, LyLabelComponent, UiMoInfoComboViewerComponent, UlMsgBoxAdapterComponent, UiTreeComponent, PageWithHeaderComponent, HeaderAvatarComponent, EmptyPageComponent, UiWorkflowPanelUiComponent, UlvContextMenuComponent, UlLoadingMaskUiComponent, UiTextFieldAutoCompleteComponent, CaptchaFieldComponent, LySimpleLabelComponent, GlobalSearchPanelComponent, GlobalSearchModuleComponent, GlobalSearchComponent, HyperlinkComponent, StaticTextComponent, UlToastAdapterComponent, MessageStripComponent, UiLinearListContainerWithButtonComponent, FundamentalDynamicFormComponent, LayoutActionsComponent, LyLayoutContainerComponent, UiUlvFormMultiSelectUiComponent, UlvFormMultiSelectComponent, UlvColumnSettingsComponent, UlvFilterSettingsComponent, UlvSortSettingsComponent, UlvGroupbySettingsComponent, BarsaListFileLinearComponent, UiPdfViewerComponent, BarsaTinyemceComponent, UiMonacoEditorComponent, BarsaMonacoEditorComponent, BarsaDateTimePickerComponent, BarsaTreeItemComponent, UiSwitchButtonComponent, UiColorUiComponent, LyLineComponent, UiUlvMainUiComponent, ReportNavigatorComponent, ManageFiltersReportComponent, ReportSearchFieldsManageComponent, ReportSearchFieldsHiddenSettingsComponent, SearchPanelComponent, ReportSearchPanelSaveComponent, UiGridFilterSettingsComponent, UiGridFilterItemComponent, UiDateRangeExComponent, UlNotifyPopupComponent, UiTableViewComponent, UiListViewComponent, UiCardViewComponent, UiReportContainerComponent, NoDataComponent, ColumnRendererComponent, InlineSaveAndCancelComponent, UiTreeViewComponent, InlineSaveAndCancelComponent, UiCalendarComponent, UiAspReportViewerComponent, UiGraphComponent, UiExceptionFormComponent, UiEditableGridComponent, ColumnMatrixRendererComponent, UiMatrixViewComponent, CustomDateTimeComponent, BarsaAspViewerComponent, FileInDialogComponent, UiMoInfoGeneralObjectUiComponent, UiGanttChartComponent, GanttDhtmlChartViewComponent, ProgressIndicatorComponent, CardViewContentComponent, CardItemComponent, UiCardViewHorizontalGroupComponent, TitleComponent, BarsaUlvMainComponent, ListItemComponent, HtreeCreateNewComponent, BarsaTableHeaderComponent, BarsaTableRowComponent, BreadcrumbComponent, UiLabelComponent, FormToolbarButtonComponent, BarsaSearchFormComponent, ReportNewTopFormComponent, BarsaNetworkOfflineComponent, FileViewerContentComponent, FileViewerPopoverComponent, FileViewerComponent, BlobViewerComponent, WizardLayoutDirective, ColRendererDirective, ApplyConditionalFormatsDirective, ReportViewRendererDirective, FullscreenDialogDirective, FullscreenFilesDirective, DownloadFilesDirective, UploadFileStatusPipe, SapFontPipe, SapFontClassPipe, StringToArrayPipe, NodeHasOneDepthLevelPipe, MatrixValuePipe, DynamicPageSizePipe] });
11469
+ BarsaSapUiRoutingModule, i1$1.ContentDensityModule], exports: [UiTextFieldComponent, LyLayoutFieldLabelComponent, UiCheckBoxComponent, UiSimpleComboComponent, UiRadioGroupComponent, UiGridComponent, LyLayoutContainerOfRootComponent, LyLayoutPanelComponent, UiReadOnlyFieldComponent, UiContainerWithButtonComponent, UiPictureFileComponent, UiMoInfoUlvComboComponent, UiMultiSelectComboComponent, UiNumDecimalUiComponent, UiNumIntUiComponent, UiTimeSpanComponent, UiFileLinearListBoxComponent, LyEmptySpaceComponent, UiSinglePictureComponent, UlvSelectionComponent, UlvToolbarComponent, UlvPagingComponent, UiGridSortSettingComponent, UiGridSortItemComponent, UiGridColumnsComponent, MaskComponent, UiInfoBarPanelComponent, UiFormPanelToolbarComponent, UiFormPanelComponent, UiSearchCommandInfoUiComponent, UlvSettingsComponent, UiTinymceComponent, UiButtonComponent, UiDateTimeComponent, FormDialogComponent, HeaderFacetKeyValueComponent, HeaderFacetFormComponent, HeaderFacetRateComponent, HeaderFacetProgressComponent, HeaderFacetMicrochartComponent, HeaderFacetPlainTextComponent, UiMoInfoSubFormUiComponent, ResponsiveToolbarComponent, ResponsiveToolbarRendererComponent, UiTextAreaComponent, LayoutControlComponent, LayoutWizardComponent, FormWizardComponent, FormDialogLessComponent, RichTextStaticComponent, UiPicturesInfoComponent, LyHorizontalLayoutComponent, LyVerticalLayoutComponent, LyTabContainerComponent, LyTabPageComponent, LyLabelComponent, UiMoInfoComboViewerComponent, UlMsgBoxAdapterComponent, UiTreeComponent, PageWithHeaderComponent, HeaderAvatarComponent, UiWorkflowPanelUiComponent, UlvContextMenuComponent, UlLoadingMaskUiComponent, UiTextFieldAutoCompleteComponent, CaptchaFieldComponent, LySimpleLabelComponent, GlobalSearchPanelComponent, GlobalSearchModuleComponent, GlobalSearchComponent, HyperlinkComponent, StaticTextComponent, UlToastAdapterComponent, MessageStripComponent, UiLinearListContainerWithButtonComponent, FundamentalDynamicFormComponent, LayoutActionsComponent, LyLayoutContainerComponent, UiUlvFormMultiSelectUiComponent, UlvFormMultiSelectComponent, UlvColumnSettingsComponent, UlvFilterSettingsComponent, UlvSortSettingsComponent, UlvGroupbySettingsComponent, BarsaListFileLinearComponent, UiPdfViewerComponent, BarsaTinyemceComponent, UiMonacoEditorComponent, BarsaMonacoEditorComponent, BarsaDateTimePickerComponent, BarsaTreeItemComponent, UiSwitchButtonComponent, UiColorUiComponent, LyLineComponent, UiUlvMainUiComponent, ReportNavigatorComponent, ManageFiltersReportComponent, ReportSearchFieldsManageComponent, ReportSearchFieldsHiddenSettingsComponent, SearchPanelComponent, ReportSearchPanelSaveComponent, UiGridFilterSettingsComponent, UiGridFilterItemComponent, UiDateRangeExComponent, UlNotifyPopupComponent, UiTableViewComponent, UiListViewComponent, UiCardViewComponent, UiReportContainerComponent, NoDataComponent, ColumnRendererComponent, InlineSaveAndCancelComponent, UiTreeViewComponent, InlineSaveAndCancelComponent, UiCalendarComponent, UiAspReportViewerComponent, UiGraphComponent, UiExceptionFormComponent, UiEditableGridComponent, ColumnMatrixRendererComponent, UiMatrixViewComponent, CustomDateTimeComponent, BarsaAspViewerComponent, FileInDialogComponent, UiMoInfoGeneralObjectUiComponent, UiGanttChartComponent, GanttDhtmlChartViewComponent, ProgressIndicatorComponent, CardViewContentComponent, CardItemComponent, UiCardViewHorizontalGroupComponent, TitleComponent, BarsaUlvMainComponent, ListItemComponent, HtreeCreateNewComponent, BarsaTableHeaderComponent, BarsaTableRowComponent, BreadcrumbComponent, UiLabelComponent, FormToolbarButtonComponent, BarsaSearchFormComponent, ReportNewTopFormComponent, BarsaNetworkOfflineComponent, FileViewerContentComponent, FileViewerPopoverComponent, FileViewerComponent, BlobViewerComponent, WizardLayoutDirective, ColRendererDirective, ApplyConditionalFormatsDirective, ReportViewRendererDirective, FullscreenDialogDirective, FullscreenFilesDirective, DownloadFilesDirective, UploadFileStatusPipe, SapFontPipe, SapFontClassPipe, StringToArrayPipe, NodeHasOneDepthLevelPipe, MatrixValuePipe, DynamicPageSizePipe] });
11707
11470
  BarsaSapUiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiModule, providers: [{ provide: DIALOG_SERVICE, useClass: DialogService }], imports: [CommonModule,
11708
11471
  FormsModule,
11709
11472
  ReactiveFormsModule,
@@ -11768,5 +11531,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
11768
11531
  * Generated bundle index. Do not edit.
11769
11532
  */
11770
11533
 
11771
- export { ApplyConditionalFormatsDirective, BarsaAspViewerComponent, BarsaDateTimePickerComponent, BarsaListFileLinearComponent, BarsaMonacoEditorComponent, BarsaNetworkOfflineComponent, BarsaSapUiModule, BarsaSapUiRoutingModule, BarsaSearchFormComponent, BarsaTableHeaderComponent, BarsaTableRowComponent, BarsaTinyemceComponent, BarsaTreeItemComponent, BarsaUlvMainComponent, BlobViewerComponent, BreadcrumbComponent, CaptchaFieldComponent, CardItemComponent, CardViewContentComponent, ColRendererDirective, ColumnMatrixRendererComponent, ColumnRendererComponent, CustomDateTimeComponent, DeviceInfoFieldBaseComponent, DownloadFilesDirective, DynamicPageSizePipe, EmptyPageComponent, FileInDialogComponent, FileViewerComponent, FileViewerContentComponent, FileViewerPopoverComponent, FormDialogComponent, FormDialogLessComponent, FormPageBaseComponent, FormPageComponent, FormToolbarButtonComponent, FormWizardComponent, FullscreenDialogDirective, FullscreenFilesDirective, FundamentalDynamicFormComponent, GanttDhtmlChartViewComponent, GlobalSearchComponent, GlobalSearchModuleComponent, GlobalSearchPanelComponent, HeaderAvatarComponent, HeaderFacetFormComponent, HeaderFacetKeyValueComponent, HeaderFacetMicrochartComponent, HeaderFacetPlainTextComponent, HeaderFacetProgressComponent, HeaderFacetRateComponent, HtreeCreateNewComponent, HyperlinkComponent, IconBusinessSuite, IconTNT, InlineSaveAndCancelComponent, LayoutActionsComponent, LayoutControlComponent, LayoutWizardComponent, ListItemComponent, LyEmptySpaceComponent, LyHorizontalLayoutComponent, LyLabelComponent, LyLayoutContainerComponent, LyLayoutContainerOfRootComponent, LyLayoutFieldLabelComponent, LyLayoutPanelComponent, LyLineComponent, LySimpleLabelComponent, LyTabContainerComponent, LyTabPageComponent, LyVerticalLayoutComponent, ManageFiltersReportComponent, MaskComponent, MatrixValuePipe, MessageStripComponent, NoDataComponent, NodeHasOneDepthLevelPipe, PageWithFormHandlerBaseComponent, PageWithHeaderComponent, ProgressIndicatorComponent, ReportNavigatorComponent, ReportNewTopFormComponent, ReportSearchFieldsHiddenSettingsComponent, ReportSearchFieldsManageComponent, ReportSearchPanelSaveComponent, ReportViewRendererDirective, ResponsiveToolbarComponent, ResponsiveToolbarRendererComponent, RichTextStaticComponent, SapFontClassPipe, SapFontPipe, SapUiReportBaseComponent, SearchPanelComponent, StaticTextComponent, StringToArrayPipe, TitleComponent, UiAspReportViewerComponent, UiButtonComponent, UiCalendarComponent, UiCardViewComponent, UiCardViewHorizontalGroupComponent, UiCheckBoxComponent, UiColorUiComponent, UiContainerWithButtonComponent, UiDateRangeExComponent, UiDateTimeComponent, UiEditableGridComponent, UiExceptionFormComponent, UiFileLinearListBoxComponent, UiFormPanelComponent, UiFormPanelToolbarComponent, UiGanttChartComponent, UiGraphComponent, UiGridColumnsComponent, UiGridComponent, UiGridFilterItemComponent, UiGridFilterSettingsComponent, UiGridSortItemComponent, UiGridSortSettingComponent, UiInfoBarPanelComponent, UiLabelComponent, UiLinearListContainerWithButtonComponent, UiListViewComponent, UiMatrixViewComponent, UiMoInfoComboViewerComponent, UiMoInfoGeneralObjectUiComponent, UiMoInfoSubFormUiComponent, UiMoInfoUlvComboComponent, UiMonacoEditorComponent, UiMultiSelectComboComponent, UiNumDecimalUiComponent, UiNumIntUiComponent, UiPdfViewerComponent, UiPictureFileComponent, UiPicturesInfoComponent, UiRadioGroupComponent, UiReadOnlyFieldComponent, UiReportContainerComponent, UiSearchCommandInfoUiComponent, UiSimpleComboComponent, UiSinglePictureComponent, UiSwitchButtonComponent, UiTableViewComponent, UiTextAreaComponent, UiTextFieldAutoCompleteComponent, UiTextFieldComponent, UiTimeSpanComponent, UiTinymceComponent, UiTreeComponent, UiTreeViewComponent, UiUlvFormMultiSelectUiComponent, UiUlvMainUiComponent, UiWorkflowPanelUiComponent, UlLoadingMaskUiComponent, UlMsgBoxAdapterComponent, UlNotifyPopupComponent, UlToastAdapterComponent, UlvColumnSettingsComponent, UlvContextMenuComponent, UlvFilterSettingsComponent, UlvFormMultiSelectComponent, UlvGroupbySettingsComponent, UlvPagingComponent, UlvSelectionComponent, UlvSettingsComponent, UlvSortSettingsComponent, UlvToolbarComponent, UploadFileStatusPipe, WidthTypeEnum, WizardLayoutDirective, _trimEnd, getNestedValue, insertAvatar, sort$1 as sort };
11534
+ export { ApplyConditionalFormatsDirective, BarsaAspViewerComponent, BarsaDateTimePickerComponent, BarsaListFileLinearComponent, BarsaMonacoEditorComponent, BarsaNetworkOfflineComponent, BarsaSapUiModule, BarsaSapUiRoutingModule, BarsaSearchFormComponent, BarsaTableHeaderComponent, BarsaTableRowComponent, BarsaTinyemceComponent, BarsaTreeItemComponent, BarsaUlvMainComponent, BlobViewerComponent, BreadcrumbComponent, CaptchaFieldComponent, CardItemComponent, CardViewContentComponent, ColRendererDirective, ColumnMatrixRendererComponent, ColumnRendererComponent, CustomDateTimeComponent, DeviceInfoFieldBaseComponent, DownloadFilesDirective, DynamicPageSizePipe, FileInDialogComponent, FileViewerComponent, FileViewerContentComponent, FileViewerPopoverComponent, FormDialogComponent, FormDialogLessComponent, FormToolbarButtonComponent, FormWizardComponent, FullscreenDialogDirective, FullscreenFilesDirective, FundamentalDynamicFormComponent, GanttDhtmlChartViewComponent, GlobalSearchComponent, GlobalSearchModuleComponent, GlobalSearchPanelComponent, HeaderAvatarComponent, HeaderFacetFormComponent, HeaderFacetKeyValueComponent, HeaderFacetMicrochartComponent, HeaderFacetPlainTextComponent, HeaderFacetProgressComponent, HeaderFacetRateComponent, HtreeCreateNewComponent, HyperlinkComponent, IconBusinessSuite, IconTNT, InlineSaveAndCancelComponent, LayoutActionsComponent, LayoutControlComponent, LayoutWizardComponent, ListItemComponent, LyEmptySpaceComponent, LyHorizontalLayoutComponent, LyLabelComponent, LyLayoutContainerComponent, LyLayoutContainerOfRootComponent, LyLayoutFieldLabelComponent, LyLayoutPanelComponent, LyLineComponent, LySimpleLabelComponent, LyTabContainerComponent, LyTabPageComponent, LyVerticalLayoutComponent, ManageFiltersReportComponent, MaskComponent, MatrixValuePipe, MessageStripComponent, NoDataComponent, NodeHasOneDepthLevelPipe, PageWithHeaderComponent, ProgressIndicatorComponent, ReportNavigatorComponent, ReportNewTopFormComponent, ReportSearchFieldsHiddenSettingsComponent, ReportSearchFieldsManageComponent, ReportSearchPanelSaveComponent, ReportViewRendererDirective, ResponsiveToolbarComponent, ResponsiveToolbarRendererComponent, RichTextStaticComponent, SapFontClassPipe, SapFontPipe, SapUiReportBaseComponent, SearchPanelComponent, StaticTextComponent, StringToArrayPipe, TitleComponent, UiAspReportViewerComponent, UiButtonComponent, UiCalendarComponent, UiCardViewComponent, UiCardViewHorizontalGroupComponent, UiCheckBoxComponent, UiColorUiComponent, UiContainerWithButtonComponent, UiDateRangeExComponent, UiDateTimeComponent, UiEditableGridComponent, UiExceptionFormComponent, UiFileLinearListBoxComponent, UiFormPanelComponent, UiFormPanelToolbarComponent, UiGanttChartComponent, UiGraphComponent, UiGridColumnsComponent, UiGridComponent, UiGridFilterItemComponent, UiGridFilterSettingsComponent, UiGridSortItemComponent, UiGridSortSettingComponent, UiInfoBarPanelComponent, UiLabelComponent, UiLinearListContainerWithButtonComponent, UiListViewComponent, UiMatrixViewComponent, UiMoInfoComboViewerComponent, UiMoInfoGeneralObjectUiComponent, UiMoInfoSubFormUiComponent, UiMoInfoUlvComboComponent, UiMonacoEditorComponent, UiMultiSelectComboComponent, UiNumDecimalUiComponent, UiNumIntUiComponent, UiPdfViewerComponent, UiPictureFileComponent, UiPicturesInfoComponent, UiRadioGroupComponent, UiReadOnlyFieldComponent, UiReportContainerComponent, UiSearchCommandInfoUiComponent, UiSimpleComboComponent, UiSinglePictureComponent, UiSwitchButtonComponent, UiTableViewComponent, UiTextAreaComponent, UiTextFieldAutoCompleteComponent, UiTextFieldComponent, UiTimeSpanComponent, UiTinymceComponent, UiTreeComponent, UiTreeViewComponent, UiUlvFormMultiSelectUiComponent, UiUlvMainUiComponent, UiWorkflowPanelUiComponent, UlLoadingMaskUiComponent, UlMsgBoxAdapterComponent, UlNotifyPopupComponent, UlToastAdapterComponent, UlvColumnSettingsComponent, UlvContextMenuComponent, UlvFilterSettingsComponent, UlvFormMultiSelectComponent, UlvGroupbySettingsComponent, UlvPagingComponent, UlvSelectionComponent, UlvSettingsComponent, UlvSortSettingsComponent, UlvToolbarComponent, UploadFileStatusPipe, WidthTypeEnum, WizardLayoutDirective, _trimEnd, getNestedValue, insertAvatar, sort$1 as sort };
11772
11535
  //# sourceMappingURL=barsa-sap-ui.mjs.map