@myrtex-org/form 1.1.32 → 1.1.33
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/table/input-table.component.mjs +49 -1
- package/fesm2022/myrtex-org-form.mjs +47 -0
- package/fesm2022/myrtex-org-form.mjs.map +1 -1
- package/lib/modules/object-form/components/elements/input/table/input-table.component.d.ts +3 -0
- package/package.json +1 -1
|
@@ -8,6 +8,8 @@ import { ColumnModel } from './models/column.model';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class InputTableComponent implements OnInit, OnDestroy {
|
|
10
10
|
type: ComponentType;
|
|
11
|
+
private _referenceService;
|
|
12
|
+
private _lookupsCache;
|
|
11
13
|
private _store;
|
|
12
14
|
private _detector;
|
|
13
15
|
private _modalService;
|
|
@@ -43,6 +45,7 @@ export declare class InputTableComponent implements OnInit, OnDestroy {
|
|
|
43
45
|
private _initDataSource;
|
|
44
46
|
private _initColumns;
|
|
45
47
|
private _transformColumn;
|
|
48
|
+
private getLookupData;
|
|
46
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputTableComponent, never>;
|
|
47
50
|
static ɵcmp: i0.ɵɵComponentDeclaration<InputTableComponent, "app-input-table", never, { "values": { "alias": "values"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "changed": "changed"; }, never, never, false, never>;
|
|
48
51
|
}
|