@myrtex-org/form 1.0.34 → 1.0.36
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/input/file/input-file.component.mjs +3 -3
- package/esm2022/lib/modules/object-form/store/object-form.reducers.mjs +2 -1
- package/fesm2022/myrtex-org-form.mjs +3 -2
- package/fesm2022/myrtex-org-form.mjs.map +1 -1
- package/lib/modules/object-form/components/elements/input/table/input-table.component.d.ts +1 -1
- package/lib/modules/object-form/store/object-form.effects.d.ts +4 -4
- package/package.json +1 -1
|
@@ -33,7 +33,7 @@ export declare class InputTableComponent implements OnInit, OnDestroy {
|
|
|
33
33
|
get disabled(): boolean;
|
|
34
34
|
editRow(event: any): void;
|
|
35
35
|
getFormat(component: ComponentModelBase): "" | "dd.MM.yyyy hh:mm" | "dd.MM.yyyy";
|
|
36
|
-
getDataType(component: ComponentModelBase): "
|
|
36
|
+
getDataType(component: ComponentModelBase): "date" | "string";
|
|
37
37
|
showTotal(component: ComponentModelBase): boolean;
|
|
38
38
|
isTotalColumn(component: ComponentModelBase): boolean;
|
|
39
39
|
private _initModel;
|
|
@@ -23,11 +23,11 @@ export declare class ObjectFormEffects {
|
|
|
23
23
|
}> & import("@ngrx/effects").CreateEffectMetadata;
|
|
24
24
|
loadTemplatePending$: Observable<({
|
|
25
25
|
templateSysName: string;
|
|
26
|
-
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.
|
|
26
|
+
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadObjectPending>) | ({
|
|
27
27
|
templateSysName: string;
|
|
28
|
-
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.
|
|
28
|
+
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadPreviewTemplatePending>) | import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadTemplateError> | ({
|
|
29
29
|
templateSysName: string;
|
|
30
|
-
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.
|
|
30
|
+
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadTemplateSuccess>)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
31
31
|
loadPreviewTemplatePending: Observable<({
|
|
32
32
|
templateSettings: TemplateModel;
|
|
33
33
|
templateSysName: string;
|
|
@@ -39,7 +39,7 @@ export declare class ObjectFormEffects {
|
|
|
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/store/src/models").TypedAction<objectFormActions.EApplicationActions.
|
|
42
|
+
} & import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadObjectSuccess>) | import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.LoadObjectError> | import("@ngrx/store/src/models").TypedAction<objectFormActions.EApplicationActions.CheckAllDependencyRules>> & 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
45
|
updateApplicationValues$: Observable<({
|