ngx-rs-ant 2.2.0 → 2.2.1
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/data-grid/cell-component-template/cell-component-template.component.d.ts +3 -1
- package/esm2020/data-grid/cell-component-template/cell-component-template.component.mjs +10 -3
- package/esm2020/data-grid/data-grid.component.mjs +7 -5
- package/esm2020/data-grid/data-grid.factory.mjs +2 -1
- package/esm2020/types/component/cell-component-base.mjs +1 -1
- package/esm2020/types/config/cell-config-base.mjs +1 -1
- package/fesm2015/ngx-rs-ant.mjs +16 -6
- package/fesm2015/ngx-rs-ant.mjs.map +1 -1
- package/fesm2020/ngx-rs-ant.mjs +16 -6
- package/fesm2020/ngx-rs-ant.mjs.map +1 -1
- package/package.json +1 -1
- package/types/component/cell-component-base.d.ts +12 -0
- package/types/config/cell-config-base.d.ts +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
import { ComponentBase } from "./component-base";
|
|
2
2
|
import { EventEmitter } from "@angular/core";
|
|
3
3
|
export declare class CellComponentBase extends ComponentBase {
|
|
4
|
+
/**
|
|
5
|
+
* 当前台账对应数据类租户
|
|
6
|
+
*/
|
|
7
|
+
tenant: any;
|
|
8
|
+
/**
|
|
9
|
+
* 当前台账对应数据类名
|
|
10
|
+
*/
|
|
11
|
+
className: any;
|
|
12
|
+
/**
|
|
13
|
+
* 当前行对应数据实例oid
|
|
14
|
+
*/
|
|
15
|
+
oid: any;
|
|
4
16
|
/**
|
|
5
17
|
* 属性
|
|
6
18
|
*/
|