@colijnit/sharedcomponents 258.1.2 → 258.1.4
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/358.645812766f7a400d0d38.js +1 -0
- package/3rdpartylicenses.txt +2222 -0
- package/863.171601b3075f2e971ba6.js +1 -0
- package/977.bd6291f9ee6f6ddf91f1.js +1 -0
- package/bundles/colijnit-sharedcomponents.umd.js +31 -5
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/activity-list/activity-list.component.js +18 -2
- package/esm2015/lib/components/activity-overview-component/component-activity-overview.component.js +23 -3
- package/esm2015/lib/components/stock/components/stock-location/components/stock-location-popup/stock-location-popup.component.js +2 -2
- package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
- package/favicon.ico +0 -0
- package/fesm2015/colijnit-sharedcomponents.js +42 -6
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/index.html +12 -0
- package/lib/components/activity-list/activity-list.component.d.ts +3 -0
- package/lib/components/activity-list/style/_layout.scss +18 -5
- package/lib/components/activity-overview-component/component-activity-overview.component.d.ts +3 -0
- package/lib/components/activity-overview-component/style/_layout.scss +41 -2
- package/lib/res/dictionary/dictionaries.d.ts +14 -0
- package/main.aa2aefc9b07fe8edafae.js +1 -0
- package/package.json +1 -1
- package/polyfills.907fe9d1887c5de17993.js +1 -0
- package/runtime.4c41e3e4c4a9d84185f4.js +1 -0
- package/styles.706c0dbdf70ab780f209.css +1 -0
package/index.html
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head>
|
|
2
|
+
<meta charset="utf-8">
|
|
3
|
+
<title>Sharedcomponents</title>
|
|
4
|
+
<base href="/">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
7
|
+
<style>@charset "UTF-8";@import url(https://fonts.googleapis.com/css2?family=Public+Sans:wght@100;200;300;400;500;600;800;900&display=swap);@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;800;900&display=swap);@import url(https://fonts.googleapis.com/css2?family=Public+Sans&display=swap);body,html{margin:0;overflow:hidden}body,html{width:100%;height:100%}*{box-sizing:border-box;padding:0;margin:0}</style><link rel="stylesheet" href="styles.706c0dbdf70ab780f209.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.706c0dbdf70ab780f209.css"></noscript></head>
|
|
8
|
+
<body>
|
|
9
|
+
<app-root></app-root>
|
|
10
|
+
<script src="runtime.4c41e3e4c4a9d84185f4.js" defer></script><script src="polyfills.907fe9d1887c5de17993.js" defer></script><script src="main.aa2aefc9b07fe8edafae.js" defer></script>
|
|
11
|
+
|
|
12
|
+
</body></html>
|
|
@@ -34,6 +34,7 @@ export declare class ActivityListComponent implements OnInit, ScreenConfigAdapte
|
|
|
34
34
|
showActivityPopup: Boolean;
|
|
35
35
|
currentActivityDocuments: CoDocument[];
|
|
36
36
|
private _activities;
|
|
37
|
+
private activityColorMap;
|
|
37
38
|
constructor(iconCacheService: IconCacheService, _dictionaryService: SharedComponentsDictionaryService);
|
|
38
39
|
ngOnInit(): Promise<void>;
|
|
39
40
|
getRelationKind(author: RelationSmallObject): RelationKind;
|
|
@@ -45,4 +46,6 @@ export declare class ActivityListComponent implements OnInit, ScreenConfigAdapte
|
|
|
45
46
|
showWorkedTime(activity: Activity): boolean;
|
|
46
47
|
getWorkedTime(activity: Activity): number;
|
|
47
48
|
openActivityPopup(activity: Activity): void;
|
|
49
|
+
getRandomColor(): string;
|
|
50
|
+
getColorForActivity(activity: Activity): string;
|
|
48
51
|
}
|
|
@@ -13,8 +13,6 @@
|
|
|
13
13
|
flex-direction: column;
|
|
14
14
|
row-gap: 5px;
|
|
15
15
|
width: 100%;
|
|
16
|
-
max-width: 800px;
|
|
17
|
-
|
|
18
16
|
.activity-display-title {
|
|
19
17
|
display: flex;
|
|
20
18
|
flex-direction: row;
|
|
@@ -28,6 +26,9 @@
|
|
|
28
26
|
height: 20px;
|
|
29
27
|
padding-left: 10px;
|
|
30
28
|
}
|
|
29
|
+
span {
|
|
30
|
+
font-size: 10px;
|
|
31
|
+
}
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
.activity-display-content {
|
|
@@ -35,20 +36,32 @@
|
|
|
35
36
|
flex-direction: column;
|
|
36
37
|
border-radius: 5px;
|
|
37
38
|
background-color: $sc-color-light;
|
|
38
|
-
padding:
|
|
39
|
+
padding: 10px 5px;
|
|
39
40
|
color: #000;
|
|
40
|
-
box-shadow: 0px 2px 4px 0px #0000001A;
|
|
41
41
|
.co-icon {
|
|
42
42
|
svg {
|
|
43
|
-
fill:
|
|
43
|
+
fill: $sc-color-font;
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
.activity-display-body {
|
|
47
47
|
display: flex;
|
|
48
48
|
align-items: center;
|
|
49
|
+
gap: 15px;
|
|
49
50
|
span {
|
|
50
51
|
font-size: 12px;
|
|
51
52
|
}
|
|
53
|
+
.activity-icon {
|
|
54
|
+
border-radius: 100%;
|
|
55
|
+
display: flex;
|
|
56
|
+
align-items: center;
|
|
57
|
+
justify-content: center;
|
|
58
|
+
width: 30px;
|
|
59
|
+
height: 30px;
|
|
60
|
+
.co-icon {
|
|
61
|
+
width: 18px;
|
|
62
|
+
height: 18px;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
52
65
|
}
|
|
53
66
|
|
|
54
67
|
.activity-display-footer {
|
package/lib/components/activity-overview-component/component-activity-overview.component.d.ts
CHANGED
|
@@ -16,6 +16,9 @@ export declare class ComponentActivityOverviewComponent extends BaseActivityOver
|
|
|
16
16
|
statusIcon: Icon;
|
|
17
17
|
taskIcon: Icon;
|
|
18
18
|
showClass(): boolean;
|
|
19
|
+
private activityColorMap;
|
|
19
20
|
constructor(iconCacheService: IconCacheService, dialogService: CoreDialogService, dictionaryService: SharedComponentsDictionaryService, sharedService: SharedService);
|
|
20
21
|
getActivityIcon(activity: Activity): Icon;
|
|
22
|
+
getRandomColor(): string;
|
|
23
|
+
getColorForActivity(activity: Activity): string;
|
|
21
24
|
}
|
|
@@ -11,9 +11,28 @@
|
|
|
11
11
|
.overview-wrapper {
|
|
12
12
|
display: flex;
|
|
13
13
|
flex-direction: row;
|
|
14
|
-
align-items:
|
|
14
|
+
align-items: flex-start;
|
|
15
15
|
gap: 30px;
|
|
16
16
|
justify-content: space-between;
|
|
17
|
+
.overview-current {
|
|
18
|
+
display: flex;
|
|
19
|
+
align-items: center;
|
|
20
|
+
gap: 15px;
|
|
21
|
+
.overview-wrapper-icons {
|
|
22
|
+
.activity-icon {
|
|
23
|
+
border-radius: 100%;
|
|
24
|
+
display: flex;
|
|
25
|
+
align-items: center;
|
|
26
|
+
justify-content: center;
|
|
27
|
+
width: 30px;
|
|
28
|
+
height: 30px;
|
|
29
|
+
.co-icon {
|
|
30
|
+
width: 18px;
|
|
31
|
+
height: 18px;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
17
36
|
}
|
|
18
37
|
.overview-wrapper-icons {
|
|
19
38
|
display: flex;
|
|
@@ -33,7 +52,6 @@
|
|
|
33
52
|
color: #FFF;
|
|
34
53
|
}
|
|
35
54
|
.activity-label {
|
|
36
|
-
min-height: 20px;
|
|
37
55
|
display: flex;
|
|
38
56
|
align-items: center;
|
|
39
57
|
}
|
|
@@ -149,6 +167,22 @@
|
|
|
149
167
|
color: #171721;
|
|
150
168
|
}
|
|
151
169
|
.overview-task-wrapper {
|
|
170
|
+
display: flex;
|
|
171
|
+
align-items: center;
|
|
172
|
+
gap: 15px;
|
|
173
|
+
width: 100%;
|
|
174
|
+
.activity-icon {
|
|
175
|
+
border-radius: 100%;
|
|
176
|
+
display: flex;
|
|
177
|
+
align-items: center;
|
|
178
|
+
justify-content: center;
|
|
179
|
+
width: 30px;
|
|
180
|
+
height: 30px;
|
|
181
|
+
.co-icon {
|
|
182
|
+
width: 18px;
|
|
183
|
+
height: 18px;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
152
186
|
.button-trigger {
|
|
153
187
|
background: #5FDCB399;
|
|
154
188
|
border: 1px solid #5FDCB3;
|
|
@@ -170,6 +204,11 @@
|
|
|
170
204
|
.task-box {
|
|
171
205
|
display: flex;
|
|
172
206
|
flex-direction: column;
|
|
207
|
+
.task-current-state {
|
|
208
|
+
display: flex;
|
|
209
|
+
align-items: center;
|
|
210
|
+
gap: 15px;
|
|
211
|
+
}
|
|
173
212
|
}
|
|
174
213
|
}
|
|
175
214
|
}
|
|
@@ -1980,6 +1980,7 @@ export declare class Dictionaries {
|
|
|
1980
1980
|
COMMISSION_ADVICE: string;
|
|
1981
1981
|
COMMISSION_CODE: string;
|
|
1982
1982
|
COMMISSION_CODE_WAREHOUSE_SELECTION: string;
|
|
1983
|
+
WAREHOUSE_SELECTION: string;
|
|
1983
1984
|
COMMISSSION_CODE_ONE_PURCHASE: string;
|
|
1984
1985
|
CONFIGURATION_BOX: string;
|
|
1985
1986
|
CONFIGURATION_BUILDER: string;
|
|
@@ -3235,6 +3236,7 @@ export declare class Dictionaries {
|
|
|
3235
3236
|
UNDELIVERED_PURCHASE: string;
|
|
3236
3237
|
UNDERLYING_OPVS: string;
|
|
3237
3238
|
UNDERSTOOD_DONT_SHOW_AGAIN: string;
|
|
3239
|
+
UNDO: string;
|
|
3238
3240
|
UNDO_DELETE: string;
|
|
3239
3241
|
UNDO_DELIVERY: string;
|
|
3240
3242
|
REGISTER_ILLNESS: string;
|
|
@@ -4886,6 +4888,7 @@ export declare class Dictionaries {
|
|
|
4886
4888
|
BATCH_INVOICE: string;
|
|
4887
4889
|
BATCH_ORDER_CONFIRMATION: string;
|
|
4888
4890
|
BATCH_PURCHASE_ORDER_FORM: string;
|
|
4891
|
+
BATCH_DELIVERY_NOTES: string;
|
|
4889
4892
|
BCC: string;
|
|
4890
4893
|
BEFORE_DATE: string;
|
|
4891
4894
|
BEGIN_BOOK: string;
|
|
@@ -6182,6 +6185,7 @@ export declare class Dictionaries {
|
|
|
6182
6185
|
SEARCH_BUYORDERS: string;
|
|
6183
6186
|
SEARCH_BY_ARTICLENUMBER_NAME_OR_DESCRIPTION: string;
|
|
6184
6187
|
SEARCH_BY_ARTICLENUMBER_OR_DESCRIPTION: string;
|
|
6188
|
+
SEARCH_BY_OPTION_VALUE: string;
|
|
6185
6189
|
SEARCH_CATALOGUE: string;
|
|
6186
6190
|
SEARCH_CITY: string;
|
|
6187
6191
|
SEARCH_CODE: string;
|
|
@@ -7686,11 +7690,13 @@ export declare class Dictionaries {
|
|
|
7686
7690
|
NOT_BEFORE: string;
|
|
7687
7691
|
NOT_BLOCKED: string;
|
|
7688
7692
|
NOT_COMPLETE: string;
|
|
7693
|
+
NOT_CHECKED: string;
|
|
7689
7694
|
NOT_COMPLETELY_ALLOCATED: string;
|
|
7690
7695
|
NOT_COMPLETELY_ASSIGNED: string;
|
|
7691
7696
|
NOT_COMPLETELY_SIGNED_IN: string;
|
|
7692
7697
|
NOT_COMPLETE_ORDERS: string;
|
|
7693
7698
|
NOT_DEFINITE: string;
|
|
7699
|
+
NOT_DELIVERED: string;
|
|
7694
7700
|
NOT_ENOUGH_CONTAINER_VOLUME: string;
|
|
7695
7701
|
NOT_EXPIRED: string;
|
|
7696
7702
|
NOT_FOUND: string;
|
|
@@ -11904,6 +11910,7 @@ export declare class Dictionaries {
|
|
|
11904
11910
|
AMOUNT_OUTSTANDING_CREDITORS: string;
|
|
11905
11911
|
AMOUNT_OUTSTANDING_DEBTORS: string;
|
|
11906
11912
|
AMOUNT_PICKED: string;
|
|
11913
|
+
AMOUNT_PRE_RECEIVED: string;
|
|
11907
11914
|
AMOUNT_PRODUCTS: string;
|
|
11908
11915
|
AMOUNT_PURCHASE: string;
|
|
11909
11916
|
AMOUNT_PURCHASED: string;
|
|
@@ -12206,6 +12213,7 @@ export declare class Dictionaries {
|
|
|
12206
12213
|
BATCH_INVOICE: string;
|
|
12207
12214
|
BATCH_ORDER_CONFIRMATION: string;
|
|
12208
12215
|
BATCH_PURCHASE_ORDER_FORM: string;
|
|
12216
|
+
BATCH_DELIVERY_NOTES: string;
|
|
12209
12217
|
BCC: string;
|
|
12210
12218
|
BEFORE_DATE: string;
|
|
12211
12219
|
BEGIN_BOOK: string;
|
|
@@ -12731,6 +12739,7 @@ export declare class Dictionaries {
|
|
|
12731
12739
|
COMMISSION_ADVICE: string;
|
|
12732
12740
|
COMMISSION_CODE: string;
|
|
12733
12741
|
COMMISSION_CODE_WAREHOUSE_SELECTION: string;
|
|
12742
|
+
WAREHOUSE_SELECTION: string;
|
|
12734
12743
|
COMMISSSION_CODE_ONE_PURCHASE: string;
|
|
12735
12744
|
COMMONLY_USED_MANAGEMENT_OVERVIEWS: string;
|
|
12736
12745
|
COMMUNICATION: string;
|
|
@@ -14708,6 +14717,7 @@ export declare class Dictionaries {
|
|
|
14708
14717
|
KASPICK_PRINTER: string;
|
|
14709
14718
|
KEEP_LOCATION: string;
|
|
14710
14719
|
KEYBOARD_LAYOUT: string;
|
|
14720
|
+
KEYCLOAK_SYNC_ISSUE: string;
|
|
14711
14721
|
KILL_SESSION: string;
|
|
14712
14722
|
KIND: string;
|
|
14713
14723
|
KIND_OF_ART_DESCRIPTION: string;
|
|
@@ -15649,7 +15659,9 @@ export declare class Dictionaries {
|
|
|
15649
15659
|
NOT_COMPLETE: string;
|
|
15650
15660
|
NOT_COMPLETELY_ALLOCATED: string;
|
|
15651
15661
|
NOT_COMPLETE_ORDERS: string;
|
|
15662
|
+
NOT_CHECKED: string;
|
|
15652
15663
|
NOT_DEFINITE: string;
|
|
15664
|
+
NOT_DELIVERED: string;
|
|
15653
15665
|
NOT_ENOUGH_CONTAINER_VOLUME: string;
|
|
15654
15666
|
NOT_EXPIRED: string;
|
|
15655
15667
|
NOT_FOUND: string;
|
|
@@ -17485,6 +17497,7 @@ export declare class Dictionaries {
|
|
|
17485
17497
|
SEARCH_BUYORDERS: string;
|
|
17486
17498
|
SEARCH_BY_ARTICLENUMBER_NAME_OR_DESCRIPTION: string;
|
|
17487
17499
|
SEARCH_BY_ARTICLENUMBER_OR_DESCRIPTION: string;
|
|
17500
|
+
SEARCH_BY_OPTION_VALUE: string;
|
|
17488
17501
|
SEARCH_FILTER: string;
|
|
17489
17502
|
SEARCH_CATALOGUE: string;
|
|
17490
17503
|
SEARCH_CODE: string;
|
|
@@ -18588,6 +18601,7 @@ export declare class Dictionaries {
|
|
|
18588
18601
|
UNDELIVERED_PURCHASE: string;
|
|
18589
18602
|
UNDERLYING_OPVS: string;
|
|
18590
18603
|
UNDERSTOOD_DONT_SHOW_AGAIN: string;
|
|
18604
|
+
UNDO: string;
|
|
18591
18605
|
UNDO_DELETE: string;
|
|
18592
18606
|
UNDO_RETURNS: string;
|
|
18593
18607
|
UNDO_DELIVERY: string;
|