@myrtex-org/form 1.0.3 → 1.0.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.
|
@@ -27,7 +27,7 @@ export declare class InputTableComponent implements OnInit, OnDestroy {
|
|
|
27
27
|
createRow(): void;
|
|
28
28
|
deleteRow(event: any): void;
|
|
29
29
|
editRow(event: any): void;
|
|
30
|
-
getFormat(component: ComponentModelBase): "dd.MM.yyyy"
|
|
30
|
+
getFormat(component: ComponentModelBase): "" | "dd.MM.yyyy";
|
|
31
31
|
getDataType(component: ComponentModelBase): "date" | undefined;
|
|
32
32
|
showTotal(component: ComponentModelBase): boolean;
|
|
33
33
|
isTotalColumn(component: ComponentModelBase): boolean;
|
|
@@ -17,34 +17,34 @@ export declare class ObjectFormEffects {
|
|
|
17
17
|
private _toasterService;
|
|
18
18
|
private _autoSaveStore;
|
|
19
19
|
constructor(_actions$: Actions, _store: Store, _router: Router, _applicationService: ObjectFormService, _toasterService: ToasterService);
|
|
20
|
-
loadTemplatePending$: Observable<({
|
|
20
|
+
loadTemplatePending$: Observable<import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadTemplateError> | ({
|
|
21
21
|
templateSysName: string;
|
|
22
22
|
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadTemplateSuccess>) | ({
|
|
23
23
|
templateSysName: string;
|
|
24
|
-
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadApplicationPending>) |
|
|
24
|
+
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadApplicationPending>) | ({
|
|
25
25
|
templateSysName: string;
|
|
26
26
|
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadPreviewTemplatePending>)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
27
|
-
loadPreviewTemplatePending: Observable<({
|
|
27
|
+
loadPreviewTemplatePending: Observable<import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadPreviewTemplateError> | ({
|
|
28
28
|
templateSettings: TemplateModel;
|
|
29
29
|
templateSysName: string;
|
|
30
|
-
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadPreviewTemplateSuccess>)
|
|
31
|
-
loadApplicationPending$: Observable<({
|
|
30
|
+
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadPreviewTemplateSuccess>)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
31
|
+
loadApplicationPending$: Observable<import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadApplicationError> | import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.CheckAllDependencyRules> | ({
|
|
32
32
|
templateSettings: TemplateModel;
|
|
33
33
|
sectionValues: import("../models").SectionValueModel[];
|
|
34
34
|
applicationId: string;
|
|
35
35
|
isDraft: boolean;
|
|
36
|
-
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadApplicationSuccess>)
|
|
36
|
+
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadApplicationSuccess>)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
37
37
|
checkCanUpdateValues$: Observable<[ValueModel | ValueModel[], any]> & import("@ngrx/effects").CreateEffectMetadata;
|
|
38
38
|
saveValuesDebounced$: Observable<never> & import("@ngrx/effects").CreateEffectMetadata;
|
|
39
|
-
updateApplicationValues$: Observable<({
|
|
39
|
+
updateApplicationValues$: Observable<import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.SaveValuesError> | ({
|
|
40
40
|
result: import("../models").UpdateValueResult;
|
|
41
41
|
applicationId: string;
|
|
42
|
-
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.SaveValuesSuccess>)
|
|
42
|
+
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.SaveValuesSuccess>)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
43
43
|
saveApplicationPending$: Observable<import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.SaveApplicationSuccess> | import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.SaveApplicationError>> & import("@ngrx/effects").CreateEffectMetadata;
|
|
44
44
|
copyApplicationPending$: Observable<import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.CopyApplicationSuccess> | import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.CopyApplicationError>> & import("@ngrx/effects").CreateEffectMetadata;
|
|
45
|
-
loadSectionFilesPending$: Observable<({
|
|
45
|
+
loadSectionFilesPending$: Observable<import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadSectionFilesError> | ({
|
|
46
46
|
sectionFiles: FileModel[];
|
|
47
|
-
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadSectionFilesSuccess>)
|
|
47
|
+
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadSectionFilesSuccess>)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
48
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectFormEffects, never>;
|
|
49
49
|
static ɵprov: i0.ɵɵInjectableDeclaration<ObjectFormEffects>;
|
|
50
50
|
}
|