barsa-sap-ui 2.2.63 → 2.2.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/barsa-cartable-form/barsa-cartable-form.component.mjs +1 -1
- package/esm2022/lib/barsa-chat/barsa-chat.component.mjs +2 -2
- package/esm2022/lib/barsa-dynamic-field/barsa-dynamic-field.component.mjs +1 -1
- package/esm2022/lib/barsa-question-answer-form/barsa-question-answer-form.component.mjs +1 -1
- package/esm2022/lib/barsa-table-column/barsa-table-column.component.mjs +1 -1
- package/esm2022/lib/column-matrix-renderer/column-matrix-renderer.component.mjs +1 -1
- package/esm2022/lib/column-renderer/column-renderer.component.mjs +5 -3
- package/esm2022/lib/layout-control/layout-control.component.mjs +5 -3
- package/esm2022/lib/list-item/list-item.component.mjs +1 -1
- package/esm2022/lib/models/grid-data-provider.mjs +5 -3
- package/esm2022/lib/sap-ui-report-base.component.mjs +2 -2
- package/esm2022/lib/ui-container-with-button/ui-container-with-button.component.mjs +1 -1
- package/esm2022/lib/ui-date-range-ex/ui-date-range-ex.component.mjs +2 -2
- package/esm2022/lib/ui-matrix-view/ui-matrix-view.component.mjs +2 -2
- package/esm2022/lib/ui-mo-info-general-object-ui/ui-mo-info-general-object-ui.component.mjs +1 -1
- package/esm2022/lib/ui-num-int-ui/ui-num-int-ui.component.mjs +3 -3
- package/fesm2022/barsa-sap-ui.mjs +27 -21
- package/fesm2022/barsa-sap-ui.mjs.map +1 -1
- package/lib/column-renderer/column-renderer.component.d.ts +2 -1
- package/lib/layout-control/layout-control.component.d.ts +2 -1
- package/lib/models/grid-data-provider.d.ts +2 -1
- package/package.json +1 -1
|
@@ -71,11 +71,11 @@ export class UiMatrixViewComponent extends ReportViewBaseComponent {
|
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiMatrixViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
74
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: UiMatrixViewComponent, selector: "bsu-ui-matrix-view", inputs: { deviceSize: "deviceSize", deviceName: "deviceName", moDataList: "moDataList", columns: "columns", formLayout: "formLayout", conditionalFormat: "conditionalFormat", activeCell: "activeCell", valueControlFieldCaption: "valueControlFieldCaption", formTemplate: "formTemplate", valueType: "valueType", cellWidth: "cellWidth", cellHeight: "cellHeight", verticalLabelWidth: "verticalLabelWidth", fitWidth: "fitWidth", minWidth: "minWidth", minHeight: "minHeight", rowResizer: "rowResizer", enableResizing: "enableResizing" }, outputs: { selectionChange: "selectionChange" }, viewQueries: [{ propertyName: "tableHead", first: true, predicate: ["tableHead"], descendants: true }, { propertyName: "ellipsifyDirective", first: true, predicate: EllipsifyDirective, descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<fd-layout-panel style=\"border-radius: 0\">\r\n <fd-layout-panel-body [bleed]=\"true\">\r\n <table\r\n fd-table\r\n ellipsify\r\n [fitWidth]=\"fitWidth\"\r\n [minWidth]=\"minWidth\"\r\n [minHeight]=\"minHeight\"\r\n [VerticalLableVisible]=\"false\"\r\n [rowResizer]=\"rowResizer\"\r\n [enableResizing]=\"enableResizing\"\r\n >\r\n <thead fd-table-header #tableHead>\r\n <tr fd-table-row>\r\n <th fd-table-cell class=\"empty-cell\"></th>\r\n @for (column of columns; track column) {\r\n <th fd-table-cell>\r\n <span>\r\n {{ column.Caption }}\r\n </span>\r\n </th>\r\n }\r\n </tr>\r\n </thead>\r\n <tbody fd-table-body>\r\n @if (moDataList?.length) { @for (mo of moDataList; track mo; let i = $index) { @if (mo.VerticalColumn) {\r\n <tr\r\n fd-table-row\r\n #trEl\r\n [applyConditionalFormats]=\"conditionalFormat\"\r\n [styleIndex]=\"mo.$StyleIndex ? mo.$StyleIndex : []\"\r\n [hostEl]=\"trEl\"\r\n [hoverable]=\"false\"\r\n [class]=\"'row_' + mo?.VerticalData?.Id\"\r\n >\r\n <td fd-table-cell class=\"vertical-label\">\r\n <span>{{ mo.VerticalColumn }}</span>\r\n </td>\r\n @for (column of columns; track column; let j = $index; let first = $first; let last = $last) {\r\n <td fd-table-cell [hoverable]=\"true\">\r\n <bsu-column-matrix-renderer\r\n class=\"column-renderer\"\r\n (cellClick)=\"onSelectionChange({ value: mo[column.Caption], index: { i: i, j: j } })\"\r\n [value]=\"mo[column.Caption]\"\r\n [isActive]=\"i === activeCell?.i && j === activeCell?.j\"\r\n [formLayout]=\"formLayout\"\r\n [uiControl]=\"valueControlFieldCaption | controlUi: formLayout\"\r\n [columnCaption]=\"column.Caption\"\r\n [valueType]=\"valueType\"\r\n [height]=\"mo.height\"\r\n (changeToEdit)=\"onChangeToEdit(i, j)\"\r\n ></bsu-column-matrix-renderer>\r\n </td>\r\n }\r\n </tr>\r\n } } }\r\n </tbody>\r\n </table>\r\n </fd-layout-panel-body>\r\n</fd-layout-panel>\r\n", styles: ["fd-layout-panel{height:100%}fd-layout-panel table thead tr{background-color:var(--sapList_HeaderBackground, #f2f2f2)}fd-layout-panel table tbody{border-bottom:none}fd-layout-panel table tbody .fd-table__cell.vertical-label{background-color:var(--
|
|
74
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: UiMatrixViewComponent, selector: "bsu-ui-matrix-view", inputs: { deviceSize: "deviceSize", deviceName: "deviceName", moDataList: "moDataList", columns: "columns", formLayout: "formLayout", conditionalFormat: "conditionalFormat", activeCell: "activeCell", valueControlFieldCaption: "valueControlFieldCaption", formTemplate: "formTemplate", valueType: "valueType", cellWidth: "cellWidth", cellHeight: "cellHeight", verticalLabelWidth: "verticalLabelWidth", fitWidth: "fitWidth", minWidth: "minWidth", minHeight: "minHeight", rowResizer: "rowResizer", enableResizing: "enableResizing" }, outputs: { selectionChange: "selectionChange" }, viewQueries: [{ propertyName: "tableHead", first: true, predicate: ["tableHead"], descendants: true }, { propertyName: "ellipsifyDirective", first: true, predicate: EllipsifyDirective, descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<fd-layout-panel style=\"border-radius: 0\">\r\n <fd-layout-panel-body [bleed]=\"true\">\r\n <table\r\n fd-table\r\n ellipsify\r\n [fitWidth]=\"fitWidth\"\r\n [minWidth]=\"minWidth\"\r\n [minHeight]=\"minHeight\"\r\n [VerticalLableVisible]=\"false\"\r\n [rowResizer]=\"rowResizer\"\r\n [enableResizing]=\"enableResizing\"\r\n >\r\n <thead fd-table-header #tableHead>\r\n <tr fd-table-row>\r\n <th fd-table-cell class=\"empty-cell\"></th>\r\n @for (column of columns; track column) {\r\n <th fd-table-cell>\r\n <span>\r\n {{ column.Caption }}\r\n </span>\r\n </th>\r\n }\r\n </tr>\r\n </thead>\r\n <tbody fd-table-body>\r\n @if (moDataList?.length) { @for (mo of moDataList; track mo; let i = $index) { @if (mo.VerticalColumn) {\r\n <tr\r\n fd-table-row\r\n #trEl\r\n [applyConditionalFormats]=\"conditionalFormat\"\r\n [styleIndex]=\"mo.$StyleIndex ? mo.$StyleIndex : []\"\r\n [hostEl]=\"trEl\"\r\n [hoverable]=\"false\"\r\n [class]=\"'row_' + mo?.VerticalData?.Id\"\r\n >\r\n <td fd-table-cell class=\"vertical-label\">\r\n <span>{{ mo.VerticalColumn }}</span>\r\n </td>\r\n @for (column of columns; track column; let j = $index; let first = $first; let last = $last) {\r\n <td fd-table-cell [hoverable]=\"true\">\r\n <bsu-column-matrix-renderer\r\n class=\"column-renderer\"\r\n (cellClick)=\"onSelectionChange({ value: mo[column.Caption], index: { i: i, j: j } })\"\r\n [value]=\"mo[column.Caption]\"\r\n [isActive]=\"i === activeCell?.i && j === activeCell?.j\"\r\n [formLayout]=\"formLayout\"\r\n [uiControl]=\"valueControlFieldCaption | controlUi: formLayout\"\r\n [columnCaption]=\"column.Caption\"\r\n [valueType]=\"valueType\"\r\n [height]=\"mo.height\"\r\n (changeToEdit)=\"onChangeToEdit(i, j)\"\r\n ></bsu-column-matrix-renderer>\r\n </td>\r\n }\r\n </tr>\r\n } } }\r\n </tbody>\r\n </table>\r\n </fd-layout-panel-body>\r\n</fd-layout-panel>\r\n", styles: ["fd-layout-panel{height:100%}fd-layout-panel table thead tr{background-color:var(--sapList_HeaderBackground, #f2f2f2)}fd-layout-panel table tbody{border-bottom:none}fd-layout-panel table tbody .fd-table__cell.vertical-label{background-color:var(--sapList_AlternatingBackground)}:host{display:block;width:100%;height:100%;overflow:hidden}::-webkit-scrollbar{height:7px;width:7px}::-webkit-scrollbar-track{box-shadow:inset 0 0 2px #d0cece;border-radius:10px}::-webkit-scrollbar-thumb{background:#c8cacb;border-radius:10px}::-webkit-scrollbar-thumb:hover{background:#adb0b2}\n"], dependencies: [{ kind: "directive", type: i1.EllipsifyDirective, selector: "[ellipsify]", inputs: ["limitLine"] }, { kind: "component", type: i2.LayoutPanelComponent, selector: "fd-layout-panel", inputs: ["backgroundImage", "id", "transparent"] }, { kind: "component", type: i2.LayoutPanelBodyComponent, selector: "fd-layout-panel-body", inputs: ["bleed"] }, { kind: "component", type: i3.TableComponent, selector: "table[fd-table]", inputs: ["noBorderX", "noBorderY", "noOuterBorder", "topBorder", "popIn", "responsive", "keys", "allCellsFocusable"], exportAs: ["fd-table"] }, { kind: "directive", type: i3.TableHeaderDirective, selector: "[fdTableHeader], [fd-table-header]", inputs: ["noBorderX", "noBorderY", "nonInteractive"] }, { kind: "directive", type: i3.TableBodyDirective, selector: "[fdTableBody], [fd-table-body]", inputs: ["noBorderX", "noBorderY"] }, { kind: "directive", type: i3.TableRowDirective, selector: "[fdTableRow], [fd-table-row]", inputs: ["activable", "highlightActive", "hoverable", "focusable", "main", "secondary", "active"] }, { kind: "directive", type: i3.TableCellDirective, selector: "[fdTableCell], [fd-table-cell]", inputs: ["noBorderX", "noBorderY", "activable", "focusable", "hoverable", "fitContent", "noPadding", "noData", "nonInteractive", "key"] }, { kind: "component", type: i4.ColumnMatrixRendererComponent, selector: "bsu-column-matrix-renderer", inputs: ["value", "valueCaption", "formLayout", "columnCaption", "uiControl", "valueType", "isActive", "height"], outputs: ["cellClick", "changeToEdit"] }, { kind: "directive", type: i5.ApplyConditionalFormatsDirective, selector: "[applyConditionalFormats]", inputs: ["applyConditionalFormats", "styleIndex", "hostEl", "dbName"] }, { kind: "pipe", type: i1.ControlUiPipe, name: "controlUi" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
75
75
|
}
|
|
76
76
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiMatrixViewComponent, decorators: [{
|
|
77
77
|
type: Component,
|
|
78
|
-
args: [{ selector: 'bsu-ui-matrix-view', changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, template: "<fd-layout-panel style=\"border-radius: 0\">\r\n <fd-layout-panel-body [bleed]=\"true\">\r\n <table\r\n fd-table\r\n ellipsify\r\n [fitWidth]=\"fitWidth\"\r\n [minWidth]=\"minWidth\"\r\n [minHeight]=\"minHeight\"\r\n [VerticalLableVisible]=\"false\"\r\n [rowResizer]=\"rowResizer\"\r\n [enableResizing]=\"enableResizing\"\r\n >\r\n <thead fd-table-header #tableHead>\r\n <tr fd-table-row>\r\n <th fd-table-cell class=\"empty-cell\"></th>\r\n @for (column of columns; track column) {\r\n <th fd-table-cell>\r\n <span>\r\n {{ column.Caption }}\r\n </span>\r\n </th>\r\n }\r\n </tr>\r\n </thead>\r\n <tbody fd-table-body>\r\n @if (moDataList?.length) { @for (mo of moDataList; track mo; let i = $index) { @if (mo.VerticalColumn) {\r\n <tr\r\n fd-table-row\r\n #trEl\r\n [applyConditionalFormats]=\"conditionalFormat\"\r\n [styleIndex]=\"mo.$StyleIndex ? mo.$StyleIndex : []\"\r\n [hostEl]=\"trEl\"\r\n [hoverable]=\"false\"\r\n [class]=\"'row_' + mo?.VerticalData?.Id\"\r\n >\r\n <td fd-table-cell class=\"vertical-label\">\r\n <span>{{ mo.VerticalColumn }}</span>\r\n </td>\r\n @for (column of columns; track column; let j = $index; let first = $first; let last = $last) {\r\n <td fd-table-cell [hoverable]=\"true\">\r\n <bsu-column-matrix-renderer\r\n class=\"column-renderer\"\r\n (cellClick)=\"onSelectionChange({ value: mo[column.Caption], index: { i: i, j: j } })\"\r\n [value]=\"mo[column.Caption]\"\r\n [isActive]=\"i === activeCell?.i && j === activeCell?.j\"\r\n [formLayout]=\"formLayout\"\r\n [uiControl]=\"valueControlFieldCaption | controlUi: formLayout\"\r\n [columnCaption]=\"column.Caption\"\r\n [valueType]=\"valueType\"\r\n [height]=\"mo.height\"\r\n (changeToEdit)=\"onChangeToEdit(i, j)\"\r\n ></bsu-column-matrix-renderer>\r\n </td>\r\n }\r\n </tr>\r\n } } }\r\n </tbody>\r\n </table>\r\n </fd-layout-panel-body>\r\n</fd-layout-panel>\r\n", styles: ["fd-layout-panel{height:100%}fd-layout-panel table thead tr{background-color:var(--sapList_HeaderBackground, #f2f2f2)}fd-layout-panel table tbody{border-bottom:none}fd-layout-panel table tbody .fd-table__cell.vertical-label{background-color:var(--
|
|
78
|
+
args: [{ selector: 'bsu-ui-matrix-view', changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, template: "<fd-layout-panel style=\"border-radius: 0\">\r\n <fd-layout-panel-body [bleed]=\"true\">\r\n <table\r\n fd-table\r\n ellipsify\r\n [fitWidth]=\"fitWidth\"\r\n [minWidth]=\"minWidth\"\r\n [minHeight]=\"minHeight\"\r\n [VerticalLableVisible]=\"false\"\r\n [rowResizer]=\"rowResizer\"\r\n [enableResizing]=\"enableResizing\"\r\n >\r\n <thead fd-table-header #tableHead>\r\n <tr fd-table-row>\r\n <th fd-table-cell class=\"empty-cell\"></th>\r\n @for (column of columns; track column) {\r\n <th fd-table-cell>\r\n <span>\r\n {{ column.Caption }}\r\n </span>\r\n </th>\r\n }\r\n </tr>\r\n </thead>\r\n <tbody fd-table-body>\r\n @if (moDataList?.length) { @for (mo of moDataList; track mo; let i = $index) { @if (mo.VerticalColumn) {\r\n <tr\r\n fd-table-row\r\n #trEl\r\n [applyConditionalFormats]=\"conditionalFormat\"\r\n [styleIndex]=\"mo.$StyleIndex ? mo.$StyleIndex : []\"\r\n [hostEl]=\"trEl\"\r\n [hoverable]=\"false\"\r\n [class]=\"'row_' + mo?.VerticalData?.Id\"\r\n >\r\n <td fd-table-cell class=\"vertical-label\">\r\n <span>{{ mo.VerticalColumn }}</span>\r\n </td>\r\n @for (column of columns; track column; let j = $index; let first = $first; let last = $last) {\r\n <td fd-table-cell [hoverable]=\"true\">\r\n <bsu-column-matrix-renderer\r\n class=\"column-renderer\"\r\n (cellClick)=\"onSelectionChange({ value: mo[column.Caption], index: { i: i, j: j } })\"\r\n [value]=\"mo[column.Caption]\"\r\n [isActive]=\"i === activeCell?.i && j === activeCell?.j\"\r\n [formLayout]=\"formLayout\"\r\n [uiControl]=\"valueControlFieldCaption | controlUi: formLayout\"\r\n [columnCaption]=\"column.Caption\"\r\n [valueType]=\"valueType\"\r\n [height]=\"mo.height\"\r\n (changeToEdit)=\"onChangeToEdit(i, j)\"\r\n ></bsu-column-matrix-renderer>\r\n </td>\r\n }\r\n </tr>\r\n } } }\r\n </tbody>\r\n </table>\r\n </fd-layout-panel-body>\r\n</fd-layout-panel>\r\n", styles: ["fd-layout-panel{height:100%}fd-layout-panel table thead tr{background-color:var(--sapList_HeaderBackground, #f2f2f2)}fd-layout-panel table tbody{border-bottom:none}fd-layout-panel table tbody .fd-table__cell.vertical-label{background-color:var(--sapList_AlternatingBackground)}:host{display:block;width:100%;height:100%;overflow:hidden}::-webkit-scrollbar{height:7px;width:7px}::-webkit-scrollbar-track{box-shadow:inset 0 0 2px #d0cece;border-radius:10px}::-webkit-scrollbar-thumb{background:#c8cacb;border-radius:10px}::-webkit-scrollbar-thumb:hover{background:#adb0b2}\n"] }]
|
|
79
79
|
}], propDecorators: { tableHead: [{
|
|
80
80
|
type: ViewChild,
|
|
81
81
|
args: ['tableHead']
|
|
@@ -5,7 +5,7 @@ import * as i1 from "barsa-novin-ray-core";
|
|
|
5
5
|
import * as i2 from "@angular/common";
|
|
6
6
|
export class UiMoInfoGeneralObjectUiComponent extends FieldBaseComponent {
|
|
7
7
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiMoInfoGeneralObjectUiComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
8
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: UiMoInfoGeneralObjectUiComponent, selector: "bsu-ui-mo-info-general-object-ui", usesInheritance: true, ngImport: i0, template: "<bnrc-field-ui\n [class.control-disabled]=\"(disableOrReadonly$ | async) === true\"\n class=\"inner-control\"\n [customField]=\"context?._typeComboControl\"\n></bnrc-field-ui>\n<bnrc-field-ui\n [class.control-disabled]=\"(disableOrReadonly$ | async) === true\"\n class=\"inner-control\"\n [customField]=\"context?._objectComboControl\"\n></bnrc-field-ui>\n", styles: [":host{display:flex;column-gap:10px;align-items:center}:host bnrc-field-ui:first-child{flex:30}:host bnrc-field-ui:last-child{flex:70}\n"], dependencies: [{ kind: "component", type: i1.FieldUiComponent, selector: "bnrc-field-ui", inputs: ["isSearchPanel", "customField", "componentUi", "layoutInfo", "inlineEdit", "focusControl", "formHeight"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: UiMoInfoGeneralObjectUiComponent, selector: "bsu-ui-mo-info-general-object-ui", usesInheritance: true, ngImport: i0, template: "<bnrc-field-ui\n [class.control-disabled]=\"(disableOrReadonly$ | async) === true\"\n class=\"inner-control\"\n [customField]=\"context?._typeComboControl\"\n></bnrc-field-ui>\n<bnrc-field-ui\n [class.control-disabled]=\"(disableOrReadonly$ | async) === true\"\n class=\"inner-control\"\n [customField]=\"context?._objectComboControl\"\n></bnrc-field-ui>\n", styles: [":host{display:flex;column-gap:10px;align-items:center}:host bnrc-field-ui:first-child{flex:30}:host bnrc-field-ui:last-child{flex:70}\n"], dependencies: [{ kind: "component", type: i1.FieldUiComponent, selector: "bnrc-field-ui", inputs: ["isSearchPanel", "customField", "componentUi", "layoutInfo", "inlineEdit", "focusControl", "cellEdit", "formHeight"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
9
9
|
}
|
|
10
10
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiMoInfoGeneralObjectUiComponent, decorators: [{
|
|
11
11
|
type: Component,
|
|
@@ -9,13 +9,13 @@ export class UiNumIntUiComponent extends NumberBaseComponent {
|
|
|
9
9
|
super.ngOnInit();
|
|
10
10
|
}
|
|
11
11
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiNumIntUiComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
12
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: UiNumIntUiComponent, selector: "bsu-ui-num-int-ui", viewQueries: [{ propertyName: "inputRef", first: true, predicate: ["inputRef"], descendants: true, read: ElementRef, static: true }], usesInheritance: true, ngImport: i0, template: "<input\r\n #inputRef\r\n fd-form-control\r\n [placeholder]=\"Setting.NullText || ''\"\r\n [attr.readonly]=\"(readonly$ | async) === true ? true : null\"\r\n [attr.disabled]=\"(disable$ | async) === true ? true : null\"
|
|
12
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: UiNumIntUiComponent, selector: "bsu-ui-num-int-ui", viewQueries: [{ propertyName: "inputRef", first: true, predicate: ["inputRef"], descendants: true, read: ElementRef, static: true }], usesInheritance: true, ngImport: i0, template: "<input\r\n #inputRef\r\n fd-form-control\r\n [placeholder]=\"Setting.NullText || ''\"\r\n [attr.readonly]=\"(readonly$ | async) === true ? true : null\"\r\n [attr.disabled]=\"(disable$ | async) === true ? true : null\"\r\n [type]=\"hasMask ? 'text' : 'number'\"\r\n [id]=\"id\"\r\n [style.direction]=\"'ltr'\"\r\n [style.text-align]=\"Setting.IsLtr === true ? 'left' : 'right'\"\r\n (keydown)=\"onKeyDown($event)\"\r\n (input)=\"onValueChange($event)\"\r\n [class.inlineEdit]=\"inlineEdit \"\r\n [class.cellEdit]=\"cellEdit\"\r\n \r\n/>\r\n\r\n\r\n", styles: [":host{display:block}.number-input{display:block}\n"], dependencies: [{ kind: "component", type: i1.FormControlComponent, selector: "input[fd-form-control], textarea[fd-form-control]", inputs: ["state", "type", "class", "ariaLabel", "ariaLabelledBy"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }] }); }
|
|
13
13
|
}
|
|
14
14
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiNumIntUiComponent, decorators: [{
|
|
15
15
|
type: Component,
|
|
16
|
-
args: [{ selector: 'bsu-ui-num-int-ui', standalone: false, template: "<input\r\n #inputRef\r\n fd-form-control\r\n [placeholder]=\"Setting.NullText || ''\"\r\n [attr.readonly]=\"(readonly$ | async) === true ? true : null\"\r\n [attr.disabled]=\"(disable$ | async) === true ? true : null\"
|
|
16
|
+
args: [{ selector: 'bsu-ui-num-int-ui', standalone: false, template: "<input\r\n #inputRef\r\n fd-form-control\r\n [placeholder]=\"Setting.NullText || ''\"\r\n [attr.readonly]=\"(readonly$ | async) === true ? true : null\"\r\n [attr.disabled]=\"(disable$ | async) === true ? true : null\"\r\n [type]=\"hasMask ? 'text' : 'number'\"\r\n [id]=\"id\"\r\n [style.direction]=\"'ltr'\"\r\n [style.text-align]=\"Setting.IsLtr === true ? 'left' : 'right'\"\r\n (keydown)=\"onKeyDown($event)\"\r\n (input)=\"onValueChange($event)\"\r\n [class.inlineEdit]=\"inlineEdit \"\r\n [class.cellEdit]=\"cellEdit\"\r\n \r\n/>\r\n\r\n\r\n", styles: [":host{display:block}.number-input{display:block}\n"] }]
|
|
17
17
|
}], propDecorators: { inputRef: [{
|
|
18
18
|
type: ViewChild,
|
|
19
19
|
args: ['inputRef', { read: ElementRef, static: true }]
|
|
20
20
|
}] } });
|
|
21
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
21
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidWktbnVtLWludC11aS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYXJzYS1zYXAtdWkvc3JjL2xpYi91aS1udW0taW50LXVpL3VpLW51bS1pbnQtdWkuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYmFyc2Etc2FwLXVpL3NyYy9saWIvdWktbnVtLWludC11aS91aS1udW0taW50LXVpLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFVLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUV6RSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQzs7OztBQU8zRCxNQUFNLE9BQU8sbUJBQW9CLFNBQVEsbUJBQW1CO0lBS3hELFFBQVE7UUFDSixJQUFJLENBQUMsWUFBWSxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsYUFBYSxDQUFDO1FBQ2hELEtBQUssQ0FBQyxRQUFRLEVBQUUsQ0FBQztJQUNyQixDQUFDOytHQVJRLG1CQUFtQjttR0FBbkIsbUJBQW1CLDBJQUNHLFVBQVUsa0VDVjdDLGdsQkFrQkE7OzRGRFRhLG1CQUFtQjtrQkFOL0IsU0FBUzsrQkFDSSxtQkFBbUIsY0FHakIsS0FBSzs4QkFJakIsUUFBUTtzQkFEUCxTQUFTO3VCQUFDLFVBQVUsRUFBRSxFQUFFLElBQUksRUFBRSxVQUFVLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRWxlbWVudFJlZiwgT25Jbml0LCBWaWV3Q2hpbGQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbmltcG9ydCB7IE51bWJlckJhc2VDb21wb25lbnQgfSBmcm9tICdiYXJzYS1ub3Zpbi1yYXktY29yZSc7XHJcbkBDb21wb25lbnQoe1xyXG4gICAgc2VsZWN0b3I6ICdic3UtdWktbnVtLWludC11aScsXHJcbiAgICB0ZW1wbGF0ZVVybDogJy4vdWktbnVtLWludC11aS5jb21wb25lbnQuaHRtbCcsXHJcbiAgICBzdHlsZVVybHM6IFsnLi91aS1udW0taW50LXVpLmNvbXBvbmVudC5zY3NzJ10sXHJcbiAgICBzdGFuZGFsb25lOiBmYWxzZVxyXG59KVxyXG5leHBvcnQgY2xhc3MgVWlOdW1JbnRVaUNvbXBvbmVudCBleHRlbmRzIE51bWJlckJhc2VDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgQFZpZXdDaGlsZCgnaW5wdXRSZWYnLCB7IHJlYWQ6IEVsZW1lbnRSZWYsIHN0YXRpYzogdHJ1ZSB9KVxyXG4gICAgaW5wdXRSZWY6IEVsZW1lbnRSZWY7XHJcbiAgICBpbnB1dEVsZW1lbnQ6IEhUTUxJbnB1dEVsZW1lbnQgfCBudWxsIHwgdW5kZWZpbmVkO1xyXG5cclxuICAgIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gICAgICAgIHRoaXMuaW5wdXRFbGVtZW50ID0gdGhpcy5pbnB1dFJlZi5uYXRpdmVFbGVtZW50O1xyXG4gICAgICAgIHN1cGVyLm5nT25Jbml0KCk7XHJcbiAgICB9XHJcbn1cclxuIiwiPGlucHV0XHJcbiAgICAjaW5wdXRSZWZcclxuICAgIGZkLWZvcm0tY29udHJvbFxyXG4gICAgW3BsYWNlaG9sZGVyXT1cIlNldHRpbmcuTnVsbFRleHQgfHwgJydcIlxyXG4gICAgW2F0dHIucmVhZG9ubHldPVwiKHJlYWRvbmx5JCB8IGFzeW5jKSA9PT0gdHJ1ZSA/IHRydWUgOiBudWxsXCJcclxuICAgIFthdHRyLmRpc2FibGVkXT1cIihkaXNhYmxlJCB8IGFzeW5jKSA9PT0gdHJ1ZSA/IHRydWUgOiBudWxsXCJcclxuICAgIFt0eXBlXT1cImhhc01hc2sgPyAndGV4dCcgOiAnbnVtYmVyJ1wiXHJcbiAgICBbaWRdPVwiaWRcIlxyXG4gICAgW3N0eWxlLmRpcmVjdGlvbl09XCInbHRyJ1wiXHJcbiAgICBbc3R5bGUudGV4dC1hbGlnbl09XCJTZXR0aW5nLklzTHRyID09PSB0cnVlID8gJ2xlZnQnIDogJ3JpZ2h0J1wiXHJcbiAgICAoa2V5ZG93bik9XCJvbktleURvd24oJGV2ZW50KVwiXHJcbiAgICAoaW5wdXQpPVwib25WYWx1ZUNoYW5nZSgkZXZlbnQpXCJcclxuICAgIFtjbGFzcy5pbmxpbmVFZGl0XT1cImlubGluZUVkaXQgXCJcclxuICAgIFtjbGFzcy5jZWxsRWRpdF09XCJjZWxsRWRpdFwiXHJcbiAgICBcclxuLz5cclxuXHJcblxyXG4iXX0=
|