@smartbit4all/ng-client 3.3.114 → 3.3.115
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/esm2020/lib/smart-grid/api/grid-api/model/gridColumnMeta.mjs +1 -1
- package/esm2020/lib/smart-grid/api/grid-api/model/gridModel.mjs +1 -1
- package/esm2020/lib/smart-grid/api/grid-api/model/gridServerModel.mjs +1 -1
- package/esm2020/lib/smart-grid/smart-grid.component.mjs +16 -6
- package/fesm2015/smartbit4all-ng-client.mjs +16 -6
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +15 -5
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-grid/api/grid-api/model/gridColumnMeta.d.ts +4 -0
- package/lib/smart-grid/api/grid-api/model/gridModel.d.ts +2 -0
- package/lib/smart-grid/api/grid-api/model/gridServerModel.d.ts +2 -0
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.115.tgz +0 -0
- package/smartbit4all-ng-client-3.3.114.tgz +0 -0
|
@@ -14,6 +14,10 @@ export interface GridColumnMeta {
|
|
|
14
14
|
label: string;
|
|
15
15
|
propertyName: string;
|
|
16
16
|
typeClass?: string;
|
|
17
|
+
/**
|
|
18
|
+
* The format instruction for the column. This format string must be JavaScript format stringh for Angular.
|
|
19
|
+
*/
|
|
20
|
+
typeFormat?: string;
|
|
17
21
|
alwaysHidden?: boolean;
|
|
18
22
|
alwaysShow?: boolean;
|
|
19
23
|
contentType?: GridColumnContentType;
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { GridUpdateData } from './gridUpdateData';
|
|
12
13
|
import { GridRow } from './gridRow';
|
|
13
14
|
/**
|
|
14
15
|
* This object represents the server model of a grid component.
|
|
@@ -17,4 +18,5 @@ export interface GridServerModel {
|
|
|
17
18
|
selectedRows: {
|
|
18
19
|
[key: string]: GridRow;
|
|
19
20
|
};
|
|
21
|
+
defaultGridData?: GridUpdateData;
|
|
20
22
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|