@bpost/bp-address-auto-complete-by-component 1.1.2 → 1.1.3
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 +30 -0
- package/bpost-bp-address-auto-complete-by-component.d.ts +1 -11
- package/esm2020/bpost-bp-address-auto-complete-by-component.mjs +5 -0
- package/esm2020/lib/box-number/box-number.component.mjs +800 -0
- package/esm2020/lib/enum/address-level.enum.mjs +8 -0
- package/esm2020/lib/enum/index.mjs +7 -0
- package/esm2020/lib/enum/input-name.enum.mjs +8 -0
- package/esm2020/lib/enum/source-type.enum.mjs +5 -0
- package/esm2020/lib/enum/suggestion-level-type.enum.mjs +8 -0
- package/esm2020/lib/enum/validation-message-option-type.enum.mjs +6 -0
- package/esm2020/lib/enum/validation-message-type.enum.mjs +7 -0
- package/esm2020/lib/lib-address-autocomplete-by-component.component.mjs +1233 -0
- package/esm2020/lib/lib-address-autocomplete-by-component.module.mjs +65 -0
- package/esm2020/lib/lib-address-autocomplete-by-component.service.mjs +14 -0
- package/esm2020/lib/locality/locality.component.mjs +747 -0
- package/{esm2015/lib/model/Locality.js → esm2020/lib/model/Box.mjs} +2 -2
- package/esm2020/lib/model/Locality.mjs +30 -0
- package/esm2020/lib/model/Street.mjs +30 -0
- package/esm2020/lib/model/query-parameters.model.mjs +21 -0
- package/esm2020/lib/services/adress.service.mjs +64 -0
- package/esm2020/lib/services/http.service.mjs +57 -0
- package/esm2020/lib/services/locale.service.mjs +37 -0
- package/esm2020/lib/services/nis9.service.mjs +26 -0
- package/esm2020/lib/services/unicode.service.mjs +376 -0
- package/esm2020/lib/street/street.component.mjs +725 -0
- package/esm2020/lib/street-number/street-number.component.mjs +891 -0
- package/esm2020/lib/utils/constants.mjs +2 -0
- package/esm2020/lib/utils/domhandler.mjs +47 -0
- package/esm2020/lib/utils/highlight-suggestion.pipe.mjs +62 -0
- package/{esm5/lib/utils/prefill-data.js → esm2020/lib/utils/prefill-data.mjs} +5 -7
- package/esm2020/lib/utils/prefilled-parameters.mjs +23 -0
- package/esm2020/lib/utils/preflll.event.mjs +7 -0
- package/esm2020/lib/utils/visible-suggestion.directive.mjs +39 -0
- package/esm2020/public-api.mjs +9 -0
- package/fesm2015/{bpost-bp-address-auto-complete-by-component.js → bpost-bp-address-auto-complete-by-component.mjs} +833 -811
- package/fesm2015/bpost-bp-address-auto-complete-by-component.mjs.map +1 -0
- package/{fesm5/bpost-bp-address-auto-complete-by-component.js → fesm2020/bpost-bp-address-auto-complete-by-component.mjs} +1768 -1951
- package/fesm2020/bpost-bp-address-auto-complete-by-component.mjs.map +1 -0
- package/lib/box-number/box-number.component.d.ts +6 -0
- package/lib/enum/index.d.ts +3 -0
- package/lib/enum/suggestion-level-type.enum.d.ts +5 -0
- package/lib/lib-address-autocomplete-by-component.component.d.ts +7 -0
- package/lib/lib-address-autocomplete-by-component.module.d.ts +15 -0
- package/lib/lib-address-autocomplete-by-component.service.d.ts +3 -0
- package/lib/locality/locality.component.d.ts +3 -0
- package/lib/services/adress.service.d.ts +3 -0
- package/lib/services/http.service.d.ts +5 -0
- package/lib/services/locale.service.d.ts +3 -0
- package/lib/services/nis9.service.d.ts +3 -0
- package/lib/services/unicode.service.d.ts +3 -0
- package/lib/street/street.component.d.ts +3 -0
- package/lib/street-number/street-number.component.d.ts +6 -1
- package/lib/utils/constants.d.ts +1 -0
- package/lib/utils/highlight-suggestion.pipe.d.ts +3 -0
- package/lib/utils/visible-suggestion.directive.d.ts +3 -0
- package/package.json +23 -13
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/.editorconfig +0 -0
- package/tutorial/tutorial/aacwidget-tutorial/README.md +27 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/angular.json +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/browserslist +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/e2e/protractor.conf.js +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/e2e/src/app.e2e-spec.ts +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/e2e/src/app.po.ts +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/e2e/tsconfig.json +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/karma.conf.js +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/package-lock.json +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/package.json +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/app/app-routing.module.ts +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/app/app.component.html +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/app/app.component.scss +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/app/app.component.spec.ts +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/app/app.component.ts +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/app/app.module.ts +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/app/widget-full/widget-full.component.html +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/app/widget-full/widget-full.component.scss +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/app/widget-full/widget-full.component.ts +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/app/widget-simple/widget-simple.component.html +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/app/widget-simple/widget-simple.component.scss +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/app/widget-simple/widget-simple.component.spec.ts +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/app/widget-simple/widget-simple.component.ts +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/assets/.gitkeep +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/assets/aacwidget/i18n/de.json +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/assets/aacwidget/i18n/en.json +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/assets/aacwidget/i18n/fr.json +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/assets/aacwidget/i18n/nl.json +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/assets/aacwidget/scss/aacwidget-custom.scss +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/assets/aacwidget/scss/aacwidget-default.scss +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/environments/environment.prod.ts +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/environments/environment.ts +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/favicon.ico +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/index.html +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/main.ts +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/polyfills.ts +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/styles.scss +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/src/test.ts +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/tsconfig.app.json +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/tsconfig.json +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/tsconfig.spec.json +0 -0
- package/tutorial/{aacwidget-tutorial → tutorial/aacwidget-tutorial}/tslint.json +0 -0
- package/tutorial/{tutorial-videos.txt → tutorial/tutorial-videos.txt} +0 -0
- package/bpost-bp-address-auto-complete-by-component.metadata.json +0 -1
- package/bundles/bpost-bp-address-auto-complete-by-component.umd.js +0 -5691
- package/bundles/bpost-bp-address-auto-complete-by-component.umd.js.map +0 -1
- package/bundles/bpost-bp-address-auto-complete-by-component.umd.min.js +0 -16
- package/bundles/bpost-bp-address-auto-complete-by-component.umd.min.js.map +0 -1
- package/esm2015/bpost-bp-address-auto-complete-by-component.js +0 -16
- package/esm2015/lib/box-number/box-number.component.js +0 -811
- package/esm2015/lib/enum/address-level.enum.js +0 -8
- package/esm2015/lib/enum/index.js +0 -4
- package/esm2015/lib/enum/input-name.enum.js +0 -8
- package/esm2015/lib/enum/source-type.enum.js +0 -5
- package/esm2015/lib/enum/validation-message-option-type.enum.js +0 -6
- package/esm2015/lib/enum/validation-message-type.enum.js +0 -7
- package/esm2015/lib/lib-address-autocomplete-by-component.component.js +0 -1169
- package/esm2015/lib/lib-address-autocomplete-by-component.module.js +0 -42
- package/esm2015/lib/lib-address-autocomplete-by-component.service.js +0 -14
- package/esm2015/lib/locality/locality.component.js +0 -769
- package/esm2015/lib/model/Box.js +0 -30
- package/esm2015/lib/model/Street.js +0 -30
- package/esm2015/lib/model/query-parameters.model.js +0 -21
- package/esm2015/lib/services/adress.service.js +0 -68
- package/esm2015/lib/services/http.service.js +0 -53
- package/esm2015/lib/services/locale.service.js +0 -39
- package/esm2015/lib/services/nis9.service.js +0 -30
- package/esm2015/lib/services/unicode.service.js +0 -376
- package/esm2015/lib/street/street.component.js +0 -749
- package/esm2015/lib/street-number/street-number.component.js +0 -900
- package/esm2015/lib/utils/domhandler.js +0 -47
- package/esm2015/lib/utils/highlight-suggestion.pipe.js +0 -63
- package/esm2015/lib/utils/prefill-data.js +0 -24
- package/esm2015/lib/utils/prefilled-parameters.js +0 -23
- package/esm2015/lib/utils/preflll.event.js +0 -7
- package/esm2015/lib/utils/visible-suggestion.directive.js +0 -42
- package/esm2015/public-api.js +0 -9
- package/esm5/bpost-bp-address-auto-complete-by-component.js +0 -16
- package/esm5/lib/box-number/box-number.component.js +0 -831
- package/esm5/lib/enum/address-level.enum.js +0 -8
- package/esm5/lib/enum/index.js +0 -4
- package/esm5/lib/enum/input-name.enum.js +0 -8
- package/esm5/lib/enum/source-type.enum.js +0 -5
- package/esm5/lib/enum/validation-message-option-type.enum.js +0 -6
- package/esm5/lib/enum/validation-message-type.enum.js +0 -7
- package/esm5/lib/lib-address-autocomplete-by-component.component.js +0 -1185
- package/esm5/lib/lib-address-autocomplete-by-component.module.js +0 -45
- package/esm5/lib/lib-address-autocomplete-by-component.service.js +0 -16
- package/esm5/lib/locality/locality.component.js +0 -825
- package/esm5/lib/model/Box.js +0 -35
- package/esm5/lib/model/Locality.js +0 -35
- package/esm5/lib/model/Street.js +0 -35
- package/esm5/lib/model/query-parameters.model.js +0 -23
- package/esm5/lib/services/adress.service.js +0 -72
- package/esm5/lib/services/http.service.js +0 -55
- package/esm5/lib/services/locale.service.js +0 -40
- package/esm5/lib/services/nis9.service.js +0 -31
- package/esm5/lib/services/unicode.service.js +0 -379
- package/esm5/lib/street/street.component.js +0 -794
- package/esm5/lib/street-number/street-number.component.js +0 -920
- package/esm5/lib/utils/domhandler.js +0 -51
- package/esm5/lib/utils/highlight-suggestion.pipe.js +0 -75
- package/esm5/lib/utils/prefilled-parameters.js +0 -25
- package/esm5/lib/utils/preflll.event.js +0 -9
- package/esm5/lib/utils/visible-suggestion.directive.js +0 -43
- package/esm5/public-api.js +0 -9
- package/fesm2015/bpost-bp-address-auto-complete-by-component.js.map +0 -1
- package/fesm5/bpost-bp-address-auto-complete-by-component.js.map +0 -1
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { LibAddressAutocompleteByComponentComponent } from './lib-address-autocomplete-by-component.component';
|
|
3
|
+
import { LocalityComponent } from './locality/locality.component';
|
|
4
|
+
import { StreetComponent } from './street/street.component';
|
|
5
|
+
import { StreetNumberComponent } from './street-number/street-number.component';
|
|
6
|
+
import { BoxNumberComponent } from './box-number/box-number.component';
|
|
7
|
+
import { CommonModule } from '@angular/common';
|
|
8
|
+
import { HttpClientModule } from '@angular/common/http';
|
|
9
|
+
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
10
|
+
import { TranslateModule } from '@ngx-translate/core';
|
|
11
|
+
import { HighlightSuggestionPipe } from './utils/highlight-suggestion.pipe';
|
|
12
|
+
import { VisibleSuggestionDirective } from './utils/visible-suggestion.directive';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
14
|
+
export class LibAddressAutocompleteByComponentModule {
|
|
15
|
+
}
|
|
16
|
+
LibAddressAutocompleteByComponentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: LibAddressAutocompleteByComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
17
|
+
LibAddressAutocompleteByComponentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: LibAddressAutocompleteByComponentModule, declarations: [HighlightSuggestionPipe,
|
|
18
|
+
VisibleSuggestionDirective,
|
|
19
|
+
LibAddressAutocompleteByComponentComponent,
|
|
20
|
+
LocalityComponent,
|
|
21
|
+
StreetComponent,
|
|
22
|
+
StreetNumberComponent,
|
|
23
|
+
BoxNumberComponent], imports: [CommonModule,
|
|
24
|
+
// BrowserModule,
|
|
25
|
+
// BrowserAnimationsModule,
|
|
26
|
+
HttpClientModule,
|
|
27
|
+
FormsModule,
|
|
28
|
+
ReactiveFormsModule,
|
|
29
|
+
TranslateModule], exports: [LibAddressAutocompleteByComponentComponent] });
|
|
30
|
+
LibAddressAutocompleteByComponentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: LibAddressAutocompleteByComponentModule, imports: [[
|
|
31
|
+
CommonModule,
|
|
32
|
+
// BrowserModule,
|
|
33
|
+
// BrowserAnimationsModule,
|
|
34
|
+
HttpClientModule,
|
|
35
|
+
FormsModule,
|
|
36
|
+
ReactiveFormsModule,
|
|
37
|
+
TranslateModule,
|
|
38
|
+
]] });
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: LibAddressAutocompleteByComponentModule, decorators: [{
|
|
40
|
+
type: NgModule,
|
|
41
|
+
args: [{
|
|
42
|
+
declarations: [
|
|
43
|
+
HighlightSuggestionPipe,
|
|
44
|
+
VisibleSuggestionDirective,
|
|
45
|
+
LibAddressAutocompleteByComponentComponent,
|
|
46
|
+
LocalityComponent,
|
|
47
|
+
StreetComponent,
|
|
48
|
+
StreetNumberComponent,
|
|
49
|
+
BoxNumberComponent
|
|
50
|
+
],
|
|
51
|
+
imports: [
|
|
52
|
+
CommonModule,
|
|
53
|
+
// BrowserModule,
|
|
54
|
+
// BrowserAnimationsModule,
|
|
55
|
+
HttpClientModule,
|
|
56
|
+
FormsModule,
|
|
57
|
+
ReactiveFormsModule,
|
|
58
|
+
TranslateModule,
|
|
59
|
+
],
|
|
60
|
+
exports: [
|
|
61
|
+
LibAddressAutocompleteByComponentComponent,
|
|
62
|
+
]
|
|
63
|
+
}]
|
|
64
|
+
}] });
|
|
65
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGliLWFkZHJlc3MtYXV0b2NvbXBsZXRlLWJ5LWNvbXBvbmVudC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9saWItYWRkcmVzcy1hdXRvY29tcGxldGUtYnktY29tcG9uZW50L3NyYy9saWIvbGliLWFkZHJlc3MtYXV0b2NvbXBsZXRlLWJ5LWNvbXBvbmVudC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsMENBQTBDLEVBQUUsTUFBTSxtREFBbUQsQ0FBQztBQUMvRyxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUNsRSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDNUQsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0seUNBQXlDLENBQUM7QUFDaEYsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sbUNBQW1DLENBQUM7QUFDdkUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBRy9DLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQ3hELE9BQU8sRUFBRSxXQUFXLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNsRSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDdEQsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sbUNBQW1DLENBQUM7QUFDNUUsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sc0NBQXNDLENBQUM7O0FBNEJsRixNQUFNLE9BQU8sdUNBQXVDOztvSUFBdkMsdUNBQXVDO3FJQUF2Qyx1Q0FBdUMsaUJBckJoRCx1QkFBdUI7UUFDdkIsMEJBQTBCO1FBQzFCLDBDQUEwQztRQUMxQyxpQkFBaUI7UUFDakIsZUFBZTtRQUNmLHFCQUFxQjtRQUNyQixrQkFBa0IsYUFHbEIsWUFBWTtRQUNaLGlCQUFpQjtRQUNqQiwyQkFBMkI7UUFDM0IsZ0JBQWdCO1FBQ2hCLFdBQVc7UUFDWCxtQkFBbUI7UUFDbkIsZUFBZSxhQUdmLDBDQUEwQztxSUFHakMsdUNBQXVDLFlBYnpDO1lBQ1AsWUFBWTtZQUNaLGlCQUFpQjtZQUNqQiwyQkFBMkI7WUFDM0IsZ0JBQWdCO1lBQ2hCLFdBQVc7WUFDWCxtQkFBbUI7WUFDbkIsZUFBZTtTQUNoQjsyRkFLVSx1Q0FBdUM7a0JBdkJuRCxRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWix1QkFBdUI7d0JBQ3ZCLDBCQUEwQjt3QkFDMUIsMENBQTBDO3dCQUMxQyxpQkFBaUI7d0JBQ2pCLGVBQWU7d0JBQ2YscUJBQXFCO3dCQUNyQixrQkFBa0I7cUJBQ25CO29CQUNELE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLGlCQUFpQjt3QkFDakIsMkJBQTJCO3dCQUMzQixnQkFBZ0I7d0JBQ2hCLFdBQVc7d0JBQ1gsbUJBQW1CO3dCQUNuQixlQUFlO3FCQUNoQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsMENBQTBDO3FCQUMzQztpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBMaWJBZGRyZXNzQXV0b2NvbXBsZXRlQnlDb21wb25lbnRDb21wb25lbnQgfSBmcm9tICcuL2xpYi1hZGRyZXNzLWF1dG9jb21wbGV0ZS1ieS1jb21wb25lbnQuY29tcG9uZW50JztcbmltcG9ydCB7IExvY2FsaXR5Q29tcG9uZW50IH0gZnJvbSAnLi9sb2NhbGl0eS9sb2NhbGl0eS5jb21wb25lbnQnO1xuaW1wb3J0IHsgU3RyZWV0Q29tcG9uZW50IH0gZnJvbSAnLi9zdHJlZXQvc3RyZWV0LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBTdHJlZXROdW1iZXJDb21wb25lbnQgfSBmcm9tICcuL3N0cmVldC1udW1iZXIvc3RyZWV0LW51bWJlci5jb21wb25lbnQnO1xuaW1wb3J0IHsgQm94TnVtYmVyQ29tcG9uZW50IH0gZnJvbSAnLi9ib3gtbnVtYmVyL2JveC1udW1iZXIuY29tcG9uZW50JztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBCcm93c2VyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvcGxhdGZvcm0tYnJvd3Nlcic7XG5pbXBvcnQgeyBCcm93c2VyQW5pbWF0aW9uc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL3BsYXRmb3JtLWJyb3dzZXIvYW5pbWF0aW9ucyc7XG5pbXBvcnQgeyBIdHRwQ2xpZW50TW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uL2h0dHAnO1xuaW1wb3J0IHsgRm9ybXNNb2R1bGUsIFJlYWN0aXZlRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBUcmFuc2xhdGVNb2R1bGUgfSBmcm9tICdAbmd4LXRyYW5zbGF0ZS9jb3JlJztcbmltcG9ydCB7IEhpZ2hsaWdodFN1Z2dlc3Rpb25QaXBlIH0gZnJvbSAnLi91dGlscy9oaWdobGlnaHQtc3VnZ2VzdGlvbi5waXBlJztcbmltcG9ydCB7IFZpc2libGVTdWdnZXN0aW9uRGlyZWN0aXZlIH0gZnJvbSAnLi91dGlscy92aXNpYmxlLXN1Z2dlc3Rpb24uZGlyZWN0aXZlJztcbmltcG9ydCB7IFByZWZpbGxlZFBhcmFtZXRlcnMgfSBmcm9tICcuL3V0aWxzL3ByZWZpbGxlZC1wYXJhbWV0ZXJzJztcblxuXG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW1xuICAgIEhpZ2hsaWdodFN1Z2dlc3Rpb25QaXBlLFxuICAgIFZpc2libGVTdWdnZXN0aW9uRGlyZWN0aXZlLFxuICAgIExpYkFkZHJlc3NBdXRvY29tcGxldGVCeUNvbXBvbmVudENvbXBvbmVudCxcbiAgICBMb2NhbGl0eUNvbXBvbmVudCxcbiAgICBTdHJlZXRDb21wb25lbnQsXG4gICAgU3RyZWV0TnVtYmVyQ29tcG9uZW50LFxuICAgIEJveE51bWJlckNvbXBvbmVudFxuICBdLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIC8vIEJyb3dzZXJNb2R1bGUsXG4gICAgLy8gQnJvd3NlckFuaW1hdGlvbnNNb2R1bGUsXG4gICAgSHR0cENsaWVudE1vZHVsZSxcbiAgICBGb3Jtc01vZHVsZSxcbiAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxuICAgIFRyYW5zbGF0ZU1vZHVsZSxcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIExpYkFkZHJlc3NBdXRvY29tcGxldGVCeUNvbXBvbmVudENvbXBvbmVudCxcbiAgXVxufSlcbmV4cG9ydCBjbGFzcyBMaWJBZGRyZXNzQXV0b2NvbXBsZXRlQnlDb21wb25lbnRNb2R1bGUgeyB9XG4iXX0=
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Injectable } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class LibAddressAutocompleteByComponentService {
|
|
4
|
+
constructor() { }
|
|
5
|
+
}
|
|
6
|
+
LibAddressAutocompleteByComponentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: LibAddressAutocompleteByComponentService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7
|
+
LibAddressAutocompleteByComponentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: LibAddressAutocompleteByComponentService, providedIn: 'root' });
|
|
8
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: LibAddressAutocompleteByComponentService, decorators: [{
|
|
9
|
+
type: Injectable,
|
|
10
|
+
args: [{
|
|
11
|
+
providedIn: 'root'
|
|
12
|
+
}]
|
|
13
|
+
}], ctorParameters: function () { return []; } });
|
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGliLWFkZHJlc3MtYXV0b2NvbXBsZXRlLWJ5LWNvbXBvbmVudC5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvbGliLWFkZHJlc3MtYXV0b2NvbXBsZXRlLWJ5LWNvbXBvbmVudC9zcmMvbGliL2xpYi1hZGRyZXNzLWF1dG9jb21wbGV0ZS1ieS1jb21wb25lbnQuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUszQyxNQUFNLE9BQU8sd0NBQXdDO0lBRW5ELGdCQUFnQixDQUFDOztxSUFGTix3Q0FBd0M7eUlBQXhDLHdDQUF3QyxjQUZ2QyxNQUFNOzJGQUVQLHdDQUF3QztrQkFIcEQsVUFBVTttQkFBQztvQkFDVixVQUFVLEVBQUUsTUFBTTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBJbmplY3RhYmxlKHtcbiAgcHJvdmlkZWRJbjogJ3Jvb3QnXG59KVxuZXhwb3J0IGNsYXNzIExpYkFkZHJlc3NBdXRvY29tcGxldGVCeUNvbXBvbmVudFNlcnZpY2Uge1xuXG4gIGNvbnN0cnVjdG9yKCkgeyB9XG59XG4iXX0=
|