@colijnit/relation 259.1.4 → 260.1.1

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.
Files changed (40) hide show
  1. package/README.md +24 -24
  2. package/bundles/colijnit-relation.umd.js +409 -228
  3. package/bundles/colijnit-relation.umd.js.map +1 -1
  4. package/colijnit-relation.d.ts +3 -1
  5. package/colijnit-relation.metadata.json +1 -1
  6. package/esm2015/colijnit-relation.js +4 -2
  7. package/esm2015/lib/component/relation/relation.component.js +26 -18
  8. package/esm2015/lib/component/relation/relation.module.js +8 -3
  9. package/esm2015/lib/component/relation-avatar/relation-avatar.component.js +8 -4
  10. package/esm2015/lib/component/relation-contact-options/relation-contact-option-list.component.js +23 -8
  11. package/esm2015/lib/component/relation-contact-options/relation-contact-option.component.js +13 -3
  12. package/esm2015/lib/component/relation-contact-options/relation-contact-options.component.js +10 -6
  13. package/esm2015/lib/component/relation-documents/relation-documents.component.js +97 -0
  14. package/esm2015/lib/component/relation-documents/relation-documents.module.js +24 -0
  15. package/esm2015/lib/component/relation-first-name/relation-first-name.component.js +14 -4
  16. package/esm2015/lib/component/relation-gender/relation-gender.component.js +8 -3
  17. package/esm2015/lib/component/relation-initials/relation-initials.component.js +14 -4
  18. package/esm2015/lib/component/relation-language/relation-language.component.js +14 -4
  19. package/esm2015/lib/component/relation-language/relation-language.module.js +4 -3
  20. package/esm2015/lib/component/relation-last-name/relation-last-name.component.js +14 -4
  21. package/esm2015/lib/component/relation-prefix-name/relation-prefix-name.component.js +14 -4
  22. package/esm2015/lib/component/relation-title/relation-title.component.js +14 -4
  23. package/esm2015/lib/component/relation-title/relation-title.module.js +4 -3
  24. package/esm2015/lib/enum/icon.enum.js +3 -1
  25. package/esm2015/lib/model/icon-svg.js +3 -1
  26. package/esm2015/lib/relation-version.js +3 -3
  27. package/esm2015/lib/res/dictionary/dictionaries.js +5 -5
  28. package/fesm2015/colijnit-relation.js +504 -284
  29. package/fesm2015/colijnit-relation.js.map +1 -1
  30. package/lib/component/relation/relation.component.d.ts +2 -0
  31. package/lib/component/relation-contact-options/relation-contact-option-list.component.d.ts +2 -0
  32. package/lib/component/relation-contact-options/relation-contact-option.component.d.ts +3 -0
  33. package/lib/component/relation-contact-options/style/_layout.scss +98 -44
  34. package/lib/component/relation-contact-options/style/_material-definition.scss +2 -1
  35. package/lib/component/relation-contact-options/style/_theme.scss +21 -0
  36. package/lib/component/relation-documents/relation-documents.component.d.ts +18 -0
  37. package/lib/component/relation-documents/relation-documents.module.d.ts +2 -0
  38. package/lib/enum/icon.enum.d.ts +2 -0
  39. package/lib/res/dictionary/dictionaries.d.ts +39 -0
  40. package/package.json +5 -5
@@ -8,6 +8,7 @@ import { RelationConnectorService } from '../../service/relation-connector.servi
8
8
  import { Title } from "@colijnit/mainapi/build/model/title.bo";
9
9
  import { IconCacheService } from "../../service/icon-cache.service";
10
10
  import { Icon } from "../../enum/icon.enum";
11
+ import { RelmanCfgName } from '../../enum/relman-cfg-name.enum';
11
12
  export declare class RelationComponent implements OnInit, OnDestroy {
12
13
  protected relationEventService: RelationEventService;
13
14
  private _translationService;
@@ -16,6 +17,7 @@ export declare class RelationComponent implements OnInit, OnDestroy {
16
17
  private _relationService;
17
18
  iconCacheService: IconCacheService;
18
19
  readonly icons: typeof Icon;
20
+ readonly relmanCfgNames: typeof RelmanCfgName;
19
21
  loadRelationFromLoginResponse: boolean;
20
22
  forceReadOnly: boolean;
21
23
  customerPortal: boolean;
@@ -18,5 +18,7 @@ export declare class RelationContactOptionListComponent {
18
18
  */
19
19
  handleOptionMouseDown(event: MouseEvent): void;
20
20
  handleOptionMouseUp(event: MouseEvent): void;
21
+ handleSequenceUp(option: ContactOption): void;
22
+ handleSequenceDown(option: ContactOption): void;
21
23
  private _reArrangeSequences;
22
24
  }
@@ -18,10 +18,13 @@ export declare class RelationContactOptionComponent implements OnInit {
18
18
  screenConfigObjectName: string;
19
19
  saveClick: EventEmitter<ContactOption>;
20
20
  deleteClick: EventEmitter<ContactOption>;
21
+ sequenceChangeUp: EventEmitter<ContactOption>;
22
+ sequenceChangeDown: EventEmitter<ContactOption>;
21
23
  showClass: boolean;
22
24
  iconType: Icon;
23
25
  label: string;
24
26
  input: InputTextComponent;
27
+ showSequenceArrows: boolean;
25
28
  private _model;
26
29
  private _type;
27
30
  constructor(iconCacheService: IconCacheService, _relationService: RelationService);
@@ -2,9 +2,16 @@
2
2
  .co-relation-contact-options {
3
3
  font-family: $re-co-relation-contact-options-font-family;
4
4
  font-size: $re-co-relation-contact-options-font-size;
5
+ display: flex;
6
+ flex-wrap: wrap;
7
+ gap: $re-co-relation-contact-options-gap;
5
8
  .relation-option-wrapper {
6
9
  margin: 0 0 10px 0;
10
+ width: calc(50% - 5px);
11
+ flex-direction: column-reverse;
12
+ display: flex;
7
13
  }
14
+
8
15
  .relation-contact-options-label {
9
16
  font-family: $re-co-relation-contact-options-label-font-family;
10
17
  font-size: $re-co-relation-contact-options-label-font-size;
@@ -15,97 +22,141 @@
15
22
  align-items: center;
16
23
  margin: $re-co-relation-contact-options-label-margin;
17
24
  gap: $re-co-relation-contact-options-label-gap;
25
+ width: 100%;
18
26
  .co-icon {
19
27
  cursor: pointer;
20
28
  height: $re-co-relation-contact-options-label-icon-size;
21
29
  width: $re-co-relation-contact-options-label-icon-size;
30
+
22
31
  svg {
23
32
  fill: #1A73E8;
24
33
  }
34
+
25
35
  svg [fill] {
26
36
  fill: #1A73E8;
27
37
  }
28
38
  }
39
+
29
40
  .relation-contact-options-type-label {
30
41
  font-size: 12px;
31
42
  color: #1A73E8;
32
43
  cursor: pointer;
33
44
  }
34
45
  }
46
+
35
47
  .contact-option-wrapper {
36
48
  display: flex;
37
- flex-direction: row;
49
+ flex-direction: column;
38
50
  gap: $re-co-relation-contact-options-type-gap;
39
51
  }
52
+
40
53
  &.adding-email-option, .adding-phone-option, .adding-other-option {
41
54
  .co-relation-contact-option:not(.new-contact-option) {
42
55
  opacity: 0.5;
43
56
  pointer-events: none;
44
57
  }
45
58
  }
46
- }
47
- .co-relation-contact-option {
48
- font-family: $re-co-relation-contact-options-font-family;
49
- font-size: $re-co-relation-contact-options-font-size;
50
- display: flex;
51
- align-items: center;
52
- gap: $re-co-relation-contact-option-gap;
53
- position: relative;
54
- width: 50%;
55
- .co-input-text {
59
+ .co-relation-contact-option {
60
+ font-family: $re-co-relation-contact-options-font-family;
61
+ font-size: $re-co-relation-contact-options-font-size;
62
+ display: flex;
63
+ align-items: center;
64
+ gap: $re-co-relation-contact-option-gap;
65
+ position: relative;
56
66
  width: 100%;
57
- }
58
- .co-icon {
59
- cursor: pointer;
60
- height: $re-co-relation-contact-option-delete-icon-size;
61
- width: $re-co-relation-contact-option-delete-icon-size;
62
- &.relation-delete {
63
- width: 10px;
64
- height: 10px;
65
- position: absolute;
66
- top: 5px;
67
- right: 5px;
68
- display: none;
69
- & svg {
70
- fill: #000;
67
+
68
+ .co-input-text {
69
+ width: 100%;
70
+ }
71
+
72
+ .co-icon {
73
+ cursor: pointer;
74
+ height: $re-co-relation-contact-option-delete-icon-size;
75
+ width: $re-co-relation-contact-option-delete-icon-size;
76
+
77
+ &.relation-delete {
78
+ width: 10px;
79
+ height: 10px;
80
+ position: absolute;
81
+ top: 5px;
82
+ right: 5px;
83
+ display: none;
84
+
85
+ & svg {
86
+ fill: #000;
87
+ }
88
+
89
+ & svg [fill] {
90
+ fill: #000;
91
+ }
71
92
  }
72
- & svg [fill] {
73
- fill: #000;
93
+ }
94
+
95
+ &.new-contact-option {
96
+ margin: $re-co-relation-contact-options-type-new-option-margin;
97
+
98
+ &:hover {
99
+ .co-icon {
100
+ &.relation-delete {
101
+ display: none;
102
+ }
103
+ }
74
104
  }
75
105
  }
76
- }
77
- &.new-contact-option {
78
- margin: $re-co-relation-contact-options-type-new-option-margin;
106
+
79
107
  &:hover {
80
108
  .co-icon {
81
109
  &.relation-delete {
82
- display: none;
110
+ display: block;
83
111
  }
84
112
  }
85
113
  }
86
114
  }
87
- &:hover {
88
- .co-icon {
89
- &.relation-delete {
90
- display: block;
91
- }
92
- }
93
- }
94
115
  }
116
+
95
117
  .relation-contact-option-sequence {
96
118
  border-radius: 50%;
97
119
  position: absolute;
98
- z-index: 1;
99
- top: 2px;
100
- left: 2px;
101
- height: 15px;
102
- width: 15px;
103
- font-size: 10px;
120
+ z-index: 2;
121
+ top: -4px;
122
+ left: -4px;
123
+ height: 13px;
124
+ width: 13px;
125
+ font-size: 9px;
126
+ font-family: 'Public Sans', $re-co-relation-contact-options-font-family;
104
127
  align-items: center;
105
128
  display: flex;
106
129
  justify-content: center;
107
130
  }
108
131
 
132
+ .arrows {
133
+ border-radius: 50%;
134
+ transition: all 0.15s;
135
+ position: absolute;
136
+ z-index: 2;
137
+ left: 50%;
138
+
139
+ &.up {
140
+ top: -25px;
141
+
142
+ svg {
143
+ transform: rotate(-90deg);
144
+ }
145
+ }
146
+
147
+ &.down {
148
+ bottom: -25px;
149
+
150
+ svg {
151
+ transform: rotate(90deg);
152
+ }
153
+ }
154
+
155
+ &:hover {
156
+ scale: 1.25;
157
+ }
158
+ }
159
+
109
160
  .draggable-contact-option.cdk-drag-preview, can-drag.cdk-drag-preview {
110
161
  box-sizing: border-box;
111
162
  border-radius: 4px;
@@ -141,17 +192,20 @@
141
192
  border-style: $re-co-relation-contact-options-type-popup-border-style;
142
193
  border-width: $re-co-relation-contact-options-type-popup-border-width;
143
194
  box-shadow: $re-co-relation-contact-options-type-popup-box-shadow;
195
+
144
196
  .other-types-wrapper {
145
197
  cursor: pointer;
146
198
  display: flex;
147
199
  align-items: center;
148
200
  gap: $re-co-relation-contact-options-type-popup-gap;
149
201
  padding: $re-co-relation-contact-options-type-popup-item-padding;
202
+
150
203
  .co-icon {
151
204
  height: $re-co-relation-contact-options-type-popup-icon-size;
152
205
  width: $re-co-relation-contact-options-type-popup-icon-size;
153
206
  }
154
207
  }
208
+
155
209
  .other-type-label {
156
210
 
157
211
  }
@@ -5,12 +5,13 @@ $re-co-relation-contact-options-font-color: $re-color-font !default;
5
5
  $re-co-relation-contact-options-label-font-family: $re-font-family !default;
6
6
  $re-co-relation-contact-options-label-font-size: $re-font-size !default;
7
7
 
8
+ $re-co-relation-contact-options-gap: 10px !default;
8
9
  $re-co-relation-contact-options-label-margin: 0 !default;
9
10
  $re-co-relation-contact-options-label-gap: 0 !default;
10
11
  $re-co-relation-contact-options-label-icon-size: 20px !default;
11
12
  $re-co-relation-contact-options-label-icon-color: $re-color-action !default;
12
13
  $re-co-relation-contact-options-type-gap: 5px !default;
13
- $re-co-relation-contact-options-type-new-option-margin: 0 !default;
14
+ $re-co-relation-contact-options-type-new-option-margin: 20px 0 0 0 !default;
14
15
 
15
16
  $re-co-relation-contact-options-sequence-background-color: #e85152 !default;
16
17
  $re-co-relation-contact-options-sequence-color: #f7fafa !default;
@@ -3,41 +3,62 @@
3
3
  }
4
4
  .co-relation-contact-option {
5
5
  color: $re-co-relation-contact-options-font-color;
6
+
6
7
  .co-icon {
7
8
  svg {
8
9
  fill: $re-co-relation-contact-options-label-icon-color;
9
10
  }
11
+
10
12
  [fill] {
11
13
  fill: $re-co-relation-contact-options-label-icon-color;
12
14
  }
13
15
  }
16
+
17
+ .arrows {
18
+ background-color: $re-co-relation-contact-options-sequence-background-color;
19
+
20
+ svg {
21
+ fill: $re-co-relation-contact-options-sequence-color;
22
+ }
23
+
24
+ [fill] {
25
+ fill: $re-co-relation-contact-options-sequence-color;
26
+ }
27
+ }
14
28
  }
15
29
  .relation-contact-option-sequence {
16
30
  background-color: $re-co-relation-contact-options-sequence-background-color;
17
31
  color: $re-co-relation-contact-options-sequence-color;
18
32
  }
33
+
19
34
  .relation-contact-options-other-types-popup-content {
20
35
  background-color: $re-co-relation-contact-options-type-popup-background-color;
21
36
  border-color: $re-co-relation-contact-options-type-popup-border-color;
22
37
  color: $re-co-relation-contact-options-type-popup-color;
38
+
23
39
  .other-types-wrapper {
24
40
  background-color: $re-co-relation-contact-options-type-popup-item-background-color;
25
41
  color: $re-co-relation-contact-options-type-popup-item-color;
42
+
26
43
  .co-icon {
27
44
  svg {
28
45
  fill: $re-co-relation-contact-options-type-popup-item-color;
29
46
  }
47
+
30
48
  [fill] {
31
49
  fill: $re-co-relation-contact-options-type-popup-item-color;
32
50
  }
33
51
  }
52
+
34
53
  &:hover {
35
54
  background-color: $re-co-relation-contact-options-type-popup-item-hover-background-color;
36
55
  color: $re-co-relation-contact-options-type-popup-item-hover-color;
56
+
37
57
  .co-icon {
38
58
  svg {
39
59
  fill: $re-co-relation-contact-options-type-popup-item-hover-color;
40
60
  }
61
+
41
62
  [fill] {
42
63
  fill: $re-co-relation-contact-options-type-popup-item-hover-color;
43
64
  }
@@ -0,0 +1,18 @@
1
+ import { RelationAnyType } from "@colijnit/relationapi/build/model/relation-any-type";
2
+ import { CoDocument } from "@colijnit/mainapi/build/model/co-document.bo";
3
+ import { Icon } from "../../enum/icon.enum";
4
+ import { IconCacheService } from "../../service/icon-cache.service";
5
+ export declare class RelationDocumentsComponent {
6
+ iconCacheService: IconCacheService;
7
+ readonly icons: typeof Icon;
8
+ private _relation;
9
+ set relation(value: RelationAnyType);
10
+ get relation(): RelationAnyType;
11
+ get documentsCollection(): CoDocument[];
12
+ constructor(iconCacheService: IconCacheService);
13
+ showDocument(relDocument: CoDocument): void;
14
+ downloadDocument(relDocument: CoDocument, event: MouseEvent): Promise<void>;
15
+ getDocumentFileExtension(relDocument: CoDocument): string;
16
+ formatDate(date: string | Date): string;
17
+ private documentHasKlantportaalTag;
18
+ }
@@ -0,0 +1,2 @@
1
+ export declare class RelationDocumentsModule {
2
+ }
@@ -3,7 +3,9 @@ export declare enum Icon {
3
3
  ArrowPointRight = "arrow_point_right",
4
4
  CheckDuotone = "check_duotone",
5
5
  Crossskinny = "crossskinny",
6
+ DownloadRegular = "download_regular",
6
7
  Email = "email",
8
+ EyeRegular = "eye_regular",
7
9
  Mobile = "mobile",
8
10
  PencilRegular = "pencil_regular",
9
11
  PencilRoundOpen = "pencil_round_open",
@@ -6869,6 +6869,7 @@ export declare class Dictionaries {
6869
6869
  PRIVATE_PERSON: string;
6870
6870
  PRIVATE_PHONE: string;
6871
6871
  PRIVATE_WEBSITE: string;
6872
+ PRIVATE_KEY: string;
6872
6873
  PROBA_ADJ_4_RUBRIC: string;
6873
6874
  PROB_AN_11: string;
6874
6875
  "PROB_AN_4.1_FUNCTION_EMPLOYEE": string;
@@ -8822,7 +8823,9 @@ export declare class Dictionaries {
8822
8823
  ACCOUNT_ACTIVE2: string;
8823
8824
  ACCOUNT_AND_PRIVACY: string;
8824
8825
  ACCOUNT_BUSINESSES: string;
8826
+ ACCOUNT_CONTRA: string;
8825
8827
  ACCOUNT_DETAILS: string;
8828
+ ACCOUNT_DIFF: string;
8826
8829
  ACCOUNT_EXPLANATION: string;
8827
8830
  ACCOUNT_INACTIVE: string;
8828
8831
  ACCOUNT_INACTIVE_PW_NOT_SENT: string;
@@ -9052,6 +9055,7 @@ export declare class Dictionaries {
9052
9055
  ALREADY_SENT: string;
9053
9056
  ALREADY_TO_PICK: string;
9054
9057
  ALREADY_USED_ARTICLENR: string;
9058
+ ALREADY_USED_BARCODE: string;
9055
9059
  ALSO_AS_USDZ: string;
9056
9060
  NO_USER: string;
9057
9061
  NO_VADAIN_ARTICLES: string;
@@ -9197,6 +9201,7 @@ export declare class Dictionaries {
9197
9201
  BANK_BOOK: string;
9198
9202
  BANK_RELATION: string;
9199
9203
  BANK_STATEMENT_APPLICABLE_FOR_PAYMENT: string;
9204
+ BANK_STATEMENT_HOLDING_ACCOUNT: string;
9200
9205
  BANK_STATEMENT_LEDGER_ACCOUNT_TO_LINK: string;
9201
9206
  BANK_STATEMENT_LINK: string;
9202
9207
  BANK_STATEMENT_SEARCH_COLUMN: string;
@@ -9873,6 +9878,7 @@ export declare class Dictionaries {
9873
9878
  EXCLUDE_FROM_INVOICE_CHECK: string;
9874
9879
  EXCLUDE_INVOICE_CHECK: string;
9875
9880
  EXCLUDE_RETURNS: string;
9881
+ EXCLUDE_BALANCE_CALCULATION: string;
9876
9882
  EXCLUSIONS: string;
9877
9883
  EXPORT_GRIDS: string;
9878
9884
  EXPORT_JOBS_NOT_STARTED: string;
@@ -10059,6 +10065,8 @@ export declare class Dictionaries {
10059
10065
  FIELD_NAME: string;
10060
10066
  FIELD_TYPE: string;
10061
10067
  FIFO: string;
10068
+ FIRST_POSTING: string;
10069
+ FIRST_SETTLEMENT_NR: string;
10062
10070
  COST_CENTER: string;
10063
10071
  COST_CENTER_EMPLOYMENT_CONTRACT: string;
10064
10072
  COST_CENTER_TYPE: string;
@@ -12495,6 +12503,7 @@ export declare class Dictionaries {
12495
12503
  VIEW_PRODUCTS_OWNED: string;
12496
12504
  VIEW_TRANSACTION_OVERVIEW: string;
12497
12505
  VIRTUAL_ASSISTANT: string;
12506
+ ORDER_DISCOUNT: string;
12498
12507
  ORDER_NET: string;
12499
12508
  ORDER_NO: string;
12500
12509
  ORDER_NOT_COPIED: string;
@@ -12992,6 +13001,7 @@ export declare class Dictionaries {
12992
13001
  RESERVATION_PURCHASEORDER: string;
12993
13002
  RESERVATION_STICKER: string;
12994
13003
  RESERVED: string;
13004
+ RESERVED_ORDERED: string;
12995
13005
  RESERVE_STICKERS: string;
12996
13006
  RESET: string;
12997
13007
  RESET_FILTER: string;
@@ -13023,6 +13033,7 @@ export declare class Dictionaries {
13023
13033
  NETTO_PRICE: string;
13024
13034
  NET_LINE_TOTAL: string;
13025
13035
  NET_PURCHASE: string;
13036
+ NETWORK_PRINTERS: string;
13026
13037
  NEVER: string;
13027
13038
  NEW: string;
13028
13039
  NEWS: string;
@@ -15184,6 +15195,7 @@ export declare class Dictionaries {
15184
15195
  PRIVATE_PERSON: string;
15185
15196
  PRIVATE_PHONE: string;
15186
15197
  PRIVATE_WEBSITE: string;
15198
+ PRIVATE_KEY: string;
15187
15199
  PROBA_ADJ_2_RUBRIC: string;
15188
15200
  PROBA_ADJ_3_RUBRIC: string;
15189
15201
  PROBA_ADJ_4_RUBRIC: string;
@@ -22895,6 +22907,7 @@ export declare class Dictionaries {
22895
22907
  PRIVATE_PERSON: string;
22896
22908
  PRIVATE_PHONE: string;
22897
22909
  PRIVATE_WEBSITE: string;
22910
+ PRIVATE_KEY: string;
22898
22911
  PROBA_ADJ_4_RUBRIC: string;
22899
22912
  PROB_AN_11: string;
22900
22913
  "PROB_AN_4.1_FUNCTION_EMPLOYEE": string;
@@ -24163,7 +24176,9 @@ export declare class Dictionaries {
24163
24176
  ACCOUNT_ACTIVE: string;
24164
24177
  ACCOUNT_AND_PRIVACY: string;
24165
24178
  ACCOUNT_BUSINESSES: string;
24179
+ ACCOUNT_CONTRA: string;
24166
24180
  ACCOUNT_DETAILS: string;
24181
+ ACCOUNT_DIFF: string;
24167
24182
  ACCOUNT_EXPLANATION: string;
24168
24183
  ACCOUNT_INACTIVE: string;
24169
24184
  ACCOUNT_INACTIVE_PW_NOT_SENT: string;
@@ -24580,9 +24595,12 @@ export declare class Dictionaries {
24580
24595
  ALLOW_OPEN_ABSENCEFILE: string;
24581
24596
  ALLOW_PART_DELIVERY: string;
24582
24597
  ALLOW_PONTO_CONNECTION: string;
24598
+ ALLOW_REMARK_CREATE: string;
24583
24599
  ALLOW_ROTATION: string;
24584
24600
  ALLOW_SIDEBAR: string;
24585
24601
  ALLOW_STORAGE_DECOUPLING: string;
24602
+ ALLOW_TASK_CREATE: string;
24603
+ ALLOW_WORK_CREATE: string;
24586
24604
  ALL_ADDRESSES: string;
24587
24605
  ALL_AVAILABLE_STOCK_RESERVED_DO_YOU_WANT_TO_TRY_AGAIN_PLEASE_CONFIRM: string;
24588
24606
  ALL_CASH_DRAWERS: string;
@@ -24616,6 +24634,7 @@ export declare class Dictionaries {
24616
24634
  ALREADY_SENT: string;
24617
24635
  ALREADY_TO_PICK: string;
24618
24636
  ALREADY_USED_ARTICLENR: string;
24637
+ ALREADY_USED_BARCODE: string;
24619
24638
  ALSO_COPY: string;
24620
24639
  ALTERNATIVES: string;
24621
24640
  ALTERNATIVE_INVOICE_ADDRESS: string;
@@ -24708,7 +24727,9 @@ export declare class Dictionaries {
24708
24727
  AMOUNT_TO_BE_ALLOCATED_SOURCE: string;
24709
24728
  AMOUNT_TO_BE_ORDERED: string;
24710
24729
  AMOUNT_TO_CONFIRM: string;
24730
+ AMOUNT_TO_ORDER: string;
24711
24731
  AMOUNT_TO_PRINT: string;
24732
+ AMOUNT_TO_RESERVE: string;
24712
24733
  AMOUNT_USED_COUPONS: string;
24713
24734
  AMOUT_TO_SETTLE_CANNOT_BE_GREATER_THAN_TOTAL_PAID_DOWN: string;
24714
24735
  ANALYSIS_ON: string;
@@ -24941,6 +24962,7 @@ export declare class Dictionaries {
24941
24962
  BANK_BOOK: string;
24942
24963
  BANK_RELATION: string;
24943
24964
  BANK_STATEMENT_APPLICABLE_FOR_PAYMENT: string;
24965
+ BANK_STATEMENT_HOLDING_ACCOUNT: string;
24944
24966
  BANK_STATEMENT_LEDGER_ACCOUNT_TO_LINK: string;
24945
24967
  BANK_STATEMENT_LINK: string;
24946
24968
  BANK_STATEMENT_SEARCH_COLUMN: string;
@@ -26761,6 +26783,7 @@ export declare class Dictionaries {
26761
26783
  EXCLUDE_ALLOCATED_RETURNS: string;
26762
26784
  EXCLUDE_ALLREADY_CONFIRMED: string;
26763
26785
  EXCLUDE_ALREADY_ARRIVALDATE: string;
26786
+ EXCLUDE_BALANCE_CALCULATION: string;
26764
26787
  EXCLUDE_FROM_HASH: string;
26765
26788
  EXCLUDE_FROM_INVOICE_CHECK: string;
26766
26789
  EXCLUDE_INVOICE_CHECK: string;
@@ -26885,6 +26908,8 @@ export declare class Dictionaries {
26885
26908
  FIELD_TYPE: string;
26886
26909
  FIFO: string;
26887
26910
  FIFOLIFO: string;
26911
+ FIRST_POSTING: string;
26912
+ FIRST_SETTLEMENT_NR: string;
26888
26913
  FILE2: string;
26889
26914
  FILE: string;
26890
26915
  FILENAME_CONTAINS_NO_EXTENSION: string;
@@ -27860,6 +27885,7 @@ export declare class Dictionaries {
27860
27885
  MAX_ORDER_AMOUNT: string;
27861
27886
  MAX_RESPONSE_TIME: string;
27862
27887
  MAX_RESPONSE_TIME_MINUTES: string;
27888
+ MAX_SALES_DISCOUNT_PERC: string;
27863
27889
  MAX_SEARCH_RESULTS: string;
27864
27890
  MAX_STATE_DURATION: string;
27865
27891
  MAX_STOCK: string;
@@ -28147,6 +28173,7 @@ export declare class Dictionaries {
28147
28173
  MESSAGE_POS_GROUP_WAREHOUSE_EMPTY: string;
28148
28174
  MESSAGE_POS_GROUP_WAREWHOUSE_EMPTY: string;
28149
28175
  MESSAGE_POS_TRANS_NOT_SAVED: string;
28176
+ MESSAGE_PRESET_NAME_EXISTS: string;
28150
28177
  MESSAGE_PRIMARY: string;
28151
28178
  MESSAGE_PROCEED_IN_TRANSACTION: string;
28152
28179
  MESSAGE_QUESTION_SEND_MESSAGES: string;
@@ -28277,6 +28304,7 @@ export declare class Dictionaries {
28277
28304
  MULTIPLE_CHOICE: string;
28278
28305
  MULTIPLE_CONDITIONS: string;
28279
28306
  MULTIPLE_INTERBRANCH_LINES_MESSAGE: string;
28307
+ MULTIPLE_PDFS_MOVED_TO_DOWNLOAD_FOLDER: string;
28280
28308
  MULTIPLE_PURCHASEORDERS: string;
28281
28309
  MULTIPLE_RESERVATIONS: string;
28282
28310
  MULTIPLE_SESSIONS_ARE_NOT_ALLOWED: string;
@@ -28333,6 +28361,7 @@ export declare class Dictionaries {
28333
28361
  NETTO_PRICE: string;
28334
28362
  NET_LINE_TOTAL: string;
28335
28363
  NET_PURCHASE: string;
28364
+ NETWORK_PRINTERS: string;
28336
28365
  NEVER: string;
28337
28366
  NEW: string;
28338
28367
  NEWS: string;
@@ -28893,6 +28922,7 @@ export declare class Dictionaries {
28893
28922
  ORDER_DEFINITIVE: string;
28894
28923
  ORDER_DELIVERY_STATUS_NOT_COMPLETE: string;
28895
28924
  ORDER_DETAILS: string;
28925
+ ORDER_DISCOUNT: string;
28896
28926
  ORDER_DISCOUNTS: string;
28897
28927
  ORDER_DISCOUNT_AMOUNT: string;
28898
28928
  ORDER_DISCOUNT_GREATER_THAN_ORDER_PRICE: string;
@@ -28902,6 +28932,7 @@ export declare class Dictionaries {
28902
28932
  ORDER_FOR_WAREHOUSE: string;
28903
28933
  ORDER_FULLY_PAID: string;
28904
28934
  ORDER_DEPOSIT_FULLY_PAID: string;
28935
+ ORDER_DIRECT_SELL: string;
28905
28936
  ORDER_GROSS: string;
28906
28937
  ORDER_HAS_PLANNING_REQUESTED_AT_LSP: string;
28907
28938
  ORDER_HISTORY: string;
@@ -29479,6 +29510,7 @@ export declare class Dictionaries {
29479
29510
  PRIVATE_PERSON: string;
29480
29511
  PRIVATE_PHONE: string;
29481
29512
  PRIVATE_WEBSITE: string;
29513
+ PRIVATE_KEY: string;
29482
29514
  PROBA_ADJ_2_RUBRIC: string;
29483
29515
  PROBA_ADJ_3_RUBRIC: string;
29484
29516
  PROBA_ADJ_4_RUBRIC: string;
@@ -29751,6 +29783,7 @@ export declare class Dictionaries {
29751
29783
  QUICK_OPTION_VALUE: string;
29752
29784
  QUOTATION: string;
29753
29785
  QUOTATIONS: string;
29786
+ QUOTATION_CART_OVERVIEW: string;
29754
29787
  QUOTATION_COPIED: string;
29755
29788
  QUOTATION_DATE: string;
29756
29789
  QUOTATION_DATE_CUSTOMER: string;
@@ -30029,7 +30062,9 @@ export declare class Dictionaries {
30029
30062
  RESERVATION_ORDERING_STICKER: string;
30030
30063
  RESERVATION_PURCHASEORDER: string;
30031
30064
  RESERVATION_STICKER: string;
30065
+ RESERVE: string;
30032
30066
  RESERVED: string;
30067
+ RESERVED_ORDERED: string;
30033
30068
  RESET: string;
30034
30069
  RESET_CUSTOMER: string;
30035
30070
  RESET_FILTER: string;
@@ -30399,6 +30434,7 @@ export declare class Dictionaries {
30399
30434
  SEARCH_QUOTATION: string;
30400
30435
  SEARCH_QUOTATIONS: string;
30401
30436
  SEARCH_RELATION_DESCRIPTION: string;
30437
+ SEARCH_RELATION_TRANS_AMOUNT: string;
30402
30438
  SEARCH_RESULTS: string;
30403
30439
  SEARCH_SALESORDERS: string;
30404
30440
  SEARCH_SALESPERSON: string;
@@ -30644,6 +30680,7 @@ export declare class Dictionaries {
30644
30680
  SHOPPING_CART: string;
30645
30681
  SHOPPING_CART_ADD: string;
30646
30682
  SHOPPING_CART_CHECKOUT: string;
30683
+ SHOPPING_CART_CHECKOUT_QUOTATION: string;
30647
30684
  SHOPPING_CART_IN: string;
30648
30685
  SHOPPING_CART_OVERVIEW: string;
30649
30686
  SHOPPING_CART_RESUME: string;
@@ -30680,6 +30717,7 @@ export declare class Dictionaries {
30680
30717
  SHOW_CONTAINER_INFO: string;
30681
30718
  SHOW_CUSTOMIZED_ARTICLES: string;
30682
30719
  SHOW_DASHBOARDS: string;
30720
+ SHOW_DELIVERY_CHECKOUT: string;
30683
30721
  SHOW_DETAILS: string;
30684
30722
  SHOW_FULLY_ACCEPTED: string;
30685
30723
  SHOW_FULL_CONFIGURATION: string;
@@ -30700,6 +30738,7 @@ export declare class Dictionaries {
30700
30738
  SHOW_OPTION_PRICES: string;
30701
30739
  SHOW_ORDERS_WITHOUT_LINES: string;
30702
30740
  SHOW_OUTSTANDING_ENTRIES: string;
30741
+ SHOW_PAYMENT_CHECKOUT: string;
30703
30742
  SHOW_POPUP: string;
30704
30743
  SHOW_PRIVACY_PREFERENCES: string;
30705
30744
  SHOW_REGULAR_ARTICLES: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/relation",
3
- "version": "259.1.4",
3
+ "version": "260.1.1",
4
4
  "description": "Colijn IT relation module for Angular 12",
5
5
  "repository": "npm/npm",
6
6
  "author": "Colijn IT",
@@ -10,10 +10,10 @@
10
10
  "@angular/common": ">=12.2.0",
11
11
  "@angular/core": ">=12.2.0",
12
12
  "@colijnit/corecomponents": ">=1.12.0",
13
- "@colijnit/corecomponents_v12": ">=259.1.0",
14
- "@colijnit/ioneconnector": ">=259.1.0",
15
- "@colijnit/mainapi": ">=259.1.0",
16
- "@colijnit/relationapi": ">=259.1.0",
13
+ "@colijnit/corecomponents_v12": ">=260.1.0",
14
+ "@colijnit/ioneconnector": ">=260.1.0",
15
+ "@colijnit/mainapi": ">=260.1.0",
16
+ "@colijnit/relationapi": ">=260.1.0",
17
17
  "@tweenjs/tween.js": ">=17.2.0",
18
18
  "xlsx": ">=0.18.5"
19
19
  },