@colijnit/transaction 1.9.29 → 12.0.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 (61) hide show
  1. package/app/component/checkout/checkout/checkout.component.d.ts +1 -1
  2. package/app/component/checkout/checkout-login/checkout-login.component.d.ts +1 -1
  3. package/app/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.d.ts +1 -1
  4. package/app/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.d.ts +2 -2
  5. package/app/component/checkout/ione-checkout.component.d.ts +1 -1
  6. package/app/component/common/icon/icon.component.d.ts +1 -2
  7. package/app/component/common/no-image-display/no-image-display.component.d.ts +1 -1
  8. package/app/component/shopping-cart/characteristic-answer/characteristic-answer.component.d.ts +1 -1
  9. package/app/component/shopping-cart/ione-shopping-cart.component.d.ts +1 -1
  10. package/app/component/shopping-cart/shopping-cart/shopping-cart.component.d.ts +2 -2
  11. package/app/component/shopping-cart/shopping-cart-line/shopping-cart-line.component.d.ts +1 -1
  12. package/app/component/shopping-cart/shopping-cart-manager/shopping-cart-manager.component.d.ts +1 -1
  13. package/bundles/colijnit-transaction.umd.js +747 -807
  14. package/bundles/colijnit-transaction.umd.js.map +1 -1
  15. package/colijnit-transaction.d.ts +14 -14
  16. package/colijnit-transaction.metadata.json +1 -1
  17. package/esm2015/app/component/checkout/checkout/checkout.component.js +24 -26
  18. package/esm2015/app/component/checkout/checkout-login/checkout-login.component.js +18 -27
  19. package/esm2015/app/component/checkout/checkout-overview/checkout-overview.component.js +26 -49
  20. package/esm2015/app/component/checkout/checkout-overview-block/checkout-overview-block.component.js +17 -24
  21. package/esm2015/app/component/checkout/checkout-overview-delivery-address/checkout-overview-delivery-address.component.js +19 -23
  22. package/esm2015/app/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.js +28 -41
  23. package/esm2015/app/component/checkout/checkout-overview-relation-address/checkout-overview-relation-address.component.js +20 -21
  24. package/esm2015/app/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.js +27 -36
  25. package/esm2015/app/component/checkout/checkout-relation-suggestions-list/checkout-relation-suggestions-list.component.js +18 -24
  26. package/esm2015/app/component/checkout/checkout-relation-suggestions-list-item/checkout-relation-suggestions-list-item.component.js +16 -21
  27. package/esm2015/app/component/checkout/ione-checkout.component.js +28 -33
  28. package/esm2015/app/component/checkout/ione-checkout.module.js +55 -58
  29. package/esm2015/app/component/checkout/retail-transaction-checkout/retail-transaction-checkout.component.js +17 -17
  30. package/esm2015/app/component/common/icon/icon.component.js +18 -20
  31. package/esm2015/app/component/common/image-display/image-display.component.js +19 -36
  32. package/esm2015/app/component/common/no-image-display/no-image-display.component.js +15 -21
  33. package/esm2015/app/component/core/core.module.js +32 -34
  34. package/esm2015/app/component/shopping-cart/characteristic-answer/characteristic-answer.component.js +21 -26
  35. package/esm2015/app/component/shopping-cart/ione-shopping-cart.component.js +32 -47
  36. package/esm2015/app/component/shopping-cart/ione-shopping-cart.module.js +51 -52
  37. package/esm2015/app/component/shopping-cart/shopping-cart/shopping-cart.component.js +31 -49
  38. package/esm2015/app/component/shopping-cart/shopping-cart-line/shopping-cart-line.component.js +27 -38
  39. package/esm2015/app/component/shopping-cart/shopping-cart-manager/shopping-cart-manager.component.js +28 -37
  40. package/esm2015/app/component/shopping-cart/stock-status-indicator/stock-status-indicator.component.js +13 -17
  41. package/esm2015/app/model/business-object.js +6 -6
  42. package/esm2015/app/pipe/append.pipe.js +6 -8
  43. package/esm2015/app/pipe/co-currency.pipe.js +8 -11
  44. package/esm2015/app/pipe/date-duration.pipe.js +10 -10
  45. package/esm2015/app/pipe/delivery-time.pipe.js +10 -10
  46. package/esm2015/app/pipe/localize.pipe.js +13 -16
  47. package/esm2015/app/pipe/safe-style-pipe.js +12 -12
  48. package/esm2015/app/service/dictionary.service.js +10 -10
  49. package/esm2015/app/service/ione-connector-adapter.service.js +8 -8
  50. package/esm2015/app/service/options.service.js +8 -8
  51. package/esm2015/app/service/transaction-event.service.js +6 -8
  52. package/esm2015/app/service/transaction.service.js +15 -14
  53. package/esm2015/colijnit-transaction.js +15 -15
  54. package/esm2015/factory/decorators/complex-field.decorator.js +2 -2
  55. package/fesm2015/colijnit-transaction.js +638 -763
  56. package/fesm2015/colijnit-transaction.js.map +1 -1
  57. package/package.json +31 -19
  58. package/bundles/colijnit-transaction.umd.min.js +0 -16
  59. package/bundles/colijnit-transaction.umd.min.js.map +0 -1
  60. package/enum/icon.enum.d.ts +0 -281
  61. package/esm2015/enum/icon.enum.js +0 -283
@@ -4,7 +4,7 @@ import { CustomerFullObject } from "@colijnit/transactionapi/build/model/custome
4
4
  import { CheckoutOverviewComponent } from "../checkout-overview/checkout-overview.component";
5
5
  import { TransactionService } from "../../../service/transaction.service";
6
6
  import { MatStepper } from "@angular/material/stepper";
7
- import { PromptService } from "@colijnit/corecomponents_v9";
7
+ import { PromptService } from "@colijnit/corecomponents_v12";
8
8
  export declare class CheckoutComponent {
9
9
  service: TransactionService;
10
10
  promptService: PromptService;
@@ -1,5 +1,5 @@
1
1
  import { EventEmitter, OnInit } from "@angular/core";
2
- import { FormComponent } from "@colijnit/corecomponents_v9";
2
+ import { FormComponent } from "@colijnit/corecomponents_v12";
3
3
  export declare class CheckoutLoginComponent implements OnInit {
4
4
  loginForm: FormComponent;
5
5
  accountForm: FormComponent;
@@ -1,5 +1,5 @@
1
1
  import { AfterViewInit, ChangeDetectorRef, EventEmitter, OnInit } from "@angular/core";
2
- import { CoDialogComponent, CoGridComponent, FormComponent } from "@colijnit/corecomponents_v9";
2
+ import { CoDialogComponent, CoGridComponent, FormComponent } from "@colijnit/corecomponents_v12";
3
3
  import { RelationAnyType } from "@colijnit/transactionapi/build/model/relation-any-type";
4
4
  import { Address } from "@colijnit/transactionapi/build/model/address.bo";
5
5
  import { GenderType } from "@colijnit/transactionapi/build/enum/gender-type.enum";
@@ -7,9 +7,9 @@ import { RelationNameKind } from "@colijnit/transactionapi/build/enum/relation-n
7
7
  import { RelationPrivacySetting } from "@colijnit/transactionapi/build/model/relation-privacy-setting.bo";
8
8
  import { GenderType } from "@colijnit/transactionapi/build/enum/gender-type.enum";
9
9
  import { TransactionService } from "../../../service/transaction.service";
10
- import { FormComponent } from "@colijnit/corecomponents_v9";
10
+ import { FormComponent } from "@colijnit/corecomponents_v12";
11
11
  import { RelationListObject } from "@colijnit/transactionapi/build/model/relation-list-object.bo";
12
- import { CoSidebarComponent } from "@colijnit/corecomponents_v9";
12
+ import { CoSidebarComponent } from "@colijnit/corecomponents_v12";
13
13
  import { Address } from "@colijnit/transactionapi/build/model/address.bo";
14
14
  export declare class CheckoutOverviewRelationEditComponent implements OnInit, AfterViewInit {
15
15
  private _changeDetector;
@@ -5,7 +5,7 @@ import { DictionaryService } from "../../service/dictionary.service";
5
5
  import { IOneConnectorAdapterService } from "../../service/ione-connector-adapter.service";
6
6
  import { TransactionEventService } from "../../service/transaction-event.service";
7
7
  import { RetailTransactionCheckoutComponent } from "./../checkout/retail-transaction-checkout/retail-transaction-checkout.component";
8
- import { PromptService } from "@colijnit/corecomponents_v9";
8
+ import { PromptService } from "@colijnit/corecomponents_v12";
9
9
  import { CheckoutLoginComponent } from "./checkout-login/checkout-login.component";
10
10
  export declare class IoneCheckoutComponent implements OnInit, OnDestroy {
11
11
  _changeDetector: ChangeDetectorRef;
@@ -1,7 +1,6 @@
1
1
  import { OnDestroy } from "@angular/core";
2
2
  import { SafeHtml } from "@angular/platform-browser";
3
- import { IconCacheService } from "@colijnit/corecomponents_v9";
4
- import { CoreComponentsIcon } from "@colijnit/corecomponents_v9";
3
+ import { CoreComponentsIcon, IconCacheService } from "@colijnit/corecomponents_v12";
5
4
  export declare class IconComponent implements OnDestroy {
6
5
  private _iconCacheService;
7
6
  set icon(icon: CoreComponentsIcon);
@@ -1,4 +1,4 @@
1
- import { CoreComponentsIcon } from "@colijnit/corecomponents_v9";
1
+ import { CoreComponentsIcon } from "@colijnit/corecomponents_v12";
2
2
  export declare class NoImageDisplayComponent {
3
3
  icon: CoreComponentsIcon;
4
4
  label: string;
@@ -1,5 +1,5 @@
1
1
  import { EventEmitter, OnInit } from "@angular/core";
2
- import { CoDialogComponent } from "@colijnit/corecomponents_v9";
2
+ import { CoDialogComponent } from "@colijnit/corecomponents_v12";
3
3
  import { TransactionLineCharacteristicChoice } from "@colijnit/transactionapi/build/model/transactionLineCharacteristicChoice.bo";
4
4
  import { DictionaryService } from "../../../service/dictionary.service";
5
5
  export declare class CharacteristicAnswerComponent implements OnInit {
@@ -6,7 +6,7 @@ import { TransactionService } from "../../service/transaction.service";
6
6
  import { DictionaryService } from "../../service/dictionary.service";
7
7
  import { IOneConnectorAdapterService } from "../../service/ione-connector-adapter.service";
8
8
  import { TransactionEventService } from "../../service/transaction-event.service";
9
- import { PromptService } from "@colijnit/corecomponents_v9";
9
+ import { PromptService } from "@colijnit/corecomponents_v12";
10
10
  export declare class IoneShoppingCartComponent implements OnInit, OnDestroy {
11
11
  _changeDetector: ChangeDetectorRef;
12
12
  _optionsService: OptionsService;
@@ -3,9 +3,9 @@ import { DictionaryService } from "../../../service/dictionary.service";
3
3
  import { TransactionService } from "../../../service/transaction.service";
4
4
  import { OrderDiscountType } from "../../../enum/order-discount-type.enum";
5
5
  import { BusinessObject } from "@colijnit/transactionapi/build/model/business-object";
6
- import { CoreComponentsIcon, IconCacheService } from "@colijnit/corecomponents_v9";
6
+ import { CoreComponentsIcon, IconCacheService } from "@colijnit/corecomponents_v12";
7
7
  import { TransactionEventService } from "../../../service/transaction-event.service";
8
- import { CoSidebarComponent } from "@colijnit/corecomponents_v9";
8
+ import { CoSidebarComponent } from "@colijnit/corecomponents_v12";
9
9
  import { ContentViewMode } from "../../../enum/content-view-mode.enum";
10
10
  import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
11
11
  export declare class ShoppingCartComponent implements AfterViewInit, OnDestroy {
@@ -2,7 +2,7 @@ import { AfterViewInit } from "@angular/core";
2
2
  import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
3
3
  import { StockStatus } from "@colijnit/transactionapi/build/enum/refcode/stock-status.enum";
4
4
  import { TransactionService } from "../../../service/transaction.service";
5
- import { CoreComponentsIcon, IconCacheService, PromptService } from "@colijnit/corecomponents_v9";
5
+ import { CoreComponentsIcon, IconCacheService, PromptService } from "@colijnit/corecomponents_v12";
6
6
  import { DictionaryService } from "../../../service/dictionary.service";
7
7
  import { ResolvePendingLineReasonRequest } from "@colijnit/transactionapi/build/model/resolve-pending-reason-request.bo";
8
8
  export declare class ShoppingCartLineComponent implements AfterViewInit {
@@ -6,7 +6,7 @@ import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transa
6
6
  import { ResolvePendingLineReasonRequest } from "@colijnit/transactionapi/build/model/resolve-pending-reason-request.bo";
7
7
  import { CoDomainValue } from "@colijnit/transactionapi/build/model/co-domain-value.bo";
8
8
  import { TransactionArticleWarehouse } from "@colijnit/transactionapi/build/model/transaction-article-warehouse.bo";
9
- import { CoDialogComponent, CoGridComponent, PromptService } from "@colijnit/corecomponents_v9";
9
+ import { CoDialogComponent, CoGridComponent, PromptService } from "@colijnit/corecomponents_v12";
10
10
  import { ArticleFullObject } from "@colijnit/transactionapi/build/model/article-full-object";
11
11
  import { DictionaryService } from "../../../service/dictionary.service";
12
12
  import { CharacteristicAnswerComponent } from "../characteristic-answer/characteristic-answer.component";