@myrtex-org/form 1.0.65 → 1.0.66
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/modules/object-form/components/elements/content/tooltip/content-tooltip.component.mjs +1 -1
- package/esm2022/lib/modules/object-form/components/elements/input/checkbox-group/input-checkbox-group.component.mjs +1 -1
- package/esm2022/lib/modules/object-form/components/elements/input/date/input-date.component.mjs +1 -1
- package/esm2022/lib/modules/object-form/components/elements/input/file/input-file.component.mjs +1 -1
- package/esm2022/lib/modules/object-form/components/elements/input/inn/input-inn.component.mjs +1 -1
- package/esm2022/lib/modules/object-form/components/elements/input/link/input-link.component.mjs +1 -1
- package/esm2022/lib/modules/object-form/components/elements/input/number/input-number.component.mjs +1 -1
- package/esm2022/lib/modules/object-form/components/elements/input/phone/input-phone.component.mjs +1 -1
- package/esm2022/lib/modules/object-form/components/elements/input/radio-group/input-radio-group.component.mjs +1 -1
- package/esm2022/lib/modules/object-form/components/elements/input/select/input-select.component.mjs +1 -1
- package/esm2022/lib/modules/object-form/components/elements/input/switch/input-switch.component.mjs +1 -1
- package/esm2022/lib/modules/object-form/components/elements/input/table/components/input-table-modal/form-dispenser-modal/form-dispenser-modal.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/input/table/components/input-table-modal/input-table-modal.component.mjs +2 -2
- package/esm2022/lib/modules/object-form/components/elements/input/table/input-table.component.mjs +3 -3
- package/esm2022/lib/modules/object-form/components/elements/input/text/input-text.component.mjs +1 -1
- package/esm2022/lib/modules/object-form/components/elements/input/textarea/input-textarea.component.mjs +1 -1
- package/esm2022/lib/modules/object-form/components/form-dispenser/form-dispenser.component.mjs +2 -2
- package/fesm2022/myrtex-org-form.mjs +18 -18
- package/fesm2022/myrtex-org-form.mjs.map +1 -1
- package/lib/modules/object-form/store/object-form.effects.d.ts +10 -10
- package/package.json +1 -1
|
@@ -21,37 +21,37 @@ export declare class ObjectFormEffects {
|
|
|
21
21
|
apiPrefix: string;
|
|
22
22
|
apiUrl: string;
|
|
23
23
|
}> & import("@ngrx/effects").CreateEffectMetadata;
|
|
24
|
-
loadTemplatePending$: Observable<
|
|
24
|
+
loadTemplatePending$: Observable<({
|
|
25
25
|
templateSysName: string;
|
|
26
26
|
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadTemplateSuccess>) | ({
|
|
27
27
|
templateSysName: string;
|
|
28
|
-
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadObjectPending>) | ({
|
|
28
|
+
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadObjectPending>) | import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadTemplateError> | ({
|
|
29
29
|
templateSysName: string;
|
|
30
30
|
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadPreviewTemplatePending>)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
31
|
-
loadPreviewTemplatePending: Observable<
|
|
31
|
+
loadPreviewTemplatePending: Observable<({
|
|
32
32
|
templateSettings: TemplateModel;
|
|
33
33
|
templateSysName: string;
|
|
34
|
-
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadPreviewTemplateSuccess>)
|
|
35
|
-
loadApplicationPending$: Observable<
|
|
34
|
+
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadPreviewTemplateSuccess>) | import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadPreviewTemplateError>> & import("@ngrx/effects").CreateEffectMetadata;
|
|
35
|
+
loadApplicationPending$: Observable<({
|
|
36
36
|
templateSettings: TemplateModel;
|
|
37
37
|
sectionValues: import("../models").SectionValueModel[];
|
|
38
38
|
applicationId: string;
|
|
39
39
|
isDraft: boolean;
|
|
40
40
|
canEditObject: boolean;
|
|
41
41
|
versionId?: string | number | null | undefined;
|
|
42
|
-
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadObjectSuccess>)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
42
|
+
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadObjectSuccess>) | import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.CheckAllDependencyRules> | import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadObjectError>> & import("@ngrx/effects").CreateEffectMetadata;
|
|
43
43
|
checkCanUpdateValues$: Observable<[ValueModel | ValueModel[], any]> & import("@ngrx/effects").CreateEffectMetadata;
|
|
44
44
|
saveValuesDebounced$: Observable<never> & import("@ngrx/effects").CreateEffectMetadata;
|
|
45
|
-
updateApplicationValues$: Observable<
|
|
45
|
+
updateApplicationValues$: Observable<({
|
|
46
46
|
result: import("../models").UpdateValueResult;
|
|
47
47
|
objectId: string;
|
|
48
48
|
versionId?: string | number | null | undefined;
|
|
49
|
-
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.SaveValuesSuccess>)
|
|
49
|
+
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.SaveValuesSuccess>) | import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.SaveValuesError>> & import("@ngrx/effects").CreateEffectMetadata;
|
|
50
50
|
saveApplicationPending$: Observable<import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.SaveObjectSuccess> | import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.SaveObjectError>> & import("@ngrx/effects").CreateEffectMetadata;
|
|
51
51
|
copyApplicationPending$: Observable<import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.CopyObjectSuccess> | import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.CopyObjectError>> & import("@ngrx/effects").CreateEffectMetadata;
|
|
52
|
-
loadSectionFilesPending$: Observable<
|
|
52
|
+
loadSectionFilesPending$: Observable<({
|
|
53
53
|
sectionFiles: FileModel[];
|
|
54
|
-
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadSectionFilesSuccess>)
|
|
54
|
+
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadSectionFilesSuccess>) | import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadSectionFilesError>> & import("@ngrx/effects").CreateEffectMetadata;
|
|
55
55
|
printDocument$: Observable<[never, string, any, string | number | null]> & import("@ngrx/effects").CreateEffectMetadata;
|
|
56
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectFormEffects, never>;
|
|
57
57
|
static ɵprov: i0.ɵɵInjectableDeclaration<ObjectFormEffects>;
|