@colijnit/sharedcomponents 260.1.14 → 260.1.16
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 +53 -49
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.d.ts +2 -2
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/colijnit-sharedcomponents.js +3 -3
- package/esm2015/lib/components/files-upload/components/base-file-upload.component.js +1 -2
- package/esm2015/lib/components/form-builder/form-builder-user-form/form-builder-user-form.component.js +8 -25
- package/esm2015/lib/components/send-method-dialog/components/printer-selection/printer-selection.component.js +23 -17
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.js +59 -48
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.module.js +4 -3
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +120 -110
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.module.js +1 -1
- package/esm2015/lib/components/send-method-dialog/service/send-method.service.js +2 -1
- package/esm2015/lib/enum/icon.enum.js +1 -1
- package/esm2015/lib/model/icon-svg.js +1 -1
- package/esm2015/lib/res/dictionary/dictionaries.js +2 -2
- package/esm2015/lib/service/shared-connector.service.js +1 -1
- package/fesm2015/colijnit-sharedcomponents.js +212 -200
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/form-builder/form-builder-user-form/form-builder-user-form.component.d.ts +2 -2
- package/lib/components/send-method-dialog/components/printer-selection/printer-selection.component.d.ts +2 -3
- package/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.d.ts +3 -0
- package/lib/components/send-method-dialog/components/send-method-printer/style/_layout.scss +10 -0
- package/lib/components/send-method-dialog/send-method-dialog.component.d.ts +2 -0
- package/lib/components/send-method-dialog/service/send-method.service.d.ts +1 -0
- package/lib/res/dictionary/dictionaries.d.ts +1 -0
- package/package.json +1 -1
package/lib/components/form-builder/form-builder-user-form/form-builder-user-form.component.d.ts
CHANGED
|
@@ -33,12 +33,12 @@ export declare class FormBuilderUserFormComponent implements OnDestroy {
|
|
|
33
33
|
key: string;
|
|
34
34
|
readonly: boolean;
|
|
35
35
|
enableQuestions: boolean;
|
|
36
|
-
|
|
36
|
+
lineUUID: string;
|
|
37
37
|
readonly cancelForm: EventEmitter<void>;
|
|
38
38
|
readonly saveForm: EventEmitter<FormResponse>;
|
|
39
39
|
readonly definitiveChange: EventEmitter<{
|
|
40
40
|
value: boolean;
|
|
41
|
-
|
|
41
|
+
lineUUID: string;
|
|
42
42
|
}>;
|
|
43
43
|
readonly createNewFormResponse: EventEmitter<FormResponse>;
|
|
44
44
|
readonly errorMessage: EventEmitter<string>;
|
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
import { Printer } from '@colijnit/mainapi/build/model/printer.bo';
|
|
2
|
-
import { SharedService } from '../../../../service/shared.service';
|
|
3
2
|
import { IconCacheService } from '../../../../service/icon-cache.service';
|
|
4
3
|
import { Icon } from '../../../../enum/icon.enum';
|
|
5
4
|
import { SendMethodService } from '../../service/send-method.service';
|
|
6
5
|
export declare class PrinterSelectionComponent {
|
|
7
6
|
sendMethodService: SendMethodService;
|
|
8
7
|
iconService: IconCacheService;
|
|
9
|
-
private _service;
|
|
10
8
|
readonly icons: typeof Icon;
|
|
11
9
|
printers: Printer[];
|
|
12
10
|
set defaultPrinter(printer: Printer);
|
|
11
|
+
required: boolean;
|
|
13
12
|
showClass(): boolean;
|
|
14
13
|
printerModel: Printer;
|
|
15
|
-
constructor(sendMethodService: SendMethodService, iconService: IconCacheService
|
|
14
|
+
constructor(sendMethodService: SendMethodService, iconService: IconCacheService);
|
|
16
15
|
handlePrinterClicked(printer: Printer): void;
|
|
17
16
|
}
|
|
@@ -24,9 +24,11 @@ export declare class SendMethodPrinterComponent implements OnInit {
|
|
|
24
24
|
layoutCode: LayoutCode;
|
|
25
25
|
additionalFileChangeEvent: EventEmitter<CoDocument>;
|
|
26
26
|
useLocalPrint: EventEmitter<boolean>;
|
|
27
|
+
copiesAmountChange: EventEmitter<number>;
|
|
27
28
|
protected readonly icons: typeof Icon;
|
|
28
29
|
localPrint: boolean;
|
|
29
30
|
defaultPrinter: Printer;
|
|
31
|
+
copiesAmount: number;
|
|
30
32
|
constructor(sendMethodService: SendMethodService, iconCacheService: IconCacheService, _sharedService: SharedService);
|
|
31
33
|
ngOnInit(): void;
|
|
32
34
|
handleDefaultPrinterUserChange(checked: boolean): void;
|
|
@@ -35,4 +37,5 @@ export declare class SendMethodPrinterComponent implements OnInit {
|
|
|
35
37
|
openAdditionalFileDialog(): void;
|
|
36
38
|
isAdditionalFileActive(): boolean;
|
|
37
39
|
updatePrinter(request: ReportingDocumentBaseRequest): void;
|
|
40
|
+
handleCopiesAmountChange(amount: number): void;
|
|
38
41
|
}
|
|
@@ -45,11 +45,21 @@
|
|
|
45
45
|
display: flex;
|
|
46
46
|
gap: 5px;
|
|
47
47
|
margin-top: 15px;
|
|
48
|
+
width: 100%;
|
|
48
49
|
}
|
|
49
50
|
.additional-checks {
|
|
50
51
|
display: flex;
|
|
51
52
|
flex-direction: column;
|
|
52
53
|
gap: 10px;
|
|
54
|
+
width: 100%;
|
|
55
|
+
|
|
56
|
+
.copies-amount-wrapper {
|
|
57
|
+
display: flex;
|
|
58
|
+
flex-direction: column;
|
|
59
|
+
gap: 10px;
|
|
60
|
+
width: 50%;
|
|
61
|
+
justify-content: center;
|
|
62
|
+
}
|
|
53
63
|
}
|
|
54
64
|
}
|
|
55
65
|
}
|
|
@@ -81,6 +81,7 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
81
81
|
showPdf: boolean;
|
|
82
82
|
showCombinePrintAndEmail: boolean;
|
|
83
83
|
additionalFileHasBeenSaved: boolean;
|
|
84
|
+
disableOkButton: boolean;
|
|
84
85
|
private _subscriptions;
|
|
85
86
|
private _localPrint;
|
|
86
87
|
constructor(iconCacheService: IconCacheService, _sendMethodService: SendMethodService);
|
|
@@ -95,6 +96,7 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
95
96
|
handleSendMethodClick(sendMethod: SendMethod): void;
|
|
96
97
|
createPdfPreview(): void;
|
|
97
98
|
closePdfPreview(): void;
|
|
99
|
+
handleCopiesAmountChange(amount: number): void;
|
|
98
100
|
private _initDefaultSendMethod;
|
|
99
101
|
private _selectDefaultSendMethod;
|
|
100
102
|
private _prepareVisibleMethods;
|
|
@@ -8,6 +8,7 @@ export declare class SendMethodService {
|
|
|
8
8
|
reportingDocumentEmailSignDocBaseRequestChanged: Subject<ReportingDocumentEmailSignDocBaseRequest>;
|
|
9
9
|
reportingDocumentPdfBaseRequestChanged: Subject<ReportingDocumentPdfBaseRequest>;
|
|
10
10
|
reportingDocumentCombinedBaseRequestChanged: Subject<PrintPurchaseOrderForTransactionOrderWithoutLinesRequest>;
|
|
11
|
+
printerNotSet: Subject<boolean>;
|
|
11
12
|
set reportingDocumentPrintSignDocBaseRequest(value: ReportingDocumentPrintSignDocBaseRequest);
|
|
12
13
|
get reportingDocumentPrintSignDocBaseRequest(): ReportingDocumentPrintSignDocBaseRequest;
|
|
13
14
|
set reportingDocumentEmailSignDocBaseRequest(value: ReportingDocumentEmailSignDocBaseRequest);
|
|
@@ -31430,6 +31430,7 @@ export declare class Dictionaries {
|
|
|
31430
31430
|
TRACK_BY_LOCATION: string;
|
|
31431
31431
|
TRAFFIC_ACCIDENT: string;
|
|
31432
31432
|
TRANSACTION: string;
|
|
31433
|
+
TRANSITION_FUNCTION: string;
|
|
31433
31434
|
TRANSACTIONNR_ISSUED: string;
|
|
31434
31435
|
TRANSACTIONS: string;
|
|
31435
31436
|
TRANSACTIONTYPE: string;
|