barsa-sap-ui 2.3.75 → 2.3.77
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 +65 -72
- package/fesm2022/barsa-sap-ui.mjs.map +1 -1
- package/index.d.ts +11 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2738,6 +2738,9 @@ declare class FormDialogComponent extends BaseComponent implements OnInit {
|
|
|
2738
2738
|
selectedWorkflowButton: any;
|
|
2739
2739
|
formUi: WritableSignal<FormBaseComponent | undefined>;
|
|
2740
2740
|
onWorkflowButtonSelected: any;
|
|
2741
|
+
hideFooter: boolean;
|
|
2742
|
+
showWorkflowToolbar: boolean;
|
|
2743
|
+
showWorkflowButtonsOnFooter: boolean;
|
|
2741
2744
|
private _dialogService;
|
|
2742
2745
|
private dialogParams;
|
|
2743
2746
|
private _portalService;
|
|
@@ -2914,6 +2917,7 @@ declare class UlvPagingComponent extends BaseComponent implements OnInit {
|
|
|
2914
2917
|
|
|
2915
2918
|
declare class UlvToolbarComponent extends BaseComponent implements OnChanges {
|
|
2916
2919
|
_tlbCmp: ToolbarComponent;
|
|
2920
|
+
_divTempWidth: ElementRef;
|
|
2917
2921
|
allowGridColumnSort: boolean;
|
|
2918
2922
|
useLayoutItemTextForControl: boolean;
|
|
2919
2923
|
enableSearch: boolean;
|
|
@@ -2947,11 +2951,15 @@ declare class UlvToolbarComponent extends BaseComponent implements OnChanges {
|
|
|
2947
2951
|
viewClick: EventEmitter<UiReportViewBase>;
|
|
2948
2952
|
createNewInlineMo: EventEmitter<void>;
|
|
2949
2953
|
enable: boolean;
|
|
2954
|
+
_setWidth$: Subject<void>;
|
|
2955
|
+
_refreshToolbar$: Subject<void>;
|
|
2950
2956
|
_renderer2: Renderer2;
|
|
2951
2957
|
_portalService: PortalService;
|
|
2952
|
-
visibled: boolean
|
|
2958
|
+
visibled: i0.WritableSignal<boolean>;
|
|
2959
|
+
ulvWidth: i0.WritableSignal<string>;
|
|
2953
2960
|
parentWidth: number;
|
|
2954
2961
|
private _cdr;
|
|
2962
|
+
private _router;
|
|
2955
2963
|
ngAfterViewInit(): void;
|
|
2956
2964
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2957
2965
|
onVisibilityChange(e: any): void;
|
|
@@ -2963,8 +2971,7 @@ declare class UlvToolbarComponent extends BaseComponent implements OnChanges {
|
|
|
2963
2971
|
_trackBy(_index: any, item: any): string;
|
|
2964
2972
|
identify(_index: any, item: any): string;
|
|
2965
2973
|
protected _setWidth(): void;
|
|
2966
|
-
|
|
2967
|
-
private _setWidthByElementWidth;
|
|
2974
|
+
protected _refreshUlvWidth(): void;
|
|
2968
2975
|
private _refreshToolbar;
|
|
2969
2976
|
static ɵfac: i0.ɵɵFactoryDeclaration<UlvToolbarComponent, never>;
|
|
2970
2977
|
static ɵcmp: i0.ɵɵComponentDeclaration<UlvToolbarComponent, "bsu-ulv-toolbar", never, { "allowGridColumnSort": { "alias": "allowGridColumnSort"; "required": false; }; "useLayoutItemTextForControl": { "alias": "useLayoutItemTextForControl"; "required": false; }; "enableSearch": { "alias": "enableSearch"; "required": false; }; "hideTitle": { "alias": "hideTitle"; "required": false; }; "title": { "alias": "title"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "deviceName": { "alias": "deviceName"; "required": false; }; "deviceSize": { "alias": "deviceSize"; "required": false; }; "access": { "alias": "access"; "required": false; }; "hideToolbar": { "alias": "hideToolbar"; "required": false; }; "toolbarButtons": { "alias": "toolbarButtons"; "required": false; }; "contentDensity": { "alias": "contentDensity"; "required": false; }; "inlineEditMode": { "alias": "inlineEditMode"; "required": false; }; "allowInlineEdit": { "alias": "allowInlineEdit"; "required": false; }; "gridSetting": { "alias": "gridSetting"; "required": false; }; "viewCollection": { "alias": "viewCollection"; "required": false; }; "reportView": { "alias": "reportView"; "required": false; }; "inDialog": { "alias": "inDialog"; "required": false; }; "isMultiSelect": { "alias": "isMultiSelect"; "required": false; }; "cls": { "alias": "cls"; "required": false; }; "hasSelected": { "alias": "hasSelected"; "required": false; }; "config": { "alias": "config"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "moDataListCount": { "alias": "moDataListCount"; "required": false; }; }, { "search": "search"; "groupbyClick": "groupbyClick"; "sortClick": "sortClick"; "columnClick": "columnClick"; "editModeClick": "editModeClick"; "viewClick": "viewClick"; "createNewInlineMo": "createNewInlineMo"; }, never, ["[fd-toolbar-item]"], false, never>;
|
|
@@ -3865,8 +3872,6 @@ declare class NotificationItemComponent extends BaseComponent implements OnInit
|
|
|
3865
3872
|
};
|
|
3866
3873
|
notificationItem: NotificationItem;
|
|
3867
3874
|
showCloseButton: boolean;
|
|
3868
|
-
deviceSize: AbbrevationDeviceSize;
|
|
3869
|
-
_deviceSize: string;
|
|
3870
3875
|
viewed: EventEmitter<NotificationItem>;
|
|
3871
3876
|
remove: EventEmitter<{
|
|
3872
3877
|
items: NotificationItem[];
|
|
@@ -3888,7 +3893,7 @@ declare class NotificationItemComponent extends BaseComponent implements OnInit
|
|
|
3888
3893
|
hide: boolean;
|
|
3889
3894
|
ngOnInit(): void;
|
|
3890
3895
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationItemComponent, never>;
|
|
3891
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationItemComponent, "bsu-notification-item", never, { "option": { "alias": "option"; "required": false; }; "notificationItem": { "alias": "notificationItem"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; };
|
|
3896
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationItemComponent, "bsu-notification-item", never, { "option": { "alias": "option"; "required": false; }; "notificationItem": { "alias": "notificationItem"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; }, { "viewed": "viewed"; "remove": "remove"; "actionClick": "actionClick"; "showEvent": "showEvent"; "closeEvent": "closeEvent"; }, never, never, false, never>;
|
|
3892
3897
|
}
|
|
3893
3898
|
|
|
3894
3899
|
declare class BarsaCartableTemplateComponent extends RichTextStaticComponent implements OnInit {
|