@colijnit/transaction 255.1.37 → 255.1.38
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 +23 -8
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/transaction-header/transaction-header-order/transaction-header-order.component.js +2 -2
- package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.js +2 -2
- package/esm2015/lib/component/transaction-lines-side-panel/transaction-lines-side-panel-service-order/transaction-lines-side-panel-service-order.component.js +59 -46
- package/esm2015/lib/component/transaction-service-overview/components/transaction-service-message.component.js +1 -2
- package/esm2015/lib/component/transaction-service-overview/transaction-service-overview.component.js +3 -3
- package/esm2015/lib/enum/icon.enum.js +3 -1
- package/esm2015/lib/model/icon-svg.js +3 -1
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +67 -52
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/transaction-lines-side-panel/transaction-lines-side-panel-service-order/style/_layout.scss +16 -0
- package/lib/component/transaction-lines-side-panel/transaction-lines-side-panel-service-order/transaction-lines-side-panel-service-order.component.d.ts +2 -0
- package/lib/component/transaction-service-overview/style/_layout.scss +4 -0
- package/lib/enum/icon.enum.d.ts +2 -0
- package/package.json +1 -1
|
@@ -15,9 +15,18 @@
|
|
|
15
15
|
flex-direction: row;
|
|
16
16
|
justify-content: space-between;
|
|
17
17
|
align-items: center;
|
|
18
|
+
&.clickable {
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
}
|
|
18
21
|
.co-icon {
|
|
19
22
|
width: $tp-transaction-lines-side-panel-service-order-label-icon-size;
|
|
20
23
|
height: $tp-transaction-lines-side-panel-service-order-label-icon-size;
|
|
24
|
+
transform: rotate(0deg);
|
|
25
|
+
transition: transform 0.3s ease-in-out;
|
|
26
|
+
&.active {
|
|
27
|
+
transform: rotate(180deg);
|
|
28
|
+
transition: transform 0.3s ease-in-out;
|
|
29
|
+
}
|
|
21
30
|
}
|
|
22
31
|
}
|
|
23
32
|
.detail-label {
|
|
@@ -54,6 +63,8 @@
|
|
|
54
63
|
}
|
|
55
64
|
&.supplier {
|
|
56
65
|
flex-direction: column;
|
|
66
|
+
border-bottom: none;
|
|
67
|
+
padding-bottom: 0;
|
|
57
68
|
.top-details {
|
|
58
69
|
display: flex;
|
|
59
70
|
flex-direction: row;
|
|
@@ -104,5 +115,10 @@
|
|
|
104
115
|
}
|
|
105
116
|
}
|
|
106
117
|
}
|
|
118
|
+
.show-details-wrapper {
|
|
119
|
+
margin-top: 10px;
|
|
120
|
+
padding-top: 15px;
|
|
121
|
+
border-top: 5px solid #F4F4F9;
|
|
122
|
+
}
|
|
107
123
|
}
|
|
108
124
|
}
|
|
@@ -17,7 +17,9 @@ export declare class TransactionLinesSidePanelServiceOrderComponent extends Tran
|
|
|
17
17
|
protected changeDetector: ChangeDetectorRef;
|
|
18
18
|
readonly Icon: typeof Icon;
|
|
19
19
|
showClass(): boolean;
|
|
20
|
+
showDetails: boolean;
|
|
20
21
|
image: string;
|
|
21
22
|
constructor(transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef);
|
|
23
|
+
showDetailsClick(): void;
|
|
22
24
|
ngOnInit(): Promise<void>;
|
|
23
25
|
}
|
package/lib/enum/icon.enum.d.ts
CHANGED
|
@@ -62,6 +62,8 @@ export declare enum Icon {
|
|
|
62
62
|
IndustrySolid = "industry_solid",
|
|
63
63
|
Invoice = "invoice",
|
|
64
64
|
LessThanSolid = "less_than_solid",
|
|
65
|
+
LightCreditCardCheck = "light_credit_card_check",
|
|
66
|
+
LightEuroSignMinus = "light_euro_sign_minus",
|
|
65
67
|
LinkRegular = "link_regular",
|
|
66
68
|
LinkSimpleSolid = "link_simple_solid",
|
|
67
69
|
ListRegular = "list_regular",
|