ca-components 1.1.999 → 1.1.9992
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/esm2022/lib/components/ca-filters/components/ca-location-filter/ca-location-filter.component.mjs +2 -2
- package/esm2022/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.mjs +6 -22
- package/fesm2022/ca-components.mjs +6 -22
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.d.ts +2 -5
- package/package.json +1 -1
|
@@ -10,14 +10,12 @@ import { CommandsHandler } from './models/commands-handler.model';
|
|
|
10
10
|
import { InputAddressCommandsString } from './models/input-address-commands-string.model';
|
|
11
11
|
import { SentAddressData } from './models/sent-address-data.model';
|
|
12
12
|
import { AddressListResponse } from '../../models/address-list-response.model';
|
|
13
|
-
import { AddressEntity } from '../../models/address-entity.model';
|
|
14
13
|
import * as i0 from "@angular/core";
|
|
15
14
|
export declare class CaInputAddressDropdownComponent implements OnInit, ControlValueAccessor, OnDestroy, AfterContentInit {
|
|
16
15
|
superControl: NgControl;
|
|
17
16
|
private ref;
|
|
18
17
|
inputDropdown: CaInputDropdownComponent;
|
|
19
18
|
set placeholderType(value: string);
|
|
20
|
-
set activeAddress(value: AddressEntity | null);
|
|
21
19
|
set receivedAddressData(value: AddressData | null);
|
|
22
20
|
set receivedAddressList(value: AddressListResponse | null);
|
|
23
21
|
sentAddressValue: EventEmitter<string>;
|
|
@@ -43,12 +41,11 @@ export declare class CaInputAddressDropdownComponent implements OnInit, ControlV
|
|
|
43
41
|
stopType: string;
|
|
44
42
|
private requestSent;
|
|
45
43
|
_receivedAddressList: AddressListResponse | null;
|
|
46
|
-
_activeAddress: AddressEntity | null;
|
|
47
44
|
private destroy$;
|
|
48
45
|
addressForm: UntypedFormGroup;
|
|
49
46
|
constructor(superControl: NgControl, ref: ChangeDetectorRef);
|
|
50
47
|
ngAfterContentInit(): void;
|
|
51
|
-
writeValue(
|
|
48
|
+
writeValue(address: any): void;
|
|
52
49
|
registerOnChange(fn: any): void;
|
|
53
50
|
onChange(_: any): void;
|
|
54
51
|
registerOnTouched(_: any): void;
|
|
@@ -72,5 +69,5 @@ export declare class CaInputAddressDropdownComponent implements OnInit, ControlV
|
|
|
72
69
|
private checkAddressValidation;
|
|
73
70
|
ngOnDestroy(): void;
|
|
74
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputAddressDropdownComponent, [{ self: true; }, null]>;
|
|
75
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputAddressDropdownComponent, "app-ca-input-address-dropdown", never, { "placeholderType": { "alias": "placeholderType"; "required": false; }; "
|
|
72
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputAddressDropdownComponent, "app-ca-input-address-dropdown", never, { "placeholderType": { "alias": "placeholderType"; "required": false; }; "receivedAddressData": { "alias": "receivedAddressData"; "required": false; }; "receivedAddressList": { "alias": "receivedAddressList"; "required": false; }; "inputConfig": { "alias": "inputConfig"; "required": false; }; "commandHandler": { "alias": "commandHandler"; "required": false; }; "isRouting": { "alias": "isRouting"; "required": false; }; "closedBorder": { "alias": "closedBorder"; "required": false; }; "incorrectValue": { "alias": "incorrectValue"; "required": false; }; "hideEmptyLoaded": { "alias": "hideEmptyLoaded"; "required": false; }; }, { "sentAddressValue": "sentAddressValue"; "selectedAddress": "selectedAddress"; "sentAddressData": "sentAddressData"; "closeDropdown": "closeDropdown"; "commandEvent": "commandEvent"; "changeFlag": "changeFlag"; "incorrectEvent": "incorrectEvent"; }, never, never, true, never>;
|
|
76
73
|
}
|