@colijnit/transaction 255.1.15 → 255.1.16
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 +17 -12
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.js +3 -3
- package/esm2015/lib/component/core/relation/customer-languages.component.js +4 -3
- package/esm2015/lib/component/core/relation/customer-titles.component.js +5 -3
- package/esm2015/lib/component/transaction-header/transaction-header/transaction-header.component.js +3 -2
- package/esm2015/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.js +13 -12
- package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.js +6 -1
- package/esm2015/lib/component/transaction-service-overview/components/transaction-service-message.component.js +2 -2
- package/esm2015/lib/component/transaction-service-overview/transaction-service-overview.component.js +8 -4
- package/esm2015/lib/enum/icon.enum.js +2 -1
- package/esm2015/lib/model/icon-svg.js +2 -1
- package/esm2015/lib/service/transaction-mapping.service.js +2 -2
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +39 -23
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/core/base/components/transaction-header-block/style/_material-definition.scss +1 -1
- package/lib/component/core/relation/customer-titles.component.d.ts +1 -0
- package/lib/component/transaction-button-bar/style/_layout.scss +0 -36
- package/lib/component/transaction-button-bar/style/_material-definition.scss +2 -2
- package/lib/component/transaction-header/transaction-header-order/style/_layout.scss +3 -0
- package/lib/component/transaction-internal/style/_layout.scss +1 -1
- package/lib/component/transaction-service-overview/style/_layout.scss +64 -8
- package/lib/enum/icon.enum.d.ts +1 -0
- package/package.json +2 -2
- package/colijnit-transaction-255.1.12.tgz +0 -0
package/lib/component/core/base/components/transaction-header-block/style/_material-definition.scss
CHANGED
|
@@ -8,7 +8,7 @@ $tp-transaction-header-block-header-margin: 0 !default;
|
|
|
8
8
|
$tp-transaction-header-block-header-min-height: 0px !default;
|
|
9
9
|
|
|
10
10
|
$tp-transaction-header-block-content-divider-background: $tp-color-border !default;
|
|
11
|
-
$tp-transaction-header-block-content-column-gap:
|
|
11
|
+
$tp-transaction-header-block-content-column-gap: 15px !default;
|
|
12
12
|
$tp-transaction-header-block-content-row-gap: 10px !default;
|
|
13
13
|
|
|
14
14
|
$tp-transaction-header-block-width: auto !default;
|
|
@@ -11,6 +11,7 @@ export declare class CustomerTitlesComponent implements ScreenConfigAdapterCompo
|
|
|
11
11
|
modelChange: EventEmitter<number>;
|
|
12
12
|
customerTitles: Title[];
|
|
13
13
|
selectedCustomerTitle: Title;
|
|
14
|
+
fields: Object;
|
|
14
15
|
private _model;
|
|
15
16
|
constructor(_connector: TransactionConnectorService);
|
|
16
17
|
objectConfigName: string;
|
|
@@ -39,42 +39,6 @@
|
|
|
39
39
|
opacity: 0.1;
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
|
-
.button-title {
|
|
43
|
-
position: absolute;
|
|
44
|
-
bottom: 100%;
|
|
45
|
-
left: 50%;
|
|
46
|
-
transform: translateX(-50%);
|
|
47
|
-
background-color: #333;
|
|
48
|
-
color: #fff;
|
|
49
|
-
padding: 5px 10px;
|
|
50
|
-
border-radius: 5px;
|
|
51
|
-
font-size: 14px;
|
|
52
|
-
white-space: nowrap;
|
|
53
|
-
opacity: 0;
|
|
54
|
-
visibility: hidden;
|
|
55
|
-
transition: opacity 0.3s ease, transform 0.3s ease;
|
|
56
|
-
transform: translateX(-50%) translateY(10px) scale(0.95);
|
|
57
|
-
z-index: 99;
|
|
58
|
-
&:after {
|
|
59
|
-
content: '';
|
|
60
|
-
position: absolute;
|
|
61
|
-
top: 100%;
|
|
62
|
-
left: 50%;
|
|
63
|
-
transform: translateX(-50%);
|
|
64
|
-
border-width: 5px;
|
|
65
|
-
border-style: solid;
|
|
66
|
-
border-color: #333 transparent transparent transparent;
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
&:hover {
|
|
70
|
-
.button-title {
|
|
71
|
-
visibility: visible;
|
|
72
|
-
opacity: 1;
|
|
73
|
-
transform: translateX(-50%) translateY(0) scale(1);
|
|
74
|
-
transition-delay: 1s;
|
|
75
|
-
color: #FFF !important;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
42
|
}
|
|
79
43
|
.button-wrapper {
|
|
80
44
|
//height: $tp-co-transaction-button-bar-button-size;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
$tp-co-transaction-button-bar-font-family: $tp-font-family !default;
|
|
2
2
|
$tp-co-transaction-button-bar-font-size: $tp-font-size !default;
|
|
3
|
-
$tp-co-transaction-button-bar-button-max-width:
|
|
3
|
+
$tp-co-transaction-button-bar-button-max-width: 55px !default;
|
|
4
4
|
$tp-co-transaction-button-bar-button-size: 65px !default;
|
|
5
5
|
$tp-co-transaction-button-bar-button-background-color: white !default;
|
|
6
6
|
$tp-co-transaction-button-bar-button-border-radius: $tp-default-border-radius !default;
|
|
@@ -10,5 +10,5 @@ $tp-co-transaction-button-bar-button-selected-box-border: none !default;
|
|
|
10
10
|
$tp-co-transaction-button-bar-button-selected-icon-color: $tp-color-action !default;
|
|
11
11
|
$tp-co-transaction-button-bar-icon-color: $tp-color-font !default;
|
|
12
12
|
$tp-co-transaction-button-bar-icon-size: 20px !default;
|
|
13
|
-
$tp-co-transaction-button-bar-icon-margin:
|
|
13
|
+
$tp-co-transaction-button-bar-icon-margin: 5px 0 5px 0 !default;
|
|
14
14
|
$tp-co-transaction-button-bar-label-font-size: $tp-font-size-small !default;
|
|
@@ -59,10 +59,20 @@
|
|
|
59
59
|
gap: 10px;
|
|
60
60
|
width: 95%;
|
|
61
61
|
height: 100%;
|
|
62
|
-
.
|
|
62
|
+
.activity-list-component-wrapper {
|
|
63
63
|
padding: 0 0 15px 0;
|
|
64
64
|
margin: 0 0 15px 0;
|
|
65
65
|
border-bottom: 5px solid #F4F4F9;
|
|
66
|
+
.co-component-activity-list {
|
|
67
|
+
padding: 0;
|
|
68
|
+
margin: 0;
|
|
69
|
+
}
|
|
70
|
+
.activity-list-content {
|
|
71
|
+
height: auto;
|
|
72
|
+
.activity-tab-content {
|
|
73
|
+
overflow: visible;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
66
76
|
}
|
|
67
77
|
.co-activity-list {
|
|
68
78
|
padding-bottom: 20px;
|
|
@@ -85,10 +95,34 @@
|
|
|
85
95
|
.co-input-text {
|
|
86
96
|
height: 100%;
|
|
87
97
|
}
|
|
98
|
+
.co-input-textarea {
|
|
99
|
+
.input-textarea-wrapper {
|
|
100
|
+
height: 100%;
|
|
101
|
+
}
|
|
102
|
+
&:before {
|
|
103
|
+
box-shadow: none;
|
|
104
|
+
}
|
|
105
|
+
textarea {
|
|
106
|
+
height: 100%;
|
|
107
|
+
margin: 0;
|
|
108
|
+
padding: 0;
|
|
109
|
+
}
|
|
110
|
+
&.cc-input-focused {
|
|
111
|
+
&:before {
|
|
112
|
+
box-shadow: inset 0 0 0 1px #1A73E8;
|
|
113
|
+
}
|
|
114
|
+
textarea {
|
|
115
|
+
margin: 15px 0 0 0;
|
|
116
|
+
padding: 0 0 5px 10px;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
}
|
|
120
|
+
}
|
|
88
121
|
}
|
|
89
122
|
.service-label {
|
|
90
123
|
font-size: 12px;
|
|
91
|
-
font-weight:
|
|
124
|
+
font-weight: 500;
|
|
125
|
+
color: #8083A3;
|
|
92
126
|
}
|
|
93
127
|
}
|
|
94
128
|
|
|
@@ -114,8 +148,9 @@
|
|
|
114
148
|
}
|
|
115
149
|
}
|
|
116
150
|
.description {
|
|
117
|
-
font-weight:
|
|
151
|
+
font-weight: 500;
|
|
118
152
|
font-size: 12px;
|
|
153
|
+
color: #8083A3;
|
|
119
154
|
}
|
|
120
155
|
}
|
|
121
156
|
.tile {
|
|
@@ -159,7 +194,11 @@
|
|
|
159
194
|
}
|
|
160
195
|
.overview-wrapper-labels {
|
|
161
196
|
.activity-title {
|
|
162
|
-
font-size:
|
|
197
|
+
font-size: 12px;
|
|
198
|
+
padding: 5px 15px;
|
|
199
|
+
border-radius: 5px;
|
|
200
|
+
background: #5FDCB366;
|
|
201
|
+
border: 1px solid #5FDCB3;
|
|
163
202
|
}
|
|
164
203
|
.activity-context-title {
|
|
165
204
|
font-size: 12px;
|
|
@@ -169,15 +208,32 @@
|
|
|
169
208
|
background: transparent;
|
|
170
209
|
box-shadow: none;
|
|
171
210
|
padding: 0;
|
|
211
|
+
margin-bottom: 15px;
|
|
172
212
|
&:hover {
|
|
173
213
|
background: transparent;
|
|
174
214
|
}
|
|
175
|
-
.
|
|
176
|
-
|
|
215
|
+
.overview-wrapper-date {
|
|
216
|
+
.date-wrapper {
|
|
217
|
+
align-items: center;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
.button-trigger, .button-trigger-icon {
|
|
221
|
+
background-color: #FFFFFF;
|
|
177
222
|
border: 1px solid #5FDCB3;
|
|
178
|
-
height:
|
|
179
|
-
padding: 5px
|
|
223
|
+
height: auto;
|
|
224
|
+
padding: 5px 15px;
|
|
180
225
|
cursor: pointer;
|
|
226
|
+
span {
|
|
227
|
+
font-size: 10px;
|
|
228
|
+
color: #5FDCB3;
|
|
229
|
+
font-weight: bold;
|
|
230
|
+
}
|
|
231
|
+
.co-icon {
|
|
232
|
+
height: 10px;
|
|
233
|
+
svg [fill] {
|
|
234
|
+
fill: #5FDCB3;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
181
237
|
}
|
|
182
238
|
}
|
|
183
239
|
}
|
package/lib/enum/icon.enum.d.ts
CHANGED
|
@@ -122,6 +122,7 @@ export declare enum Icon {
|
|
|
122
122
|
ThickLines = "thick_lines",
|
|
123
123
|
ThinLines = "thin_lines",
|
|
124
124
|
Toolbox = "toolbox",
|
|
125
|
+
ToolboxRegular = "toolbox_regular",
|
|
125
126
|
TrashBin = "trash_bin",
|
|
126
127
|
TrashCanLight = "trash_can_light",
|
|
127
128
|
TriangleDown = "triangle_down",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "255.1.
|
|
3
|
+
"version": "255.1.16",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 12",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@colijnit/relation": ">=255.1.2",
|
|
20
20
|
"@colijnit/relationapi": ">=255.1.1",
|
|
21
21
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
22
|
-
"@colijnit/sharedcomponents": ">=255.1.
|
|
22
|
+
"@colijnit/sharedcomponents": ">=255.1.7",
|
|
23
23
|
"@colijnit/transactionapi": ">=255.1.6",
|
|
24
24
|
"@types/three": ">=0.125.0",
|
|
25
25
|
"@tweenjs/tween.js": ">=17.2.0",
|
|
Binary file
|