@bpost/bp-address-auto-complete-by-component 1.1.5 → 1.1.7
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 +197 -0
- package/esm2022/lib/box-number/box-number.component.mjs +939 -0
- package/esm2022/lib/lib-address-autocomplete-by-component.component.mjs +1432 -0
- package/esm2022/lib/lib-address-autocomplete-by-component.module.mjs +45 -0
- package/esm2022/lib/lib-address-autocomplete-by-component.service.mjs +17 -0
- package/esm2022/lib/locality/locality.component.mjs +832 -0
- package/esm2022/lib/model/Box.mjs +35 -0
- package/esm2022/lib/model/Locality.mjs +35 -0
- package/esm2022/lib/model/Street.mjs +35 -0
- package/esm2022/lib/model/query-parameters.model.mjs +23 -0
- package/esm2022/lib/services/adress.service.mjs +69 -0
- package/esm2022/lib/services/http.service.mjs +61 -0
- package/esm2022/lib/services/locale.service.mjs +39 -0
- package/esm2022/lib/services/nis9.service.mjs +28 -0
- package/esm2022/lib/services/unicode.service.mjs +380 -0
- package/esm2022/lib/street/street.component.mjs +809 -0
- package/esm2022/lib/street-number/street-number.component.mjs +1026 -0
- package/{esm2020 → esm2022}/lib/utils/constants.mjs +2 -2
- package/esm2022/lib/utils/domhandler.mjs +51 -0
- package/esm2022/lib/utils/highlight-suggestion.pipe.mjs +76 -0
- package/esm2022/lib/utils/prefill-data.mjs +26 -0
- package/esm2022/lib/utils/prefilled-parameters.mjs +25 -0
- package/esm2022/lib/utils/preflll.event.mjs +9 -0
- package/esm2022/lib/utils/visible-suggestion.directive.mjs +41 -0
- package/{fesm2015 → fesm2022}/bpost-bp-address-auto-complete-by-component.mjs +1623 -1255
- package/fesm2022/bpost-bp-address-auto-complete-by-component.mjs.map +1 -0
- package/install-and-start-demo.bat +11 -0
- package/lib/box-number/box-number.component.d.ts +5 -1
- package/lib/lib-address-autocomplete-by-component.component.d.ts +8 -1
- package/lib/lib-address-autocomplete-by-component.module.d.ts +0 -15
- package/lib/locality/locality.component.d.ts +5 -1
- package/lib/street/street.component.d.ts +5 -1
- package/lib/street-number/street-number.component.d.ts +5 -1
- package/package.json +7 -13
- package/resources/assets/aacwidget/i18n/de.json +62 -0
- package/resources/assets/aacwidget/i18n/en.json +62 -0
- package/resources/assets/aacwidget/i18n/fr.json +62 -0
- package/resources/assets/aacwidget/i18n/nl.json +62 -0
- package/resources/assets/aacwidget/scss/aacwidget-custom.scss +81 -0
- package/resources/assets/aacwidget/scss/aacwidget-default.scss +424 -0
- package/tutorial/aacwidget-tutorial/.editorconfig +16 -0
- package/tutorial/aacwidget-tutorial/angular.json +128 -0
- package/tutorial/aacwidget-tutorial/browserslist +13 -0
- package/tutorial/aacwidget-tutorial/e2e/protractor.conf.js +32 -0
- package/tutorial/aacwidget-tutorial/e2e/src/app.e2e-spec.ts +23 -0
- package/tutorial/aacwidget-tutorial/e2e/src/app.po.ts +11 -0
- package/tutorial/aacwidget-tutorial/e2e/tsconfig.json +13 -0
- package/tutorial/aacwidget-tutorial/karma.conf.js +32 -0
- package/tutorial/aacwidget-tutorial/package-lock.json +13314 -0
- package/tutorial/aacwidget-tutorial/src/app/app-routing.module.ts +18 -0
- package/tutorial/aacwidget-tutorial/src/app/app.component.html +6 -0
- package/tutorial/aacwidget-tutorial/src/app/app.component.scss +0 -0
- package/tutorial/aacwidget-tutorial/src/app/app.component.spec.ts +35 -0
- package/tutorial/aacwidget-tutorial/src/app/app.component.ts +28 -0
- package/tutorial/aacwidget-tutorial/src/app/app.module.ts +47 -0
- package/tutorial/aacwidget-tutorial/src/app/widget-full/widget-full.component.html +57 -0
- package/tutorial/aacwidget-tutorial/src/app/widget-full/widget-full.component.scss +0 -0
- package/tutorial/aacwidget-tutorial/src/app/widget-full/widget-full.component.ts +160 -0
- package/tutorial/aacwidget-tutorial/src/app/widget-simple/widget-simple.component.html +20 -0
- package/tutorial/aacwidget-tutorial/src/app/widget-simple/widget-simple.component.scss +0 -0
- package/tutorial/aacwidget-tutorial/src/app/widget-simple/widget-simple.component.spec.ts +25 -0
- package/tutorial/aacwidget-tutorial/src/app/widget-simple/widget-simple.component.ts +49 -0
- package/tutorial/aacwidget-tutorial/src/assets/.gitkeep +0 -0
- package/tutorial/aacwidget-tutorial/src/assets/aacwidget/i18n/de.json +62 -0
- package/tutorial/aacwidget-tutorial/src/assets/aacwidget/i18n/en.json +62 -0
- package/tutorial/aacwidget-tutorial/src/assets/aacwidget/i18n/fr.json +62 -0
- package/tutorial/aacwidget-tutorial/src/assets/aacwidget/i18n/nl.json +62 -0
- package/tutorial/aacwidget-tutorial/src/assets/aacwidget/scss/aacwidget-custom.scss +81 -0
- package/tutorial/aacwidget-tutorial/src/assets/aacwidget/scss/aacwidget-default.scss +424 -0
- package/tutorial/aacwidget-tutorial/src/environments/environment.prod.ts +3 -0
- package/tutorial/aacwidget-tutorial/src/environments/environment.ts +16 -0
- package/tutorial/aacwidget-tutorial/src/favicon.ico +0 -0
- package/tutorial/aacwidget-tutorial/src/index.html +45 -0
- package/tutorial/aacwidget-tutorial/src/main.ts +12 -0
- package/tutorial/aacwidget-tutorial/src/polyfills.ts +63 -0
- package/tutorial/aacwidget-tutorial/src/styles.scss +4 -0
- package/tutorial/aacwidget-tutorial/src/test.ts +25 -0
- package/tutorial/aacwidget-tutorial/tsconfig.app.json +15 -0
- package/tutorial/aacwidget-tutorial/tsconfig.json +23 -0
- package/tutorial/aacwidget-tutorial/tsconfig.spec.json +18 -0
- package/tutorial/aacwidget-tutorial/tslint.json +148 -0
- package/tutorial/tutorial-videos.txt +41 -0
- package/esm2020/lib/box-number/box-number.component.mjs +0 -873
- package/esm2020/lib/lib-address-autocomplete-by-component.component.mjs +0 -1383
- package/esm2020/lib/lib-address-autocomplete-by-component.module.mjs +0 -65
- package/esm2020/lib/lib-address-autocomplete-by-component.service.mjs +0 -14
- package/esm2020/lib/locality/locality.component.mjs +0 -747
- package/esm2020/lib/model/Box.mjs +0 -30
- package/esm2020/lib/model/Locality.mjs +0 -30
- package/esm2020/lib/model/Street.mjs +0 -30
- package/esm2020/lib/model/query-parameters.model.mjs +0 -21
- package/esm2020/lib/services/adress.service.mjs +0 -64
- package/esm2020/lib/services/http.service.mjs +0 -57
- package/esm2020/lib/services/locale.service.mjs +0 -37
- package/esm2020/lib/services/nis9.service.mjs +0 -26
- package/esm2020/lib/services/unicode.service.mjs +0 -376
- package/esm2020/lib/street/street.component.mjs +0 -735
- package/esm2020/lib/street-number/street-number.component.mjs +0 -967
- package/esm2020/lib/utils/domhandler.mjs +0 -47
- package/esm2020/lib/utils/highlight-suggestion.pipe.mjs +0 -62
- package/esm2020/lib/utils/prefill-data.mjs +0 -24
- package/esm2020/lib/utils/prefilled-parameters.mjs +0 -23
- package/esm2020/lib/utils/preflll.event.mjs +0 -7
- package/esm2020/lib/utils/visible-suggestion.directive.mjs +0 -39
- package/fesm2015/bpost-bp-address-auto-complete-by-component.mjs.map +0 -1
- package/fesm2020/bpost-bp-address-auto-complete-by-component.mjs +0 -5592
- package/fesm2020/bpost-bp-address-auto-complete-by-component.mjs.map +0 -1
- /package/{esm2020 → esm2022}/bpost-bp-address-auto-complete-by-component.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/enum/address-level.enum.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/enum/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/enum/input-name.enum.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/enum/source-type.enum.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/enum/suggestion-level-type.enum.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/enum/validation-message-option-type.enum.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/enum/validation-message-type.enum.mjs +0 -0
- /package/{esm2020 → esm2022}/public-api.mjs +0 -0
- /package/{bpost-bp-address-auto-complete-by-component.d.ts → index.d.ts} +0 -0
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|