@colijnit/transaction 12.1.2 → 12.1.6

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 (66) hide show
  1. package/app/component/checkout/{retail-transaction-checkout/retail-transaction-checkout.component.d.ts → checkout-transaction/checkout-transaction.component.d.ts} +1 -1
  2. package/app/component/checkout/ione-checkout.component.d.ts +0 -2
  3. package/app/component/core/base/transaction-base.component.d.ts +10 -0
  4. package/app/component/{shopping-cart → core}/characteristic-answer/characteristic-answer.component.d.ts +0 -0
  5. package/app/component/{common → core}/icon/icon.component.d.ts +0 -0
  6. package/app/component/{common → core}/image-display/image-display.component.d.ts +0 -0
  7. package/app/component/{common → core}/no-image-display/no-image-display.component.d.ts +0 -0
  8. package/app/component/service-order/service-order.component.d.ts +13 -9
  9. package/app/component/service-order/transaction-article-text/transaction-article-text.component.d.ts +22 -13
  10. package/app/component/service-order/transaction-article-text-overview/transaction-article-text-overview.component.d.ts +23 -0
  11. package/app/component/service-order/transaction-edit-article-text/transaction-edit-article-text.component.d.ts +19 -0
  12. package/app/component/service-order/transaction-manager/transaction-manager.component.d.ts +64 -0
  13. package/app/component/service-order/warehouse/warehouse.component.d.ts +35 -0
  14. package/app/component/shopping-cart/ione-shopping-cart.component.d.ts +1 -1
  15. package/app/component/shopping-cart/shopping-cart-manager/shopping-cart-manager.component.d.ts +2 -2
  16. package/{enum → app/enum}/position-grid-row.enum.d.ts +0 -0
  17. package/app/model/standard-text.d.ts +5 -0
  18. package/app/model/transaction-add-text-line-request.d.ts +9 -0
  19. package/app/service/dictionary.service.d.ts +1 -0
  20. package/app/service/ione-connector-adapter.service.d.ts +3 -0
  21. package/app/service/transaction-event.service.d.ts +1 -1
  22. package/app/service/transaction.service.d.ts +18 -8
  23. package/bundles/colijnit-transaction.umd.js +1535 -533
  24. package/bundles/colijnit-transaction.umd.js.map +1 -1
  25. package/colijnit-transaction.d.ts +45 -41
  26. package/colijnit-transaction.metadata.json +1 -1
  27. package/esm2015/app/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.js +2 -2
  28. package/esm2015/app/component/checkout/checkout-transaction/checkout-transaction.component.js +53 -0
  29. package/esm2015/app/component/checkout/ione-checkout.component.js +2 -4
  30. package/esm2015/app/component/checkout/ione-checkout.module.js +5 -3
  31. package/esm2015/app/component/core/base/transaction-base.component.js +35 -12
  32. package/esm2015/app/component/core/characteristic-answer/characteristic-answer.component.js +100 -0
  33. package/esm2015/app/component/core/core.module.js +4 -4
  34. package/esm2015/app/component/{common → core}/icon/icon.component.js +1 -1
  35. package/esm2015/app/component/core/image-display/image-display.component.js +41 -0
  36. package/esm2015/app/component/core/no-image-display/no-image-display.component.js +26 -0
  37. package/esm2015/app/component/service-order/ione-service-order-module.js +15 -4
  38. package/esm2015/app/component/service-order/service-order.component.js +53 -20
  39. package/esm2015/app/component/service-order/transaction-article-text/transaction-article-text.component.js +107 -150
  40. package/esm2015/app/component/service-order/transaction-article-text-overview/transaction-article-text-overview.component.js +105 -0
  41. package/esm2015/app/component/service-order/transaction-edit-article-text/transaction-edit-article-text.component.js +73 -0
  42. package/esm2015/app/component/service-order/transaction-manager/transaction-manager.component.js +314 -0
  43. package/esm2015/app/component/service-order/transaction-order-lines/transaction-order-lines.component.js +2 -2
  44. package/esm2015/app/component/service-order/warehouse/warehouse.component.js +133 -0
  45. package/esm2015/app/component/shopping-cart/ione-shopping-cart.component.js +2 -2
  46. package/esm2015/app/component/shopping-cart/ione-shopping-cart.module.js +3 -3
  47. package/esm2015/app/component/shopping-cart/shopping-cart/shopping-cart.component.js +3 -3
  48. package/esm2015/app/component/shopping-cart/shopping-cart-line/shopping-cart-line.component.js +1 -1
  49. package/esm2015/app/component/shopping-cart/shopping-cart-manager/shopping-cart-manager.component.js +3 -3
  50. package/esm2015/app/enum/position-grid-row.enum.js +6 -0
  51. package/esm2015/app/model/standard-text.js +3 -0
  52. package/esm2015/app/model/transaction-add-text-line-request.js +11 -0
  53. package/esm2015/app/service/dictionary.service.js +20 -9
  54. package/esm2015/app/service/ione-connector-adapter.service.js +30 -1
  55. package/esm2015/app/service/transaction-event.service.js +1 -1
  56. package/esm2015/app/service/transaction.service.js +98 -23
  57. package/esm2015/assets/dictionary/text.properties.js +13 -1
  58. package/esm2015/colijnit-transaction.js +46 -42
  59. package/fesm2015/colijnit-transaction.js +1512 -757
  60. package/fesm2015/colijnit-transaction.js.map +1 -1
  61. package/package.json +4 -3
  62. package/esm2015/app/component/checkout/retail-transaction-checkout/retail-transaction-checkout.component.js +0 -53
  63. package/esm2015/app/component/common/image-display/image-display.component.js +0 -41
  64. package/esm2015/app/component/common/no-image-display/no-image-display.component.js +0 -26
  65. package/esm2015/app/component/shopping-cart/characteristic-answer/characteristic-answer.component.js +0 -99
  66. package/esm2015/enum/position-grid-row.enum.js +0 -6
@@ -2,56 +2,60 @@
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
4
  export * from './public_api';
5
- export { CheckoutLoginComponent as ɵj } from './app/component/checkout/checkout-login/checkout-login.component';
6
- export { CheckoutOverviewBlockComponent as ɵd } from './app/component/checkout/checkout-overview-block/checkout-overview-block.component';
5
+ export { CheckoutLoginComponent as ɵa } from './app/component/checkout/checkout-login/checkout-login.component';
6
+ export { CheckoutOverviewBlockComponent as ɵs } from './app/component/checkout/checkout-overview-block/checkout-overview-block.component';
7
7
  export { CheckoutOverviewDeliveryAddressComponent as ɵx } from './app/component/checkout/checkout-overview-delivery-address/checkout-overview-delivery-address.component';
8
- export { CheckoutOverviewDeliveryEditComponent as ɵh } from './app/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component';
9
- export { CheckoutOverviewRelationAddressComponent as ɵw } from './app/component/checkout/checkout-overview-relation-address/checkout-overview-relation-address.component';
10
- export { CheckoutOverviewRelationEditComponent as ɵe } from './app/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component';
11
- export { CheckoutOverviewComponent as ɵc } from './app/component/checkout/checkout-overview/checkout-overview.component';
8
+ export { CheckoutOverviewDeliveryEditComponent as ɵu } from './app/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component';
9
+ export { CheckoutOverviewRelationAddressComponent as ɵv } from './app/component/checkout/checkout-overview-relation-address/checkout-overview-relation-address.component';
10
+ export { CheckoutOverviewRelationEditComponent as ɵt } from './app/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component';
11
+ export { CheckoutOverviewComponent as ɵr } from './app/component/checkout/checkout-overview/checkout-overview.component';
12
12
  export { CheckOutRelationSuggestionsListItemComponent as ɵz } from './app/component/checkout/checkout-relation-suggestions-list-item/checkout-relation-suggestions-list-item.component';
13
13
  export { CheckOutRelationSuggestionsListComponent as ɵy } from './app/component/checkout/checkout-relation-suggestions-list/checkout-relation-suggestions-list.component';
14
- export { CheckoutComponent as ɵb } from './app/component/checkout/checkout/checkout.component';
15
- export { RetailTransactionCheckoutComponent as ɵa } from './app/component/checkout/retail-transaction-checkout/retail-transaction-checkout.component';
16
- export { IconComponent as ɵv } from './app/component/common/icon/icon.component';
17
- export { ImageDisplayComponent as ɵt } from './app/component/common/image-display/image-display.component';
18
- export { NoImageDisplayComponent as ɵu } from './app/component/common/no-image-display/no-image-display.component';
14
+ export { CheckoutTransactionComponent as ɵw } from './app/component/checkout/checkout-transaction/checkout-transaction.component';
15
+ export { CheckoutComponent as ɵq } from './app/component/checkout/checkout/checkout.component';
19
16
  export { DefaultOkCancelButtonsComponent as ɵbg } from './app/component/core/base/default-ok-cancel-buttons.component';
20
17
  export { TransactionBaseComponent as ɵbi } from './app/component/core/base/transaction-base.component';
21
- export { CoreModule as ɵm } from './app/component/core/core.module';
18
+ export { CharacteristicAnswerComponent as ɵbe } from './app/component/core/characteristic-answer/characteristic-answer.component';
19
+ export { CoreModule as ɵg } from './app/component/core/core.module';
22
20
  export { TemplateWrapperDirective as ɵbf } from './app/component/core/directive/template-wrapper.directive';
21
+ export { IconComponent as ɵp } from './app/component/core/icon/icon.component';
22
+ export { ImageDisplayComponent as ɵn } from './app/component/core/image-display/image-display.component';
23
+ export { NoImageDisplayComponent as ɵo } from './app/component/core/no-image-display/no-image-display.component';
23
24
  export { StockStatusIndicatorComponent as ɵbd } from './app/component/core/stock-status-indicator/stock-status-indicator.component';
24
25
  export { ServiceOrderComponent as ɵbh } from './app/component/service-order/service-order.component';
25
- export { TransactionArticleSummaryComponent as ɵbx } from './app/component/service-order/summary/transaction-article-summary.component';
26
- export { TransactionDeliverySummaryComponent as ɵby } from './app/component/service-order/summary/transaction-delivery-summary.component';
27
- export { TransactionOrderSummaryComponent as ɵbv } from './app/component/service-order/summary/transaction-order-summary.component';
28
- export { TransactionPaymentInfoComponent as ɵbw } from './app/component/service-order/summary/transaction-payment-info.component';
29
- export { TransactionProductContractSummaryComponent as ɵbz } from './app/component/service-order/summary/transaction-product-contract-summary.component';
30
- export { TransactionProductSummaryComponent as ɵca } from './app/component/service-order/summary/transaction-product-summary.component';
31
- export { TransactionServiceStatusComponent as ɵbu } from './app/component/service-order/summary/transaction-service-status.component';
32
- export { TransactionServiceSummaryComponent as ɵbs } from './app/component/service-order/summary/transaction-service-summary.component';
33
- export { TransactionSummaryBlockComponent as ɵbt } from './app/component/service-order/summary/transaction-summary-block.component';
26
+ export { TransactionArticleSummaryComponent as ɵca } from './app/component/service-order/summary/transaction-article-summary.component';
27
+ export { TransactionDeliverySummaryComponent as ɵcb } from './app/component/service-order/summary/transaction-delivery-summary.component';
28
+ export { TransactionOrderSummaryComponent as ɵby } from './app/component/service-order/summary/transaction-order-summary.component';
29
+ export { TransactionPaymentInfoComponent as ɵbz } from './app/component/service-order/summary/transaction-payment-info.component';
30
+ export { TransactionProductContractSummaryComponent as ɵcc } from './app/component/service-order/summary/transaction-product-contract-summary.component';
31
+ export { TransactionProductSummaryComponent as ɵcd } from './app/component/service-order/summary/transaction-product-summary.component';
32
+ export { TransactionServiceStatusComponent as ɵbx } from './app/component/service-order/summary/transaction-service-status.component';
33
+ export { TransactionServiceSummaryComponent as ɵbv } from './app/component/service-order/summary/transaction-service-summary.component';
34
+ export { TransactionSummaryBlockComponent as ɵbw } from './app/component/service-order/summary/transaction-summary-block.component';
35
+ export { TransactionArticleTextOverviewComponent as ɵbp } from './app/component/service-order/transaction-article-text-overview/transaction-article-text-overview.component';
34
36
  export { TransactionArticleTextComponent as ɵbj } from './app/component/service-order/transaction-article-text/transaction-article-text.component';
35
- export { TransactionHeaderBlockComponent as ɵbq } from './app/component/service-order/transaction-header-block/transaction-header-block.component';
36
- export { TransactionOrderLineViewComponent as ɵbl } from './app/component/service-order/transaction-order-line-view/transaction-order-line-view.component';
37
- export { TransactionOrderLinesComponent as ɵbm } from './app/component/service-order/transaction-order-lines/transaction-order-lines.component';
38
- export { TransactionOrderTotalsComponent as ɵbk } from './app/component/service-order/transaction-order-totals/transaction-order-totals.component';
39
- export { TransactionRelationAddressComponent as ɵbn } from './app/component/service-order/transaction-relation/transaction-relation-address.component';
40
- export { TransactionRelationEditComponent as ɵbr } from './app/component/service-order/transaction-relation/transaction-relation-edit.component';
41
- export { TransactionLineAccordionComponent as ɵbp } from './app/component/service-order/transaction-sidebar/transaction-line-accordion.component';
42
- export { TransactionSidebarRightComponent as ɵbo } from './app/component/service-order/transaction-sidebar/transaction-sidebar-right.component';
43
- export { CharacteristicAnswerComponent as ɵbe } from './app/component/shopping-cart/characteristic-answer/characteristic-answer.component';
37
+ export { TransactionEditArticleTextComponent as ɵbq } from './app/component/service-order/transaction-edit-article-text/transaction-edit-article-text.component';
38
+ export { TransactionHeaderBlockComponent as ɵbt } from './app/component/service-order/transaction-header-block/transaction-header-block.component';
39
+ export { TransactionManagerComponent as ɵbk } from './app/component/service-order/transaction-manager/transaction-manager.component';
40
+ export { TransactionOrderLineViewComponent as ɵbm } from './app/component/service-order/transaction-order-line-view/transaction-order-line-view.component';
41
+ export { TransactionOrderLinesComponent as ɵbn } from './app/component/service-order/transaction-order-lines/transaction-order-lines.component';
42
+ export { TransactionOrderTotalsComponent as ɵbl } from './app/component/service-order/transaction-order-totals/transaction-order-totals.component';
43
+ export { TransactionRelationAddressComponent as ɵbo } from './app/component/service-order/transaction-relation/transaction-relation-address.component';
44
+ export { TransactionRelationEditComponent as ɵbu } from './app/component/service-order/transaction-relation/transaction-relation-edit.component';
45
+ export { TransactionLineAccordionComponent as ɵbs } from './app/component/service-order/transaction-sidebar/transaction-line-accordion.component';
46
+ export { TransactionSidebarRightComponent as ɵbr } from './app/component/service-order/transaction-sidebar/transaction-sidebar-right.component';
47
+ export { WarehouseComponent as ɵce } from './app/component/service-order/warehouse/warehouse.component';
44
48
  export { ShoppingCartLineComponent as ɵbc } from './app/component/shopping-cart/shopping-cart-line/shopping-cart-line.component';
45
49
  export { ShoppingCartManagerComponent as ɵba } from './app/component/shopping-cart/shopping-cart-manager/shopping-cart-manager.component';
46
50
  export { ShoppingCartComponent as ɵbb } from './app/component/shopping-cart/shopping-cart/shopping-cart.component';
47
- export { AppendPipe as ɵn } from './app/pipe/append.pipe';
48
- export { CoCurrencyPipe as ɵr } from './app/pipe/co-currency.pipe';
49
- export { DateDurationPipe as ɵp } from './app/pipe/date-duration.pipe';
50
- export { DeliveryTimePipe as ɵo } from './app/pipe/delivery-time.pipe';
51
- export { LocalizePipe as ɵq } from './app/pipe/localize.pipe';
52
- export { SafeStylePipe as ɵs } from './app/pipe/safe-style-pipe';
53
- export { DictionaryService as ɵi } from './app/service/dictionary.service';
54
- export { IOneConnectorAdapterService as ɵg } from './app/service/ione-connector-adapter.service';
55
- export { OptionsService as ɵk } from './app/service/options.service';
56
- export { TransactionEventService as ɵl } from './app/service/transaction-event.service';
57
- export { TransactionService as ɵf } from './app/service/transaction.service';
51
+ export { AppendPipe as ɵh } from './app/pipe/append.pipe';
52
+ export { CoCurrencyPipe as ɵl } from './app/pipe/co-currency.pipe';
53
+ export { DateDurationPipe as ɵj } from './app/pipe/date-duration.pipe';
54
+ export { DeliveryTimePipe as ɵi } from './app/pipe/delivery-time.pipe';
55
+ export { LocalizePipe as ɵk } from './app/pipe/localize.pipe';
56
+ export { SafeStylePipe as ɵm } from './app/pipe/safe-style-pipe';
57
+ export { DictionaryService as ɵd } from './app/service/dictionary.service';
58
+ export { IOneConnectorAdapterService as ɵc } from './app/service/ione-connector-adapter.service';
59
+ export { OptionsService as ɵb } from './app/service/options.service';
60
+ export { TransactionEventService as ɵf } from './app/service/transaction-event.service';
61
+ export { TransactionService as ɵe } from './app/service/transaction.service';