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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-rs-ant",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "license": "MIT",
5
5
  "description": "RsAnt components based on Angular and DevExtreme",
6
6
  "exports": {
@@ -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
  */
@@ -1,3 +1,11 @@
1
1
  import { ConfigBase } from "./config-base";
2
2
  export declare class CellConfigBase extends ConfigBase {
3
+ /**
4
+ * 当前视图对应数据类租户
5
+ */
6
+ tenant: any;
7
+ /**
8
+ * 当前视图对应数据类名
9
+ */
10
+ className: any;
3
11
  }