@planeasyinc/le-angular 0.0.19 → 0.0.21
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/dist/fesm2022/planeasyinc-le-angular.mjs +320 -302
- package/dist/fesm2022/planeasyinc-le-angular.mjs.map +1 -1
- package/dist/lib/views/form-view/form-view.component.d.ts +0 -1
- package/dist/lib/views/form-view/form-view.utils.d.ts +5 -4
- package/dist/lib/views/table-view/table-view.component.d.ts +2 -2
- package/package.json +6 -3
|
@@ -23,12 +23,13 @@ export declare const mapBodyModelToRequestBody: (bodyModel: Record<string, any>
|
|
|
23
23
|
export declare const isTabJSON: (control: any) => boolean;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @param source Control Config
|
|
27
|
-
* @param target Control Config
|
|
26
|
+
* @param source Control Config with nested controls
|
|
27
|
+
* @param target Control Config with json value
|
|
28
28
|
* @param engine Form Engine
|
|
29
29
|
*
|
|
30
|
-
* @description
|
|
31
|
-
*
|
|
30
|
+
* @description
|
|
31
|
+
* Traverse source Control Config tree, get latest value from state.
|
|
32
|
+
* If no value found in state, set target Control Config initial value
|
|
32
33
|
*/
|
|
33
34
|
export declare const getTabFormValues: (source: FeControlConfig, target: FeControlConfig, engine: FeFormEngine) => Record<string, any>;
|
|
34
35
|
export declare const mapFormValuesToJSON: (values: Record<string, any>) => string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { LeTableAction, LeTableNode } from '@planeasyinc/le-core';
|
|
2
|
-
import { TableDataSource } from './table-data-sourse';
|
|
3
|
-
import { PageChange } from './table-view.types';
|
|
4
2
|
import { ColumnFilterModel } from '../../services/le-filters.service';
|
|
5
3
|
import { ColumnModel, RowModel } from '../../types/le-table';
|
|
4
|
+
import { PageChange } from './table-view.types';
|
|
5
|
+
import { TableDataSource } from './table-data-sourse';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class TableViewComponent {
|
|
8
8
|
private apiService;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@planeasyinc/le-angular",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.21",
|
|
4
4
|
"private": false,
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -37,8 +37,11 @@
|
|
|
37
37
|
"ng-packagr": "^19.0.0",
|
|
38
38
|
"typescript": "5.6.3",
|
|
39
39
|
"@types/web": "0.0.347",
|
|
40
|
-
"@planeasyinc/
|
|
41
|
-
"@planeasyinc/
|
|
40
|
+
"@planeasyinc/fe-core": "0.1.25",
|
|
41
|
+
"@planeasyinc/le-core": "0.0.4",
|
|
42
|
+
"@planeasyinc/fe-adapters-old": "0.1.15",
|
|
43
|
+
"@planeasyinc/fe-angular": "0.1.43",
|
|
44
|
+
"@planeasyinc/fe-adapters-sections": "0.1.14"
|
|
42
45
|
},
|
|
43
46
|
"scripts": {
|
|
44
47
|
"lint": "eslint src",
|