@colijnit/transaction 12.0.4 → 12.1.2

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 (72) hide show
  1. package/app/component/core/base/default-ok-cancel-buttons.component.d.ts +13 -0
  2. package/app/component/core/base/transaction-base.component.d.ts +38 -0
  3. package/app/component/core/directive/template-wrapper.directive.d.ts +13 -0
  4. package/app/component/{shopping-cart → core}/stock-status-indicator/stock-status-indicator.component.d.ts +0 -0
  5. package/app/component/service-order/ione-service-order-module.d.ts +2 -0
  6. package/app/component/service-order/ione-service-order.component.d.ts +25 -0
  7. package/app/component/service-order/service-order.component.d.ts +48 -0
  8. package/app/component/service-order/summary/transaction-article-summary.component.d.ts +17 -0
  9. package/app/component/service-order/summary/transaction-delivery-summary.component.d.ts +20 -0
  10. package/app/component/service-order/summary/transaction-order-summary.component.d.ts +16 -0
  11. package/app/component/service-order/summary/transaction-payment-info.component.d.ts +14 -0
  12. package/app/component/service-order/summary/transaction-product-contract-summary.component.d.ts +7 -0
  13. package/app/component/service-order/summary/transaction-product-summary.component.d.ts +15 -0
  14. package/app/component/service-order/summary/transaction-service-status.component.d.ts +15 -0
  15. package/app/component/service-order/summary/transaction-service-summary.component.d.ts +15 -0
  16. package/app/component/service-order/summary/transaction-summary-block.component.d.ts +16 -0
  17. package/app/component/service-order/transaction-article-text/transaction-article-text.component.d.ts +24 -0
  18. package/app/component/service-order/transaction-header-block/transaction-header-block.component.d.ts +15 -0
  19. package/app/component/service-order/transaction-order-line-view/transaction-order-line-view.component.d.ts +16 -0
  20. package/app/component/service-order/transaction-order-lines/transaction-order-lines.component.d.ts +25 -0
  21. package/app/component/service-order/transaction-order-totals/transaction-order-totals.component.d.ts +6 -0
  22. package/app/component/service-order/transaction-relation/transaction-relation-address.component.d.ts +22 -0
  23. package/app/component/service-order/transaction-relation/transaction-relation-edit.component.d.ts +29 -0
  24. package/app/component/service-order/transaction-sidebar/transaction-line-accordion.component.d.ts +11 -0
  25. package/app/component/service-order/transaction-sidebar/transaction-sidebar-right.component.d.ts +26 -0
  26. package/app/service/ione-connector-adapter.service.d.ts +2 -0
  27. package/app/service/transaction-event.service.d.ts +5 -0
  28. package/app/service/transaction.service.d.ts +5 -0
  29. package/bundles/colijnit-transaction.umd.js +1656 -47
  30. package/bundles/colijnit-transaction.umd.js.map +1 -1
  31. package/colijnit-transaction.d.ts +23 -1
  32. package/colijnit-transaction.metadata.json +1 -1
  33. package/esm2015/app/component/checkout/checkout-overview/checkout-overview.component.js +2 -2
  34. package/esm2015/app/component/checkout/ione-checkout.module.js +3 -5
  35. package/esm2015/app/component/common/icon/icon.component.js +2 -1
  36. package/esm2015/app/component/core/base/default-ok-cancel-buttons.component.js +39 -0
  37. package/esm2015/app/component/core/base/transaction-base.component.js +123 -0
  38. package/esm2015/app/component/core/directive/template-wrapper.directive.js +69 -0
  39. package/esm2015/app/component/{shopping-cart → core}/stock-status-indicator/stock-status-indicator.component.js +1 -1
  40. package/esm2015/app/component/service-order/ione-service-order-module.js +103 -0
  41. package/esm2015/app/component/service-order/ione-service-order.component.js +96 -0
  42. package/esm2015/app/component/service-order/service-order.component.js +166 -0
  43. package/esm2015/app/component/service-order/summary/transaction-article-summary.component.js +55 -0
  44. package/esm2015/app/component/service-order/summary/transaction-delivery-summary.component.js +59 -0
  45. package/esm2015/app/component/service-order/summary/transaction-order-summary.component.js +43 -0
  46. package/esm2015/app/component/service-order/summary/transaction-payment-info.component.js +35 -0
  47. package/esm2015/app/component/service-order/summary/transaction-product-contract-summary.component.js +38 -0
  48. package/esm2015/app/component/service-order/summary/transaction-product-summary.component.js +41 -0
  49. package/esm2015/app/component/service-order/summary/transaction-service-status.component.js +37 -0
  50. package/esm2015/app/component/service-order/summary/transaction-service-summary.component.js +38 -0
  51. package/esm2015/app/component/service-order/summary/transaction-summary-block.component.js +53 -0
  52. package/esm2015/app/component/service-order/transaction-article-text/transaction-article-text.component.js +183 -0
  53. package/esm2015/app/component/service-order/transaction-header-block/transaction-header-block.component.js +83 -0
  54. package/esm2015/app/component/service-order/transaction-order-line-view/transaction-order-line-view.component.js +76 -0
  55. package/esm2015/app/component/service-order/transaction-order-lines/transaction-order-lines.component.js +71 -0
  56. package/esm2015/app/component/service-order/transaction-order-totals/transaction-order-totals.component.js +36 -0
  57. package/esm2015/app/component/service-order/transaction-relation/transaction-relation-address.component.js +116 -0
  58. package/esm2015/app/component/service-order/transaction-relation/transaction-relation-edit.component.js +225 -0
  59. package/esm2015/app/component/service-order/transaction-sidebar/transaction-line-accordion.component.js +172 -0
  60. package/esm2015/app/component/service-order/transaction-sidebar/transaction-sidebar-right.component.js +120 -0
  61. package/esm2015/app/component/shopping-cart/ione-shopping-cart.module.js +3 -7
  62. package/esm2015/app/component/shopping-cart/shopping-cart-line/shopping-cart-line.component.js +1 -1
  63. package/esm2015/app/service/ione-connector-adapter.service.js +39 -10
  64. package/esm2015/app/service/transaction-event.service.js +4 -1
  65. package/esm2015/app/service/transaction.service.js +51 -15
  66. package/esm2015/assets/dictionary/text.properties.js +33 -1
  67. package/esm2015/colijnit-transaction.js +24 -2
  68. package/esm2015/public_api.js +3 -1
  69. package/fesm2015/colijnit-transaction.js +2077 -33
  70. package/fesm2015/colijnit-transaction.js.map +1 -1
  71. package/package.json +3 -3
  72. package/public_api.d.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/transaction",
3
- "version": "12.0.4",
3
+ "version": "12.1.2",
4
4
  "private": false,
5
5
  "dependencies": {
6
6
  "@angular/animations": "^12.2.7",
@@ -14,8 +14,8 @@
14
14
  "@angular/platform-browser": "^12.2.7",
15
15
  "@angular/platform-browser-dynamic": "^12.2.7",
16
16
  "@angular/router": "^12.2.7",
17
- "@colijnit/corecomponents_v12": "12.0.4",
18
- "@colijnit/transactionapi": "1.1.5",
17
+ "@colijnit/corecomponents_v12": "12.0.9",
18
+ "@colijnit/transactionapi": "1.1.7",
19
19
  "@syncfusion/ej2-angular-buttons": "~19.3.44",
20
20
  "@syncfusion/ej2-angular-calendars": "~19.3.44",
21
21
  "@syncfusion/ej2-angular-dropdowns": "~19.3.45",
package/public_api.d.ts CHANGED
@@ -2,3 +2,5 @@ export * from "./app/component/checkout/ione-checkout.component";
2
2
  export * from "./app/component/checkout/ione-checkout.module";
3
3
  export * from "./app/component/shopping-cart/ione-shopping-cart.component";
4
4
  export * from "./app/component/shopping-cart/ione-shopping-cart.module";
5
+ export * from "./app/component/service-order/ione-service-order.component";
6
+ export * from "./app/component/service-order/ione-service-order-module";