ca-components 2.1.16 → 2.1.17
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/ca-components.mjs.map +1 -1
- package/index.d.ts +15 -15
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1591,8 +1591,8 @@ declare class CaFilterComponent implements OnDestroy {
|
|
|
1591
1591
|
icon: string;
|
|
1592
1592
|
usaStates: ArrayStatus[];
|
|
1593
1593
|
canadaStates: ArrayStatus[];
|
|
1594
|
-
setFilter: EventEmitter<
|
|
1595
|
-
clearAll: EventEmitter<
|
|
1594
|
+
setFilter: EventEmitter<filterOutputWithParams | filterOutput>;
|
|
1595
|
+
clearAll: EventEmitter<filterOutputWithParams | filterOutput>;
|
|
1596
1596
|
private destroy$;
|
|
1597
1597
|
isSearchExpanded: boolean;
|
|
1598
1598
|
isFilterActive: boolean;
|
|
@@ -4769,19 +4769,6 @@ interface DropdownListItem {
|
|
|
4769
4769
|
name?: string | null;
|
|
4770
4770
|
}
|
|
4771
4771
|
|
|
4772
|
-
interface AddressEntity {
|
|
4773
|
-
city?: string | null;
|
|
4774
|
-
state?: string | null;
|
|
4775
|
-
county?: string | null;
|
|
4776
|
-
address?: string | null;
|
|
4777
|
-
street?: string | null;
|
|
4778
|
-
streetNumber?: string | null;
|
|
4779
|
-
country?: string | null;
|
|
4780
|
-
zipCode?: string | null;
|
|
4781
|
-
stateShortName?: string | null;
|
|
4782
|
-
addressUnit?: string | null;
|
|
4783
|
-
}
|
|
4784
|
-
|
|
4785
4772
|
interface IGpsProgress {
|
|
4786
4773
|
type: string;
|
|
4787
4774
|
heading: string;
|
|
@@ -6430,6 +6417,19 @@ declare enum InputAddressCommandsStringEnum {
|
|
|
6430
6417
|
ESCAPE = "Escape"
|
|
6431
6418
|
}
|
|
6432
6419
|
|
|
6420
|
+
interface AddressEntity {
|
|
6421
|
+
city?: string | null;
|
|
6422
|
+
state?: string | null;
|
|
6423
|
+
county?: string | null;
|
|
6424
|
+
address?: string | null;
|
|
6425
|
+
street?: string | null;
|
|
6426
|
+
streetNumber?: string | null;
|
|
6427
|
+
country?: string | null;
|
|
6428
|
+
zipCode?: string | null;
|
|
6429
|
+
stateShortName?: string | null;
|
|
6430
|
+
addressUnit?: string | null;
|
|
6431
|
+
}
|
|
6432
|
+
|
|
6433
6433
|
interface LongLat {
|
|
6434
6434
|
latitude?: number;
|
|
6435
6435
|
longitude?: number;
|