barsa-sap-ui 1.0.285 → 1.0.287
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/esm2020/lib/ui-mo-info-ulv-combo/ui-mo-info-ulv-combo.component.mjs +55 -33
- package/fesm2015/barsa-sap-ui.mjs +70 -46
- package/fesm2015/barsa-sap-ui.mjs.map +1 -1
- package/fesm2020/barsa-sap-ui.mjs +68 -45
- package/fesm2020/barsa-sap-ui.mjs.map +1 -1
- package/lib/ui-mo-info-ulv-combo/ui-mo-info-ulv-combo.component.d.ts +6 -3
- package/package.json +1 -1
|
@@ -33,17 +33,18 @@ export declare class UiMoInfoUlvComboComponent extends FieldBaseComponent implem
|
|
|
33
33
|
isDataLoadedFirstTime: boolean;
|
|
34
34
|
valueText: string;
|
|
35
35
|
allColumns: ReportViewColumn[];
|
|
36
|
+
hasValue: boolean;
|
|
37
|
+
comboboxId: string;
|
|
36
38
|
private _openPopupFormSelectionSource;
|
|
37
39
|
private _closeDialogSource;
|
|
38
40
|
private _loadingSource;
|
|
39
|
-
|
|
40
|
-
comboboxId: string;
|
|
41
|
+
onKeyDown(e: any): void;
|
|
41
42
|
onAlt(e: any): void;
|
|
42
43
|
ngOnInit(): void;
|
|
43
44
|
ngAfterViewInit(): void;
|
|
44
45
|
onPagingClick(e: any): void;
|
|
45
46
|
onPageChange(e: number): void;
|
|
46
|
-
onItemClick(e: ComboboxItem): void;
|
|
47
|
+
onItemClick(e: ComboboxItem, moDataList: MetaobjectDataModel[]): void;
|
|
47
48
|
onPageChange2(pageSetting: PagingSetting, e: any): void;
|
|
48
49
|
onOpenChange(fdCombobox: any, isOpen: boolean): void;
|
|
49
50
|
onInputChange(e: any): void;
|
|
@@ -70,11 +71,13 @@ export declare class UiMoInfoUlvComboComponent extends FieldBaseComponent implem
|
|
|
70
71
|
Unmask: (type: any) => void;
|
|
71
72
|
getRawValue: () => string;
|
|
72
73
|
protected _setValue(value: any): void;
|
|
74
|
+
protected _checkHasValue(value: any): void;
|
|
73
75
|
protected _setValueText(value: any): void;
|
|
74
76
|
protected _getValueText(value: any): any;
|
|
75
77
|
protected _setComboText(value: string): void;
|
|
76
78
|
protected _openPopupFormSelection(): Observable<boolean>;
|
|
77
79
|
protected _filterSmartChange(value: any): boolean;
|
|
80
|
+
protected _setColumns(): void;
|
|
78
81
|
protected _focus(): void;
|
|
79
82
|
protected _raiseSmartChange(value: any): void;
|
|
80
83
|
protected _triggerClick(eventName: any, value?: null): void;
|