@colijnit/corecomponents_v12 262.1.2 → 262.1.3
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/index.d.ts
CHANGED
|
@@ -2762,6 +2762,10 @@ declare class ViewModeButtonsModule {
|
|
|
2762
2762
|
static ɵinj: i0.ɵɵInjectorDeclaration<ViewModeButtonsModule>;
|
|
2763
2763
|
}
|
|
2764
2764
|
|
|
2765
|
+
declare class LovUtils {
|
|
2766
|
+
static getDisplayValue(model: any, displayField: string): string;
|
|
2767
|
+
}
|
|
2768
|
+
|
|
2765
2769
|
declare class ListOfValuesComponent extends BaseInputComponent<any> implements OnInit {
|
|
2766
2770
|
formComponent: FormComponent;
|
|
2767
2771
|
iconCacheService: IconCacheService;
|
|
@@ -2771,6 +2775,7 @@ declare class ListOfValuesComponent extends BaseInputComponent<any> implements O
|
|
|
2771
2775
|
protected ngZoneWrapper?: NgZoneWrapperService;
|
|
2772
2776
|
elementRef?: ElementRef;
|
|
2773
2777
|
readonly icons: typeof CoreComponentsIcon;
|
|
2778
|
+
readonly lovUtils: typeof LovUtils;
|
|
2774
2779
|
set model(value: any);
|
|
2775
2780
|
get model(): any;
|
|
2776
2781
|
parentForOverlay: ElementRef;
|
|
@@ -2823,6 +2828,7 @@ interface lovViewModel {
|
|
|
2823
2828
|
declare class ListOfValuesPopupComponent implements OnInit {
|
|
2824
2829
|
iconCacheService: IconCacheService;
|
|
2825
2830
|
private _elementRef;
|
|
2831
|
+
readonly lovUtils: typeof LovUtils;
|
|
2826
2832
|
set lovItems(children: any);
|
|
2827
2833
|
dropDownList: ElementRef;
|
|
2828
2834
|
set inputSearch(component: InputSearchComponent);
|