barsa-sap-ui 2.3.56 → 2.3.58
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/fesm2022/barsa-sap-ui.mjs +36 -12
- package/fesm2022/barsa-sap-ui.mjs.map +1 -1
- package/index.d.ts +7 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1911,13 +1911,15 @@ declare class LayoutActionsComponent extends FormToolbarBaseComponent implements
|
|
|
1911
1911
|
isMobile: boolean;
|
|
1912
1912
|
repositionScrollStrategy: ScrollStrategy;
|
|
1913
1913
|
autoClose: boolean;
|
|
1914
|
-
|
|
1915
|
-
|
|
1914
|
+
hasButtons: i0.WritableSignal<boolean>;
|
|
1915
|
+
mobileBottomBar: i0.Signal<boolean>;
|
|
1916
1916
|
scrollThrottle: number;
|
|
1917
1917
|
protected _overlay: Overlay;
|
|
1918
1918
|
ngOnInit(): void;
|
|
1919
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1919
1920
|
onAcceptWorkflow(): void;
|
|
1920
1921
|
onWorkflowButtonSelected(workflowButton: any): void;
|
|
1922
|
+
protected _setHasButtons(workflowButtons: any, buttons: any): void;
|
|
1921
1923
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutActionsComponent, never>;
|
|
1922
1924
|
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutActionsComponent, "bsu-layout-actions", never, { "workflowButtons": { "alias": "workflowButtons"; "required": false; }; "workflowButtonsComboMode": { "alias": "workflowButtonsComboMode"; "required": false; }; "canSend": { "alias": "canSend"; "required": false; }; "simple": { "alias": "simple"; "required": false; }; "footerDesign": { "alias": "footerDesign"; "required": false; }; }, { "workflowChoiceSelect": "workflowChoiceSelect"; }, never, never, false, never>;
|
|
1923
1925
|
}
|
|
@@ -2725,6 +2727,7 @@ declare class FormDialogComponent extends BaseComponent implements OnInit {
|
|
|
2725
2727
|
workflowButtons$: Observable<any[]>;
|
|
2726
2728
|
_formUiComponent: FormBaseComponent;
|
|
2727
2729
|
title: string;
|
|
2730
|
+
titleWidth: number;
|
|
2728
2731
|
isMobile: boolean;
|
|
2729
2732
|
isWorkflowForm: boolean;
|
|
2730
2733
|
workflowButtonsOnFooter: boolean;
|
|
@@ -2736,11 +2739,13 @@ declare class FormDialogComponent extends BaseComponent implements OnInit {
|
|
|
2736
2739
|
private dialogParams;
|
|
2737
2740
|
private _portalService;
|
|
2738
2741
|
private _renderer2;
|
|
2742
|
+
private _bbbtranslate;
|
|
2739
2743
|
private modalWidth;
|
|
2740
2744
|
private modalHeight;
|
|
2741
2745
|
constructor();
|
|
2742
2746
|
get Adapter(): any;
|
|
2743
2747
|
ngOnInit(): void;
|
|
2748
|
+
onHeaderTitleVisibilityChange(e: any, barLeft: HTMLElement): void;
|
|
2744
2749
|
onToolbarClick(e: any): void;
|
|
2745
2750
|
onWorkflowChoiceClick(e: any): void;
|
|
2746
2751
|
onFormUiComponentReady(uiComponent: FormBaseComponent): void;
|