@colijnit/sharedcomponents 259.1.18 → 259.1.20
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 +76 -17
- 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/task-creator/task-creator.component.js +108 -74
- package/esm2015/lib/components/task-creator/task-creator.module.js +2 -2
- 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 +150 -83
- 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/task-creator/task-creator.component.d.ts +11 -0
- package/lib/components/tile-renderer/tile-render.component.d.ts +4 -0
- package/lib/res/dictionary/dictionaries.d.ts +20 -0
- package/package.json +2 -2
|
@@ -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
|
|
|
@@ -27,6 +27,10 @@ export declare class TaskCreatorComponent implements OnInit, ScreenConfigAdapter
|
|
|
27
27
|
remarkAndWorkKey: string;
|
|
28
28
|
taskKey: string;
|
|
29
29
|
workflowCategoryType: WorkflowCategoryType;
|
|
30
|
+
set allowRemarkCreation(allow: boolean);
|
|
31
|
+
set allowWorkCreation(allow: boolean);
|
|
32
|
+
set allowTaskCreation(allow: boolean);
|
|
33
|
+
allowEmailing: boolean;
|
|
30
34
|
activityCreated: EventEmitter<void>;
|
|
31
35
|
showClass(): boolean;
|
|
32
36
|
objectConfigName: string;
|
|
@@ -38,6 +42,9 @@ export declare class TaskCreatorComponent implements OnInit, ScreenConfigAdapter
|
|
|
38
42
|
decimals: number;
|
|
39
43
|
redErrorBackground: boolean;
|
|
40
44
|
optionCollection: IconListItem[];
|
|
45
|
+
remarkListItem: IconListItem;
|
|
46
|
+
workListItem: IconListItem;
|
|
47
|
+
taskListItem: IconListItem;
|
|
41
48
|
showFilesDialog: boolean;
|
|
42
49
|
documents: CoDocument[];
|
|
43
50
|
oldDocuments: CoDocument[];
|
|
@@ -54,8 +61,12 @@ export declare class TaskCreatorComponent implements OnInit, ScreenConfigAdapter
|
|
|
54
61
|
workDescription: string;
|
|
55
62
|
taskName: string;
|
|
56
63
|
taskDescription: string;
|
|
64
|
+
private _allowRemarkCreation;
|
|
65
|
+
private _allowWorkCreation;
|
|
66
|
+
private _allowTaskCreation;
|
|
57
67
|
constructor(iconService: IconCacheService, dictionaryService: SharedComponentsDictionaryService, sharedService: SharedService, _dialogService: CoreDialogService, _formMasterService: FormMasterService);
|
|
58
68
|
ngOnInit(): Promise<void>;
|
|
69
|
+
setupOptionCollection(): void;
|
|
59
70
|
itemSelected(item: IconListItem): void;
|
|
60
71
|
openAttachmentDialog(): void;
|
|
61
72
|
attachmentDialogClosed(): void;
|
|
@@ -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;
|
|
@@ -24581,9 +24589,12 @@ export declare class Dictionaries {
|
|
|
24581
24589
|
ALLOW_OPEN_ABSENCEFILE: string;
|
|
24582
24590
|
ALLOW_PART_DELIVERY: string;
|
|
24583
24591
|
ALLOW_PONTO_CONNECTION: string;
|
|
24592
|
+
ALLOW_REMARK_CREATE: string;
|
|
24584
24593
|
ALLOW_ROTATION: string;
|
|
24585
24594
|
ALLOW_SIDEBAR: string;
|
|
24586
24595
|
ALLOW_STORAGE_DECOUPLING: string;
|
|
24596
|
+
ALLOW_TASK_CREATE: string;
|
|
24597
|
+
ALLOW_WORK_CREATE: string;
|
|
24587
24598
|
ALL_ADDRESSES: string;
|
|
24588
24599
|
ALL_AVAILABLE_STOCK_RESERVED_DO_YOU_WANT_TO_TRY_AGAIN_PLEASE_CONFIRM: string;
|
|
24589
24600
|
ALL_CASH_DRAWERS: string;
|
|
@@ -24942,6 +24953,7 @@ export declare class Dictionaries {
|
|
|
24942
24953
|
BANK_BOOK: string;
|
|
24943
24954
|
BANK_RELATION: string;
|
|
24944
24955
|
BANK_STATEMENT_APPLICABLE_FOR_PAYMENT: string;
|
|
24956
|
+
BANK_STATEMENT_HOLDING_ACCOUNT: string;
|
|
24945
24957
|
BANK_STATEMENT_LEDGER_ACCOUNT_TO_LINK: string;
|
|
24946
24958
|
BANK_STATEMENT_LINK: string;
|
|
24947
24959
|
BANK_STATEMENT_SEARCH_COLUMN: string;
|
|
@@ -26762,6 +26774,7 @@ export declare class Dictionaries {
|
|
|
26762
26774
|
EXCLUDE_ALLOCATED_RETURNS: string;
|
|
26763
26775
|
EXCLUDE_ALLREADY_CONFIRMED: string;
|
|
26764
26776
|
EXCLUDE_ALREADY_ARRIVALDATE: string;
|
|
26777
|
+
EXCLUDE_BALANCE_CALCULATION: string;
|
|
26765
26778
|
EXCLUDE_FROM_HASH: string;
|
|
26766
26779
|
EXCLUDE_FROM_INVOICE_CHECK: string;
|
|
26767
26780
|
EXCLUDE_INVOICE_CHECK: string;
|
|
@@ -26886,6 +26899,8 @@ export declare class Dictionaries {
|
|
|
26886
26899
|
FIELD_TYPE: string;
|
|
26887
26900
|
FIFO: string;
|
|
26888
26901
|
FIFOLIFO: string;
|
|
26902
|
+
FIRST_POSTING: string;
|
|
26903
|
+
FIRST_SETTLEMENT_NR: string;
|
|
26889
26904
|
FILE2: string;
|
|
26890
26905
|
FILE: string;
|
|
26891
26906
|
FILENAME_CONTAINS_NO_EXTENSION: string;
|
|
@@ -27861,6 +27876,7 @@ export declare class Dictionaries {
|
|
|
27861
27876
|
MAX_ORDER_AMOUNT: string;
|
|
27862
27877
|
MAX_RESPONSE_TIME: string;
|
|
27863
27878
|
MAX_RESPONSE_TIME_MINUTES: string;
|
|
27879
|
+
MAX_SALES_DISCOUNT_PERC: string;
|
|
27864
27880
|
MAX_SEARCH_RESULTS: string;
|
|
27865
27881
|
MAX_STATE_DURATION: string;
|
|
27866
27882
|
MAX_STOCK: string;
|
|
@@ -28148,6 +28164,7 @@ export declare class Dictionaries {
|
|
|
28148
28164
|
MESSAGE_POS_GROUP_WAREHOUSE_EMPTY: string;
|
|
28149
28165
|
MESSAGE_POS_GROUP_WAREWHOUSE_EMPTY: string;
|
|
28150
28166
|
MESSAGE_POS_TRANS_NOT_SAVED: string;
|
|
28167
|
+
MESSAGE_PRESET_NAME_EXISTS: string;
|
|
28151
28168
|
MESSAGE_PRIMARY: string;
|
|
28152
28169
|
MESSAGE_PROCEED_IN_TRANSACTION: string;
|
|
28153
28170
|
MESSAGE_QUESTION_SEND_MESSAGES: string;
|
|
@@ -29754,6 +29771,7 @@ export declare class Dictionaries {
|
|
|
29754
29771
|
QUICK_OPTION_VALUE: string;
|
|
29755
29772
|
QUOTATION: string;
|
|
29756
29773
|
QUOTATIONS: string;
|
|
29774
|
+
QUOTATION_CART_OVERVIEW: string;
|
|
29757
29775
|
QUOTATION_COPIED: string;
|
|
29758
29776
|
QUOTATION_DATE: string;
|
|
29759
29777
|
QUOTATION_DATE_CUSTOMER: string;
|
|
@@ -30684,6 +30702,7 @@ export declare class Dictionaries {
|
|
|
30684
30702
|
SHOW_CONTAINER_INFO: string;
|
|
30685
30703
|
SHOW_CUSTOMIZED_ARTICLES: string;
|
|
30686
30704
|
SHOW_DASHBOARDS: string;
|
|
30705
|
+
SHOW_DELIVERY_CHECKOUT: string;
|
|
30687
30706
|
SHOW_DETAILS: string;
|
|
30688
30707
|
SHOW_FULLY_ACCEPTED: string;
|
|
30689
30708
|
SHOW_FULL_CONFIGURATION: string;
|
|
@@ -30704,6 +30723,7 @@ export declare class Dictionaries {
|
|
|
30704
30723
|
SHOW_OPTION_PRICES: string;
|
|
30705
30724
|
SHOW_ORDERS_WITHOUT_LINES: string;
|
|
30706
30725
|
SHOW_OUTSTANDING_ENTRIES: string;
|
|
30726
|
+
SHOW_PAYMENT_CHECKOUT: string;
|
|
30707
30727
|
SHOW_POPUP: string;
|
|
30708
30728
|
SHOW_PRIVACY_PREFERENCES: string;
|
|
30709
30729
|
SHOW_REGULAR_ARTICLES: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/sharedcomponents",
|
|
3
|
-
"version": "259.1.
|
|
3
|
+
"version": "259.1.20",
|
|
4
4
|
"private": false,
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"chart.js": "4.3.0",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@angular/core": ">=12.2.0",
|
|
12
12
|
"@colijnit/articleapi": ">=259.1.0",
|
|
13
13
|
"@colijnit/mainapi": ">=259.1.0",
|
|
14
|
-
"@colijnit/corecomponents_v12": ">=259.1.
|
|
14
|
+
"@colijnit/corecomponents_v12": ">=259.1.20",
|
|
15
15
|
"@colijnit/ioneconnector": ">=259.1.0",
|
|
16
16
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
17
17
|
"@colijnit/relationapi": ">=259.1.0",
|