@myrtex-org/form 1.1.16 → 1.1.18
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 +23 -3
- package/esm2022/lib/modules/object-form/components/elements/input/table/components/input-table-modal/input-table-modal.component.mjs +17 -4
- package/fesm2022/myrtex-org-form.mjs +37 -4
- package/fesm2022/myrtex-org-form.mjs.map +1 -1
- package/lib/modules/object-form/components/elements/input/date/input-date.component.d.ts +2 -0
- package/lib/modules/object-form/components/elements/input/table/components/input-table-modal/input-table-modal.component.d.ts +2 -0
- package/lib/modules/object-form/components/elements/input/table/input-table.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -10,11 +10,13 @@ export declare class InputDateComponent extends BaseFieldComponent<InputDateMode
|
|
|
10
10
|
private readonly _millisecondsInDay;
|
|
11
11
|
private _isInit;
|
|
12
12
|
private _isUpdatingInternal;
|
|
13
|
+
private _format;
|
|
13
14
|
dateModel: string | string[] | null;
|
|
14
15
|
modelStart: ComponentValueModel;
|
|
15
16
|
modelEnd: ComponentValueModel;
|
|
16
17
|
modelCounter: number;
|
|
17
18
|
get getInvalid(): boolean;
|
|
19
|
+
get dateFormat(): string;
|
|
18
20
|
get value(): string | string[];
|
|
19
21
|
get getViewTypeTimepicker(): boolean;
|
|
20
22
|
updateValue(event: InputDateTimeValueWithId): void;
|
|
@@ -22,6 +22,7 @@ export declare class InputTableModalComponent extends ModalServiceComponent<Inpu
|
|
|
22
22
|
settings: InputTableModel;
|
|
23
23
|
rowModel: TableRowModel;
|
|
24
24
|
isCheckRequired: boolean;
|
|
25
|
+
emptyRow: boolean;
|
|
25
26
|
constructor(dialogRef: ModalRef<InputTableModalResult>, store: Store, data: InputTableModalParams);
|
|
26
27
|
componentValueChanged(valueModel: ComponentValueModel | ComponentValueModel[]): void;
|
|
27
28
|
ok(): void;
|
|
@@ -29,6 +30,7 @@ export declare class InputTableModalComponent extends ModalServiceComponent<Inpu
|
|
|
29
30
|
private _transformValues;
|
|
30
31
|
private _isValid;
|
|
31
32
|
private _getRequiredComponents;
|
|
33
|
+
private isEmpty;
|
|
32
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputTableModalComponent, never>;
|
|
33
35
|
static ɵcmp: i0.ɵɵComponentDeclaration<InputTableModalComponent, "app-input-table-modal", never, {}, {}, never, never, true, never>;
|
|
34
36
|
}
|
|
@@ -35,7 +35,7 @@ export declare class InputTableComponent implements OnInit, OnDestroy {
|
|
|
35
35
|
deleteRow(event: any): void;
|
|
36
36
|
get disabled(): boolean;
|
|
37
37
|
editRow(event: any): void;
|
|
38
|
-
getFormat(component: ComponentModelBase): "" | "dd.MM.yyyy
|
|
38
|
+
getFormat(component: ComponentModelBase): "" | "dd.MM.yyyy" | "dd.MM.yyyy hh:mm";
|
|
39
39
|
getDataType(component: ComponentModelBase): "date" | "string";
|
|
40
40
|
showTotal(component: ComponentModelBase): boolean;
|
|
41
41
|
isTotalColumn(component: ComponentModelBase): boolean;
|