@colijnit/sharedcomponents 259.1.18 → 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.
@@ -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: fixed;
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>;
@@ -47,6 +47,13 @@
47
47
  bottom: 0;
48
48
  right: 0;
49
49
  }
50
+ .plus-add-button {
51
+ position: absolute;
52
+ display: flex;
53
+ align-items: center;
54
+ top: -30px;
55
+ font-size: 10px;
56
+ }
50
57
 
51
58
  tile-render {
52
59
  height: auto;
@@ -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
 
@@ -119,8 +119,4 @@
119
119
  font-style: italic;
120
120
  }
121
121
  }
122
-
123
- .co-files-upload {
124
- display: none;
125
- }
126
122
  }
@@ -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;
@@ -24164,7 +24170,9 @@ export declare class Dictionaries {
24164
24170
  ACCOUNT_ACTIVE: string;
24165
24171
  ACCOUNT_AND_PRIVACY: string;
24166
24172
  ACCOUNT_BUSINESSES: string;
24173
+ ACCOUNT_CONTRA: string;
24167
24174
  ACCOUNT_DETAILS: string;
24175
+ ACCOUNT_DIFF: string;
24168
24176
  ACCOUNT_EXPLANATION: string;
24169
24177
  ACCOUNT_INACTIVE: string;
24170
24178
  ACCOUNT_INACTIVE_PW_NOT_SENT: string;
@@ -24942,6 +24950,7 @@ export declare class Dictionaries {
24942
24950
  BANK_BOOK: string;
24943
24951
  BANK_RELATION: string;
24944
24952
  BANK_STATEMENT_APPLICABLE_FOR_PAYMENT: string;
24953
+ BANK_STATEMENT_HOLDING_ACCOUNT: string;
24945
24954
  BANK_STATEMENT_LEDGER_ACCOUNT_TO_LINK: string;
24946
24955
  BANK_STATEMENT_LINK: string;
24947
24956
  BANK_STATEMENT_SEARCH_COLUMN: string;
@@ -26762,6 +26771,7 @@ export declare class Dictionaries {
26762
26771
  EXCLUDE_ALLOCATED_RETURNS: string;
26763
26772
  EXCLUDE_ALLREADY_CONFIRMED: string;
26764
26773
  EXCLUDE_ALREADY_ARRIVALDATE: string;
26774
+ EXCLUDE_BALANCE_CALCULATION: string;
26765
26775
  EXCLUDE_FROM_HASH: string;
26766
26776
  EXCLUDE_FROM_INVOICE_CHECK: string;
26767
26777
  EXCLUDE_INVOICE_CHECK: string;
@@ -26886,6 +26896,8 @@ export declare class Dictionaries {
26886
26896
  FIELD_TYPE: string;
26887
26897
  FIFO: string;
26888
26898
  FIFOLIFO: string;
26899
+ FIRST_POSTING: string;
26900
+ FIRST_SETTLEMENT_NR: string;
26889
26901
  FILE2: string;
26890
26902
  FILE: string;
26891
26903
  FILENAME_CONTAINS_NO_EXTENSION: string;
@@ -27861,6 +27873,7 @@ export declare class Dictionaries {
27861
27873
  MAX_ORDER_AMOUNT: string;
27862
27874
  MAX_RESPONSE_TIME: string;
27863
27875
  MAX_RESPONSE_TIME_MINUTES: string;
27876
+ MAX_SALES_DISCOUNT_PERC: string;
27864
27877
  MAX_SEARCH_RESULTS: string;
27865
27878
  MAX_STATE_DURATION: string;
27866
27879
  MAX_STOCK: string;
@@ -28148,6 +28161,7 @@ export declare class Dictionaries {
28148
28161
  MESSAGE_POS_GROUP_WAREHOUSE_EMPTY: string;
28149
28162
  MESSAGE_POS_GROUP_WAREWHOUSE_EMPTY: string;
28150
28163
  MESSAGE_POS_TRANS_NOT_SAVED: string;
28164
+ MESSAGE_PRESET_NAME_EXISTS: string;
28151
28165
  MESSAGE_PRIMARY: string;
28152
28166
  MESSAGE_PROCEED_IN_TRANSACTION: string;
28153
28167
  MESSAGE_QUESTION_SEND_MESSAGES: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/sharedcomponents",
3
- "version": "259.1.18",
3
+ "version": "259.1.19",
4
4
  "private": false,
5
5
  "dependencies": {
6
6
  "chart.js": "4.3.0",