@myrtex-org/form 1.1.64 → 1.1.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/input/date/input-date.component.mjs +13 -64
- package/esm2022/lib/modules/object-form/components/elements/input/table/components/input-table-modal/input-table-modal.component.mjs +17 -46
- package/esm2022/lib/modules/object-form/components/elements/input/table/input-table.component.mjs +27 -68
- package/fesm2022/myrtex-org-form.mjs +53 -174
- package/fesm2022/myrtex-org-form.mjs.map +1 -1
- package/lib/modules/object-form/components/elements/input/date/input-date.component.d.ts +1 -2
- package/lib/modules/object-form/components/elements/input/table/components/input-table-modal/input-table-modal.component.d.ts +0 -1
- package/lib/modules/object-form/components/elements/input/table/input-table.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -21,9 +21,8 @@ export declare class InputDateComponent extends BaseFieldComponent<InputDateMode
|
|
|
21
21
|
get getViewTypeTimepicker(): boolean;
|
|
22
22
|
updateValue(event: InputDateTimeValueWithId): void;
|
|
23
23
|
updateCounter(value: number | null): void;
|
|
24
|
-
_transformOutputValue():
|
|
24
|
+
_transformOutputValue(): ComponentValueModel | ComponentValueModel[];
|
|
25
25
|
_initSubscriptionForValue(): void;
|
|
26
|
-
private _loadFromInputs;
|
|
27
26
|
_customInit(): void;
|
|
28
27
|
private _getDaysDifference;
|
|
29
28
|
private _changeDays;
|
|
@@ -25,7 +25,6 @@ export declare class InputTableModalComponent extends ModalServiceComponent<Inpu
|
|
|
25
25
|
rowModel: TableRowModel;
|
|
26
26
|
isCheckRequired: boolean;
|
|
27
27
|
emptyRow: boolean;
|
|
28
|
-
private _detector;
|
|
29
28
|
constructor(dialogRef: ModalRef<InputTableModalResult>, store: Store, formulaCalculateService: FormulaCalculateService, data: InputTableModalParams);
|
|
30
29
|
componentValueChanged(valueModel: ComponentValueModel | ComponentValueModel[]): void;
|
|
31
30
|
ok(): void;
|
|
@@ -38,7 +38,7 @@ export declare class InputTableComponent implements OnInit, OnDestroy {
|
|
|
38
38
|
deleteRow(event: any): void;
|
|
39
39
|
get disabled(): boolean;
|
|
40
40
|
editRow(event: any): void;
|
|
41
|
-
getFormat(component: ComponentModelBase): "dd.MM.yyyy
|
|
41
|
+
getFormat(component: ComponentModelBase): "" | "dd.MM.yyyy" | "dd.MM.yyyy hh:mm";
|
|
42
42
|
getDataType(component: ComponentModelBase): "date" | "boolean" | "string";
|
|
43
43
|
showTotal(component: ComponentModelBase): boolean;
|
|
44
44
|
isTotalColumn(component: ComponentModelBase): boolean;
|