@haloduck/ui 2.0.6 → 2.0.8
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/haloduck-ui.mjs +49 -9
- package/fesm2022/haloduck-ui.mjs.map +1 -1
- package/index.d.ts +6 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -442,8 +442,13 @@ declare class MapToAddressComponent implements OnInit, ControlValueAccessor {
|
|
|
442
442
|
mapId: string;
|
|
443
443
|
defaultLngLat: LngLat;
|
|
444
444
|
disabled: boolean;
|
|
445
|
+
language: string;
|
|
445
446
|
currentLngLat?: LngLat;
|
|
446
447
|
private _currentAddress?;
|
|
448
|
+
private _isGoogleLoaded;
|
|
449
|
+
private _loadError?;
|
|
450
|
+
get isGoogleLoaded(): boolean;
|
|
451
|
+
get loadError(): string | undefined;
|
|
447
452
|
set currentAddress(value: string);
|
|
448
453
|
locationChanged: EventEmitter<Location>;
|
|
449
454
|
map: any;
|
|
@@ -466,7 +471,7 @@ declare class MapToAddressComponent implements OnInit, ControlValueAccessor {
|
|
|
466
471
|
registerOnTouched(fn: () => void): void;
|
|
467
472
|
setDisabledState?(isDisabled: boolean): void;
|
|
468
473
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapToAddressComponent, never>;
|
|
469
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MapToAddressComponent, "haloduck-map-to-address", never, { "disabled": { "alias": "disabled"; "required": false; }; "currentLngLat": { "alias": "currentLngLat"; "required": false; }; "currentAddress": { "alias": "currentAddress"; "required": false; }; }, { "locationChanged": "locationChanged"; }, never, never, true, never>;
|
|
474
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapToAddressComponent, "haloduck-map-to-address", never, { "disabled": { "alias": "disabled"; "required": false; }; "language": { "alias": "language"; "required": false; }; "currentLngLat": { "alias": "currentLngLat"; "required": false; }; "currentAddress": { "alias": "currentAddress"; "required": false; }; }, { "locationChanged": "locationChanged"; }, never, never, true, never>;
|
|
470
475
|
}
|
|
471
476
|
|
|
472
477
|
declare class SideMenuComponent {
|