barsa-sap-ui 2.2.61 → 2.2.63
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-asp-viewer/barsa-asp-viewer.component.mjs +18 -3
- package/esm2022/lib/barsa-card-layout-panel/barsa-card-layout-panel.component.mjs +1 -1
- package/esm2022/lib/barsa-form-layout-panel/barsa-form-layout-panel.component.mjs +3 -3
- package/esm2022/lib/barsa-form-side-content/barsa-form-side-content.component.mjs +1 -1
- package/esm2022/lib/barsa-table-row/barsa-table-row.component.mjs +3 -3
- package/esm2022/lib/fundamental-dynamic-form/fundamental-dynamic-form.component.mjs +3 -3
- package/esm2022/lib/layout-control/layout-control.component.mjs +7 -2
- package/esm2022/lib/ly-layout-panel/ly-layout-panel.component.mjs +5 -3
- package/esm2022/lib/ly-tab-page/ly-tab-page.component.mjs +10 -5
- package/esm2022/lib/models/grid-data-provider.mjs +9 -4
- package/esm2022/lib/ui-asp-report-viewer/ui-asp-report-viewer.component.mjs +14 -4
- package/esm2022/lib/ui-mo-info-ulv-combo/ui-mo-info-ulv-combo.component.mjs +3 -3
- package/esm2022/lib/ui-report-container/ui-report-container.component.mjs +3 -3
- package/esm2022/lib/ui-tinymce/ui-tinymce.component.mjs +3 -3
- package/esm2022/lib/ulv-context-menu/ulv-context-menu.component.mjs +3 -3
- package/esm2022/lib/ulv-toolbar/ulv-toolbar.component.mjs +3 -3
- package/fesm2022/barsa-sap-ui.mjs +72 -31
- package/fesm2022/barsa-sap-ui.mjs.map +1 -1
- package/lib/barsa-asp-viewer/barsa-asp-viewer.component.d.ts +3 -1
- package/lib/layout-control/layout-control.component.d.ts +1 -0
- package/lib/ly-layout-panel/ly-layout-panel.component.d.ts +2 -1
- package/lib/ly-tab-page/ly-tab-page.component.d.ts +1 -0
- package/lib/models/grid-data-provider.d.ts +2 -0
- package/lib/ui-asp-report-viewer/ui-asp-report-viewer.component.d.ts +4 -0
- package/package.json +1 -1
|
@@ -9,6 +9,8 @@ export declare class BarsaAspViewerComponent extends BaseComponent implements On
|
|
|
9
9
|
parentHeight: number;
|
|
10
10
|
isReportPage: boolean;
|
|
11
11
|
hideSearchpanel: boolean;
|
|
12
|
+
fitToIframe: boolean;
|
|
13
|
+
defaultZoom: number;
|
|
12
14
|
form: ElementRef<HTMLFormElement>;
|
|
13
15
|
iframe: ElementRef<HTMLIFrameElement>;
|
|
14
16
|
hidden: ElementRef<HTMLInputElement>;
|
|
@@ -27,5 +29,5 @@ export declare class BarsaAspViewerComponent extends BaseComponent implements On
|
|
|
27
29
|
private _onLoadIfram;
|
|
28
30
|
private _submitForm;
|
|
29
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaAspViewerComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaAspViewerComponent, "bsu-barsa-asp-viewer", never, { "context": { "alias": "context"; "required": false; }; "parentHeight": { "alias": "parentHeight"; "required": false; }; "isReportPage": { "alias": "isReportPage"; "required": false; }; "hideSearchpanel": { "alias": "hideSearchpanel"; "required": false; }; }, {}, never, never, false, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaAspViewerComponent, "bsu-barsa-asp-viewer", never, { "context": { "alias": "context"; "required": false; }; "parentHeight": { "alias": "parentHeight"; "required": false; }; "isReportPage": { "alias": "isReportPage"; "required": false; }; "hideSearchpanel": { "alias": "hideSearchpanel"; "required": false; }; "fitToIframe": { "alias": "fitToIframe"; "required": false; }; "defaultZoom": { "alias": "defaultZoom"; "required": false; }; }, {}, never, never, false, never>;
|
|
31
33
|
}
|
|
@@ -6,6 +6,7 @@ export declare class LyLayoutPanelComponent extends LayoutPanelBaseComponent imp
|
|
|
6
6
|
renderItems: TemplateRef<any>;
|
|
7
7
|
isRoot: boolean;
|
|
8
8
|
hideTitle: boolean;
|
|
9
|
+
notPanelMode: boolean;
|
|
9
10
|
maxLabelWidth: number;
|
|
10
11
|
flex: any;
|
|
11
12
|
display: any;
|
|
@@ -28,5 +29,5 @@ export declare class LyLayoutPanelComponent extends LayoutPanelBaseComponent imp
|
|
|
28
29
|
setDisplay(): void;
|
|
29
30
|
protected _setBRule(): void;
|
|
30
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<LyLayoutPanelComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LyLayoutPanelComponent, "bsu-ly-layout-panel", never, { "renderItems": { "alias": "renderItems"; "required": false; }; "isRoot": { "alias": "isRoot"; "required": false; }; "hideTitle": { "alias": "hideTitle"; "required": false; }; }, {}, never, never, false, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LyLayoutPanelComponent, "bsu-ly-layout-panel", never, { "renderItems": { "alias": "renderItems"; "required": false; }; "isRoot": { "alias": "isRoot"; "required": false; }; "hideTitle": { "alias": "hideTitle"; "required": false; }; "notPanelMode": { "alias": "notPanelMode"; "required": false; }; }, {}, never, never, false, never>;
|
|
32
33
|
}
|
|
@@ -13,6 +13,7 @@ export declare class LyTabPageComponent extends LayoutPanelBaseComponent impleme
|
|
|
13
13
|
visible: boolean;
|
|
14
14
|
enable: boolean;
|
|
15
15
|
readonly: boolean;
|
|
16
|
+
private _tabpageService;
|
|
16
17
|
ngOnInit(): void;
|
|
17
18
|
refreshLayout(): void;
|
|
18
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<LyTabPageComponent, never>;
|
|
@@ -8,7 +8,9 @@ export declare class GridMoDataList {
|
|
|
8
8
|
searchTerm: string;
|
|
9
9
|
data$: Observable<MetaobjectDataModel[]>;
|
|
10
10
|
inlineEditMode: boolean;
|
|
11
|
+
subscriptions: any[];
|
|
11
12
|
constructor(moDataList$: Observable<MetaobjectDataModel[]>, gridSetting$: Observable<GridSetting>, visibleColumns$: Observable<ReportViewColumn[]>, searchTerm$: Observable<string>, inlineEditMode$: Observable<boolean>);
|
|
13
|
+
destroy(): void;
|
|
12
14
|
getSortby(): CollectionSort[];
|
|
13
15
|
getSortDirection(direction: any): SortDirection;
|
|
14
16
|
}
|
|
@@ -5,6 +5,10 @@ export declare class UiAspReportViewerComponent extends SapUiReportBaseComponent
|
|
|
5
5
|
isReportPage: boolean;
|
|
6
6
|
layoutInfo: LayoutSetting;
|
|
7
7
|
fillEmptySpace: FillEmptySpaceDirective;
|
|
8
|
+
singleControlInTabPage: boolean;
|
|
9
|
+
zoomValue: number;
|
|
10
|
+
private _tabpageService;
|
|
11
|
+
private _localStorage;
|
|
8
12
|
ngOnInit(): void;
|
|
9
13
|
private _resizeAspViewer;
|
|
10
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiAspReportViewerComponent, never>;
|