@colijnit/transaction 12.1.8 → 12.1.11

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 (302) hide show
  1. package/bundles/colijnit-transaction.umd.js +6370 -3457
  2. package/bundles/colijnit-transaction.umd.js.map +1 -1
  3. package/colijnit-transaction.d.ts +84 -23
  4. package/colijnit-transaction.metadata.json +1 -1
  5. package/esm2015/colijnit-transaction.js +85 -24
  6. package/esm2015/lib/assets/dictionary/text.properties.js +118 -8
  7. package/esm2015/lib/component/checkout/checkout-overview-delivery-address/checkout-overview-delivery-address.component.js +1 -1
  8. package/esm2015/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.js +120 -288
  9. package/esm2015/lib/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.js +279 -112
  10. package/esm2015/lib/component/checkout/checkout-relation-suggestions-list/checkout-relation-suggestions-list.component.js +2 -2
  11. package/esm2015/lib/component/checkout/checkout.component.js +64 -34
  12. package/esm2015/lib/component/checkout/checkout.module.js +11 -2
  13. package/esm2015/lib/component/confirmation-dialog/confirmation-dialog.component.js +17 -3
  14. package/esm2015/lib/component/core/base/default-ok-cancel-buttons.component.js +41 -0
  15. package/esm2015/lib/component/core/base/transaction-base.component.js +7 -9
  16. package/esm2015/lib/component/core/core.module.js +6 -3
  17. package/esm2015/lib/component/core/enum/app-popup-type.enum.js +8 -0
  18. package/esm2015/lib/component/core/relation/customer-groups.component.js +4 -3
  19. package/esm2015/lib/component/core/stock-status-indicator/stock-status-indicator.component.js +1 -1
  20. package/esm2015/lib/component/delivery-type-tile/delivery-type-tile.component.js +40 -0
  21. package/esm2015/lib/component/delivery-type-tile/delivery-type-tile.module.js +26 -0
  22. package/esm2015/lib/component/order-confirmation-grid.component/order-confirmation-grid.component.js +70 -0
  23. package/esm2015/lib/component/order-confirmation-grid.component/order-confirmation-grid.module.js +29 -0
  24. package/esm2015/lib/component/order-grid/order-grid.component.js +99 -0
  25. package/esm2015/lib/component/order-grid/order-grid.module.js +28 -0
  26. package/esm2015/lib/component/payment/payment.component.js +73 -0
  27. package/esm2015/lib/component/payment/payment.module.js +27 -0
  28. package/esm2015/lib/component/payment-tile/payment-tile.component.js +32 -0
  29. package/esm2015/lib/component/payment-tile/payment-tile.module.js +25 -0
  30. package/esm2015/lib/component/relation-address-select/relation-address-select.component.js +1 -1
  31. package/esm2015/lib/component/relation-address-tile/relation-address-tile.component.js +12 -24
  32. package/esm2015/lib/component/relation-address-tile/relation-address-tile.module.js +4 -2
  33. package/esm2015/lib/component/seller-information/seller-information.component.js +61 -0
  34. package/esm2015/lib/component/seller-information/seller-information.module.js +21 -0
  35. package/esm2015/lib/component/shared/transaction-article-text/transaction-article-text.module.js +1 -1
  36. package/esm2015/lib/component/shopping-cart-preview/shopping-cart-preview.component.js +7 -3
  37. package/esm2015/lib/component/stepper/component/stepper-step.component.js +3 -3
  38. package/esm2015/lib/component/stepper/stepper.component.js +39 -41
  39. package/esm2015/lib/component/stepper/stepper.module.js +6 -3
  40. package/esm2015/lib/component/tile/tile.component.js +32 -0
  41. package/esm2015/lib/component/tile/tile.module.js +19 -0
  42. package/esm2015/lib/component/transaction/transaction.component.js +72 -14
  43. package/esm2015/lib/component/transaction/transaction.module.js +10 -2
  44. package/esm2015/lib/component/transaction-commit-bar/transaction-commit-bar.component.js +46 -0
  45. package/esm2015/lib/component/transaction-commit-bar/transaction-commit-bar.module.js +27 -0
  46. package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.js +28 -0
  47. package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.module.js +27 -0
  48. package/esm2015/lib/component/transaction-header/transaction-header.component.js +14 -4
  49. package/esm2015/lib/component/transaction-header-delivery/transaction-header-delivery.component.js +5 -2
  50. package/esm2015/lib/component/transaction-history-grid/transaction-history-grid.component.js +47 -0
  51. package/esm2015/lib/component/transaction-history-grid/transaction-history-grid.module.js +27 -0
  52. package/esm2015/lib/component/transaction-history-grid-status/transaction-history-grid-status.component.js +36 -0
  53. package/esm2015/lib/component/transaction-history-grid-status/transaction-history-grid-status.module.js +23 -0
  54. package/esm2015/lib/component/transaction-line/transaction-line.component.js +36 -4
  55. package/esm2015/lib/component/transaction-line-fields/transaction-line-commission-code.component.js +49 -0
  56. package/esm2015/lib/component/transaction-line-fields/transaction-line-commission-code.module.js +23 -0
  57. package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-date.component.js +40 -0
  58. package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-date.module.js +23 -0
  59. package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-method.component.js +48 -0
  60. package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-method.module.js +23 -0
  61. package/esm2015/lib/component/transaction-line-fields/transaction-line-discount-amount.component.js +50 -0
  62. package/esm2015/lib/component/transaction-line-fields/transaction-line-discount-amount.module.js +23 -0
  63. package/esm2015/lib/component/transaction-line-fields/transaction-line-fields-base.component.js +22 -0
  64. package/esm2015/lib/component/transaction-line-fields/transaction-line-line-discount.component.js +50 -0
  65. package/esm2015/lib/component/transaction-line-fields/transaction-line-line-discount.module.js +23 -0
  66. package/esm2015/lib/component/transaction-line-fields/transaction-line-price-list.component.js +49 -0
  67. package/esm2015/lib/component/transaction-line-fields/transaction-line-price-list.module.js +23 -0
  68. package/esm2015/lib/component/transaction-line-fields/transaction-line-price.component.js +49 -0
  69. package/esm2015/lib/component/transaction-line-fields/transaction-line-price.module.js +23 -0
  70. package/esm2015/lib/component/transaction-line-fields/transaction-line-quantity.component.js +36 -0
  71. package/esm2015/lib/component/transaction-line-fields/transaction-line-quantity.module.js +23 -0
  72. package/esm2015/lib/component/transaction-line-fields/transaction-line-quantum-discount.component.js +50 -0
  73. package/esm2015/lib/component/transaction-line-fields/transaction-line-quantum-discount.module.js +23 -0
  74. package/esm2015/lib/component/transaction-line-fields/transaction-line-reference.component.js +48 -0
  75. package/esm2015/lib/component/transaction-line-fields/transaction-line-reference.module.js +23 -0
  76. package/esm2015/lib/component/transaction-line-fields/transaction-line-special-discount.component.js +50 -0
  77. package/esm2015/lib/component/transaction-line-fields/transaction-line-special-discount.module.js +23 -0
  78. package/esm2015/lib/component/transaction-line-fields/transaction-line-vat.component.js +49 -0
  79. package/esm2015/lib/component/transaction-line-fields/transaction-line-vat.module.js +23 -0
  80. package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse.component.js +49 -0
  81. package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse.module.js +24 -0
  82. package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.js +91 -0
  83. package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.module.js +36 -0
  84. package/esm2015/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.component.js +134 -0
  85. package/esm2015/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.module.js +56 -0
  86. package/esm2015/lib/component/transaction-lines/transaction-lines.component.js +14 -3
  87. package/esm2015/lib/component/transaction-lines-grid/transaction-lines-grid.component.js +16 -11
  88. package/esm2015/lib/component/transaction-lines-grid/transaction-lines-grid.module.js +4 -3
  89. package/esm2015/lib/component/transaction-nav-bar/transaction-nav-bar-button/transaction-nav-bar-button.component.js +29 -0
  90. package/esm2015/lib/component/transaction-nav-bar/transaction-nav-bar.component.js +65 -0
  91. package/esm2015/lib/component/transaction-nav-bar/transaction-nav-bar.module.js +26 -0
  92. package/esm2015/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.component.js +39 -0
  93. package/esm2015/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.module.js +25 -0
  94. package/esm2015/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.js +28 -0
  95. package/esm2015/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.module.js +27 -0
  96. package/esm2015/lib/enum/icon.enum.js +12 -1
  97. package/esm2015/lib/enum/status-type.enum.js +5 -0
  98. package/esm2015/lib/enum/tab-category.enum.js +10 -0
  99. package/esm2015/lib/model/delivery-type.js +3 -0
  100. package/esm2015/lib/model/icon-svg.js +13 -2
  101. package/esm2015/lib/pipe/date-duration.pipe.js +1 -1
  102. package/esm2015/lib/pipe/delivery-time.pipe.js +4 -1
  103. package/esm2015/lib/pipe/localize.pipe.js +1 -1
  104. package/esm2015/lib/pipe/safe-html.pipe.js +1 -1
  105. package/esm2015/lib/pipe/safe-style.pipe.js +1 -1
  106. package/esm2015/lib/service/dialog.service.js +14 -3
  107. package/esm2015/lib/service/dictionary.service.js +1 -1
  108. package/esm2015/lib/service/ione-connector-adapter.service.js +273 -15
  109. package/esm2015/lib/service/pending-reason.service.js +21 -9
  110. package/esm2015/lib/service/transaction.service.js +195 -29
  111. package/fesm2015/colijnit-transaction.js +4156 -1296
  112. package/fesm2015/colijnit-transaction.js.map +1 -1
  113. package/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.d.ts +8 -45
  114. package/lib/component/checkout/checkout-overview-delivery-edit/style/_layout.scss +13 -6
  115. package/lib/component/checkout/checkout-overview-delivery-edit/style/material.scss +1 -2
  116. package/lib/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.d.ts +31 -3
  117. package/lib/component/checkout/checkout-overview-relation-edit/style/_layout.scss +28 -0
  118. package/lib/component/checkout/checkout-overview-relation-edit/style/_material-definition.scss +1 -0
  119. package/lib/component/checkout/checkout-overview-relation-edit/style/material.scss +4 -0
  120. package/lib/component/checkout/checkout-relation-suggestions-list/style/_layout.scss +1 -0
  121. package/lib/component/checkout/checkout.component.d.ts +10 -1
  122. package/lib/component/checkout/style/_layout.scss +25 -0
  123. package/lib/component/checkout/style/_material-definition.scss +5 -0
  124. package/lib/component/checkout/style/material.scss +2 -0
  125. package/lib/component/confirmation-dialog/confirmation-dialog.component.d.ts +4 -0
  126. package/lib/component/confirmation-dialog/style/material.scss +1 -0
  127. package/lib/component/core/base/default-ok-cancel-buttons.component.d.ts +13 -0
  128. package/lib/component/core/enum/app-popup-type.enum.d.ts +6 -0
  129. package/lib/component/core/image-display/style/_layout.scss +2 -4
  130. package/lib/component/core/relation/relation-customer-groups.component.scss +6 -0
  131. package/lib/component/delivery-type-tile/delivery-type-tile.component.d.ts +10 -0
  132. package/lib/component/delivery-type-tile/delivery-type-tile.module.d.ts +2 -0
  133. package/lib/component/delivery-type-tile/style/_layout.scss +35 -0
  134. package/lib/component/delivery-type-tile/style/_material-definition.scss +16 -0
  135. package/lib/component/delivery-type-tile/style/_theme.scss +6 -0
  136. package/lib/component/delivery-type-tile/style/material.scss +5 -0
  137. package/lib/component/order-confirmation-create/style/_layout.scss +5 -0
  138. package/lib/component/order-confirmation-create/style/_material-definition.scss +1 -0
  139. package/lib/component/order-confirmation-create/style/_theme.scss +5 -0
  140. package/lib/component/order-confirmation-create/style/material.scss +4 -0
  141. package/lib/component/order-confirmation-grid.component/order-confirmation-grid.component.d.ts +15 -0
  142. package/lib/component/order-confirmation-grid.component/order-confirmation-grid.module.d.ts +2 -0
  143. package/lib/component/order-confirmation-grid.component/style/_layout.scss +5 -0
  144. package/lib/component/order-confirmation-grid.component/style/_material-definition.scss +1 -0
  145. package/lib/component/order-confirmation-grid.component/style/_theme.scss +5 -0
  146. package/lib/component/order-confirmation-grid.component/style/material.scss +4 -0
  147. package/lib/component/order-grid/order-grid.component.d.ts +23 -0
  148. package/lib/component/order-grid/order-grid.module.d.ts +2 -0
  149. package/lib/component/order-grid/style/_layout.scss +21 -0
  150. package/lib/component/order-grid/style/_material-definition.scss +2 -0
  151. package/lib/component/order-grid/style/_theme.scss +6 -0
  152. package/lib/component/order-grid/style/material.scss +4 -0
  153. package/lib/component/payment/payment.component.d.ts +18 -0
  154. package/lib/component/payment/payment.module.d.ts +2 -0
  155. package/lib/component/payment/style/_layout.scss +54 -0
  156. package/lib/component/payment/style/_material-definition.scss +17 -0
  157. package/lib/component/payment/style/_theme.scss +16 -0
  158. package/lib/component/payment/style/material.scss +5 -0
  159. package/lib/component/payment-tile/payment-tile.component.d.ts +9 -0
  160. package/lib/component/payment-tile/payment-tile.module.d.ts +2 -0
  161. package/lib/component/payment-tile/style/_layout.scss +22 -0
  162. package/lib/component/{service-order/transaction-edit-article-text/transaction-edit-article-text.component.scss → payment-tile/style/_material-definition.scss} +0 -0
  163. package/lib/component/payment-tile/style/_theme.scss +6 -0
  164. package/lib/component/payment-tile/style/material.scss +5 -0
  165. package/lib/component/relation-address/style/_layout.scss +5 -0
  166. package/lib/component/relation-address-tile/relation-address-tile.component.d.ts +1 -0
  167. package/lib/component/relation-address-tile/style/_layout.scss +0 -21
  168. package/lib/component/relation-address-tile/style/_material-definition.scss +2 -1
  169. package/lib/component/relation-address-tile/style/_theme.scss +0 -30
  170. package/lib/component/relation-address-tile/style/material.scss +1 -0
  171. package/lib/component/seller-information/seller-information.component.d.ts +13 -0
  172. package/lib/component/seller-information/seller-information.module.d.ts +2 -0
  173. package/lib/component/seller-information/style/_layout.scss +21 -0
  174. package/lib/component/seller-information/style/_material-definition.scss +2 -0
  175. package/lib/component/seller-information/style/_theme.scss +7 -0
  176. package/lib/component/seller-information/style/material.scss +4 -0
  177. package/lib/component/shopping-cart-preview/shopping-cart-preview.component.d.ts +2 -0
  178. package/lib/component/shopping-cart-preview/style/_layout.scss +6 -2
  179. package/lib/component/shopping-cart-preview/style/_material-definition.scss +1 -1
  180. package/lib/component/stepper/component/stepper-step.component.d.ts +1 -1
  181. package/lib/component/stepper/stepper.component.d.ts +10 -5
  182. package/lib/component/stepper/style/_layout.scss +52 -20
  183. package/lib/component/stepper/style/_material-definition.scss +9 -2
  184. package/lib/component/stepper/style/_theme.scss +36 -0
  185. package/lib/component/tile/style/_layout.scss +36 -0
  186. package/lib/component/tile/style/_material-definition.scss +16 -0
  187. package/lib/component/tile/style/_theme.scss +36 -0
  188. package/lib/component/tile/style/material.scss +4 -0
  189. package/lib/component/tile/tile.component.d.ts +6 -0
  190. package/lib/component/tile/tile.module.d.ts +2 -0
  191. package/lib/component/transaction/style/_layout.scss +6 -0
  192. package/lib/component/transaction/style/material.scss +3 -0
  193. package/lib/component/transaction/transaction.component.d.ts +16 -1
  194. package/lib/component/transaction-commit-bar/style/_layout.scss +16 -0
  195. package/lib/component/transaction-commit-bar/style/_material-definition.scss +1 -0
  196. package/lib/component/transaction-commit-bar/style/_theme.scss +7 -0
  197. package/lib/component/transaction-commit-bar/style/material.scss +4 -0
  198. package/lib/component/transaction-commit-bar/transaction-commit-bar.component.d.ts +11 -0
  199. package/lib/component/transaction-commit-bar/transaction-commit-bar.module.d.ts +2 -0
  200. package/lib/component/transaction-confirmation-history/style/_layout.scss +7 -0
  201. package/lib/component/transaction-confirmation-history/style/_material-definition.scss +1 -0
  202. package/lib/component/transaction-confirmation-history/style/_theme.scss +7 -0
  203. package/lib/component/transaction-confirmation-history/style/material.scss +4 -0
  204. package/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.d.ts +5 -0
  205. package/lib/component/transaction-confirmation-history/transaction-confirmation-history.module.d.ts +2 -0
  206. package/lib/component/transaction-header/transaction-header.component.d.ts +4 -1
  207. package/lib/component/transaction-history-grid/style/_layout.scss +7 -0
  208. package/lib/component/transaction-history-grid/style/_material-definition.scss +0 -0
  209. package/lib/component/transaction-history-grid/style/_theme.scss +7 -0
  210. package/lib/component/transaction-history-grid/style/material.scss +4 -0
  211. package/lib/component/transaction-history-grid/transaction-history-grid.component.d.ts +14 -0
  212. package/lib/component/transaction-history-grid/transaction-history-grid.module.d.ts +2 -0
  213. package/lib/component/transaction-history-grid-status/style/_layout.scss +28 -0
  214. package/lib/component/{service-order/transaction-sidebar/transaction-line-accordion.component.scss → transaction-history-grid-status/style/_material-definition.scss} +0 -0
  215. package/lib/component/transaction-history-grid-status/style/_theme.scss +7 -0
  216. package/lib/component/transaction-history-grid-status/style/material.scss +4 -0
  217. package/lib/component/transaction-history-grid-status/transaction-history-grid-status.component.d.ts +9 -0
  218. package/lib/component/transaction-history-grid-status/transaction-history-grid-status.module.d.ts +2 -0
  219. package/lib/component/transaction-line/style/_theme.scss +5 -0
  220. package/lib/component/transaction-line/style/material.scss +1 -0
  221. package/lib/component/transaction-line/transaction-line.component.d.ts +8 -2
  222. package/lib/component/transaction-line-fields/transaction-line-commission-code.component.d.ts +12 -0
  223. package/lib/component/transaction-line-fields/transaction-line-commission-code.module.d.ts +2 -0
  224. package/lib/component/transaction-line-fields/transaction-line-delivery-date.component.d.ts +7 -0
  225. package/lib/component/transaction-line-fields/transaction-line-delivery-date.module.d.ts +2 -0
  226. package/lib/component/transaction-line-fields/transaction-line-delivery-method.component.d.ts +12 -0
  227. package/lib/component/transaction-line-fields/transaction-line-delivery-method.module.d.ts +2 -0
  228. package/lib/component/transaction-line-fields/transaction-line-discount-amount.component.d.ts +10 -0
  229. package/lib/component/transaction-line-fields/transaction-line-discount-amount.module.d.ts +2 -0
  230. package/lib/component/transaction-line-fields/transaction-line-fields-base.component.d.ts +6 -0
  231. package/lib/component/transaction-line-fields/transaction-line-line-discount.component.d.ts +10 -0
  232. package/lib/component/transaction-line-fields/transaction-line-line-discount.module.d.ts +2 -0
  233. package/lib/component/transaction-line-fields/transaction-line-price-list.component.d.ts +12 -0
  234. package/lib/component/transaction-line-fields/transaction-line-price-list.module.d.ts +2 -0
  235. package/lib/component/transaction-line-fields/transaction-line-price.component.d.ts +10 -0
  236. package/lib/component/transaction-line-fields/transaction-line-price.module.d.ts +2 -0
  237. package/lib/component/transaction-line-fields/transaction-line-quantity.component.d.ts +7 -0
  238. package/lib/component/transaction-line-fields/transaction-line-quantity.module.d.ts +2 -0
  239. package/lib/component/transaction-line-fields/transaction-line-quantum-discount.component.d.ts +10 -0
  240. package/lib/component/transaction-line-fields/transaction-line-quantum-discount.module.d.ts +2 -0
  241. package/lib/component/transaction-line-fields/transaction-line-reference.component.d.ts +10 -0
  242. package/lib/component/transaction-line-fields/transaction-line-reference.module.d.ts +2 -0
  243. package/lib/component/transaction-line-fields/transaction-line-special-discount.component.d.ts +10 -0
  244. package/lib/component/transaction-line-fields/transaction-line-special-discount.module.d.ts +2 -0
  245. package/lib/component/transaction-line-fields/transaction-line-vat.component.d.ts +12 -0
  246. package/lib/component/transaction-line-fields/transaction-line-vat.module.d.ts +2 -0
  247. package/lib/component/transaction-line-fields/transaction-line-warehouse.component.d.ts +12 -0
  248. package/lib/component/transaction-line-fields/transaction-line-warehouse.module.d.ts +2 -0
  249. package/lib/component/transaction-line-side-panel/style/_layout.scss +64 -0
  250. package/lib/component/transaction-line-side-panel/style/_material-definition.scss +8 -0
  251. package/lib/component/transaction-line-side-panel/style/_theme.scss +9 -0
  252. package/lib/component/transaction-line-side-panel/style/material.scss +9 -0
  253. package/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.d.ts +18 -0
  254. package/lib/component/transaction-line-side-panel/transaction-line-side-panel.module.d.ts +2 -0
  255. package/lib/component/transaction-line-side-panel-default/style/_layout.scss +29 -0
  256. package/lib/component/transaction-line-side-panel-default/style/_material-definition.scss +10 -0
  257. package/lib/component/transaction-line-side-panel-default/style/_theme.scss +7 -0
  258. package/lib/component/transaction-line-side-panel-default/style/material.scss +4 -0
  259. package/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.component.d.ts +16 -0
  260. package/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.module.d.ts +2 -0
  261. package/lib/component/transaction-lines/transaction-lines.component.d.ts +6 -0
  262. package/lib/component/transaction-lines-grid/transaction-lines-grid.component.d.ts +4 -1
  263. package/lib/component/transaction-nav-bar/style/_layout.scss +13 -0
  264. package/lib/component/transaction-nav-bar/style/_material-definition.scss +1 -0
  265. package/lib/component/transaction-nav-bar/style/_theme.scss +7 -0
  266. package/lib/component/transaction-nav-bar/style/material.scss +4 -0
  267. package/lib/component/transaction-nav-bar/transaction-nav-bar-button/transaction-nav-bar-button.component.d.ts +14 -0
  268. package/lib/component/transaction-nav-bar/transaction-nav-bar-button/transaction-nav-bar-button.component.scss +23 -0
  269. package/lib/component/transaction-nav-bar/transaction-nav-bar.component.d.ts +18 -0
  270. package/lib/component/transaction-nav-bar/transaction-nav-bar.module.d.ts +2 -0
  271. package/lib/component/transaction-receiving-goods-details/style/_layout.scss +38 -0
  272. package/lib/component/transaction-receiving-goods-details/style/_material-definition.scss +1 -0
  273. package/lib/component/transaction-receiving-goods-details/style/_theme.scss +7 -0
  274. package/lib/component/transaction-receiving-goods-details/style/material.scss +4 -0
  275. package/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.component.d.ts +6 -0
  276. package/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.module.d.ts +2 -0
  277. package/lib/component/transaction-receiving-goods-history/style/_layout.scss +7 -0
  278. package/lib/component/transaction-receiving-goods-history/style/_material-definition.scss +1 -0
  279. package/lib/component/transaction-receiving-goods-history/style/_theme.scss +7 -0
  280. package/lib/component/transaction-receiving-goods-history/style/material.scss +4 -0
  281. package/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.d.ts +5 -0
  282. package/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.module.d.ts +2 -0
  283. package/lib/enum/icon.enum.d.ts +12 -1
  284. package/lib/enum/status-type.enum.d.ts +3 -0
  285. package/lib/enum/tab-category.enum.d.ts +8 -0
  286. package/lib/model/delivery-type.d.ts +7 -0
  287. package/lib/service/dialog.service.d.ts +1 -0
  288. package/lib/service/ione-connector-adapter.service.d.ts +27 -8
  289. package/lib/service/pending-reason.service.d.ts +3 -2
  290. package/lib/service/transaction.service.d.ts +25 -9
  291. package/lib/style/_variables.scss +10 -2
  292. package/package.json +2 -2
  293. package/lib/component/service-order/service-order.component.scss +0 -154
  294. package/lib/component/service-order/summary/transaction-delivery-summary.component.scss +0 -22
  295. package/lib/component/service-order/summary/transaction-summary-block.component.scss +0 -109
  296. package/lib/component/service-order/transaction-manager/transaction-manager.component.scss +0 -54
  297. package/lib/component/service-order/transaction-order-line-view/transaction-order-line-view.component.scss +0 -90
  298. package/lib/component/service-order/transaction-order-lines/transaction-order-lines.component.scss +0 -85
  299. package/lib/component/service-order/transaction-order-totals/transaction-order-totals.component.scss +0 -26
  300. package/lib/component/service-order/transaction-relation/transaction-relation-edit.component.scss +0 -24
  301. package/lib/component/service-order/transaction-sidebar/transaction-sidebar-right.component.scss +0 -17
  302. package/lib/component/service-order/warehouse/warehouse.component.scss +0 -54
@@ -0,0 +1,2 @@
1
+ $tp-co-order-grid-font-family: $tp-font-family !default;
2
+ $tp-co-order-grid-font-size: $tp-font-size !default;
@@ -0,0 +1,6 @@
1
+ @import "../../../style/mixin";
2
+
3
+ @include export-module('co-order-grid-theme') {
4
+ .co-order-grid {
5
+ }
6
+ }
@@ -0,0 +1,4 @@
1
+ @import "../../../style/variables";
2
+ @import "./material-definition";
3
+ @import "./layout";
4
+ @import "./theme";
@@ -0,0 +1,18 @@
1
+ import { OnInit } from "@angular/core";
2
+ import { Icon } from "../../enum/icon.enum";
3
+ import { TransactionService } from "../../service/transaction.service";
4
+ export declare class PaymentComponent implements OnInit {
5
+ private _transactionService;
6
+ readonly icons: typeof Icon;
7
+ amount: number;
8
+ showClass(): boolean;
9
+ paymentMethodIdx: number;
10
+ paymentMethods: {
11
+ icon: Icon;
12
+ description: string;
13
+ }[];
14
+ cashRegisters: any[];
15
+ constructor(_transactionService: TransactionService);
16
+ ngOnInit(): void;
17
+ private _getCashRegisters;
18
+ }
@@ -0,0 +1,2 @@
1
+ export declare class PaymentModule {
2
+ }
@@ -0,0 +1,54 @@
1
+ @import "../../../style/mixin";
2
+
3
+ @include export-module('co-payment-layout') {
4
+ .co-payment {
5
+ font-family: $tp-payment-font-family;
6
+ font-size: $tp-payment-font-size;
7
+ .co-tile-wrapper {
8
+ min-width: $tp-payment-tile-width;
9
+ min-height: $tp-payment-tile-height;
10
+ width: $tp-payment-tile-width;
11
+ height: $tp-payment-tile-height;
12
+ }
13
+ .payment-wrapper {
14
+ display: flex;
15
+ flex-direction: column;
16
+ row-gap: $tp-payment-row-gap;
17
+ }
18
+ .payment-methods-header {
19
+ display: flex;
20
+ column-gap: 3px;
21
+ }
22
+ .payment-header-title {
23
+ font-family: $tp-payment-header-font-family;
24
+ font-size: $tp-payment-header-font-size;
25
+ font-weight: $tp-payment-header-font-weight;
26
+ &.extra {
27
+
28
+ }
29
+ }
30
+ .payment-methods {
31
+ display: flex;
32
+ flex-direction: row;
33
+ column-gap: 5px;
34
+ flex-wrap: wrap;
35
+ }
36
+ .payment-to-pay {
37
+ display: flex;
38
+ flex-direction: column;
39
+ align-items: flex-start;
40
+ row-gap: $tp-payment-row-gap;
41
+ }
42
+ .payment-amount {
43
+ display: flex;
44
+ align-items: center;
45
+ justify-content: center;
46
+ border: $tp-payment-amount-border;
47
+ font-family: $tp-payment-amount-font-family;
48
+ font-size: $tp-payment-amount-font-size;
49
+ font-weight: $tp-payment-amount-font-weight;
50
+ padding: $tp-payment-amount-padding;
51
+ border-radius: 5px;
52
+ }
53
+ }
54
+ }
@@ -0,0 +1,17 @@
1
+ $tp-payment-font-family: $tp-font-family !default;
2
+ $tp-payment-font-size: $tp-font-size !default;
3
+ $tp-payment-tile-width: $tp-tile-min-width !default;
4
+ $tp-payment-tile-height: $tp-tile-min-height !default;
5
+ $tp-payment-header-font-family: $tp-font-family !default;
6
+ $tp-payment-header-font-size: $tp-font-size !default;
7
+ $tp-payment-header-font-weight: bold !default;
8
+ $tp-payment-header-extra-font-color: $tp-color-colijn-orange !default;
9
+ $tp-payment-row-gap: 20px !default;
10
+ $tp-payment-amount-font-family: $tp-font-family !default;
11
+ $tp-payment-amount-font-size: 32px !default;
12
+ $tp-payment-amount-font-weight: bold !default;
13
+ $tp-payment-amount-padding: 25px 90px !default;
14
+ $tp-payment-amount-color: rgba(0, 0, 0, 0.5) !default;
15
+ $tp-payment-amount-border: 1px solid !default;
16
+ $tp-payment-amount-border-color: $tp-color-border !default;
17
+ $tp-payment-amount-background-color: #dedede5c !default;
@@ -0,0 +1,16 @@
1
+ @import "../../../style/mixin";
2
+
3
+ @include export-module('co-payment-theme') {
4
+ .co-payment {
5
+ .payment-header-title {
6
+ &.extra {
7
+ color: $tp-color-colijn-orange;
8
+ }
9
+ }
10
+ .payment-amount {
11
+ color: $tp-payment-amount-color;
12
+ border-color: $tp-payment-amount-border-color;
13
+ background-color: $tp-payment-amount-background-color;
14
+ }
15
+ }
16
+ }
@@ -0,0 +1,5 @@
1
+ @import "../../../style/variables";
2
+ @import "./material-definition";
3
+ @import "./layout";
4
+ @import "./theme";
5
+ @import "../../payment-tile/style/material";
@@ -0,0 +1,9 @@
1
+ import { EventEmitter } from "@angular/core";
2
+ import { Icon } from "../../enum/icon.enum";
3
+ export declare class PaymentTileComponent {
4
+ selected: boolean;
5
+ icon: Icon;
6
+ description: string;
7
+ selectedChange: EventEmitter<boolean>;
8
+ showClass(): boolean;
9
+ }
@@ -0,0 +1,2 @@
1
+ export declare class PaymentTileModule {
2
+ }
@@ -0,0 +1,22 @@
1
+ @import "../../../style/mixin";
2
+
3
+ @include export-module('co-payment-tile-layout') {
4
+ .co-payment-tile {
5
+ display: flex;
6
+ .payment-tile-wrapper {
7
+ display: flex;
8
+ flex-direction: column;
9
+ width: 100%;
10
+ height: 100%;
11
+ align-items: center;
12
+ justify-content: center;
13
+ }
14
+ .payment-tile-description {
15
+ }
16
+ .payment-tile-icon {
17
+ display: block;
18
+ height: 80%;
19
+ width: 50%;
20
+ }
21
+ }
22
+ }
@@ -0,0 +1,6 @@
1
+ @import "../../../style/mixin";
2
+
3
+ @include export-module('co-payment-tile') {
4
+ .co-payment-tile {
5
+ }
6
+ }
@@ -0,0 +1,5 @@
1
+ @import "../../../style/variables";
2
+ @import "./material-definition";
3
+ @import "./layout";
4
+ @import "./theme";
5
+ @import "../../tile/style/material";
@@ -4,6 +4,11 @@
4
4
  .co-relation-address {
5
5
  font-family: $tp-relation-address-font-family;
6
6
  font-size: $tp-relation-address-font-size;
7
+ co-form {
8
+ display: flex;
9
+ flex-direction: column;
10
+ row-gap: $tp-relation-address-default-padding;
11
+ }
7
12
  .relation-address-data-row {
8
13
  display: flex;
9
14
  flex-direction: row;
@@ -7,6 +7,7 @@ export declare class RelationAddressTileComponent {
7
7
  address: Address;
8
8
  actAsAddTile: boolean;
9
9
  selected: boolean;
10
+ selectedChange: EventEmitter<boolean>;
10
11
  addAddressClicked: EventEmitter<void>;
11
12
  editAddressClicked: EventEmitter<Address>;
12
13
  handleEditAddressClick(event: MouseEvent): void;
@@ -4,27 +4,6 @@
4
4
  .co-relation-address-tile {
5
5
  display: flex;
6
6
  position: relative;
7
- .relation-address, .relation-address-create {
8
- display: flex;
9
- flex-direction: row;
10
- column-gap: 10px;
11
- border: $tp-relation-address-tile-border;
12
- border-radius: $tp-relation-address-tile-border-radius;
13
- padding: $tp-relation-address-tile-padding;
14
- width: 200px;
15
- height: 100px;
16
- }
17
- .relation-select-wrapper {
18
- display: flex;
19
- flex-direction: column;
20
- .co-radio-button {
21
- border: none;
22
- height: $tp-relation-address-tile-icon-width;
23
- width: $tp-relation-address-tile-icon-width;
24
- padding: 0;
25
- align-items: baseline;
26
- }
27
- }
28
7
  .relation-content-wrapper {
29
8
  display: flex;
30
9
  flex-direction: column;
@@ -5,10 +5,11 @@ $tp-relation-address-tile-padding: 10px !default;
5
5
  $tp-relation-address-tile-border-radius: 5px !default;
6
6
  $tp-relation-address-tile-min-width: 200px !default;
7
7
  $tp-relation-address-tile-min-height: 100px !default;
8
- $tp-relation-address-tile-background-color: #f1fcff !default;
9
8
  $tp-relation-address-tile-icon-width: 20px !default;
9
+ $tp-relation-address-tile-background-color: white !default;
10
10
  $tp-relation-address-tile-border: 2px solid !default;
11
11
  $tp-relation-address-tile-border-color: $tp-color-border !default;
12
+ $tp-relation-address-tile-selected-background-color: #f1fcff !default;
12
13
  $tp-relation-address-tile-selected-border-color: #0084de !default;
13
14
  $tp-relation-address-tile-edit-background-color: $tp-color-border !default;
14
15
  $tp-relation-address-tile-edit-icon-color: $tp-color-action !default;
@@ -2,17 +2,6 @@
2
2
 
3
3
  @include export-module('co-relation-address-tile-theme') {
4
4
  .co-relation-address-tile {
5
- .relation-address, .relation-address-create {
6
- background-color: white;
7
- border-color: $tp-relation-address-tile-border-color;
8
- }
9
- .relation-select-wrapper {
10
- .co-radio-button {
11
- label:before {
12
- border-color: $tp-relation-address-tile-border-color;
13
- }
14
- }
15
- }
16
5
  .relation-address-create, .relation-address-change {
17
6
  .relation-address-icon {
18
7
  [fill] {
@@ -21,25 +10,6 @@
21
10
  }
22
11
  color: $tp-relation-address-tile-selected-border-color;
23
12
  }
24
- &.selected {
25
- .relation-address {
26
- background-color: $tp-relation-address-tile-background-color;
27
- border-color: $tp-relation-address-tile-selected-border-color;
28
- .relation-select-wrapper {
29
- .co-radio-button {
30
- label:before {
31
- border-color: $tp-relation-address-tile-selected-border-color;
32
- background-color: $tp-relation-address-tile-selected-border-color;
33
- }
34
-
35
- label:after {
36
- color: $tp-relation-address-tile-selected-border-color;
37
- background-color: white;
38
- }
39
- }
40
- }
41
- }
42
- }
43
13
  .relation-address-edit {
44
14
  .relation-address-edit-icon {
45
15
  [fill] {
@@ -2,3 +2,4 @@
2
2
  @import "./material-definition";
3
3
  @import "./layout";
4
4
  @import "./theme";
5
+ @import "../../tile/style/material";
@@ -0,0 +1,13 @@
1
+ import { TransactionService } from "../../service/transaction.service";
2
+ import { RelationListObject } from "@colijnit/transactionapi/build/model/relation-list-object.bo";
3
+ export declare class SellerInformationComponent {
4
+ private _service;
5
+ set relationId(value: number);
6
+ get relationId(): number;
7
+ relation: RelationListObject;
8
+ showClass(): boolean;
9
+ image: string;
10
+ private _relationId;
11
+ constructor(_service: TransactionService);
12
+ private _getRelation;
13
+ }
@@ -0,0 +1,2 @@
1
+ export declare class SellerInformationModule {
2
+ }
@@ -0,0 +1,21 @@
1
+ @import "../../../style/mixin";
2
+
3
+ @include export-module('co-seller-information-layout') {
4
+ .co-seller-information {
5
+ display: flex;
6
+ align-items: center;
7
+ justify-content: center;
8
+ font-family: $tp-co-seller-information-font-family;
9
+ height: $tp-co-seller-information-image-size;
10
+ width: $tp-co-seller-information-image-size;
11
+ border-radius: 50%;
12
+ background: #0084de; // todo make dynamic
13
+ svg {
14
+ height: 100%;
15
+ width: 100%;
16
+ text {
17
+ fill: white;
18
+ }
19
+ }
20
+ }
21
+ }
@@ -0,0 +1,2 @@
1
+ $tp-co-seller-information-font-family: $tp-font-family !default;
2
+ $tp-co-seller-information-image-size: 50px !default;
@@ -0,0 +1,7 @@
1
+ @import "../../../style/mixin";
2
+ @import "./material-definition";
3
+
4
+ @include export-module('co-seller-information-theme') {
5
+ .co-seller-information {
6
+ }
7
+ }
@@ -0,0 +1,4 @@
1
+ @import "../../../style/variables";
2
+ @import "./material-definition";
3
+ @import "./layout";
4
+ @import "./theme";
@@ -4,6 +4,8 @@ import { Icon } from "../../enum/icon.enum";
4
4
  export declare class ShoppingCartPreviewComponent {
5
5
  service: TransactionService;
6
6
  readonly icons: typeof Icon;
7
+ showCheckoutButton: boolean;
8
+ withoutBorder: boolean;
7
9
  checkout: EventEmitter<void>;
8
10
  editCartClick: EventEmitter<void>;
9
11
  showClass(): boolean;
@@ -6,8 +6,12 @@
6
6
  font-family: $tp-shopping-cart-preview-font-family;
7
7
  font-size: $tp-shopping-cart-preview-font-size;
8
8
  padding: $tp-shopping-cart-preview-padding;
9
- border: $tp-shopping-cart-preview-border;
10
- box-shadow: $tp-shopping-cart-preview-box-shadow;
9
+ border: none;
10
+ box-shadow: none;
11
+ &:not(.borderless) {
12
+ border: $tp-shopping-cart-preview-border;
13
+ box-shadow: $tp-shopping-cart-preview-box-shadow;
14
+ }
11
15
  .cart-header {
12
16
  font-family: $tp-shopping-cart-preview-header-font-family;
13
17
  font-size: $tp-shopping-cart-preview-header-font-size;
@@ -1,6 +1,6 @@
1
1
  $tp-shopping-cart-preview-font-family: $tp-font-family !default;
2
2
  $tp-shopping-cart-preview-font-size: $tp-font-size !default;
3
- $tp-shopping-cart-preview-background-color: white !default;
3
+ $tp-shopping-cart-preview-background-color: transparent !default;
4
4
  $tp-shopping-cart-preview-font-color: $tp-color-dark !default;
5
5
  $tp-shopping-cart-preview-padding: 10px !default;
6
6
  $tp-shopping-cart-preview-border: none !default;
@@ -4,8 +4,8 @@ export declare class StepperStepComponent {
4
4
  label: string;
5
5
  set completed(value: boolean);
6
6
  get completed(): boolean;
7
- validateStep: EventEmitter<void>;
8
7
  show: boolean;
8
+ validateStep: EventEmitter<void>;
9
9
  showClass(): boolean;
10
10
  private _completed;
11
11
  onComplete: (complete: boolean) => void;
@@ -1,12 +1,15 @@
1
- import { AfterContentInit, EventEmitter } from "@angular/core";
1
+ import { EventEmitter } from "@angular/core";
2
2
  import { StepperStepComponent } from "./component/stepper-step.component";
3
+ import { Icon } from "../../enum/icon.enum";
3
4
  export interface steps {
4
5
  index: number;
5
6
  description: string;
6
7
  complete: boolean;
7
8
  }
8
- export declare class StepperComponent implements AfterContentInit {
9
+ export declare class StepperComponent {
10
+ readonly icons: typeof Icon;
9
11
  set content(children: any);
12
+ set child(child: any);
10
13
  finishButtonLabel: string;
11
14
  finishStep: EventEmitter<void>;
12
15
  showClass(): boolean;
@@ -15,12 +18,14 @@ export declare class StepperComponent implements AfterContentInit {
15
18
  get canPrevious(): boolean;
16
19
  get canNext(): boolean;
17
20
  get finished(): boolean;
18
- activeStep: number;
21
+ set activeStep(value: number);
22
+ get activeStep(): number;
19
23
  firstStep: number;
20
24
  lastStep: number;
21
- steps: steps[];
25
+ truckPosition: number;
22
26
  private _stepChildren;
23
- ngAfterContentInit(): void;
27
+ private _activeStep;
28
+ private _deliveryTruckClientRect;
24
29
  goto(idx: number): void;
25
30
  gotoPrevious(): void;
26
31
  gotoNext(): void;
@@ -1,5 +1,7 @@
1
1
  @import "../../../style/mixin";
2
2
 
3
+ $index-origin: calc((#{$tp-co-stepper-step-index-size} / 2) + (#{$tp-co-stepper-step-index-border-width} / 2));
4
+
3
5
  @include export-module('co-stepper-layout') {
4
6
  .co-stepper {
5
7
  font-family: $tp-co-stepper-font-family;
@@ -7,24 +9,38 @@
7
9
  display: flex;
8
10
  flex-direction: column;
9
11
  width: 100%;
12
+ box-sizing: initial;
10
13
  .co-stepper-content {
11
14
  display: flex;
12
15
  flex-direction: row;
16
+ position: relative;
13
17
  }
14
18
  .stepper-step {
19
+ position: relative;
15
20
  flex: 1;
16
21
  display: flex;
17
22
  flex-direction: column;
18
23
  align-items: center;
19
- &:not(:last-child):after {
24
+ &:not(.last):after {
25
+ content: "";
26
+ position: absolute;
27
+ top: calc(100% - (#{$index-origin} + 2px));
28
+ width: calc(100% - #{$tp-co-stepper-step-index-size} - #{$tp-co-stepper-step-index-border-width});
29
+ left: calc(50% + #{$index-origin});
30
+ height: 2px;
31
+ order: -1;
32
+ }
33
+ &:not(.last):before {
20
34
  content: "";
21
- position: relative;
22
- top: calc(#{$tp-co-stepper-step-index-size} / 2);
23
- width: calc(100% - #{$tp-co-stepper-step-index-size} - (5px * 2));
24
- left: 50%;
35
+ position: absolute;
36
+ top: calc(100% - (#{$index-origin} + 2px));
37
+ width: 0;
38
+ max-width: calc(100% - #{$tp-co-stepper-step-index-size} - #{$tp-co-stepper-step-index-border-width});
39
+ left: calc(50% + #{$index-origin});
25
40
  height: 2px;
26
- background-color: $tp-co-stepper-step-complete-background-color;
27
41
  order: -1;
42
+ z-index: 1;
43
+ transition: all .2s;
28
44
  }
29
45
  .index {
30
46
  cursor: pointer;
@@ -35,35 +51,51 @@
35
51
  align-items: center;
36
52
  justify-content: center;
37
53
  border-radius: 50%;
38
- background-color: $tp-co-stepper-step-incomplete-background-color;
39
- color: $tp-co-stepper-step-incomplete-color;
54
+ border-style: solid;
55
+ border-width: $tp-co-stepper-step-index-border-width;
56
+ box-sizing: initial;
40
57
  }
41
58
  .description {
42
- margin-top: 15px;
43
- color: $tp-co-stepper-step-incomplete-background-color;
59
+ margin-bottom: 15px;
60
+ font-weight: $tp-co-stepper-step-incomplete-description-font-weight;
44
61
  }
45
62
  &.active {
46
- .index {
47
- background-color: $tp-co-stepper-step-active-background-color;
48
- color: $tp-co-stepper-step-active-color;
63
+ &:not(.last):before {
64
+ width: 50%;
49
65
  }
50
66
  .description {
51
- color: $tp-co-stepper-step-active-background-color;
67
+ font-weight: $tp-co-stepper-step-description-font-weight;
68
+ }
69
+ .delivery-truck {
70
+ opacity: 1;
71
+ left: calc(100% - #{$tp-co-stepper-step-delivery-truck-size / 2});
52
72
  }
53
73
  }
54
74
  &.complete {
55
- .index {
56
- background-color: $tp-co-stepper-step-complete-background-color;
57
- color: $tp-co-stepper-step-complete-color;
75
+ &:not(.last):before {
76
+ width: 100%;
58
77
  }
59
78
  .description {
60
- color: $tp-co-stepper-step-complete-background-color;
79
+ font-weight: $tp-co-stepper-step-description-font-weight;
61
80
  }
62
81
  }
63
82
  }
83
+ .delivery-truck {
84
+ position: absolute;
85
+ width: $tp-co-stepper-step-delivery-truck-size;
86
+ height: $tp-co-stepper-step-delivery-truck-size;
87
+ top: calc(100% - (#{$index-origin} + 2px + #{$tp-co-stepper-step-delivery-truck-size / 2}));
88
+ //opacity: 0;
89
+ //left: 50%;
90
+ transform: translateX(-#{$tp-co-stepper-step-delivery-truck-size / 2});
91
+ transition: all .2s;
92
+ z-index: 2;
93
+ }
64
94
  .co-stepper-step {
65
- display: block;
66
- padding: $tp-co-stepper-step-padding;
95
+ display: none;
96
+ &.show {
97
+ display: flex;
98
+ }
67
99
  }
68
100
  .stepper-button-wrapper {
69
101
  display: flex;
@@ -1,11 +1,18 @@
1
1
  $tp-co-stepper-font-family: $tp-font-family !default;
2
2
  $tp-co-stepper-font-size: $tp-font-size !default;
3
- $tp-co-stepper-step-index-size: 30px !default;
3
+ $tp-co-stepper-step-index-size: 11px !default;
4
+ $tp-co-stepper-step-index-border-width: 3px !default;
4
5
  $tp-co-stepper-step-index-font-size: $tp-font-size-big !default;
5
6
  $tp-co-stepper-step-padding: 30px !default;
6
7
  $tp-co-stepper-step-complete-color: white !default;
7
- $tp-co-stepper-step-complete-background-color: $tp-color-active !default;
8
+ $tp-co-stepper-step-complete-background-color: $tp-color-action !default;
8
9
  $tp-co-stepper-step-incomplete-background-color: $tp-color-action-light !default;
9
10
  $tp-co-stepper-step-incomplete-color: $tp-color-dark !default;
10
11
  $tp-co-stepper-step-active-background-color: $tp-color-action !default;
11
12
  $tp-co-stepper-step-active-color: white !default;
13
+ $tp-co-stepper-step-delivery-truck-size: 45px !default;
14
+ $tp-co-stepper-step-description-font-size: $tp-font-size !default;
15
+ $tp-co-stepper-step-description-color: black !default;
16
+ $tp-co-stepper-step-description-font-weight: bold !default;
17
+ $tp-co-stepper-step-incomplete-description-color: rgba(0, 0, 0, 0.3) !default;
18
+ $tp-co-stepper-step-incomplete-description-font-weight: normal !default;
@@ -3,5 +3,41 @@
3
3
 
4
4
  @include export-module('co-stepper-theme') {
5
5
  .co-stepper {
6
+ .stepper-step {
7
+ &:not(.last):after {
8
+ background-color: $tp-co-stepper-step-incomplete-background-color;
9
+ }
10
+ &:not(.last):before {
11
+ background-color: $tp-co-stepper-step-complete-background-color;
12
+ }
13
+ .index {
14
+ //background-color: $tp-co-stepper-step-incomplete-background-color;
15
+ color: $tp-co-stepper-step-incomplete-background-color;
16
+ border-color: $tp-co-stepper-step-incomplete-background-color;
17
+ }
18
+ .description {
19
+ color: $tp-co-stepper-step-incomplete-description-color;
20
+ }
21
+ &.active {
22
+ .index {
23
+ background-color: $tp-co-stepper-step-active-background-color;
24
+ color: $tp-co-stepper-step-active-color;
25
+ border-color: $tp-co-stepper-step-active-background-color;
26
+ }
27
+ .description {
28
+ color: $tp-co-stepper-step-description-color;
29
+ }
30
+ }
31
+ &.complete {
32
+ .index {
33
+ background-color: $tp-co-stepper-step-complete-background-color;
34
+ color: $tp-co-stepper-step-complete-color;
35
+ border-color: $tp-co-stepper-step-complete-background-color;
36
+ }
37
+ .description {
38
+ color: $tp-co-stepper-step-description-color;
39
+ }
40
+ }
41
+ }
6
42
  }
7
43
  }