@colijnit/transaction 12.1.135 → 12.1.136
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 +9 -103
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.component.js +8 -1
- package/esm2015/lib/res/dictionary/dictionaries.js +2 -2
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +10 -3
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/transaction-document-button/style/_layout.scss +59 -0
- package/lib/component/transaction-document-button/style/_material-definition.scss +9 -0
- package/lib/component/transaction-document-button/style/_theme.scss +5 -0
- package/lib/component/transaction-document-button/style/material.scss +4 -0
- package/lib/res/dictionary/dictionaries.d.ts +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
@include export-module('co-transaction-document-button-bar-layout') {
|
|
2
|
+
.co-transaction-document-button-bar {
|
|
3
|
+
font-family: $tp-co-transaction-document-button-bar-font-family;
|
|
4
|
+
font-size: $tp-co-transaction-document-button-bar-font-size;
|
|
5
|
+
.button-bar-wrapper {
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-direction: row;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.co-transaction-document-button {
|
|
12
|
+
.co-transaction-document-button-icon {
|
|
13
|
+
height: $tp-co-transaction-button-bar-icon-size;
|
|
14
|
+
width: $tp-co-transaction-button-bar-icon-size;
|
|
15
|
+
margin: $tp-co-transaction-button-bar-icon-margin;
|
|
16
|
+
svg {
|
|
17
|
+
height: 100%;
|
|
18
|
+
width: 100%;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
.button-wrapper {
|
|
23
|
+
//height: $tp-co-transaction-button-bar-button-size;
|
|
24
|
+
//min-width: $tp-co-transaction-button-bar-button-size;
|
|
25
|
+
background: $tp-co-transaction-document-button-background-color;
|
|
26
|
+
border-radius: $tp-co-transaction-document-button-border-radius;
|
|
27
|
+
padding: $tp-co-transaction-document-button-padding;
|
|
28
|
+
display: flex;
|
|
29
|
+
flex-direction: column;
|
|
30
|
+
align-items: center;
|
|
31
|
+
justify-content: center;
|
|
32
|
+
cursor: pointer;
|
|
33
|
+
.button-title {
|
|
34
|
+
font-size: $tp-co-transaction-document-button-label-font-size;
|
|
35
|
+
//padding: 0 7px 4px 7px;
|
|
36
|
+
}
|
|
37
|
+
.co-transaction-document-button-icon {
|
|
38
|
+
height: $tp-co-transaction-document-button-icon-size;
|
|
39
|
+
width: $tp-co-transaction-document-button-icon-size;
|
|
40
|
+
margin: $tp-co-transaction-document-button-icon-margin;
|
|
41
|
+
svg {
|
|
42
|
+
height: 100%;
|
|
43
|
+
width: 100%;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
/*.co-transaction-sales-purchase-button-bar-button,
|
|
48
|
+
.co-transaction-purchase-receive-goods-button-bar-button,
|
|
49
|
+
.co-transaction-sales-allocation-button-bar-button,
|
|
50
|
+
.co-transaction-purchase-confirmation-button-bar-button,
|
|
51
|
+
.co-transaction-purchase-invoice-button-bar-button,
|
|
52
|
+
.co-transaction-sales-invoice-button-bar-button,
|
|
53
|
+
.co-transaction-sales-delivery-button-bar-button {
|
|
54
|
+
display: flex;
|
|
55
|
+
flex-direction: column;
|
|
56
|
+
align-items: center;
|
|
57
|
+
}*/
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
$tp-co-transaction-document-button-bar-font-family: $tp-font-family !default;
|
|
2
|
+
$tp-co-transaction-document-button-bar-font-size: $tp-font-size !default;
|
|
3
|
+
//$tp-co-transaction-button-bar-button-size: 65px !default;
|
|
4
|
+
$tp-co-transaction-document-button-background-color: white !default;
|
|
5
|
+
$tp-co-transaction-document-button-border-radius: $tp-default-border-radius !default;
|
|
6
|
+
$tp-co-transaction-document-button-padding: 5px !default;
|
|
7
|
+
$tp-co-transaction-document-button-icon-size: 60px !default;
|
|
8
|
+
$tp-co-transaction-document-button-icon-margin: 0 0 5px 0 !default;
|
|
9
|
+
$tp-co-transaction-document-button-label-font-size: $tp-font-size-small !default;
|
|
@@ -13622,6 +13622,7 @@ export declare class Dictionaries {
|
|
|
13622
13622
|
MESSAGE_USE_EMAIL_AS_USERNAME: string;
|
|
13623
13623
|
MESSAGE_VAT_NUMBER_INVALID: string;
|
|
13624
13624
|
MESSAGE_WRONG_CLIENT: string;
|
|
13625
|
+
MESSAGE_WRONG_RELATION_TYPE: string;
|
|
13625
13626
|
MESSAGE_WRONG_WAREHOUSE_POS_LINE: string;
|
|
13626
13627
|
METRIC: string;
|
|
13627
13628
|
METRICS: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "12.1.
|
|
3
|
+
"version": "12.1.136",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 12",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@colijnit/relationapi": ">=1.0.7",
|
|
19
19
|
"@colijnit/sharedapi": ">=1.0.16",
|
|
20
20
|
"@colijnit/sharedcomponents": ">=1.0.46",
|
|
21
|
-
"@colijnit/transactionapi": ">=1.1.
|
|
21
|
+
"@colijnit/transactionapi": ">=1.1.94",
|
|
22
22
|
"@types/three": ">=0.125.0",
|
|
23
23
|
"@tweenjs/tween.js": ">=17.2.0",
|
|
24
24
|
"three": ">=0.125.0"
|