barsa-sap-ui 1.0.400 → 1.0.401

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.
Files changed (33) hide show
  1. package/esm2020/lib/barsa-dynamic-field/barsa-dynamic-field.component.mjs +42 -0
  2. package/esm2020/lib/barsa-field-key-value/barsa-field-key-value.component.mjs +3 -3
  3. package/esm2020/lib/barsa-sap-ui.module.mjs +23 -19
  4. package/esm2020/lib/barsa-table-row/barsa-table-row.component.mjs +1 -1
  5. package/esm2020/lib/form-dialog/form-dialog.component.mjs +1 -1
  6. package/esm2020/lib/form-dialog-less/form-dialog-less.component.mjs +1 -1
  7. package/esm2020/lib/index.mjs +19 -11
  8. package/esm2020/lib/layout-control/layout-control.component.mjs +1 -1
  9. package/esm2020/lib/search-panel/search-panel.component.mjs +1 -1
  10. package/esm2020/lib/ui-container-with-button/ui-container-with-button.component.mjs +1 -1
  11. package/esm2020/lib/ui-grid-filter-item/ui-grid-filter-item.component.mjs +1 -1
  12. package/esm2020/lib/ui-mo-info-general-object-ui/ui-mo-info-general-object-ui.component.mjs +1 -1
  13. package/esm2020/lib/ui-mo-info-sub-form-ui/ui-mo-info-sub-form-ui.component.mjs +1 -1
  14. package/esm2020/lib/ui-multi-select-checkbox/ui-multi-select-checkbox.component.mjs +59 -0
  15. package/esm2020/lib/ui-multi-select-combo/ui-multi-select-combo.component.mjs +1 -11
  16. package/esm2020/lib/ui-multi-select-radio/ui-multi-select-radio.component.mjs +35 -0
  17. package/esm2020/lib/ui-num-int-slider/ui-num-int-slider.component.mjs +27 -0
  18. package/esm2020/lib/ui-read-only-field/ui-read-only-field.component.mjs +3 -3
  19. package/esm2020/public-api.mjs +5 -1
  20. package/fesm2015/barsa-sap-ui.mjs +168 -39
  21. package/fesm2015/barsa-sap-ui.mjs.map +1 -1
  22. package/fesm2020/barsa-sap-ui.mjs +168 -39
  23. package/fesm2020/barsa-sap-ui.mjs.map +1 -1
  24. package/lib/barsa-dynamic-field/barsa-dynamic-field.component.d.ts +16 -0
  25. package/lib/barsa-field-key-value/barsa-field-key-value.component.d.ts +3 -3
  26. package/lib/barsa-sap-ui.module.d.ts +32 -28
  27. package/lib/ui-multi-select-checkbox/ui-multi-select-checkbox.component.d.ts +19 -0
  28. package/lib/ui-multi-select-combo/ui-multi-select-combo.component.d.ts +2 -3
  29. package/lib/ui-multi-select-radio/ui-multi-select-radio.component.d.ts +17 -0
  30. package/lib/ui-num-int-slider/ui-num-int-slider.component.d.ts +17 -0
  31. package/lib/ui-read-only-field/ui-read-only-field.component.d.ts +10 -1
  32. package/package.json +1 -1
  33. package/public-api.d.ts +4 -0
@@ -0,0 +1,42 @@
1
+ import { ChangeDetectionStrategy, Component } from '@angular/core';
2
+ import { BarsaApi, FieldBaseComponent } from 'barsa-novin-ray-core';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "@angular/common";
5
+ import * as i2 from "barsa-novin-ray-core";
6
+ import * as i3 from "@fundamental-ngx/core/message-strip";
7
+ export class BarsaDynamicFieldComponent extends FieldBaseComponent {
8
+ constructor() {
9
+ super(...arguments);
10
+ this.layoutControls = [];
11
+ }
12
+ ngOnInit() {
13
+ super.ngOnInit();
14
+ const paramFieldField = this.parameters.FieldEjrayOlgo;
15
+ const mo = BarsaApi.Common.Util.TryGetValue(this.context, 'FormPanelUi.Mo', null);
16
+ let componentUiField = paramFieldField;
17
+ if (!mo || !paramFieldField) {
18
+ return;
19
+ }
20
+ if (!mo[paramFieldField] && mo.$FieldDict) {
21
+ componentUiField = mo.$FieldDict[paramFieldField];
22
+ if (!componentUiField) {
23
+ this.error = 'invlaid setting for barsa dynamic field component.not found field component ui.';
24
+ return;
25
+ }
26
+ }
27
+ const componentUi = BarsaApi.Common.Util.TryGetValue(this.context, 'FormPanelUi.Mo.' + componentUiField, null);
28
+ if (!componentUi) {
29
+ this.error = 'component ui is null';
30
+ return;
31
+ }
32
+ this.componentUi = componentUi;
33
+ // ChangeLayoutInfoCustomUi(this.layoutInfo, componentUi);
34
+ }
35
+ }
36
+ BarsaDynamicFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaDynamicFieldComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
37
+ BarsaDynamicFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: BarsaDynamicFieldComponent, selector: "bsu-barsa-dynamic-field", usesInheritance: true, ngImport: i0, template: "<bnrc-field-ui\n *ngIf=\"!error; else errorTemplate\"\n [customField]=\"layoutInfo.FieldUi\"\n [componentUi]=\"componentUi\"\n [layoutInfo]=\"layoutInfo\"\n [inlineEdit]=\"inlineEdit\"\n [formHeight]=\"formHeight\"\n [focusControl]=\"focusControl\"\n></bnrc-field-ui>\n<ng-template #errorTemplate>\n <fd-message-strip type=\"error\" [dismissible]=\"false\">\n {{ error }}\n </fd-message-strip>\n</ng-template>\n", styles: [":host fd-card-header{cursor:default}:host fd-card-header:hover{background:var(--fdCard_Background_Color)}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.FieldUiComponent, selector: "bnrc-field-ui", inputs: ["isSearchPanel", "customField", "componentUi", "layoutInfo", "inlineEdit", "focusControl", "formHeight"] }, { kind: "component", type: i3.MessageStripComponent, selector: "fd-message-strip", inputs: ["class", "dismissible", "noIcon", "type", "id", "ariaLabelledBy", "ariaLabel", "dismissLabel", "width", "minWidth", "marginBottom"], outputs: ["onDismiss"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
38
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaDynamicFieldComponent, decorators: [{
39
+ type: Component,
40
+ args: [{ selector: 'bsu-barsa-dynamic-field', changeDetection: ChangeDetectionStrategy.OnPush, template: "<bnrc-field-ui\n *ngIf=\"!error; else errorTemplate\"\n [customField]=\"layoutInfo.FieldUi\"\n [componentUi]=\"componentUi\"\n [layoutInfo]=\"layoutInfo\"\n [inlineEdit]=\"inlineEdit\"\n [formHeight]=\"formHeight\"\n [focusControl]=\"focusControl\"\n></bnrc-field-ui>\n<ng-template #errorTemplate>\n <fd-message-strip type=\"error\" [dismissible]=\"false\">\n {{ error }}\n </fd-message-strip>\n</ng-template>\n", styles: [":host fd-card-header{cursor:default}:host fd-card-header:hover{background:var(--fdCard_Background_Color)}\n"] }]
41
+ }] });
42
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFyc2EtZHluYW1pYy1maWVsZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYXJzYS1zYXAtdWkvc3JjL2xpYi9iYXJzYS1keW5hbWljLWZpZWxkL2JhcnNhLWR5bmFtaWMtZmllbGQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYmFyc2Etc2FwLXVpL3NyYy9saWIvYmFyc2EtZHluYW1pYy1maWVsZC9iYXJzYS1keW5hbWljLWZpZWxkLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFDM0UsT0FBTyxFQUFFLFFBQVEsRUFBYSxrQkFBa0IsRUFBc0MsTUFBTSxzQkFBc0IsQ0FBQzs7Ozs7QUFRbkgsTUFBTSxPQUFPLDBCQUEyQixTQUFRLGtCQUFrQjtJQU5sRTs7UUFPSSxtQkFBYyxHQUFvQixFQUFFLENBQUM7S0E2QnhDO0lBekJHLFFBQVE7UUFDSixLQUFLLENBQUMsUUFBUSxFQUFFLENBQUM7UUFFakIsTUFBTSxlQUFlLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQyxjQUFjLENBQUM7UUFDdkQsTUFBTSxFQUFFLEdBQXdCLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLGdCQUFnQixFQUFFLElBQUksQ0FBQyxDQUFDO1FBQ3ZHLElBQUksZ0JBQWdCLEdBQUcsZUFBZSxDQUFDO1FBQ3ZDLElBQUksQ0FBQyxFQUFFLElBQUksQ0FBQyxlQUFlLEVBQUU7WUFDekIsT0FBTztTQUNWO1FBQ0QsSUFBSSxDQUFDLEVBQUUsQ0FBQyxlQUFlLENBQUMsSUFBSSxFQUFFLENBQUMsVUFBVSxFQUFFO1lBQ3ZDLGdCQUFnQixHQUFHLEVBQUUsQ0FBQyxVQUFVLENBQUMsZUFBZSxDQUFDLENBQUM7WUFDbEQsSUFBSSxDQUFDLGdCQUFnQixFQUFFO2dCQUNuQixJQUFJLENBQUMsS0FBSyxHQUFHLGlGQUFpRixDQUFDO2dCQUMvRixPQUFPO2FBQ1Y7U0FDSjtRQUVELE1BQU0sV0FBVyxHQUFHLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLGlCQUFpQixHQUFHLGdCQUFnQixFQUFFLElBQUksQ0FBQyxDQUFDO1FBQy9HLElBQUksQ0FBQyxXQUFXLEVBQUU7WUFDZCxJQUFJLENBQUMsS0FBSyxHQUFHLHNCQUFzQixDQUFDO1lBQ3BDLE9BQU87U0FDVjtRQUNELElBQUksQ0FBQyxXQUFXLEdBQUcsV0FBVyxDQUFDO1FBQy9CLDBEQUEwRDtJQUM5RCxDQUFDOzt1SEE3QlEsMEJBQTBCOzJHQUExQiwwQkFBMEIsc0ZDVHZDLCtiQWNBOzJGRExhLDBCQUEwQjtrQkFOdEMsU0FBUzsrQkFDSSx5QkFBeUIsbUJBR2xCLHVCQUF1QixDQUFDLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEJhcnNhQXBpLCBFanJheU9sZ28sIEZpZWxkQmFzZUNvbXBvbmVudCwgTGF5b3V0U2V0dGluZywgTWV0YW9iamVjdERhdGFNb2RlbCB9IGZyb20gJ2JhcnNhLW5vdmluLXJheS1jb3JlJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdic3UtYmFyc2EtZHluYW1pYy1maWVsZCcsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2JhcnNhLWR5bmFtaWMtZmllbGQuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL2JhcnNhLWR5bmFtaWMtZmllbGQuY29tcG9uZW50LnNjc3MnXSxcbiAgICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaFxufSlcbmV4cG9ydCBjbGFzcyBCYXJzYUR5bmFtaWNGaWVsZENvbXBvbmVudCBleHRlbmRzIEZpZWxkQmFzZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gICAgbGF5b3V0Q29udHJvbHM6IExheW91dFNldHRpbmdbXSA9IFtdO1xuICAgIHBhcmFtZXRlcnM6IEJhcnNhRHluYW1pY0ZpZWxkU2V0dGluZztcbiAgICBlcnJvcjogc3RyaW5nO1xuICAgIGNvbXBvbmVudFVpOiBFanJheU9sZ287XG4gICAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgICAgIHN1cGVyLm5nT25Jbml0KCk7XG5cbiAgICAgICAgY29uc3QgcGFyYW1GaWVsZEZpZWxkID0gdGhpcy5wYXJhbWV0ZXJzLkZpZWxkRWpyYXlPbGdvO1xuICAgICAgICBjb25zdCBtbzogTWV0YW9iamVjdERhdGFNb2RlbCA9IEJhcnNhQXBpLkNvbW1vbi5VdGlsLlRyeUdldFZhbHVlKHRoaXMuY29udGV4dCwgJ0Zvcm1QYW5lbFVpLk1vJywgbnVsbCk7XG4gICAgICAgIGxldCBjb21wb25lbnRVaUZpZWxkID0gcGFyYW1GaWVsZEZpZWxkO1xuICAgICAgICBpZiAoIW1vIHx8ICFwYXJhbUZpZWxkRmllbGQpIHtcbiAgICAgICAgICAgIHJldHVybjtcbiAgICAgICAgfVxuICAgICAgICBpZiAoIW1vW3BhcmFtRmllbGRGaWVsZF0gJiYgbW8uJEZpZWxkRGljdCkge1xuICAgICAgICAgICAgY29tcG9uZW50VWlGaWVsZCA9IG1vLiRGaWVsZERpY3RbcGFyYW1GaWVsZEZpZWxkXTtcbiAgICAgICAgICAgIGlmICghY29tcG9uZW50VWlGaWVsZCkge1xuICAgICAgICAgICAgICAgIHRoaXMuZXJyb3IgPSAnaW52bGFpZCBzZXR0aW5nIGZvciBiYXJzYSBkeW5hbWljIGZpZWxkIGNvbXBvbmVudC5ub3QgZm91bmQgZmllbGQgY29tcG9uZW50IHVpLic7XG4gICAgICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG5cbiAgICAgICAgY29uc3QgY29tcG9uZW50VWkgPSBCYXJzYUFwaS5Db21tb24uVXRpbC5UcnlHZXRWYWx1ZSh0aGlzLmNvbnRleHQsICdGb3JtUGFuZWxVaS5Nby4nICsgY29tcG9uZW50VWlGaWVsZCwgbnVsbCk7XG4gICAgICAgIGlmICghY29tcG9uZW50VWkpIHtcbiAgICAgICAgICAgIHRoaXMuZXJyb3IgPSAnY29tcG9uZW50IHVpIGlzIG51bGwnO1xuICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICB9XG4gICAgICAgIHRoaXMuY29tcG9uZW50VWkgPSBjb21wb25lbnRVaTtcbiAgICAgICAgLy8gQ2hhbmdlTGF5b3V0SW5mb0N1c3RvbVVpKHRoaXMubGF5b3V0SW5mbywgY29tcG9uZW50VWkpO1xuICAgIH1cbn1cbmludGVyZmFjZSBCYXJzYUR5bmFtaWNGaWVsZFNldHRpbmcgZXh0ZW5kcyBNZXRhb2JqZWN0RGF0YU1vZGVsIHtcbiAgICBGaWVsZEVqcmF5T2xnbzogc3RyaW5nO1xufVxuIiwiPGJucmMtZmllbGQtdWlcbiAgICAqbmdJZj1cIiFlcnJvcjsgZWxzZSBlcnJvclRlbXBsYXRlXCJcbiAgICBbY3VzdG9tRmllbGRdPVwibGF5b3V0SW5mby5GaWVsZFVpXCJcbiAgICBbY29tcG9uZW50VWldPVwiY29tcG9uZW50VWlcIlxuICAgIFtsYXlvdXRJbmZvXT1cImxheW91dEluZm9cIlxuICAgIFtpbmxpbmVFZGl0XT1cImlubGluZUVkaXRcIlxuICAgIFtmb3JtSGVpZ2h0XT1cImZvcm1IZWlnaHRcIlxuICAgIFtmb2N1c0NvbnRyb2xdPVwiZm9jdXNDb250cm9sXCJcbj48L2JucmMtZmllbGQtdWk+XG48bmctdGVtcGxhdGUgI2Vycm9yVGVtcGxhdGU+XG4gICAgPGZkLW1lc3NhZ2Utc3RyaXAgdHlwZT1cImVycm9yXCIgW2Rpc21pc3NpYmxlXT1cImZhbHNlXCI+XG4gICAgICAgIHt7IGVycm9yIH19XG4gICAgPC9mZC1tZXNzYWdlLXN0cmlwPlxuPC9uZy10ZW1wbGF0ZT5cbiJdfQ==
@@ -1,10 +1,10 @@
1
1
  import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
2
  import { UploadService } from 'barsa-novin-ray-core';
3
- import { UiReadOnlyFieldComponent } from '../ui-read-only-field/ui-read-only-field.component';
3
+ import { FieldBaseComponent } from 'barsa-novin-ray-core';
4
4
  import * as i0 from "@angular/core";
5
5
  import * as i1 from "@fundamental-ngx/core/facets";
6
6
  import * as i2 from "@fundamental-ngx/core/object-status";
7
- export class BarsaFieldKeyValueComponent extends UiReadOnlyFieldComponent {
7
+ export class BarsaFieldKeyValueComponent extends FieldBaseComponent {
8
8
  ngOnInit() {
9
9
  super.ngOnInit();
10
10
  this._setStatus();
@@ -42,4 +42,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
42
42
  }], propDecorators: { parameters: [{
43
43
  type: Input
44
44
  }] } });
45
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFyc2EtZmllbGQta2V5LXZhbHVlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2JhcnNhLXNhcC11aS9zcmMvbGliL2JhcnNhLWZpZWxkLWtleS12YWx1ZS9iYXJzYS1maWVsZC1rZXktdmFsdWUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYmFyc2Etc2FwLXVpL3NyYy9saWIvYmFyc2EtZmllbGQta2V5LXZhbHVlL2JhcnNhLWZpZWxkLWtleS12YWx1ZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUNsRixPQUFPLEVBQUUsYUFBYSxFQUF1QixNQUFNLHNCQUFzQixDQUFDO0FBQzFFLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLG9EQUFvRCxDQUFDOzs7O0FBVTlGLE1BQU0sT0FBTywyQkFBNEIsU0FBUSx3QkFBd0I7SUFLckUsUUFBUTtRQUNKLEtBQUssQ0FBQyxRQUFRLEVBQUUsQ0FBQztRQUNqQixJQUFJLENBQUMsVUFBVSxFQUFFLENBQUM7SUFDdEIsQ0FBQztJQUNTLFNBQVMsQ0FBQyxLQUFVO1FBQzFCLEtBQUssQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDdkIsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO1FBQ2xCLElBQUksQ0FBQyxJQUFJLENBQUMsYUFBYSxFQUFFLENBQUM7SUFDOUIsQ0FBQztJQUNELFVBQVU7UUFDTixvQkFBb0I7UUFDcEIsTUFBTSxLQUFLLEdBQVcsSUFBSSxDQUFDLEtBQUssQ0FBQztRQUNqQyxJQUFJLENBQUMsV0FBVyxHQUFHLEtBQUssQ0FBQztRQUN6QixJQUFJLEtBQUssSUFBSSxJQUFJLENBQUMsVUFBVSxDQUFDLFFBQVEsRUFBRTtZQUNuQyxJQUFJLEtBQUssQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLEtBQUssSUFBSSxFQUFFO2dCQUM5QixJQUFJLENBQUMsV0FBVyxHQUFHLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQyxFQUFFLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQztnQkFDakQsSUFBSSxDQUFDLFdBQVcsR0FBRyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUM7YUFDeEM7aUJBQU07Z0JBQ0gsSUFBSSxDQUFDLFdBQVcsR0FBRyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUM7YUFDbEM7U0FDSjtRQUNELE1BQU0sVUFBVSxHQUFHLENBQUMsTUFBTSxFQUFFLEVBQUUsQ0FBQyxJQUFJLFFBQVEsQ0FBQyxHQUFHLE1BQU0sRUFBRSxDQUFDLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUM7UUFDdEUsSUFBSSxDQUFDLE1BQU0sR0FBRyxVQUFVLENBQ3BCLElBQUksQ0FBQyxVQUFVLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxTQUFTLEVBQUUsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsa0JBQWtCLENBQUMsQ0FBQyxDQUFDLFlBQVksRUFBRSxDQUFDLENBQy9HLENBQUM7UUFDRixJQUFJLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxFQUFFO1lBQ3RCLElBQUksQ0FBQyxXQUFXLElBQUksSUFBSSxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksRUFBRSxDQUFDO1NBQ2xEO0lBQ0wsQ0FBQzs7d0hBakNRLDJCQUEyQjs0R0FBM0IsMkJBQTJCLDBGQUZ6QixDQUFDLGFBQWEsQ0FBQyxpRENWOUIsMFdBV0E7MkZEQ2EsMkJBQTJCO2tCQVB2QyxTQUFTOytCQUNJLDJCQUEyQixtQkFHcEIsdUJBQXVCLENBQUMsTUFBTSxhQUNwQyxDQUFDLGFBQWEsQ0FBQzs4QkFHakIsVUFBVTtzQkFBbEIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFVwbG9hZFNlcnZpY2UsIE1ldGFvYmplY3REYXRhTW9kZWwgfSBmcm9tICdiYXJzYS1ub3Zpbi1yYXktY29yZSc7XG5pbXBvcnQgeyBVaVJlYWRPbmx5RmllbGRDb21wb25lbnQgfSBmcm9tICcuLi91aS1yZWFkLW9ubHktZmllbGQvdWktcmVhZC1vbmx5LWZpZWxkLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBPYmplY3RTdGF0dXMgfSBmcm9tICdAZnVuZGFtZW50YWwtbmd4L2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2JzdS1iYXJzYS1maWVsZC1rZXktdmFsdWUnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9iYXJzYS1maWVsZC1rZXktdmFsdWUuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL2JhcnNhLWZpZWxkLWtleS12YWx1ZS5jb21wb25lbnQuc2NzcyddLFxuICAgIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICAgIHByb3ZpZGVyczogW1VwbG9hZFNlcnZpY2VdXG59KVxuZXhwb3J0IGNsYXNzIEJhcnNhRmllbGRLZXlWYWx1ZUNvbXBvbmVudCBleHRlbmRzIFVpUmVhZE9ubHlGaWVsZENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gICAgQElucHV0KCkgcGFyYW1ldGVyczogQmFyc2FLZXlWYWx1ZVNldHRpbmc7XG4gICAgc3RhdHVzOiBPYmplY3RTdGF0dXM7XG4gICAgdmFsdWVOdW1iZXI6IG51bWJlcjtcbiAgICB2YWx1ZVN0cmluZzogc3RyaW5nO1xuICAgIG5nT25Jbml0KCk6IHZvaWQge1xuICAgICAgICBzdXBlci5uZ09uSW5pdCgpO1xuICAgICAgICB0aGlzLl9zZXRTdGF0dXMoKTtcbiAgICB9XG4gICAgcHJvdGVjdGVkIF9zZXRWYWx1ZSh2YWx1ZTogYW55KTogdm9pZCB7XG4gICAgICAgIHN1cGVyLl9zZXRWYWx1ZSh2YWx1ZSk7XG4gICAgICAgIHRoaXMuX3NldFN0YXR1cygpO1xuICAgICAgICB0aGlzLl9jZHIuZGV0ZWN0Q2hhbmdlcygpO1xuICAgIH1cbiAgICBfc2V0U3RhdHVzKCk6IHZvaWQge1xuICAgICAgICAvKiBlc2xpbnQtZGlzYWJsZSAqL1xuICAgICAgICBjb25zdCB2YWx1ZTogc3RyaW5nID0gdGhpcy52YWx1ZTtcbiAgICAgICAgdGhpcy52YWx1ZVN0cmluZyA9IHZhbHVlO1xuICAgICAgICBpZiAodmFsdWUgJiYgdGhpcy5wYXJhbWV0ZXJzLklzTnVtYmVyKSB7XG4gICAgICAgICAgICBpZiAodmFsdWUuY2hhckNvZGVBdCgwKSA9PT0gODIzNCkge1xuICAgICAgICAgICAgICAgIHRoaXMudmFsdWVTdHJpbmcgPSB2YWx1ZS5zdWJzdHIoMSwgdmFsdWUubGVuZ3RoKTtcbiAgICAgICAgICAgICAgICB0aGlzLnZhbHVlTnVtYmVyID0gK3RoaXMudmFsdWVTdHJpbmc7XG4gICAgICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgICAgIHRoaXMudmFsdWVOdW1iZXIgPSArdGhpcy52YWx1ZTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICBjb25zdCBzY29wZWRFdmFsID0gKHNjcmlwdCkgPT4gbmV3IEZ1bmN0aW9uKGAke3NjcmlwdH1gKS5iaW5kKHRoaXMpKCk7XG4gICAgICAgIHRoaXMuc3RhdHVzID0gc2NvcGVkRXZhbChcbiAgICAgICAgICAgIHRoaXMucGFyYW1ldGVycy5TdGF0dXMucmVwbGFjZSgvdmFsdWUvZ2ksIGAke3RoaXMucGFyYW1ldGVycy5Jc051bWJlciA/ICd0aGlzLnZhbHVlTnVtYmVyJyA6ICd0aGlzLnZhbHVlJ31gKVxuICAgICAgICApO1xuICAgICAgICBpZiAodGhpcy5wYXJhbWV0ZXJzLlVuaXQpIHtcbiAgICAgICAgICAgIHRoaXMudmFsdWVTdHJpbmcgKz0gYCAke3RoaXMucGFyYW1ldGVycy5Vbml0fWA7XG4gICAgICAgIH1cbiAgICB9XG59XG5cbmludGVyZmFjZSBCYXJzYUtleVZhbHVlU2V0dGluZyBleHRlbmRzIE1ldGFvYmplY3REYXRhTW9kZWwge1xuICAgIFN0YXR1czogc3RyaW5nO1xuICAgIEljb246IHN0cmluZztcbiAgICBJc051bWJlcjogYm9vbGVhbjtcbiAgICBVbml0OiBzdHJpbmc7XG4gICAgUG9zdGZpeDogc3RyaW5nO1xuICAgIERlY2ltYWxDb3VudDogbnVtYmVyO1xuICAgIElzTGFyZ2U6IGJvb2xlYW47XG59XG4iLCI8ZmQtZmFjZXQgdHlwZT1cImtleS12YWx1ZVwiIFtmYWNldFRpdGxlXT1cIlNldHRpbmcuQ29udHJvbEZpZWxkQ2FwdGlvblRyYW5zbGF0ZWRcIj5cbiAgICA8c3BhblxuICAgICAgICBmZC1vYmplY3Qtc3RhdHVzXG4gICAgICAgIFtzdGF0dXNdPVwic3RhdHVzXCJcbiAgICAgICAgW2xhYmVsXT1cInZhbHVlU3RyaW5nXCJcbiAgICAgICAgW2dseXBoXT1cInBhcmFtZXRlcnMuSWNvblwiXG4gICAgICAgIFtsYXJnZV09XCJwYXJhbWV0ZXJzLklzTGFyZ2VcIlxuICAgICAgICBbdGl0bGVdPVwidmFsdWVTdHJpbmdcIlxuICAgICAgICBbYXJpYS1sYWJlbF09XCJ2YWx1ZVN0cmluZ1wiXG4gICAgPjwvc3Bhbj5cbjwvZmQtZmFjZXQ+XG4iXX0=
45
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFyc2EtZmllbGQta2V5LXZhbHVlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2JhcnNhLXNhcC11aS9zcmMvbGliL2JhcnNhLWZpZWxkLWtleS12YWx1ZS9iYXJzYS1maWVsZC1rZXktdmFsdWUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYmFyc2Etc2FwLXVpL3NyYy9saWIvYmFyc2EtZmllbGQta2V5LXZhbHVlL2JhcnNhLWZpZWxkLWtleS12YWx1ZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUdsRixPQUFPLEVBQUUsYUFBYSxFQUF1QixNQUFNLHNCQUFzQixDQUFDO0FBQzFFLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHNCQUFzQixDQUFDOzs7O0FBUzFELE1BQU0sT0FBTywyQkFBNEIsU0FBUSxrQkFBa0I7SUFLL0QsUUFBUTtRQUNKLEtBQUssQ0FBQyxRQUFRLEVBQUUsQ0FBQztRQUNqQixJQUFJLENBQUMsVUFBVSxFQUFFLENBQUM7SUFDdEIsQ0FBQztJQUNTLFNBQVMsQ0FBQyxLQUFVO1FBQzFCLEtBQUssQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDdkIsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO1FBQ2xCLElBQUksQ0FBQyxJQUFJLENBQUMsYUFBYSxFQUFFLENBQUM7SUFDOUIsQ0FBQztJQUNELFVBQVU7UUFDTixvQkFBb0I7UUFDcEIsTUFBTSxLQUFLLEdBQVcsSUFBSSxDQUFDLEtBQUssQ0FBQztRQUNqQyxJQUFJLENBQUMsV0FBVyxHQUFHLEtBQUssQ0FBQztRQUN6QixJQUFJLEtBQUssSUFBSSxJQUFJLENBQUMsVUFBVSxDQUFDLFFBQVEsRUFBRTtZQUNuQyxJQUFJLEtBQUssQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLEtBQUssSUFBSSxFQUFFO2dCQUM5QixJQUFJLENBQUMsV0FBVyxHQUFHLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQyxFQUFFLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQztnQkFDakQsSUFBSSxDQUFDLFdBQVcsR0FBRyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUM7YUFDeEM7aUJBQU07Z0JBQ0gsSUFBSSxDQUFDLFdBQVcsR0FBRyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUM7YUFDbEM7U0FDSjtRQUNELE1BQU0sVUFBVSxHQUFHLENBQUMsTUFBTSxFQUFFLEVBQUUsQ0FBQyxJQUFJLFFBQVEsQ0FBQyxHQUFHLE1BQU0sRUFBRSxDQUFDLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUM7UUFDdEUsSUFBSSxDQUFDLE1BQU0sR0FBRyxVQUFVLENBQ3BCLElBQUksQ0FBQyxVQUFVLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxTQUFTLEVBQUUsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsa0JBQWtCLENBQUMsQ0FBQyxDQUFDLFlBQVksRUFBRSxDQUFDLENBQy9HLENBQUM7UUFDRixJQUFJLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxFQUFFO1lBQ3RCLElBQUksQ0FBQyxXQUFXLElBQUksSUFBSSxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksRUFBRSxDQUFDO1NBQ2xEO0lBQ0wsQ0FBQzs7d0hBakNRLDJCQUEyQjs0R0FBM0IsMkJBQTJCLDBGQUZ6QixDQUFDLGFBQWEsQ0FBQyxpRENYOUIsMFdBV0E7MkZERWEsMkJBQTJCO2tCQVB2QyxTQUFTOytCQUNJLDJCQUEyQixtQkFHcEIsdUJBQXVCLENBQUMsTUFBTSxhQUNwQyxDQUFDLGFBQWEsQ0FBQzs4QkFHakIsVUFBVTtzQkFBbEIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE9iamVjdFN0YXR1cyB9IGZyb20gJ0BmdW5kYW1lbnRhbC1uZ3gvY29yZSc7XG5cbmltcG9ydCB7IFVwbG9hZFNlcnZpY2UsIE1ldGFvYmplY3REYXRhTW9kZWwgfSBmcm9tICdiYXJzYS1ub3Zpbi1yYXktY29yZSc7XG5pbXBvcnQgeyBGaWVsZEJhc2VDb21wb25lbnQgfSBmcm9tICdiYXJzYS1ub3Zpbi1yYXktY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnYnN1LWJhcnNhLWZpZWxkLWtleS12YWx1ZScsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2JhcnNhLWZpZWxkLWtleS12YWx1ZS5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vYmFyc2EtZmllbGQta2V5LXZhbHVlLmNvbXBvbmVudC5zY3NzJ10sXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gICAgcHJvdmlkZXJzOiBbVXBsb2FkU2VydmljZV1cbn0pXG5leHBvcnQgY2xhc3MgQmFyc2FGaWVsZEtleVZhbHVlQ29tcG9uZW50IGV4dGVuZHMgRmllbGRCYXNlQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcbiAgICBASW5wdXQoKSBwYXJhbWV0ZXJzOiBCYXJzYUtleVZhbHVlU2V0dGluZztcbiAgICBzdGF0dXM6IE9iamVjdFN0YXR1cztcbiAgICB2YWx1ZU51bWJlcjogbnVtYmVyO1xuICAgIHZhbHVlU3RyaW5nOiBzdHJpbmc7XG4gICAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgICAgIHN1cGVyLm5nT25Jbml0KCk7XG4gICAgICAgIHRoaXMuX3NldFN0YXR1cygpO1xuICAgIH1cbiAgICBwcm90ZWN0ZWQgX3NldFZhbHVlKHZhbHVlOiBhbnkpOiB2b2lkIHtcbiAgICAgICAgc3VwZXIuX3NldFZhbHVlKHZhbHVlKTtcbiAgICAgICAgdGhpcy5fc2V0U3RhdHVzKCk7XG4gICAgICAgIHRoaXMuX2Nkci5kZXRlY3RDaGFuZ2VzKCk7XG4gICAgfVxuICAgIF9zZXRTdGF0dXMoKTogdm9pZCB7XG4gICAgICAgIC8qIGVzbGludC1kaXNhYmxlICovXG4gICAgICAgIGNvbnN0IHZhbHVlOiBzdHJpbmcgPSB0aGlzLnZhbHVlO1xuICAgICAgICB0aGlzLnZhbHVlU3RyaW5nID0gdmFsdWU7XG4gICAgICAgIGlmICh2YWx1ZSAmJiB0aGlzLnBhcmFtZXRlcnMuSXNOdW1iZXIpIHtcbiAgICAgICAgICAgIGlmICh2YWx1ZS5jaGFyQ29kZUF0KDApID09PSA4MjM0KSB7XG4gICAgICAgICAgICAgICAgdGhpcy52YWx1ZVN0cmluZyA9IHZhbHVlLnN1YnN0cigxLCB2YWx1ZS5sZW5ndGgpO1xuICAgICAgICAgICAgICAgIHRoaXMudmFsdWVOdW1iZXIgPSArdGhpcy52YWx1ZVN0cmluZztcbiAgICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICAgICAgdGhpcy52YWx1ZU51bWJlciA9ICt0aGlzLnZhbHVlO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICAgIGNvbnN0IHNjb3BlZEV2YWwgPSAoc2NyaXB0KSA9PiBuZXcgRnVuY3Rpb24oYCR7c2NyaXB0fWApLmJpbmQodGhpcykoKTtcbiAgICAgICAgdGhpcy5zdGF0dXMgPSBzY29wZWRFdmFsKFxuICAgICAgICAgICAgdGhpcy5wYXJhbWV0ZXJzLlN0YXR1cy5yZXBsYWNlKC92YWx1ZS9naSwgYCR7dGhpcy5wYXJhbWV0ZXJzLklzTnVtYmVyID8gJ3RoaXMudmFsdWVOdW1iZXInIDogJ3RoaXMudmFsdWUnfWApXG4gICAgICAgICk7XG4gICAgICAgIGlmICh0aGlzLnBhcmFtZXRlcnMuVW5pdCkge1xuICAgICAgICAgICAgdGhpcy52YWx1ZVN0cmluZyArPSBgICR7dGhpcy5wYXJhbWV0ZXJzLlVuaXR9YDtcbiAgICAgICAgfVxuICAgIH1cbn1cblxuaW50ZXJmYWNlIEJhcnNhS2V5VmFsdWVTZXR0aW5nIGV4dGVuZHMgTWV0YW9iamVjdERhdGFNb2RlbCB7XG4gICAgU3RhdHVzOiBzdHJpbmc7XG4gICAgSWNvbjogc3RyaW5nO1xuICAgIElzTnVtYmVyOiBib29sZWFuO1xuICAgIFVuaXQ6IHN0cmluZztcbiAgICBQb3N0Zml4OiBzdHJpbmc7XG4gICAgRGVjaW1hbENvdW50OiBudW1iZXI7XG4gICAgSXNMYXJnZTogYm9vbGVhbjtcbn1cbiIsIjxmZC1mYWNldCB0eXBlPVwia2V5LXZhbHVlXCIgW2ZhY2V0VGl0bGVdPVwiU2V0dGluZy5Db250cm9sRmllbGRDYXB0aW9uVHJhbnNsYXRlZFwiPlxuICAgIDxzcGFuXG4gICAgICAgIGZkLW9iamVjdC1zdGF0dXNcbiAgICAgICAgW3N0YXR1c109XCJzdGF0dXNcIlxuICAgICAgICBbbGFiZWxdPVwidmFsdWVTdHJpbmdcIlxuICAgICAgICBbZ2x5cGhdPVwicGFyYW1ldGVycy5JY29uXCJcbiAgICAgICAgW2xhcmdlXT1cInBhcmFtZXRlcnMuSXNMYXJnZVwiXG4gICAgICAgIFt0aXRsZV09XCJ2YWx1ZVN0cmluZ1wiXG4gICAgICAgIFthcmlhLWxhYmVsXT1cInZhbHVlU3RyaW5nXCJcbiAgICA+PC9zcGFuPlxuPC9mZC1mYWNldD5cbiJdfQ==
@@ -184,22 +184,26 @@ import * as i165 from "./barsa-simple-form/barsa-simple-form.component";
184
184
  import * as i166 from "./form-toolbar/form-toolbar.component";
185
185
  import * as i167 from "./barsa-list-layout-panel/barsa-list-layout-panel.component";
186
186
  import * as i168 from "./barsa-grid-layout-panel/barsa-grid-layout-panel.component";
187
- import * as i169 from "./upload-file-status.pipe";
188
- import * as i170 from "./sap-font.pipe";
189
- import * as i171 from "./sap-font-class.pipe";
190
- import * as i172 from "./barsa-tree-item/node-has-one-depth-level.pipe";
191
- import * as i173 from "./column-matrix-renderer/matrix-value.pipe";
192
- import * as i174 from "./dynamic-page-size.pipe";
193
- import * as i175 from "./sap-size.pipe";
194
- import * as i176 from "./wizard-layout.directive";
195
- import * as i177 from "./col-renderer.directive";
196
- import * as i178 from "./apply-conditional-formmatings.directive";
197
- import * as i179 from "./report-view-renderer.directive";
198
- import * as i180 from "./fullscreen-dialog.directive";
199
- import * as i181 from "./fullscreen-files.directive";
200
- import * as i182 from "./download-files.directive";
201
- import * as i183 from "./dialog-handler.directive";
202
- import * as i184 from "@fundamental-ngx/core";
187
+ import * as i169 from "./barsa-dynamic-field/barsa-dynamic-field.component";
188
+ import * as i170 from "./ui-multi-select-radio/ui-multi-select-radio.component";
189
+ import * as i171 from "./ui-multi-select-checkbox/ui-multi-select-checkbox.component";
190
+ import * as i172 from "./ui-num-int-slider/ui-num-int-slider.component";
191
+ import * as i173 from "./upload-file-status.pipe";
192
+ import * as i174 from "./sap-font.pipe";
193
+ import * as i175 from "./sap-font-class.pipe";
194
+ import * as i176 from "./barsa-tree-item/node-has-one-depth-level.pipe";
195
+ import * as i177 from "./column-matrix-renderer/matrix-value.pipe";
196
+ import * as i178 from "./dynamic-page-size.pipe";
197
+ import * as i179 from "./sap-size.pipe";
198
+ import * as i180 from "./wizard-layout.directive";
199
+ import * as i181 from "./col-renderer.directive";
200
+ import * as i182 from "./apply-conditional-formmatings.directive";
201
+ import * as i183 from "./report-view-renderer.directive";
202
+ import * as i184 from "./fullscreen-dialog.directive";
203
+ import * as i185 from "./fullscreen-files.directive";
204
+ import * as i186 from "./download-files.directive";
205
+ import * as i187 from "./dialog-handler.directive";
206
+ import * as i188 from "@fundamental-ngx/core";
203
207
  const rootProviders = [
204
208
  Overlay,
205
209
  GlobalContentDensityService,
@@ -231,7 +235,7 @@ export class BarsaSapUiModule extends BaseModule {
231
235
  }
232
236
  }
233
237
  BarsaSapUiModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiModule, deps: [{ token: i1.DynamicComponentService }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.NgModule });
234
- BarsaSapUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiModule, declarations: [i2.UiTextFieldComponent, i3.LyLayoutFieldLabelComponent, i4.UiCheckBoxComponent, i5.UiSimpleComboComponent, i6.UiRadioGroupComponent, i7.UiGridComponent, i8.LyLayoutContainerOfRootComponent, i9.LyLayoutPanelComponent, i10.UiReadOnlyFieldComponent, i11.UiContainerWithButtonComponent, i12.UiPictureFileComponent, i13.UiMoInfoUlvComboComponent, i14.UiMultiSelectComboComponent, i15.UiNumDecimalUiComponent, i16.UiNumIntUiComponent, i17.UiTimeSpanComponent, i18.UiFileLinearListBoxComponent, i19.LyEmptySpaceComponent, i20.UiSinglePictureComponent, i21.UlvSelectionComponent, i22.UlvToolbarComponent, i23.UlvPagingComponent, i24.UiGridSortSettingComponent, i25.UiGridSortItemComponent, i26.UiGridColumnsComponent, i27.MaskComponent, i28.UiInfoBarPanelComponent, i29.UiFormPanelComponent, i30.UiSearchCommandInfoUiComponent, i31.UlvSettingsComponent, i32.UiTinymceComponent, i33.UiButtonComponent, i34.UiDateTimeComponent, i35.FormDialogComponent, i36.HeaderFacetKeyValueComponent, i37.HeaderFacetFormComponent, i38.HeaderFacetRateComponent, i39.HeaderFacetProgressComponent, i40.HeaderFacetMicrochartComponent, i41.HeaderFacetPlainTextComponent, i42.UiMoInfoSubFormUiComponent, i43.ResponsiveToolbarComponent, i44.ResponsiveToolbarRendererComponent, i45.UiTextAreaComponent, i46.LayoutControlComponent, i47.LayoutWizardComponent, i48.FormWizardComponent, i49.FormDialogLessComponent, i50.RichTextStaticComponent, i51.UiPicturesInfoComponent, i52.LyHorizontalLayoutComponent, i53.LyVerticalLayoutComponent, i54.LyTabContainerComponent, i55.LyTabPageComponent, i56.LyLabelComponent, i57.UiMoInfoComboViewerComponent, i58.UlMsgBoxAdapterComponent, i59.UiTreeComponent, i60.HeaderAvatarComponent, i61.UiWorkflowPanelUiComponent, i62.UlvContextMenuComponent, i63.UlLoadingMaskUiComponent, i64.UiTextFieldAutoCompleteComponent, i65.CaptchaFieldComponent, i66.LySimpleLabelComponent, i67.GlobalSearchPanelComponent, i68.GlobalSearchModuleComponent, i69.GlobalSearchComponent, i70.HyperlinkComponent, i71.StaticTextComponent, i72.UlToastAdapterComponent, i73.MessageStripComponent, i74.UiLinearListContainerWithButtonComponent, i75.FundamentalDynamicFormComponent, i76.LayoutActionsComponent, i77.LyLayoutContainerComponent, i78.UiUlvFormMultiSelectUiComponent, i79.UlvFormMultiSelectComponent, i80.UlvColumnSettingsComponent, i81.UlvFilterSettingsComponent, i82.UlvSortSettingsComponent, i83.UlvGroupbySettingsComponent, i84.BarsaListFileLinearComponent, i85.UiPdfViewerComponent, i86.BarsaTinyemceComponent, i87.UiMonacoEditorComponent, i88.BarsaMonacoEditorComponent, i89.BarsaDateTimePickerComponent, i90.BarsaTreeItemComponent, i91.UiSwitchButtonComponent, i92.UiColorUiComponent, i93.LyLineComponent, i94.UiUlvMainUiComponent, i95.ReportNavigatorComponent, i96.ManageFiltersReportComponent, i97.ReportSearchFieldsManageComponent, i98.ReportSearchFieldsHiddenSettingsComponent, i99.SearchPanelComponent, i100.ReportSearchPanelSaveComponent, i101.UiGridFilterSettingsComponent, i102.UiGridFilterItemComponent, i103.UiDateRangeExComponent, i104.UlNotifyPopupComponent, i105.UiTableViewComponent, i106.UiListViewComponent, i107.UiCardViewComponent, i108.UiReportContainerComponent, i109.NoDataComponent, i110.ColumnRendererComponent, i111.InlineSaveAndCancelComponent, i112.UiTreeViewComponent, i111.InlineSaveAndCancelComponent, i113.UiCalendarComponent, i114.UiAspReportViewerComponent, i115.UiGraphComponent, i116.UiExceptionFormComponent, i117.UiEditableGridComponent, i118.ColumnMatrixRendererComponent, i119.UiMatrixViewComponent, i120.CustomDateTimeComponent, i121.BarsaAspViewerComponent, i122.FileInDialogComponent, i123.UiMoInfoGeneralObjectUiComponent, i124.UiGanttChartComponent, i125.GanttDhtmlChartViewComponent, i126.ProgressIndicatorComponent, i127.CardViewContentComponent, i128.CardItemComponent, i129.UiCardViewHorizontalGroupComponent, i130.TitleComponent, i131.BarsaUlvMainComponent, i132.ListItemComponent, i133.HtreeCreateNewComponent, i134.BarsaTableHeaderComponent, i135.BarsaTableRowComponent, i136.BarsaTableColumnComponent, i137.BreadcrumbComponent, i138.UiLabelComponent, i139.FormToolbarButtonComponent, i140.BarsaSearchFormComponent, i141.ReportNewTopFormComponent, i142.BarsaNetworkOfflineComponent, i143.FileViewerContentComponent, i144.FileViewerPopoverComponent, i145.FileViewerComponent, i146.BlobViewerComponent, i147.NotificationItemComponent, i148.BarsaCartableTemplateComponent, i149.BarsaCartableGroupComponent, i150.BarsaCartableFormComponent, i151.BarsaColumnIndicatorComponent, i152.BarsaFieldKeyValueComponent, i153.BarsaToolbaritemSearchComponent, i154.UiHtmlViewerComponent, i155.BarsaPishnamayeshPayamComponent, i156.BarsaTextEllipsisComponent, i157.BarsaListFileLinearGmailComponent, i158.BarsaLinkableItemsPanelComponent, i159.BarsaEnumMenuButtonComponent, i160.BarsaCardLayoutPanelComponent, i161.BarsaHorizontalFlexPanelComponent, i162.BarsaBaseLayoutPanelComponent, i163.BarsaBarPanelComponent, i164.BarsaFormSideContentComponent, i165.BarsaSimpleFormComponent, i166.FormToolbarComponent, i167.BarsaListLayoutPanelComponent, i168.BarsaGridLayoutPanelComponent, i169.UploadFileStatusPipe, i170.SapFontPipe, i171.SapFontClassPipe, i107.StringToArrayPipe, i172.NodeHasOneDepthLevelPipe, i173.MatrixValuePipe, i174.DynamicPageSizePipe, i175.SapSizePipe, i176.WizardLayoutDirective, i177.ColRendererDirective, i178.ApplyConditionalFormatsDirective, i179.ReportViewRendererDirective, i180.FullscreenDialogDirective, i181.FullscreenFilesDirective, i182.DownloadFilesDirective, i183.DialogHandlerDirective], imports: [CommonModule,
238
+ BarsaSapUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiModule, declarations: [i2.UiTextFieldComponent, i3.LyLayoutFieldLabelComponent, i4.UiCheckBoxComponent, i5.UiSimpleComboComponent, i6.UiRadioGroupComponent, i7.UiGridComponent, i8.LyLayoutContainerOfRootComponent, i9.LyLayoutPanelComponent, i10.UiReadOnlyFieldComponent, i11.UiContainerWithButtonComponent, i12.UiPictureFileComponent, i13.UiMoInfoUlvComboComponent, i14.UiMultiSelectComboComponent, i15.UiNumDecimalUiComponent, i16.UiNumIntUiComponent, i17.UiTimeSpanComponent, i18.UiFileLinearListBoxComponent, i19.LyEmptySpaceComponent, i20.UiSinglePictureComponent, i21.UlvSelectionComponent, i22.UlvToolbarComponent, i23.UlvPagingComponent, i24.UiGridSortSettingComponent, i25.UiGridSortItemComponent, i26.UiGridColumnsComponent, i27.MaskComponent, i28.UiInfoBarPanelComponent, i29.UiFormPanelComponent, i30.UiSearchCommandInfoUiComponent, i31.UlvSettingsComponent, i32.UiTinymceComponent, i33.UiButtonComponent, i34.UiDateTimeComponent, i35.FormDialogComponent, i36.HeaderFacetKeyValueComponent, i37.HeaderFacetFormComponent, i38.HeaderFacetRateComponent, i39.HeaderFacetProgressComponent, i40.HeaderFacetMicrochartComponent, i41.HeaderFacetPlainTextComponent, i42.UiMoInfoSubFormUiComponent, i43.ResponsiveToolbarComponent, i44.ResponsiveToolbarRendererComponent, i45.UiTextAreaComponent, i46.LayoutControlComponent, i47.LayoutWizardComponent, i48.FormWizardComponent, i49.FormDialogLessComponent, i50.RichTextStaticComponent, i51.UiPicturesInfoComponent, i52.LyHorizontalLayoutComponent, i53.LyVerticalLayoutComponent, i54.LyTabContainerComponent, i55.LyTabPageComponent, i56.LyLabelComponent, i57.UiMoInfoComboViewerComponent, i58.UlMsgBoxAdapterComponent, i59.UiTreeComponent, i60.HeaderAvatarComponent, i61.UiWorkflowPanelUiComponent, i62.UlvContextMenuComponent, i63.UlLoadingMaskUiComponent, i64.UiTextFieldAutoCompleteComponent, i65.CaptchaFieldComponent, i66.LySimpleLabelComponent, i67.GlobalSearchPanelComponent, i68.GlobalSearchModuleComponent, i69.GlobalSearchComponent, i70.HyperlinkComponent, i71.StaticTextComponent, i72.UlToastAdapterComponent, i73.MessageStripComponent, i74.UiLinearListContainerWithButtonComponent, i75.FundamentalDynamicFormComponent, i76.LayoutActionsComponent, i77.LyLayoutContainerComponent, i78.UiUlvFormMultiSelectUiComponent, i79.UlvFormMultiSelectComponent, i80.UlvColumnSettingsComponent, i81.UlvFilterSettingsComponent, i82.UlvSortSettingsComponent, i83.UlvGroupbySettingsComponent, i84.BarsaListFileLinearComponent, i85.UiPdfViewerComponent, i86.BarsaTinyemceComponent, i87.UiMonacoEditorComponent, i88.BarsaMonacoEditorComponent, i89.BarsaDateTimePickerComponent, i90.BarsaTreeItemComponent, i91.UiSwitchButtonComponent, i92.UiColorUiComponent, i93.LyLineComponent, i94.UiUlvMainUiComponent, i95.ReportNavigatorComponent, i96.ManageFiltersReportComponent, i97.ReportSearchFieldsManageComponent, i98.ReportSearchFieldsHiddenSettingsComponent, i99.SearchPanelComponent, i100.ReportSearchPanelSaveComponent, i101.UiGridFilterSettingsComponent, i102.UiGridFilterItemComponent, i103.UiDateRangeExComponent, i104.UlNotifyPopupComponent, i105.UiTableViewComponent, i106.UiListViewComponent, i107.UiCardViewComponent, i108.UiReportContainerComponent, i109.NoDataComponent, i110.ColumnRendererComponent, i111.InlineSaveAndCancelComponent, i112.UiTreeViewComponent, i111.InlineSaveAndCancelComponent, i113.UiCalendarComponent, i114.UiAspReportViewerComponent, i115.UiGraphComponent, i116.UiExceptionFormComponent, i117.UiEditableGridComponent, i118.ColumnMatrixRendererComponent, i119.UiMatrixViewComponent, i120.CustomDateTimeComponent, i121.BarsaAspViewerComponent, i122.FileInDialogComponent, i123.UiMoInfoGeneralObjectUiComponent, i124.UiGanttChartComponent, i125.GanttDhtmlChartViewComponent, i126.ProgressIndicatorComponent, i127.CardViewContentComponent, i128.CardItemComponent, i129.UiCardViewHorizontalGroupComponent, i130.TitleComponent, i131.BarsaUlvMainComponent, i132.ListItemComponent, i133.HtreeCreateNewComponent, i134.BarsaTableHeaderComponent, i135.BarsaTableRowComponent, i136.BarsaTableColumnComponent, i137.BreadcrumbComponent, i138.UiLabelComponent, i139.FormToolbarButtonComponent, i140.BarsaSearchFormComponent, i141.ReportNewTopFormComponent, i142.BarsaNetworkOfflineComponent, i143.FileViewerContentComponent, i144.FileViewerPopoverComponent, i145.FileViewerComponent, i146.BlobViewerComponent, i147.NotificationItemComponent, i148.BarsaCartableTemplateComponent, i149.BarsaCartableGroupComponent, i150.BarsaCartableFormComponent, i151.BarsaColumnIndicatorComponent, i152.BarsaFieldKeyValueComponent, i153.BarsaToolbaritemSearchComponent, i154.UiHtmlViewerComponent, i155.BarsaPishnamayeshPayamComponent, i156.BarsaTextEllipsisComponent, i157.BarsaListFileLinearGmailComponent, i158.BarsaLinkableItemsPanelComponent, i159.BarsaEnumMenuButtonComponent, i160.BarsaCardLayoutPanelComponent, i161.BarsaHorizontalFlexPanelComponent, i162.BarsaBaseLayoutPanelComponent, i163.BarsaBarPanelComponent, i164.BarsaFormSideContentComponent, i165.BarsaSimpleFormComponent, i166.FormToolbarComponent, i167.BarsaListLayoutPanelComponent, i168.BarsaGridLayoutPanelComponent, i169.BarsaDynamicFieldComponent, i170.UiMultiSelectRadioComponent, i171.UiMultiSelectCheckboxComponent, i172.UiNumIntSliderComponent, i173.UploadFileStatusPipe, i174.SapFontPipe, i175.SapFontClassPipe, i107.StringToArrayPipe, i176.NodeHasOneDepthLevelPipe, i177.MatrixValuePipe, i178.DynamicPageSizePipe, i179.SapSizePipe, i180.WizardLayoutDirective, i181.ColRendererDirective, i182.ApplyConditionalFormatsDirective, i183.ReportViewRendererDirective, i184.FullscreenDialogDirective, i185.FullscreenFilesDirective, i186.DownloadFilesDirective, i187.DialogHandlerDirective], imports: [CommonModule,
235
239
  FormsModule,
236
240
  ReactiveFormsModule,
237
241
  BarsaNovinRayCoreModule,
@@ -247,7 +251,7 @@ BarsaSapUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", versio
247
251
  BarsaCalendarModule,
248
252
  BarsaSapUiRoutingModule,
249
253
  PdfJsViewerModule,
250
- ResizableModule, i184.ContentDensityModule], exports: [i2.UiTextFieldComponent, i3.LyLayoutFieldLabelComponent, i4.UiCheckBoxComponent, i5.UiSimpleComboComponent, i6.UiRadioGroupComponent, i7.UiGridComponent, i8.LyLayoutContainerOfRootComponent, i9.LyLayoutPanelComponent, i10.UiReadOnlyFieldComponent, i11.UiContainerWithButtonComponent, i12.UiPictureFileComponent, i13.UiMoInfoUlvComboComponent, i14.UiMultiSelectComboComponent, i15.UiNumDecimalUiComponent, i16.UiNumIntUiComponent, i17.UiTimeSpanComponent, i18.UiFileLinearListBoxComponent, i19.LyEmptySpaceComponent, i20.UiSinglePictureComponent, i21.UlvSelectionComponent, i22.UlvToolbarComponent, i23.UlvPagingComponent, i24.UiGridSortSettingComponent, i25.UiGridSortItemComponent, i26.UiGridColumnsComponent, i27.MaskComponent, i28.UiInfoBarPanelComponent, i29.UiFormPanelComponent, i30.UiSearchCommandInfoUiComponent, i31.UlvSettingsComponent, i32.UiTinymceComponent, i33.UiButtonComponent, i34.UiDateTimeComponent, i35.FormDialogComponent, i36.HeaderFacetKeyValueComponent, i37.HeaderFacetFormComponent, i38.HeaderFacetRateComponent, i39.HeaderFacetProgressComponent, i40.HeaderFacetMicrochartComponent, i41.HeaderFacetPlainTextComponent, i42.UiMoInfoSubFormUiComponent, i43.ResponsiveToolbarComponent, i44.ResponsiveToolbarRendererComponent, i45.UiTextAreaComponent, i46.LayoutControlComponent, i47.LayoutWizardComponent, i48.FormWizardComponent, i49.FormDialogLessComponent, i50.RichTextStaticComponent, i51.UiPicturesInfoComponent, i52.LyHorizontalLayoutComponent, i53.LyVerticalLayoutComponent, i54.LyTabContainerComponent, i55.LyTabPageComponent, i56.LyLabelComponent, i57.UiMoInfoComboViewerComponent, i58.UlMsgBoxAdapterComponent, i59.UiTreeComponent, i60.HeaderAvatarComponent, i61.UiWorkflowPanelUiComponent, i62.UlvContextMenuComponent, i63.UlLoadingMaskUiComponent, i64.UiTextFieldAutoCompleteComponent, i65.CaptchaFieldComponent, i66.LySimpleLabelComponent, i67.GlobalSearchPanelComponent, i68.GlobalSearchModuleComponent, i69.GlobalSearchComponent, i70.HyperlinkComponent, i71.StaticTextComponent, i72.UlToastAdapterComponent, i73.MessageStripComponent, i74.UiLinearListContainerWithButtonComponent, i75.FundamentalDynamicFormComponent, i76.LayoutActionsComponent, i77.LyLayoutContainerComponent, i78.UiUlvFormMultiSelectUiComponent, i79.UlvFormMultiSelectComponent, i80.UlvColumnSettingsComponent, i81.UlvFilterSettingsComponent, i82.UlvSortSettingsComponent, i83.UlvGroupbySettingsComponent, i84.BarsaListFileLinearComponent, i85.UiPdfViewerComponent, i86.BarsaTinyemceComponent, i87.UiMonacoEditorComponent, i88.BarsaMonacoEditorComponent, i89.BarsaDateTimePickerComponent, i90.BarsaTreeItemComponent, i91.UiSwitchButtonComponent, i92.UiColorUiComponent, i93.LyLineComponent, i94.UiUlvMainUiComponent, i95.ReportNavigatorComponent, i96.ManageFiltersReportComponent, i97.ReportSearchFieldsManageComponent, i98.ReportSearchFieldsHiddenSettingsComponent, i99.SearchPanelComponent, i100.ReportSearchPanelSaveComponent, i101.UiGridFilterSettingsComponent, i102.UiGridFilterItemComponent, i103.UiDateRangeExComponent, i104.UlNotifyPopupComponent, i105.UiTableViewComponent, i106.UiListViewComponent, i107.UiCardViewComponent, i108.UiReportContainerComponent, i109.NoDataComponent, i110.ColumnRendererComponent, i111.InlineSaveAndCancelComponent, i112.UiTreeViewComponent, i111.InlineSaveAndCancelComponent, i113.UiCalendarComponent, i114.UiAspReportViewerComponent, i115.UiGraphComponent, i116.UiExceptionFormComponent, i117.UiEditableGridComponent, i118.ColumnMatrixRendererComponent, i119.UiMatrixViewComponent, i120.CustomDateTimeComponent, i121.BarsaAspViewerComponent, i122.FileInDialogComponent, i123.UiMoInfoGeneralObjectUiComponent, i124.UiGanttChartComponent, i125.GanttDhtmlChartViewComponent, i126.ProgressIndicatorComponent, i127.CardViewContentComponent, i128.CardItemComponent, i129.UiCardViewHorizontalGroupComponent, i130.TitleComponent, i131.BarsaUlvMainComponent, i132.ListItemComponent, i133.HtreeCreateNewComponent, i134.BarsaTableHeaderComponent, i135.BarsaTableRowComponent, i136.BarsaTableColumnComponent, i137.BreadcrumbComponent, i138.UiLabelComponent, i139.FormToolbarButtonComponent, i140.BarsaSearchFormComponent, i141.ReportNewTopFormComponent, i142.BarsaNetworkOfflineComponent, i143.FileViewerContentComponent, i144.FileViewerPopoverComponent, i145.FileViewerComponent, i146.BlobViewerComponent, i147.NotificationItemComponent, i148.BarsaCartableTemplateComponent, i149.BarsaCartableGroupComponent, i150.BarsaCartableFormComponent, i151.BarsaColumnIndicatorComponent, i152.BarsaFieldKeyValueComponent, i153.BarsaToolbaritemSearchComponent, i154.UiHtmlViewerComponent, i155.BarsaPishnamayeshPayamComponent, i156.BarsaTextEllipsisComponent, i157.BarsaListFileLinearGmailComponent, i158.BarsaLinkableItemsPanelComponent, i159.BarsaEnumMenuButtonComponent, i160.BarsaCardLayoutPanelComponent, i161.BarsaHorizontalFlexPanelComponent, i162.BarsaBaseLayoutPanelComponent, i163.BarsaBarPanelComponent, i164.BarsaFormSideContentComponent, i165.BarsaSimpleFormComponent, i166.FormToolbarComponent, i167.BarsaListLayoutPanelComponent, i168.BarsaGridLayoutPanelComponent, i176.WizardLayoutDirective, i177.ColRendererDirective, i178.ApplyConditionalFormatsDirective, i179.ReportViewRendererDirective, i180.FullscreenDialogDirective, i181.FullscreenFilesDirective, i182.DownloadFilesDirective, i183.DialogHandlerDirective, i169.UploadFileStatusPipe, i170.SapFontPipe, i171.SapFontClassPipe, i107.StringToArrayPipe, i172.NodeHasOneDepthLevelPipe, i173.MatrixValuePipe, i174.DynamicPageSizePipe, i175.SapSizePipe] });
254
+ ResizableModule, i188.ContentDensityModule], exports: [i2.UiTextFieldComponent, i3.LyLayoutFieldLabelComponent, i4.UiCheckBoxComponent, i5.UiSimpleComboComponent, i6.UiRadioGroupComponent, i7.UiGridComponent, i8.LyLayoutContainerOfRootComponent, i9.LyLayoutPanelComponent, i10.UiReadOnlyFieldComponent, i11.UiContainerWithButtonComponent, i12.UiPictureFileComponent, i13.UiMoInfoUlvComboComponent, i14.UiMultiSelectComboComponent, i15.UiNumDecimalUiComponent, i16.UiNumIntUiComponent, i17.UiTimeSpanComponent, i18.UiFileLinearListBoxComponent, i19.LyEmptySpaceComponent, i20.UiSinglePictureComponent, i21.UlvSelectionComponent, i22.UlvToolbarComponent, i23.UlvPagingComponent, i24.UiGridSortSettingComponent, i25.UiGridSortItemComponent, i26.UiGridColumnsComponent, i27.MaskComponent, i28.UiInfoBarPanelComponent, i29.UiFormPanelComponent, i30.UiSearchCommandInfoUiComponent, i31.UlvSettingsComponent, i32.UiTinymceComponent, i33.UiButtonComponent, i34.UiDateTimeComponent, i35.FormDialogComponent, i36.HeaderFacetKeyValueComponent, i37.HeaderFacetFormComponent, i38.HeaderFacetRateComponent, i39.HeaderFacetProgressComponent, i40.HeaderFacetMicrochartComponent, i41.HeaderFacetPlainTextComponent, i42.UiMoInfoSubFormUiComponent, i43.ResponsiveToolbarComponent, i44.ResponsiveToolbarRendererComponent, i45.UiTextAreaComponent, i46.LayoutControlComponent, i47.LayoutWizardComponent, i48.FormWizardComponent, i49.FormDialogLessComponent, i50.RichTextStaticComponent, i51.UiPicturesInfoComponent, i52.LyHorizontalLayoutComponent, i53.LyVerticalLayoutComponent, i54.LyTabContainerComponent, i55.LyTabPageComponent, i56.LyLabelComponent, i57.UiMoInfoComboViewerComponent, i58.UlMsgBoxAdapterComponent, i59.UiTreeComponent, i60.HeaderAvatarComponent, i61.UiWorkflowPanelUiComponent, i62.UlvContextMenuComponent, i63.UlLoadingMaskUiComponent, i64.UiTextFieldAutoCompleteComponent, i65.CaptchaFieldComponent, i66.LySimpleLabelComponent, i67.GlobalSearchPanelComponent, i68.GlobalSearchModuleComponent, i69.GlobalSearchComponent, i70.HyperlinkComponent, i71.StaticTextComponent, i72.UlToastAdapterComponent, i73.MessageStripComponent, i74.UiLinearListContainerWithButtonComponent, i75.FundamentalDynamicFormComponent, i76.LayoutActionsComponent, i77.LyLayoutContainerComponent, i78.UiUlvFormMultiSelectUiComponent, i79.UlvFormMultiSelectComponent, i80.UlvColumnSettingsComponent, i81.UlvFilterSettingsComponent, i82.UlvSortSettingsComponent, i83.UlvGroupbySettingsComponent, i84.BarsaListFileLinearComponent, i85.UiPdfViewerComponent, i86.BarsaTinyemceComponent, i87.UiMonacoEditorComponent, i88.BarsaMonacoEditorComponent, i89.BarsaDateTimePickerComponent, i90.BarsaTreeItemComponent, i91.UiSwitchButtonComponent, i92.UiColorUiComponent, i93.LyLineComponent, i94.UiUlvMainUiComponent, i95.ReportNavigatorComponent, i96.ManageFiltersReportComponent, i97.ReportSearchFieldsManageComponent, i98.ReportSearchFieldsHiddenSettingsComponent, i99.SearchPanelComponent, i100.ReportSearchPanelSaveComponent, i101.UiGridFilterSettingsComponent, i102.UiGridFilterItemComponent, i103.UiDateRangeExComponent, i104.UlNotifyPopupComponent, i105.UiTableViewComponent, i106.UiListViewComponent, i107.UiCardViewComponent, i108.UiReportContainerComponent, i109.NoDataComponent, i110.ColumnRendererComponent, i111.InlineSaveAndCancelComponent, i112.UiTreeViewComponent, i111.InlineSaveAndCancelComponent, i113.UiCalendarComponent, i114.UiAspReportViewerComponent, i115.UiGraphComponent, i116.UiExceptionFormComponent, i117.UiEditableGridComponent, i118.ColumnMatrixRendererComponent, i119.UiMatrixViewComponent, i120.CustomDateTimeComponent, i121.BarsaAspViewerComponent, i122.FileInDialogComponent, i123.UiMoInfoGeneralObjectUiComponent, i124.UiGanttChartComponent, i125.GanttDhtmlChartViewComponent, i126.ProgressIndicatorComponent, i127.CardViewContentComponent, i128.CardItemComponent, i129.UiCardViewHorizontalGroupComponent, i130.TitleComponent, i131.BarsaUlvMainComponent, i132.ListItemComponent, i133.HtreeCreateNewComponent, i134.BarsaTableHeaderComponent, i135.BarsaTableRowComponent, i136.BarsaTableColumnComponent, i137.BreadcrumbComponent, i138.UiLabelComponent, i139.FormToolbarButtonComponent, i140.BarsaSearchFormComponent, i141.ReportNewTopFormComponent, i142.BarsaNetworkOfflineComponent, i143.FileViewerContentComponent, i144.FileViewerPopoverComponent, i145.FileViewerComponent, i146.BlobViewerComponent, i147.NotificationItemComponent, i148.BarsaCartableTemplateComponent, i149.BarsaCartableGroupComponent, i150.BarsaCartableFormComponent, i151.BarsaColumnIndicatorComponent, i152.BarsaFieldKeyValueComponent, i153.BarsaToolbaritemSearchComponent, i154.UiHtmlViewerComponent, i155.BarsaPishnamayeshPayamComponent, i156.BarsaTextEllipsisComponent, i157.BarsaListFileLinearGmailComponent, i158.BarsaLinkableItemsPanelComponent, i159.BarsaEnumMenuButtonComponent, i160.BarsaCardLayoutPanelComponent, i161.BarsaHorizontalFlexPanelComponent, i162.BarsaBaseLayoutPanelComponent, i163.BarsaBarPanelComponent, i164.BarsaFormSideContentComponent, i165.BarsaSimpleFormComponent, i166.FormToolbarComponent, i167.BarsaListLayoutPanelComponent, i168.BarsaGridLayoutPanelComponent, i169.BarsaDynamicFieldComponent, i170.UiMultiSelectRadioComponent, i171.UiMultiSelectCheckboxComponent, i172.UiNumIntSliderComponent, i180.WizardLayoutDirective, i181.ColRendererDirective, i182.ApplyConditionalFormatsDirective, i183.ReportViewRendererDirective, i184.FullscreenDialogDirective, i185.FullscreenFilesDirective, i186.DownloadFilesDirective, i187.DialogHandlerDirective, i173.UploadFileStatusPipe, i174.SapFontPipe, i175.SapFontClassPipe, i107.StringToArrayPipe, i176.NodeHasOneDepthLevelPipe, i177.MatrixValuePipe, i178.DynamicPageSizePipe, i179.SapSizePipe] });
251
255
  BarsaSapUiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaSapUiModule, providers: [{ provide: DIALOG_SERVICE, useClass: DialogService }], imports: [CommonModule,
252
256
  FormsModule,
253
257
  ReactiveFormsModule,
@@ -303,4 +307,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
303
307
  providers: [{ provide: DIALOG_SERVICE, useClass: DialogService }]
304
308
  }]
305
309
  }], ctorParameters: function () { return [{ type: i1.DynamicComponentService }, { type: i0.ComponentFactoryResolver }]; } });
306
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFyc2Etc2FwLXVpLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2JhcnNhLXNhcC11aS9zcmMvbGliL2JhcnNhLXNhcC11aS5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUVILHNCQUFzQixFQUV0QixRQUFRLEVBQ1IsZ0JBQWdCLEVBQ2hCLGVBQWUsRUFDbEIsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLFdBQVcsRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUMvQyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3hELE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUNwRCxPQUFPLEVBQ0gsd0JBQXdCLEVBQ3hCLFVBQVUsRUFDVixZQUFZLEVBQ1osV0FBVyxFQUNYLGFBQWEsRUFDYixhQUFhLEVBQ2Isb0JBQW9CLEVBQ3BCLGtCQUFrQixFQUNsQiwyQkFBMkIsRUFDM0IsVUFBVSxFQUNWLGVBQWUsRUFDZixtQkFBbUIsRUFDdEIsTUFBTSx1QkFBdUIsQ0FBQztBQUUvQixPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUVyRCxPQUFPLEVBQ0gsYUFBYSxFQUViLHVCQUF1QixFQUN2QixVQUFVLEVBQ1YsY0FBYyxFQUNkLHFCQUFxQixFQUNyQiwwQkFBMEIsRUFDMUIsYUFBYSxFQUNiLGVBQWUsRUFDbEIsTUFBTSxzQkFBc0IsQ0FBQztBQUU5QixPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUN6RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFFekQsT0FBTyxFQUFFLFVBQVUsRUFBRSxLQUFLLEVBQUUsVUFBVSxFQUFFLGFBQWEsRUFBRSxNQUFNLFNBQVMsQ0FBQztBQUN2RSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUN4RSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQUMxRSxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRXhFLE1BQU0sYUFBYSxHQUFHO0lBQ2xCLE9BQU87SUFDUCwyQkFBMkI7SUFDM0IsYUFBYTtJQUNiLGVBQWU7SUFDZixVQUFVO0lBQ1Y7UUFDSSxPQUFPLEVBQUUsZUFBZTtRQUN4QixVQUFVLEVBQUUsYUFBYTtRQUN6QixJQUFJLEVBQUUsQ0FBQyxVQUFVLEVBQUUsMkJBQTJCLEVBQUUsYUFBYSxFQUFFLGFBQWEsQ0FBQztRQUM3RSxLQUFLLEVBQUUsSUFBSTtLQUNkO0lBQ0QsRUFBRSxPQUFPLEVBQUUscUJBQXFCLEVBQUUsUUFBUSxFQUFFLG1CQUFtQixFQUFFO0lBQ2pFLEVBQUUsT0FBTyxFQUFFLDBCQUEwQixFQUFFLFFBQVEsRUFBRSx3QkFBd0IsRUFBRTtJQUMzRSxFQUFFLE9BQU8sRUFBRSxhQUFhLEVBQUUsUUFBUSxFQUFFLG1CQUFtQixFQUFFO0NBQzVELENBQUM7QUFnQ0YsTUFBTSxPQUFPLGdCQUFpQixTQUFRLFVBQVU7SUFFNUMsWUFBc0IsR0FBNEIsRUFBWSx3QkFBa0Q7UUFDNUcsS0FBSyxDQUFDLEdBQUcsRUFBRSx3QkFBd0IsRUFBRSxrQkFBa0IsQ0FBQyxDQUFDO1FBRHZDLFFBQUcsR0FBSCxHQUFHLENBQXlCO1FBQVksNkJBQXdCLEdBQXhCLHdCQUF3QixDQUEwQjtRQUR0RyxzQkFBaUIsR0FBRyxDQUFDLEdBQUcsVUFBVSxDQUFDLENBQUM7SUFHOUMsQ0FBQztJQUNELE1BQU0sQ0FBQyxPQUFPO1FBQ1YsT0FBTztZQUNILFFBQVEsRUFBRSxnQkFBZ0I7WUFDMUIsU0FBUyxFQUFFLENBQUMsR0FBRyxLQUFLLEVBQUUsR0FBRyxhQUFhLENBQUM7U0FDMUMsQ0FBQztJQUNOLENBQUM7OzZHQVZRLGdCQUFnQjs4R0FBaEIsZ0JBQWdCLG04S0ExQnJCLFlBQVk7UUFDWixXQUFXO1FBQ1gsbUJBQW1CO1FBQ25CLHVCQUF1QjtRQUN2QixjQUFjO1FBQ2QsY0FBYztRQUNkLHdCQUF3QjtRQUN4QixXQUFXO1FBQ1gsWUFBWTtRQUNaLFVBQVU7UUFDVixtQkFBbUI7UUFDbkIsaUJBQWlCO1FBQ2pCLGVBQWU7UUFDZixtQkFBbUI7UUFDbkIsdUJBQXVCO1FBQ3ZCLGlCQUFpQjtRQUNqQixlQUFlOzhHQVVWLGdCQUFnQixhQUZkLENBQUMsRUFBRSxPQUFPLEVBQUUsY0FBYyxFQUFFLFFBQVEsRUFBRSxhQUFhLEVBQUUsQ0FBQyxZQXhCN0QsWUFBWTtRQUNaLFdBQVc7UUFDWCxtQkFBbUI7UUFDbkIsdUJBQXVCO1FBQ3ZCLGNBQWM7UUFDZCxjQUFjO1FBQ2Qsd0JBQXdCO1FBQ3hCLFdBQVc7UUFDWCxZQUFZO1FBQ1osVUFBVTtRQUNWLG1CQUFtQjtRQUNuQixpQkFBaUI7UUFDakIsZUFBZTtRQUNmLG1CQUFtQjtRQUNuQix1QkFBdUI7UUFDdkIsaUJBQWlCO1FBQ2pCLGVBQWU7UUFDZixvQkFBb0IsQ0FBQyxPQUFPLENBQUM7WUFDekIsT0FBTyxFQUFFLGNBQWM7WUFDdkIsVUFBVSxFQUFFLG9CQUFvQjtZQUNoQywyQkFBMkIsRUFBRSxrQkFBa0IsQ0FBQyxPQUFPO1NBQzFELENBQUM7MkZBS0csZ0JBQWdCO2tCQTlCNUIsUUFBUTttQkFBQztvQkFDTixZQUFZLEVBQUUsQ0FBQyxHQUFHLFVBQVUsRUFBRSxHQUFHLEtBQUssRUFBRSxHQUFHLFVBQVUsQ0FBQztvQkFDdEQsT0FBTyxFQUFFLENBQUMsZ0JBQWdCLEVBQUUsc0JBQXNCLENBQUM7b0JBQ25ELE9BQU8sRUFBRTt3QkFDTCxZQUFZO3dCQUNaLFdBQVc7d0JBQ1gsbUJBQW1CO3dCQUNuQix1QkFBdUI7d0JBQ3ZCLGNBQWM7d0JBQ2QsY0FBYzt3QkFDZCx3QkFBd0I7d0JBQ3hCLFdBQVc7d0JBQ1gsWUFBWTt3QkFDWixVQUFVO3dCQUNWLG1CQUFtQjt3QkFDbkIsaUJBQWlCO3dCQUNqQixlQUFlO3dCQUNmLG1CQUFtQjt3QkFDbkIsdUJBQXVCO3dCQUN2QixpQkFBaUI7d0JBQ2pCLGVBQWU7d0JBQ2Ysb0JBQW9CLENBQUMsT0FBTyxDQUFDOzRCQUN6QixPQUFPLEVBQUUsY0FBYzs0QkFDdkIsVUFBVSxFQUFFLG9CQUFvQjs0QkFDaEMsMkJBQTJCLEVBQUUsa0JBQWtCLENBQUMsT0FBTzt5QkFDMUQsQ0FBQztxQkFDTDtvQkFDRCxPQUFPLEVBQUUsQ0FBQyxHQUFHLFVBQVUsRUFBRSxHQUFHLFVBQVUsRUFBRSxHQUFHLEtBQUssQ0FBQztvQkFDakQsU0FBUyxFQUFFLENBQUMsRUFBRSxPQUFPLEVBQUUsY0FBYyxFQUFFLFFBQVEsRUFBRSxhQUFhLEVBQUUsQ0FBQztpQkFDcEUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIENvbXBvbmVudEZhY3RvcnlSZXNvbHZlcixcbiAgICBDVVNUT01fRUxFTUVOVFNfU0NIRU1BLFxuICAgIE1vZHVsZVdpdGhQcm92aWRlcnMsXG4gICAgTmdNb2R1bGUsXG4gICAgTk9fRVJST1JTX1NDSEVNQSxcbiAgICBBUFBfSU5JVElBTElaRVJcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3Jtc01vZHVsZSwgUmVhY3RpdmVGb3Jtc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IE92ZXJsYXkgfSBmcm9tICdAYW5ndWxhci9jZGsvb3ZlcmxheSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgRHJhZ0Ryb3BNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jZGsvZHJhZy1kcm9wJztcbmltcG9ydCB7IENka1RhYmxlTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3RhYmxlJztcbmltcG9ydCB7XG4gICAgRnVuZGFtZW50YWxOZ3hDb3JlTW9kdWxlLFxuICAgIFJ0bFNlcnZpY2UsXG4gICAgV2l6YXJkTW9kdWxlLFxuICAgIEZhY2V0TW9kdWxlLFxuICAgIFRoZW1lc1NlcnZpY2UsXG4gICAgRGlhbG9nU2VydmljZSxcbiAgICBDb250ZW50RGVuc2l0eU1vZHVsZSxcbiAgICBDb250ZW50RGVuc2l0eU1vZGUsXG4gICAgR2xvYmFsQ29udGVudERlbnNpdHlTZXJ2aWNlLFxuICAgIFBpcGVNb2R1bGUsXG4gICAgTm90aWZpY2F0aW9uUmVmLFxuICAgIE1lc3NhZ2VUb2FzdFNlcnZpY2Vcbn0gZnJvbSAnQGZ1bmRhbWVudGFsLW5neC9jb3JlJztcblxuaW1wb3J0IHsgUGRmSnNWaWV3ZXJNb2R1bGUgfSBmcm9tICduZzItcGRmanMtdmlld2VyJztcblxuaW1wb3J0IHtcbiAgICBQb3J0YWxTZXJ2aWNlLFxuICAgIER5bmFtaWNDb21wb25lbnRTZXJ2aWNlLFxuICAgIEJhcnNhTm92aW5SYXlDb3JlTW9kdWxlLFxuICAgIEJhc2VNb2R1bGUsXG4gICAgRElBTE9HX1NFUlZJQ0UsXG4gICAgRk9STV9ESUFMT0dfQ09NUE9ORU5ULFxuICAgIE5PVElGSUNBVEFJT05fUE9QVVBfU0VSVkVSLFxuICAgIFRPQVNUX1NFUlZJQ0UsXG4gICAgUmVzaXphYmxlTW9kdWxlXG59IGZyb20gJ2JhcnNhLW5vdmluLXJheS1jb3JlJztcblxuaW1wb3J0IHsgQmFyc2FDYWxlbmRhck1vZHVsZSB9IGZyb20gJ2JhcnNhLWNhbGVuZGFyJztcbmltcG9ydCB7IENvbG9yU3dhdGNoZXNNb2R1bGUgfSBmcm9tICduZ3gtY29sb3Ivc3dhdGNoZXMnO1xuaW1wb3J0IHsgQ29sb3JDaHJvbWVNb2R1bGUgfSBmcm9tICduZ3gtY29sb3IvY2hyb21lJztcbmltcG9ydCB7IENsaXBib2FyZE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9jbGlwYm9hcmQnO1xuXG5pbXBvcnQgeyBjb21wb25lbnRzLCBwaXBlcywgZGlyZWN0aXZlcywgSU5JVF9TQVBGSU9SSSB9IGZyb20gJy4vaW5kZXgnO1xuaW1wb3J0IHsgQmFyc2FTYXBVaVJvdXRpbmdNb2R1bGUgfSBmcm9tICcuL2JhcnNhLXNhcC11aS1yb3V0aW5nLm1vZHVsZSc7XG5pbXBvcnQgeyBGb3JtRGlhbG9nQ29tcG9uZW50IH0gZnJvbSAnLi9mb3JtLWRpYWxvZy9mb3JtLWRpYWxvZy5jb21wb25lbnQnO1xuaW1wb3J0IHsgTm90aWZpY2F0aW9uUG9wdXBTZXJ2aWNlIH0gZnJvbSAnLi9ub3RpZmljYXRpb24tcG9wdXAuc2VydmljZSc7XG5cbmNvbnN0IHJvb3RQcm92aWRlcnMgPSBbXG4gICAgT3ZlcmxheSxcbiAgICBHbG9iYWxDb250ZW50RGVuc2l0eVNlcnZpY2UsXG4gICAgVGhlbWVzU2VydmljZSxcbiAgICBOb3RpZmljYXRpb25SZWYsXG4gICAgUnRsU2VydmljZSxcbiAgICB7XG4gICAgICAgIHByb3ZpZGU6IEFQUF9JTklUSUFMSVpFUixcbiAgICAgICAgdXNlRmFjdG9yeTogSU5JVF9TQVBGSU9SSSxcbiAgICAgICAgZGVwczogW1J0bFNlcnZpY2UsIEdsb2JhbENvbnRlbnREZW5zaXR5U2VydmljZSwgVGhlbWVzU2VydmljZSwgUG9ydGFsU2VydmljZV0sXG4gICAgICAgIG11bHRpOiB0cnVlXG4gICAgfSxcbiAgICB7IHByb3ZpZGU6IEZPUk1fRElBTE9HX0NPTVBPTkVOVCwgdXNlVmFsdWU6IEZvcm1EaWFsb2dDb21wb25lbnQgfSxcbiAgICB7IHByb3ZpZGU6IE5PVElGSUNBVEFJT05fUE9QVVBfU0VSVkVSLCB1c2VDbGFzczogTm90aWZpY2F0aW9uUG9wdXBTZXJ2aWNlIH0sXG4gICAgeyBwcm92aWRlOiBUT0FTVF9TRVJWSUNFLCB1c2VDbGFzczogTWVzc2FnZVRvYXN0U2VydmljZSB9XG5dO1xuXG5ATmdNb2R1bGUoe1xuICAgIGRlY2xhcmF0aW9uczogWy4uLmNvbXBvbmVudHMsIC4uLnBpcGVzLCAuLi5kaXJlY3RpdmVzXSxcbiAgICBzY2hlbWFzOiBbTk9fRVJST1JTX1NDSEVNQSwgQ1VTVE9NX0VMRU1FTlRTX1NDSEVNQV0sXG4gICAgaW1wb3J0czogW1xuICAgICAgICBDb21tb25Nb2R1bGUsXG4gICAgICAgIEZvcm1zTW9kdWxlLFxuICAgICAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxuICAgICAgICBCYXJzYU5vdmluUmF5Q29yZU1vZHVsZSxcbiAgICAgICAgRHJhZ0Ryb3BNb2R1bGUsXG4gICAgICAgIENka1RhYmxlTW9kdWxlLFxuICAgICAgICBGdW5kYW1lbnRhbE5neENvcmVNb2R1bGUsXG4gICAgICAgIEZhY2V0TW9kdWxlLFxuICAgICAgICBXaXphcmRNb2R1bGUsXG4gICAgICAgIFBpcGVNb2R1bGUsXG4gICAgICAgIENvbG9yU3dhdGNoZXNNb2R1bGUsXG4gICAgICAgIENvbG9yQ2hyb21lTW9kdWxlLFxuICAgICAgICBDbGlwYm9hcmRNb2R1bGUsXG4gICAgICAgIEJhcnNhQ2FsZW5kYXJNb2R1bGUsXG4gICAgICAgIEJhcnNhU2FwVWlSb3V0aW5nTW9kdWxlLFxuICAgICAgICBQZGZKc1ZpZXdlck1vZHVsZSxcbiAgICAgICAgUmVzaXphYmxlTW9kdWxlLFxuICAgICAgICBDb250ZW50RGVuc2l0eU1vZHVsZS5mb3JSb290KHtcbiAgICAgICAgICAgIHN0b3JhZ2U6ICdsb2NhbFN0b3JhZ2UnLCAvLyBjYW4gYmUgJ3VybCcgb3IgJ21lbW9yeSdcbiAgICAgICAgICAgIHN0b3JhZ2VLZXk6ICdfX2NvbnRlbnREZW5zaXR5X18nLFxuICAgICAgICAgICAgZGVmYXVsdEdsb2JhbENvbnRlbnREZW5zaXR5OiBDb250ZW50RGVuc2l0eU1vZGUuQ09NUEFDVFxuICAgICAgICB9KVxuICAgIF0sXG4gICAgZXhwb3J0czogWy4uLmNvbXBvbmVudHMsIC4uLmRpcmVjdGl2ZXMsIC4uLnBpcGVzXSxcbiAgICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IERJQUxPR19TRVJWSUNFLCB1c2VDbGFzczogRGlhbG9nU2VydmljZSB9XVxufSlcbmV4cG9ydCBjbGFzcyBCYXJzYVNhcFVpTW9kdWxlIGV4dGVuZHMgQmFzZU1vZHVsZSB7XG4gICAgcHJvdGVjdGVkIGR5bmFtaWNDb21wb25lbnRzID0gWy4uLmNvbXBvbmVudHNdO1xuICAgIGNvbnN0cnVjdG9yKHByb3RlY3RlZCBkY206IER5bmFtaWNDb21wb25lbnRTZXJ2aWNlLCBwcm90ZWN0ZWQgY29tcG9uZW50RmFjdG9yeVJlc29sdmVyOiBDb21wb25lbnRGYWN0b3J5UmVzb2x2ZXIpIHtcbiAgICAgICAgc3VwZXIoZGNtLCBjb21wb25lbnRGYWN0b3J5UmVzb2x2ZXIsICdCYXJzYVNhcFVpTW9kdWxlJyk7XG4gICAgfVxuICAgIHN0YXRpYyBmb3JSb290KCk6IE1vZHVsZVdpdGhQcm92aWRlcnM8QmFyc2FTYXBVaU1vZHVsZT4ge1xuICAgICAgICByZXR1cm4ge1xuICAgICAgICAgICAgbmdNb2R1bGU6IEJhcnNhU2FwVWlNb2R1bGUsXG4gICAgICAgICAgICBwcm92aWRlcnM6IFsuLi5waXBlcywgLi4ucm9vdFByb3ZpZGVyc11cbiAgICAgICAgfTtcbiAgICB9XG59XG4iXX0=
310
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFyc2Etc2FwLXVpLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2JhcnNhLXNhcC11aS9zcmMvbGliL2JhcnNhLXNhcC11aS5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUVILHNCQUFzQixFQUV0QixRQUFRLEVBQ1IsZ0JBQWdCLEVBQ2hCLGVBQWUsRUFDbEIsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLFdBQVcsRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUMvQyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3hELE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUNwRCxPQUFPLEVBQ0gsd0JBQXdCLEVBQ3hCLFVBQVUsRUFDVixZQUFZLEVBQ1osV0FBVyxFQUNYLGFBQWEsRUFDYixhQUFhLEVBQ2Isb0JBQW9CLEVBQ3BCLGtCQUFrQixFQUNsQiwyQkFBMkIsRUFDM0IsVUFBVSxFQUNWLGVBQWUsRUFDZixtQkFBbUIsRUFDdEIsTUFBTSx1QkFBdUIsQ0FBQztBQUUvQixPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUVyRCxPQUFPLEVBQ0gsYUFBYSxFQUViLHVCQUF1QixFQUN2QixVQUFVLEVBQ1YsY0FBYyxFQUNkLHFCQUFxQixFQUNyQiwwQkFBMEIsRUFDMUIsYUFBYSxFQUNiLGVBQWUsRUFDbEIsTUFBTSxzQkFBc0IsQ0FBQztBQUU5QixPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUN6RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFFekQsT0FBTyxFQUFFLFVBQVUsRUFBRSxLQUFLLEVBQUUsVUFBVSxFQUFFLGFBQWEsRUFBRSxNQUFNLFNBQVMsQ0FBQztBQUN2RSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUN4RSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQUMxRSxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUV4RSxNQUFNLGFBQWEsR0FBRztJQUNsQixPQUFPO0lBQ1AsMkJBQTJCO0lBQzNCLGFBQWE7SUFDYixlQUFlO0lBQ2YsVUFBVTtJQUNWO1FBQ0ksT0FBTyxFQUFFLGVBQWU7UUFDeEIsVUFBVSxFQUFFLGFBQWE7UUFDekIsSUFBSSxFQUFFLENBQUMsVUFBVSxFQUFFLDJCQUEyQixFQUFFLGFBQWEsRUFBRSxhQUFhLENBQUM7UUFDN0UsS0FBSyxFQUFFLElBQUk7S0FDZDtJQUNELEVBQUUsT0FBTyxFQUFFLHFCQUFxQixFQUFFLFFBQVEsRUFBRSxtQkFBbUIsRUFBRTtJQUNqRSxFQUFFLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxRQUFRLEVBQUUsd0JBQXdCLEVBQUU7SUFDM0UsRUFBRSxPQUFPLEVBQUUsYUFBYSxFQUFFLFFBQVEsRUFBRSxtQkFBbUIsRUFBRTtDQUM1RCxDQUFDO0FBZ0NGLE1BQU0sT0FBTyxnQkFBaUIsU0FBUSxVQUFVO0lBRTVDLFlBQXNCLEdBQTRCLEVBQVksd0JBQWtEO1FBQzVHLEtBQUssQ0FBQyxHQUFHLEVBQUUsd0JBQXdCLEVBQUUsa0JBQWtCLENBQUMsQ0FBQztRQUR2QyxRQUFHLEdBQUgsR0FBRyxDQUF5QjtRQUFZLDZCQUF3QixHQUF4Qix3QkFBd0IsQ0FBMEI7UUFEdEcsc0JBQWlCLEdBQUcsQ0FBQyxHQUFHLFVBQVUsQ0FBQyxDQUFDO0lBRzlDLENBQUM7SUFDRCxNQUFNLENBQUMsT0FBTztRQUNWLE9BQU87WUFDSCxRQUFRLEVBQUUsZ0JBQWdCO1lBQzFCLFNBQVMsRUFBRSxDQUFDLEdBQUcsS0FBSyxFQUFFLEdBQUcsYUFBYSxDQUFDO1NBQzFDLENBQUM7SUFDTixDQUFDOzs2R0FWUSxnQkFBZ0I7OEdBQWhCLGdCQUFnQix5a0xBMUJyQixZQUFZO1FBQ1osV0FBVztRQUNYLG1CQUFtQjtRQUNuQix1QkFBdUI7UUFDdkIsY0FBYztRQUNkLGNBQWM7UUFDZCx3QkFBd0I7UUFDeEIsV0FBVztRQUNYLFlBQVk7UUFDWixVQUFVO1FBQ1YsbUJBQW1CO1FBQ25CLGlCQUFpQjtRQUNqQixlQUFlO1FBQ2YsbUJBQW1CO1FBQ25CLHVCQUF1QjtRQUN2QixpQkFBaUI7UUFDakIsZUFBZTs4R0FVVixnQkFBZ0IsYUFGZCxDQUFDLEVBQUUsT0FBTyxFQUFFLGNBQWMsRUFBRSxRQUFRLEVBQUUsYUFBYSxFQUFFLENBQUMsWUF4QjdELFlBQVk7UUFDWixXQUFXO1FBQ1gsbUJBQW1CO1FBQ25CLHVCQUF1QjtRQUN2QixjQUFjO1FBQ2QsY0FBYztRQUNkLHdCQUF3QjtRQUN4QixXQUFXO1FBQ1gsWUFBWTtRQUNaLFVBQVU7UUFDVixtQkFBbUI7UUFDbkIsaUJBQWlCO1FBQ2pCLGVBQWU7UUFDZixtQkFBbUI7UUFDbkIsdUJBQXVCO1FBQ3ZCLGlCQUFpQjtRQUNqQixlQUFlO1FBQ2Ysb0JBQW9CLENBQUMsT0FBTyxDQUFDO1lBQ3pCLE9BQU8sRUFBRSxjQUFjO1lBQ3ZCLFVBQVUsRUFBRSxvQkFBb0I7WUFDaEMsMkJBQTJCLEVBQUUsa0JBQWtCLENBQUMsT0FBTztTQUMxRCxDQUFDOzJGQUtHLGdCQUFnQjtrQkE5QjVCLFFBQVE7bUJBQUM7b0JBQ04sWUFBWSxFQUFFLENBQUMsR0FBRyxVQUFVLEVBQUUsR0FBRyxLQUFLLEVBQUUsR0FBRyxVQUFVLENBQUM7b0JBQ3RELE9BQU8sRUFBRSxDQUFDLGdCQUFnQixFQUFFLHNCQUFzQixDQUFDO29CQUNuRCxPQUFPLEVBQUU7d0JBQ0wsWUFBWTt3QkFDWixXQUFXO3dCQUNYLG1CQUFtQjt3QkFDbkIsdUJBQXVCO3dCQUN2QixjQUFjO3dCQUNkLGNBQWM7d0JBQ2Qsd0JBQXdCO3dCQUN4QixXQUFXO3dCQUNYLFlBQVk7d0JBQ1osVUFBVTt3QkFDVixtQkFBbUI7d0JBQ25CLGlCQUFpQjt3QkFDakIsZUFBZTt3QkFDZixtQkFBbUI7d0JBQ25CLHVCQUF1Qjt3QkFDdkIsaUJBQWlCO3dCQUNqQixlQUFlO3dCQUNmLG9CQUFvQixDQUFDLE9BQU8sQ0FBQzs0QkFDekIsT0FBTyxFQUFFLGNBQWM7NEJBQ3ZCLFVBQVUsRUFBRSxvQkFBb0I7NEJBQ2hDLDJCQUEyQixFQUFFLGtCQUFrQixDQUFDLE9BQU87eUJBQzFELENBQUM7cUJBQ0w7b0JBQ0QsT0FBTyxFQUFFLENBQUMsR0FBRyxVQUFVLEVBQUUsR0FBRyxVQUFVLEVBQUUsR0FBRyxLQUFLLENBQUM7b0JBQ2pELFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLGNBQWMsRUFBRSxRQUFRLEVBQUUsYUFBYSxFQUFFLENBQUM7aUJBQ3BFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgICBDb21wb25lbnRGYWN0b3J5UmVzb2x2ZXIsXG4gICAgQ1VTVE9NX0VMRU1FTlRTX1NDSEVNQSxcbiAgICBNb2R1bGVXaXRoUHJvdmlkZXJzLFxuICAgIE5nTW9kdWxlLFxuICAgIE5PX0VSUk9SU19TQ0hFTUEsXG4gICAgQVBQX0lOSVRJQUxJWkVSXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybXNNb2R1bGUsIFJlYWN0aXZlRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBPdmVybGF5IH0gZnJvbSAnQGFuZ3VsYXIvY2RrL292ZXJsYXknO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IERyYWdEcm9wTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL2RyYWctZHJvcCc7XG5pbXBvcnQgeyBDZGtUYWJsZU1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay90YWJsZSc7XG5pbXBvcnQge1xuICAgIEZ1bmRhbWVudGFsTmd4Q29yZU1vZHVsZSxcbiAgICBSdGxTZXJ2aWNlLFxuICAgIFdpemFyZE1vZHVsZSxcbiAgICBGYWNldE1vZHVsZSxcbiAgICBUaGVtZXNTZXJ2aWNlLFxuICAgIERpYWxvZ1NlcnZpY2UsXG4gICAgQ29udGVudERlbnNpdHlNb2R1bGUsXG4gICAgQ29udGVudERlbnNpdHlNb2RlLFxuICAgIEdsb2JhbENvbnRlbnREZW5zaXR5U2VydmljZSxcbiAgICBQaXBlTW9kdWxlLFxuICAgIE5vdGlmaWNhdGlvblJlZixcbiAgICBNZXNzYWdlVG9hc3RTZXJ2aWNlXG59IGZyb20gJ0BmdW5kYW1lbnRhbC1uZ3gvY29yZSc7XG5cbmltcG9ydCB7IFBkZkpzVmlld2VyTW9kdWxlIH0gZnJvbSAnbmcyLXBkZmpzLXZpZXdlcic7XG5cbmltcG9ydCB7XG4gICAgUG9ydGFsU2VydmljZSxcbiAgICBEeW5hbWljQ29tcG9uZW50U2VydmljZSxcbiAgICBCYXJzYU5vdmluUmF5Q29yZU1vZHVsZSxcbiAgICBCYXNlTW9kdWxlLFxuICAgIERJQUxPR19TRVJWSUNFLFxuICAgIEZPUk1fRElBTE9HX0NPTVBPTkVOVCxcbiAgICBOT1RJRklDQVRBSU9OX1BPUFVQX1NFUlZFUixcbiAgICBUT0FTVF9TRVJWSUNFLFxuICAgIFJlc2l6YWJsZU1vZHVsZVxufSBmcm9tICdiYXJzYS1ub3Zpbi1yYXktY29yZSc7XG5cbmltcG9ydCB7IEJhcnNhQ2FsZW5kYXJNb2R1bGUgfSBmcm9tICdiYXJzYS1jYWxlbmRhcic7XG5pbXBvcnQgeyBDb2xvclN3YXRjaGVzTW9kdWxlIH0gZnJvbSAnbmd4LWNvbG9yL3N3YXRjaGVzJztcbmltcG9ydCB7IENvbG9yQ2hyb21lTW9kdWxlIH0gZnJvbSAnbmd4LWNvbG9yL2Nocm9tZSc7XG5pbXBvcnQgeyBDbGlwYm9hcmRNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jZGsvY2xpcGJvYXJkJztcblxuaW1wb3J0IHsgY29tcG9uZW50cywgcGlwZXMsIGRpcmVjdGl2ZXMsIElOSVRfU0FQRklPUkkgfSBmcm9tICcuL2luZGV4JztcbmltcG9ydCB7IEJhcnNhU2FwVWlSb3V0aW5nTW9kdWxlIH0gZnJvbSAnLi9iYXJzYS1zYXAtdWktcm91dGluZy5tb2R1bGUnO1xuaW1wb3J0IHsgRm9ybURpYWxvZ0NvbXBvbmVudCB9IGZyb20gJy4vZm9ybS1kaWFsb2cvZm9ybS1kaWFsb2cuY29tcG9uZW50JztcbmltcG9ydCB7IE5vdGlmaWNhdGlvblBvcHVwU2VydmljZSB9IGZyb20gJy4vbm90aWZpY2F0aW9uLXBvcHVwLnNlcnZpY2UnO1xuXG5jb25zdCByb290UHJvdmlkZXJzID0gW1xuICAgIE92ZXJsYXksXG4gICAgR2xvYmFsQ29udGVudERlbnNpdHlTZXJ2aWNlLFxuICAgIFRoZW1lc1NlcnZpY2UsXG4gICAgTm90aWZpY2F0aW9uUmVmLFxuICAgIFJ0bFNlcnZpY2UsXG4gICAge1xuICAgICAgICBwcm92aWRlOiBBUFBfSU5JVElBTElaRVIsXG4gICAgICAgIHVzZUZhY3Rvcnk6IElOSVRfU0FQRklPUkksXG4gICAgICAgIGRlcHM6IFtSdGxTZXJ2aWNlLCBHbG9iYWxDb250ZW50RGVuc2l0eVNlcnZpY2UsIFRoZW1lc1NlcnZpY2UsIFBvcnRhbFNlcnZpY2VdLFxuICAgICAgICBtdWx0aTogdHJ1ZVxuICAgIH0sXG4gICAgeyBwcm92aWRlOiBGT1JNX0RJQUxPR19DT01QT05FTlQsIHVzZVZhbHVlOiBGb3JtRGlhbG9nQ29tcG9uZW50IH0sXG4gICAgeyBwcm92aWRlOiBOT1RJRklDQVRBSU9OX1BPUFVQX1NFUlZFUiwgdXNlQ2xhc3M6IE5vdGlmaWNhdGlvblBvcHVwU2VydmljZSB9LFxuICAgIHsgcHJvdmlkZTogVE9BU1RfU0VSVklDRSwgdXNlQ2xhc3M6IE1lc3NhZ2VUb2FzdFNlcnZpY2UgfVxuXTtcblxuQE5nTW9kdWxlKHtcbiAgICBkZWNsYXJhdGlvbnM6IFsuLi5jb21wb25lbnRzLCAuLi5waXBlcywgLi4uZGlyZWN0aXZlc10sXG4gICAgc2NoZW1hczogW05PX0VSUk9SU19TQ0hFTUEsIENVU1RPTV9FTEVNRU5UU19TQ0hFTUFdLFxuICAgIGltcG9ydHM6IFtcbiAgICAgICAgQ29tbW9uTW9kdWxlLFxuICAgICAgICBGb3Jtc01vZHVsZSxcbiAgICAgICAgUmVhY3RpdmVGb3Jtc01vZHVsZSxcbiAgICAgICAgQmFyc2FOb3ZpblJheUNvcmVNb2R1bGUsXG4gICAgICAgIERyYWdEcm9wTW9kdWxlLFxuICAgICAgICBDZGtUYWJsZU1vZHVsZSxcbiAgICAgICAgRnVuZGFtZW50YWxOZ3hDb3JlTW9kdWxlLFxuICAgICAgICBGYWNldE1vZHVsZSxcbiAgICAgICAgV2l6YXJkTW9kdWxlLFxuICAgICAgICBQaXBlTW9kdWxlLFxuICAgICAgICBDb2xvclN3YXRjaGVzTW9kdWxlLFxuICAgICAgICBDb2xvckNocm9tZU1vZHVsZSxcbiAgICAgICAgQ2xpcGJvYXJkTW9kdWxlLFxuICAgICAgICBCYXJzYUNhbGVuZGFyTW9kdWxlLFxuICAgICAgICBCYXJzYVNhcFVpUm91dGluZ01vZHVsZSxcbiAgICAgICAgUGRmSnNWaWV3ZXJNb2R1bGUsXG4gICAgICAgIFJlc2l6YWJsZU1vZHVsZSxcbiAgICAgICAgQ29udGVudERlbnNpdHlNb2R1bGUuZm9yUm9vdCh7XG4gICAgICAgICAgICBzdG9yYWdlOiAnbG9jYWxTdG9yYWdlJywgLy8gY2FuIGJlICd1cmwnIG9yICdtZW1vcnknXG4gICAgICAgICAgICBzdG9yYWdlS2V5OiAnX19jb250ZW50RGVuc2l0eV9fJyxcbiAgICAgICAgICAgIGRlZmF1bHRHbG9iYWxDb250ZW50RGVuc2l0eTogQ29udGVudERlbnNpdHlNb2RlLkNPTVBBQ1RcbiAgICAgICAgfSlcbiAgICBdLFxuICAgIGV4cG9ydHM6IFsuLi5jb21wb25lbnRzLCAuLi5kaXJlY3RpdmVzLCAuLi5waXBlc10sXG4gICAgcHJvdmlkZXJzOiBbeyBwcm92aWRlOiBESUFMT0dfU0VSVklDRSwgdXNlQ2xhc3M6IERpYWxvZ1NlcnZpY2UgfV1cbn0pXG5leHBvcnQgY2xhc3MgQmFyc2FTYXBVaU1vZHVsZSBleHRlbmRzIEJhc2VNb2R1bGUge1xuICAgIHByb3RlY3RlZCBkeW5hbWljQ29tcG9uZW50cyA9IFsuLi5jb21wb25lbnRzXTtcbiAgICBjb25zdHJ1Y3Rvcihwcm90ZWN0ZWQgZGNtOiBEeW5hbWljQ29tcG9uZW50U2VydmljZSwgcHJvdGVjdGVkIGNvbXBvbmVudEZhY3RvcnlSZXNvbHZlcjogQ29tcG9uZW50RmFjdG9yeVJlc29sdmVyKSB7XG4gICAgICAgIHN1cGVyKGRjbSwgY29tcG9uZW50RmFjdG9yeVJlc29sdmVyLCAnQmFyc2FTYXBVaU1vZHVsZScpO1xuICAgIH1cbiAgICBzdGF0aWMgZm9yUm9vdCgpOiBNb2R1bGVXaXRoUHJvdmlkZXJzPEJhcnNhU2FwVWlNb2R1bGU+IHtcbiAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICAgIG5nTW9kdWxlOiBCYXJzYVNhcFVpTW9kdWxlLFxuICAgICAgICAgICAgcHJvdmlkZXJzOiBbLi4ucGlwZXMsIC4uLnJvb3RQcm92aWRlcnNdXG4gICAgICAgIH07XG4gICAgfVxufVxuIl19
@@ -37,7 +37,7 @@ export class BarsaTableRowComponent extends BaseViewItemPropsComponent {
37
37
  }
38
38
  }
39
39
  BarsaTableRowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaTableRowComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
40
- BarsaTableRowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: BarsaTableRowComponent, selector: "bsu-barsa-table-row", inputs: { showDetailsInRow: "showDetailsInRow", detailsComponent: "detailsComponent", detailsColumns: "detailsColumns", detailsText: "detailsText", columnComponents: "columnComponents" }, providers: [FormPanelService], viewQueries: [{ propertyName: "detailsFormItems", first: true, predicate: ["detailsFormItems"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<tr\n [class.row-error]=\"hasError\"\n [class.showdetails-on]=\"!detailsCollapsed\"\n #trEl\n *ngIf=\"(!mo.$Parent || parentExpanded) && visibility !== false\"\n fd-table-row\n [activable]=\"false\"\n [hoverable]=\"false\"\n [applyConditionalFormats]=\"conditionalFormats\"\n [styleIndex]=\"styleIndex\"\n [hostEl]=\"trEl\"\n [main]=\"true\"\n [focusable]=\"true\"\n [attr.aria-selected]=\"isChecked\"\n [focusable]=\"!inlineEditMode || !allowInlineEdit\"\n [class.brule-message]=\"bruleActionMessage || workflowState?.errorText\"\n [class.workflow-pending]=\"workflowState?.state === 'Pending'\"\n>\n <ng-container *ngIf=\"mo.$Group || mo.$Group === ''; else renderRow\">\n <td\n [style.padding-right]=\"rtl ? 'calc( 1rem + ' + level * 12 + 'px' + ' )' : 'inherit'\"\n [style.padding-left]=\"!rtl ? 'calc( 1rem + ' + level * 12 + 'px' + ' )' : 'inherit'\"\n fd-table-cell\n style=\"font-weight: bold; font-size: 1rem\"\n [attr.colspan]=\"\n columns.length +\n 1 +\n (rowIndicator ? -1 : 0) +\n (contextMenuItems && contextMenuItems.length > 0 && !inlineEditMode ? 1 : 0) +\n (showViewButton ? 1 : 0) +\n (showDetailsInRow && !inlineEditMode ? 1 : 0)\n \"\n class=\"row-group\"\n [class.mobile-mode]=\"secondaryColumns?.length\"\n [attr.level]=\"level\"\n [class.root-group]=\"level === 0\"\n >\n <button\n fd-button\n [fdType]=\"'transparent'\"\n [glyph]=\"expanded !== false ? 'navigation-down-arrow' : 'navigation-left-arrow'\"\n class=\"cell-expand\"\n (click)=\"onExpandClick()\"\n ></button>\n {{ mo.$Group }}\n </td>\n </ng-container>\n <ng-template #renderRow>\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n <td fd-table-cell *ngIf=\"isCheckList\">\n <div\n *ngIf=\"workflowState?.state === 'Pending'\"\n style=\"position: absolute; left: 0; right: 0; bottom: 0; top: 0\"\n >\n <bsu-mask [top]=\"'20px'\" [size]=\"'s'\"></bsu-mask>\n </div>\n\n <fd-checkbox [name]=\"mo.$Caption\" [ngModel]=\"isChecked\" (ngModelChange)=\"onRowCheck()\"></fd-checkbox>\n </td>\n <td\n fd-table-cell\n class=\"single-select\"\n *ngIf=\"!isCheckList\"\n (click)=\"onRowCheck()\"\n style=\"padding: 0; text-align: center\"\n >\n <ng-container\n *ngIf=\"inlineEditMode && allowInlineEdit && (hasError || saving || saved); else iconStateTemplate\"\n >\n <fd-icon *ngIf=\"hasError\" class=\"save-error\" glyph=\"error\"></fd-icon>\n <fd-busy-indicator\n *ngIf=\"saving\"\n [loading]=\"true\"\n [size]=\"'s'\"\n title=\"record saving\"\n ></fd-busy-indicator>\n <fd-icon *ngIf=\"saved\" class=\"save-success\" glyph=\"accept\"></fd-icon>\n </ng-container>\n <ng-template #iconStateTemplate>\n <fd-icon *ngIf=\"mo.$State === 'New' && !isChecked\" glyph=\"favorite\"></fd-icon>\n <fd-icon *ngIf=\"inlineEditMode && allowInlineEdit && isChecked\" glyph=\"edit\"></fd-icon>\n </ng-template>\n </td>\n <ng-container *ngFor=\"let column of columns; let columnIndex = index\">\n <td\n *ngIf=\"(rowIndicator && columnIndex > 0) || !rowIndicator\"\n [attr.dbName]=\"column.Name\"\n #tdEl\n fd-table-cell\n [applyConditionalFormats]=\"conditionalFormats\"\n [hostEl]=\"tdEl\"\n [styleIndex]=\"styleIndex\"\n [dbName]=\"column.Name\"\n [focusable]=\"false\"\n (click)=\"onRowCheck()\"\n (dblclick)=\"onRowClick()\"\n [hoverable]=\"inlineEditMode && allowInlineEdit\"\n >\n <ng-container\n *ngTemplateOutlet=\"\n columnTemplate;\n context: {\n $implicit: column,\n mo: mo,\n index: columnIndex,\n inlineEditMode: inlineEditMode,\n layout94: layout$ | async\n }\n \"\n ></ng-container>\n </td>\n </ng-container>\n <td\n class=\"col-context-menu\"\n *ngIf=\"contextMenuItems?.length && (!inlineEditMode || !allowInlineEdit)\"\n fd-table-cell\n >\n <bsu-ulv-context-menu\n [disableOverflowContextMenu]=\"disableOverflowContextMenu\"\n [conditionalFormats]=\"conditionalFormats\"\n [styleIndex]=\"styleIndex\"\n [mo]=\"mo\"\n [index]=\"index\"\n (commandClick)=\"onUlvCommand()\"\n [deviceName]=\"deviceName\"\n [menuItems]=\"contextMenuItems\"\n [allColumns]=\"allColumns\"\n ></bsu-ulv-context-menu>\n </td>\n <td\n class=\"col-details\"\n fd-table-cell\n [fitContent]=\"true\"\n *ngIf=\"showDetailsInRow && (!inlineEditMode || !allowInlineEdit)\"\n >\n <button\n *ngIf=\"detailsComponent?.Selector || cartableParams?.moId\"\n fd-button\n [label]=\"(detailsCollapsed ? detailsText : 'Hide') | bbbTranslate\"\n [fdType]=\"'transparent'\"\n (click)=\"onRowDetails()\"\n ></button>\n </td>\n <td\n class=\"col-view\"\n fd-table-cell\n [fitContent]=\"true\"\n *ngIf=\"!hideOpenIcon && canView && (!inlineEditMode || !allowInlineEdit)\"\n >\n <button\n fd-button\n [glyph]=\"navigationArrow\"\n [navigation]=\"true\"\n [fdType]=\"'transparent'\"\n role=\"presentation\"\n (click)=\"onRowClick()\"\n ></button>\n </td>\n </ng-template>\n</tr>\n\n<tr\n #trEl\n *ngIf=\"secondaryColumns?.length && !mo.$Group && (!mo.$Parent || parentExpanded) && visibility !== false\"\n fd-table-row\n [secondary]=\"true\"\n class=\"secondary-row\"\n [class.no-edit-mode]=\"!inlineEditMode\"\n [applyConditionalFormats]=\"conditionalFormats\"\n [styleIndex]=\"styleIndex\"\n [hostEl]=\"trEl\"\n [attr.aria-selected]=\"isChecked && !inlineEditMode ? true : false\"\n>\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n\n <td fd-table-cell class=\"single-select\" *ngIf=\"!isCheckList\" (click)=\"onRowCheck()\"></td>\n <td fd-table-cell colspan=\"100%\" (click)=\"onRowCheck()\">\n <p\n #pEl\n fd-table-text\n *ngFor=\"let column of secondaryColumns; let columnIndex = index; trackBy: _trackByColumn\"\n [applyConditionalFormats]=\"conditionalFormats\"\n [hostEl]=\"pEl\"\n [styleIndex]=\"styleIndex\"\n [dbName]=\"column.Name\"\n >\n <label fd-form-label>{{ column.Caption }} :</label>\n <ng-container\n *ngTemplateOutlet=\"\n columnTemplate;\n context: {\n $implicit: column,\n mo: mo,\n index: columnIndex,\n inlineEditMode: inlineEditMode,\n layout94: layout$ | async\n }\n \"\n ></ng-container>\n </p>\n </td>\n</tr>\n<tr *ngIf=\"!detailsCollapsed && cartableParams?.moId\" fd-table-row class=\"showdetails\" [attr.aria-selected]=\"isChecked\">\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n <td\n (click)=\"onRowCheck()\"\n fd-table-cell\n [attr.colspan]=\"\n columns.length +\n 1 +\n (rowIndicator ? -1 : 0) +\n (contextMenuItems.length ? 1 : 0) +\n (canView ? 1 : 0) +\n (showDetailsInRow ? 1 : 0)\n \"\n >\n <ng-container>\n <bnrc-form\n (click)=\"OnCartableFormClick($event)\"\n class=\"cartable-template\"\n [params]=\"cartableParams\"\n (formClose)=\"onCartableFormClosed()\"\n ></bnrc-form>\n </ng-container>\n </td>\n</tr>\n<tr\n *ngIf=\"!detailsCollapsed && detailsComponent?.Selector\"\n fd-table-row\n class=\"showdetails\"\n [attr.aria-selected]=\"isChecked\"\n>\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n\n <td\n (click)=\"onRowCheck()\"\n fd-table-cell\n [attr.colspan]=\"\n columns.length +\n 1 +\n (rowIndicator ? -1 : 0) +\n (contextMenuItems && contextMenuItems.length > 0 && !inlineEditMode ? 1 : 0) +\n (showViewButton ? 1 : 0) +\n (showDetailsInRow && !inlineEditMode ? 1 : 0)\n \"\n >\n <ng-container *ngTemplateOutlet=\"detailsColumnsTemplate\"></ng-container>\n <ng-container *ngIf=\"detailsComponent && detailsComponent.Selector\">\n <bnrc-dynamic-item-component\n [component]=\"detailsComponent\"\n [mo]=\"mo\"\n [isChecked]=\"isChecked\"\n [UlvMainCtrlr]=\"UlvMainCtrlr\"\n [setting]=\"detailsComponentSetting\"\n [parameters]=\"detailsComponent.Settings\"\n [editMode]=\"inlineEditMode\"\n [formSetting]=\"formSetting\"\n [rtl]=\"rtl\"\n [deviceName]=\"deviceName\"\n [deviceSize]=\"deviceSize\"\n [index]=\"index\"\n [allColumns]=\"allColumns\"\n [typeDefId]=\"typeDefId\"\n ></bnrc-dynamic-item-component>\n </ng-container>\n </td>\n</tr>\n<ng-template #detailsColumnsTemplate>\n <ng-container\n *ngTemplateOutlet=\"\n detailsFormItems;\n context: {\n $implicit: detailsColumns,\n mo: mo,\n inlineEditMode: inlineEditMode,\n layout94: layout$\n }\n \"\n ></ng-container>\n</ng-template>\n<ng-template #detailsFormItems let-detailsColumns let-mo=\"mo\" let-inlineEditMode=\"inlineEditMode\" let-layout$=\"layout$\">\n <div class=\"form-items\">\n <div fd-form-item *ngFor=\"let column of detailsColumns; let columnIndex = index\">\n <label fd-form-label for=\"input-2\">{{ column.Caption }}</label>\n <ng-container\n *ngTemplateOutlet=\"\n columnTemplate;\n context: {\n $implicit: column,\n mo: mo,\n index: columnIndex,\n inlineEditMode: inlineEditMode,\n layout94: layout$ | async\n }\n \"\n ></ng-container>\n </div>\n </div>\n</ng-template>\n<tr *ngIf=\"bruleActionMessage && inlineEditMode\" fd-table-row>\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n <td\n fd-table-cell\n [attr.colspan]=\"\n columns.length +\n 1 +\n (rowIndicator ? -1 : 0) +\n (contextMenuItems && contextMenuItems.length > 0 && !inlineEditMode ? 1 : 0) +\n (showViewButton ? 1 : 0) +\n (showDetailsInRow && !inlineEditMode ? 1 : 0)\n \"\n >\n <fd-message-strip\n *ngIf=\"bruleActionMessage.MessageType === 2\"\n [type]=\"bruleActionMessage.MessageType === 2 ? 'error' : 'information'\"\n [dismissible]=\"false\"\n >\n {{ bruleActionMessage.MessageExpression }}\n </fd-message-strip>\n </td>\n</tr>\n<tr *ngIf=\"workflowState?.errorText\" fd-table-row>\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n <td\n fd-table-cell\n [attr.colspan]=\"\n columns.length +\n 1 +\n (rowIndicator ? -1 : 0) +\n (contextMenuItems && contextMenuItems.length > 0 && !inlineEditMode ? 1 : 0) +\n (showViewButton ? 1 : 0) +\n (showDetailsInRow && !inlineEditMode ? 1 : 0)\n \"\n >\n <fd-message-strip type=\"error\" [dismissible]=\"true\" (onDismiss)=\"resetWorkflowState.emit()\">\n {{ workflowState.errorText }}\n </fd-message-strip>\n </td>\n</tr>\n<ng-template\n #columnTemplate\n let-column\n let-mo=\"mo\"\n let-index=\"index\"\n let-inlineEditMode=\"inlineEditMode\"\n let-layout94=\"layout94\"\n>\n <bsu-barsa-table-column\n [mo]=\"mo\"\n [column]=\"column\"\n [value]=\"column | columnValue: mo\"\n [icon]=\"column | columnIcon: mo\"\n [customComponent]=\"column.$CustomComponent\"\n [column]=\"column\"\n [editMode]=\"isChecked && inlineEditMode && allowInlineEdit\"\n [inlineEditMode]=\"inlineEditMode\"\n [isChecked]=\"isChecked\"\n [index]=\"index\"\n [formSetting]=\"formSetting\"\n [rtl]=\"rtl\"\n [deviceName]=\"deviceName\"\n [deviceSize]=\"deviceSize\"\n [layout94]=\"layout94\"\n (save)=\"onEditFormPanelSave(null)\"\n (cancel)=\"onEditFormPanelCancel(null)\"\n (tab)=\"onTabKeyDown($event, index)\"\n (changeToEditMode)=\"onColumnChangeToEditMode($event, index)\"\n >\n </bsu-barsa-table-column>\n</ng-template>\n<ng-template #statusIndicator>\n <bsu-barsa-column-indicator\n [hideBorderBottom]=\"!detailsCollapsed\"\n *ngIf=\"rowIndicator\"\n [backColor]=\"rowIndicatorColor\"\n >\n </bsu-barsa-column-indicator>\n</ng-template>\n", styles: [":host{display:contents;width:100%}:host ::ng-deep .row-group.mobile-mode{border-bottom:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)!important}:host ::ng-deep .inlineEditMode bnrc-field-ui{padding:0;margin:0}:host ::ng-deep .inlineEditMode bsu-ui-simple-combo{margin:0!important}bsu-layout-control:not(.hide-form-item){align-items:center;height:100%;min-width:auto;width:auto}td{vertical-align:middle}tr.brule-message td{border:0}.row-group{background-color:var(--sapBackgroundColor, \"#f7f7ff\")}.cell-expand{cursor:pointer;display:inline-flex;justify-content:center;align-items:center;font-size:.75rem;color:#0854a0;color:var(--sapContent_IconColor, #0854a0);min-width:2rem;max-width:2rem}.save-error{color:var(--sapField_InvalidColor)}.save-success{color:var(--sapField_SuccessColor)}.flow{max-width:100%}.flow-item{display:flex}.flow-item fd-micro-process-flow-icon{width:1.375rem;height:1.375rem}.flow-item h5{padding-right:.3rem}.cartable-template{padding:.5rem 0}.workflow-pending{opacity:.5;pointer-events:none;position:relative}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3.FormComponent, selector: "bnrc-form", inputs: ["params", "customFormPanelUi", "formPanelCtrl", "UlvMainCtrlr", "formPanelCtrlId"], outputs: ["titleChanged", "moChanged", "formClose", "formRendered"] }, { kind: "component", type: i3.DynamicItemComponent, selector: "bnrc-dynamic-item-component", inputs: ["mo", "allColumns", "moDataList", "columns", "column", "index", "last", "deviceName", "deviceSize", "rtl", "editMode", "setting", "parameters", "contextMenuItems", "canView", "formSetting", "conditionalFormats", "disableOverflowContextMenu", "navigationArrow", "isCheckList", "fields", "isChecked", "layout94$", "inlineEditMode", "isNewInlineMo", "allowInlineEdit", "typeDefId", "rowIndicator", "rowIndicatorColor", "UlvMainCtrlr"] }, { kind: "directive", type: i3.FormCloseDirective, selector: "[formClose]", inputs: ["isMobile"] }, { kind: "component", type: i4.BusyIndicatorComponent, selector: "fd-busy-indicator", inputs: ["loading", "size", "block", "ariaLabel", "title", "label", "ariaLive"] }, { kind: "component", type: i5.ButtonComponent, selector: "button[fd-button], a[fd-button]", inputs: ["class"], exportAs: ["fd-button"] }, { kind: "component", type: i6.CheckboxComponent, selector: "fd-checkbox", inputs: ["ariaLabel", "value", "ariaLabelledBy", "ariaDescribedBy", "title", "inputId", "state", "name", "label", "disabled", "tristate", "tristateSelectable", "labelClass", "required", "values"], outputs: ["focusChange"] }, { kind: "component", type: i7.FormItemComponent, selector: "[fd-form-item]", inputs: ["isInline", "horizontal"] }, { kind: "component", type: i7.FormLabelComponent, selector: "[fd-form-label]", inputs: ["required", "colon", "checkbox", "radio", "alignLabelEnd", "inlineHelpTitle", "inlineHelpGlyph", "inlineHelpTriggers", "inlineHelpBodyPlacement", "inlineHelpPlacement", "id"] }, { kind: "component", type: i8.IconComponent, selector: "fd-icon", inputs: ["glyph", "font", "class", "ariaLabel"] }, { kind: "component", type: i9.MessageStripComponent, selector: "fd-message-strip", inputs: ["class", "dismissible", "noIcon", "type", "id", "ariaLabelledBy", "ariaLabel", "dismissLabel", "width", "minWidth", "marginBottom"], outputs: ["onDismiss"] }, { kind: "directive", type: i10.TableRowDirective, selector: "[fdTableRow], [fd-table-row]", inputs: ["activable", "highlightActive", "hoverable", "focusable", "main", "secondary", "active"] }, { kind: "directive", type: i10.TableCellDirective, selector: "[fdTableCell], [fd-table-cell]", inputs: ["noBorderX", "noBorderY", "activable", "focusable", "tabindex", "hoverable", "fitContent", "noPadding", "noData", "key", "cellFocusedEventAnnouncer"] }, { kind: "directive", type: i10.TableTextDirective, selector: "[fdTableText], [fd-table-text]", inputs: ["fdTableTextClass", "noWrap", "title", "maxWidth"] }, { kind: "component", type: i11.MaskComponent, selector: "bsu-mask", inputs: ["size", "top"] }, { kind: "component", type: i12.UlvContextMenuComponent, selector: "bsu-ulv-context-menu,[ulvContextMenu]", inputs: ["onlyOverflow", "deviceName", "menuItems", "allColumns", "index", "mo", "styleIndex", "conditionalFormats", "disableOverflowContextMenu", "footerMode"], outputs: ["commandClick"] }, { kind: "component", type: i13.BarsaTableColumnComponent, selector: "bsu-barsa-table-column" }, { kind: "component", type: i14.BarsaColumnIndicatorComponent, selector: "bsu-barsa-column-indicator", inputs: ["backColor", "hideBorderBottom"] }, { kind: "directive", type: i15.ApplyConditionalFormatsDirective, selector: "[applyConditionalFormats]", inputs: ["applyConditionalFormats", "styleIndex", "hostEl", "dbName"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: i3.BbbTranslatePipe, name: "bbbTranslate" }, { kind: "pipe", type: i3.ColumnIconPipe, name: "columnIcon" }, { kind: "pipe", type: i3.ColumnValuePipe, name: "columnValue" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
40
+ BarsaTableRowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: BarsaTableRowComponent, selector: "bsu-barsa-table-row", inputs: { showDetailsInRow: "showDetailsInRow", detailsComponent: "detailsComponent", detailsColumns: "detailsColumns", detailsText: "detailsText", columnComponents: "columnComponents" }, providers: [FormPanelService], viewQueries: [{ propertyName: "detailsFormItems", first: true, predicate: ["detailsFormItems"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<tr\n [class.row-error]=\"hasError\"\n [class.showdetails-on]=\"!detailsCollapsed\"\n #trEl\n *ngIf=\"(!mo.$Parent || parentExpanded) && visibility !== false\"\n fd-table-row\n [activable]=\"false\"\n [hoverable]=\"false\"\n [applyConditionalFormats]=\"conditionalFormats\"\n [styleIndex]=\"styleIndex\"\n [hostEl]=\"trEl\"\n [main]=\"true\"\n [focusable]=\"true\"\n [attr.aria-selected]=\"isChecked\"\n [focusable]=\"!inlineEditMode || !allowInlineEdit\"\n [class.brule-message]=\"bruleActionMessage || workflowState?.errorText\"\n [class.workflow-pending]=\"workflowState?.state === 'Pending'\"\n>\n <ng-container *ngIf=\"mo.$Group || mo.$Group === ''; else renderRow\">\n <td\n [style.padding-right]=\"rtl ? 'calc( 1rem + ' + level * 12 + 'px' + ' )' : 'inherit'\"\n [style.padding-left]=\"!rtl ? 'calc( 1rem + ' + level * 12 + 'px' + ' )' : 'inherit'\"\n fd-table-cell\n style=\"font-weight: bold; font-size: 1rem\"\n [attr.colspan]=\"\n columns.length +\n 1 +\n (rowIndicator ? -1 : 0) +\n (contextMenuItems && contextMenuItems.length > 0 && !inlineEditMode ? 1 : 0) +\n (showViewButton ? 1 : 0) +\n (showDetailsInRow && !inlineEditMode ? 1 : 0)\n \"\n class=\"row-group\"\n [class.mobile-mode]=\"secondaryColumns?.length\"\n [attr.level]=\"level\"\n [class.root-group]=\"level === 0\"\n >\n <button\n fd-button\n [fdType]=\"'transparent'\"\n [glyph]=\"expanded !== false ? 'navigation-down-arrow' : 'navigation-left-arrow'\"\n class=\"cell-expand\"\n (click)=\"onExpandClick()\"\n ></button>\n {{ mo.$Group }}\n </td>\n </ng-container>\n <ng-template #renderRow>\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n <td fd-table-cell *ngIf=\"isCheckList\">\n <div\n *ngIf=\"workflowState?.state === 'Pending'\"\n style=\"position: absolute; left: 0; right: 0; bottom: 0; top: 0\"\n >\n <bsu-mask [top]=\"'20px'\" [size]=\"'s'\"></bsu-mask>\n </div>\n\n <fd-checkbox [name]=\"mo.$Caption\" [ngModel]=\"isChecked\" (ngModelChange)=\"onRowCheck()\"></fd-checkbox>\n </td>\n <td\n fd-table-cell\n class=\"single-select\"\n *ngIf=\"!isCheckList\"\n (click)=\"onRowCheck()\"\n style=\"padding: 0; text-align: center\"\n >\n <ng-container\n *ngIf=\"inlineEditMode && allowInlineEdit && (hasError || saving || saved); else iconStateTemplate\"\n >\n <fd-icon *ngIf=\"hasError\" class=\"save-error\" glyph=\"error\"></fd-icon>\n <fd-busy-indicator\n *ngIf=\"saving\"\n [loading]=\"true\"\n [size]=\"'s'\"\n title=\"record saving\"\n ></fd-busy-indicator>\n <fd-icon *ngIf=\"saved\" class=\"save-success\" glyph=\"accept\"></fd-icon>\n </ng-container>\n <ng-template #iconStateTemplate>\n <fd-icon *ngIf=\"mo.$State === 'New' && !isChecked\" glyph=\"favorite\"></fd-icon>\n <fd-icon *ngIf=\"inlineEditMode && allowInlineEdit && isChecked\" glyph=\"edit\"></fd-icon>\n </ng-template>\n </td>\n <ng-container *ngFor=\"let column of columns; let columnIndex = index\">\n <td\n *ngIf=\"(rowIndicator && columnIndex > 0) || !rowIndicator\"\n [attr.dbName]=\"column.Name\"\n #tdEl\n fd-table-cell\n [applyConditionalFormats]=\"conditionalFormats\"\n [hostEl]=\"tdEl\"\n [styleIndex]=\"styleIndex\"\n [dbName]=\"column.Name\"\n [focusable]=\"false\"\n (click)=\"onRowCheck()\"\n (dblclick)=\"onRowClick()\"\n [hoverable]=\"inlineEditMode && allowInlineEdit\"\n >\n <ng-container\n *ngTemplateOutlet=\"\n columnTemplate;\n context: {\n $implicit: column,\n mo: mo,\n index: columnIndex,\n inlineEditMode: inlineEditMode,\n layout94: layout$ | async\n }\n \"\n ></ng-container>\n </td>\n </ng-container>\n <td\n class=\"col-context-menu\"\n *ngIf=\"contextMenuItems?.length && (!inlineEditMode || !allowInlineEdit)\"\n fd-table-cell\n >\n <bsu-ulv-context-menu\n [disableOverflowContextMenu]=\"disableOverflowContextMenu\"\n [conditionalFormats]=\"conditionalFormats\"\n [styleIndex]=\"styleIndex\"\n [mo]=\"mo\"\n [index]=\"index\"\n (commandClick)=\"onUlvCommand()\"\n [deviceName]=\"deviceName\"\n [menuItems]=\"contextMenuItems\"\n [allColumns]=\"allColumns\"\n ></bsu-ulv-context-menu>\n </td>\n <td\n class=\"col-details\"\n fd-table-cell\n [fitContent]=\"true\"\n *ngIf=\"showDetailsInRow && (!inlineEditMode || !allowInlineEdit)\"\n >\n <button\n *ngIf=\"detailsComponent?.Selector || cartableParams?.moId\"\n fd-button\n [label]=\"(detailsCollapsed ? detailsText : 'Hide') | bbbTranslate\"\n [fdType]=\"'transparent'\"\n (click)=\"onRowDetails()\"\n ></button>\n </td>\n <td\n class=\"col-view\"\n fd-table-cell\n [fitContent]=\"true\"\n *ngIf=\"!hideOpenIcon && canView && (!inlineEditMode || !allowInlineEdit)\"\n >\n <button\n fd-button\n [glyph]=\"navigationArrow\"\n [navigation]=\"true\"\n [fdType]=\"'transparent'\"\n role=\"presentation\"\n (click)=\"onRowClick()\"\n ></button>\n </td>\n </ng-template>\n</tr>\n\n<tr\n #trEl\n *ngIf=\"secondaryColumns?.length && !mo.$Group && (!mo.$Parent || parentExpanded) && visibility !== false\"\n fd-table-row\n [secondary]=\"true\"\n class=\"secondary-row\"\n [class.no-edit-mode]=\"!inlineEditMode\"\n [applyConditionalFormats]=\"conditionalFormats\"\n [styleIndex]=\"styleIndex\"\n [hostEl]=\"trEl\"\n [attr.aria-selected]=\"isChecked && !inlineEditMode ? true : false\"\n>\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n\n <td fd-table-cell class=\"single-select\" *ngIf=\"!isCheckList\" (click)=\"onRowCheck()\"></td>\n <td fd-table-cell colspan=\"100%\" (click)=\"onRowCheck()\">\n <p\n #pEl\n fd-table-text\n *ngFor=\"let column of secondaryColumns; let columnIndex = index; trackBy: _trackByColumn\"\n [applyConditionalFormats]=\"conditionalFormats\"\n [hostEl]=\"pEl\"\n [styleIndex]=\"styleIndex\"\n [dbName]=\"column.Name\"\n >\n <label fd-form-label>{{ column.Caption }} :</label>\n <ng-container\n *ngTemplateOutlet=\"\n columnTemplate;\n context: {\n $implicit: column,\n mo: mo,\n index: columnIndex,\n inlineEditMode: inlineEditMode,\n layout94: layout$ | async\n }\n \"\n ></ng-container>\n </p>\n </td>\n</tr>\n<tr *ngIf=\"!detailsCollapsed && cartableParams?.moId\" fd-table-row class=\"showdetails\" [attr.aria-selected]=\"isChecked\">\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n <td\n (click)=\"onRowCheck()\"\n fd-table-cell\n [attr.colspan]=\"\n columns.length +\n 1 +\n (rowIndicator ? -1 : 0) +\n (contextMenuItems.length ? 1 : 0) +\n (canView ? 1 : 0) +\n (showDetailsInRow ? 1 : 0)\n \"\n >\n <ng-container>\n <bnrc-form\n (click)=\"OnCartableFormClick($event)\"\n class=\"cartable-template\"\n [params]=\"cartableParams\"\n (formClose)=\"onCartableFormClosed()\"\n ></bnrc-form>\n </ng-container>\n </td>\n</tr>\n<tr\n *ngIf=\"!detailsCollapsed && detailsComponent?.Selector\"\n fd-table-row\n class=\"showdetails\"\n [attr.aria-selected]=\"isChecked\"\n>\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n\n <td\n (click)=\"onRowCheck()\"\n fd-table-cell\n [attr.colspan]=\"\n columns.length +\n 1 +\n (rowIndicator ? -1 : 0) +\n (contextMenuItems && contextMenuItems.length > 0 && !inlineEditMode ? 1 : 0) +\n (showViewButton ? 1 : 0) +\n (showDetailsInRow && !inlineEditMode ? 1 : 0)\n \"\n >\n <ng-container *ngTemplateOutlet=\"detailsColumnsTemplate\"></ng-container>\n <ng-container *ngIf=\"detailsComponent && detailsComponent.Selector\">\n <bnrc-dynamic-item-component\n [component]=\"detailsComponent\"\n [mo]=\"mo\"\n [isChecked]=\"isChecked\"\n [UlvMainCtrlr]=\"UlvMainCtrlr\"\n [setting]=\"detailsComponentSetting\"\n [parameters]=\"detailsComponent.Settings\"\n [editMode]=\"inlineEditMode\"\n [formSetting]=\"formSetting\"\n [rtl]=\"rtl\"\n [deviceName]=\"deviceName\"\n [deviceSize]=\"deviceSize\"\n [index]=\"index\"\n [allColumns]=\"allColumns\"\n [typeDefId]=\"typeDefId\"\n ></bnrc-dynamic-item-component>\n </ng-container>\n </td>\n</tr>\n<ng-template #detailsColumnsTemplate>\n <ng-container\n *ngTemplateOutlet=\"\n detailsFormItems;\n context: {\n $implicit: detailsColumns,\n mo: mo,\n inlineEditMode: inlineEditMode,\n layout94: layout$\n }\n \"\n ></ng-container>\n</ng-template>\n<ng-template #detailsFormItems let-detailsColumns let-mo=\"mo\" let-inlineEditMode=\"inlineEditMode\" let-layout$=\"layout$\">\n <div class=\"form-items\">\n <div fd-form-item *ngFor=\"let column of detailsColumns; let columnIndex = index\">\n <label fd-form-label for=\"input-2\">{{ column.Caption }}</label>\n <ng-container\n *ngTemplateOutlet=\"\n columnTemplate;\n context: {\n $implicit: column,\n mo: mo,\n index: columnIndex,\n inlineEditMode: inlineEditMode,\n layout94: layout$ | async\n }\n \"\n ></ng-container>\n </div>\n </div>\n</ng-template>\n<tr *ngIf=\"bruleActionMessage && inlineEditMode\" fd-table-row>\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n <td\n fd-table-cell\n [attr.colspan]=\"\n columns.length +\n 1 +\n (rowIndicator ? -1 : 0) +\n (contextMenuItems && contextMenuItems.length > 0 && !inlineEditMode ? 1 : 0) +\n (showViewButton ? 1 : 0) +\n (showDetailsInRow && !inlineEditMode ? 1 : 0)\n \"\n >\n <fd-message-strip\n *ngIf=\"bruleActionMessage.MessageType === 2\"\n [type]=\"bruleActionMessage.MessageType === 2 ? 'error' : 'information'\"\n [dismissible]=\"false\"\n >\n {{ bruleActionMessage.MessageExpression }}\n </fd-message-strip>\n </td>\n</tr>\n<tr *ngIf=\"workflowState?.errorText\" fd-table-row>\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n <td\n fd-table-cell\n [attr.colspan]=\"\n columns.length +\n 1 +\n (rowIndicator ? -1 : 0) +\n (contextMenuItems && contextMenuItems.length > 0 && !inlineEditMode ? 1 : 0) +\n (showViewButton ? 1 : 0) +\n (showDetailsInRow && !inlineEditMode ? 1 : 0)\n \"\n >\n <fd-message-strip type=\"error\" [dismissible]=\"true\" (onDismiss)=\"resetWorkflowState.emit()\">\n {{ workflowState.errorText }}\n </fd-message-strip>\n </td>\n</tr>\n<ng-template\n #columnTemplate\n let-column\n let-mo=\"mo\"\n let-index=\"index\"\n let-inlineEditMode=\"inlineEditMode\"\n let-layout94=\"layout94\"\n>\n <bsu-barsa-table-column\n [mo]=\"mo\"\n [column]=\"column\"\n [value]=\"column | columnValue: mo\"\n [icon]=\"column | columnIcon: mo\"\n [customComponent]=\"column.$CustomComponent\"\n [column]=\"column\"\n [editMode]=\"isChecked && inlineEditMode && allowInlineEdit\"\n [inlineEditMode]=\"inlineEditMode\"\n [isChecked]=\"isChecked\"\n [index]=\"index\"\n [formSetting]=\"formSetting\"\n [rtl]=\"rtl\"\n [deviceName]=\"deviceName\"\n [deviceSize]=\"deviceSize\"\n [layout94]=\"layout94\"\n (save)=\"onEditFormPanelSave(null)\"\n (cancel)=\"onEditFormPanelCancel(null)\"\n (tab)=\"onTabKeyDown($event, index)\"\n (changeToEditMode)=\"onColumnChangeToEditMode($event, index)\"\n >\n </bsu-barsa-table-column>\n</ng-template>\n<ng-template #statusIndicator>\n <bsu-barsa-column-indicator\n [hideBorderBottom]=\"!detailsCollapsed\"\n *ngIf=\"rowIndicator\"\n [backColor]=\"rowIndicatorColor\"\n >\n </bsu-barsa-column-indicator>\n</ng-template>\n", styles: [":host{display:contents;width:100%}:host ::ng-deep .row-group.mobile-mode{border-bottom:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)!important}:host ::ng-deep .inlineEditMode bnrc-field-ui{padding:0;margin:0}:host ::ng-deep .inlineEditMode bsu-ui-simple-combo{margin:0!important}bsu-layout-control:not(.hide-form-item){align-items:center;height:100%;min-width:auto;width:auto}td{vertical-align:middle}tr.brule-message td{border:0}.row-group{background-color:var(--sapBackgroundColor, \"#f7f7ff\")}.cell-expand{cursor:pointer;display:inline-flex;justify-content:center;align-items:center;font-size:.75rem;color:#0854a0;color:var(--sapContent_IconColor, #0854a0);min-width:2rem;max-width:2rem}.save-error{color:var(--sapField_InvalidColor)}.save-success{color:var(--sapField_SuccessColor)}.flow{max-width:100%}.flow-item{display:flex}.flow-item fd-micro-process-flow-icon{width:1.375rem;height:1.375rem}.flow-item h5{padding-right:.3rem}.cartable-template{padding:.5rem 0}.workflow-pending{opacity:.5;pointer-events:none;position:relative}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3.FormComponent, selector: "bnrc-form", inputs: ["params", "customFormPanelUi", "formPanelCtrl", "UlvMainCtrlr", "formPanelCtrlId", "saveOnChange"], outputs: ["titleChanged", "moChanged", "formClose", "formRendered"] }, { kind: "component", type: i3.DynamicItemComponent, selector: "bnrc-dynamic-item-component", inputs: ["mo", "allColumns", "moDataList", "columns", "column", "index", "last", "deviceName", "deviceSize", "rtl", "editMode", "setting", "parameters", "contextMenuItems", "canView", "formSetting", "conditionalFormats", "disableOverflowContextMenu", "navigationArrow", "isCheckList", "fields", "isChecked", "layout94$", "inlineEditMode", "isNewInlineMo", "allowInlineEdit", "typeDefId", "rowIndicator", "rowIndicatorColor", "UlvMainCtrlr"] }, { kind: "directive", type: i3.FormCloseDirective, selector: "[formClose]", inputs: ["isMobile"] }, { kind: "component", type: i4.BusyIndicatorComponent, selector: "fd-busy-indicator", inputs: ["loading", "size", "block", "ariaLabel", "title", "label", "ariaLive"] }, { kind: "component", type: i5.ButtonComponent, selector: "button[fd-button], a[fd-button]", inputs: ["class"], exportAs: ["fd-button"] }, { kind: "component", type: i6.CheckboxComponent, selector: "fd-checkbox", inputs: ["ariaLabel", "value", "ariaLabelledBy", "ariaDescribedBy", "title", "inputId", "state", "name", "label", "disabled", "tristate", "tristateSelectable", "labelClass", "required", "values"], outputs: ["focusChange"] }, { kind: "component", type: i7.FormItemComponent, selector: "[fd-form-item]", inputs: ["isInline", "horizontal"] }, { kind: "component", type: i7.FormLabelComponent, selector: "[fd-form-label]", inputs: ["required", "colon", "checkbox", "radio", "alignLabelEnd", "inlineHelpTitle", "inlineHelpGlyph", "inlineHelpTriggers", "inlineHelpBodyPlacement", "inlineHelpPlacement", "id"] }, { kind: "component", type: i8.IconComponent, selector: "fd-icon", inputs: ["glyph", "font", "class", "ariaLabel"] }, { kind: "component", type: i9.MessageStripComponent, selector: "fd-message-strip", inputs: ["class", "dismissible", "noIcon", "type", "id", "ariaLabelledBy", "ariaLabel", "dismissLabel", "width", "minWidth", "marginBottom"], outputs: ["onDismiss"] }, { kind: "directive", type: i10.TableRowDirective, selector: "[fdTableRow], [fd-table-row]", inputs: ["activable", "highlightActive", "hoverable", "focusable", "main", "secondary", "active"] }, { kind: "directive", type: i10.TableCellDirective, selector: "[fdTableCell], [fd-table-cell]", inputs: ["noBorderX", "noBorderY", "activable", "focusable", "tabindex", "hoverable", "fitContent", "noPadding", "noData", "key", "cellFocusedEventAnnouncer"] }, { kind: "directive", type: i10.TableTextDirective, selector: "[fdTableText], [fd-table-text]", inputs: ["fdTableTextClass", "noWrap", "title", "maxWidth"] }, { kind: "component", type: i11.MaskComponent, selector: "bsu-mask", inputs: ["size", "top"] }, { kind: "component", type: i12.UlvContextMenuComponent, selector: "bsu-ulv-context-menu,[ulvContextMenu]", inputs: ["onlyOverflow", "deviceName", "menuItems", "allColumns", "index", "mo", "styleIndex", "conditionalFormats", "disableOverflowContextMenu", "footerMode"], outputs: ["commandClick"] }, { kind: "component", type: i13.BarsaTableColumnComponent, selector: "bsu-barsa-table-column" }, { kind: "component", type: i14.BarsaColumnIndicatorComponent, selector: "bsu-barsa-column-indicator", inputs: ["backColor", "hideBorderBottom"] }, { kind: "directive", type: i15.ApplyConditionalFormatsDirective, selector: "[applyConditionalFormats]", inputs: ["applyConditionalFormats", "styleIndex", "hostEl", "dbName"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: i3.BbbTranslatePipe, name: "bbbTranslate" }, { kind: "pipe", type: i3.ColumnIconPipe, name: "columnIcon" }, { kind: "pipe", type: i3.ColumnValuePipe, name: "columnValue" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
41
41
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaTableRowComponent, decorators: [{
42
42
  type: Component,
43
43
  args: [{ selector: 'bsu-barsa-table-row', providers: [FormPanelService], changeDetection: ChangeDetectionStrategy.OnPush, template: "<tr\n [class.row-error]=\"hasError\"\n [class.showdetails-on]=\"!detailsCollapsed\"\n #trEl\n *ngIf=\"(!mo.$Parent || parentExpanded) && visibility !== false\"\n fd-table-row\n [activable]=\"false\"\n [hoverable]=\"false\"\n [applyConditionalFormats]=\"conditionalFormats\"\n [styleIndex]=\"styleIndex\"\n [hostEl]=\"trEl\"\n [main]=\"true\"\n [focusable]=\"true\"\n [attr.aria-selected]=\"isChecked\"\n [focusable]=\"!inlineEditMode || !allowInlineEdit\"\n [class.brule-message]=\"bruleActionMessage || workflowState?.errorText\"\n [class.workflow-pending]=\"workflowState?.state === 'Pending'\"\n>\n <ng-container *ngIf=\"mo.$Group || mo.$Group === ''; else renderRow\">\n <td\n [style.padding-right]=\"rtl ? 'calc( 1rem + ' + level * 12 + 'px' + ' )' : 'inherit'\"\n [style.padding-left]=\"!rtl ? 'calc( 1rem + ' + level * 12 + 'px' + ' )' : 'inherit'\"\n fd-table-cell\n style=\"font-weight: bold; font-size: 1rem\"\n [attr.colspan]=\"\n columns.length +\n 1 +\n (rowIndicator ? -1 : 0) +\n (contextMenuItems && contextMenuItems.length > 0 && !inlineEditMode ? 1 : 0) +\n (showViewButton ? 1 : 0) +\n (showDetailsInRow && !inlineEditMode ? 1 : 0)\n \"\n class=\"row-group\"\n [class.mobile-mode]=\"secondaryColumns?.length\"\n [attr.level]=\"level\"\n [class.root-group]=\"level === 0\"\n >\n <button\n fd-button\n [fdType]=\"'transparent'\"\n [glyph]=\"expanded !== false ? 'navigation-down-arrow' : 'navigation-left-arrow'\"\n class=\"cell-expand\"\n (click)=\"onExpandClick()\"\n ></button>\n {{ mo.$Group }}\n </td>\n </ng-container>\n <ng-template #renderRow>\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n <td fd-table-cell *ngIf=\"isCheckList\">\n <div\n *ngIf=\"workflowState?.state === 'Pending'\"\n style=\"position: absolute; left: 0; right: 0; bottom: 0; top: 0\"\n >\n <bsu-mask [top]=\"'20px'\" [size]=\"'s'\"></bsu-mask>\n </div>\n\n <fd-checkbox [name]=\"mo.$Caption\" [ngModel]=\"isChecked\" (ngModelChange)=\"onRowCheck()\"></fd-checkbox>\n </td>\n <td\n fd-table-cell\n class=\"single-select\"\n *ngIf=\"!isCheckList\"\n (click)=\"onRowCheck()\"\n style=\"padding: 0; text-align: center\"\n >\n <ng-container\n *ngIf=\"inlineEditMode && allowInlineEdit && (hasError || saving || saved); else iconStateTemplate\"\n >\n <fd-icon *ngIf=\"hasError\" class=\"save-error\" glyph=\"error\"></fd-icon>\n <fd-busy-indicator\n *ngIf=\"saving\"\n [loading]=\"true\"\n [size]=\"'s'\"\n title=\"record saving\"\n ></fd-busy-indicator>\n <fd-icon *ngIf=\"saved\" class=\"save-success\" glyph=\"accept\"></fd-icon>\n </ng-container>\n <ng-template #iconStateTemplate>\n <fd-icon *ngIf=\"mo.$State === 'New' && !isChecked\" glyph=\"favorite\"></fd-icon>\n <fd-icon *ngIf=\"inlineEditMode && allowInlineEdit && isChecked\" glyph=\"edit\"></fd-icon>\n </ng-template>\n </td>\n <ng-container *ngFor=\"let column of columns; let columnIndex = index\">\n <td\n *ngIf=\"(rowIndicator && columnIndex > 0) || !rowIndicator\"\n [attr.dbName]=\"column.Name\"\n #tdEl\n fd-table-cell\n [applyConditionalFormats]=\"conditionalFormats\"\n [hostEl]=\"tdEl\"\n [styleIndex]=\"styleIndex\"\n [dbName]=\"column.Name\"\n [focusable]=\"false\"\n (click)=\"onRowCheck()\"\n (dblclick)=\"onRowClick()\"\n [hoverable]=\"inlineEditMode && allowInlineEdit\"\n >\n <ng-container\n *ngTemplateOutlet=\"\n columnTemplate;\n context: {\n $implicit: column,\n mo: mo,\n index: columnIndex,\n inlineEditMode: inlineEditMode,\n layout94: layout$ | async\n }\n \"\n ></ng-container>\n </td>\n </ng-container>\n <td\n class=\"col-context-menu\"\n *ngIf=\"contextMenuItems?.length && (!inlineEditMode || !allowInlineEdit)\"\n fd-table-cell\n >\n <bsu-ulv-context-menu\n [disableOverflowContextMenu]=\"disableOverflowContextMenu\"\n [conditionalFormats]=\"conditionalFormats\"\n [styleIndex]=\"styleIndex\"\n [mo]=\"mo\"\n [index]=\"index\"\n (commandClick)=\"onUlvCommand()\"\n [deviceName]=\"deviceName\"\n [menuItems]=\"contextMenuItems\"\n [allColumns]=\"allColumns\"\n ></bsu-ulv-context-menu>\n </td>\n <td\n class=\"col-details\"\n fd-table-cell\n [fitContent]=\"true\"\n *ngIf=\"showDetailsInRow && (!inlineEditMode || !allowInlineEdit)\"\n >\n <button\n *ngIf=\"detailsComponent?.Selector || cartableParams?.moId\"\n fd-button\n [label]=\"(detailsCollapsed ? detailsText : 'Hide') | bbbTranslate\"\n [fdType]=\"'transparent'\"\n (click)=\"onRowDetails()\"\n ></button>\n </td>\n <td\n class=\"col-view\"\n fd-table-cell\n [fitContent]=\"true\"\n *ngIf=\"!hideOpenIcon && canView && (!inlineEditMode || !allowInlineEdit)\"\n >\n <button\n fd-button\n [glyph]=\"navigationArrow\"\n [navigation]=\"true\"\n [fdType]=\"'transparent'\"\n role=\"presentation\"\n (click)=\"onRowClick()\"\n ></button>\n </td>\n </ng-template>\n</tr>\n\n<tr\n #trEl\n *ngIf=\"secondaryColumns?.length && !mo.$Group && (!mo.$Parent || parentExpanded) && visibility !== false\"\n fd-table-row\n [secondary]=\"true\"\n class=\"secondary-row\"\n [class.no-edit-mode]=\"!inlineEditMode\"\n [applyConditionalFormats]=\"conditionalFormats\"\n [styleIndex]=\"styleIndex\"\n [hostEl]=\"trEl\"\n [attr.aria-selected]=\"isChecked && !inlineEditMode ? true : false\"\n>\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n\n <td fd-table-cell class=\"single-select\" *ngIf=\"!isCheckList\" (click)=\"onRowCheck()\"></td>\n <td fd-table-cell colspan=\"100%\" (click)=\"onRowCheck()\">\n <p\n #pEl\n fd-table-text\n *ngFor=\"let column of secondaryColumns; let columnIndex = index; trackBy: _trackByColumn\"\n [applyConditionalFormats]=\"conditionalFormats\"\n [hostEl]=\"pEl\"\n [styleIndex]=\"styleIndex\"\n [dbName]=\"column.Name\"\n >\n <label fd-form-label>{{ column.Caption }} :</label>\n <ng-container\n *ngTemplateOutlet=\"\n columnTemplate;\n context: {\n $implicit: column,\n mo: mo,\n index: columnIndex,\n inlineEditMode: inlineEditMode,\n layout94: layout$ | async\n }\n \"\n ></ng-container>\n </p>\n </td>\n</tr>\n<tr *ngIf=\"!detailsCollapsed && cartableParams?.moId\" fd-table-row class=\"showdetails\" [attr.aria-selected]=\"isChecked\">\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n <td\n (click)=\"onRowCheck()\"\n fd-table-cell\n [attr.colspan]=\"\n columns.length +\n 1 +\n (rowIndicator ? -1 : 0) +\n (contextMenuItems.length ? 1 : 0) +\n (canView ? 1 : 0) +\n (showDetailsInRow ? 1 : 0)\n \"\n >\n <ng-container>\n <bnrc-form\n (click)=\"OnCartableFormClick($event)\"\n class=\"cartable-template\"\n [params]=\"cartableParams\"\n (formClose)=\"onCartableFormClosed()\"\n ></bnrc-form>\n </ng-container>\n </td>\n</tr>\n<tr\n *ngIf=\"!detailsCollapsed && detailsComponent?.Selector\"\n fd-table-row\n class=\"showdetails\"\n [attr.aria-selected]=\"isChecked\"\n>\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n\n <td\n (click)=\"onRowCheck()\"\n fd-table-cell\n [attr.colspan]=\"\n columns.length +\n 1 +\n (rowIndicator ? -1 : 0) +\n (contextMenuItems && contextMenuItems.length > 0 && !inlineEditMode ? 1 : 0) +\n (showViewButton ? 1 : 0) +\n (showDetailsInRow && !inlineEditMode ? 1 : 0)\n \"\n >\n <ng-container *ngTemplateOutlet=\"detailsColumnsTemplate\"></ng-container>\n <ng-container *ngIf=\"detailsComponent && detailsComponent.Selector\">\n <bnrc-dynamic-item-component\n [component]=\"detailsComponent\"\n [mo]=\"mo\"\n [isChecked]=\"isChecked\"\n [UlvMainCtrlr]=\"UlvMainCtrlr\"\n [setting]=\"detailsComponentSetting\"\n [parameters]=\"detailsComponent.Settings\"\n [editMode]=\"inlineEditMode\"\n [formSetting]=\"formSetting\"\n [rtl]=\"rtl\"\n [deviceName]=\"deviceName\"\n [deviceSize]=\"deviceSize\"\n [index]=\"index\"\n [allColumns]=\"allColumns\"\n [typeDefId]=\"typeDefId\"\n ></bnrc-dynamic-item-component>\n </ng-container>\n </td>\n</tr>\n<ng-template #detailsColumnsTemplate>\n <ng-container\n *ngTemplateOutlet=\"\n detailsFormItems;\n context: {\n $implicit: detailsColumns,\n mo: mo,\n inlineEditMode: inlineEditMode,\n layout94: layout$\n }\n \"\n ></ng-container>\n</ng-template>\n<ng-template #detailsFormItems let-detailsColumns let-mo=\"mo\" let-inlineEditMode=\"inlineEditMode\" let-layout$=\"layout$\">\n <div class=\"form-items\">\n <div fd-form-item *ngFor=\"let column of detailsColumns; let columnIndex = index\">\n <label fd-form-label for=\"input-2\">{{ column.Caption }}</label>\n <ng-container\n *ngTemplateOutlet=\"\n columnTemplate;\n context: {\n $implicit: column,\n mo: mo,\n index: columnIndex,\n inlineEditMode: inlineEditMode,\n layout94: layout$ | async\n }\n \"\n ></ng-container>\n </div>\n </div>\n</ng-template>\n<tr *ngIf=\"bruleActionMessage && inlineEditMode\" fd-table-row>\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n <td\n fd-table-cell\n [attr.colspan]=\"\n columns.length +\n 1 +\n (rowIndicator ? -1 : 0) +\n (contextMenuItems && contextMenuItems.length > 0 && !inlineEditMode ? 1 : 0) +\n (showViewButton ? 1 : 0) +\n (showDetailsInRow && !inlineEditMode ? 1 : 0)\n \"\n >\n <fd-message-strip\n *ngIf=\"bruleActionMessage.MessageType === 2\"\n [type]=\"bruleActionMessage.MessageType === 2 ? 'error' : 'information'\"\n [dismissible]=\"false\"\n >\n {{ bruleActionMessage.MessageExpression }}\n </fd-message-strip>\n </td>\n</tr>\n<tr *ngIf=\"workflowState?.errorText\" fd-table-row>\n <ng-container *ngTemplateOutlet=\"statusIndicator\"></ng-container>\n <td\n fd-table-cell\n [attr.colspan]=\"\n columns.length +\n 1 +\n (rowIndicator ? -1 : 0) +\n (contextMenuItems && contextMenuItems.length > 0 && !inlineEditMode ? 1 : 0) +\n (showViewButton ? 1 : 0) +\n (showDetailsInRow && !inlineEditMode ? 1 : 0)\n \"\n >\n <fd-message-strip type=\"error\" [dismissible]=\"true\" (onDismiss)=\"resetWorkflowState.emit()\">\n {{ workflowState.errorText }}\n </fd-message-strip>\n </td>\n</tr>\n<ng-template\n #columnTemplate\n let-column\n let-mo=\"mo\"\n let-index=\"index\"\n let-inlineEditMode=\"inlineEditMode\"\n let-layout94=\"layout94\"\n>\n <bsu-barsa-table-column\n [mo]=\"mo\"\n [column]=\"column\"\n [value]=\"column | columnValue: mo\"\n [icon]=\"column | columnIcon: mo\"\n [customComponent]=\"column.$CustomComponent\"\n [column]=\"column\"\n [editMode]=\"isChecked && inlineEditMode && allowInlineEdit\"\n [inlineEditMode]=\"inlineEditMode\"\n [isChecked]=\"isChecked\"\n [index]=\"index\"\n [formSetting]=\"formSetting\"\n [rtl]=\"rtl\"\n [deviceName]=\"deviceName\"\n [deviceSize]=\"deviceSize\"\n [layout94]=\"layout94\"\n (save)=\"onEditFormPanelSave(null)\"\n (cancel)=\"onEditFormPanelCancel(null)\"\n (tab)=\"onTabKeyDown($event, index)\"\n (changeToEditMode)=\"onColumnChangeToEditMode($event, index)\"\n >\n </bsu-barsa-table-column>\n</ng-template>\n<ng-template #statusIndicator>\n <bsu-barsa-column-indicator\n [hideBorderBottom]=\"!detailsCollapsed\"\n *ngIf=\"rowIndicator\"\n [backColor]=\"rowIndicatorColor\"\n >\n </bsu-barsa-column-indicator>\n</ng-template>\n", styles: [":host{display:contents;width:100%}:host ::ng-deep .row-group.mobile-mode{border-bottom:var(--sapList_BorderWidth, .0625rem) solid var(--sapList_BorderColor, #e4e4e4)!important}:host ::ng-deep .inlineEditMode bnrc-field-ui{padding:0;margin:0}:host ::ng-deep .inlineEditMode bsu-ui-simple-combo{margin:0!important}bsu-layout-control:not(.hide-form-item){align-items:center;height:100%;min-width:auto;width:auto}td{vertical-align:middle}tr.brule-message td{border:0}.row-group{background-color:var(--sapBackgroundColor, \"#f7f7ff\")}.cell-expand{cursor:pointer;display:inline-flex;justify-content:center;align-items:center;font-size:.75rem;color:#0854a0;color:var(--sapContent_IconColor, #0854a0);min-width:2rem;max-width:2rem}.save-error{color:var(--sapField_InvalidColor)}.save-success{color:var(--sapField_SuccessColor)}.flow{max-width:100%}.flow-item{display:flex}.flow-item fd-micro-process-flow-icon{width:1.375rem;height:1.375rem}.flow-item h5{padding-right:.3rem}.cartable-template{padding:.5rem 0}.workflow-pending{opacity:.5;pointer-events:none;position:relative}\n"] }]
@@ -130,7 +130,7 @@ export class FormDialogComponent extends BaseComponent {
130
130
  }
131
131
  }
132
132
  FormDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: FormDialogComponent, deps: [{ token: i1.DialogService }, { token: i2.DialogParams }, { token: i2.PortalService }], target: i0.ɵɵFactoryTarget.Component });
133
- 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>\n <fd-dialog [dialogConfig]=\"dialogConfig\" [dialogRef]=\"dialog\" #dialogTplRef>\n <fd-dialog-header>\n <ng-template fdTemplate=\"header\">\n <div fd-bar-left>\n <h1 fd-title>{{ dialogConfig.data.caption }}</h1>\n </div>\n <div fd-bar-right>\n <fd-button-bar\n *ngIf=\"dialogConfig.data.canFullscreen\"\n ariaLabel=\"fullscreen\"\n [glyph]=\"fullscreen ? 'exitfullscreen' : 'resize'\"\n fullscreenDialog\n [dialog]=\"dialog\"\n [fullscreen]=\"fullscreen\"\n (fullscreenChanged)=\"fullscreen = $event\"\n [dialogComponent]=\"dialogTplRef\"\n ></fd-button-bar>\n <fd-button-bar ariaLabel=\"close\" glyph=\"decline\" (click)=\"onCancel()\"></fd-button-bar>\n </div>\n </ng-template>\n </fd-dialog-header>\n\n <fd-dialog-body>\n <bnrc-form [formPanelCtrl]=\"formPanelCtrlr\" [params]=\"params\" (formClose)=\"onFormClose()\"></bnrc-form>\n </fd-dialog-body>\n <fd-dialog-footer [style.display]=\"!showFooter ? 'none' : null\">\n <ng-container *ngFor=\"let btn of formPanelCtrlr?.Adapter?.Control?.toolbar?.items\">\n <ng-container\n *ngIf=\"!(btn === '-' || btn.text === '-') && ((btn.isBuiltin && btn.inFooter) || btn.isWorkflow)\"\n >\n <ng-container\n *ngTemplateOutlet=\"\n btn.Data?.CustomUi?.Selector ? dynamicBtnTemplate : btnTemplate;\n context: { $implicit: btn }\n \"\n ></ng-container>\n <ng-template #btnTemplate let-btn>\n <fd-dialog-footer-button>\n <fd-button-bar\n fd-dialog-decisive-button\n [fdType]=\"btn.isWorkflow ? 'attention' : btn.design\"\n [label]=\"btn.text | bbbTranslate\"\n [glyph]=\"btn.newIcon ? btn.newIcon : null\"\n (click)=\"btn.handler(btn, formPanelCtrlr?.Adapter?.Control)\"\n ></fd-button-bar>\n </fd-dialog-footer-button>\n </ng-template>\n <ng-template #dynamicBtnTemplate let-btn>\n <fd-dialog-footer-button>\n <bnrc-dynamic-form-toolbaritem\n fd-toolbar-item\n [component]=\"btn.Data.CustomUi\"\n [context]=\"btn\"\n [isEnable]=\"btn.Command?._isEnable\"\n (btnClick)=\"btn.handler(btn, formPanelCtrlr?.Adapter?.Control)\"\n ></bnrc-dynamic-form-toolbaritem>\n </fd-dialog-footer-button>\n </ng-template>\n </ng-container>\n </ng-container>\n <!-- <ng-template #saveBtn>\n <fd-dialog-footer-button>\n <fd-button-bar\n fd-dialog-decisive-button\n fdType=\"emphasized\"\n [label]=\"'Save' | bbbTranslate\"\n (click)=\"onSave()\"\n ></fd-button-bar>\n </fd-dialog-footer-button>\n </ng-template>-->\n\n <fd-dialog-footer-button *ngIf=\"!isNonePersistance\">\n <fd-button-bar\n fd-initial-focus\n fd-dialog-decisive-button\n [label]=\"'Cancel' | bbbTranslate\"\n (click)=\"onCancel()\"\n ></fd-button-bar>\n </fd-dialog-footer-button>\n </fd-dialog-footer>\n </fd-dialog>\n</ng-template>\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: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i2.FormComponent, selector: "bnrc-form", inputs: ["params", "customFormPanelUi", "formPanelCtrl", "UlvMainCtrlr", "formPanelCtrlId"], outputs: ["titleChanged", "moChanged", "formClose", "formRendered"] }, { kind: "component", type: i2.DynamicFormToolbaritemComponent, selector: "bnrc-dynamic-form-toolbaritem", inputs: ["mo", "index", "deviceName", "deviceSize", "context", "btn", "isEnable", "showText", "allColumns", "conditionalFormats"], outputs: ["btnClick"] }, { kind: "directive", type: i2.FormCloseDirective, selector: "[formClose]", inputs: ["isMobile"] }, { kind: "directive", type: i4.BarLeftDirective, selector: "[fd-bar-left]" }, { kind: "directive", type: i4.BarRightDirective, selector: "[fd-bar-right]" }, { kind: "component", type: i4.ButtonBarComponent, selector: "fd-button-bar", inputs: ["fullWidth", "fdType", "title", "ariaLabel", "ariaLabelledby", "id"] }, { kind: "component", type: i5.DialogComponent, selector: "fd-dialog", inputs: ["class", "dialogRef", "dialogConfig"] }, { kind: "component", type: i5.DialogBodyComponent, selector: "fd-dialog-body" }, { kind: "component", type: i5.DialogFooterComponent, selector: "fd-dialog-footer" }, { kind: "component", type: i5.DialogHeaderComponent, selector: "fd-dialog-header" }, { kind: "component", type: i5.DialogFooterButtonComponent, selector: "fd-dialog-footer-button" }, { kind: "directive", type: i5.DialogDecisiveButtonDirective, selector: "[fd-dialog-decisive-button]" }, { kind: "component", type: i6.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: i7.TemplateDirective, selector: "[fdTemplate]", inputs: ["fdTemplate"] }, { kind: "directive", type: i7.InitialFocusDirective, selector: "[fdInitialFocus], [fd-initial-focus]", inputs: ["fd-initial-focus", "enabled", "focusLastElement"] }, { kind: "directive", type: i8.ToolbarItemDirective, selector: "[fd-toolbar-item]" }, { kind: "directive", type: i9.FullscreenDialogDirective, selector: "[fullscreenDialog]", inputs: ["dialog", "dialogComponent", "fullscreen"], outputs: ["fullscreenChanged"] }, { kind: "pipe", type: i2.BbbTranslatePipe, name: "bbbTranslate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
133
+ 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>\n <fd-dialog [dialogConfig]=\"dialogConfig\" [dialogRef]=\"dialog\" #dialogTplRef>\n <fd-dialog-header>\n <ng-template fdTemplate=\"header\">\n <div fd-bar-left>\n <h1 fd-title>{{ dialogConfig.data.caption }}</h1>\n </div>\n <div fd-bar-right>\n <fd-button-bar\n *ngIf=\"dialogConfig.data.canFullscreen\"\n ariaLabel=\"fullscreen\"\n [glyph]=\"fullscreen ? 'exitfullscreen' : 'resize'\"\n fullscreenDialog\n [dialog]=\"dialog\"\n [fullscreen]=\"fullscreen\"\n (fullscreenChanged)=\"fullscreen = $event\"\n [dialogComponent]=\"dialogTplRef\"\n ></fd-button-bar>\n <fd-button-bar ariaLabel=\"close\" glyph=\"decline\" (click)=\"onCancel()\"></fd-button-bar>\n </div>\n </ng-template>\n </fd-dialog-header>\n\n <fd-dialog-body>\n <bnrc-form [formPanelCtrl]=\"formPanelCtrlr\" [params]=\"params\" (formClose)=\"onFormClose()\"></bnrc-form>\n </fd-dialog-body>\n <fd-dialog-footer [style.display]=\"!showFooter ? 'none' : null\">\n <ng-container *ngFor=\"let btn of formPanelCtrlr?.Adapter?.Control?.toolbar?.items\">\n <ng-container\n *ngIf=\"!(btn === '-' || btn.text === '-') && ((btn.isBuiltin && btn.inFooter) || btn.isWorkflow)\"\n >\n <ng-container\n *ngTemplateOutlet=\"\n btn.Data?.CustomUi?.Selector ? dynamicBtnTemplate : btnTemplate;\n context: { $implicit: btn }\n \"\n ></ng-container>\n <ng-template #btnTemplate let-btn>\n <fd-dialog-footer-button>\n <fd-button-bar\n fd-dialog-decisive-button\n [fdType]=\"btn.isWorkflow ? 'attention' : btn.design\"\n [label]=\"btn.text | bbbTranslate\"\n [glyph]=\"btn.newIcon ? btn.newIcon : null\"\n (click)=\"btn.handler(btn, formPanelCtrlr?.Adapter?.Control)\"\n ></fd-button-bar>\n </fd-dialog-footer-button>\n </ng-template>\n <ng-template #dynamicBtnTemplate let-btn>\n <fd-dialog-footer-button>\n <bnrc-dynamic-form-toolbaritem\n fd-toolbar-item\n [component]=\"btn.Data.CustomUi\"\n [context]=\"btn\"\n [isEnable]=\"btn.Command?._isEnable\"\n (btnClick)=\"btn.handler(btn, formPanelCtrlr?.Adapter?.Control)\"\n ></bnrc-dynamic-form-toolbaritem>\n </fd-dialog-footer-button>\n </ng-template>\n </ng-container>\n </ng-container>\n <!-- <ng-template #saveBtn>\n <fd-dialog-footer-button>\n <fd-button-bar\n fd-dialog-decisive-button\n fdType=\"emphasized\"\n [label]=\"'Save' | bbbTranslate\"\n (click)=\"onSave()\"\n ></fd-button-bar>\n </fd-dialog-footer-button>\n </ng-template>-->\n\n <fd-dialog-footer-button *ngIf=\"!isNonePersistance\">\n <fd-button-bar\n fd-initial-focus\n fd-dialog-decisive-button\n [label]=\"'Cancel' | bbbTranslate\"\n (click)=\"onCancel()\"\n ></fd-button-bar>\n </fd-dialog-footer-button>\n </fd-dialog-footer>\n </fd-dialog>\n</ng-template>\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: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i2.FormComponent, selector: "bnrc-form", inputs: ["params", "customFormPanelUi", "formPanelCtrl", "UlvMainCtrlr", "formPanelCtrlId", "saveOnChange"], outputs: ["titleChanged", "moChanged", "formClose", "formRendered"] }, { kind: "component", type: i2.DynamicFormToolbaritemComponent, selector: "bnrc-dynamic-form-toolbaritem", inputs: ["mo", "index", "deviceName", "deviceSize", "context", "btn", "isEnable", "showText", "allColumns", "conditionalFormats"], outputs: ["btnClick"] }, { kind: "directive", type: i2.FormCloseDirective, selector: "[formClose]", inputs: ["isMobile"] }, { kind: "directive", type: i4.BarLeftDirective, selector: "[fd-bar-left]" }, { kind: "directive", type: i4.BarRightDirective, selector: "[fd-bar-right]" }, { kind: "component", type: i4.ButtonBarComponent, selector: "fd-button-bar", inputs: ["fullWidth", "fdType", "title", "ariaLabel", "ariaLabelledby", "id"] }, { kind: "component", type: i5.DialogComponent, selector: "fd-dialog", inputs: ["class", "dialogRef", "dialogConfig"] }, { kind: "component", type: i5.DialogBodyComponent, selector: "fd-dialog-body" }, { kind: "component", type: i5.DialogFooterComponent, selector: "fd-dialog-footer" }, { kind: "component", type: i5.DialogHeaderComponent, selector: "fd-dialog-header" }, { kind: "component", type: i5.DialogFooterButtonComponent, selector: "fd-dialog-footer-button" }, { kind: "directive", type: i5.DialogDecisiveButtonDirective, selector: "[fd-dialog-decisive-button]" }, { kind: "component", type: i6.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: i7.TemplateDirective, selector: "[fdTemplate]", inputs: ["fdTemplate"] }, { kind: "directive", type: i7.InitialFocusDirective, selector: "[fdInitialFocus], [fd-initial-focus]", inputs: ["fd-initial-focus", "enabled", "focusLastElement"] }, { kind: "directive", type: i8.ToolbarItemDirective, selector: "[fd-toolbar-item]" }, { kind: "directive", type: i9.FullscreenDialogDirective, selector: "[fullscreenDialog]", inputs: ["dialog", "dialogComponent", "fullscreen"], outputs: ["fullscreenChanged"] }, { kind: "pipe", type: i2.BbbTranslatePipe, name: "bbbTranslate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
134
134
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: FormDialogComponent, decorators: [{
135
135
  type: Component,
136
136
  args: [{ selector: 'bsu-form-dialog', providers: [ContainerService], changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-template let-dialog let-dialogConfig=\"dialogConfig\" #dialog>\n <fd-dialog [dialogConfig]=\"dialogConfig\" [dialogRef]=\"dialog\" #dialogTplRef>\n <fd-dialog-header>\n <ng-template fdTemplate=\"header\">\n <div fd-bar-left>\n <h1 fd-title>{{ dialogConfig.data.caption }}</h1>\n </div>\n <div fd-bar-right>\n <fd-button-bar\n *ngIf=\"dialogConfig.data.canFullscreen\"\n ariaLabel=\"fullscreen\"\n [glyph]=\"fullscreen ? 'exitfullscreen' : 'resize'\"\n fullscreenDialog\n [dialog]=\"dialog\"\n [fullscreen]=\"fullscreen\"\n (fullscreenChanged)=\"fullscreen = $event\"\n [dialogComponent]=\"dialogTplRef\"\n ></fd-button-bar>\n <fd-button-bar ariaLabel=\"close\" glyph=\"decline\" (click)=\"onCancel()\"></fd-button-bar>\n </div>\n </ng-template>\n </fd-dialog-header>\n\n <fd-dialog-body>\n <bnrc-form [formPanelCtrl]=\"formPanelCtrlr\" [params]=\"params\" (formClose)=\"onFormClose()\"></bnrc-form>\n </fd-dialog-body>\n <fd-dialog-footer [style.display]=\"!showFooter ? 'none' : null\">\n <ng-container *ngFor=\"let btn of formPanelCtrlr?.Adapter?.Control?.toolbar?.items\">\n <ng-container\n *ngIf=\"!(btn === '-' || btn.text === '-') && ((btn.isBuiltin && btn.inFooter) || btn.isWorkflow)\"\n >\n <ng-container\n *ngTemplateOutlet=\"\n btn.Data?.CustomUi?.Selector ? dynamicBtnTemplate : btnTemplate;\n context: { $implicit: btn }\n \"\n ></ng-container>\n <ng-template #btnTemplate let-btn>\n <fd-dialog-footer-button>\n <fd-button-bar\n fd-dialog-decisive-button\n [fdType]=\"btn.isWorkflow ? 'attention' : btn.design\"\n [label]=\"btn.text | bbbTranslate\"\n [glyph]=\"btn.newIcon ? btn.newIcon : null\"\n (click)=\"btn.handler(btn, formPanelCtrlr?.Adapter?.Control)\"\n ></fd-button-bar>\n </fd-dialog-footer-button>\n </ng-template>\n <ng-template #dynamicBtnTemplate let-btn>\n <fd-dialog-footer-button>\n <bnrc-dynamic-form-toolbaritem\n fd-toolbar-item\n [component]=\"btn.Data.CustomUi\"\n [context]=\"btn\"\n [isEnable]=\"btn.Command?._isEnable\"\n (btnClick)=\"btn.handler(btn, formPanelCtrlr?.Adapter?.Control)\"\n ></bnrc-dynamic-form-toolbaritem>\n </fd-dialog-footer-button>\n </ng-template>\n </ng-container>\n </ng-container>\n <!-- <ng-template #saveBtn>\n <fd-dialog-footer-button>\n <fd-button-bar\n fd-dialog-decisive-button\n fdType=\"emphasized\"\n [label]=\"'Save' | bbbTranslate\"\n (click)=\"onSave()\"\n ></fd-button-bar>\n </fd-dialog-footer-button>\n </ng-template>-->\n\n <fd-dialog-footer-button *ngIf=\"!isNonePersistance\">\n <fd-button-bar\n fd-initial-focus\n fd-dialog-decisive-button\n [label]=\"'Cancel' | bbbTranslate\"\n (click)=\"onCancel()\"\n ></fd-button-bar>\n </fd-dialog-footer-button>\n </fd-dialog-footer>\n </fd-dialog>\n</ng-template>\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"] }]
@@ -28,7 +28,7 @@ export class FormDialogLessComponent extends ContainerComponent {
28
28
  onFormClose() { }
29
29
  }
30
30
  FormDialogLessComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: FormDialogLessComponent, deps: [{ token: i1.DialogParams }, { token: i0.ElementRef }, { token: i2.ActivatedRoute }, { token: i1.PortalService }, { token: i0.ViewContainerRef }, { token: i1.BarsaDialogService }, { token: i0.Injector }, { token: i2.Router }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: i1.ContainerService, optional: true, self: true }, { token: FORM_DIALOG_COMPONENT, optional: true }], target: i0.ɵɵFactoryTarget.Component });
31
- 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: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i1.FormComponent, selector: "bnrc-form", inputs: ["params", "customFormPanelUi", "formPanelCtrl", "UlvMainCtrlr", "formPanelCtrlId"], outputs: ["titleChanged", "moChanged", "formClose", "formRendered"] }, { kind: "directive", type: i1.FormCloseDirective, selector: "[formClose]", inputs: ["isMobile"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
31
+ 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: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i1.FormComponent, selector: "bnrc-form", inputs: ["params", "customFormPanelUi", "formPanelCtrl", "UlvMainCtrlr", "formPanelCtrlId", "saveOnChange"], outputs: ["titleChanged", "moChanged", "formClose", "formRendered"] }, { kind: "directive", type: i1.FormCloseDirective, selector: "[formClose]", inputs: ["isMobile"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
32
32
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: FormDialogLessComponent, decorators: [{
33
33
  type: Component,
34
34
  args: [{ selector: 'bsu-form-dialog-less', changeDetection: ChangeDetectionStrategy.OnPush, providers: [ContainerService], template: "<bnrc-form *ngIf=\"rendered\" [formPanelCtrl]=\"formPanelCtrlr\" [params]=\"params\" (formClose)=\"onFormClose()\"></bnrc-form>\r\n" }]