@colijnit/sharedcomponents 256.1.3 → 256.1.5

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 (35) hide show
  1. package/bundles/colijnit-sharedcomponents.umd.js +512 -240
  2. package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
  3. package/colijnit-sharedcomponents.d.ts +113 -109
  4. package/colijnit-sharedcomponents.metadata.json +1 -1
  5. package/esm2015/colijnit-sharedcomponents.js +114 -110
  6. package/esm2015/lib/components/custom-pdf/custom-pdf-dialog.component.js +182 -0
  7. package/esm2015/lib/components/custom-pdf/custom-pdf-dialog.module.js +26 -0
  8. package/esm2015/lib/components/send-method-dialog/components/additional-file-button/additional-file-button.component.js +52 -0
  9. package/esm2015/lib/components/send-method-dialog/components/additional-file-button/additional-file-button.module.js +23 -0
  10. package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.js +27 -5
  11. package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.module.js +6 -2
  12. package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +17 -4
  13. package/esm2015/lib/enum/icon.enum.js +2 -1
  14. package/esm2015/lib/model/icon-svg.js +2 -1
  15. package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
  16. package/fesm2015/colijnit-sharedcomponents.js +349 -50
  17. package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
  18. package/lib/components/custom-pdf/custom-pdf-dialog.component.d.ts +34 -0
  19. package/lib/components/custom-pdf/custom-pdf-dialog.module.d.ts +2 -0
  20. package/lib/components/custom-pdf/style/_layout.scss +22 -0
  21. package/lib/components/custom-pdf/style/_material-definition.scss +0 -0
  22. package/lib/components/custom-pdf/style/_theme.scss +5 -0
  23. package/lib/components/custom-pdf/style/material.scss +4 -0
  24. package/lib/components/send-method-dialog/components/additional-file-button/additional-file-button.component.d.ts +18 -0
  25. package/lib/components/send-method-dialog/components/additional-file-button/additional-file-button.module.d.ts +2 -0
  26. package/lib/components/send-method-dialog/components/additional-file-button/style/_layout.scss +29 -0
  27. package/lib/components/send-method-dialog/components/additional-file-button/style/_material-definition.scss +8 -0
  28. package/lib/components/send-method-dialog/components/additional-file-button/style/_theme.scss +4 -0
  29. package/lib/components/send-method-dialog/components/additional-file-button/style/material.scss +4 -0
  30. package/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.d.ts +11 -1
  31. package/lib/components/send-method-dialog/send-method-dialog.component.d.ts +13 -0
  32. package/lib/components/task-creator/style/_layout.scss +26 -15
  33. package/lib/enum/icon.enum.d.ts +1 -0
  34. package/lib/res/dictionary/dictionaries.d.ts +29 -0
  35. package/package.json +2 -2
@@ -0,0 +1,34 @@
1
+ import { AfterViewInit, ElementRef, EventEmitter, OnInit } from "@angular/core";
2
+ import { IconCacheService } from '../../service/icon-cache.service';
3
+ import { DomSanitizer } from "@angular/platform-browser";
4
+ import SignaturePad from "signature_pad";
5
+ import { CoDocument } from "@colijnit/mainapi/build/model/co-document";
6
+ import { Icon } from '../../enum/icon.enum';
7
+ export declare class CustomPdfDialogComponent implements OnInit, AfterViewInit {
8
+ iconCacheService: IconCacheService;
9
+ private _sanitizer;
10
+ readonly icons: typeof Icon;
11
+ showClass(): boolean;
12
+ pdfBody: ElementRef;
13
+ additionalFileContents: any;
14
+ additionalFileName: string;
15
+ closePDFDialog: EventEmitter<any>;
16
+ additionalFileChangeEvent: EventEmitter<CoDocument>;
17
+ canvas: HTMLCanvasElement;
18
+ context: CanvasRenderingContext2D;
19
+ signature: SignaturePad;
20
+ signatureCanvas: ElementRef;
21
+ fileBody: any;
22
+ fileStyle: string;
23
+ constructor(iconCacheService: IconCacheService, _sanitizer: DomSanitizer);
24
+ ngOnInit(): void;
25
+ ngAfterViewInit(): void;
26
+ extractStyleParts(html: string): string[];
27
+ removeStyleAndScriptTags(html: string): string;
28
+ extractBodyContents(html: string): string[];
29
+ handleSaveClicked(): Promise<void>;
30
+ dataURItoBlob(dataURI: any): File;
31
+ handleClear(event?: MouseEvent): void;
32
+ private _initCanvas;
33
+ private _resizeSignatureCanvas;
34
+ }
@@ -0,0 +1,2 @@
1
+ export declare class CustomPdfDialogModule {
2
+ }
@@ -0,0 +1,22 @@
1
+ @include export-module('co-custom-pdf-dialog-layout') {
2
+ .co-custom-pdf-dialog {
3
+ background: #fff;
4
+ /* Do not change these values, the 'view' of the pdf needs to be this size or else it will not work */
5
+ #pdfBody {
6
+ background: #fff;
7
+ min-width: 1080px;
8
+ overflow-x: scroll;
9
+ }
10
+ .co-dialog {
11
+ .co-dialog-wrapper {
12
+ max-height: 95vh;
13
+ max-width: 1125px;
14
+ width: 100% !important;
15
+ padding: 10px;
16
+ background-color: #f8f8fa;
17
+ }
18
+ }
19
+ }
20
+ }
21
+
22
+
@@ -0,0 +1,5 @@
1
+ @include export-module('co-custom-pdf-dialog-theme') {
2
+ .co-custom-pdf-dialog {
3
+
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ @import "../../../style/mixin";
2
+ @import "./material-definition";
3
+ @import "./layout";
4
+ @import "./theme";
@@ -0,0 +1,18 @@
1
+ import { EventEmitter } from "@angular/core";
2
+ import { Icon } from "../../../../enum/icon.enum";
3
+ import { IconCacheService } from "../../../../service/icon-cache.service";
4
+ import { ReportingDocumentEmailSignDocBaseRequest } from "@colijnit/mainapi/build/model/reporting-document-email-sign-doc-base-request";
5
+ import { ReportingDocumentPrintSignDocBaseRequest } from "@colijnit/mainapi/build/model/reporting-document-print-sign-doc-base-request";
6
+ import { CoDocument } from "@colijnit/mainapi/build/model/co-document";
7
+ export declare class AdditionalFileButtonComponent {
8
+ iconCacheService: IconCacheService;
9
+ readonly icons: typeof Icon;
10
+ request: ReportingDocumentEmailSignDocBaseRequest | ReportingDocumentPrintSignDocBaseRequest;
11
+ additionalFileContents: any;
12
+ additionalFileName: string;
13
+ additionalFileChangeEvent: EventEmitter<CoDocument>;
14
+ showClass(): boolean;
15
+ show: boolean;
16
+ constructor(iconCacheService: IconCacheService);
17
+ handleToggleDialog(): void;
18
+ }
@@ -0,0 +1,2 @@
1
+ export declare class AdditionalFileButtonModule {
2
+ }
@@ -0,0 +1,29 @@
1
+ @include export-module('cc-additional-file-button-layout') {
2
+ .co-additional-file-button {
3
+ .additional-file-button-wrapper {
4
+ height: $sc-co-signature-button-height;
5
+ width: $sc-co-signature-button-width;
6
+ display: flex;
7
+ align-items: center;
8
+ justify-content: center;
9
+ background-color: $sc-co-signature-button-background-color;
10
+ border-radius: $sc-co-signature-button-border-radius;
11
+ cursor: pointer;
12
+ .co-icon {
13
+ width: $sc-co-signature-button-icon-width;
14
+ height: $sc-co-signature-button-icon-height;
15
+ }
16
+ &.selected {
17
+ background-color: $sc-co-signature-button-selected-background-color;
18
+ .co-icon {
19
+ svg { // for fontawesome icons
20
+ fill: $sc-co-signature-button-icon-selected-color;
21
+ }
22
+ & [fill] { // for own icons
23
+ fill: $sc-co-signature-button-icon-selected-color;
24
+ }
25
+ }
26
+ }
27
+ }
28
+ }
29
+ }
@@ -0,0 +1,8 @@
1
+ $sc-co-signature-button-height: 40px !default;
2
+ $sc-co-signature-button-width: 40px !default;
3
+ $sc-co-signature-button-background-color: #f5f5fc !default;
4
+ $sc-co-signature-button-selected-background-color: #1A73E8 !default;
5
+ $sc-co-signature-button-border-radius: 5px !default;
6
+ $sc-co-signature-button-icon-height: 30px !default;
7
+ $sc-co-signature-button-icon-width: 30px !default;
8
+ $sc-co-signature-button-icon-selected-color: white !default;
@@ -0,0 +1,4 @@
1
+ @include export-module('cc-signature-button-theme') {
2
+ .co-signature-button {
3
+ }
4
+ }
@@ -0,0 +1,4 @@
1
+ @import "../../../../../style/mixin";
2
+ @import "./_material-definition";
3
+ @import "./_layout";
4
+ @import "./_theme";
@@ -1,13 +1,23 @@
1
+ import { EventEmitter } from '@angular/core';
1
2
  import { SendMethodService } from '../../service/send-method.service';
2
3
  import { ReportLayoutSelectionPrint } from '@colijnit/mainapi/build/model/report-layout-selection-print.bo';
3
4
  import { Printer } from '@colijnit/mainapi/build/model/printer.bo';
5
+ import { Icon } from "../../../../enum/icon.enum";
6
+ import { IconCacheService } from "../../../../service/icon-cache.service";
7
+ import { CoDocument } from "@colijnit/mainapi/build/model/co-document";
4
8
  export declare class SendMethodPrinterComponent {
5
9
  sendMethodService: SendMethodService;
10
+ iconCacheService: IconCacheService;
6
11
  printerList: Printer[];
7
12
  layouts: ReportLayoutSelectionPrint[];
8
13
  isPrinterLayoutsEnabled: boolean;
14
+ isAdditionalDocEnabled: boolean;
9
15
  showClass(): boolean;
10
- constructor(sendMethodService: SendMethodService);
16
+ additionalFileContents: any;
17
+ additionalFileName: string;
18
+ additionalFileChangeEvent: EventEmitter<CoDocument>;
19
+ constructor(sendMethodService: SendMethodService, iconCacheService: IconCacheService);
11
20
  handleDefaultPrinterUserChange(checked: boolean): void;
12
21
  handleDefaultPrinterAllUsersChange(checked: boolean): void;
22
+ protected readonly icons: typeof Icon;
13
23
  }
@@ -11,6 +11,7 @@ import { SendMethodType } from '@colijnit/mainapi/build/enum/send-method-type.en
11
11
  import { Printer } from '@colijnit/mainapi/build/model/printer.bo';
12
12
  import { ReportingDocumentEmailSignDocBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-email-sign-doc-base-request';
13
13
  import { ReportingDocumentPrintSignDocBaseRequest } from "@colijnit/mainapi/build/model/reporting-document-print-sign-doc-base-request";
14
+ import { CoDocument } from "@colijnit/mainapi/build/model/co-document";
14
15
  export declare const sendMethodsWithIcon: SendMethod[];
15
16
  export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
16
17
  iconCacheService: IconCacheService;
@@ -40,12 +41,16 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
40
41
  isDocSignEnabled: boolean;
41
42
  docSign: boolean;
42
43
  isPrinterLayoutsEnabled: boolean;
44
+ isAdditionalDocEnabled: boolean;
45
+ additionalFileName: string;
46
+ additionalFileContents: any;
43
47
  reportingDocumentPrintRequestChange: EventEmitter<ReportingDocumentPrintSignDocBaseRequest>;
44
48
  reportingDocumentEmailRequestChange: EventEmitter<ReportingDocumentEmailSignDocBaseRequest>;
45
49
  reportingDocumentPdfRequestChange: EventEmitter<ReportingDocumentPdfBaseRequest>;
46
50
  startSignatureClicked: EventEmitter<any>;
47
51
  closeClick: EventEmitter<MouseEvent>;
48
52
  okClick: EventEmitter<string>;
53
+ additionalFileChangeEvent: EventEmitter<CoDocument>;
49
54
  showClass(): boolean;
50
55
  sendMethods: SendMethod[];
51
56
  activeSendMethod: SendMethod;
@@ -68,4 +73,12 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
68
73
  private _initDefaultSendMethod;
69
74
  private _selectDefaultSendMethod;
70
75
  private _prepareVisibleMethods;
76
+ protected readonly Event: {
77
+ new (type: string, eventInitDict?: EventInit): Event;
78
+ prototype: Event;
79
+ readonly AT_TARGET: number;
80
+ readonly BUBBLING_PHASE: number;
81
+ readonly CAPTURING_PHASE: number;
82
+ readonly NONE: number;
83
+ };
71
84
  }
@@ -7,7 +7,7 @@
7
7
  }
8
8
  .task-creator-wrapper {
9
9
  margin-left: 40px;
10
- box-shadow: 0px 2px 4px 0px #0000001A;
10
+ box-shadow: 0 1px 4px 0 #8083a385;
11
11
  border-radius: 5px;
12
12
  }
13
13
  .top-rows {
@@ -33,36 +33,25 @@
33
33
  left: 0;
34
34
  top: 0;
35
35
  height: fit-content;
36
- background: linear-gradient(180deg, rgba(15, 64, 130, 0.04) 3%, rgba(26, 115, 232, 0.04) 90%);
37
- box-shadow: 0 4px 4px 0 #0000001A;
38
- border: 1px solid #DEDEEF;
39
-
36
+ box-shadow: 0 2px 2px 0 #0000001A;
37
+ border-radius: 3px;
40
38
  .icon-item {
41
39
  display: flex;
42
40
  align-items: center;
43
41
  position: relative;
44
-
45
- &.menu-opened {
46
- background: #f6f9fc;
47
- }
48
-
49
42
  .drop-arrow {
50
43
  display: none;
51
44
  }
52
-
53
45
  .label {
54
46
  display: none;
55
47
  }
56
-
57
48
  .co-icon {
58
49
  padding: 2px;
59
50
  }
60
51
  }
61
-
62
52
  & > .icon-item {
63
53
  cursor: pointer;
64
54
  padding: 5px;
65
-
66
55
  &:after {
67
56
  content: '';
68
57
  width: 0;
@@ -140,13 +129,15 @@
140
129
  min-height: auto;
141
130
  overflow-x: auto;
142
131
  .co-drag-drop-container {
143
- padding-top: 30px;
132
+ padding-top: 40px;
144
133
  position: relative;
145
134
  margin-top: 0;
146
135
  gap: 5px;
147
136
  align-items: flex-start;
148
137
  .add-file {
149
138
  top: 0;
139
+ right: 0;
140
+ z-index: 2;
150
141
  .co-tile-render {
151
142
  display: flex;
152
143
  align-items: center;
@@ -154,11 +145,31 @@
154
145
  .add-button {
155
146
  position: unset;
156
147
  }
148
+ .info {
149
+ display: none;
150
+ }
157
151
  }
158
152
  .description {
159
153
  font-weight: bold;
160
154
  font-size: 12px;
161
155
  }
156
+ svg {
157
+ path {
158
+ fill: #1A73E8;
159
+ }
160
+ path + path {
161
+ display: none;
162
+ }
163
+ }
164
+ .co-icon {
165
+ width: 40px;
166
+ height: 40px;
167
+ }
168
+ }
169
+ .add-dropzone {
170
+ position: relative;
171
+ top: -30px;
172
+ z-index: 1;
162
173
  }
163
174
  .tile {
164
175
  padding: 10px;
@@ -57,6 +57,7 @@ export declare enum Icon {
57
57
  Print = "print",
58
58
  PrintRegular = "print_regular",
59
59
  PrintSolid = "print_solid",
60
+ RegularFileSignatureCirclePlus = "regular_file_signature_circle_plus",
60
61
  SignatureField = "signature_field",
61
62
  SquarePlusRegular = "square_plus_regular",
62
63
  TagRegular = "tag_regular",
@@ -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;
@@ -2491,6 +2493,7 @@ export declare class Dictionaries {
2491
2493
  ALLOWED_CHANGES: string;
2492
2494
  ALLOW_OPEN_ABSENCEFILE: string;
2493
2495
  ALLOW_PART_DELIVERY: string;
2496
+ ALLOW_PONTO_CONNECTION: string;
2494
2497
  ALLOW_ROTATION: string;
2495
2498
  ALLOW_SIDEBAR: string;
2496
2499
  ALLOW_STORAGE_DECOUPLING: string;
@@ -2900,6 +2903,7 @@ export declare class Dictionaries {
2900
2903
  DIMENSION_STEP_1_MSG2: string;
2901
2904
  DIMENSION_STEP_2_MSG: string;
2902
2905
  DIMENSION_STEP_3_MSG: string;
2906
+ DROPZONE_TEXT: string;
2903
2907
  AMORTIZATION: string;
2904
2908
  AMORTIZATION_ENTRY: string;
2905
2909
  AMORTIZATION_GRID_HEADER: string;
@@ -3165,6 +3169,7 @@ export declare class Dictionaries {
3165
3169
  RESERVATION_PURCHASEORDER: string;
3166
3170
  RESERVATION_STICKER: string;
3167
3171
  RESERVED: string;
3172
+ RESET: string;
3168
3173
  RESERVE_STICKERS: string;
3169
3174
  RESET_FILTER: string;
3170
3175
  RESET_FILTERS: string;
@@ -3928,6 +3933,7 @@ export declare class Dictionaries {
3928
3933
  LOAD_ALL_NODES: string;
3929
3934
  LOAD_DEFAULT_REPORTS: string;
3930
3935
  LOAD_LINES: string;
3936
+ LOAD_PONTO_TRANSACTIONS: string;
3931
3937
  LOAD_TRANSACTION: string;
3932
3938
  LOC: string;
3933
3939
  LOCAL_CASH_DRAWER_COMM_PORT: string;
@@ -4702,6 +4708,7 @@ export declare class Dictionaries {
4702
4708
  QR_CODE_SCANNER: string;
4703
4709
  QR_SCAN: string;
4704
4710
  QUANTITY: string;
4711
+ QUANTITY_ACCEPTED: string;
4705
4712
  QUANTITY_CANNOT_BE_LESS_THAN_ALLOCATED: string;
4706
4713
  QUANTITY_CANNOT_BE_LESS_THAN_DELIVERED: string;
4707
4714
  QUANTITY_CANNOT_BE_LESS_THAN_INVOICED: string;
@@ -6495,6 +6502,7 @@ export declare class Dictionaries {
6495
6502
  SHOW_ON_DASHBOARD: string;
6496
6503
  SHOW_OPTION_PRICES: string;
6497
6504
  SHOW_ORDERS_WITHOUT_LINES: string;
6505
+ SHOW_ORDER: string;
6498
6506
  SHOW_OUTSTANDING_ENTRIES: string;
6499
6507
  SHOW_POPUP: string;
6500
6508
  SHOW_PRIVACY_PREFERENCES: string;
@@ -6502,6 +6510,7 @@ export declare class Dictionaries {
6502
6510
  SHOW_RESULT: string;
6503
6511
  SHOW_SELECTED_EXCEPTIONS_ONLY: string;
6504
6512
  SHOW_SELECTION: string;
6513
+ SHOW_SERVICE: string;
6505
6514
  SHOW_SIGNED_IN: string;
6506
6515
  SHOW_SOME: string;
6507
6516
  SHOW_STATUSBAR: string;
@@ -7108,6 +7117,7 @@ export declare class Dictionaries {
7108
7117
  CREATE_NEW_WORK: string;
7109
7118
  CREATE_OR_PICK_EXPORT: string;
7110
7119
  CREATE_PAYMENT_BATCH: string;
7120
+ CREATE_PONTO_INTEGRATION: string;
7111
7121
  CREATE_PREVENTIVE_ABSENCE_FILE: string;
7112
7122
  CREATE_PURCHASE_ORDER: string;
7113
7123
  CREATE_REFERENCE_FILE: string;
@@ -7292,6 +7302,7 @@ export declare class Dictionaries {
7292
7302
  NEXT_ORDER: string;
7293
7303
  NEXT_PAGE: string;
7294
7304
  NEXT_SLASH_FINISH: string;
7305
+ NEXT_STATE: string;
7295
7306
  NEXT_VERSION: string;
7296
7307
  NEXT_WEEK: string;
7297
7308
  NIGHT_ROUTINE: string;
@@ -7544,6 +7555,7 @@ export declare class Dictionaries {
7544
7555
  SALESORDER_ASC: string;
7545
7556
  SALESORDER_DESC: string;
7546
7557
  SALESORDER_DETAIL: string;
7558
+ SALES_TRANSACTION: string;
7547
7559
  SALES_AMOUNT: string;
7548
7560
  SALES_AMOUNT2: string;
7549
7561
  SALES_AMOUNT_DECIM_NOT_COMPLIANT_W_SALES_UNIT: string;
@@ -8219,6 +8231,7 @@ export declare class Dictionaries {
8219
8231
  UNTILL: string;
8220
8232
  UPDATE_ALL_SEARCH_INDEXES: string;
8221
8233
  UPDATE_ALL_SEARCH_INDEXES_FAST: string;
8234
+ UPDATE_ARTICLES: string;
8222
8235
  UPDATE_ARTICLE_PRICE: string;
8223
8236
  UPDATE_CONTAINER: string;
8224
8237
  UPDATE_DATE: string;
@@ -11743,6 +11756,7 @@ export declare class Dictionaries {
11743
11756
  ALLOWED_CHANGES: string;
11744
11757
  ALLOW_OPEN_ABSENCEFILE: string;
11745
11758
  ALLOW_PART_DELIVERY: string;
11759
+ ALLOW_PONTO_CONNECTION: string;
11746
11760
  ALLOW_ROTATION: string;
11747
11761
  ALLOW_SIDEBAR: string;
11748
11762
  ALLOW_STORAGE_DECOUPLING: string;
@@ -12398,6 +12412,7 @@ export declare class Dictionaries {
12398
12412
  CATALOG_EDITION: string;
12399
12413
  CATALOG_FILE_NAME: string;
12400
12414
  CATALOG_MANAGEMENT: string;
12415
+ CATALOG_TYPES: string;
12401
12416
  CATEGORIES: string;
12402
12417
  CATEGORY: string;
12403
12418
  CATEGORY_NR: string;
@@ -12632,6 +12647,7 @@ export declare class Dictionaries {
12632
12647
  COLLAPSE_ALL: string;
12633
12648
  COLLATE_ORDERFORMS: string;
12634
12649
  COLLECT: string;
12650
+ COLLECTION: string;
12635
12651
  COLLECTION_CODE: string;
12636
12652
  COLLECTION_CODE_CATEGORIES: string;
12637
12653
  COLLECTION_LIST: string;
@@ -12644,6 +12660,7 @@ export declare class Dictionaries {
12644
12660
  COLORS: string;
12645
12661
  COLORS_SELECTED: string;
12646
12662
  COLOR_DESC: string;
12663
+ COLOUR: string;
12647
12664
  COLUMN: string;
12648
12665
  COLUMNS: string;
12649
12666
  COLUMN_BALANCE: string;
@@ -13566,6 +13583,7 @@ export declare class Dictionaries {
13566
13583
  DROPSHIPMENT_INFO: string;
13567
13584
  DROPSHIPMENT_POSSIBLE: string;
13568
13585
  DROPSHIPPING_ADDRESS_CURRENT_ORDER: string;
13586
+ DROPZONE_TEXT: string;
13569
13587
  DROP_ZONE_DOCUMENTS: string;
13570
13588
  DROP_ZONE_IMAGES: string;
13571
13589
  DROP_ZONE_SALARY_INFO: string;
@@ -14812,6 +14830,7 @@ export declare class Dictionaries {
14812
14830
  LOAD_ALL_NODES: string;
14813
14831
  LOAD_DEFAULT_REPORTS: string;
14814
14832
  LOAD_LINES: string;
14833
+ LOAD_PONTO_TRANSACTIONS: string;
14815
14834
  LOAD_TRANSACTION: string;
14816
14835
  LOC: string;
14817
14836
  LOCAL_CASH_DRAWER_COMM_PORT: string;
@@ -15489,6 +15508,7 @@ export declare class Dictionaries {
15489
15508
  NEXT_ORDER: string;
15490
15509
  NEXT_PAGE: string;
15491
15510
  NEXT_SLASH_FINISH: string;
15511
+ NEXT_STATE: string;
15492
15512
  NEXT_VERSION: string;
15493
15513
  NEXT_WEEK: string;
15494
15514
  NIGHT_ROUTINE: string;
@@ -16307,6 +16327,7 @@ export declare class Dictionaries {
16307
16327
  PLAN_RESTRICTED: string;
16308
16328
  PLAN_RESTRICT_USERS: string;
16309
16329
  PLAN_YOUR_DELIVERY: string;
16330
+ PLEASE_ADD_AT_LEAST_ONE_ADDRESS: string;
16310
16331
  PLEASE_ADJUST_SUPPLIER_ON_ARTICLE_LEVEL: string;
16311
16332
  PLEASE_CLOSE_HTML_EDITOR: string;
16312
16333
  PLEASE_CLOSE_MODULE_AND_TRY_AGAIN: string;
@@ -16753,6 +16774,7 @@ export declare class Dictionaries {
16753
16774
  QR_CODE_SCANNER: string;
16754
16775
  QR_SCAN: string;
16755
16776
  QUANTITY: string;
16777
+ QUANTITY_ACCEPTED: string;
16756
16778
  QUANTITY_CANNOT_BE_LESS_THAN_ALLOCATED: string;
16757
16779
  QUANTITY_CANNOT_BE_LESS_THAN_DELIVERED: string;
16758
16780
  QUANTITY_CANNOT_BE_LESS_THAN_INVOICED: string;
@@ -17073,6 +17095,7 @@ export declare class Dictionaries {
17073
17095
  RESERVATION_PURCHASEORDER: string;
17074
17096
  RESERVATION_STICKER: string;
17075
17097
  RESERVED: string;
17098
+ RESET: string;
17076
17099
  RESET_FILTER: string;
17077
17100
  RESET_FILTERS: string;
17078
17101
  RESET_GOOGLE_AUTHENTICATOR: string;
@@ -17233,6 +17256,7 @@ export declare class Dictionaries {
17233
17256
  SALESORDER_ASC: string;
17234
17257
  SALESORDER_DESC: string;
17235
17258
  SALESORDER_DETAIL: string;
17259
+ SALES_TRANSACTION: string;
17236
17260
  SALES_AMOUNT2: string;
17237
17261
  SALES_AMOUNT: string;
17238
17262
  SALES_AMOUNT_DECIM_NOT_COMPLIANT_W_SALES_UNIT: string;
@@ -17357,6 +17381,7 @@ export declare class Dictionaries {
17357
17381
  SEARCH_MEMBER_NR: string;
17358
17382
  SEARCH_PAYMENT_BATCH: string;
17359
17383
  CREATE_PAYMENT_BATCH: string;
17384
+ CREATE_PONTO_INTEGRATION: string;
17360
17385
  SEARCHING: string;
17361
17386
  SEARCHRESULTS_FOR: string;
17362
17387
  SEARCH_ADD_ARTICLE: string;
@@ -17722,6 +17747,7 @@ export declare class Dictionaries {
17722
17747
  SHOW_LIST: string;
17723
17748
  SHOW_MORE: string;
17724
17749
  SHOW_ON_DASHBOARD: string;
17750
+ SHOW_ORDER: string;
17725
17751
  SHOW_OPTION_PRICES: string;
17726
17752
  SHOW_ORDERS_WITHOUT_LINES: string;
17727
17753
  SHOW_OUTSTANDING_ENTRIES: string;
@@ -17731,6 +17757,7 @@ export declare class Dictionaries {
17731
17757
  SHOW_RESULT: string;
17732
17758
  SHOW_SELECTED_EXCEPTIONS_ONLY: string;
17733
17759
  SHOW_SELECTION: string;
17760
+ SHOW_SERVICE: string;
17734
17761
  SHOW_SIGNED_IN: string;
17735
17762
  SHOW_SOME: string;
17736
17763
  SHOW_STATUSBAR: string;
@@ -18502,6 +18529,7 @@ export declare class Dictionaries {
18502
18529
  UNTILL: string;
18503
18530
  UPDATE_ALL_SEARCH_INDEXES: string;
18504
18531
  UPDATE_ALL_SEARCH_INDEXES_FAST: string;
18532
+ UPDATE_ARTICLES: string;
18505
18533
  UPDATE_ARTICLE_PRICE: string;
18506
18534
  UPDATE_CONTAINER: string;
18507
18535
  UPDATE_DATE: string;
@@ -18555,6 +18583,7 @@ export declare class Dictionaries {
18555
18583
  USE_TIME_FROM_TIMER: string;
18556
18584
  USE_VALUES: string;
18557
18585
  USE_WEBVIEW_UI: string;
18586
+ USE_CATALOG_PAGE: string;
18558
18587
  UWV_REGISTRATION_NUMBER: string;
18559
18588
  VADAIN_DELETE_QUESTION: string;
18560
18589
  VADAIN_NOT_ALLOWED_TO_DELETE: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/sharedcomponents",
3
- "version": "256.1.3",
3
+ "version": "256.1.5",
4
4
  "private": false,
5
5
  "dependencies": {
6
6
  "chart.js": "4.3.0",
@@ -11,7 +11,7 @@
11
11
  "@angular/core": ">=12.2.0",
12
12
  "@colijnit/articleapi": ">=256.1.0",
13
13
  "@colijnit/mainapi": ">=256.1.2",
14
- "@colijnit/corecomponents_v12": ">=256.1.0",
14
+ "@colijnit/corecomponents_v12": ">=256.1.8",
15
15
  "@colijnit/ioneconnector": ">=256.1.0",
16
16
  "@colijnit/sharedapi": ">=1.0.20",
17
17
  "@colijnit/relationapi": ">=1.0.14",