@qbs-origin/origin-form 0.8.11 → 0.8.12
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/esm2022/lib/form-css.helper.mjs +122 -28
- package/esm2022/lib/formly/custom-section-separator.component.mjs +11 -3
- package/esm2022/lib/formly/form-section-separator.component.mjs +34 -11
- package/esm2022/lib/formly/formly-dictionary-dropdown-tree/formly-dictionary-dropdown-tree.component.mjs +23 -8
- package/esm2022/lib/formly/formly-radio/formly-radio-component.mjs +3 -3
- package/esm2022/lib/formly/formly-row-spacer.mjs +12 -0
- package/esm2022/lib/formly/formly-row-wrapper.mjs +32 -0
- package/esm2022/lib/formly/formly-scan-id/formly-scan-id.component.mjs +21 -26
- package/esm2022/lib/models/flux.model.mjs +1 -1
- package/esm2022/lib/models/forms.model.mjs +77 -25
- package/esm2022/lib/origin-form.component.mjs +170 -55
- package/esm2022/lib/origin-form.module.mjs +11 -1
- package/esm2022/lib/services/applicationData.service.mjs +1 -1
- package/fesm2022/qbs-origin-origin-form.mjs +497 -151
- package/fesm2022/qbs-origin-origin-form.mjs.map +1 -1
- package/lib/form-css.helper.d.ts +7 -0
- package/lib/formly/form-section-separator.component.d.ts +2 -2
- package/lib/formly/formly-dictionary-dropdown-tree/formly-dictionary-dropdown-tree.component.d.ts +2 -1
- package/lib/formly/formly-row-spacer.d.ts +6 -0
- package/lib/formly/formly-row-wrapper.d.ts +6 -0
- package/lib/models/flux.model.d.ts +4 -0
- package/lib/models/forms.model.d.ts +22 -6
- package/lib/origin-form.component.d.ts +6 -1
- package/lib/origin-form.module.d.ts +64 -62
- package/lib/services/applicationData.service.d.ts +1 -1
- package/package.json +1 -1
package/lib/form-css.helper.d.ts
CHANGED
|
@@ -3,9 +3,15 @@ export declare class FormCssHelper {
|
|
|
3
3
|
static convertToStyleString(cssRules: CssRules, isDisplayMode: boolean): string;
|
|
4
4
|
private static convertToCssText;
|
|
5
5
|
private static convertRuleToCssText;
|
|
6
|
+
static getSpecificCssForDictionary(key: string, values: {
|
|
7
|
+
[property: string]: string;
|
|
8
|
+
}, cssRules: CssRules): string;
|
|
6
9
|
static getSpecificCssForInput(key: string, values: {
|
|
7
10
|
[property: string]: string;
|
|
8
11
|
}, cssRules: CssRules): string;
|
|
12
|
+
static getSpecificCssForProgressBar(values: {
|
|
13
|
+
[property: string]: string;
|
|
14
|
+
}): string;
|
|
9
15
|
static getSpecificCssForTableHeader(values: {
|
|
10
16
|
[property: string]: string;
|
|
11
17
|
}): string;
|
|
@@ -22,6 +28,7 @@ export declare class FormCssHelper {
|
|
|
22
28
|
static getSpecificCssForData(key: string, values: {
|
|
23
29
|
[property: string]: string;
|
|
24
30
|
}, cssRules: CssRules): string;
|
|
31
|
+
private static readonly INTERNAL_KEYS;
|
|
25
32
|
static styleObjectToString(values: {
|
|
26
33
|
[property: string]: string;
|
|
27
34
|
}, important?: boolean): string;
|
|
@@ -2,8 +2,8 @@ import { OnInit } from '@angular/core';
|
|
|
2
2
|
import { FieldType } from '@ngx-formly/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class FormSectionSeparatorComponent extends FieldType implements OnInit {
|
|
5
|
-
heading2Style:
|
|
6
|
-
separatorStyle:
|
|
5
|
+
heading2Style: any;
|
|
6
|
+
separatorStyle: any;
|
|
7
7
|
ngOnInit(): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormSectionSeparatorComponent, never>;
|
|
9
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormSectionSeparatorComponent, "form-section-separator", never, {}, {}, never, never, false, never>;
|
package/lib/formly/formly-dictionary-dropdown-tree/formly-dictionary-dropdown-tree.component.d.ts
CHANGED
|
@@ -19,7 +19,6 @@ export declare class FormlyDictionaryDropdownTreeComponent extends FieldType imp
|
|
|
19
19
|
currentLanguageIso: string;
|
|
20
20
|
currentLanguageId: number;
|
|
21
21
|
selectedValueText: string;
|
|
22
|
-
labelStyle: any;
|
|
23
22
|
selectedValueIds: number[];
|
|
24
23
|
valuesIdsToShow: number[];
|
|
25
24
|
selectedRelatedDictionaries: string[];
|
|
@@ -39,6 +38,8 @@ export declare class FormlyDictionaryDropdownTreeComponent extends FieldType imp
|
|
|
39
38
|
onSelectedDictionaryValuesChanged(values: DictionaryValue[]): void;
|
|
40
39
|
filterChanged($event: any): void;
|
|
41
40
|
toggleAutocomplete(event: MouseEvent): void;
|
|
41
|
+
onInputFocus(): void;
|
|
42
|
+
onInputBlur(): void;
|
|
42
43
|
openAutocomplete(): void;
|
|
43
44
|
private updateSelectedValueText;
|
|
44
45
|
private getValueDisplayText;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { FieldType } from '@ngx-formly/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class RowSpacerComponent extends FieldType {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RowSpacerComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RowSpacerComponent, "formly-row-spacer", never, {}, {}, never, never, false, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { FieldType } from '@ngx-formly/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class RowWrapperComponent extends FieldType {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RowWrapperComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RowWrapperComponent, "formly-row-wrapper", never, {}, {}, never, never, false, never>;
|
|
6
|
+
}
|
|
@@ -26,6 +26,10 @@ export declare class SectionData {
|
|
|
26
26
|
showSectionSeparator?: boolean;
|
|
27
27
|
dependentDictionary?: DependentDictionaryData;
|
|
28
28
|
titleStyle?: string;
|
|
29
|
+
marginTop?: string;
|
|
30
|
+
marginBottom?: string;
|
|
31
|
+
firstRowMarginTop?: string;
|
|
32
|
+
firstRowMarginBottom?: string;
|
|
29
33
|
}
|
|
30
34
|
export declare class BaseControl {
|
|
31
35
|
title: string;
|
|
@@ -72,12 +72,10 @@ export declare class AppDataFill {
|
|
|
72
72
|
language: string;
|
|
73
73
|
offerId: string;
|
|
74
74
|
isSubmitted: boolean;
|
|
75
|
-
parentAppDataUuid?: string;
|
|
76
75
|
};
|
|
77
76
|
flux: AppDataStep[];
|
|
78
|
-
initFlowValues?: any;
|
|
79
77
|
inheritedFields?: Record<string, any>;
|
|
80
|
-
constructor(appDataId?: string, configurationId?: string, currentStepId?: string, statusId?: string, language?: string, flux?: AppDataStep[], offerId?: string, isSubmitted?: boolean
|
|
78
|
+
constructor(appDataId?: string, configurationId?: string, currentStepId?: string, statusId?: string, language?: string, flux?: AppDataStep[], offerId?: string, isSubmitted?: boolean);
|
|
81
79
|
}
|
|
82
80
|
export declare class AppData {
|
|
83
81
|
id?: number;
|
|
@@ -89,7 +87,6 @@ export declare class AppData {
|
|
|
89
87
|
blockPreviousStep: boolean;
|
|
90
88
|
env: string;
|
|
91
89
|
status: AppDataStatus;
|
|
92
|
-
parentAppDataUuid?: string;
|
|
93
90
|
constructor(data: {
|
|
94
91
|
id?: number;
|
|
95
92
|
appDataId: string;
|
|
@@ -99,7 +96,6 @@ export declare class AppData {
|
|
|
99
96
|
withNextStep: boolean;
|
|
100
97
|
blockPreviousStep: boolean;
|
|
101
98
|
env: string;
|
|
102
|
-
parentAppDataUuid?: string;
|
|
103
99
|
});
|
|
104
100
|
}
|
|
105
101
|
export declare class FormModelExtenxions {
|
|
@@ -110,12 +106,22 @@ export declare class FormModelExtenxions {
|
|
|
110
106
|
fluxItems(untilStepIdentifier?: string | undefined): MethodField[];
|
|
111
107
|
private extractSectionsFluxItems;
|
|
112
108
|
private extractDocumentsFluxItems;
|
|
109
|
+
/**
|
|
110
|
+
* Returns inherited parent fields as MethodField items.
|
|
111
|
+
* Reusable across all system step settings components.
|
|
112
|
+
*/
|
|
113
|
+
static getInheritedMethodFields(formModel: FormModel): MethodField[];
|
|
114
|
+
/**
|
|
115
|
+
* Returns flux items + inherited parent fields (no API methods).
|
|
116
|
+
* Use this in system step settings that need parent field references.
|
|
117
|
+
*/
|
|
118
|
+
fluxItemsWithInherited(untilStepIdentifier?: string | undefined): MethodField[];
|
|
113
119
|
fluxItemsWithGetApiMethods(excludedMethodId?: string): MethodField[];
|
|
114
120
|
offerMethodsItems(): MethodField[];
|
|
115
121
|
}
|
|
116
122
|
export declare class ApiData {
|
|
117
123
|
getItems: GetApiItem[];
|
|
118
|
-
validationItems:
|
|
124
|
+
validationItems: ValidateApiItem[];
|
|
119
125
|
sendItems: ApiItem[];
|
|
120
126
|
}
|
|
121
127
|
export declare class ApiItem {
|
|
@@ -130,6 +136,12 @@ export declare class GetApiItem {
|
|
|
130
136
|
fields: GetMethodField[];
|
|
131
137
|
type: ApiMethodType;
|
|
132
138
|
}
|
|
139
|
+
export declare class ValidateApiItem {
|
|
140
|
+
id: string;
|
|
141
|
+
method: string;
|
|
142
|
+
fields: MethodField[];
|
|
143
|
+
type: ApiMethodType;
|
|
144
|
+
}
|
|
133
145
|
export declare class DesignModel {
|
|
134
146
|
fonts: FontConfig[];
|
|
135
147
|
buttons: ButtonConfig[];
|
|
@@ -224,9 +236,13 @@ export declare class ComponentConfig {
|
|
|
224
236
|
color?: string | undefined;
|
|
225
237
|
borderColor?: string | undefined;
|
|
226
238
|
weight?: string | undefined;
|
|
239
|
+
valueStyle?: string;
|
|
227
240
|
startColor?: string;
|
|
228
241
|
endColor?: string;
|
|
229
242
|
height?: string;
|
|
243
|
+
textareaMaxHeight?: string;
|
|
244
|
+
marginTop?: string;
|
|
245
|
+
marginBottom?: string;
|
|
230
246
|
constructor(data?: any);
|
|
231
247
|
}
|
|
232
248
|
export declare class DisplayModel {
|
|
@@ -128,8 +128,12 @@ export declare class CollectorFormComponent implements OnChanges, OnDestroy {
|
|
|
128
128
|
private getCurrentLanguageId;
|
|
129
129
|
private buildFormlyConfigAsync;
|
|
130
130
|
private onSelectedPageChanging;
|
|
131
|
-
|
|
131
|
+
/**
|
|
132
|
+
* Executes action/status steps that appear before the first visible step.
|
|
133
|
+
* Called on form initialization to handle leading action steps.
|
|
134
|
+
*/
|
|
132
135
|
private executeLeadingActionSteps;
|
|
136
|
+
private executeActionStepsAfterCurrentStep;
|
|
133
137
|
private onSelectedPageChanged;
|
|
134
138
|
private setPresentationControlValuesRecursively;
|
|
135
139
|
private findControlInFillDataControls;
|
|
@@ -169,6 +173,7 @@ export declare class CollectorFormComponent implements OnChanges, OnDestroy {
|
|
|
169
173
|
getPercentageClassName(percentageDimension: number): string;
|
|
170
174
|
createFillerControl(span: number): FormlyFieldConfig;
|
|
171
175
|
private buildControlsFieldGroupAsync;
|
|
176
|
+
getFlexWidthClassName(percentageDimension: number): string;
|
|
172
177
|
getPixelClassName(pixelDimension: number): string;
|
|
173
178
|
buildFormFieldAsync(step: StepData | undefined, control: ControlData): Promise<FormlyFieldConfig>;
|
|
174
179
|
addValidators(formlyConfig: FormlyFieldConfig, control: ControlData): void;
|
|
@@ -15,71 +15,73 @@ import * as i12 from "./formly/formly-paragraph/formly-paragraph.component";
|
|
|
15
15
|
import * as i13 from "./formly/formly-radio/formly-radio-component";
|
|
16
16
|
import * as i14 from "./formly/formly-checkboxes/formly-checkboxes.component";
|
|
17
17
|
import * as i15 from "./formly/formly-row-fille";
|
|
18
|
-
import * as i16 from "./formly/formly-
|
|
19
|
-
import * as i17 from "./formly/formly-
|
|
20
|
-
import * as i18 from "./formly/formly-
|
|
21
|
-
import * as i19 from "./formly/formly-
|
|
22
|
-
import * as i20 from "./formly/formly-
|
|
23
|
-
import * as i21 from "./formly/formly-
|
|
24
|
-
import * as i22 from "./
|
|
25
|
-
import * as i23 from "./
|
|
26
|
-
import * as i24 from "./
|
|
27
|
-
import * as i25 from "./shared-components/
|
|
28
|
-
import * as i26 from "./shared-components/
|
|
29
|
-
import * as i27 from "./
|
|
30
|
-
import * as i28 from "./
|
|
31
|
-
import * as i29 from "./
|
|
32
|
-
import * as i30 from "
|
|
33
|
-
import * as i31 from "
|
|
34
|
-
import * as i32 from "
|
|
35
|
-
import * as i33 from "@
|
|
36
|
-
import * as i34 from "
|
|
37
|
-
import * as i35 from "
|
|
38
|
-
import * as i36 from "
|
|
39
|
-
import * as i37 from "
|
|
40
|
-
import * as i38 from "@angular/
|
|
41
|
-
import * as i39 from "@
|
|
42
|
-
import * as i40 from "@angular/material/
|
|
43
|
-
import * as i41 from "@angular/material/
|
|
44
|
-
import * as i42 from "@angular/material/
|
|
45
|
-
import * as i43 from "@angular/material/
|
|
46
|
-
import * as i44 from "@angular/material/
|
|
47
|
-
import * as i45 from "@angular/material/
|
|
48
|
-
import * as i46 from "@angular/material/
|
|
49
|
-
import * as i47 from "@angular/material/
|
|
50
|
-
import * as i48 from "@angular/material/
|
|
51
|
-
import * as i49 from "@angular/material/
|
|
52
|
-
import * as i50 from "@angular/material/
|
|
53
|
-
import * as i51 from "@angular/material/
|
|
54
|
-
import * as i52 from "@angular/material/
|
|
55
|
-
import * as i53 from "@angular/material/
|
|
56
|
-
import * as i54 from "@angular/material/
|
|
57
|
-
import * as i55 from "@angular/material/
|
|
58
|
-
import * as i56 from "@angular/material/
|
|
59
|
-
import * as i57 from "@angular/material/
|
|
60
|
-
import * as i58 from "@angular/material/
|
|
61
|
-
import * as i59 from "@angular/material/
|
|
62
|
-
import * as i60 from "@angular/material/
|
|
63
|
-
import * as i61 from "@angular/material/
|
|
64
|
-
import * as i62 from "@angular/material/
|
|
65
|
-
import * as i63 from "@angular/material/
|
|
66
|
-
import * as i64 from "@angular/material/
|
|
67
|
-
import * as i65 from "@angular/material/
|
|
68
|
-
import * as i66 from "@angular/material/
|
|
69
|
-
import * as i67 from "@angular/material/
|
|
70
|
-
import * as i68 from "@angular/material/
|
|
71
|
-
import * as i69 from "@angular/material/
|
|
72
|
-
import * as i70 from "@angular/material/
|
|
73
|
-
import * as i71 from "@angular/material/
|
|
74
|
-
import * as i72 from "@angular/material/
|
|
75
|
-
import * as i73 from "@
|
|
76
|
-
import * as i74 from "@
|
|
77
|
-
import * as i75 from "@ngx-formly/
|
|
78
|
-
import * as i76 from "@ngx-formly/material
|
|
18
|
+
import * as i16 from "./formly/formly-row-spacer";
|
|
19
|
+
import * as i17 from "./formly/formly-row-wrapper";
|
|
20
|
+
import * as i18 from "./formly/formly-scan-id/formly-scan-id.component";
|
|
21
|
+
import * as i19 from "./formly/formly-sign/formly-sign.component";
|
|
22
|
+
import * as i20 from "./formly/formly-upload-documents/formly-upload-documents.component";
|
|
23
|
+
import * as i21 from "./formly/formly-validate-contact-info/formly-validate-contact-info.component";
|
|
24
|
+
import * as i22 from "./formly/formly-view-offers/formly-view-offers.component";
|
|
25
|
+
import * as i23 from "./formly/formly-open-banking/formly-open-banking.component";
|
|
26
|
+
import * as i24 from "./others/picker.component";
|
|
27
|
+
import * as i25 from "./shared-components/treeview/treeview.component";
|
|
28
|
+
import * as i26 from "./shared-components/dictionaries-tree.component";
|
|
29
|
+
import * as i27 from "./shared-components/confirmation.component";
|
|
30
|
+
import * as i28 from "./shared-components/grid.component";
|
|
31
|
+
import * as i29 from "./origin-form.component";
|
|
32
|
+
import * as i30 from "./formly/formly-enrol-card/formly-enrol-card.component";
|
|
33
|
+
import * as i31 from "./others/external-link.directive";
|
|
34
|
+
import * as i32 from "@angular/common";
|
|
35
|
+
import * as i33 from "@angular/forms";
|
|
36
|
+
import * as i34 from "ngx-scrollbar";
|
|
37
|
+
import * as i35 from "@qbs-origin/sign-lib";
|
|
38
|
+
import * as i36 from "ng2-pdf-viewer";
|
|
39
|
+
import * as i37 from "ngx-markdown";
|
|
40
|
+
import * as i38 from "@angular/router";
|
|
41
|
+
import * as i39 from "@ngx-translate/core";
|
|
42
|
+
import * as i40 from "@angular/material/input";
|
|
43
|
+
import * as i41 from "@angular/material/form-field";
|
|
44
|
+
import * as i42 from "@angular/material/autocomplete";
|
|
45
|
+
import * as i43 from "@angular/material/checkbox";
|
|
46
|
+
import * as i44 from "@angular/material/datepicker";
|
|
47
|
+
import * as i45 from "@angular/material/core";
|
|
48
|
+
import * as i46 from "@angular/material/radio";
|
|
49
|
+
import * as i47 from "@angular/material/select";
|
|
50
|
+
import * as i48 from "@angular/material/slider";
|
|
51
|
+
import * as i49 from "@angular/material/slide-toggle";
|
|
52
|
+
import * as i50 from "@angular/material/menu";
|
|
53
|
+
import * as i51 from "@angular/material/sidenav";
|
|
54
|
+
import * as i52 from "@angular/material/toolbar";
|
|
55
|
+
import * as i53 from "@angular/material/card";
|
|
56
|
+
import * as i54 from "@angular/material/divider";
|
|
57
|
+
import * as i55 from "@angular/material/expansion";
|
|
58
|
+
import * as i56 from "@angular/material/grid-list";
|
|
59
|
+
import * as i57 from "@angular/material/list";
|
|
60
|
+
import * as i58 from "@angular/material/stepper";
|
|
61
|
+
import * as i59 from "@angular/material/tabs";
|
|
62
|
+
import * as i60 from "@angular/material/tree";
|
|
63
|
+
import * as i61 from "@angular/material/button";
|
|
64
|
+
import * as i62 from "@angular/material/button-toggle";
|
|
65
|
+
import * as i63 from "@angular/material/badge";
|
|
66
|
+
import * as i64 from "@angular/material/chips";
|
|
67
|
+
import * as i65 from "@angular/material/icon";
|
|
68
|
+
import * as i66 from "@angular/material/progress-spinner";
|
|
69
|
+
import * as i67 from "@angular/material/progress-bar";
|
|
70
|
+
import * as i68 from "@angular/material/bottom-sheet";
|
|
71
|
+
import * as i69 from "@angular/material/dialog";
|
|
72
|
+
import * as i70 from "@angular/material/snack-bar";
|
|
73
|
+
import * as i71 from "@angular/material/tooltip";
|
|
74
|
+
import * as i72 from "@angular/material/paginator";
|
|
75
|
+
import * as i73 from "@angular/material/sort";
|
|
76
|
+
import * as i74 from "@angular/material/table";
|
|
77
|
+
import * as i75 from "@ngx-formly/core";
|
|
78
|
+
import * as i76 from "@ngx-formly/material";
|
|
79
|
+
import * as i77 from "@ngx-formly/material/textarea";
|
|
80
|
+
import * as i78 from "@ngx-formly/material/datepicker";
|
|
79
81
|
export declare class OriginFormModule {
|
|
80
82
|
private themeInjector;
|
|
81
83
|
constructor(themeInjector: ThemeInjectorService);
|
|
82
84
|
static ɵfac: i0.ɵɵFactoryDeclaration<OriginFormModule, never>;
|
|
83
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<OriginFormModule, [typeof i1.TranslatePipe, typeof i2.CustomSectionComponent, typeof i3.FormSectionSeparatorComponent, typeof i4.FormlyActionComponent, typeof i5.FormlyCheckboxComponent, typeof i6.FormlyDictionaryDropdownTreeComponent, typeof i7.FormlyDownloadDocumentsComponent, typeof i8.FormlyViewDocumentsComponent, typeof i9.FormlyFieldStepperComponent, typeof i10.FormlyGenerateDocumentsComponent, typeof i11.FormlyFieldIdentificationComponent, typeof i12.FormlyParagraphComponent, typeof i13.FormlyRadioComponent, typeof i14.FormlyCheckboxesComponent, typeof i15.RowFillerComponent, typeof i16.
|
|
85
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OriginFormModule, [typeof i1.TranslatePipe, typeof i2.CustomSectionComponent, typeof i3.FormSectionSeparatorComponent, typeof i4.FormlyActionComponent, typeof i5.FormlyCheckboxComponent, typeof i6.FormlyDictionaryDropdownTreeComponent, typeof i7.FormlyDownloadDocumentsComponent, typeof i8.FormlyViewDocumentsComponent, typeof i9.FormlyFieldStepperComponent, typeof i10.FormlyGenerateDocumentsComponent, typeof i11.FormlyFieldIdentificationComponent, typeof i12.FormlyParagraphComponent, typeof i13.FormlyRadioComponent, typeof i14.FormlyCheckboxesComponent, typeof i15.RowFillerComponent, typeof i16.RowSpacerComponent, typeof i17.RowWrapperComponent, typeof i18.FormlyScanIdComponent, typeof i19.FormlySignComponent, typeof i20.FormlyUploadDocumentsComponent, typeof i21.FormlyValidateContactInfoComponent, typeof i22.FormlyViewOffersComponent, typeof i23.FormlyOpenBankingComponent, typeof i24.PickerComponent, typeof i25.AppTreeviewComponent, typeof i26.DictionariesTreeComponent, typeof i27.ConfirmationComponent, typeof i28.GridComponent, typeof i29.CollectorFormComponent, typeof i30.FormlyEnrolCardComponent, typeof i31.ExternalLinkDirective], [typeof i32.CommonModule, typeof i33.ReactiveFormsModule, typeof i33.FormsModule, typeof i34.NgScrollbarModule, typeof i35.SignLibModule, typeof i36.PdfViewerModule, typeof i37.MarkdownModule, typeof i38.RouterModule, typeof i39.TranslateModule, typeof i40.MatInputModule, typeof i41.MatFormFieldModule, typeof i42.MatAutocompleteModule, typeof i43.MatCheckboxModule, typeof i44.MatDatepickerModule, typeof i45.MatNativeDateModule, typeof i41.MatFormFieldModule, typeof i40.MatInputModule, typeof i46.MatRadioModule, typeof i47.MatSelectModule, typeof i48.MatSliderModule, typeof i49.MatSlideToggleModule, typeof i50.MatMenuModule, typeof i51.MatSidenavModule, typeof i52.MatToolbarModule, typeof i53.MatCardModule, typeof i54.MatDividerModule, typeof i55.MatExpansionModule, typeof i56.MatGridListModule, typeof i57.MatListModule, typeof i58.MatStepperModule, typeof i59.MatTabsModule, typeof i60.MatTreeModule, typeof i61.MatButtonModule, typeof i62.MatButtonToggleModule, typeof i63.MatBadgeModule, typeof i64.MatChipsModule, typeof i65.MatIconModule, typeof i66.MatProgressSpinnerModule, typeof i67.MatProgressBarModule, typeof i45.MatRippleModule, typeof i68.MatBottomSheetModule, typeof i69.MatDialogModule, typeof i70.MatSnackBarModule, typeof i71.MatTooltipModule, typeof i72.MatPaginatorModule, typeof i73.MatSortModule, typeof i74.MatTableModule, typeof i75.FormlyModule, typeof i76.FormlyMaterialModule, typeof i77.FormlyMatTextAreaModule, typeof i78.FormlyMatDatepickerModule], [typeof i29.CollectorFormComponent]>;
|
|
84
86
|
static ɵinj: i0.ɵɵInjectorDeclaration<OriginFormModule>;
|
|
85
87
|
}
|
|
@@ -12,7 +12,7 @@ export declare class ApplicationDataService {
|
|
|
12
12
|
generateDocuments(generateDocumentsCommand: ApplicationGenerateDocumentsDto): Observable<any>;
|
|
13
13
|
getGenerateDocuments(getCommand: ApplicationGetGeneratedDocumentsDto): Observable<GeneratedDocument[]>;
|
|
14
14
|
downloadFile(appDataId: string, docId: string, fileName: string): Observable<any>;
|
|
15
|
-
scanId(scanIdCommand: ScanIdDto): Observable<
|
|
15
|
+
scanId(scanIdCommand: ScanIdDto): Observable<boolean>;
|
|
16
16
|
getSteps(appDataId: string): Promise<any>;
|
|
17
17
|
saveApp(appData: AppData): Observable<any>;
|
|
18
18
|
saveStep(appDataId: string, currentStep: any, selectedOfferId?: any): Observable<any>;
|