@colijnit/transaction 256.1.35 → 256.1.36
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 +5 -4
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/transaction-allocate-goods-history/transaction-allocate-goods-history.component.js +19 -1
- package/esm2015/lib/component/transaction-send-documents/transaction-send-documents.component.js +27 -22
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +46 -23
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/transaction-send-documents/style/_layout.scss +6 -1
- package/lib/component/transaction-send-documents/transaction-send-documents.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
@include export-module('cc-transaction-send-documents-layout') {
|
|
2
2
|
.co-transaction-send-documents {
|
|
3
|
-
|
|
4
3
|
.send-documents-wrapper {
|
|
5
4
|
position: relative;
|
|
6
5
|
|
|
@@ -78,6 +77,7 @@
|
|
|
78
77
|
padding: 15px;
|
|
79
78
|
border-radius: 8px;
|
|
80
79
|
display: flex;
|
|
80
|
+
flex-wrap: wrap;
|
|
81
81
|
align-items: center;
|
|
82
82
|
width: inherit;
|
|
83
83
|
margin-bottom: 5px;
|
|
@@ -97,5 +97,10 @@
|
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
99
|
}
|
|
100
|
+
|
|
101
|
+
.invoice-number {
|
|
102
|
+
width: 100%;
|
|
103
|
+
margin-top: 5px;
|
|
104
|
+
}
|
|
100
105
|
}
|
|
101
106
|
}
|
|
@@ -23,4 +23,5 @@ export declare class TransactionSendDocumentsComponent extends TransactionHeader
|
|
|
23
23
|
getSendMethodIcon(report: HistoricReport): Icon;
|
|
24
24
|
getSendMethodDescription(report: HistoricReport): string;
|
|
25
25
|
private _setLayoutCode;
|
|
26
|
+
protected readonly LayoutCode: typeof LayoutCode;
|
|
26
27
|
}
|