@colijnit/relation 256.1.1 → 257.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.
- package/bundles/colijnit-relation.umd.js +233 -243
- package/bundles/colijnit-relation.umd.js.map +1 -1
- package/colijnit-relation.d.ts +11 -13
- package/colijnit-relation.metadata.json +1 -1
- package/esm2015/colijnit-relation.js +12 -14
- package/esm2015/lib/component/base/relation-base.component.js +2 -2
- package/esm2015/lib/component/relation/relation.component.js +146 -42
- package/esm2015/lib/component/relation-address/relation-address.component.js +3 -3
- package/esm2015/lib/component/relation-address-tile/relation-address-tile.component.js +3 -3
- package/esm2015/lib/component/relation-addresses/relation-addresses.component.js +6 -7
- package/esm2015/lib/component/relation-preferences/relation-preferences.component.js +2 -2
- package/esm2015/lib/component/relation-title/relation-title.component.js +4 -3
- package/esm2015/lib/enum/icon.enum.js +2 -1
- package/esm2015/lib/model/icon-svg.js +2 -1
- package/esm2015/lib/relation-version.js +4 -4
- package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
- package/esm2015/lib/service/error.service.js +5 -5
- package/esm2015/lib/service/relation-base.service.js +1 -1
- package/esm2015/lib/service/relation-settings.service.js +5 -5
- package/esm2015/public_api.js +2 -1
- package/fesm2015/colijnit-relation.js +264 -224
- package/fesm2015/colijnit-relation.js.map +1 -1
- package/lib/component/relation/relation.component.d.ts +14 -1
- package/lib/component/relation/style/_layout.scss +66 -2
- package/lib/component/relation/style/_material-definition.scss +2 -2
- package/lib/component/relation-address/relation-address.component.d.ts +2 -2
- package/lib/component/relation-address-tile/style/_layout.scss +34 -2
- package/lib/component/relation-address-tile/style/_material-definition.scss +1 -1
- package/lib/component/relation-addresses/style/_layout.scss +7 -0
- package/lib/component/relation-addresses/style/_material-definition.scss +1 -1
- package/lib/enum/icon.enum.d.ts +1 -0
- package/lib/res/dictionary/dictionaries.d.ts +46 -1
- package/lib/service/error.service.d.ts +2 -2
- package/lib/service/relation-settings.service.d.ts +2 -2
- package/lib/style/_variables.scss +1 -1
- package/package.json +5 -5
- package/public_api.d.ts +1 -0
- package/colijnit-relation-256.1.0.tgz +0 -0
- package/esm2015/lib/service/dictionary.service.js +0 -68
- package/lib/service/dictionary.service.d.ts +0 -18
|
@@ -5,17 +5,30 @@ import { RelationSettingsService } from '../../service/relation-settings.service
|
|
|
5
5
|
import { RelationAnyType } from '@colijnit/relationapi/build/model/relation-any-type';
|
|
6
6
|
import { RelationService } from '../../service/relation.service';
|
|
7
7
|
import { RelationConnectorService } from '../../service/relation-connector.service';
|
|
8
|
+
import { Title } from "@colijnit/mainapi/build/model/title.bo";
|
|
9
|
+
import { IconCacheService } from "../../service/icon-cache.service";
|
|
10
|
+
import { Icon } from "../../enum/icon.enum";
|
|
8
11
|
export declare class RelationComponent implements OnInit, OnDestroy {
|
|
9
12
|
protected relationEventService: RelationEventService;
|
|
10
13
|
private _translationService;
|
|
11
14
|
private _settingsService;
|
|
12
15
|
private _relationConnectorService;
|
|
13
16
|
private _relationService;
|
|
17
|
+
iconCacheService: IconCacheService;
|
|
18
|
+
readonly icons: typeof Icon;
|
|
14
19
|
loadRelationFromLoginResponse: boolean;
|
|
20
|
+
forceReadOnly: boolean;
|
|
21
|
+
customerPortal: boolean;
|
|
15
22
|
showClass(): boolean;
|
|
16
23
|
relation: RelationAnyType;
|
|
24
|
+
relationTitle: string;
|
|
25
|
+
collection: Title[];
|
|
17
26
|
private _subs;
|
|
18
|
-
constructor(relationEventService: RelationEventService, _translationService: CoreComponentsTranslationService, _settingsService: RelationSettingsService, _relationConnectorService: RelationConnectorService, _relationService: RelationService);
|
|
27
|
+
constructor(relationEventService: RelationEventService, _translationService: CoreComponentsTranslationService, _settingsService: RelationSettingsService, _relationConnectorService: RelationConnectorService, _relationService: RelationService, iconCacheService: IconCacheService);
|
|
19
28
|
ngOnInit(): void;
|
|
20
29
|
ngOnDestroy(): void;
|
|
30
|
+
handleSaveClick(): Promise<void>;
|
|
31
|
+
getTitleCollection(): Promise<void>;
|
|
32
|
+
getTitleForRelation(relation: RelationAnyType): string;
|
|
33
|
+
getGenderLabel(gender: string): string;
|
|
21
34
|
}
|
|
@@ -27,20 +27,84 @@
|
|
|
27
27
|
flex-basis: 100%;
|
|
28
28
|
}
|
|
29
29
|
.co-relation-prefix-name {
|
|
30
|
-
flex-basis:
|
|
30
|
+
flex-basis: 50%;
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
|
+
.relation-data-column {
|
|
34
|
+
display: flex;
|
|
35
|
+
flex-direction: column;
|
|
36
|
+
gap: 10px;
|
|
37
|
+
}
|
|
33
38
|
.relation-data-field-default {
|
|
34
39
|
flex-basis: 50%;
|
|
35
40
|
}
|
|
36
41
|
.relation-section-label {
|
|
37
|
-
font-family: $re-co-relation-section-label-font-family;
|
|
38
42
|
font-size: $re-co-relation-section-label-font-size;
|
|
39
43
|
margin: $re-co-relation-section-label-margin;
|
|
40
44
|
}
|
|
45
|
+
.relation-section-sub-label {
|
|
46
|
+
font-size: 14px;
|
|
47
|
+
font-weight: 500;
|
|
48
|
+
margin-top: 15px;
|
|
49
|
+
}
|
|
41
50
|
.relation-account-data {
|
|
42
51
|
display: flex;
|
|
43
52
|
justify-content: space-between;
|
|
44
53
|
}
|
|
54
|
+
.relation-account-data-wrapper {
|
|
55
|
+
&.non-editable {
|
|
56
|
+
display: flex;
|
|
57
|
+
flex-direction: column;
|
|
58
|
+
gap: 15px;
|
|
59
|
+
min-width: 50%;
|
|
60
|
+
.relation-data-row {
|
|
61
|
+
gap: 30px;
|
|
62
|
+
.non-editable-column {
|
|
63
|
+
display: flex;
|
|
64
|
+
flex-direction: column;
|
|
65
|
+
gap: 5px;
|
|
66
|
+
.label {
|
|
67
|
+
font-size: 12px;
|
|
68
|
+
color: #8083A3;
|
|
69
|
+
}
|
|
70
|
+
.value {
|
|
71
|
+
font-size: 14px;
|
|
72
|
+
color: #000;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
.save-editable-wrapper {
|
|
79
|
+
display: flex;
|
|
80
|
+
justify-content: center;
|
|
81
|
+
gap: 5px;
|
|
82
|
+
margin-top: 15px;
|
|
83
|
+
.save-button {
|
|
84
|
+
background-color: #F5F5FC;
|
|
85
|
+
.co-icon {
|
|
86
|
+
svg {
|
|
87
|
+
fill: #1a73e8;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
.close-button {
|
|
92
|
+
background-color: #F5F5FC;
|
|
93
|
+
.co-icon {
|
|
94
|
+
svg {
|
|
95
|
+
fill: #898e9b;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
.co-icon [fill] {
|
|
99
|
+
fill: #898e9b;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
.switch-editable {
|
|
104
|
+
margin-top: 15px;
|
|
105
|
+
color: #1a73e8;
|
|
106
|
+
font-weight: 600;
|
|
107
|
+
cursor: pointer;
|
|
108
|
+
}
|
|
45
109
|
}
|
|
46
110
|
}
|
|
@@ -4,12 +4,12 @@ $re-co-relation-font-color: $re-color-font !default;
|
|
|
4
4
|
$re-co-relation-section-background-color: $re-color-background !default;
|
|
5
5
|
$re-co-relation-section-width: 800px !default;
|
|
6
6
|
$re-co-relation-section-gap: 10px !default;
|
|
7
|
-
$re-co-relation-section-padding:
|
|
7
|
+
$re-co-relation-section-padding: 0 !default;
|
|
8
8
|
$re-co-relation-section-margin: 0 0 20px 0 !default;
|
|
9
9
|
|
|
10
10
|
$re-co-relation-section-fields-margin: 0 0 5px 0 !default;
|
|
11
11
|
|
|
12
12
|
$re-co-relation-section-label-font-family: $re-font-family !default;
|
|
13
13
|
$re-co-relation-section-label-font-size: 20px !default;
|
|
14
|
-
$re-co-relation-section-label-font-color: $re-color-
|
|
14
|
+
$re-co-relation-section-label-font-color: $re-color-font !default;
|
|
15
15
|
$re-co-relation-section-label-margin: 10px 0 !default;
|
|
@@ -2,10 +2,10 @@ import { EventEmitter, OnInit } from '@angular/core';
|
|
|
2
2
|
import { RelationAddressCfgNames } from '../../interface/relation-address-cfg-names.interface';
|
|
3
3
|
import { Address } from '@colijnit/relationapi/build/model/address.bo';
|
|
4
4
|
import { Country } from '@colijnit/ioneconnector/build/model/country.bo';
|
|
5
|
-
import { DictionaryService } from '../../service/dictionary.service';
|
|
6
5
|
import { FormMasterService } from '@colijnit/corecomponents_v12';
|
|
7
6
|
import { RelationService } from '../../service/relation.service';
|
|
8
7
|
import { RelationConnectorService } from '../../service/relation-connector.service';
|
|
8
|
+
import { RelationDictionaryService } from '../../translation/relation-dictionary.service';
|
|
9
9
|
export declare class RelationAddressComponent implements OnInit {
|
|
10
10
|
private _dictionary;
|
|
11
11
|
private _relationConnectorService;
|
|
@@ -23,7 +23,7 @@ export declare class RelationAddressComponent implements OnInit {
|
|
|
23
23
|
private _prevPostalCodeForCheck;
|
|
24
24
|
private _prevHouseNoForCheck;
|
|
25
25
|
private _address;
|
|
26
|
-
constructor(_dictionary:
|
|
26
|
+
constructor(_dictionary: RelationDictionaryService, _relationConnectorService: RelationConnectorService, _formMasterService: FormMasterService, relationService: RelationService);
|
|
27
27
|
ngOnInit(): Promise<void>;
|
|
28
28
|
checkForPostalCodeCheckError(): Promise<void>;
|
|
29
29
|
changeHouseNo(): void;
|
|
@@ -33,13 +33,45 @@
|
|
|
33
33
|
position: absolute;
|
|
34
34
|
top: 0;
|
|
35
35
|
right: 0;
|
|
36
|
-
opacity: 0
|
|
36
|
+
opacity: 0;
|
|
37
|
+
visibility: hidden;
|
|
38
|
+
transition: all .3s ease-in-out;
|
|
39
|
+
justify-content: center;
|
|
40
|
+
align-items: center;
|
|
41
|
+
display: flex;
|
|
42
|
+
width: 100%;
|
|
43
|
+
height: 100%;
|
|
44
|
+
|
|
37
45
|
.relation-address-edit-icon {
|
|
38
46
|
height: $re-co-relation-address-tile-edit-icon-width;
|
|
39
47
|
width: $re-co-relation-address-tile-edit-icon-width;
|
|
48
|
+
padding: 9px;
|
|
49
|
+
background: #1A73E8;
|
|
50
|
+
border-radius: 5px;
|
|
51
|
+
cursor: pointer;
|
|
52
|
+
svg {
|
|
53
|
+
fill: #FFF;
|
|
54
|
+
}
|
|
40
55
|
}
|
|
41
|
-
|
|
56
|
+
}
|
|
57
|
+
&:hover {
|
|
58
|
+
.relation-address-edit {
|
|
42
59
|
opacity: 1;
|
|
60
|
+
visibility: visible;
|
|
61
|
+
transition: all .3s ease-in-out;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
.co-tile-select {
|
|
65
|
+
.co-tile-wrapper {
|
|
66
|
+
height: 90px;
|
|
67
|
+
min-height: 90px;
|
|
68
|
+
width: 200px;
|
|
69
|
+
border-width: 1px;
|
|
70
|
+
border-radius: 0;
|
|
71
|
+
padding: 10px 15px;
|
|
72
|
+
.co-tile-content-wrapper {
|
|
73
|
+
justify-content: flex-start;
|
|
74
|
+
}
|
|
43
75
|
}
|
|
44
76
|
}
|
|
45
77
|
}
|
|
@@ -15,4 +15,4 @@ $re-co-relation-address-tile-selected-background-color: $re-color-background-sel
|
|
|
15
15
|
$re-co-relation-address-tile-selected-border-color: #0084de !default;
|
|
16
16
|
$re-co-relation-address-tile-edit-background-color: $re-color-border !default;
|
|
17
17
|
$re-co-relation-address-tile-edit-icon-color: $re-color-action !default;
|
|
18
|
-
$re-co-relation-address-tile-edit-icon-width:
|
|
18
|
+
$re-co-relation-address-tile-edit-icon-width: 36px !default;
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
.relation-addresses-label {
|
|
12
12
|
font-size: $re-co-relation-addresses-label-font-size;
|
|
13
13
|
margin: $re-co-relation-addresses-label-margin;
|
|
14
|
+
font-weight: 500;
|
|
14
15
|
}
|
|
15
16
|
.relation-address-new {
|
|
16
17
|
display: flex;
|
|
@@ -22,5 +23,11 @@
|
|
|
22
23
|
width: $re-co-relation-addresses-new-address-icon-size;
|
|
23
24
|
}
|
|
24
25
|
}
|
|
26
|
+
.address-tile-wrapper {
|
|
27
|
+
display: flex;
|
|
28
|
+
align-items: center;
|
|
29
|
+
flex-wrap: wrap;
|
|
30
|
+
gap: 15px;
|
|
31
|
+
}
|
|
25
32
|
}
|
|
26
33
|
}
|
|
@@ -7,6 +7,6 @@ $re-co-relation-addresses-new-address-margin: 5px 0 !default;
|
|
|
7
7
|
$re-co-relation-addresses-new-address-color: $re-color-action !default;
|
|
8
8
|
$re-co-relation-addresses-new-address-icon-color: $re-color-action !default;
|
|
9
9
|
|
|
10
|
-
$re-co-relation-addresses-label-font-size:
|
|
10
|
+
$re-co-relation-addresses-label-font-size: 14px !default;
|
|
11
11
|
$re-co-relation-addresses-label-color: $re-color-font !default;
|
|
12
12
|
$re-co-relation-addresses-label-margin: 10px 0 !default;
|
package/lib/enum/icon.enum.d.ts
CHANGED
|
@@ -1818,6 +1818,7 @@ export declare class Dictionaries {
|
|
|
1818
1818
|
CATALOG_EDITION: string;
|
|
1819
1819
|
CATALOG_FILE_NAME: string;
|
|
1820
1820
|
CATALOG_MANAGEMENT: string;
|
|
1821
|
+
CATALOG_TYPES: string;
|
|
1821
1822
|
CATEGORIES: string;
|
|
1822
1823
|
CATEGORY: string;
|
|
1823
1824
|
CATEGORY_NR: string;
|
|
@@ -1953,6 +1954,7 @@ export declare class Dictionaries {
|
|
|
1953
1954
|
COLOR: string;
|
|
1954
1955
|
COLORS: string;
|
|
1955
1956
|
COLORS_SELECTED: string;
|
|
1957
|
+
COLOUR: string;
|
|
1956
1958
|
COLOR_DESC: string;
|
|
1957
1959
|
COLUMN: string;
|
|
1958
1960
|
COLUMNS: string;
|
|
@@ -2008,6 +2010,7 @@ export declare class Dictionaries {
|
|
|
2008
2010
|
CONFIRMATION_NO: string;
|
|
2009
2011
|
CONFIRMATION_STATE: string;
|
|
2010
2012
|
CONFIRMED: string;
|
|
2013
|
+
CONFIRMED_AMOUNT: string;
|
|
2011
2014
|
CONFIRMED_ARRIVAL_DATA: string;
|
|
2012
2015
|
CONFIRMED_DATE: string;
|
|
2013
2016
|
CONFIRMED_DELIVERY_DATA: string;
|
|
@@ -2490,6 +2493,7 @@ export declare class Dictionaries {
|
|
|
2490
2493
|
ALLOWED_CHANGES: string;
|
|
2491
2494
|
ALLOW_OPEN_ABSENCEFILE: string;
|
|
2492
2495
|
ALLOW_PART_DELIVERY: string;
|
|
2496
|
+
ALLOW_PONTO_CONNECTION: string;
|
|
2493
2497
|
ALLOW_ROTATION: string;
|
|
2494
2498
|
ALLOW_SIDEBAR: string;
|
|
2495
2499
|
ALLOW_STORAGE_DECOUPLING: string;
|
|
@@ -2899,6 +2903,7 @@ export declare class Dictionaries {
|
|
|
2899
2903
|
DIMENSION_STEP_1_MSG2: string;
|
|
2900
2904
|
DIMENSION_STEP_2_MSG: string;
|
|
2901
2905
|
DIMENSION_STEP_3_MSG: string;
|
|
2906
|
+
DROPZONE_TEXT: string;
|
|
2902
2907
|
AMORTIZATION: string;
|
|
2903
2908
|
AMORTIZATION_ENTRY: string;
|
|
2904
2909
|
AMORTIZATION_GRID_HEADER: string;
|
|
@@ -3164,6 +3169,7 @@ export declare class Dictionaries {
|
|
|
3164
3169
|
RESERVATION_PURCHASEORDER: string;
|
|
3165
3170
|
RESERVATION_STICKER: string;
|
|
3166
3171
|
RESERVED: string;
|
|
3172
|
+
RESET: string;
|
|
3167
3173
|
RESERVE_STICKERS: string;
|
|
3168
3174
|
RESET_FILTER: string;
|
|
3169
3175
|
RESET_FILTERS: string;
|
|
@@ -3927,6 +3933,7 @@ export declare class Dictionaries {
|
|
|
3927
3933
|
LOAD_ALL_NODES: string;
|
|
3928
3934
|
LOAD_DEFAULT_REPORTS: string;
|
|
3929
3935
|
LOAD_LINES: string;
|
|
3936
|
+
LOAD_PONTO_TRANSACTIONS: string;
|
|
3930
3937
|
LOAD_TRANSACTION: string;
|
|
3931
3938
|
LOC: string;
|
|
3932
3939
|
LOCAL_CASH_DRAWER_COMM_PORT: string;
|
|
@@ -4701,6 +4708,7 @@ export declare class Dictionaries {
|
|
|
4701
4708
|
QR_CODE_SCANNER: string;
|
|
4702
4709
|
QR_SCAN: string;
|
|
4703
4710
|
QUANTITY: string;
|
|
4711
|
+
QUANTITY_ACCEPTED: string;
|
|
4704
4712
|
QUANTITY_CANNOT_BE_LESS_THAN_ALLOCATED: string;
|
|
4705
4713
|
QUANTITY_CANNOT_BE_LESS_THAN_DELIVERED: string;
|
|
4706
4714
|
QUANTITY_CANNOT_BE_LESS_THAN_INVOICED: string;
|
|
@@ -6049,6 +6057,7 @@ export declare class Dictionaries {
|
|
|
6049
6057
|
SELECT2: string;
|
|
6050
6058
|
SELECTED: string;
|
|
6051
6059
|
SELECTED_ADDRESSES: string;
|
|
6060
|
+
SELECTED_BALANCE: string;
|
|
6052
6061
|
SELECTED_CASH_DRAWER: string;
|
|
6053
6062
|
SELECTED_CASH_REGISTER: string;
|
|
6054
6063
|
SELECTED_LINES_NOT_FOUND: string;
|
|
@@ -6493,6 +6502,7 @@ export declare class Dictionaries {
|
|
|
6493
6502
|
SHOW_ON_DASHBOARD: string;
|
|
6494
6503
|
SHOW_OPTION_PRICES: string;
|
|
6495
6504
|
SHOW_ORDERS_WITHOUT_LINES: string;
|
|
6505
|
+
SHOW_ORDER: string;
|
|
6496
6506
|
SHOW_OUTSTANDING_ENTRIES: string;
|
|
6497
6507
|
SHOW_POPUP: string;
|
|
6498
6508
|
SHOW_PRIVACY_PREFERENCES: string;
|
|
@@ -6500,6 +6510,7 @@ export declare class Dictionaries {
|
|
|
6500
6510
|
SHOW_RESULT: string;
|
|
6501
6511
|
SHOW_SELECTED_EXCEPTIONS_ONLY: string;
|
|
6502
6512
|
SHOW_SELECTION: string;
|
|
6513
|
+
SHOW_SERVICE: string;
|
|
6503
6514
|
SHOW_SIGNED_IN: string;
|
|
6504
6515
|
SHOW_SOME: string;
|
|
6505
6516
|
SHOW_STATUSBAR: string;
|
|
@@ -6600,6 +6611,7 @@ export declare class Dictionaries {
|
|
|
6600
6611
|
USE_DEFAULTS: string;
|
|
6601
6612
|
USE_DEPOSIT_RULE: string;
|
|
6602
6613
|
USE_GOOGLE: string;
|
|
6614
|
+
USE_GENERAL_GAMEOBJECT: string;
|
|
6603
6615
|
USE_MIN_STOCK_CALC: string;
|
|
6604
6616
|
USE_OWN_ARTICLE_COUNTER: string;
|
|
6605
6617
|
USE_RECOMMENDED_PRICES: string;
|
|
@@ -7105,6 +7117,7 @@ export declare class Dictionaries {
|
|
|
7105
7117
|
CREATE_NEW_WORK: string;
|
|
7106
7118
|
CREATE_OR_PICK_EXPORT: string;
|
|
7107
7119
|
CREATE_PAYMENT_BATCH: string;
|
|
7120
|
+
CREATE_PONTO_INTEGRATION: string;
|
|
7108
7121
|
CREATE_PREVENTIVE_ABSENCE_FILE: string;
|
|
7109
7122
|
CREATE_PURCHASE_ORDER: string;
|
|
7110
7123
|
CREATE_REFERENCE_FILE: string;
|
|
@@ -7289,6 +7302,7 @@ export declare class Dictionaries {
|
|
|
7289
7302
|
NEXT_ORDER: string;
|
|
7290
7303
|
NEXT_PAGE: string;
|
|
7291
7304
|
NEXT_SLASH_FINISH: string;
|
|
7305
|
+
NEXT_STATE: string;
|
|
7292
7306
|
NEXT_VERSION: string;
|
|
7293
7307
|
NEXT_WEEK: string;
|
|
7294
7308
|
NIGHT_ROUTINE: string;
|
|
@@ -7541,6 +7555,7 @@ export declare class Dictionaries {
|
|
|
7541
7555
|
SALESORDER_ASC: string;
|
|
7542
7556
|
SALESORDER_DESC: string;
|
|
7543
7557
|
SALESORDER_DETAIL: string;
|
|
7558
|
+
SALES_TRANSACTION: string;
|
|
7544
7559
|
SALES_AMOUNT: string;
|
|
7545
7560
|
SALES_AMOUNT2: string;
|
|
7546
7561
|
SALES_AMOUNT_DECIM_NOT_COMPLIANT_W_SALES_UNIT: string;
|
|
@@ -8005,6 +8020,7 @@ export declare class Dictionaries {
|
|
|
8005
8020
|
H3DCONNTARGETS: string;
|
|
8006
8021
|
H3DDEFAULT: string;
|
|
8007
8022
|
H3DGAMEOBJECT: string;
|
|
8023
|
+
H3DGENERALGAMEOBJECT: string;
|
|
8008
8024
|
H3DID: string;
|
|
8009
8025
|
H3DLINK: string;
|
|
8010
8026
|
H3DLINK_ORDERED: string;
|
|
@@ -8215,6 +8231,7 @@ export declare class Dictionaries {
|
|
|
8215
8231
|
UNTILL: string;
|
|
8216
8232
|
UPDATE_ALL_SEARCH_INDEXES: string;
|
|
8217
8233
|
UPDATE_ALL_SEARCH_INDEXES_FAST: string;
|
|
8234
|
+
UPDATE_ARTICLES: string;
|
|
8218
8235
|
UPDATE_ARTICLE_PRICE: string;
|
|
8219
8236
|
UPDATE_CONTAINER: string;
|
|
8220
8237
|
UPDATE_DATE: string;
|
|
@@ -9103,6 +9120,7 @@ export declare class Dictionaries {
|
|
|
9103
9120
|
DELIVERY_DATE_DEF: string;
|
|
9104
9121
|
DELIVERY_DATE_DEFINITE: string;
|
|
9105
9122
|
DELIVERY_DATE_DEFINITIVE: string;
|
|
9123
|
+
DELIVERY_DATE_SUPPLIER: string;
|
|
9106
9124
|
SUMMARY: string;
|
|
9107
9125
|
SUMMON: string;
|
|
9108
9126
|
SUM_INCLUDING_VAT: string;
|
|
@@ -9749,6 +9767,7 @@ export declare class Dictionaries {
|
|
|
9749
9767
|
MESSAGE_ERROR_NO_EMAIL: string;
|
|
9750
9768
|
MESSAGE_ERROR_OC_RETRIEVAL: string;
|
|
9751
9769
|
MESSAGE_ERROR_PASSWORD: string;
|
|
9770
|
+
DATA_AND_PREFERENCES: string;
|
|
9752
9771
|
};
|
|
9753
9772
|
text_fr: {
|
|
9754
9773
|
CHARACTERISTIC: string;
|
|
@@ -11737,6 +11756,7 @@ export declare class Dictionaries {
|
|
|
11737
11756
|
ALLOWED_CHANGES: string;
|
|
11738
11757
|
ALLOW_OPEN_ABSENCEFILE: string;
|
|
11739
11758
|
ALLOW_PART_DELIVERY: string;
|
|
11759
|
+
ALLOW_PONTO_CONNECTION: string;
|
|
11740
11760
|
ALLOW_ROTATION: string;
|
|
11741
11761
|
ALLOW_SIDEBAR: string;
|
|
11742
11762
|
ALLOW_STORAGE_DECOUPLING: string;
|
|
@@ -12392,6 +12412,7 @@ export declare class Dictionaries {
|
|
|
12392
12412
|
CATALOG_EDITION: string;
|
|
12393
12413
|
CATALOG_FILE_NAME: string;
|
|
12394
12414
|
CATALOG_MANAGEMENT: string;
|
|
12415
|
+
CATALOG_TYPES: string;
|
|
12395
12416
|
CATEGORIES: string;
|
|
12396
12417
|
CATEGORY: string;
|
|
12397
12418
|
CATEGORY_NR: string;
|
|
@@ -12626,6 +12647,7 @@ export declare class Dictionaries {
|
|
|
12626
12647
|
COLLAPSE_ALL: string;
|
|
12627
12648
|
COLLATE_ORDERFORMS: string;
|
|
12628
12649
|
COLLECT: string;
|
|
12650
|
+
COLLECTION: string;
|
|
12629
12651
|
COLLECTION_CODE: string;
|
|
12630
12652
|
COLLECTION_CODE_CATEGORIES: string;
|
|
12631
12653
|
COLLECTION_LIST: string;
|
|
@@ -12638,6 +12660,7 @@ export declare class Dictionaries {
|
|
|
12638
12660
|
COLORS: string;
|
|
12639
12661
|
COLORS_SELECTED: string;
|
|
12640
12662
|
COLOR_DESC: string;
|
|
12663
|
+
COLOUR: string;
|
|
12641
12664
|
COLUMN: string;
|
|
12642
12665
|
COLUMNS: string;
|
|
12643
12666
|
COLUMN_BALANCE: string;
|
|
@@ -12728,6 +12751,7 @@ export declare class Dictionaries {
|
|
|
12728
12751
|
CONFIGURATION_COMPLETE: string;
|
|
12729
12752
|
CONFIGURATION_NOT_FINISHED_YET: string;
|
|
12730
12753
|
CONFIGURATION_OVERVIEW: string;
|
|
12754
|
+
CONFIGURATION_PRESET: string;
|
|
12731
12755
|
CONFIGURATION_YOURS: string;
|
|
12732
12756
|
CONFIGURATOR_TEST: string;
|
|
12733
12757
|
CONFIGURE: string;
|
|
@@ -12753,6 +12777,7 @@ export declare class Dictionaries {
|
|
|
12753
12777
|
CONFIRMATION_NO: string;
|
|
12754
12778
|
CONFIRMATION_STATE: string;
|
|
12755
12779
|
CONFIRMED: string;
|
|
12780
|
+
CONFIRMED_AMOUNT: string;
|
|
12756
12781
|
CONFIRMED_ARRIVAL_DATA: string;
|
|
12757
12782
|
CONFIRMED_DATE: string;
|
|
12758
12783
|
CONFIRMED_DELIVERY_DATA: string;
|
|
@@ -12891,6 +12916,7 @@ export declare class Dictionaries {
|
|
|
12891
12916
|
COPY_SALES_ORDER: string;
|
|
12892
12917
|
COPY_SALES_QUOTATION_ORDER: string;
|
|
12893
12918
|
COPY_SERVICE_ORDER: string;
|
|
12919
|
+
COPY_LINE: string;
|
|
12894
12920
|
COPY_LINK_TO_CLIPBOARD: string;
|
|
12895
12921
|
COPY_TO_CLIPBOARD: string;
|
|
12896
12922
|
COPY_TREE: string;
|
|
@@ -13088,6 +13114,7 @@ export declare class Dictionaries {
|
|
|
13088
13114
|
DASHBOARD_CONFIGURE_START: string;
|
|
13089
13115
|
DASHBOARD_NEW_TILE: string;
|
|
13090
13116
|
DATA: string;
|
|
13117
|
+
DATA_AND_PREFERENCES: string;
|
|
13091
13118
|
DATABASE_DUMP: string;
|
|
13092
13119
|
DATABASE_DUMP_ACTIVE: string;
|
|
13093
13120
|
DATABASE_DUMP_BUSY_OTHER_JOB: string;
|
|
@@ -13311,8 +13338,8 @@ export declare class Dictionaries {
|
|
|
13311
13338
|
DELIVERY_DATE_ASKED: string;
|
|
13312
13339
|
DELIVERY_DATE_CALCULATED: string;
|
|
13313
13340
|
DELIVERY_DATE_CONFIRMATION_FROM_EARLY: string;
|
|
13314
|
-
DELIVERY_DATE_CONFIRMED2: string;
|
|
13315
13341
|
DELIVERY_DATE_CONFIRMED: string;
|
|
13342
|
+
DELIVERY_DATE_CONFIRMED2: string;
|
|
13316
13343
|
DELIVERY_DATE_CONFIRMED_AND_WILL_REMAIN_THE_SAME: string;
|
|
13317
13344
|
DELIVERY_DATE_DEF: string;
|
|
13318
13345
|
DELIVERY_DATE_DEFINITE: string;
|
|
@@ -13326,6 +13353,7 @@ export declare class Dictionaries {
|
|
|
13326
13353
|
DELIVERY_DATE_PREGNANT: string;
|
|
13327
13354
|
DELIVERY_DATE_PURCHASE: string;
|
|
13328
13355
|
DELIVERY_DATE_SALES: string;
|
|
13356
|
+
DELIVERY_DATE_SUPPLIER: string;
|
|
13329
13357
|
DELIVERY_DAYS: string;
|
|
13330
13358
|
DELIVERY_DELAY: string;
|
|
13331
13359
|
DELIVERY_DELAY_UNIT: string;
|
|
@@ -13556,6 +13584,7 @@ export declare class Dictionaries {
|
|
|
13556
13584
|
DROPSHIPMENT_INFO: string;
|
|
13557
13585
|
DROPSHIPMENT_POSSIBLE: string;
|
|
13558
13586
|
DROPSHIPPING_ADDRESS_CURRENT_ORDER: string;
|
|
13587
|
+
DROPZONE_TEXT: string;
|
|
13559
13588
|
DROP_ZONE_DOCUMENTS: string;
|
|
13560
13589
|
DROP_ZONE_IMAGES: string;
|
|
13561
13590
|
DROP_ZONE_SALARY_INFO: string;
|
|
@@ -14262,6 +14291,7 @@ export declare class Dictionaries {
|
|
|
14262
14291
|
H3DCONNTARGETS: string;
|
|
14263
14292
|
H3DDEFAULT: string;
|
|
14264
14293
|
H3DGAMEOBJECT: string;
|
|
14294
|
+
H3DGENERALGAMEOBJECT: string;
|
|
14265
14295
|
H3DID: string;
|
|
14266
14296
|
H3DLINK: string;
|
|
14267
14297
|
H3DLINK_ORDERED: string;
|
|
@@ -14298,6 +14328,7 @@ export declare class Dictionaries {
|
|
|
14298
14328
|
HD_DELETE_QUESTION: string;
|
|
14299
14329
|
HD_ORDER_DEFINITIVE: string;
|
|
14300
14330
|
HD_UNABLE_TO_REMOVE_PROJECT: string;
|
|
14331
|
+
HDECO_GENERIC_GAMEOBJECT: string;
|
|
14301
14332
|
HEADER: string;
|
|
14302
14333
|
HEADER_ACTIVE: string;
|
|
14303
14334
|
HEADER_DEFINITIVE: string;
|
|
@@ -14800,6 +14831,7 @@ export declare class Dictionaries {
|
|
|
14800
14831
|
LOAD_ALL_NODES: string;
|
|
14801
14832
|
LOAD_DEFAULT_REPORTS: string;
|
|
14802
14833
|
LOAD_LINES: string;
|
|
14834
|
+
LOAD_PONTO_TRANSACTIONS: string;
|
|
14803
14835
|
LOAD_TRANSACTION: string;
|
|
14804
14836
|
LOC: string;
|
|
14805
14837
|
LOCAL_CASH_DRAWER_COMM_PORT: string;
|
|
@@ -15477,6 +15509,7 @@ export declare class Dictionaries {
|
|
|
15477
15509
|
NEXT_ORDER: string;
|
|
15478
15510
|
NEXT_PAGE: string;
|
|
15479
15511
|
NEXT_SLASH_FINISH: string;
|
|
15512
|
+
NEXT_STATE: string;
|
|
15480
15513
|
NEXT_VERSION: string;
|
|
15481
15514
|
NEXT_WEEK: string;
|
|
15482
15515
|
NIGHT_ROUTINE: string;
|
|
@@ -16295,6 +16328,7 @@ export declare class Dictionaries {
|
|
|
16295
16328
|
PLAN_RESTRICTED: string;
|
|
16296
16329
|
PLAN_RESTRICT_USERS: string;
|
|
16297
16330
|
PLAN_YOUR_DELIVERY: string;
|
|
16331
|
+
PLEASE_ADD_AT_LEAST_ONE_ADDRESS: string;
|
|
16298
16332
|
PLEASE_ADJUST_SUPPLIER_ON_ARTICLE_LEVEL: string;
|
|
16299
16333
|
PLEASE_CLOSE_HTML_EDITOR: string;
|
|
16300
16334
|
PLEASE_CLOSE_MODULE_AND_TRY_AGAIN: string;
|
|
@@ -16741,6 +16775,7 @@ export declare class Dictionaries {
|
|
|
16741
16775
|
QR_CODE_SCANNER: string;
|
|
16742
16776
|
QR_SCAN: string;
|
|
16743
16777
|
QUANTITY: string;
|
|
16778
|
+
QUANTITY_ACCEPTED: string;
|
|
16744
16779
|
QUANTITY_CANNOT_BE_LESS_THAN_ALLOCATED: string;
|
|
16745
16780
|
QUANTITY_CANNOT_BE_LESS_THAN_DELIVERED: string;
|
|
16746
16781
|
QUANTITY_CANNOT_BE_LESS_THAN_INVOICED: string;
|
|
@@ -17061,6 +17096,7 @@ export declare class Dictionaries {
|
|
|
17061
17096
|
RESERVATION_PURCHASEORDER: string;
|
|
17062
17097
|
RESERVATION_STICKER: string;
|
|
17063
17098
|
RESERVED: string;
|
|
17099
|
+
RESET: string;
|
|
17064
17100
|
RESET_FILTER: string;
|
|
17065
17101
|
RESET_FILTERS: string;
|
|
17066
17102
|
RESET_GOOGLE_AUTHENTICATOR: string;
|
|
@@ -17221,6 +17257,7 @@ export declare class Dictionaries {
|
|
|
17221
17257
|
SALESORDER_ASC: string;
|
|
17222
17258
|
SALESORDER_DESC: string;
|
|
17223
17259
|
SALESORDER_DETAIL: string;
|
|
17260
|
+
SALES_TRANSACTION: string;
|
|
17224
17261
|
SALES_AMOUNT2: string;
|
|
17225
17262
|
SALES_AMOUNT: string;
|
|
17226
17263
|
SALES_AMOUNT_DECIM_NOT_COMPLIANT_W_SALES_UNIT: string;
|
|
@@ -17345,6 +17382,7 @@ export declare class Dictionaries {
|
|
|
17345
17382
|
SEARCH_MEMBER_NR: string;
|
|
17346
17383
|
SEARCH_PAYMENT_BATCH: string;
|
|
17347
17384
|
CREATE_PAYMENT_BATCH: string;
|
|
17385
|
+
CREATE_PONTO_INTEGRATION: string;
|
|
17348
17386
|
SEARCHING: string;
|
|
17349
17387
|
SEARCHRESULTS_FOR: string;
|
|
17350
17388
|
SEARCH_ADD_ARTICLE: string;
|
|
@@ -17458,6 +17496,7 @@ export declare class Dictionaries {
|
|
|
17458
17496
|
SELECT_MEDICAL_OFFICER: string;
|
|
17459
17497
|
SELECTED: string;
|
|
17460
17498
|
SELECTED_ADDRESSES: string;
|
|
17499
|
+
SELECTED_BALANCE: string;
|
|
17461
17500
|
SELECTED_CASH_DRAWER: string;
|
|
17462
17501
|
SELECTED_CASH_REGISTER: string;
|
|
17463
17502
|
SELECTED_LINES_NOT_FOUND: string;
|
|
@@ -17709,6 +17748,7 @@ export declare class Dictionaries {
|
|
|
17709
17748
|
SHOW_LIST: string;
|
|
17710
17749
|
SHOW_MORE: string;
|
|
17711
17750
|
SHOW_ON_DASHBOARD: string;
|
|
17751
|
+
SHOW_ORDER: string;
|
|
17712
17752
|
SHOW_OPTION_PRICES: string;
|
|
17713
17753
|
SHOW_ORDERS_WITHOUT_LINES: string;
|
|
17714
17754
|
SHOW_OUTSTANDING_ENTRIES: string;
|
|
@@ -17718,6 +17758,7 @@ export declare class Dictionaries {
|
|
|
17718
17758
|
SHOW_RESULT: string;
|
|
17719
17759
|
SHOW_SELECTED_EXCEPTIONS_ONLY: string;
|
|
17720
17760
|
SHOW_SELECTION: string;
|
|
17761
|
+
SHOW_SERVICE: string;
|
|
17721
17762
|
SHOW_SIGNED_IN: string;
|
|
17722
17763
|
SHOW_SOME: string;
|
|
17723
17764
|
SHOW_STATUSBAR: string;
|
|
@@ -18489,6 +18530,7 @@ export declare class Dictionaries {
|
|
|
18489
18530
|
UNTILL: string;
|
|
18490
18531
|
UPDATE_ALL_SEARCH_INDEXES: string;
|
|
18491
18532
|
UPDATE_ALL_SEARCH_INDEXES_FAST: string;
|
|
18533
|
+
UPDATE_ARTICLES: string;
|
|
18492
18534
|
UPDATE_ARTICLE_PRICE: string;
|
|
18493
18535
|
UPDATE_CONTAINER: string;
|
|
18494
18536
|
UPDATE_DATE: string;
|
|
@@ -18509,6 +18551,7 @@ export declare class Dictionaries {
|
|
|
18509
18551
|
USE: string;
|
|
18510
18552
|
USE_CLASSIFICATION: string;
|
|
18511
18553
|
USE_DEPOSIT_RULE: string;
|
|
18554
|
+
USE_GENERIC_GAMEOBJECT: string;
|
|
18512
18555
|
USED_COUPONS: string;
|
|
18513
18556
|
USED_IN: string;
|
|
18514
18557
|
USER: string;
|
|
@@ -18531,6 +18574,7 @@ export declare class Dictionaries {
|
|
|
18531
18574
|
USER_UNKNOWN: string;
|
|
18532
18575
|
USE_DEFAULTS: string;
|
|
18533
18576
|
USE_GOOGLE: string;
|
|
18577
|
+
USE_GENERAL_GAMEOBJECT: string;
|
|
18534
18578
|
USE_MIN_STOCK_CALC: string;
|
|
18535
18579
|
USE_OWN_ARTICLE_COUNTER: string;
|
|
18536
18580
|
USE_RECOMMENDED_PRICES: string;
|
|
@@ -18540,6 +18584,7 @@ export declare class Dictionaries {
|
|
|
18540
18584
|
USE_TIME_FROM_TIMER: string;
|
|
18541
18585
|
USE_VALUES: string;
|
|
18542
18586
|
USE_WEBVIEW_UI: string;
|
|
18587
|
+
USE_CATALOG_PAGE: string;
|
|
18543
18588
|
UWV_REGISTRATION_NUMBER: string;
|
|
18544
18589
|
VADAIN_DELETE_QUESTION: string;
|
|
18545
18590
|
VADAIN_NOT_ALLOWED_TO_DELETE: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { DictionaryService } from './dictionary.service';
|
|
2
1
|
import { DataServiceResponseData } from '@colijnit/ioneconnector/build/model/data-service-response-data';
|
|
3
2
|
import { CoreDialogService } from '@colijnit/corecomponents_v12';
|
|
3
|
+
import { RelationDictionaryService } from '../translation/relation-dictionary.service';
|
|
4
4
|
export declare class ErrorService {
|
|
5
5
|
private _coreDialogService;
|
|
6
6
|
private _dictionaryService;
|
|
7
|
-
constructor(_coreDialogService: CoreDialogService, _dictionaryService:
|
|
7
|
+
constructor(_coreDialogService: CoreDialogService, _dictionaryService: RelationDictionaryService);
|
|
8
8
|
showValidationError(response: DataServiceResponseData | any): Promise<any>;
|
|
9
9
|
private _messageAsValidationError;
|
|
10
10
|
private _messageDetails;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BehaviorSubject } from 'rxjs';
|
|
2
|
-
import { DictionaryService } from './dictionary.service';
|
|
3
2
|
import { RelationSettings } from '../model/relation-settings';
|
|
3
|
+
import { RelationDictionaryService } from '../translation/relation-dictionary.service';
|
|
4
4
|
export declare class RelationSettingsService {
|
|
5
5
|
private _dictionary;
|
|
6
6
|
readonly languageCodeToDictionary: Map<string, string>;
|
|
@@ -10,7 +10,7 @@ export declare class RelationSettingsService {
|
|
|
10
10
|
get dictionaryKey(): string;
|
|
11
11
|
settingsLoaded: BehaviorSubject<boolean>;
|
|
12
12
|
private _settings;
|
|
13
|
-
constructor(_dictionary:
|
|
13
|
+
constructor(_dictionary: RelationDictionaryService);
|
|
14
14
|
createSettingsFromObject(obj: any): Promise<void>;
|
|
15
15
|
initialize(options: any): Promise<void>;
|
|
16
16
|
}
|
|
@@ -4,7 +4,7 @@ $re-color-font: #171721 !default;
|
|
|
4
4
|
$re-color-action: #1A73E8 !default;
|
|
5
5
|
$re-color-border: #DCE4EA !default;
|
|
6
6
|
$re-color-light: white !default;
|
|
7
|
-
$re-color-background: #
|
|
7
|
+
$re-color-background: #ffffff !default;
|
|
8
8
|
$re-color-background-selected: #f1fcff !default;
|
|
9
9
|
$re-color-background-popup: #212437 !default;
|
|
10
10
|
$re-color-background-popup-item: #2e3350 !default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/relation",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "257.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": ">=
|
|
14
|
-
"@colijnit/ioneconnector": ">=
|
|
15
|
-
"@colijnit/mainapi": ">=
|
|
16
|
-
"@colijnit/relationapi": ">=
|
|
13
|
+
"@colijnit/corecomponents_v12": ">=257.1.0",
|
|
14
|
+
"@colijnit/ioneconnector": ">=257.1.0",
|
|
15
|
+
"@colijnit/mainapi": ">=257.1.0",
|
|
16
|
+
"@colijnit/relationapi": ">=257.1.0",
|
|
17
17
|
"@tweenjs/tween.js": ">=17.2.0",
|
|
18
18
|
"xlsx": ">=0.18.5"
|
|
19
19
|
},
|
package/public_api.d.ts
CHANGED
|
@@ -30,3 +30,4 @@ export * from "./lib/component/relation-title/relation-title.module";
|
|
|
30
30
|
export * from "./lib/service/relation.service";
|
|
31
31
|
export * from './lib/translation/relation-translation.module';
|
|
32
32
|
export * from './lib/translation/relation-translation.service';
|
|
33
|
+
export * from './lib/translation/relation-dictionary.service';
|
|
Binary file
|