@bpost/bp-address-auto-complete-by-component 1.0.29 → 1.1.2
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/VERSION.md +60 -0
- package/bpost-bp-address-auto-complete-by-component.d.ts +3 -2
- package/bpost-bp-address-auto-complete-by-component.metadata.json +1 -1
- package/bundles/bpost-bp-address-auto-complete-by-component.umd.js +172 -14
- package/bundles/bpost-bp-address-auto-complete-by-component.umd.js.map +1 -1
- package/bundles/bpost-bp-address-auto-complete-by-component.umd.min.js +1 -1
- package/bundles/bpost-bp-address-auto-complete-by-component.umd.min.js.map +1 -1
- package/esm2015/bpost-bp-address-auto-complete-by-component.js +4 -3
- package/esm2015/lib/box-number/box-number.component.js +6 -2
- package/esm2015/lib/lib-address-autocomplete-by-component.component.js +122 -9
- package/esm2015/lib/locality/locality.component.js +6 -2
- package/esm2015/lib/services/adress.service.js +4 -1
- package/esm2015/lib/services/nis9.service.js +30 -0
- package/esm2015/lib/street/street.component.js +6 -2
- package/esm2015/lib/street-number/street-number.component.js +6 -2
- package/esm5/bpost-bp-address-auto-complete-by-component.js +4 -3
- package/esm5/lib/box-number/box-number.component.js +6 -2
- package/esm5/lib/lib-address-autocomplete-by-component.component.js +123 -9
- package/esm5/lib/locality/locality.component.js +6 -2
- package/esm5/lib/services/adress.service.js +4 -1
- package/esm5/lib/services/nis9.service.js +31 -0
- package/esm5/lib/street/street.component.js +6 -2
- package/esm5/lib/street-number/street-number.component.js +6 -2
- package/fesm2015/bpost-bp-address-auto-complete-by-component.js +168 -13
- package/fesm2015/bpost-bp-address-auto-complete-by-component.js.map +1 -1
- package/fesm5/bpost-bp-address-auto-complete-by-component.js +170 -13
- package/fesm5/bpost-bp-address-auto-complete-by-component.js.map +1 -1
- package/lib/box-number/box-number.component.d.ts +2 -0
- package/lib/lib-address-autocomplete-by-component.component.d.ts +13 -1
- package/lib/locality/locality.component.d.ts +1 -0
- package/lib/services/adress.service.d.ts +2 -0
- package/lib/services/nis9.service.d.ts +9 -0
- package/lib/street/street.component.d.ts +1 -0
- package/lib/street-number/street-number.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -433,6 +433,9 @@
|
|
|
433
433
|
this.domain = 'http://10.194.73.9:8080';
|
|
434
434
|
this.localityURL = this.domain + '/AddressAutoComplete/autocomplete/locality?IncludeGeographicalSanction=true';
|
|
435
435
|
this.log = true;
|
|
436
|
+
this.nis9InResponse = false;
|
|
437
|
+
// https://bgs.bpost.be/set-selection-circle?lng=4.360537572541948&lat=50.84063582806037&radius=0.001
|
|
438
|
+
this.nis9ServiceURL = '';
|
|
436
439
|
}
|
|
437
440
|
AddressService.prototype.getLocality = function (baseUrl, params) {
|
|
438
441
|
var _this = this;
|
|
@@ -981,6 +984,7 @@
|
|
|
981
984
|
this.visibleSuggestionCount = 5;
|
|
982
985
|
this.sortCriteria = '';
|
|
983
986
|
this.showDebugMessageToConsole = true;
|
|
987
|
+
this.isReadonly = false;
|
|
984
988
|
this.messageChanged = new core.EventEmitter();
|
|
985
989
|
this.addressChanged = new core.EventEmitter();
|
|
986
990
|
this.focusEvent = new core.EventEmitter();
|
|
@@ -1742,6 +1746,9 @@
|
|
|
1742
1746
|
__decorate([
|
|
1743
1747
|
core.Input()
|
|
1744
1748
|
], LocalityComponent.prototype, "inputLang", null);
|
|
1749
|
+
__decorate([
|
|
1750
|
+
core.Input()
|
|
1751
|
+
], LocalityComponent.prototype, "isReadonly", void 0);
|
|
1745
1752
|
__decorate([
|
|
1746
1753
|
core.Output()
|
|
1747
1754
|
], LocalityComponent.prototype, "messageChanged", void 0);
|
|
@@ -1766,7 +1773,7 @@
|
|
|
1766
1773
|
LocalityComponent = __decorate([
|
|
1767
1774
|
core.Component({
|
|
1768
1775
|
selector: 'bp-locality',
|
|
1769
|
-
template: "<span *ngIf=\"labelResourceKey\">{{ labelResourceKey | translate}}</span>\n<div class=\"bpaac-dropdown\">\n <div class=\"bpaac-search-bar\">\n <div class=\"bpaac-input-width\">\n \n <input type=\"text\" #localitySearchInput class=\"bpaac-input\" \n (keydown)=\"checkKeyDown($event)\" (input)=\"onInputChange()\"\n [style.color]=\" getTextColor() \"\n [(ngModel)]=\"searchText\" id=\"localityInputField\" [attr.placeholder]=\"placeHolderText\" autocomplete=\"off\"\n (blur)=\"onBlur($event)\" (focus)=\"onFocus()\" (click)=\"onInputClick()\"/>\n <div id=\"bpaac-clear-locality-button\" \n *ngIf=\"mayShowClearButton()\"\n (click)=\"clearInput(true)\" class=\"bpaac-clear\">\n </div>\n </div>\n <!--<div ng-transclude></div>-->\n <input id=\"bpaac-locality-typeahead\" type=\"text\" disabled autocomplete=\"off\" [(ngModel)]=\"bpTypeAhead\" />\n </div>\n <div [hidden]=\"collapseDropdown\" class=\"bpaac-dropdown-menu-container\" *ngIf=\"suggestions && suggestions.length>0\">\n <div #localityList [appVisibleSuggestion]=\"visibleSuggestionCount\" id=\"bpaac-locality-dropdown\" \n class=\"bpaac-dropdown-menu\">\n <ul role=\"listbox\" id=\"bpaac-locality-suggestionsList\" class=\"list-unstyled\">\n <li role=\"option\" \n *ngFor=\"let option of suggestions; let idx = index\" \n [ngClass]=\"{'active':(selectedIndex==idx)}\" (mousedown)=\"clickSuggestion($event, option)\"\n (mouseenter)=\"selectedIndex=idx\" (mouseleave)=\"selectedIndex=-1\">\n <span *ngIf=\"option\" [innerHtml]=\"option.string | highlightSuggestion : wordList\"></span> \n <span *ngIf=\"messageOption === 'P' && option.messages\"> ({{option.municipalityName}})</span><br />\n <ng-container *ngIf=\"messageOption === 'Y'\">\n <span *ngFor=\"let message of option.messages\" \n class=\"bpaac-suggestion-message\"\n [innerHtml]=\"message.translatedMessage\"></span> \n </ng-container>\n </li>\n </ul>\n </div>\n </div>\n</div>",
|
|
1776
|
+
template: "<span *ngIf=\"labelResourceKey\">{{ labelResourceKey | translate}}</span>\n<div class=\"bpaac-dropdown\">\n <div class=\"bpaac-search-bar\">\n <div class=\"bpaac-input-width\">\n \n <input type=\"text\" #localitySearchInput class=\"bpaac-input\" \n [readonly]=\"isReadonly\"\n (keydown)=\"checkKeyDown($event)\" (input)=\"onInputChange()\"\n [style.color]=\" getTextColor() \"\n [(ngModel)]=\"searchText\" id=\"localityInputField\" [attr.placeholder]=\"placeHolderText\" autocomplete=\"off\"\n (blur)=\"onBlur($event)\" (focus)=\"onFocus()\" (click)=\"onInputClick()\"/>\n <div id=\"bpaac-clear-locality-button\" \n *ngIf=\"mayShowClearButton()\"\n (click)=\"clearInput(true)\" class=\"bpaac-clear\">\n </div>\n </div>\n <!--<div ng-transclude></div>-->\n <input id=\"bpaac-locality-typeahead\" type=\"text\" disabled autocomplete=\"off\" [(ngModel)]=\"bpTypeAhead\" />\n </div>\n <div [hidden]=\"collapseDropdown\" class=\"bpaac-dropdown-menu-container\" *ngIf=\"suggestions && suggestions.length>0\">\n <div #localityList [appVisibleSuggestion]=\"visibleSuggestionCount\" id=\"bpaac-locality-dropdown\" \n class=\"bpaac-dropdown-menu\">\n <ul role=\"listbox\" id=\"bpaac-locality-suggestionsList\" class=\"list-unstyled\">\n <li role=\"option\" \n *ngFor=\"let option of suggestions; let idx = index\" \n [ngClass]=\"{'active':(selectedIndex==idx)}\" (mousedown)=\"clickSuggestion($event, option)\"\n (mouseenter)=\"selectedIndex=idx\" (mouseleave)=\"selectedIndex=-1\">\n <span *ngIf=\"option\" [innerHtml]=\"option.string | highlightSuggestion : wordList\"></span> \n <span *ngIf=\"messageOption === 'P' && option.messages\"> ({{option.municipalityName}})</span><br />\n <ng-container *ngIf=\"messageOption === 'Y'\">\n <span *ngFor=\"let message of option.messages\" \n class=\"bpaac-suggestion-message\"\n [innerHtml]=\"message.translatedMessage\"></span> \n </ng-container>\n </li>\n </ul>\n </div>\n </div>\n</div>",
|
|
1770
1777
|
styles: [""]
|
|
1771
1778
|
})
|
|
1772
1779
|
], LocalityComponent);
|
|
@@ -1789,6 +1796,7 @@
|
|
|
1789
1796
|
this.sortCriteria = '';
|
|
1790
1797
|
this.showDebugMessageToConsole = true;
|
|
1791
1798
|
this.messageOption = 'Y';
|
|
1799
|
+
this.isReadonly = false;
|
|
1792
1800
|
this.messageChanged = new core.EventEmitter();
|
|
1793
1801
|
this.addressChanged = new core.EventEmitter();
|
|
1794
1802
|
this.focusEvent = new core.EventEmitter();
|
|
@@ -2518,6 +2526,9 @@
|
|
|
2518
2526
|
__decorate([
|
|
2519
2527
|
core.Input()
|
|
2520
2528
|
], StreetComponent.prototype, "inputLang", null);
|
|
2529
|
+
__decorate([
|
|
2530
|
+
core.Input()
|
|
2531
|
+
], StreetComponent.prototype, "isReadonly", void 0);
|
|
2521
2532
|
__decorate([
|
|
2522
2533
|
core.Output()
|
|
2523
2534
|
], StreetComponent.prototype, "messageChanged", void 0);
|
|
@@ -2542,7 +2553,7 @@
|
|
|
2542
2553
|
StreetComponent = __decorate([
|
|
2543
2554
|
core.Component({
|
|
2544
2555
|
selector: 'bp-street',
|
|
2545
|
-
template: "<span *ngIf=\"labelResourceKey\">{{ labelResourceKey | translate}}</span>\n<div class=\"bpaac-dropdown\">\n <div class=\"bpaac-search-bar\">\n <div class=\"bpaac-input-width\">\n <!-- [disabled]=\"isDisabled()\" -->\n <input type=\"text\" #streetSearchInput class=\"bpaac-input\" \n
|
|
2556
|
+
template: "<span *ngIf=\"labelResourceKey\">{{ labelResourceKey | translate}}</span>\n<div class=\"bpaac-dropdown\">\n <div class=\"bpaac-search-bar\">\n <div class=\"bpaac-input-width\">\n <!-- [disabled]=\"isDisabled()\" -->\n <input type=\"text\" #streetSearchInput class=\"bpaac-input\" \n [readonly]=\"isReadonly\"\n [style.background-color]=\"!isParamsComplete() ? 'lightgrey' : ''\" \n [style.color]=\" getTextColor() \"\n [disabled]=\"!locality || locality.trim().length === 0\" (keydown)=\"checkKeyDown($event)\" \n (input)=\"onInputChange()\" (click)=\"onInputClick()\"\n [(ngModel)]=\"searchText\" id=\"streetInputField\" [attr.placeholder]=\"placeHolderText\" autocomplete=\"off\"\n (blur)=\"onBlur($event)\" (focus)=\"onFocus()\" />\n <div id=\"bpaac-clear-street-button\" *ngIf=\"mayShowClearButton()\" (click)=\"clearInput(true)\" class=\"bpaac-clear\">\n </div>\n </div>\n <!--<div ng-transclude></div>-->\n <input id=\"bpaac-street-typeahead\" type=\"text\" disabled autocomplete=\"off\" [(ngModel)]=\"bpTypeAhead\" />\n </div>\n <div [hidden]=\"collapseDropdown\" class=\"bpaac-dropdown-menu-container\" *ngIf=\"suggestions && suggestions.length>0\">\n <div #streetList [appVisibleSuggestion]=\"visibleSuggesionCount\" id=\"bpaac-street-dropdown\" class=\"bpaac-dropdown-menu\">\n <ul role=\"listbox\" id=\"bpaac-street-suggestionsList\" class=\"list-unstyled\">\n <li role=\"option\" *ngFor=\"let option of suggestions; let idx = index\" [ngClass]=\"{'active':(selectedIndex==idx)}\" (mousedown)=\"clickSuggestion($event, option)\"\n (mouseenter)=\"selectedIndex=idx\" (mouseleave)=\"selectedIndex=-1\">\n <span *ngIf=\"option\" [innerHtml]=\"option.string | highlightSuggestion : wordList\"></span>\n </li>\n </ul>\n </div>\n </div>\n</div>\n",
|
|
2546
2557
|
styles: [""]
|
|
2547
2558
|
})
|
|
2548
2559
|
], StreetComponent);
|
|
@@ -2561,6 +2572,7 @@
|
|
|
2561
2572
|
this.visibleSuggesionCount = 5;
|
|
2562
2573
|
this.sortCriteria = '';
|
|
2563
2574
|
this.messageOption = 'Y';
|
|
2575
|
+
this.isReadonly = false;
|
|
2564
2576
|
this.messageChanged = new core.EventEmitter();
|
|
2565
2577
|
this.addressChanged = new core.EventEmitter();
|
|
2566
2578
|
this.focusEvent = new core.EventEmitter();
|
|
@@ -3417,6 +3429,9 @@
|
|
|
3417
3429
|
__decorate([
|
|
3418
3430
|
core.Input()
|
|
3419
3431
|
], StreetNumberComponent.prototype, "inputText", void 0);
|
|
3432
|
+
__decorate([
|
|
3433
|
+
core.Input()
|
|
3434
|
+
], StreetNumberComponent.prototype, "isReadonly", void 0);
|
|
3420
3435
|
__decorate([
|
|
3421
3436
|
core.Output()
|
|
3422
3437
|
], StreetNumberComponent.prototype, "messageChanged", void 0);
|
|
@@ -3444,7 +3459,7 @@
|
|
|
3444
3459
|
StreetNumberComponent = __decorate([
|
|
3445
3460
|
core.Component({
|
|
3446
3461
|
selector: 'bp-street-number',
|
|
3447
|
-
template: "<span *ngIf=\"labelResourceKey\">{{ labelResourceKey | translate}}</span>\n<div class=\"bpaac-dropdown\">\n <div class=\"bpaac-search-bar\">\n <div class=\"bpaac-input-width\">\n <!-- [disabled]=\"isDisabled()\" -->\n <input type=\"text\" #streetNumberSearchInput class=\"bpaac-input\" \n [style.background-color]=\"!isParamsComplete() ? 'lightgrey' : ''\" \n [style.color]=\" getTextColor() \"\n [disabled]=\"!streetName || streetName.trim().length === 0\" (keydown)=\"checkKeyDown($event)\" \n (input)=\"onInputChange()\" (click)=\"onInputClick()\"\n [(ngModel)]=\"searchText\" id=\"streetNumberInputField\" \n [attr.title]=\"placeHolderText\" \n [attr.placeholder]=\"placeHolderText\" autocomplete=\"off\"\n (blur)=\"onBlur($event)\" (focus)=\"onFocus()\" />\n <div id=\"bpaac-clear-streetNb-button\" *ngIf=\"mayShowClearButton()\" \n (click)=\"onClearStreetNumberInput(true)\" class=\"bpaac-clear\">\n </div>\n </div>\n <!--<div ng-transclude></div>-->\n <input id=\"bpaac-streetNb-typeahead\" type=\"text\" disabled autocomplete=\"off\" [(ngModel)]=\"bpTypeAhead\" />\n <!-- <span>addressIsComplete: {{ addressIsComplete }}. </span>\n <span>addressIsValidated: {{ addressIsValidated }}. </span> -->\n <span *ngIf=\"addressIsComplete\" class=\"streetNbChekmark\"><span class=\"checkmark\"></span></span>\n </div>\n <div [hidden]=\"collapseDropdown\" class=\"bpaac-dropdown-menu-container\" *ngIf=\"suggestions && suggestions.length>0\">\n <div #streetNumberList [appVisibleSuggestion]=\"visibleSuggesionCount\" \n id=\"bpaac-streetnumber-dropdown\" class=\"bpaac-dropdown-menu\">\n <ul role=\"listbox\" id=\"bpaac-streetNb-suggestionsList\" class=\"list-unstyled\">\n <li role=\"option\" *ngFor=\"let option of suggestions; let idx = index\" [ngClass]=\"{'active':(selectedIndex==idx)}\" (mousedown)=\"clickSuggestion($event, option)\"\n (mouseenter)=\"selectedIndex=idx\" (mouseleave)=\"selectedIndex=-1\">\n <span *ngIf=\"option\" [innerHtml]=\"option['not-in-list'] ? emptyResponseText : option.string | highlightSuggestion : wordList\"></span>\n </li>\n </ul>\n </div>\n </div>\n</div>",
|
|
3462
|
+
template: "<span *ngIf=\"labelResourceKey\">{{ labelResourceKey | translate}}</span>\n<div class=\"bpaac-dropdown\">\n <div class=\"bpaac-search-bar\">\n <div class=\"bpaac-input-width\">\n <!-- [disabled]=\"isDisabled()\" -->\n <input type=\"text\" #streetNumberSearchInput class=\"bpaac-input\" \n [readonly]=\"isReadonly\"\n [style.background-color]=\"!isParamsComplete() ? 'lightgrey' : ''\" \n [style.color]=\" getTextColor() \"\n [disabled]=\"!streetName || streetName.trim().length === 0\" (keydown)=\"checkKeyDown($event)\" \n (input)=\"onInputChange()\" (click)=\"onInputClick()\"\n [(ngModel)]=\"searchText\" id=\"streetNumberInputField\" \n [attr.title]=\"placeHolderText\" \n [attr.placeholder]=\"placeHolderText\" autocomplete=\"off\"\n (blur)=\"onBlur($event)\" (focus)=\"onFocus()\" />\n <div id=\"bpaac-clear-streetNb-button\" *ngIf=\"mayShowClearButton()\" \n (click)=\"onClearStreetNumberInput(true)\" class=\"bpaac-clear\">\n </div>\n </div>\n <!--<div ng-transclude></div>-->\n <input id=\"bpaac-streetNb-typeahead\" type=\"text\" disabled autocomplete=\"off\" [(ngModel)]=\"bpTypeAhead\" />\n <!-- <span>addressIsComplete: {{ addressIsComplete }}. </span>\n <span>addressIsValidated: {{ addressIsValidated }}. </span> -->\n <span *ngIf=\"addressIsComplete\" class=\"streetNbChekmark\"><span class=\"checkmark\"></span></span>\n </div>\n <div [hidden]=\"collapseDropdown\" class=\"bpaac-dropdown-menu-container\" *ngIf=\"suggestions && suggestions.length>0\">\n <div #streetNumberList [appVisibleSuggestion]=\"visibleSuggesionCount\" \n id=\"bpaac-streetnumber-dropdown\" class=\"bpaac-dropdown-menu\">\n <ul role=\"listbox\" id=\"bpaac-streetNb-suggestionsList\" class=\"list-unstyled\">\n <li role=\"option\" *ngFor=\"let option of suggestions; let idx = index\" [ngClass]=\"{'active':(selectedIndex==idx)}\" (mousedown)=\"clickSuggestion($event, option)\"\n (mouseenter)=\"selectedIndex=idx\" (mouseleave)=\"selectedIndex=-1\">\n <span *ngIf=\"option\" [innerHtml]=\"option['not-in-list'] ? emptyResponseText : option.string | highlightSuggestion : wordList\"></span>\n </li>\n </ul>\n </div>\n </div>\n</div>",
|
|
3448
3463
|
styles: [""]
|
|
3449
3464
|
})
|
|
3450
3465
|
], StreetNumberComponent);
|
|
@@ -3463,6 +3478,7 @@
|
|
|
3463
3478
|
this.visibleSuggesionCount = 5;
|
|
3464
3479
|
this.sortCriteria = '';
|
|
3465
3480
|
this.messageOption = 'Y';
|
|
3481
|
+
this.isReadonly = false;
|
|
3466
3482
|
this.messageChanged = new core.EventEmitter();
|
|
3467
3483
|
this.addressChanged = new core.EventEmitter();
|
|
3468
3484
|
this.focusEvent = new core.EventEmitter();
|
|
@@ -4230,6 +4246,9 @@
|
|
|
4230
4246
|
__decorate([
|
|
4231
4247
|
core.Input()
|
|
4232
4248
|
], BoxNumberComponent.prototype, "messageOption", void 0);
|
|
4249
|
+
__decorate([
|
|
4250
|
+
core.Input()
|
|
4251
|
+
], BoxNumberComponent.prototype, "isReadonly", void 0);
|
|
4233
4252
|
__decorate([
|
|
4234
4253
|
core.Output()
|
|
4235
4254
|
], BoxNumberComponent.prototype, "messageChanged", void 0);
|
|
@@ -4257,7 +4276,7 @@
|
|
|
4257
4276
|
BoxNumberComponent = __decorate([
|
|
4258
4277
|
core.Component({
|
|
4259
4278
|
selector: 'bp-box-number',
|
|
4260
|
-
template: "<span *ngIf=\"labelResourceKey\">{{ labelResourceKey | translate}}</span>\n<div class=\"bpaac-dropdown\">\n <div class=\"bpaac-search-bar\">\n <div class=\"bpaac-input-width\">\n <!-- [disabled]=\"isDisabled()\" -->\n <input type=\"text\" #boxNumberSearchInput class=\"bpaac-input\" \n [style.background-color]=\"!isParamsComplete() ? 'lightgrey' : ''\" \n [style.color]=\" getTextColor() \"\n [disabled]=\"!streetNumber || streetNumber.trim().length === 0\" (keydown)=\"checkKeyDown($event)\" \n (input)=\"onInputChange()\" (click)=\"onInputClick()\"\n [(ngModel)]=\"searchText\" id=\"boxNumberInputField\" [attr.title]=\"placeHolderText\" [attr.placeholder]=\"placeHolderText\" autocomplete=\"off\"\n (blur)=\"onBlur($event)\" (focus)=\"onFocus()\" />\n <div id=\"bpaac-clear-boxNb-button\" *ngIf=\"mayShowClearButton()\" (click)=\"clearInput(true)\" class=\"bpaac-clear\">\n </div>\n </div>\n <!--<div ng-transclude></div>-->\n <input id=\"bpaac-boxNb-typeahead\" type=\"text\" disabled autocomplete=\"off\" [(ngModel)]=\"bpTypeAhead\" />\n <span *ngIf=\"addressIsValidated\" class=\"boxNbChekmark\"><span class=\"checkmark\"></span></span>\n </div>\n <div [hidden]=\"collapseDropdown\" class=\"bpaac-dropdown-menu-container\" *ngIf=\"suggestions && suggestions.length>0\">\n <div #boxNumberList [appVisibleSuggestion]=\"visibleSuggesionCount\" id=\"bpaac-box-dropdown\" class=\"bpaac-dropdown-menu\">\n <ul role=\"listbox\" id=\"bpaac-boxNb-suggestionsList\" class=\"list-unstyled\">\n <li role=\"option\" *ngFor=\"let option of suggestions; let idx = index\" [ngClass]=\"{'active':(selectedIndex==idx)}\" \n (mousedown)=\"clickSuggestion($event, option)\"\n (mouseenter)=\"selectedIndex=idx\" (mouseleave)=\"selectedIndex=-1\">\n <span *ngIf=\"option\" [innerHtml]=\"option['not-in-list'] ? emptyResponseText : option.string | highlightSuggestion : wordList\"></span>\n </li>\n </ul>\n </div>\n </div>\n</div>\n",
|
|
4279
|
+
template: "<span *ngIf=\"labelResourceKey\">{{ labelResourceKey | translate}}</span>\n<div class=\"bpaac-dropdown\">\n <div class=\"bpaac-search-bar\">\n <div class=\"bpaac-input-width\">\n <!-- [disabled]=\"isDisabled()\" -->\n <input type=\"text\" #boxNumberSearchInput class=\"bpaac-input\" \n [readonly]=\"isReadonly\"\n [style.background-color]=\"!isParamsComplete() ? 'lightgrey' : ''\" \n [style.color]=\" getTextColor() \"\n [disabled]=\"!streetNumber || streetNumber.trim().length === 0\" (keydown)=\"checkKeyDown($event)\" \n (input)=\"onInputChange()\" (click)=\"onInputClick()\"\n [(ngModel)]=\"searchText\" id=\"boxNumberInputField\" [attr.title]=\"placeHolderText\" [attr.placeholder]=\"placeHolderText\" autocomplete=\"off\"\n (blur)=\"onBlur($event)\" (focus)=\"onFocus()\" />\n <div id=\"bpaac-clear-boxNb-button\" *ngIf=\"mayShowClearButton()\" (click)=\"clearInput(true)\" class=\"bpaac-clear\">\n </div>\n </div>\n <!--<div ng-transclude></div>-->\n <input id=\"bpaac-boxNb-typeahead\" type=\"text\" disabled autocomplete=\"off\" [(ngModel)]=\"bpTypeAhead\" />\n <span *ngIf=\"addressIsValidated\" class=\"boxNbChekmark\"><span class=\"checkmark\"></span></span>\n </div>\n <div [hidden]=\"collapseDropdown\" class=\"bpaac-dropdown-menu-container\" *ngIf=\"suggestions && suggestions.length>0\">\n <div #boxNumberList [appVisibleSuggestion]=\"visibleSuggesionCount\" id=\"bpaac-box-dropdown\" class=\"bpaac-dropdown-menu\">\n <ul role=\"listbox\" id=\"bpaac-boxNb-suggestionsList\" class=\"list-unstyled\">\n <li role=\"option\" *ngFor=\"let option of suggestions; let idx = index\" [ngClass]=\"{'active':(selectedIndex==idx)}\" \n (mousedown)=\"clickSuggestion($event, option)\"\n (mouseenter)=\"selectedIndex=idx\" (mouseleave)=\"selectedIndex=-1\">\n <span *ngIf=\"option\" [innerHtml]=\"option['not-in-list'] ? emptyResponseText : option.string | highlightSuggestion : wordList\"></span>\n </li>\n </ul>\n </div>\n </div>\n</div>\n",
|
|
4261
4280
|
styles: [""]
|
|
4262
4281
|
})
|
|
4263
4282
|
], BoxNumberComponent);
|
|
@@ -4289,11 +4308,42 @@
|
|
|
4289
4308
|
return PrefillData;
|
|
4290
4309
|
}());
|
|
4291
4310
|
|
|
4311
|
+
var Nis9Service = /** @class */ (function () {
|
|
4312
|
+
function Nis9Service(httpClient) {
|
|
4313
|
+
this.httpClient = httpClient;
|
|
4314
|
+
// https://bgs.bpost.be/set-selection-circle?lng=4.360537572541948&lat=50.84063582806037&radius=0.001
|
|
4315
|
+
this.nis9ServiceURL = '';
|
|
4316
|
+
}
|
|
4317
|
+
Nis9Service.prototype.setNis9ServiceURL = function (nis9ServiceURL) {
|
|
4318
|
+
this.nis9ServiceURL = nis9ServiceURL;
|
|
4319
|
+
};
|
|
4320
|
+
Nis9Service.prototype.determineNis9Data = function (longitude, latitude) {
|
|
4321
|
+
var apiUrl = "https://bgs.bpost.be/set-selection-circle?lng=" + longitude + "&lat=" + latitude + "&radius=0.001";
|
|
4322
|
+
return this.httpClient.get(apiUrl);
|
|
4323
|
+
};
|
|
4324
|
+
Nis9Service.ctorParameters = function () { return [
|
|
4325
|
+
{ type: http.HttpClient }
|
|
4326
|
+
]; };
|
|
4327
|
+
Nis9Service.ɵprov = core.ɵɵdefineInjectable({ factory: function Nis9Service_Factory() { return new Nis9Service(core.ɵɵinject(http.HttpClient)); }, token: Nis9Service, providedIn: "root" });
|
|
4328
|
+
Nis9Service = __decorate([
|
|
4329
|
+
core.Injectable({
|
|
4330
|
+
providedIn: 'root'
|
|
4331
|
+
})
|
|
4332
|
+
], Nis9Service);
|
|
4333
|
+
return Nis9Service;
|
|
4334
|
+
}());
|
|
4335
|
+
|
|
4292
4336
|
var LibAddressAutocompleteByComponentComponent = /** @class */ (function () {
|
|
4293
|
-
function LibAddressAutocompleteByComponentComponent(httpService) {
|
|
4337
|
+
function LibAddressAutocompleteByComponentComponent(nis9Service, httpService) {
|
|
4338
|
+
this.nis9Service = nis9Service;
|
|
4294
4339
|
this.httpService = httpService;
|
|
4295
4340
|
this.selectedLanguage = null;
|
|
4296
4341
|
this.baseUrl = "https://api.mailops.bpost.cloud/roa-info/externalMailingAddressProofingRest/autocomplete/";
|
|
4342
|
+
this.defaultApiKey = 'cyRkKOD73O1DOdgcDLLnsaOiDh6OyOkt3BBT5JU1';
|
|
4343
|
+
this.usedLocalityUrl = this.baseUrl + 'locality';
|
|
4344
|
+
this.usedStreetUrl = this.baseUrl + 'street';
|
|
4345
|
+
this.usedStreetNumberUrl = this.baseUrl + 'streetNumber';
|
|
4346
|
+
this.usedBoxNumberUrl = this.baseUrl + 'boxNumber';
|
|
4297
4347
|
this.showDebugMessageToConsole = false;
|
|
4298
4348
|
this.notInListAllowed = true;
|
|
4299
4349
|
this.messageOption = 'Y';
|
|
@@ -4329,7 +4379,13 @@
|
|
|
4329
4379
|
this.clearInputEventEmitter = new core.EventEmitter();
|
|
4330
4380
|
this.processingPrefillData = false;
|
|
4331
4381
|
// Pass the API key as a property of the library !
|
|
4332
|
-
this.apiKey =
|
|
4382
|
+
this.apiKey = this.defaultApiKey;
|
|
4383
|
+
// set the widget as readonly and add NIS9 query parameter
|
|
4384
|
+
this.isReadonly = false;
|
|
4385
|
+
this.nis9InResponse = false;
|
|
4386
|
+
// https://bgs.bpost.be/set-selection-circle?lng=4.360537572541948&lat=50.84063582806037&radius=0.001
|
|
4387
|
+
this.nis9ServiceURL = '';
|
|
4388
|
+
this.isComponentReady = false;
|
|
4333
4389
|
}
|
|
4334
4390
|
Object.defineProperty(LibAddressAutocompleteByComponentComponent.prototype, "inputLang", {
|
|
4335
4391
|
// @ts-ignore
|
|
@@ -4356,10 +4412,25 @@
|
|
|
4356
4412
|
configurable: true
|
|
4357
4413
|
});
|
|
4358
4414
|
LibAddressAutocompleteByComponentComponent.prototype.ngOnInit = function () {
|
|
4359
|
-
|
|
4415
|
+
//console.warn('lib - ngOnInit');
|
|
4416
|
+
this.nis9Service.setNis9ServiceURL(this.nis9ServiceURL);
|
|
4417
|
+
var apiKey = this.isValidData(this.apiKey) ? this.apiKey : this.defaultApiKey;
|
|
4418
|
+
this.httpService.setApiKey(apiKey);
|
|
4419
|
+
if (this.isValidData(this.localityUrl))
|
|
4420
|
+
this.usedLocalityUrl = this.localityUrl;
|
|
4421
|
+
if (this.isValidData(this.streetUrl))
|
|
4422
|
+
this.usedStreetUrl = this.streetUrl;
|
|
4423
|
+
if (this.isValidData(this.streetNumberUrl))
|
|
4424
|
+
this.usedStreetNumberUrl = this.streetNumberUrl;
|
|
4425
|
+
if (this.isValidData(this.boxNumberUrl))
|
|
4426
|
+
this.usedBoxNumberUrl = this.boxNumberUrl;
|
|
4360
4427
|
if (this.addressParams) {
|
|
4361
4428
|
this.prefillData = this.addressParams;
|
|
4362
4429
|
}
|
|
4430
|
+
this.isComponentReady = true;
|
|
4431
|
+
};
|
|
4432
|
+
LibAddressAutocompleteByComponentComponent.prototype.isValidData = function (str) {
|
|
4433
|
+
return str !== undefined && str !== null && str.length > 0;
|
|
4363
4434
|
};
|
|
4364
4435
|
LibAddressAutocompleteByComponentComponent.prototype.ngOnDestroy = function () {
|
|
4365
4436
|
if (this.subscription) {
|
|
@@ -4373,9 +4444,40 @@
|
|
|
4373
4444
|
if (this.showDebugMessageToConsole) {
|
|
4374
4445
|
this.displayParametersChangesToConsole(changes);
|
|
4375
4446
|
}
|
|
4447
|
+
/*
|
|
4376
4448
|
if (changes.hasOwnProperty('apiKey') && !changes.apiKey.firstChange) {
|
|
4377
|
-
|
|
4449
|
+
const apiKey = this.apiKey!==null && this.apiKey!==undefined && this.apiKey.length>0
|
|
4450
|
+
? this.apiKey
|
|
4451
|
+
: this.defaultApiKey;
|
|
4452
|
+
this.httpService.setApiKey( apiKey );
|
|
4453
|
+
}
|
|
4454
|
+
|
|
4455
|
+
if (changes.hasOwnProperty('localityUrl') && !changes.localityUrl.firstChange) {
|
|
4456
|
+
const localityUrl = this.localityUrl!==null && this.localityUrl!==undefined && this.localityUrl.length>0
|
|
4457
|
+
? this.localityUrl
|
|
4458
|
+
: this.baseUrl + 'locality';
|
|
4459
|
+
this.usedLocalityUrl=localityUrl;
|
|
4460
|
+
console.log('ngOnChanges - localityUrl: ', localityUrl);
|
|
4461
|
+
}
|
|
4462
|
+
if (changes.hasOwnProperty('streetUrl') && !changes.streetUrl.firstChange) {
|
|
4463
|
+
const streetUrl = this.streetUrl!==null && this.streetUrl!==undefined && this.streetUrl.length>0
|
|
4464
|
+
? this.streetUrl
|
|
4465
|
+
: this.baseUrl + 'street';
|
|
4466
|
+
this.streetUrl=streetUrl;
|
|
4467
|
+
}
|
|
4468
|
+
if (changes.hasOwnProperty('streetNumberUrl') && !changes.streetNumberUrl.firstChange) {
|
|
4469
|
+
const streetNumberUrl = this.streetNumberUrl!==null && this.streetNumberUrl!==undefined && this.streetNumberUrl.length>0
|
|
4470
|
+
? this.streetNumberUrl
|
|
4471
|
+
: this.baseUrl + 'streetNumber';
|
|
4472
|
+
this.streetNumberUrl=streetNumberUrl;
|
|
4473
|
+
}
|
|
4474
|
+
if (changes.hasOwnProperty('boxNumberUrl') && !changes.boxNumberUrl.firstChange) {
|
|
4475
|
+
const boxNumberUrl = this.boxNumberUrl!==null && this.boxNumberUrl!==undefined && this.boxNumberUrl.length>0
|
|
4476
|
+
? this.boxNumberUrl
|
|
4477
|
+
: this.baseUrl + 'boxNumber';
|
|
4478
|
+
this.boxNumberUrl=boxNumberUrl;
|
|
4378
4479
|
}
|
|
4480
|
+
*/
|
|
4379
4481
|
if (changes.hasOwnProperty('addressParams') && !changes.addressParams.firstChange) {
|
|
4380
4482
|
// if (changes.hasOwnProperty('addressParams')) {
|
|
4381
4483
|
this.processingPrefillData = true;
|
|
@@ -4568,10 +4670,45 @@
|
|
|
4568
4670
|
return prefix;
|
|
4569
4671
|
};
|
|
4570
4672
|
LibAddressAutocompleteByComponentComponent.prototype.notifyAddressComplete = function () {
|
|
4673
|
+
var _this = this;
|
|
4571
4674
|
// console.log('notify for address complete');
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4675
|
+
if (this.showDebugMessageToConsole) {
|
|
4676
|
+
console.log('notifyAddressComplete', this.selectedAddress, 'nis9InResponse:' + this.nis9InResponse, typeof this.nis9InResponse);
|
|
4677
|
+
}
|
|
4678
|
+
if ((this.nis9InResponse === true || '' + this.nis9InResponse === 'true')
|
|
4679
|
+
&& this.selectedAddress !== undefined && this.selectedAddress !== null
|
|
4680
|
+
&& this.selectedAddress.hasOwnProperty('latitude') && this.selectedAddress.hasOwnProperty('longitude')) {
|
|
4681
|
+
var latitude = this.selectedAddress.latitude;
|
|
4682
|
+
var longitude = this.selectedAddress.longitude;
|
|
4683
|
+
if (this.showDebugMessageToConsole)
|
|
4684
|
+
console.log('calling nis9 service to get nis9 data (1):', longitude, latitude);
|
|
4685
|
+
this.nis9Service.determineNis9Data(longitude, latitude)
|
|
4686
|
+
.subscribe(function (data) {
|
|
4687
|
+
console.log('nis DATA:', data);
|
|
4688
|
+
/*
|
|
4689
|
+
nis DATA:
|
|
4690
|
+
{Status: 'success', data: Array(1)}
|
|
4691
|
+
Status: "success"
|
|
4692
|
+
data: ['25112A21-']
|
|
4693
|
+
*/
|
|
4694
|
+
if (data !== undefined && data !== null && data.hasOwnProperty('Status') && data.Status === 'success') {
|
|
4695
|
+
var nis9Data = data.data;
|
|
4696
|
+
if (Array.isArray(nis9Data) && nis9Data.length === 1) {
|
|
4697
|
+
_this.selectedAddress.nis9 = nis9Data[0];
|
|
4698
|
+
}
|
|
4699
|
+
}
|
|
4700
|
+
_this.addressCompleteEventEmitter.emit(_this.selectedAddress);
|
|
4701
|
+
_this.emittedAddress = _this.selectedAddress;
|
|
4702
|
+
_this.updatePostalCodeLocality(_this.emittedAddress);
|
|
4703
|
+
});
|
|
4704
|
+
}
|
|
4705
|
+
else {
|
|
4706
|
+
if (this.showDebugMessageToConsole)
|
|
4707
|
+
console.log('NOT calling nis9 service to get nis9 data (1)');
|
|
4708
|
+
this.addressCompleteEventEmitter.emit(this.selectedAddress);
|
|
4709
|
+
this.emittedAddress = this.selectedAddress;
|
|
4710
|
+
this.updatePostalCodeLocality(this.emittedAddress);
|
|
4711
|
+
}
|
|
4575
4712
|
};
|
|
4576
4713
|
LibAddressAutocompleteByComponentComponent.prototype.onClearInputEventEmitter = function (event) {
|
|
4577
4714
|
if (this.showDebugMessageToConsole) {
|
|
@@ -4688,6 +4825,16 @@
|
|
|
4688
4825
|
}
|
|
4689
4826
|
this.clearInputEventEmitter.emit(event);
|
|
4690
4827
|
if (this.emittedAddress !== null) {
|
|
4828
|
+
if (nextAddress !== undefined && nextAddress !== null && nextAddress.hasOwnProperty('latitude') && nextAddress.hasOwnProperty('longitude')) {
|
|
4829
|
+
var latitude = nextAddress.latitude;
|
|
4830
|
+
var longitude = nextAddress.longitude;
|
|
4831
|
+
if (this.showDebugMessageToConsole)
|
|
4832
|
+
console.log('calling nis9 service to get nis9 data (2)', longitude, latitude);
|
|
4833
|
+
}
|
|
4834
|
+
else {
|
|
4835
|
+
if (this.showDebugMessageToConsole)
|
|
4836
|
+
console.log('NOT calling nis9 service to get nis9 data (2)');
|
|
4837
|
+
}
|
|
4691
4838
|
this.addressCompleteEventEmitter.emit(nextAddress);
|
|
4692
4839
|
this.emittedAddress = nextAddress;
|
|
4693
4840
|
}
|
|
@@ -5237,6 +5384,7 @@
|
|
|
5237
5384
|
this.quitPrefillMode();
|
|
5238
5385
|
};
|
|
5239
5386
|
LibAddressAutocompleteByComponentComponent.ctorParameters = function () { return [
|
|
5387
|
+
{ type: Nis9Service },
|
|
5240
5388
|
{ type: HttpService }
|
|
5241
5389
|
]; };
|
|
5242
5390
|
__decorate([
|
|
@@ -5338,10 +5486,19 @@
|
|
|
5338
5486
|
__decorate([
|
|
5339
5487
|
core.Input()
|
|
5340
5488
|
], LibAddressAutocompleteByComponentComponent.prototype, "apiKey", void 0);
|
|
5489
|
+
__decorate([
|
|
5490
|
+
core.Input()
|
|
5491
|
+
], LibAddressAutocompleteByComponentComponent.prototype, "isReadonly", void 0);
|
|
5492
|
+
__decorate([
|
|
5493
|
+
core.Input()
|
|
5494
|
+
], LibAddressAutocompleteByComponentComponent.prototype, "nis9InResponse", void 0);
|
|
5495
|
+
__decorate([
|
|
5496
|
+
core.Input()
|
|
5497
|
+
], LibAddressAutocompleteByComponentComponent.prototype, "nis9ServiceURL", void 0);
|
|
5341
5498
|
LibAddressAutocompleteByComponentComponent = __decorate([
|
|
5342
5499
|
core.Component({
|
|
5343
5500
|
selector: 'bp-lib-address-autocomplete-by-component',
|
|
5344
|
-
template: "\r\n<div class=\"aacwidget-address-container\">\r\n\r\n <div class=\"bpaac-dropdown-validation\" *ngIf=\"validationMessageOptionType === 'SHOW' \">\r\n <div class=\"bpaac-validated-icon\" *ngIf=\"selectedAddress && validationMessage!==null && validationMessage.messageType!==null\"></div>\r\n <!-- {{ validationMessage | translate }} -->\r\n {{ validationMessage.translatedMessage }}\r\n </div>\r\n\r\n <!-- bp-aacwidget-autocomplete-locality -->\r\n <bp-locality class=\"aacwidget-address-locality\"\r\n [showDebugMessageToConsole]=\"showDebugMessageToConsole\"\r\n [baseUrl]=\"
|
|
5501
|
+
template: "\r\n<div class=\"aacwidget-address-container\">\r\n\r\n <div class=\"bpaac-dropdown-validation\" *ngIf=\"validationMessageOptionType === 'SHOW' \">\r\n <div class=\"bpaac-validated-icon\" *ngIf=\"selectedAddress && validationMessage!==null && validationMessage.messageType!==null\"></div>\r\n <!-- {{ validationMessage | translate }} -->\r\n {{ validationMessage.translatedMessage }}\r\n </div>\r\n\r\n <!-- bp-aacwidget-autocomplete-locality -->\r\n <bp-locality class=\"aacwidget-address-locality\" *ngIf=\"isComponentReady\"\r\n [isReadonly]=\"isReadonly\"\r\n [showDebugMessageToConsole]=\"showDebugMessageToConsole\"\r\n [baseUrl]=\"usedLocalityUrl\"\r\n [prefillData]=\"localityPrefillData\"\r\n [labelResourceKey]=\"'common.label.postalCode'\"\r\n [inputText]=\"postalCodeLocality\"\r\n [inputLang]=\"selectedLanguage\"\r\n [messageOption]=\"messageOption\"\r\n [sortCriteria]=\"sortCriteriaLocality\"\r\n [maxSuggesionCount]=\"maxSuggestionLocality\" \r\n [visibleSuggestionCount]=\"visibleSuggestionLocalityCount\"\r\n (addressChanged)=\"setAddress($event, 4)\"\r\n (messageChanged)=\"setValidationMessage($event)\"\r\n (focusEvent)=\"changeMinLevel($event)\" \r\n (textChangeEvent)=\"resetLocality($event)\"\r\n (clearInputEventEmitter)=\"onClearInputEventEmitter($event)\"\r\n (prefillEventEmitter)=\"onLocalityPrefillEvent($event)\"></bp-locality>\r\n\r\n <bp-street class=\"aacwidget-address-street\"\r\n [isReadonly]=\"isReadonly\"\r\n [showDebugMessageToConsole]=\"showDebugMessageToConsole\"\r\n [baseUrl]=\"usedStreetUrl\"\r\n [prefillData]=\"streetPrefillData\"\r\n [labelResourceKey]=\"'common.label.streetName'\"\r\n [inputText]=\"streetNameInput\"\r\n [inputLang]=\"selectedLanguage\"\r\n [messageOption]=\"messageOption\"\r\n [postalCode]=\"postalCode\"\r\n [locality]=\"locality\"\r\n [sortCriteria]=\"sortCriteriaStreet\" \r\n [maxSuggesionCount]=\"maxSuggestionStreet\"\r\n [visibleSuggesionCount]=\"visibleSuggestionStreetCount\"\r\n (addressChanged)=\"setAddress($event, 3)\"\r\n (messageChanged)=\"setValidationMessage($event)\"\r\n (focusEvent)=\"changeMinLevel($event)\"\r\n (textChangeEvent)=\"resetStreet($event)\"\r\n (clearInputEventEmitter)=\"onClearInputEventEmitter($event)\"\r\n (prefillEventEmitter)=\"onStreetPrefillEvent($event)\"></bp-street>\r\n\r\n <bp-street-number class=\"aacwidget-address-streetnumber\"\r\n [isReadonly]=\"isReadonly\"\r\n [showDebugMessageToConsole]=\"showDebugMessageToConsole\"\r\n [baseUrl]=\"usedStreetNumberUrl\"\r\n [selectedAddress]=\"streetAddress\"\r\n [prefillData]=\"streetNumberPrefillData\"\r\n [labelResourceKey]=\"'common.label.streetNumber'\"\r\n [inputText]=\"streetNumberInput\"\r\n [inputLang]=\"selectedLanguage\"\r\n [messageOption]=\"messageOption\"\r\n [postalCode]=\"postalCode\" \r\n [locality]=\"locality\" \r\n [streetName]=\"street\"\r\n [sortCriteria]=\"sortCriteriaStreetNb\"\r\n [maxSuggesionCount]=\"maxSuggestionStreetNb\" \r\n [visibleSuggesionCount]=\"visibleSuggestionStreetNbCount\"\r\n [notInListAllowed]=\"notInListAllowed\"\r\n (addressChanged)=\"setAddress($event, 2)\"\r\n (messageChanged)=\"setValidationMessage($event)\"\r\n (focusEvent)=\"changeMinLevel($event)\"\r\n (textChangeEvent)=\"resetStreetNumber($event, false)\"\r\n (clearInputEventEmitter)=\"onClearInputEventEmitter($event)\"\r\n (prefillEventEmitter)=\"onStreetNumberPrefillEvent($event)\"></bp-street-number>\r\n\r\n <bp-box-number class=\"aacwidget-address-boxnumber\"\r\n [isReadonly]=\"isReadonly\"\r\n [showDebugMessageToConsole]=\"showDebugMessageToConsole\"\r\n [baseUrl]=\"usedBoxNumberUrl\"\r\n [selectedAddress]=\"streetNumberAddress\"\r\n [prefillData]=\"boxNumberPrefillData\"\r\n [labelResourceKey]=\"'common.label.boxNumber'\"\r\n [inputLang]=\"selectedLanguage\"\r\n [messageOption]=\"messageOption\"\r\n [postalCode]=\"postalCode\" \r\n [locality]=\"locality\" \r\n [streetName]=\"street\" \r\n [streetNumber]=\"streetNumber\"\r\n [sortCriteria]=\"sortCriteriaBoxNb\" \r\n [maxSuggesionCount]=\"maxSuggestionBoxNb\"\r\n [visibleSuggesionCount]=\"visibleSuggestionBoxNbCount\"\r\n [notInListAllowed]=\"notInListAllowed\"\r\n (messageChanged)=\"setValidationMessage($event)\"\r\n (addressChanged)=\"setAddress($event, 1)\" \r\n (focusEvent)=\"changeMinLevel($event)\"\r\n (textChangeEvent)=\"resetBoxNumber($event, false)\"\r\n (clearInputEventEmitter)=\"onClearInputEventEmitter($event)\"\r\n (prefillEventEmitter)=\"onBoxNumberPrefillEvent($event)\"></bp-box-number>\r\n</div>",
|
|
5345
5502
|
styles: [""]
|
|
5346
5503
|
})
|
|
5347
5504
|
], LibAddressAutocompleteByComponentComponent);
|
|
@@ -5524,8 +5681,9 @@
|
|
|
5524
5681
|
exports.ɵf = StreetComponent;
|
|
5525
5682
|
exports.ɵg = StreetNumberComponent;
|
|
5526
5683
|
exports.ɵh = BoxNumberComponent;
|
|
5527
|
-
exports.ɵi =
|
|
5528
|
-
exports.ɵj =
|
|
5684
|
+
exports.ɵi = Nis9Service;
|
|
5685
|
+
exports.ɵj = HighlightSuggestionPipe;
|
|
5686
|
+
exports.ɵk = VisibleSuggestionDirective;
|
|
5529
5687
|
|
|
5530
5688
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
5531
5689
|
|