@colijnit/product 1.0.13 → 1.9.4

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 (129) hide show
  1. package/app/components/image-carousel/image-carousel.component.d.ts +11 -7
  2. package/app/components/product-additional-description/product-additional-description.component.d.ts +5 -4
  3. package/app/components/product-additional-info/product-additional-info.component.d.ts +5 -4
  4. package/app/components/product-addtocart/product-addtocart.component.d.ts +8 -5
  5. package/app/components/product-delivery/product-delivery.component.d.ts +3 -3
  6. package/app/components/product-description/product-description.component.d.ts +1 -1
  7. package/app/components/product-documents/product-documents.component.d.ts +1 -1
  8. package/app/components/product-info/product-info.component.d.ts +1 -1
  9. package/app/components/product-info-tabs/product-info-tabs.component.d.ts +4 -4
  10. package/app/components/product-page/product-page.component.d.ts +16 -12
  11. package/app/components/product-price/product-price.component.d.ts +3 -2
  12. package/app/components/product-properties/product-properties.component.d.ts +3 -2
  13. package/app/components/product-related/product-related.component.d.ts +6 -5
  14. package/app/components/product-stock/product-stock.component.d.ts +3 -3
  15. package/app/components/product-symbols/product-symbols.component.d.ts +2 -1
  16. package/app/ione-product.component.d.ts +13 -10
  17. package/app/ione-product.module.d.ts +2 -0
  18. package/app/model/article-quantity.model.d.ts +1 -1
  19. package/app/model/settings.d.ts +5 -0
  20. package/app/product-version.d.ts +6 -0
  21. package/app/service/dictionary.service.d.ts +2 -2
  22. package/app/service/icon-cache.service.d.ts +1 -1
  23. package/app/service/product-connector-adapter.service.d.ts +27 -0
  24. package/app/service/product-connector.service.d.ts +32 -0
  25. package/app/service/product-event.service.d.ts +18 -0
  26. package/app/service/product-initializer.service.d.ts +6 -0
  27. package/app/service/product-module.service.d.ts +9 -0
  28. package/app/service/{settings.service.d.ts → product-settings.service.d.ts} +6 -4
  29. package/app/style/_scrollbars.mixins.scss +18 -0
  30. package/app/style/_variables.scss +21 -0
  31. package/{css/styles.css → app/style/product-globals.scss} +102 -76
  32. package/bundles/colijnit-product.umd.js +544 -418
  33. package/bundles/colijnit-product.umd.js.map +1 -1
  34. package/bundles/colijnit-product.umd.min.js +2 -2
  35. package/bundles/colijnit-product.umd.min.js.map +1 -1
  36. package/colijnit-product.d.ts +6 -5
  37. package/colijnit-product.metadata.json +1 -1
  38. package/esm2015/app/components/core/header/header.component.js +4 -4
  39. package/esm2015/app/components/image-carousel/image-carousel.component.js +32 -26
  40. package/esm2015/app/components/product-additional-description/product-additional-description.component.js +7 -7
  41. package/esm2015/app/components/product-additional-info/product-additional-info.component.js +10 -10
  42. package/esm2015/app/components/product-addtocart/product-addtocart.component.js +33 -35
  43. package/esm2015/app/components/product-delivery/product-delivery.component.js +8 -8
  44. package/esm2015/app/components/product-description/product-description.component.js +5 -5
  45. package/esm2015/app/components/product-documents/product-documents.component.js +5 -5
  46. package/esm2015/app/components/product-info/product-info.component.js +5 -5
  47. package/esm2015/app/components/product-info-tabs/product-info-tabs.component.js +8 -8
  48. package/esm2015/app/components/product-page/product-page.component.js +38 -64
  49. package/esm2015/app/components/product-price/product-price.component.js +6 -6
  50. package/esm2015/app/components/product-properties/product-properties.component.js +6 -6
  51. package/esm2015/app/components/product-related/product-related.component.js +17 -13
  52. package/esm2015/app/components/product-selector-type/product-selector-type.component.js +8 -8
  53. package/esm2015/app/components/product-stock/product-stock.component.js +7 -7
  54. package/esm2015/app/components/product-symbols/product-symbols.component.js +4 -4
  55. package/esm2015/app/ione-product.component.js +34 -59
  56. package/esm2015/app/ione-product.module.js +24 -9
  57. package/esm2015/app/model/article-quantity.model.js +1 -1
  58. package/esm2015/app/model/settings.js +2 -1
  59. package/esm2015/app/pipe/localize.pipe.js +2 -2
  60. package/esm2015/app/product-version.js +10 -0
  61. package/esm2015/app/service/dictionary.service.js +6 -6
  62. package/esm2015/app/service/icon-cache.service.js +3 -3
  63. package/esm2015/app/service/product-connector-adapter.service.js +128 -0
  64. package/esm2015/app/service/product-connector.service.js +108 -0
  65. package/esm2015/app/service/product-event.service.js +41 -0
  66. package/esm2015/app/service/product-initializer.service.js +26 -0
  67. package/esm2015/app/service/product-module.service.js +39 -0
  68. package/esm2015/app/service/product-settings.service.js +142 -0
  69. package/esm2015/app/utils/json-utils.service.js +7 -8
  70. package/esm2015/colijnit-product.js +7 -6
  71. package/esm2015/public_api.js +2 -1
  72. package/esm5/app/components/core/header/header.component.js +4 -4
  73. package/esm5/app/components/image-carousel/image-carousel.component.js +32 -26
  74. package/esm5/app/components/product-additional-description/product-additional-description.component.js +7 -7
  75. package/esm5/app/components/product-additional-info/product-additional-info.component.js +15 -14
  76. package/esm5/app/components/product-addtocart/product-addtocart.component.js +38 -41
  77. package/esm5/app/components/product-delivery/product-delivery.component.js +8 -8
  78. package/esm5/app/components/product-description/product-description.component.js +5 -5
  79. package/esm5/app/components/product-documents/product-documents.component.js +5 -5
  80. package/esm5/app/components/product-info/product-info.component.js +5 -5
  81. package/esm5/app/components/product-info-tabs/product-info-tabs.component.js +8 -8
  82. package/esm5/app/components/product-page/product-page.component.js +40 -66
  83. package/esm5/app/components/product-price/product-price.component.js +6 -6
  84. package/esm5/app/components/product-properties/product-properties.component.js +6 -6
  85. package/esm5/app/components/product-related/product-related.component.js +17 -13
  86. package/esm5/app/components/product-selector-type/product-selector-type.component.js +8 -8
  87. package/esm5/app/components/product-stock/product-stock.component.js +7 -7
  88. package/esm5/app/components/product-symbols/product-symbols.component.js +4 -4
  89. package/esm5/app/ione-product.component.js +35 -66
  90. package/esm5/app/ione-product.module.js +24 -9
  91. package/esm5/app/model/article-quantity.model.js +1 -1
  92. package/esm5/app/model/settings.js +2 -1
  93. package/esm5/app/pipe/localize.pipe.js +5 -5
  94. package/esm5/app/product-version.js +12 -0
  95. package/esm5/app/service/dictionary.service.js +8 -8
  96. package/esm5/app/service/icon-cache.service.js +3 -3
  97. package/esm5/app/service/product-connector-adapter.service.js +197 -0
  98. package/esm5/app/service/product-connector.service.js +128 -0
  99. package/esm5/app/service/product-event.service.js +42 -0
  100. package/esm5/app/service/product-initializer.service.js +29 -0
  101. package/esm5/app/service/product-module.service.js +50 -0
  102. package/esm5/app/service/product-settings.service.js +165 -0
  103. package/esm5/app/utils/json-utils.service.js +8 -9
  104. package/esm5/colijnit-product.js +7 -6
  105. package/esm5/public_api.js +2 -1
  106. package/fesm2015/colijnit-product.js +376 -314
  107. package/fesm2015/colijnit-product.js.map +1 -1
  108. package/fesm5/colijnit-product.js +549 -422
  109. package/fesm5/colijnit-product.js.map +1 -1
  110. package/package.json +21 -44
  111. package/public_api.d.ts +1 -0
  112. package/app/service/app-event.service.d.ts +0 -13
  113. package/app/service/i-one-connector-adapter.service.d.ts +0 -24
  114. package/app/service/i-one-controller.service.d.ts +0 -35
  115. package/app/service/module.service.d.ts +0 -9
  116. package/app/utils/string-utils.d.ts +0 -21
  117. package/colijnit-product-1.0.13.tgz +0 -0
  118. package/esm2015/app/service/app-event.service.js +0 -37
  119. package/esm2015/app/service/i-one-connector-adapter.service.js +0 -52
  120. package/esm2015/app/service/i-one-controller.service.js +0 -104
  121. package/esm2015/app/service/module.service.js +0 -39
  122. package/esm2015/app/service/settings.service.js +0 -107
  123. package/esm2015/app/utils/string-utils.js +0 -51
  124. package/esm5/app/service/app-event.service.js +0 -38
  125. package/esm5/app/service/i-one-connector-adapter.service.js +0 -55
  126. package/esm5/app/service/i-one-controller.service.js +0 -118
  127. package/esm5/app/service/module.service.js +0 -50
  128. package/esm5/app/service/settings.service.js +0 -128
  129. package/esm5/app/utils/string-utils.js +0 -59

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.