barsa-sap-ui 2.3.113 → 2.3.116
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 +62 -44
- package/fesm2022/barsa-sap-ui.mjs.map +1 -1
- package/index.d.ts +10 -9
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1062,8 +1062,6 @@ declare class UlNotifyPopupComponent extends BaseComponent {
|
|
|
1062
1062
|
notification: NotificationRef<any, any>;
|
|
1063
1063
|
private _portalService;
|
|
1064
1064
|
private _notificationService;
|
|
1065
|
-
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
1066
|
-
constructor();
|
|
1067
1065
|
onActionClick(e: {
|
|
1068
1066
|
item: NotificationItem;
|
|
1069
1067
|
btn: NotificationAction;
|
|
@@ -1513,11 +1511,11 @@ declare class UiUlvMainUiComponent extends BaseComponent implements OnInit {
|
|
|
1513
1511
|
onChangeView(viewSetting: UiReportViewBase): void;
|
|
1514
1512
|
onToolbarCreateNewInlineMo(): void;
|
|
1515
1513
|
onEditMode(): void;
|
|
1516
|
-
onColumnSettings(
|
|
1517
|
-
onSortSettings(
|
|
1518
|
-
onGroupbySettings(
|
|
1514
|
+
onColumnSettings(): void;
|
|
1515
|
+
onSortSettings(): void;
|
|
1516
|
+
onGroupbySettings(): void;
|
|
1519
1517
|
onSortSettingsChange(sortSettings: SortSetting[]): void;
|
|
1520
|
-
protected _openSettings(name: any
|
|
1518
|
+
protected _openSettings(name: any): void;
|
|
1521
1519
|
private _removeBugInChromeCssActive;
|
|
1522
1520
|
private _setSearchPanelMoChanged;
|
|
1523
1521
|
private _openSearchFieldsHiddenSettings;
|
|
@@ -1740,6 +1738,8 @@ declare class UiPdfViewerComponent extends DeviceInfoFieldBaseComponent implemen
|
|
|
1740
1738
|
parentHeight: number;
|
|
1741
1739
|
blobUrl: string;
|
|
1742
1740
|
parameteres: UiPdfViewerSetting;
|
|
1741
|
+
hideRemove: boolean;
|
|
1742
|
+
hideUpload: boolean;
|
|
1743
1743
|
protected _dialogService: DialogService;
|
|
1744
1744
|
protected _uploadService: UploadService;
|
|
1745
1745
|
ngOnInit(): void;
|
|
@@ -2145,6 +2145,7 @@ declare class UiLinearListContainerWithButtonComponent extends DeviceInfoFieldBa
|
|
|
2145
2145
|
firstItem: LinearItemMo;
|
|
2146
2146
|
idsOfMo: string[];
|
|
2147
2147
|
parameters: UiLinearListContainerSetting;
|
|
2148
|
+
protected _dialogService: DialogService;
|
|
2148
2149
|
private showUlvSource;
|
|
2149
2150
|
private _ulvUi;
|
|
2150
2151
|
private _triggerClicked;
|
|
@@ -4819,11 +4820,11 @@ interface BarsaChatListSettings extends UiReportViewBaseSetting {
|
|
|
4819
4820
|
|
|
4820
4821
|
declare class BarsaModalComponent extends BaseComponent {
|
|
4821
4822
|
_dialogTemplate: TemplateRef<any>;
|
|
4822
|
-
_dialogService: DialogService;
|
|
4823
|
-
_router: Router;
|
|
4824
|
-
_activatedRoute: ActivatedRoute;
|
|
4825
4823
|
settings: BarsaModalSetting;
|
|
4826
4824
|
dialogRef: any;
|
|
4825
|
+
protected _dialogService: DialogService;
|
|
4826
|
+
protected _router: Router;
|
|
4827
|
+
protected _activatedRoute: ActivatedRoute;
|
|
4827
4828
|
ngOnInit(): void;
|
|
4828
4829
|
onClose(): void;
|
|
4829
4830
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaModalComponent, never>;
|