@colijnit/transaction 12.1.37 → 12.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 +20 -12
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/core/base/transaction-filter-popup-base.component.js +4 -1
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.component.js +4 -2
- package/esm2015/lib/component/transaction/transaction.component.js +1 -1
- package/esm2015/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.component.js +2 -2
- package/esm2015/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.component.js +21 -16
- package/esm2015/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.component.js +7 -6
- package/esm2015/lib/service/article-connector.service.js +2 -2
- package/esm2015/lib/service/dialog.service.js +4 -3
- package/fesm2015/colijnit-transaction.js +35 -23
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.component.d.ts +1 -0
- package/lib/component/transaction-line-checkbox-list/style/_layout.scss +27 -33
- package/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.component.d.ts +5 -5
- package/lib/component/transaction-search/style/material.scss +1 -1
- package/lib/service/dialog.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DialogTransactionLineBaseComponent } from "../../../core/base/dialog-transaction-line-base.component";
|
|
2
2
|
export declare class DialogTransactionLineWarehouseLocationComponent extends DialogTransactionLineBaseComponent {
|
|
3
|
+
warehouseNr: number;
|
|
3
4
|
showClass(): boolean;
|
|
4
5
|
}
|
|
@@ -3,46 +3,40 @@
|
|
|
3
3
|
display: block;
|
|
4
4
|
height: 100%;
|
|
5
5
|
|
|
6
|
-
.
|
|
7
|
-
height:
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
.test2 {
|
|
11
|
-
height: 50px;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.highlight {
|
|
15
|
-
font-weight: $tp-transaction-line-checkbox-list-item-hightlight-font-weight;
|
|
16
|
-
font-style: $tp-transaction-line-checkbox-list-item-hightlight-font-style;
|
|
17
|
-
text-decoration: $tp-transaction-line-checkbox-list-item-hightlight-text-decoration;
|
|
18
|
-
}
|
|
19
|
-
table {
|
|
6
|
+
.virtual-scroll-container {
|
|
7
|
+
max-height: $tp-dialog-transaction-line-warehouse-location-height;
|
|
8
|
+
height: $tp-dialog-transaction-line-warehouse-location-height;
|
|
9
|
+
min-width: $tp-dialog-transaction-line-warehouse-location-min-width;
|
|
20
10
|
width: 100%;
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
tr {
|
|
11
|
+
|
|
12
|
+
.virtual-scroll-item {
|
|
24
13
|
height: $tp-transaction-line-checkbox-list-item-height;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
td {
|
|
31
|
-
border-width: $tp-transaction-line-checkbox-list-item-border-width;
|
|
32
|
-
border-style: $tp-transaction-line-checkbox-list-item-border-style;
|
|
14
|
+
border-radius: $tp-transaction-line-checkbox-list-item-border-radius;
|
|
15
|
+
display: flex;
|
|
16
|
+
align-items: center;
|
|
17
|
+
background-color: $tp-transaction-line-checkbox-list-item-background-color;
|
|
18
|
+
margin-bottom: 3px;
|
|
33
19
|
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
border-top-left-radius: $tp-transaction-line-checkbox-list-item-border-radius;
|
|
37
|
-
border-bottom-left-radius: $tp-transaction-line-checkbox-list-item-border-radius;
|
|
20
|
+
|
|
21
|
+
.checkbox-wrapper {
|
|
38
22
|
padding-left: 10px;
|
|
39
23
|
width: 40px;
|
|
40
24
|
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
25
|
+
|
|
26
|
+
.label-wrapper {
|
|
27
|
+
display: flex;
|
|
28
|
+
width: 100%;
|
|
45
29
|
}
|
|
30
|
+
|
|
31
|
+
.label {
|
|
32
|
+
width: 50%;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.highlight {
|
|
37
|
+
font-weight: $tp-transaction-line-checkbox-list-item-hightlight-font-weight;
|
|
38
|
+
font-style: $tp-transaction-line-checkbox-list-item-hightlight-font-style;
|
|
39
|
+
text-decoration: $tp-transaction-line-checkbox-list-item-hightlight-text-decoration;
|
|
46
40
|
}
|
|
47
41
|
}
|
|
48
42
|
}
|
package/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.component.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { EventEmitter } from "@angular/core";
|
|
2
|
-
export declare class TransactionLineCheckboxListComponent {
|
|
1
|
+
import { AfterViewChecked, ElementRef, EventEmitter } from "@angular/core";
|
|
2
|
+
export declare class TransactionLineCheckboxListComponent implements AfterViewChecked {
|
|
3
|
+
scrollingItem: ElementRef;
|
|
3
4
|
collection: any[];
|
|
4
5
|
readonly: boolean;
|
|
5
6
|
checked: EventEmitter<any>;
|
|
6
7
|
showClass: boolean;
|
|
7
8
|
smallToolbar: boolean;
|
|
8
|
-
|
|
9
|
+
itemHeight: number;
|
|
10
|
+
ngAfterViewChecked(): void;
|
|
9
11
|
handleChecked(event: MouseEvent, row: {
|
|
10
12
|
value: string;
|
|
11
13
|
text: string;
|
|
12
14
|
checked: boolean;
|
|
13
15
|
}): void;
|
|
14
|
-
private _initObserver;
|
|
15
|
-
private _handleVisibility;
|
|
16
16
|
}
|
|
@@ -4,5 +4,5 @@
|
|
|
4
4
|
@import "../transaction-search-header/style/material";
|
|
5
5
|
@import "../transaction-filter/transaction-filter/style/material";
|
|
6
6
|
@import "../transaction-search-result/style/material";
|
|
7
|
-
@import "~@colijnit/corecomponents_v12/lib/
|
|
7
|
+
@import "~@colijnit/corecomponents_v12/lib/modules/pagination/style/material";
|
|
8
8
|
|
|
@@ -19,5 +19,5 @@ export declare class DialogService {
|
|
|
19
19
|
showCharacteristics(title: string, choices: TransactionLineCharacteristicChoice[], value: string): Promise<string>;
|
|
20
20
|
showWarehouse(): Promise<number>;
|
|
21
21
|
showCommissionCode(): Promise<string>;
|
|
22
|
-
showWarehouseLocation(): Promise<string>;
|
|
22
|
+
showWarehouseLocation(warehouseNr: number): Promise<string>;
|
|
23
23
|
}
|