@colijnit/transaction 256.1.52 → 256.1.53
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.
- package/bundles/colijnit-transaction.umd.js +12 -7
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/transaction-card/transaction-card-purchase-confirmation/transaction-card-purchase-confirmation.component.js +10 -3
- package/esm2015/lib/component/transaction-header/transaction-header-popup/cash-on-delivery-modal.component.js +4 -2
- package/esm2015/lib/component/transaction-header/transaction-header-popup/transaction-header-popup-payment.component.js +6 -4
- package/esm2015/lib/component/transaction-header-fields/transaction-header-deposit-amount.component.js +4 -2
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +18 -9
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/transaction-card/transaction-card-purchase-confirmation/transaction-card-purchase-confirmation.component.d.ts +2 -0
- package/lib/component/transaction-header/transaction-header-popup/cash-on-delivery-modal.component.d.ts +2 -0
- package/lib/component/transaction-header/transaction-header-popup/transaction-header-popup-payment.component.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-deposit-amount.component.d.ts +2 -0
- package/lib/component/transaction-line/transaction-line/style/_layout.scss +1 -0
- package/lib/component/transaction-line-image-and-description/style/_layout.scss +10 -1
- package/package.json +2 -2
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { TransactionPurchaseOrderLineBaseComponent } from '../../transaction-line/transaction-purchase-order-line/transaction-purchase-order-line-base.component';
|
|
2
|
+
import { CoCurrencyPipe } from "../../../pipe/co-currency.pipe";
|
|
2
3
|
export declare class TransactionCardPurchaseConfirmationComponent extends TransactionPurchaseOrderLineBaseComponent {
|
|
4
|
+
currencyPipe: typeof CoCurrencyPipe;
|
|
3
5
|
showClass(): boolean;
|
|
4
6
|
}
|
|
@@ -3,7 +3,9 @@ import { CashOnDeliveryData } from "@colijnit/transactionapi/build/model/cash-on
|
|
|
3
3
|
import { ChangeHeaderCashOnDeliveryAmountRequest } from "@colijnit/transactionapi/build/model/change-header-cash-on-delivery-amount-request";
|
|
4
4
|
import { Icon } from "../../../enum/icon.enum";
|
|
5
5
|
import { TransactionInputLineFieldBaseComponent } from "../../core/base/transaction-input-line-field-base.component";
|
|
6
|
+
import { CoCurrencyPipe } from "../../../pipe/co-currency.pipe";
|
|
6
7
|
export declare class CashOnDeliveryModalComponent extends TransactionInputLineFieldBaseComponent implements OnInit {
|
|
8
|
+
currencyPipe: typeof CoCurrencyPipe;
|
|
7
9
|
transactionInfoUuid: string;
|
|
8
10
|
showCashOnDeliveryModal: EventEmitter<boolean>;
|
|
9
11
|
cashAmount: EventEmitter<number>;
|
|
@@ -13,6 +13,7 @@ import { FormMasterService } from '@colijnit/corecomponents_v12';
|
|
|
13
13
|
import { TransactionRelationService } from '../../../service/transaction-relation.service';
|
|
14
14
|
import { TransactionPaymentConnectorService } from '../../../service/transaction-payment-connector.service';
|
|
15
15
|
import { TransactionHeaderService } from '../../core/base/service/transaction-header.service';
|
|
16
|
+
import { CoCurrencyPipe } from "../../../pipe/co-currency.pipe";
|
|
16
17
|
export interface PaymentCategory {
|
|
17
18
|
index: number;
|
|
18
19
|
title: string;
|
|
@@ -31,6 +32,7 @@ export declare class TransactionHeaderPopupPaymentComponent extends TransactionH
|
|
|
31
32
|
protected relationService: TransactionRelationService;
|
|
32
33
|
private _paymentConnectorService;
|
|
33
34
|
showClass(): boolean;
|
|
35
|
+
currencyPipe: typeof CoCurrencyPipe;
|
|
34
36
|
paidDown: number;
|
|
35
37
|
settled: number;
|
|
36
38
|
cashOnDelivery: number;
|
package/lib/component/transaction-header-fields/transaction-header-deposit-amount.component.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { InputTextComponent } from '@colijnit/corecomponents_v12';
|
|
3
3
|
import { TransactionInputHeaderFieldBaseComponent } from '../core/base/transaction-input-header-field-base.component';
|
|
4
|
+
import { CoCurrencyPipe } from "../../pipe/co-currency.pipe";
|
|
4
5
|
export declare class TransactionHeaderDepositAmountComponent extends TransactionInputHeaderFieldBaseComponent {
|
|
6
|
+
currencyPipe: typeof CoCurrencyPipe;
|
|
5
7
|
set child(content: any);
|
|
6
8
|
businessRuleApplied: EventEmitter<boolean>;
|
|
7
9
|
showClass: boolean;
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
gap: $tp-transaction-line-article-number-gap;
|
|
49
49
|
font-size: $tp-transaction-line-article-number-font-size;
|
|
50
50
|
align-items: center;
|
|
51
|
+
padding-top: 3px;
|
|
51
52
|
.delete-icon {
|
|
52
53
|
height: $tp-transaction-line-article-delete-icon-size;
|
|
53
54
|
width: $tp-transaction-line-article-delete-icon-size;
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
display: flex;
|
|
44
44
|
flex-direction: row;
|
|
45
45
|
column-gap: $tp-transaction-line-image-and-description-description-column-gap;
|
|
46
|
-
align-items:
|
|
46
|
+
align-items: flex-start;
|
|
47
47
|
overflow: hidden;
|
|
48
48
|
}
|
|
49
49
|
}
|
|
@@ -56,6 +56,15 @@
|
|
|
56
56
|
width: 100%;
|
|
57
57
|
.co-transaction-default-flex-row {
|
|
58
58
|
justify-content: space-between;
|
|
59
|
+
align-items: flex-start;
|
|
60
|
+
.co-transaction-overflow-ellipsis {
|
|
61
|
+
display: -webkit-box;
|
|
62
|
+
-webkit-line-clamp: 2;
|
|
63
|
+
-webkit-box-orient: vertical;
|
|
64
|
+
overflow: hidden;
|
|
65
|
+
text-overflow: ellipsis;
|
|
66
|
+
white-space: normal;
|
|
67
|
+
}
|
|
59
68
|
}
|
|
60
69
|
.input-description {
|
|
61
70
|
height: auto;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "256.1.
|
|
3
|
+
"version": "256.1.53",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 12",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@colijnit/articleapi": ">=256.1.8",
|
|
13
13
|
"@colijnit/catalog": ">=256.1.21",
|
|
14
14
|
"@colijnit/corecomponents": ">=1.12.0",
|
|
15
|
-
"@colijnit/corecomponents_v12": ">=256.1.
|
|
15
|
+
"@colijnit/corecomponents_v12": ">=256.1.16",
|
|
16
16
|
"@colijnit/ioneconnector": ">=256.1.0",
|
|
17
17
|
"@colijnit/mainapi": ">=256.1.2",
|
|
18
18
|
"@colijnit/product": ">=256.1.5",
|