@bpost/bp-address-auto-complete-by-component 1.1.16 → 1.1.18
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/README.md +2 -1
- package/VERSION.md +6 -0
- package/esm2020/lib/box-number/box-number.component.mjs +18 -3
- package/esm2020/lib/lib-address-autocomplete-by-component.component.mjs +63 -10
- package/esm2020/lib/locality/locality.component.mjs +31 -8
- package/esm2020/lib/street/street.component.mjs +69 -22
- package/esm2020/lib/street-number/street-number.component.mjs +21 -3
- package/fesm2015/bpost-bp-address-auto-complete-by-component.mjs +202 -43
- package/fesm2015/bpost-bp-address-auto-complete-by-component.mjs.map +1 -1
- package/fesm2020/bpost-bp-address-auto-complete-by-component.mjs +199 -43
- package/fesm2020/bpost-bp-address-auto-complete-by-component.mjs.map +1 -1
- package/lib/box-number/box-number.component.d.ts +1 -0
- package/lib/locality/locality.component.d.ts +1 -0
- package/lib/street/street.component.d.ts +2 -0
- package/lib/street-number/street-number.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -125,6 +125,7 @@ export declare class BoxNumberComponent implements OnInit, AfterViewChecked, OnC
|
|
|
125
125
|
emitTranslatedValidationMessage(validationMessageType: ValidationMessageType, options?: string[]): void;
|
|
126
126
|
showAddressIsValidated(): void;
|
|
127
127
|
checkKeyDown(event: any): void;
|
|
128
|
+
checkKeyUP(event: any): void;
|
|
128
129
|
clearWidget(): void;
|
|
129
130
|
clearSearchText(): void;
|
|
130
131
|
typeAheadIsShown(): boolean;
|
|
@@ -114,6 +114,7 @@ export declare class LocalityComponent implements OnInit, OnChanges, OnDestroy,
|
|
|
114
114
|
changeSelection(): void;
|
|
115
115
|
moveArrowSelectedIndexDown(): void;
|
|
116
116
|
moveArrowSelectedIndexUp(): void;
|
|
117
|
+
checkKeyUP(event: any): void;
|
|
117
118
|
checkKeyDown(event: any): void;
|
|
118
119
|
setConnectionErrorMessage(): void;
|
|
119
120
|
setSelectedAddress(suggestion: any): void;
|
|
@@ -76,6 +76,7 @@ export declare class StreetComponent implements OnInit, AfterViewChecked, OnChan
|
|
|
76
76
|
ngAfterViewChecked(): void;
|
|
77
77
|
ngOnChanges(changes: SimpleChanges): void;
|
|
78
78
|
transformStreetNameInLowercaseAndWithoutDiacritics(streetName: string): string;
|
|
79
|
+
isCrossLanguageMunicipalityMatch(suggestionMunicipality: string, prefillMunicipality: string): boolean;
|
|
79
80
|
onClearInputEvent(event: any, focus: any): void;
|
|
80
81
|
onBlur(ev: any): void;
|
|
81
82
|
isBrowserIE(): boolean;
|
|
@@ -110,6 +111,7 @@ export declare class StreetComponent implements OnInit, AfterViewChecked, OnChan
|
|
|
110
111
|
emitTranslatedValidationMessage(validationMessageType: ValidationMessageType, options?: string[]): void;
|
|
111
112
|
showAddressIsValidated(): void;
|
|
112
113
|
checkKeyDown(event: any): void;
|
|
114
|
+
checkKeyUP(event: any): void;
|
|
113
115
|
clearWidget(): void;
|
|
114
116
|
clearSearchText(): void;
|
|
115
117
|
typeAheadIsShown(): boolean;
|
|
@@ -125,6 +125,7 @@ export declare class StreetNumberComponent implements OnInit, AfterViewChecked,
|
|
|
125
125
|
emitTranslatedValidationMessage(validationMessageType: ValidationMessageType, options?: string[]): void;
|
|
126
126
|
notifyAddressIsValidated(): void;
|
|
127
127
|
checkKeyDown(event: any): void;
|
|
128
|
+
checkKeyUP(event: any): void;
|
|
128
129
|
clearWidget(): void;
|
|
129
130
|
clearSearchText(): void;
|
|
130
131
|
typeAheadIsShown(): boolean;
|