@colijnit/relation 260.1.0 → 261.1.0

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 +138 -0
  40. package/package.json +5 -5
@@ -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;
@@ -7953,6 +7954,7 @@ export declare class Dictionaries {
7953
7954
  MESSAGE_DEFAULT_CONTROL_ERROR: string;
7954
7955
  MESSAGE_DEFAULT_REPORTS_LOADED: string;
7955
7956
  MESSAGE_DELETE_CONFIG: string;
7957
+ DEVIATING_EVEN_WEEKS: string;
7956
7958
  DOCUMENT_NUMBER: string;
7957
7959
  DOCUMENT_OPTIONS: string;
7958
7960
  DOCUMENT_SELECTION: string;
@@ -8419,6 +8421,7 @@ export declare class Dictionaries {
8419
8421
  SEND_ACTION_EMAIL: string;
8420
8422
  SEND_ACTION_EP: string;
8421
8423
  SEND_ACTION_FAX: string;
8424
+ MAX_SALES_DISCOUNT_PERC: string;
8422
8425
  MESSAGE_ERROR_LOADING_PRESET: string;
8423
8426
  MESSAGE_ERROR_LOCK_SINGLE: string;
8424
8427
  MESSAGE_ERROR_MENU_DATA: string;
@@ -8575,6 +8578,11 @@ export declare class Dictionaries {
8575
8578
  ARTICLE_TO_CONVERT_FROM: string;
8576
8579
  ARTICLE_TO_CONVERT_TO: string;
8577
8580
  ARTICLE_TYPE: string;
8581
+ ARTICLE_UNIT_CONVERSION: string;
8582
+ FROM_UNIT: string;
8583
+ TO_UNIT: string;
8584
+ CONVERSION_FACTOR: string;
8585
+ CONVERSION_FACTOR_PRICE: string;
8578
8586
  ARTICLE_UNKNOWN: string;
8579
8587
  ARTICLE_WILL_BE_MADE_ACTIVE: string;
8580
8588
  ARTICLE_WILL_BE_MADE_INACTIVE: string;
@@ -8822,7 +8830,9 @@ export declare class Dictionaries {
8822
8830
  ACCOUNT_ACTIVE2: string;
8823
8831
  ACCOUNT_AND_PRIVACY: string;
8824
8832
  ACCOUNT_BUSINESSES: string;
8833
+ ACCOUNT_CONTRA: string;
8825
8834
  ACCOUNT_DETAILS: string;
8835
+ ACCOUNT_DIFF: string;
8826
8836
  ACCOUNT_EXPLANATION: string;
8827
8837
  ACCOUNT_INACTIVE: string;
8828
8838
  ACCOUNT_INACTIVE_PW_NOT_SENT: string;
@@ -9052,6 +9062,7 @@ export declare class Dictionaries {
9052
9062
  ALREADY_SENT: string;
9053
9063
  ALREADY_TO_PICK: string;
9054
9064
  ALREADY_USED_ARTICLENR: string;
9065
+ ALREADY_USED_BARCODE: string;
9055
9066
  ALSO_AS_USDZ: string;
9056
9067
  NO_USER: string;
9057
9068
  NO_VADAIN_ARTICLES: string;
@@ -9167,6 +9178,7 @@ export declare class Dictionaries {
9167
9178
  HIDE: string;
9168
9179
  HIDE_DETAILS: string;
9169
9180
  HIDE_FULLY_INVOICED: string;
9181
+ HIDE_OPTION_IN_FULL_CONFIGURATION: string;
9170
9182
  HIDE_OUTSTANDING_ENTRIES: string;
9171
9183
  HIDE_SOFT_KEYBOARD: string;
9172
9184
  HISTORICALLY_PRINTED: string;
@@ -9197,6 +9209,7 @@ export declare class Dictionaries {
9197
9209
  BANK_BOOK: string;
9198
9210
  BANK_RELATION: string;
9199
9211
  BANK_STATEMENT_APPLICABLE_FOR_PAYMENT: string;
9212
+ BANK_STATEMENT_HOLDING_ACCOUNT: string;
9200
9213
  BANK_STATEMENT_LEDGER_ACCOUNT_TO_LINK: string;
9201
9214
  BANK_STATEMENT_LINK: string;
9202
9215
  BANK_STATEMENT_SEARCH_COLUMN: string;
@@ -9618,11 +9631,13 @@ export declare class Dictionaries {
9618
9631
  ESTIMATION_STANDARD_TIME: string;
9619
9632
  ETA_AT_PORT: string;
9620
9633
  EUROSIGN: string;
9634
+ EUDR_NUMBER: string;
9621
9635
  EVALUATION: string;
9622
9636
  EVENT: string;
9623
9637
  EVENTS: string;
9624
9638
  EVENT_NOTIFICATIONS_CREATED: string;
9625
9639
  EVEN_WEEKS: string;
9640
+ EVEN_WEEK: string;
9626
9641
  EXAMPLE: string;
9627
9642
  EXCEEDANCE_CODE: string;
9628
9643
  EXCEEDENCE_CODE: string;
@@ -9873,6 +9888,7 @@ export declare class Dictionaries {
9873
9888
  EXCLUDE_FROM_INVOICE_CHECK: string;
9874
9889
  EXCLUDE_INVOICE_CHECK: string;
9875
9890
  EXCLUDE_RETURNS: string;
9891
+ EXCLUDE_BALANCE_CALCULATION: string;
9876
9892
  EXCLUSIONS: string;
9877
9893
  EXPORT_GRIDS: string;
9878
9894
  EXPORT_JOBS_NOT_STARTED: string;
@@ -10059,6 +10075,8 @@ export declare class Dictionaries {
10059
10075
  FIELD_NAME: string;
10060
10076
  FIELD_TYPE: string;
10061
10077
  FIFO: string;
10078
+ FIRST_POSTING: string;
10079
+ FIRST_SETTLEMENT_NR: string;
10062
10080
  COST_CENTER: string;
10063
10081
  COST_CENTER_EMPLOYMENT_CONTRACT: string;
10064
10082
  COST_CENTER_TYPE: string;
@@ -10611,6 +10629,7 @@ export declare class Dictionaries {
10611
10629
  COLORS_SELECTED: string;
10612
10630
  COLOR_DESC: string;
10613
10631
  COLOUR: string;
10632
+ COLOR_ADJUSTABLE: string;
10614
10633
  COLUMN: string;
10615
10634
  COLUMNS: string;
10616
10635
  COLUMN_BALANCE: string;
@@ -11695,6 +11714,7 @@ export declare class Dictionaries {
11695
11714
  MARGIN_STATE_ORDER: string;
11696
11715
  MARGIN_TOTAL: string;
11697
11716
  MARITAL_STATUS: string;
11717
+ MAX_DISCOUNT_PERCENTAGE: string;
11698
11718
  MEMBER_NR: string;
11699
11719
  MEMBER_PLANNING: string;
11700
11720
  MENTAL: string;
@@ -12171,6 +12191,7 @@ export declare class Dictionaries {
12171
12191
  OCCUPATIONAL_THERAPY_PERCENTAGE: string;
12172
12192
  OCTOBER: string;
12173
12193
  ODD_WEEKS: string;
12194
+ ODD_WEEK: string;
12174
12195
  OFF: string;
12175
12196
  OFFER: string;
12176
12197
  OFFER_HISTORY: string;
@@ -12993,6 +13014,7 @@ export declare class Dictionaries {
12993
13014
  RESERVATION_PURCHASEORDER: string;
12994
13015
  RESERVATION_STICKER: string;
12995
13016
  RESERVED: string;
13017
+ RESERVED_ORDERED: string;
12996
13018
  RESERVE_STICKERS: string;
12997
13019
  RESET: string;
12998
13020
  RESET_FILTER: string;
@@ -13024,6 +13046,7 @@ export declare class Dictionaries {
13024
13046
  NETTO_PRICE: string;
13025
13047
  NET_LINE_TOTAL: string;
13026
13048
  NET_PURCHASE: string;
13049
+ NETWORK_PRINTERS: string;
13027
13050
  NEVER: string;
13028
13051
  NEW: string;
13029
13052
  NEWS: string;
@@ -14158,6 +14181,9 @@ export declare class Dictionaries {
14158
14181
  TASKNUMBER: string;
14159
14182
  TASKS: string;
14160
14183
  TASKSCREEN: string;
14184
+ THREE_DAYS_VIEW: string;
14185
+ FIVE_DAYS_VIEW: string;
14186
+ WEEK_VIEW: string;
14161
14187
  IBAN: string;
14162
14188
  ICON: string;
14163
14189
  ID: string;
@@ -15051,6 +15077,7 @@ export declare class Dictionaries {
15051
15077
  CMS_3D_DEFAULTS: string;
15052
15078
  CMS_MATERIAL_BATCH_UPLOAD: string;
15053
15079
  COC_NR: string;
15080
+ SCALABLE: string;
15054
15081
  SCALING_AXIS: string;
15055
15082
  SCALING_PARAMETERS: string;
15056
15083
  SCANNED: string;
@@ -15185,6 +15212,7 @@ export declare class Dictionaries {
15185
15212
  PRIVATE_PERSON: string;
15186
15213
  PRIVATE_PHONE: string;
15187
15214
  PRIVATE_WEBSITE: string;
15215
+ PRIVATE_KEY: string;
15188
15216
  PROBA_ADJ_2_RUBRIC: string;
15189
15217
  PROBA_ADJ_3_RUBRIC: string;
15190
15218
  PROBA_ADJ_4_RUBRIC: string;
@@ -15317,6 +15345,7 @@ export declare class Dictionaries {
15317
15345
  PLANNINGS: string;
15318
15346
  PLANNING_OVERVIEW: string;
15319
15347
  PLANNING_PREFERRED_DATE_ENTERED: string;
15348
+ RULE_DESCRIPTION: string;
15320
15349
  START_REVIEW_MODE: string;
15321
15350
  START_ROUTE: string;
15322
15351
  START_SCREEN: string;
@@ -15437,6 +15466,7 @@ export declare class Dictionaries {
15437
15466
  USE_TIME_FROM_TIMER: string;
15438
15467
  PLANNING_REQUEST: string;
15439
15468
  PLANNING_REQUESTED: string;
15469
+ PLANNING_RULE_DETAILS: string;
15440
15470
  PLANNING_RULES: string;
15441
15471
  PLAN_DAYPARTS: string;
15442
15472
  PLAN_DELIVERY: string;
@@ -15793,6 +15823,7 @@ export declare class Dictionaries {
15793
15823
  CONTRA_ACCOUNT: string;
15794
15824
  CONTRA_LEDGERACCOUNT_DOWNPAYMENT: string;
15795
15825
  CONTRA_LEDGER_ACCOUNTS: string;
15826
+ CONTRA_LEDGER_ACCOUNT: string;
15796
15827
  CONTRA_VAT: string;
15797
15828
  SALES_PROVISION: string;
15798
15829
  SALES_QUANTITY: string;
@@ -16029,6 +16060,36 @@ export declare class Dictionaries {
16029
16060
  MESSAGE_TIMEZONES_COULD_NOT_BE_LOADED: string;
16030
16061
  MESSAGE_TIME_NOT_AVAILABLE: string;
16031
16062
  MESSAGE_TO_PAY_DOWN_NO_CUSTOMER: string;
16063
+ SETUP_DETAILS: string;
16064
+ RENDER_INPUT_PARAMETERS: string;
16065
+ "360_RENDER": string;
16066
+ ROTATION_X: string;
16067
+ ROTATION_Y: string;
16068
+ ROTATION_Z: string;
16069
+ CAMERA_DISTANCE: string;
16070
+ FIELD_OF_VIEW: string;
16071
+ SCENE_SETTING: string;
16072
+ ZOOM: string;
16073
+ AUTOFRAME: string;
16074
+ PRERENDER: string;
16075
+ RENDER_REQUEST_SETUP: string;
16076
+ DEFAULT_RESOLUTIONS_FOR_RENDERING: string;
16077
+ SCENE_SETTINGS: string;
16078
+ RESOLUTION_X: string;
16079
+ RESOLUTION_Y: string;
16080
+ OUTPUT: string;
16081
+ RENDER_TYPE: string;
16082
+ PRIMARY_SCENE: string;
16083
+ SECONDARY_SCENE: string;
16084
+ LIGHT_SCENE: string;
16085
+ HDRI_INTENSITY: string;
16086
+ HDRI_ROTATION_X: string;
16087
+ HDRI_ROTATION_Y: string;
16088
+ HDRI_ROTATION_Z: string;
16089
+ SCENE_TYPE: string;
16090
+ RENDER_RESOLUTION: string;
16091
+ UNIT_DETAILS: string;
16092
+ CONVERSION_RATES: string;
16032
16093
  };
16033
16094
  text_fr: {
16034
16095
  "0_RESULTS_FOUND": string;
@@ -22896,6 +22957,7 @@ export declare class Dictionaries {
22896
22957
  PRIVATE_PERSON: string;
22897
22958
  PRIVATE_PHONE: string;
22898
22959
  PRIVATE_WEBSITE: string;
22960
+ PRIVATE_KEY: string;
22899
22961
  PROBA_ADJ_4_RUBRIC: string;
22900
22962
  PROB_AN_11: string;
22901
22963
  "PROB_AN_4.1_FUNCTION_EMPLOYEE": string;
@@ -24164,7 +24226,9 @@ export declare class Dictionaries {
24164
24226
  ACCOUNT_ACTIVE: string;
24165
24227
  ACCOUNT_AND_PRIVACY: string;
24166
24228
  ACCOUNT_BUSINESSES: string;
24229
+ ACCOUNT_CONTRA: string;
24167
24230
  ACCOUNT_DETAILS: string;
24231
+ ACCOUNT_DIFF: string;
24168
24232
  ACCOUNT_EXPLANATION: string;
24169
24233
  ACCOUNT_INACTIVE: string;
24170
24234
  ACCOUNT_INACTIVE_PW_NOT_SENT: string;
@@ -24581,9 +24645,12 @@ export declare class Dictionaries {
24581
24645
  ALLOW_OPEN_ABSENCEFILE: string;
24582
24646
  ALLOW_PART_DELIVERY: string;
24583
24647
  ALLOW_PONTO_CONNECTION: string;
24648
+ ALLOW_REMARK_CREATE: string;
24584
24649
  ALLOW_ROTATION: string;
24585
24650
  ALLOW_SIDEBAR: string;
24586
24651
  ALLOW_STORAGE_DECOUPLING: string;
24652
+ ALLOW_TASK_CREATE: string;
24653
+ ALLOW_WORK_CREATE: string;
24587
24654
  ALL_ADDRESSES: string;
24588
24655
  ALL_AVAILABLE_STOCK_RESERVED_DO_YOU_WANT_TO_TRY_AGAIN_PLEASE_CONFIRM: string;
24589
24656
  ALL_CASH_DRAWERS: string;
@@ -24617,6 +24684,7 @@ export declare class Dictionaries {
24617
24684
  ALREADY_SENT: string;
24618
24685
  ALREADY_TO_PICK: string;
24619
24686
  ALREADY_USED_ARTICLENR: string;
24687
+ ALREADY_USED_BARCODE: string;
24620
24688
  ALSO_COPY: string;
24621
24689
  ALTERNATIVES: string;
24622
24690
  ALTERNATIVE_INVOICE_ADDRESS: string;
@@ -24709,7 +24777,9 @@ export declare class Dictionaries {
24709
24777
  AMOUNT_TO_BE_ALLOCATED_SOURCE: string;
24710
24778
  AMOUNT_TO_BE_ORDERED: string;
24711
24779
  AMOUNT_TO_CONFIRM: string;
24780
+ AMOUNT_TO_ORDER: string;
24712
24781
  AMOUNT_TO_PRINT: string;
24782
+ AMOUNT_TO_RESERVE: string;
24713
24783
  AMOUNT_USED_COUPONS: string;
24714
24784
  AMOUT_TO_SETTLE_CANNOT_BE_GREATER_THAN_TOTAL_PAID_DOWN: string;
24715
24785
  ANALYSIS_ON: string;
@@ -24835,6 +24905,11 @@ export declare class Dictionaries {
24835
24905
  ARTICLE_TO_CONVERT_FROM: string;
24836
24906
  ARTICLE_TO_CONVERT_TO: string;
24837
24907
  ARTICLE_TYPE: string;
24908
+ ARTICLE_UNIT_CONVERSION: string;
24909
+ FROM_UNIT: string;
24910
+ TO_UNIT: string;
24911
+ CONVERSION_FACTOR: string;
24912
+ CONVERSION_FACTOR_PRICE: string;
24838
24913
  ARTICLE_UNKNOWN: string;
24839
24914
  ARTICLE_WILL_BE_MADE_ACTIVE: string;
24840
24915
  ARTICLE_WILL_BE_MADE_INACTIVE: string;
@@ -24942,6 +25017,7 @@ export declare class Dictionaries {
24942
25017
  BANK_BOOK: string;
24943
25018
  BANK_RELATION: string;
24944
25019
  BANK_STATEMENT_APPLICABLE_FOR_PAYMENT: string;
25020
+ BANK_STATEMENT_HOLDING_ACCOUNT: string;
24945
25021
  BANK_STATEMENT_LEDGER_ACCOUNT_TO_LINK: string;
24946
25022
  BANK_STATEMENT_LINK: string;
24947
25023
  BANK_STATEMENT_SEARCH_COLUMN: string;
@@ -25510,6 +25586,7 @@ export declare class Dictionaries {
25510
25586
  COLORS: string;
25511
25587
  COLORS_SELECTED: string;
25512
25588
  COLOR_DESC: string;
25589
+ COLOR_ADJUSTABLE: string;
25513
25590
  COLOUR: string;
25514
25591
  COLUMN: string;
25515
25592
  COLUMNS: string;
@@ -25736,6 +25813,7 @@ export declare class Dictionaries {
25736
25813
  CONTRA_ACCOUNT: string;
25737
25814
  CONTRA_LEDGERACCOUNT_DOWNPAYMENT: string;
25738
25815
  CONTRA_LEDGER_ACCOUNTS: string;
25816
+ CONTRA_LEDGER_ACCOUNT: string;
25739
25817
  CONTRA_VAT: string;
25740
25818
  CONTRIBUTION_EMPLOYER: string;
25741
25819
  CONTROLLED: string;
@@ -26305,6 +26383,7 @@ export declare class Dictionaries {
26305
26383
  DETAIL_CODE2: string;
26306
26384
  DETAIL_CODE: string;
26307
26385
  DETAIL_DESCRIPTION: string;
26386
+ DEVIATING_EVEN_WEEKS: string;
26308
26387
  DEVELOPMENT: string;
26309
26388
  DGA_INSURED: string;
26310
26389
  DIAGNOSIS: string;
@@ -26721,11 +26800,13 @@ export declare class Dictionaries {
26721
26800
  ESTIMATION_STANDARD_TIME: string;
26722
26801
  ETA_AT_PORT: string;
26723
26802
  EUROSIGN: string;
26803
+ EUDR_NUMBER: string;
26724
26804
  EVALUATION: string;
26725
26805
  EVENT: string;
26726
26806
  EVENTS: string;
26727
26807
  EVENT_NOTIFICATIONS_CREATED: string;
26728
26808
  EVEN_WEEKS: string;
26809
+ EVEN_WEEK: string;
26729
26810
  EXAMPLE: string;
26730
26811
  EXCEEDANCE_CODE: string;
26731
26812
  EXCEEDENCE_CODE: string;
@@ -26762,6 +26843,7 @@ export declare class Dictionaries {
26762
26843
  EXCLUDE_ALLOCATED_RETURNS: string;
26763
26844
  EXCLUDE_ALLREADY_CONFIRMED: string;
26764
26845
  EXCLUDE_ALREADY_ARRIVALDATE: string;
26846
+ EXCLUDE_BALANCE_CALCULATION: string;
26765
26847
  EXCLUDE_FROM_HASH: string;
26766
26848
  EXCLUDE_FROM_INVOICE_CHECK: string;
26767
26849
  EXCLUDE_INVOICE_CHECK: string;
@@ -26886,6 +26968,8 @@ export declare class Dictionaries {
26886
26968
  FIELD_TYPE: string;
26887
26969
  FIFO: string;
26888
26970
  FIFOLIFO: string;
26971
+ FIRST_POSTING: string;
26972
+ FIRST_SETTLEMENT_NR: string;
26889
26973
  FILE2: string;
26890
26974
  FILE: string;
26891
26975
  FILENAME_CONTAINS_NO_EXTENSION: string;
@@ -27222,6 +27306,7 @@ export declare class Dictionaries {
27222
27306
  HIDE: string;
27223
27307
  HIDE_DETAILS: string;
27224
27308
  HIDE_FULLY_INVOICED: string;
27309
+ HIDE_OPTION_IN_FULL_CONFIGURATION: string;
27225
27310
  HIDE_OUTSTANDING_ENTRIES: string;
27226
27311
  HIDE_SOFT_KEYBOARD: string;
27227
27312
  HISTORICALLY_PRINTED: string;
@@ -27846,6 +27931,7 @@ export declare class Dictionaries {
27846
27931
  MATURETIES: string;
27847
27932
  MAX: string;
27848
27933
  MAXIMUM_DISCOUNT: string;
27934
+ MAX_DISCOUNT_PERCENTAGE: string;
27849
27935
  MAX_CASH_ON_DELIVERY: string;
27850
27936
  MAX_CONCURRENT_NUMBER_OF_PUBLIC_SESSIONS: string;
27851
27937
  MAX_COUPON_NUMBER: string;
@@ -27861,6 +27947,7 @@ export declare class Dictionaries {
27861
27947
  MAX_ORDER_AMOUNT: string;
27862
27948
  MAX_RESPONSE_TIME: string;
27863
27949
  MAX_RESPONSE_TIME_MINUTES: string;
27950
+ MAX_SALES_DISCOUNT_PERC: string;
27864
27951
  MAX_SEARCH_RESULTS: string;
27865
27952
  MAX_STATE_DURATION: string;
27866
27953
  MAX_STOCK: string;
@@ -28148,6 +28235,7 @@ export declare class Dictionaries {
28148
28235
  MESSAGE_POS_GROUP_WAREHOUSE_EMPTY: string;
28149
28236
  MESSAGE_POS_GROUP_WAREWHOUSE_EMPTY: string;
28150
28237
  MESSAGE_POS_TRANS_NOT_SAVED: string;
28238
+ MESSAGE_PRESET_NAME_EXISTS: string;
28151
28239
  MESSAGE_PRIMARY: string;
28152
28240
  MESSAGE_PROCEED_IN_TRANSACTION: string;
28153
28241
  MESSAGE_QUESTION_SEND_MESSAGES: string;
@@ -28278,6 +28366,7 @@ export declare class Dictionaries {
28278
28366
  MULTIPLE_CHOICE: string;
28279
28367
  MULTIPLE_CONDITIONS: string;
28280
28368
  MULTIPLE_INTERBRANCH_LINES_MESSAGE: string;
28369
+ MULTIPLE_PDFS_MOVED_TO_DOWNLOAD_FOLDER: string;
28281
28370
  MULTIPLE_PURCHASEORDERS: string;
28282
28371
  MULTIPLE_RESERVATIONS: string;
28283
28372
  MULTIPLE_SESSIONS_ARE_NOT_ALLOWED: string;
@@ -28334,6 +28423,7 @@ export declare class Dictionaries {
28334
28423
  NETTO_PRICE: string;
28335
28424
  NET_LINE_TOTAL: string;
28336
28425
  NET_PURCHASE: string;
28426
+ NETWORK_PRINTERS: string;
28337
28427
  NEVER: string;
28338
28428
  NEW: string;
28339
28429
  NEWS: string;
@@ -28710,6 +28800,7 @@ export declare class Dictionaries {
28710
28800
  OCCUPATIONAL_THERAPY_PERCENTAGE: string;
28711
28801
  OCTOBER: string;
28712
28802
  ODD_WEEKS: string;
28803
+ ODD_WEEK: string;
28713
28804
  OFF: string;
28714
28805
  OFFER: string;
28715
28806
  OFFER_HISTORY: string;
@@ -29241,8 +29332,10 @@ export declare class Dictionaries {
29241
29332
  PLANNINGS: string;
29242
29333
  PLANNING_OVERVIEW: string;
29243
29334
  PLANNING_PREFERRED_DATE_ENTERED: string;
29335
+ RULE_DESCRIPTION: string;
29244
29336
  PLANNING_REQUEST: string;
29245
29337
  PLANNING_REQUESTED: string;
29338
+ PLANNING_RULE_DETAILS: string;
29246
29339
  PLANNING_RULES: string;
29247
29340
  PLAN_DAYPARTS: string;
29248
29341
  PLAN_DELIVERY: string;
@@ -29482,6 +29575,7 @@ export declare class Dictionaries {
29482
29575
  PRIVATE_PERSON: string;
29483
29576
  PRIVATE_PHONE: string;
29484
29577
  PRIVATE_WEBSITE: string;
29578
+ PRIVATE_KEY: string;
29485
29579
  PROBA_ADJ_2_RUBRIC: string;
29486
29580
  PROBA_ADJ_3_RUBRIC: string;
29487
29581
  PROBA_ADJ_4_RUBRIC: string;
@@ -29754,6 +29848,7 @@ export declare class Dictionaries {
29754
29848
  QUICK_OPTION_VALUE: string;
29755
29849
  QUOTATION: string;
29756
29850
  QUOTATIONS: string;
29851
+ QUOTATION_CART_OVERVIEW: string;
29757
29852
  QUOTATION_COPIED: string;
29758
29853
  QUOTATION_DATE: string;
29759
29854
  QUOTATION_DATE_CUSTOMER: string;
@@ -29976,6 +30071,8 @@ export declare class Dictionaries {
29976
30071
  REPLACE_ARRIVALDATE_FOR_ALL_ITEMS: string;
29977
30072
  REPLACE_MEDICAL_OFFICER: string;
29978
30073
  REPLENISHMENT: string;
30074
+ REPLENISHMENT_LABEL: string;
30075
+ REPLENISH_PARAMETERS: string;
29979
30076
  REPORT2: string;
29980
30077
  REPORT: string;
29981
30078
  REPORTED_BY: string;
@@ -30032,7 +30129,9 @@ export declare class Dictionaries {
30032
30129
  RESERVATION_ORDERING_STICKER: string;
30033
30130
  RESERVATION_PURCHASEORDER: string;
30034
30131
  RESERVATION_STICKER: string;
30132
+ RESERVE: string;
30035
30133
  RESERVED: string;
30134
+ RESERVED_ORDERED: string;
30036
30135
  RESET: string;
30037
30136
  RESET_CUSTOMER: string;
30038
30137
  RESET_FILTER: string;
@@ -30276,6 +30375,7 @@ export declare class Dictionaries {
30276
30375
  SAVING_SYSTEM_ACTION: string;
30277
30376
  SAVING_WORKFLOW_DELETES_ALL_TEST_DATA: string;
30278
30377
  SBI_CODE: string;
30378
+ SCALABLE: string;
30279
30379
  SCALING_AXIS: string;
30280
30380
  SCALING_PARAMETERS: string;
30281
30381
  SCANNED: string;
@@ -30648,6 +30748,7 @@ export declare class Dictionaries {
30648
30748
  SHOPPING_CART: string;
30649
30749
  SHOPPING_CART_ADD: string;
30650
30750
  SHOPPING_CART_CHECKOUT: string;
30751
+ SHOPPING_CART_CHECKOUT_QUOTATION: string;
30651
30752
  SHOPPING_CART_IN: string;
30652
30753
  SHOPPING_CART_OVERVIEW: string;
30653
30754
  SHOPPING_CART_RESUME: string;
@@ -30684,6 +30785,7 @@ export declare class Dictionaries {
30684
30785
  SHOW_CONTAINER_INFO: string;
30685
30786
  SHOW_CUSTOMIZED_ARTICLES: string;
30686
30787
  SHOW_DASHBOARDS: string;
30788
+ SHOW_DELIVERY_CHECKOUT: string;
30687
30789
  SHOW_DETAILS: string;
30688
30790
  SHOW_FULLY_ACCEPTED: string;
30689
30791
  SHOW_FULL_CONFIGURATION: string;
@@ -30704,6 +30806,7 @@ export declare class Dictionaries {
30704
30806
  SHOW_OPTION_PRICES: string;
30705
30807
  SHOW_ORDERS_WITHOUT_LINES: string;
30706
30808
  SHOW_OUTSTANDING_ENTRIES: string;
30809
+ SHOW_PAYMENT_CHECKOUT: string;
30707
30810
  SHOW_POPUP: string;
30708
30811
  SHOW_PRIVACY_PREFERENCES: string;
30709
30812
  SHOW_REGULAR_ARTICLES: string;
@@ -30845,6 +30948,7 @@ export declare class Dictionaries {
30845
30948
  START_ARTICLE_IMPORT: string;
30846
30949
  START_ARTICLE_IMPORT_DONE: string;
30847
30950
  START_ARTICLE_IMPORT_DONE_AMT: string;
30951
+ START_ARTICLE_IMPORT_FAILED: string;
30848
30952
  START_BALANCE: string;
30849
30953
  START_BALANCE_SET: string;
30850
30954
  START_CAT_IMPORT: string;
@@ -31161,6 +31265,9 @@ export declare class Dictionaries {
31161
31265
  THEME: string;
31162
31266
  THIS_MONTH: string;
31163
31267
  THIS_WEEK: string;
31268
+ THREE_DAYS_VIEW: string;
31269
+ FIVE_DAYS_VIEW: string;
31270
+ WEEK_VIEW: string;
31164
31271
  THROUGH_MONTH: string;
31165
31272
  THURSDAY: string;
31166
31273
  THURSDAY_ABBREVATION: string;
@@ -31323,6 +31430,7 @@ export declare class Dictionaries {
31323
31430
  TRACK_BY_LOCATION: string;
31324
31431
  TRAFFIC_ACCIDENT: string;
31325
31432
  TRANSACTION: string;
31433
+ TRANSITION_FUNCTION: string;
31326
31434
  TRANSACTIONNR_ISSUED: string;
31327
31435
  TRANSACTIONS: string;
31328
31436
  TRANSACTIONTYPE: string;
@@ -31846,5 +31954,35 @@ export declare class Dictionaries {
31846
31954
  ">_30_DAYS": string;
31847
31955
  "30_60_DAYS": string;
31848
31956
  ">_60_DAYS": string;
31957
+ SETUP_DETAILS: string;
31958
+ RENDER_INPUT_PARAMETERS: string;
31959
+ "360_RENDER": string;
31960
+ ROTATION_X: string;
31961
+ ROTATION_Y: string;
31962
+ ROTATION_Z: string;
31963
+ CAMERA_DISTANCE: string;
31964
+ FIELD_OF_VIEW: string;
31965
+ SCENE_SETTING: string;
31966
+ ZOOM: string;
31967
+ AUTOFRAME: string;
31968
+ PRERENDER: string;
31969
+ RENDER_REQUEST_SETUP: string;
31970
+ SCENE_SETTINGS: string;
31971
+ RESOLUTION_X: string;
31972
+ RESOLUTION_Y: string;
31973
+ OUTPUT: string;
31974
+ RENDER_TYPE: string;
31975
+ PRIMARY_SCENE: string;
31976
+ SECONDARY_SCENE: string;
31977
+ LIGHT_SCENE: string;
31978
+ HDRI_INTENSITY: string;
31979
+ HDRI_ROTATION_X: string;
31980
+ HDRI_ROTATION_Y: string;
31981
+ HDRI_ROTATION_Z: string;
31982
+ SCENE_TYPE: string;
31983
+ DEFAULT_RESOLUTIONS_FOR_RENDERING: string;
31984
+ RENDER_RESOLUTION: string;
31985
+ UNIT_DETAILS: string;
31986
+ CONVERSION_RATES: string;
31849
31987
  };
31850
31988
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/relation",
3
- "version": "260.1.0",
3
+ "version": "261.1.0",
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": ">=260.1.0",
14
- "@colijnit/ioneconnector": ">=260.1.0",
15
- "@colijnit/mainapi": ">=260.1.0",
16
- "@colijnit/relationapi": ">=260.1.0",
13
+ "@colijnit/corecomponents_v12": ">=261.1.0",
14
+ "@colijnit/ioneconnector": ">=261.1.0",
15
+ "@colijnit/mainapi": ">=261.1.0",
16
+ "@colijnit/relationapi": ">=261.1.0",
17
17
  "@tweenjs/tween.js": ">=17.2.0",
18
18
  "xlsx": ">=0.18.5"
19
19
  },