@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.
Files changed (117) hide show
  1. package/VERSION.md +197 -0
  2. package/esm2022/lib/box-number/box-number.component.mjs +939 -0
  3. package/esm2022/lib/lib-address-autocomplete-by-component.component.mjs +1432 -0
  4. package/esm2022/lib/lib-address-autocomplete-by-component.module.mjs +45 -0
  5. package/esm2022/lib/lib-address-autocomplete-by-component.service.mjs +17 -0
  6. package/esm2022/lib/locality/locality.component.mjs +832 -0
  7. package/esm2022/lib/model/Box.mjs +35 -0
  8. package/esm2022/lib/model/Locality.mjs +35 -0
  9. package/esm2022/lib/model/Street.mjs +35 -0
  10. package/esm2022/lib/model/query-parameters.model.mjs +23 -0
  11. package/esm2022/lib/services/adress.service.mjs +69 -0
  12. package/esm2022/lib/services/http.service.mjs +61 -0
  13. package/esm2022/lib/services/locale.service.mjs +39 -0
  14. package/esm2022/lib/services/nis9.service.mjs +28 -0
  15. package/esm2022/lib/services/unicode.service.mjs +380 -0
  16. package/esm2022/lib/street/street.component.mjs +809 -0
  17. package/esm2022/lib/street-number/street-number.component.mjs +1026 -0
  18. package/{esm2020 → esm2022}/lib/utils/constants.mjs +2 -2
  19. package/esm2022/lib/utils/domhandler.mjs +51 -0
  20. package/esm2022/lib/utils/highlight-suggestion.pipe.mjs +76 -0
  21. package/esm2022/lib/utils/prefill-data.mjs +26 -0
  22. package/esm2022/lib/utils/prefilled-parameters.mjs +25 -0
  23. package/esm2022/lib/utils/preflll.event.mjs +9 -0
  24. package/esm2022/lib/utils/visible-suggestion.directive.mjs +41 -0
  25. package/{fesm2015 → fesm2022}/bpost-bp-address-auto-complete-by-component.mjs +1623 -1255
  26. package/fesm2022/bpost-bp-address-auto-complete-by-component.mjs.map +1 -0
  27. package/install-and-start-demo.bat +11 -0
  28. package/lib/box-number/box-number.component.d.ts +5 -1
  29. package/lib/lib-address-autocomplete-by-component.component.d.ts +8 -1
  30. package/lib/lib-address-autocomplete-by-component.module.d.ts +0 -15
  31. package/lib/locality/locality.component.d.ts +5 -1
  32. package/lib/street/street.component.d.ts +5 -1
  33. package/lib/street-number/street-number.component.d.ts +5 -1
  34. package/package.json +7 -13
  35. package/resources/assets/aacwidget/i18n/de.json +62 -0
  36. package/resources/assets/aacwidget/i18n/en.json +62 -0
  37. package/resources/assets/aacwidget/i18n/fr.json +62 -0
  38. package/resources/assets/aacwidget/i18n/nl.json +62 -0
  39. package/resources/assets/aacwidget/scss/aacwidget-custom.scss +81 -0
  40. package/resources/assets/aacwidget/scss/aacwidget-default.scss +424 -0
  41. package/tutorial/aacwidget-tutorial/.editorconfig +16 -0
  42. package/tutorial/aacwidget-tutorial/angular.json +128 -0
  43. package/tutorial/aacwidget-tutorial/browserslist +13 -0
  44. package/tutorial/aacwidget-tutorial/e2e/protractor.conf.js +32 -0
  45. package/tutorial/aacwidget-tutorial/e2e/src/app.e2e-spec.ts +23 -0
  46. package/tutorial/aacwidget-tutorial/e2e/src/app.po.ts +11 -0
  47. package/tutorial/aacwidget-tutorial/e2e/tsconfig.json +13 -0
  48. package/tutorial/aacwidget-tutorial/karma.conf.js +32 -0
  49. package/tutorial/aacwidget-tutorial/package-lock.json +13314 -0
  50. package/tutorial/aacwidget-tutorial/src/app/app-routing.module.ts +18 -0
  51. package/tutorial/aacwidget-tutorial/src/app/app.component.html +6 -0
  52. package/tutorial/aacwidget-tutorial/src/app/app.component.scss +0 -0
  53. package/tutorial/aacwidget-tutorial/src/app/app.component.spec.ts +35 -0
  54. package/tutorial/aacwidget-tutorial/src/app/app.component.ts +28 -0
  55. package/tutorial/aacwidget-tutorial/src/app/app.module.ts +47 -0
  56. package/tutorial/aacwidget-tutorial/src/app/widget-full/widget-full.component.html +57 -0
  57. package/tutorial/aacwidget-tutorial/src/app/widget-full/widget-full.component.scss +0 -0
  58. package/tutorial/aacwidget-tutorial/src/app/widget-full/widget-full.component.ts +160 -0
  59. package/tutorial/aacwidget-tutorial/src/app/widget-simple/widget-simple.component.html +20 -0
  60. package/tutorial/aacwidget-tutorial/src/app/widget-simple/widget-simple.component.scss +0 -0
  61. package/tutorial/aacwidget-tutorial/src/app/widget-simple/widget-simple.component.spec.ts +25 -0
  62. package/tutorial/aacwidget-tutorial/src/app/widget-simple/widget-simple.component.ts +49 -0
  63. package/tutorial/aacwidget-tutorial/src/assets/.gitkeep +0 -0
  64. package/tutorial/aacwidget-tutorial/src/assets/aacwidget/i18n/de.json +62 -0
  65. package/tutorial/aacwidget-tutorial/src/assets/aacwidget/i18n/en.json +62 -0
  66. package/tutorial/aacwidget-tutorial/src/assets/aacwidget/i18n/fr.json +62 -0
  67. package/tutorial/aacwidget-tutorial/src/assets/aacwidget/i18n/nl.json +62 -0
  68. package/tutorial/aacwidget-tutorial/src/assets/aacwidget/scss/aacwidget-custom.scss +81 -0
  69. package/tutorial/aacwidget-tutorial/src/assets/aacwidget/scss/aacwidget-default.scss +424 -0
  70. package/tutorial/aacwidget-tutorial/src/environments/environment.prod.ts +3 -0
  71. package/tutorial/aacwidget-tutorial/src/environments/environment.ts +16 -0
  72. package/tutorial/aacwidget-tutorial/src/favicon.ico +0 -0
  73. package/tutorial/aacwidget-tutorial/src/index.html +45 -0
  74. package/tutorial/aacwidget-tutorial/src/main.ts +12 -0
  75. package/tutorial/aacwidget-tutorial/src/polyfills.ts +63 -0
  76. package/tutorial/aacwidget-tutorial/src/styles.scss +4 -0
  77. package/tutorial/aacwidget-tutorial/src/test.ts +25 -0
  78. package/tutorial/aacwidget-tutorial/tsconfig.app.json +15 -0
  79. package/tutorial/aacwidget-tutorial/tsconfig.json +23 -0
  80. package/tutorial/aacwidget-tutorial/tsconfig.spec.json +18 -0
  81. package/tutorial/aacwidget-tutorial/tslint.json +148 -0
  82. package/tutorial/tutorial-videos.txt +41 -0
  83. package/esm2020/lib/box-number/box-number.component.mjs +0 -873
  84. package/esm2020/lib/lib-address-autocomplete-by-component.component.mjs +0 -1383
  85. package/esm2020/lib/lib-address-autocomplete-by-component.module.mjs +0 -65
  86. package/esm2020/lib/lib-address-autocomplete-by-component.service.mjs +0 -14
  87. package/esm2020/lib/locality/locality.component.mjs +0 -747
  88. package/esm2020/lib/model/Box.mjs +0 -30
  89. package/esm2020/lib/model/Locality.mjs +0 -30
  90. package/esm2020/lib/model/Street.mjs +0 -30
  91. package/esm2020/lib/model/query-parameters.model.mjs +0 -21
  92. package/esm2020/lib/services/adress.service.mjs +0 -64
  93. package/esm2020/lib/services/http.service.mjs +0 -57
  94. package/esm2020/lib/services/locale.service.mjs +0 -37
  95. package/esm2020/lib/services/nis9.service.mjs +0 -26
  96. package/esm2020/lib/services/unicode.service.mjs +0 -376
  97. package/esm2020/lib/street/street.component.mjs +0 -735
  98. package/esm2020/lib/street-number/street-number.component.mjs +0 -967
  99. package/esm2020/lib/utils/domhandler.mjs +0 -47
  100. package/esm2020/lib/utils/highlight-suggestion.pipe.mjs +0 -62
  101. package/esm2020/lib/utils/prefill-data.mjs +0 -24
  102. package/esm2020/lib/utils/prefilled-parameters.mjs +0 -23
  103. package/esm2020/lib/utils/preflll.event.mjs +0 -7
  104. package/esm2020/lib/utils/visible-suggestion.directive.mjs +0 -39
  105. package/fesm2015/bpost-bp-address-auto-complete-by-component.mjs.map +0 -1
  106. package/fesm2020/bpost-bp-address-auto-complete-by-component.mjs +0 -5592
  107. package/fesm2020/bpost-bp-address-auto-complete-by-component.mjs.map +0 -1
  108. /package/{esm2020 → esm2022}/bpost-bp-address-auto-complete-by-component.mjs +0 -0
  109. /package/{esm2020 → esm2022}/lib/enum/address-level.enum.mjs +0 -0
  110. /package/{esm2020 → esm2022}/lib/enum/index.mjs +0 -0
  111. /package/{esm2020 → esm2022}/lib/enum/input-name.enum.mjs +0 -0
  112. /package/{esm2020 → esm2022}/lib/enum/source-type.enum.mjs +0 -0
  113. /package/{esm2020 → esm2022}/lib/enum/suggestion-level-type.enum.mjs +0 -0
  114. /package/{esm2020 → esm2022}/lib/enum/validation-message-option-type.enum.mjs +0 -0
  115. /package/{esm2020 → esm2022}/lib/enum/validation-message-type.enum.mjs +0 -0
  116. /package/{esm2020 → esm2022}/public-api.mjs +0 -0
  117. /package/{bpost-bp-address-auto-complete-by-component.d.ts → index.d.ts} +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.