@colijnit/sharedcomponents 258.1.0 → 258.1.2
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-sharedcomponents.umd.js +26 -10
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/date-planning/component/agenda/agenda-header.component.js +4 -3
- package/esm2015/lib/components/preferred-planning/preferred-planning.component.js +12 -4
- package/esm2015/lib/components/send-method-dialog/components/send-method-email/send-method-email.component.js +3 -1
- package/esm2015/lib/components/send-method-dialog/components/send-method-pdf/send-method-pdf.component.js +5 -3
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.js +41 -39
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +9 -1
- package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
- package/fesm2015/colijnit-sharedcomponents.js +70 -47
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/date-planning/component/agenda/style/_layout.scss +12 -5
- package/lib/components/send-method-dialog/components/send-method-email/send-method-email.component.d.ts +1 -0
- package/lib/components/send-method-dialog/components/send-method-pdf/send-method-pdf.component.d.ts +1 -0
- package/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.d.ts +1 -0
- package/lib/components/send-method-dialog/send-method-dialog.component.d.ts +1 -0
- package/lib/res/dictionary/dictionaries.d.ts +20 -0
- package/package.json +1 -1
|
@@ -17,8 +17,15 @@
|
|
|
17
17
|
width: inherit;
|
|
18
18
|
height: $agenda-week-view-header-height;
|
|
19
19
|
z-index: 9001;
|
|
20
|
+
&.days-around {
|
|
21
|
+
padding-top: 20px;
|
|
22
|
+
position: relative;
|
|
23
|
+
.month-description {
|
|
24
|
+
top: 2px;
|
|
25
|
+
left: 0;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
20
28
|
}
|
|
21
|
-
|
|
22
29
|
.week-day {
|
|
23
30
|
display: flex;
|
|
24
31
|
position: relative;
|
|
@@ -147,12 +154,12 @@
|
|
|
147
154
|
width: 100% !important;
|
|
148
155
|
}
|
|
149
156
|
.agenda-header-wrapper {
|
|
150
|
-
padding: 0
|
|
157
|
+
padding: 0 10px;
|
|
151
158
|
height: auto;
|
|
152
159
|
gap: 10px;
|
|
153
160
|
margin-top: 30px;
|
|
154
161
|
&.days-around {
|
|
155
|
-
padding: 0;
|
|
162
|
+
padding: 20px 0 0 0;
|
|
156
163
|
margin: 0;
|
|
157
164
|
gap: 5px;
|
|
158
165
|
background: transparent;
|
|
@@ -222,7 +229,7 @@
|
|
|
222
229
|
}
|
|
223
230
|
@media screen and (min-width: $sm-width) {
|
|
224
231
|
.weekday-value {
|
|
225
|
-
font-size:
|
|
232
|
+
font-size: 14px;
|
|
226
233
|
}
|
|
227
234
|
}
|
|
228
235
|
@media screen and (max-width: $xs-width) {
|
|
@@ -236,7 +243,7 @@
|
|
|
236
243
|
|
|
237
244
|
@media screen and (max-width: $xs-width) {
|
|
238
245
|
.agenda-header-wrapper {
|
|
239
|
-
padding: 0
|
|
246
|
+
padding: 0 10px;
|
|
240
247
|
height: 60px !important;
|
|
241
248
|
}
|
|
242
249
|
}
|
|
@@ -8,6 +8,7 @@ export declare class SendMethodEmailComponent implements OnInit {
|
|
|
8
8
|
layouts: ReportLayoutSelectionEmail[];
|
|
9
9
|
pdfDoc: any;
|
|
10
10
|
disablePdfPreview: boolean;
|
|
11
|
+
transactionType: string;
|
|
11
12
|
emailUnsignedPossible: boolean;
|
|
12
13
|
showFilePreview: EventEmitter<number>;
|
|
13
14
|
loadDefaultPrinterName: EventEmitter<number>;
|
package/lib/components/send-method-dialog/components/send-method-pdf/send-method-pdf.component.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export declare class SendMethodPdfComponent {
|
|
|
6
6
|
layouts: ReportLayoutSelectionPrint[];
|
|
7
7
|
pdfDoc: any;
|
|
8
8
|
disablePdfPreview: boolean;
|
|
9
|
+
transactionType: string;
|
|
9
10
|
showFilePreview: EventEmitter<number>;
|
|
10
11
|
loadDefaultPrinterName: EventEmitter<number>;
|
|
11
12
|
showClass(): boolean;
|
|
@@ -16,6 +16,7 @@ export declare class SendMethodPrinterComponent {
|
|
|
16
16
|
isAdditionalDocEnabled: boolean;
|
|
17
17
|
pdfDoc: any;
|
|
18
18
|
disablePdfPreview: boolean;
|
|
19
|
+
transactionType: string;
|
|
19
20
|
additionalFileContents: any;
|
|
20
21
|
additionalFileName: string;
|
|
21
22
|
additionalFileChangeEvent: EventEmitter<CoDocument>;
|
|
@@ -45,6 +45,7 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
45
45
|
additionalFileContents: any;
|
|
46
46
|
pdfDoc: any;
|
|
47
47
|
disablePdfPreview: boolean;
|
|
48
|
+
transactionType: string;
|
|
48
49
|
emailUnsignedPossible: boolean;
|
|
49
50
|
usePurchaseSendMethod: boolean;
|
|
50
51
|
reportingDocumentPrintRequestChange: EventEmitter<ReportingDocumentPrintSignDocBaseRequest>;
|
|
@@ -3389,6 +3389,7 @@ export declare class Dictionaries {
|
|
|
3389
3389
|
OPTED_FOR_CASH: string;
|
|
3390
3390
|
OPTED_FOR_PIN: string;
|
|
3391
3391
|
OPTION: string;
|
|
3392
|
+
OPTION_LIBRARY: string;
|
|
3392
3393
|
OPTIONAL: string;
|
|
3393
3394
|
OPTIONS: string;
|
|
3394
3395
|
MESSAGE_ERROR_POSTALCODE_RETRIEVAL: string;
|
|
@@ -4092,6 +4093,7 @@ export declare class Dictionaries {
|
|
|
4092
4093
|
DRIVER_CHECKOUT_DEFAULT: string;
|
|
4093
4094
|
DRIVER_CHECKOUT_EXISTING_SELECTION: string;
|
|
4094
4095
|
DROPSHIPMENT: string;
|
|
4096
|
+
DROPSHIPMENT_NO: string;
|
|
4095
4097
|
DROPSHIPMENT_AVAILABLE: string;
|
|
4096
4098
|
DROPSHIPMENT_INFO: string;
|
|
4097
4099
|
DROPSHIPMENT_POSSIBLE: string;
|
|
@@ -4778,6 +4780,7 @@ export declare class Dictionaries {
|
|
|
4778
4780
|
INCLUDE_LINE_DETAILS: string;
|
|
4779
4781
|
INCLUDE_NO_STOCK_ART: string;
|
|
4780
4782
|
INCLUDE_REAFFIRMATIONS: string;
|
|
4783
|
+
INCLUDE_UNPROCESSED_ENTRIES: string;
|
|
4781
4784
|
INCLUDING_CONTACT_PERSONS: string;
|
|
4782
4785
|
INCLUDING_OPENING_BALANCE: string;
|
|
4783
4786
|
INCLUDING_PRINTED: string;
|
|
@@ -4880,6 +4883,9 @@ export declare class Dictionaries {
|
|
|
4880
4883
|
BATCH_PENDING: string;
|
|
4881
4884
|
BATCH_REQUIRED: string;
|
|
4882
4885
|
BATCH_RUNNING: string;
|
|
4886
|
+
BATCH_INVOICE: string;
|
|
4887
|
+
BATCH_ORDER_CONFIRMATION: string;
|
|
4888
|
+
BATCH_PURCHASE_ORDER_FORM: string;
|
|
4883
4889
|
BCC: string;
|
|
4884
4890
|
BEFORE_DATE: string;
|
|
4885
4891
|
BEGIN_BOOK: string;
|
|
@@ -5509,6 +5515,7 @@ export declare class Dictionaries {
|
|
|
5509
5515
|
RELATION_LAYOUTS: string;
|
|
5510
5516
|
RELATION_LAYOUTS_MESSAGE: string;
|
|
5511
5517
|
SHIPPING_METHOD_SETTINGS: string;
|
|
5518
|
+
SHIPPING_METHOD_STANDARD_SETTINGS: string;
|
|
5512
5519
|
OVERRULE_VIA_EMAIL: string;
|
|
5513
5520
|
OVERRULE_VIA_EDI: string;
|
|
5514
5521
|
OVERRULE_VIA_PRINT: string;
|
|
@@ -8235,6 +8242,7 @@ export declare class Dictionaries {
|
|
|
8235
8242
|
OPEN_SHOPPING_CART: string;
|
|
8236
8243
|
OPEN_STOCK_DETAILS: string;
|
|
8237
8244
|
ORDER_CANNOT_BE_COMPLETELY_ACCEPTED: string;
|
|
8245
|
+
ORDER_CAN_NOT_BE_PLANNED_ON_RESOURCE: string;
|
|
8238
8246
|
ORDER_CODE: string;
|
|
8239
8247
|
UNKNOWN_ADDRESS_CHECK_IT: string;
|
|
8240
8248
|
UNKNOWN_DELIVERY_DATE: string;
|
|
@@ -9667,6 +9675,7 @@ export declare class Dictionaries {
|
|
|
9667
9675
|
PORTAL_ID: string;
|
|
9668
9676
|
PORTAL_LOGIN: string;
|
|
9669
9677
|
PORT_COST: string;
|
|
9678
|
+
PONTO_INTEGRATION_SUCCESFULLY_AUTHORIZED: string;
|
|
9670
9679
|
POS: string;
|
|
9671
9680
|
POS2: string;
|
|
9672
9681
|
POSGROUP_REQUIRED: string;
|
|
@@ -12194,6 +12203,9 @@ export declare class Dictionaries {
|
|
|
12194
12203
|
BATCH_REQUIRED: string;
|
|
12195
12204
|
BATCH_RUNNING: string;
|
|
12196
12205
|
BATCH_DELIVERY: string;
|
|
12206
|
+
BATCH_INVOICE: string;
|
|
12207
|
+
BATCH_ORDER_CONFIRMATION: string;
|
|
12208
|
+
BATCH_PURCHASE_ORDER_FORM: string;
|
|
12197
12209
|
BCC: string;
|
|
12198
12210
|
BEFORE_DATE: string;
|
|
12199
12211
|
BEGIN_BOOK: string;
|
|
@@ -13616,6 +13628,7 @@ export declare class Dictionaries {
|
|
|
13616
13628
|
DRIVER_CHECKOUT_DEFAULT: string;
|
|
13617
13629
|
DRIVER_CHECKOUT_EXISTING_SELECTION: string;
|
|
13618
13630
|
DROPSHIPMENT: string;
|
|
13631
|
+
DROPSHIPMENT_NO: string;
|
|
13619
13632
|
DROPSHIPMENT_AVAILABLE: string;
|
|
13620
13633
|
DROPSHIPMENT_INFO: string;
|
|
13621
13634
|
DROPSHIPMENT_POSSIBLE: string;
|
|
@@ -14469,6 +14482,7 @@ export declare class Dictionaries {
|
|
|
14469
14482
|
INCLUDE_LINE_DETAILS: string;
|
|
14470
14483
|
INCLUDE_NO_STOCK_ART: string;
|
|
14471
14484
|
INCLUDE_REAFFIRMATIONS: string;
|
|
14485
|
+
INCLUDE_UNPROCESSED_ENTRIES: string;
|
|
14472
14486
|
INCLUDING_CONTACT_PERSONS: string;
|
|
14473
14487
|
INCLUDING_OPENING_BALANCE: string;
|
|
14474
14488
|
INCLUDING_PRINTED: string;
|
|
@@ -14877,6 +14891,7 @@ export declare class Dictionaries {
|
|
|
14877
14891
|
LOCATION: string;
|
|
14878
14892
|
LOCATIONS: string;
|
|
14879
14893
|
LOCATION_ADVICE: string;
|
|
14894
|
+
LOCATION_ARTICLE: string;
|
|
14880
14895
|
LOCATION_FROM: string;
|
|
14881
14896
|
LOCATION_INVENTORY: string;
|
|
14882
14897
|
LOCATION_IS_NOT_VALID_WITHIN_WAREHOUSE: string;
|
|
@@ -15910,6 +15925,7 @@ export declare class Dictionaries {
|
|
|
15910
15925
|
ON_HOLD_CODE: string;
|
|
15911
15926
|
ON_HOLD_CODES: string;
|
|
15912
15927
|
ON_MY_DASH: string;
|
|
15928
|
+
ON_STORAGE_UNIT: string;
|
|
15913
15929
|
OPEN: string;
|
|
15914
15930
|
OPENING: string;
|
|
15915
15931
|
OPENING_BALANCE: string;
|
|
@@ -15962,6 +15978,7 @@ export declare class Dictionaries {
|
|
|
15962
15978
|
OPTED_FOR_CASH: string;
|
|
15963
15979
|
OPTED_FOR_PIN: string;
|
|
15964
15980
|
OPTION: string;
|
|
15981
|
+
OPTION_LIBRARY: string;
|
|
15965
15982
|
OPTIONAL: string;
|
|
15966
15983
|
OPTIONS: string;
|
|
15967
15984
|
OPTIONVALUE: string;
|
|
@@ -16009,6 +16026,7 @@ export declare class Dictionaries {
|
|
|
16009
16026
|
ORDER_BY_ARTICLENR: string;
|
|
16010
16027
|
ORDER_BY_CUST_REACTION: string;
|
|
16011
16028
|
ORDER_CANNOT_BE_COMPLETELY_ACCEPTED: string;
|
|
16029
|
+
ORDER_CAN_NOT_BE_PLANNED_ON_RESOURCE: string;
|
|
16012
16030
|
ORDER_CODE: string;
|
|
16013
16031
|
ORDER_COMMISSION: string;
|
|
16014
16032
|
ORDER_COMMISSION_ADVICE: string;
|
|
@@ -16411,6 +16429,7 @@ export declare class Dictionaries {
|
|
|
16411
16429
|
PORTAL_ID: string;
|
|
16412
16430
|
PORTAL_LOGIN: string;
|
|
16413
16431
|
PORT_COST: string;
|
|
16432
|
+
PONTO_INTEGRATION_SUCCESFULLY_AUTHORIZED: string;
|
|
16414
16433
|
POS2: string;
|
|
16415
16434
|
POS: string;
|
|
16416
16435
|
POSGROUP_REQUIRED: string;
|
|
@@ -18376,6 +18395,7 @@ export declare class Dictionaries {
|
|
|
18376
18395
|
TO_BE_PICKED: string;
|
|
18377
18396
|
TO_BE_PICKED_DETAILS: string;
|
|
18378
18397
|
TO_BE_PLANNED: string;
|
|
18398
|
+
TO_BE_RESERVED: string;
|
|
18379
18399
|
TO_BE_TRANSPORTED: string;
|
|
18380
18400
|
TO_BE_USED: string;
|
|
18381
18401
|
TO_BE_USED_VOLUME: string;
|