ca-components 1.7.993 → 1.7.994
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 +33 -2
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-parking/ca-input-dropdown-parking.component.mjs +16 -4
- package/esm2022/lib/components/ca-input-dropdown/models/input-dropdown-option.model.mjs +1 -1
- package/esm2022/lib/components/ca-new-filter/constant/filter-dropdown-icons.constant.mjs +13 -13
- package/esm2022/lib/enums/shared-string.enum.mjs +2 -1
- package/fesm2022/ca-components.mjs +56 -18
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.d.ts +4 -1
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-parking/ca-input-dropdown-parking.component.d.ts +3 -0
- package/lib/components/ca-input-dropdown/models/input-dropdown-option.model.d.ts +1 -1
- package/lib/enums/shared-string.enum.d.ts +2 -1
- package/package.json +1 -1
|
@@ -18,6 +18,7 @@ export declare class CaInputAddressDropdownComponent implements OnInit, ControlV
|
|
|
18
18
|
set activeAddress(value: AddressList | null);
|
|
19
19
|
set receivedAddressData(value: AddressData | null);
|
|
20
20
|
set receivedAddressList(value: AddressListResponse | null);
|
|
21
|
+
set parkingList(value: any[]);
|
|
21
22
|
sentAddressValue: EventEmitter<string>;
|
|
22
23
|
inputConfig: ICaInput;
|
|
23
24
|
commandHandler: CommandsHandler;
|
|
@@ -43,6 +44,7 @@ export declare class CaInputAddressDropdownComponent implements OnInit, ControlV
|
|
|
43
44
|
private requestSent;
|
|
44
45
|
_receivedAddressList: AddressListResponse | null;
|
|
45
46
|
_activeAddress: AddressList | null;
|
|
47
|
+
_parkingList: any;
|
|
46
48
|
private destroy$;
|
|
47
49
|
addressForm: UntypedFormGroup;
|
|
48
50
|
constructor(superControl: NgControl, ref: ChangeDetectorRef);
|
|
@@ -65,7 +67,8 @@ export declare class CaInputAddressDropdownComponent implements OnInit, ControlV
|
|
|
65
67
|
onIncorrectInput(event: boolean): void;
|
|
66
68
|
onClearInputEvent(): void;
|
|
67
69
|
private checkAddressValidation;
|
|
70
|
+
private filterParkingByCity;
|
|
68
71
|
ngOnDestroy(): void;
|
|
69
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputAddressDropdownComponent, [{ self: true; }, null]>;
|
|
70
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputAddressDropdownComponent, "app-ca-input-address-dropdown", never, { "placeholderType": { "alias": "placeholderType"; "required": false; }; "activeAddress": { "alias": "activeAddress"; "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; }; "addresList": { "alias": "addresList"; "required": false; }; "template": { "alias": "template"; "required": false; }; }, { "sentAddressValue": "sentAddressValue"; "selectedAddress": "selectedAddress"; "sentAddressData": "sentAddressData"; "closeDropdown": "closeDropdown"; "commandEvent": "commandEvent"; "changeFlag": "changeFlag"; "incorrectEvent": "incorrectEvent"; }, never, never, true, never>;
|
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputAddressDropdownComponent, "app-ca-input-address-dropdown", never, { "placeholderType": { "alias": "placeholderType"; "required": false; }; "activeAddress": { "alias": "activeAddress"; "required": false; }; "receivedAddressData": { "alias": "receivedAddressData"; "required": false; }; "receivedAddressList": { "alias": "receivedAddressList"; "required": false; }; "parkingList": { "alias": "parkingList"; "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; }; "addresList": { "alias": "addresList"; "required": false; }; "template": { "alias": "template"; "required": false; }; }, { "sentAddressValue": "sentAddressValue"; "selectedAddress": "selectedAddress"; "sentAddressData": "sentAddressData"; "closeDropdown": "closeDropdown"; "commandEvent": "commandEvent"; "changeFlag": "changeFlag"; "incorrectEvent": "incorrectEvent"; }, never, never, true, never>;
|
|
71
74
|
}
|
|
@@ -2,6 +2,7 @@ import { EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { AbstractControl } from '@angular/forms';
|
|
3
3
|
import { ICaInput } from '../../../ca-input/config';
|
|
4
4
|
import { OptionModel } from '../../models/input-dropdown-option.model';
|
|
5
|
+
import { eColor, ePosition } from '../../../../enums';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class CaInputDropdownParkingComponent {
|
|
7
8
|
options: OptionModel[];
|
|
@@ -9,6 +10,8 @@ export declare class CaInputDropdownParkingComponent {
|
|
|
9
10
|
getSuperControl: AbstractControl<any, any> | null;
|
|
10
11
|
inputConfig: ICaInput;
|
|
11
12
|
onActiveItem: EventEmitter<OptionModel>;
|
|
13
|
+
eColor: typeof eColor;
|
|
14
|
+
ePosition: typeof ePosition;
|
|
12
15
|
constructor();
|
|
13
16
|
identity(index: number, item: OptionModel): number | undefined;
|
|
14
17
|
onActiveItemEmit(option: OptionModel): void;
|