@colijnit/sharedcomponents 259.1.17 → 259.1.19
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-sharedcomponents.umd.js +20 -7
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/file-upload/file-upload.component.js +21 -4
- package/esm2015/lib/components/file-upload/file-upload.module.js +4 -2
- package/esm2015/lib/components/files-upload/files-upload.component.js +10 -5
- package/esm2015/lib/components/send-method-dialog/components/layout-selection/layout-selection.component.js +35 -35
- package/esm2015/lib/components/tile-renderer/tile-render.component.js +11 -1
- package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
- package/fesm2015/colijnit-sharedcomponents.js +77 -44
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/app-file-dropzone/style/_layout.scss +1 -4
- package/lib/components/file-upload/file-upload.component.d.ts +4 -0
- package/lib/components/file-upload/style/_layout.scss +7 -0
- package/lib/components/files-upload/style/_layout.scss +8 -0
- package/lib/components/form-builder/form-builder-user-form/style/_layout.scss +0 -4
- package/lib/components/tile-renderer/tile-render.component.d.ts +4 -0
- package/lib/res/dictionary/dictionaries.d.ts +18 -0
- package/package.json +1 -1
|
@@ -1,16 +1,13 @@
|
|
|
1
1
|
@include export-module('co-app-file-dropzone-layout') {
|
|
2
2
|
.co-app-file-dropzone {
|
|
3
|
-
{
|
|
4
3
|
pointer-events: none;
|
|
5
|
-
position:
|
|
4
|
+
position: absolute;
|
|
6
5
|
top : 0;
|
|
7
6
|
left : 0;
|
|
8
7
|
width: 100%;
|
|
9
8
|
height: 100%;
|
|
10
9
|
z-index: 9001; //should overlay popup cards too
|
|
11
10
|
display: flex;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
11
|
.drop-files-wrapper {
|
|
15
12
|
display: flex;
|
|
16
13
|
align-items: center;
|
|
@@ -26,6 +26,10 @@ export declare class FileUploadComponent implements OnDestroy {
|
|
|
26
26
|
showTrashCan: boolean;
|
|
27
27
|
showImage: boolean;
|
|
28
28
|
customImageClick: boolean;
|
|
29
|
+
creationDate: Date;
|
|
30
|
+
creationUser: string;
|
|
31
|
+
modifiedDate: Date;
|
|
32
|
+
modifiedUser: string;
|
|
29
33
|
deleteClick: EventEmitter<any>;
|
|
30
34
|
editClick: EventEmitter<CoDocument>;
|
|
31
35
|
imageClick: EventEmitter<CoDocument>;
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
grid-gap: 5px;
|
|
47
47
|
gap: 5px;
|
|
48
48
|
align-items: flex-start;
|
|
49
|
+
flex-direction: column;
|
|
49
50
|
}
|
|
50
51
|
.upload-add-wrapper {
|
|
51
52
|
display: flex;
|
|
@@ -76,6 +77,13 @@
|
|
|
76
77
|
}
|
|
77
78
|
}
|
|
78
79
|
}
|
|
80
|
+
.uploaded-images-wrapper {
|
|
81
|
+
display: flex;
|
|
82
|
+
gap: 10px;
|
|
83
|
+
.co-file-upload {
|
|
84
|
+
width: 150px;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
79
87
|
}
|
|
80
88
|
}
|
|
81
89
|
|
|
@@ -19,6 +19,10 @@ export declare class TileRenderComponent implements OnDestroy {
|
|
|
19
19
|
* to hide the whole image-display instead, when there was no image given.
|
|
20
20
|
*/
|
|
21
21
|
hideImageDisplayWhenNoImage: boolean;
|
|
22
|
+
creationDate: Date;
|
|
23
|
+
creationUser: string;
|
|
24
|
+
modifiedDate: Date;
|
|
25
|
+
modifiedUser: string;
|
|
22
26
|
selected: boolean;
|
|
23
27
|
imageClick: EventEmitter<any>;
|
|
24
28
|
infoClick: EventEmitter<any>;
|
|
@@ -8822,7 +8822,9 @@ export declare class Dictionaries {
|
|
|
8822
8822
|
ACCOUNT_ACTIVE2: string;
|
|
8823
8823
|
ACCOUNT_AND_PRIVACY: string;
|
|
8824
8824
|
ACCOUNT_BUSINESSES: string;
|
|
8825
|
+
ACCOUNT_CONTRA: string;
|
|
8825
8826
|
ACCOUNT_DETAILS: string;
|
|
8827
|
+
ACCOUNT_DIFF: string;
|
|
8826
8828
|
ACCOUNT_EXPLANATION: string;
|
|
8827
8829
|
ACCOUNT_INACTIVE: string;
|
|
8828
8830
|
ACCOUNT_INACTIVE_PW_NOT_SENT: string;
|
|
@@ -9197,6 +9199,7 @@ export declare class Dictionaries {
|
|
|
9197
9199
|
BANK_BOOK: string;
|
|
9198
9200
|
BANK_RELATION: string;
|
|
9199
9201
|
BANK_STATEMENT_APPLICABLE_FOR_PAYMENT: string;
|
|
9202
|
+
BANK_STATEMENT_HOLDING_ACCOUNT: string;
|
|
9200
9203
|
BANK_STATEMENT_LEDGER_ACCOUNT_TO_LINK: string;
|
|
9201
9204
|
BANK_STATEMENT_LINK: string;
|
|
9202
9205
|
BANK_STATEMENT_SEARCH_COLUMN: string;
|
|
@@ -9873,6 +9876,7 @@ export declare class Dictionaries {
|
|
|
9873
9876
|
EXCLUDE_FROM_INVOICE_CHECK: string;
|
|
9874
9877
|
EXCLUDE_INVOICE_CHECK: string;
|
|
9875
9878
|
EXCLUDE_RETURNS: string;
|
|
9879
|
+
EXCLUDE_BALANCE_CALCULATION: string;
|
|
9876
9880
|
EXCLUSIONS: string;
|
|
9877
9881
|
EXPORT_GRIDS: string;
|
|
9878
9882
|
EXPORT_JOBS_NOT_STARTED: string;
|
|
@@ -10059,6 +10063,8 @@ export declare class Dictionaries {
|
|
|
10059
10063
|
FIELD_NAME: string;
|
|
10060
10064
|
FIELD_TYPE: string;
|
|
10061
10065
|
FIFO: string;
|
|
10066
|
+
FIRST_POSTING: string;
|
|
10067
|
+
FIRST_SETTLEMENT_NR: string;
|
|
10062
10068
|
COST_CENTER: string;
|
|
10063
10069
|
COST_CENTER_EMPLOYMENT_CONTRACT: string;
|
|
10064
10070
|
COST_CENTER_TYPE: string;
|
|
@@ -12495,6 +12501,7 @@ export declare class Dictionaries {
|
|
|
12495
12501
|
VIEW_PRODUCTS_OWNED: string;
|
|
12496
12502
|
VIEW_TRANSACTION_OVERVIEW: string;
|
|
12497
12503
|
VIRTUAL_ASSISTANT: string;
|
|
12504
|
+
ORDER_DISCOUNT: string;
|
|
12498
12505
|
ORDER_NET: string;
|
|
12499
12506
|
ORDER_NO: string;
|
|
12500
12507
|
ORDER_NOT_COPIED: string;
|
|
@@ -24163,7 +24170,9 @@ export declare class Dictionaries {
|
|
|
24163
24170
|
ACCOUNT_ACTIVE: string;
|
|
24164
24171
|
ACCOUNT_AND_PRIVACY: string;
|
|
24165
24172
|
ACCOUNT_BUSINESSES: string;
|
|
24173
|
+
ACCOUNT_CONTRA: string;
|
|
24166
24174
|
ACCOUNT_DETAILS: string;
|
|
24175
|
+
ACCOUNT_DIFF: string;
|
|
24167
24176
|
ACCOUNT_EXPLANATION: string;
|
|
24168
24177
|
ACCOUNT_INACTIVE: string;
|
|
24169
24178
|
ACCOUNT_INACTIVE_PW_NOT_SENT: string;
|
|
@@ -24941,6 +24950,7 @@ export declare class Dictionaries {
|
|
|
24941
24950
|
BANK_BOOK: string;
|
|
24942
24951
|
BANK_RELATION: string;
|
|
24943
24952
|
BANK_STATEMENT_APPLICABLE_FOR_PAYMENT: string;
|
|
24953
|
+
BANK_STATEMENT_HOLDING_ACCOUNT: string;
|
|
24944
24954
|
BANK_STATEMENT_LEDGER_ACCOUNT_TO_LINK: string;
|
|
24945
24955
|
BANK_STATEMENT_LINK: string;
|
|
24946
24956
|
BANK_STATEMENT_SEARCH_COLUMN: string;
|
|
@@ -26761,6 +26771,7 @@ export declare class Dictionaries {
|
|
|
26761
26771
|
EXCLUDE_ALLOCATED_RETURNS: string;
|
|
26762
26772
|
EXCLUDE_ALLREADY_CONFIRMED: string;
|
|
26763
26773
|
EXCLUDE_ALREADY_ARRIVALDATE: string;
|
|
26774
|
+
EXCLUDE_BALANCE_CALCULATION: string;
|
|
26764
26775
|
EXCLUDE_FROM_HASH: string;
|
|
26765
26776
|
EXCLUDE_FROM_INVOICE_CHECK: string;
|
|
26766
26777
|
EXCLUDE_INVOICE_CHECK: string;
|
|
@@ -26885,6 +26896,8 @@ export declare class Dictionaries {
|
|
|
26885
26896
|
FIELD_TYPE: string;
|
|
26886
26897
|
FIFO: string;
|
|
26887
26898
|
FIFOLIFO: string;
|
|
26899
|
+
FIRST_POSTING: string;
|
|
26900
|
+
FIRST_SETTLEMENT_NR: string;
|
|
26888
26901
|
FILE2: string;
|
|
26889
26902
|
FILE: string;
|
|
26890
26903
|
FILENAME_CONTAINS_NO_EXTENSION: string;
|
|
@@ -27860,6 +27873,7 @@ export declare class Dictionaries {
|
|
|
27860
27873
|
MAX_ORDER_AMOUNT: string;
|
|
27861
27874
|
MAX_RESPONSE_TIME: string;
|
|
27862
27875
|
MAX_RESPONSE_TIME_MINUTES: string;
|
|
27876
|
+
MAX_SALES_DISCOUNT_PERC: string;
|
|
27863
27877
|
MAX_SEARCH_RESULTS: string;
|
|
27864
27878
|
MAX_STATE_DURATION: string;
|
|
27865
27879
|
MAX_STOCK: string;
|
|
@@ -28147,6 +28161,7 @@ export declare class Dictionaries {
|
|
|
28147
28161
|
MESSAGE_POS_GROUP_WAREHOUSE_EMPTY: string;
|
|
28148
28162
|
MESSAGE_POS_GROUP_WAREWHOUSE_EMPTY: string;
|
|
28149
28163
|
MESSAGE_POS_TRANS_NOT_SAVED: string;
|
|
28164
|
+
MESSAGE_PRESET_NAME_EXISTS: string;
|
|
28150
28165
|
MESSAGE_PRIMARY: string;
|
|
28151
28166
|
MESSAGE_PROCEED_IN_TRANSACTION: string;
|
|
28152
28167
|
MESSAGE_QUESTION_SEND_MESSAGES: string;
|
|
@@ -28893,6 +28908,7 @@ export declare class Dictionaries {
|
|
|
28893
28908
|
ORDER_DEFINITIVE: string;
|
|
28894
28909
|
ORDER_DELIVERY_STATUS_NOT_COMPLETE: string;
|
|
28895
28910
|
ORDER_DETAILS: string;
|
|
28911
|
+
ORDER_DISCOUNT: string;
|
|
28896
28912
|
ORDER_DISCOUNTS: string;
|
|
28897
28913
|
ORDER_DISCOUNT_AMOUNT: string;
|
|
28898
28914
|
ORDER_DISCOUNT_GREATER_THAN_ORDER_PRICE: string;
|
|
@@ -28902,6 +28918,7 @@ export declare class Dictionaries {
|
|
|
28902
28918
|
ORDER_FOR_WAREHOUSE: string;
|
|
28903
28919
|
ORDER_FULLY_PAID: string;
|
|
28904
28920
|
ORDER_DEPOSIT_FULLY_PAID: string;
|
|
28921
|
+
ORDER_DIRECT_SELL: string;
|
|
28905
28922
|
ORDER_GROSS: string;
|
|
28906
28923
|
ORDER_HAS_PLANNING_REQUESTED_AT_LSP: string;
|
|
28907
28924
|
ORDER_HISTORY: string;
|
|
@@ -30399,6 +30416,7 @@ export declare class Dictionaries {
|
|
|
30399
30416
|
SEARCH_QUOTATION: string;
|
|
30400
30417
|
SEARCH_QUOTATIONS: string;
|
|
30401
30418
|
SEARCH_RELATION_DESCRIPTION: string;
|
|
30419
|
+
SEARCH_RELATION_TRANS_AMOUNT: string;
|
|
30402
30420
|
SEARCH_RESULTS: string;
|
|
30403
30421
|
SEARCH_SALESORDERS: string;
|
|
30404
30422
|
SEARCH_SALESPERSON: string;
|