@haloduck/ui 2.0.6 → 2.0.7
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 +44 -7
- package/fesm2022/haloduck-ui.mjs.map +1 -1
- package/index.d.ts +4 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -444,6 +444,10 @@ declare class MapToAddressComponent implements OnInit, ControlValueAccessor {
|
|
|
444
444
|
disabled: boolean;
|
|
445
445
|
currentLngLat?: LngLat;
|
|
446
446
|
private _currentAddress?;
|
|
447
|
+
private _isGoogleLoaded;
|
|
448
|
+
private _loadError?;
|
|
449
|
+
get isGoogleLoaded(): boolean;
|
|
450
|
+
get loadError(): string | undefined;
|
|
447
451
|
set currentAddress(value: string);
|
|
448
452
|
locationChanged: EventEmitter<Location>;
|
|
449
453
|
map: any;
|