@haloduck/ui 2.0.5 → 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 +56 -26
- package/fesm2022/haloduck-ui.mjs.map +1 -1
- package/index.d.ts +5 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -213,7 +213,7 @@ declare class DatePickerComponent implements ControlValueAccessor, OnInit, OnDes
|
|
|
213
213
|
static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "haloduck-date-picker", never, { "disabled": { "alias": "disabled"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
214
214
|
}
|
|
215
215
|
|
|
216
|
-
declare class DateRangeComponent implements ControlValueAccessor,
|
|
216
|
+
declare class DateRangeComponent implements ControlValueAccessor, OnDestroy {
|
|
217
217
|
destroy$: Subject<void>;
|
|
218
218
|
private readonly translateService;
|
|
219
219
|
private readonly overlay;
|
|
@@ -239,7 +239,6 @@ declare class DateRangeComponent implements ControlValueAccessor, OnInit, OnDest
|
|
|
239
239
|
registerOnChange(fn: any): void;
|
|
240
240
|
registerOnTouched(fn: any): void;
|
|
241
241
|
setDisabledState?(isDisabled: boolean): void;
|
|
242
|
-
ngOnInit(): void;
|
|
243
242
|
ngOnDestroy(): void;
|
|
244
243
|
constructor();
|
|
245
244
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateRangeComponent, never>;
|
|
@@ -445,6 +444,10 @@ declare class MapToAddressComponent implements OnInit, ControlValueAccessor {
|
|
|
445
444
|
disabled: boolean;
|
|
446
445
|
currentLngLat?: LngLat;
|
|
447
446
|
private _currentAddress?;
|
|
447
|
+
private _isGoogleLoaded;
|
|
448
|
+
private _loadError?;
|
|
449
|
+
get isGoogleLoaded(): boolean;
|
|
450
|
+
get loadError(): string | undefined;
|
|
448
451
|
set currentAddress(value: string);
|
|
449
452
|
locationChanged: EventEmitter<Location>;
|
|
450
453
|
map: any;
|