@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
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { NgModule } from '@angular/core';
|
|
3
|
-
import { LibAddressAutocompleteByComponentComponent } from './lib-address-autocomplete-by-component.component';
|
|
4
|
-
import { LocalityComponent } from './locality/locality.component';
|
|
5
|
-
import { StreetComponent } from './street/street.component';
|
|
6
|
-
import { StreetNumberComponent } from './street-number/street-number.component';
|
|
7
|
-
import { BoxNumberComponent } from './box-number/box-number.component';
|
|
8
|
-
import { CommonModule } from '@angular/common';
|
|
9
|
-
import { HttpClientModule } from '@angular/common/http';
|
|
10
|
-
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
11
|
-
import { TranslateModule } from '@ngx-translate/core';
|
|
12
|
-
import { HighlightSuggestionPipe } from './utils/highlight-suggestion.pipe';
|
|
13
|
-
import { VisibleSuggestionDirective } from './utils/visible-suggestion.directive';
|
|
14
|
-
let LibAddressAutocompleteByComponentModule = class LibAddressAutocompleteByComponentModule {
|
|
15
|
-
};
|
|
16
|
-
LibAddressAutocompleteByComponentModule = __decorate([
|
|
17
|
-
NgModule({
|
|
18
|
-
declarations: [
|
|
19
|
-
HighlightSuggestionPipe,
|
|
20
|
-
VisibleSuggestionDirective,
|
|
21
|
-
LibAddressAutocompleteByComponentComponent,
|
|
22
|
-
LocalityComponent,
|
|
23
|
-
StreetComponent,
|
|
24
|
-
StreetNumberComponent,
|
|
25
|
-
BoxNumberComponent
|
|
26
|
-
],
|
|
27
|
-
imports: [
|
|
28
|
-
CommonModule,
|
|
29
|
-
// BrowserModule,
|
|
30
|
-
// BrowserAnimationsModule,
|
|
31
|
-
HttpClientModule,
|
|
32
|
-
FormsModule,
|
|
33
|
-
ReactiveFormsModule,
|
|
34
|
-
TranslateModule,
|
|
35
|
-
],
|
|
36
|
-
exports: [
|
|
37
|
-
LibAddressAutocompleteByComponentComponent,
|
|
38
|
-
]
|
|
39
|
-
})
|
|
40
|
-
], LibAddressAutocompleteByComponentModule);
|
|
41
|
-
export { LibAddressAutocompleteByComponentModule };
|
|
42
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGliLWFkZHJlc3MtYXV0b2NvbXBsZXRlLWJ5LWNvbXBvbmVudC5tb2R1bGUuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AYnBvc3QvYnAtYWRkcmVzcy1hdXRvLWNvbXBsZXRlLWJ5LWNvbXBvbmVudC8iLCJzb3VyY2VzIjpbImxpYi9saWItYWRkcmVzcy1hdXRvY29tcGxldGUtYnktY29tcG9uZW50Lm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsMENBQTBDLEVBQUUsTUFBTSxtREFBbUQsQ0FBQztBQUMvRyxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUNsRSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDNUQsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0seUNBQXlDLENBQUM7QUFDaEYsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sbUNBQW1DLENBQUM7QUFDdkUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBRy9DLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQ3hELE9BQU8sRUFBRSxXQUFXLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNsRSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDdEQsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sbUNBQW1DLENBQUM7QUFDNUUsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUE0QmxGLElBQWEsdUNBQXVDLEdBQXBELE1BQWEsdUNBQXVDO0NBQUksQ0FBQTtBQUEzQyx1Q0FBdUM7SUF2Qm5ELFFBQVEsQ0FBQztRQUNSLFlBQVksRUFBRTtZQUNaLHVCQUF1QjtZQUN2QiwwQkFBMEI7WUFDMUIsMENBQTBDO1lBQzFDLGlCQUFpQjtZQUNqQixlQUFlO1lBQ2YscUJBQXFCO1lBQ3JCLGtCQUFrQjtTQUNuQjtRQUNELE9BQU8sRUFBRTtZQUNQLFlBQVk7WUFDWixpQkFBaUI7WUFDakIsMkJBQTJCO1lBQzNCLGdCQUFnQjtZQUNoQixXQUFXO1lBQ1gsbUJBQW1CO1lBQ25CLGVBQWU7U0FDaEI7UUFDRCxPQUFPLEVBQUU7WUFDUCwwQ0FBMEM7U0FDM0M7S0FDRixDQUFDO0dBQ1csdUNBQXVDLENBQUk7U0FBM0MsdUNBQXVDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IExpYkFkZHJlc3NBdXRvY29tcGxldGVCeUNvbXBvbmVudENvbXBvbmVudCB9IGZyb20gJy4vbGliLWFkZHJlc3MtYXV0b2NvbXBsZXRlLWJ5LWNvbXBvbmVudC5jb21wb25lbnQnO1xuaW1wb3J0IHsgTG9jYWxpdHlDb21wb25lbnQgfSBmcm9tICcuL2xvY2FsaXR5L2xvY2FsaXR5LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBTdHJlZXRDb21wb25lbnQgfSBmcm9tICcuL3N0cmVldC9zdHJlZXQuY29tcG9uZW50JztcbmltcG9ydCB7IFN0cmVldE51bWJlckNvbXBvbmVudCB9IGZyb20gJy4vc3RyZWV0LW51bWJlci9zdHJlZXQtbnVtYmVyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBCb3hOdW1iZXJDb21wb25lbnQgfSBmcm9tICcuL2JveC1udW1iZXIvYm94LW51bWJlci5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IEJyb3dzZXJNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9wbGF0Zm9ybS1icm93c2VyJztcbmltcG9ydCB7IEJyb3dzZXJBbmltYXRpb25zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvcGxhdGZvcm0tYnJvd3Nlci9hbmltYXRpb25zJztcbmltcG9ydCB7IEh0dHBDbGllbnRNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XG5pbXBvcnQgeyBGb3Jtc01vZHVsZSwgUmVhY3RpdmVGb3Jtc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IFRyYW5zbGF0ZU1vZHVsZSB9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnO1xuaW1wb3J0IHsgSGlnaGxpZ2h0U3VnZ2VzdGlvblBpcGUgfSBmcm9tICcuL3V0aWxzL2hpZ2hsaWdodC1zdWdnZXN0aW9uLnBpcGUnO1xuaW1wb3J0IHsgVmlzaWJsZVN1Z2dlc3Rpb25EaXJlY3RpdmUgfSBmcm9tICcuL3V0aWxzL3Zpc2libGUtc3VnZ2VzdGlvbi5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgUHJlZmlsbGVkUGFyYW1ldGVycyB9IGZyb20gJy4vdXRpbHMvcHJlZmlsbGVkLXBhcmFtZXRlcnMnO1xuXG5cblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbXG4gICAgSGlnaGxpZ2h0U3VnZ2VzdGlvblBpcGUsXG4gICAgVmlzaWJsZVN1Z2dlc3Rpb25EaXJlY3RpdmUsXG4gICAgTGliQWRkcmVzc0F1dG9jb21wbGV0ZUJ5Q29tcG9uZW50Q29tcG9uZW50LFxuICAgIExvY2FsaXR5Q29tcG9uZW50LFxuICAgIFN0cmVldENvbXBvbmVudCxcbiAgICBTdHJlZXROdW1iZXJDb21wb25lbnQsXG4gICAgQm94TnVtYmVyQ29tcG9uZW50XG4gIF0sXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgLy8gQnJvd3Nlck1vZHVsZSxcbiAgICAvLyBCcm93c2VyQW5pbWF0aW9uc01vZHVsZSxcbiAgICBIdHRwQ2xpZW50TW9kdWxlLFxuICAgIEZvcm1zTW9kdWxlLFxuICAgIFJlYWN0aXZlRm9ybXNNb2R1bGUsXG4gICAgVHJhbnNsYXRlTW9kdWxlLFxuICBdLFxuICBleHBvcnRzOiBbXG4gICAgTGliQWRkcmVzc0F1dG9jb21wbGV0ZUJ5Q29tcG9uZW50Q29tcG9uZW50LFxuICBdXG59KVxuZXhwb3J0IGNsYXNzIExpYkFkZHJlc3NBdXRvY29tcGxldGVCeUNvbXBvbmVudE1vZHVsZSB7IH1cbiJdfQ==
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { Injectable } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
let LibAddressAutocompleteByComponentService = class LibAddressAutocompleteByComponentService {
|
|
5
|
-
constructor() { }
|
|
6
|
-
};
|
|
7
|
-
LibAddressAutocompleteByComponentService.ɵprov = i0.ɵɵdefineInjectable({ factory: function LibAddressAutocompleteByComponentService_Factory() { return new LibAddressAutocompleteByComponentService(); }, token: LibAddressAutocompleteByComponentService, providedIn: "root" });
|
|
8
|
-
LibAddressAutocompleteByComponentService = __decorate([
|
|
9
|
-
Injectable({
|
|
10
|
-
providedIn: 'root'
|
|
11
|
-
})
|
|
12
|
-
], LibAddressAutocompleteByComponentService);
|
|
13
|
-
export { LibAddressAutocompleteByComponentService };
|
|
14
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGliLWFkZHJlc3MtYXV0b2NvbXBsZXRlLWJ5LWNvbXBvbmVudC5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGJwb3N0L2JwLWFkZHJlc3MtYXV0by1jb21wbGV0ZS1ieS1jb21wb25lbnQvIiwic291cmNlcyI6WyJsaWIvbGliLWFkZHJlc3MtYXV0b2NvbXBsZXRlLWJ5LWNvbXBvbmVudC5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUszQyxJQUFhLHdDQUF3QyxHQUFyRCxNQUFhLHdDQUF3QztJQUVuRCxnQkFBZ0IsQ0FBQztDQUNsQixDQUFBOztBQUhZLHdDQUF3QztJQUhwRCxVQUFVLENBQUM7UUFDVixVQUFVLEVBQUUsTUFBTTtLQUNuQixDQUFDO0dBQ1csd0NBQXdDLENBR3BEO1NBSFksd0NBQXdDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5ASW5qZWN0YWJsZSh7XG4gIHByb3ZpZGVkSW46ICdyb290J1xufSlcbmV4cG9ydCBjbGFzcyBMaWJBZGRyZXNzQXV0b2NvbXBsZXRlQnlDb21wb25lbnRTZXJ2aWNlIHtcblxuICBjb25zdHJ1Y3RvcigpIHsgfVxufVxuIl19
|