ngx-rs-ant 1.8.4 → 1.8.5
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/box-container/PluginManager.d.ts +1 -1
- package/box-container/box-container.component.d.ts +1 -4
- package/box-container/box-item/item-config/item-config.component.d.ts +2 -2
- package/data-grid/data-grid.component.d.ts +0 -1
- package/data-grid/data-grid.service.d.ts +4 -1
- package/esm2020/box-container/PluginManager.mjs +28 -12
- package/esm2020/box-container/box-container.component.mjs +2 -8
- package/esm2020/box-container/box-item/item-config/item-config.component.mjs +4 -4
- package/esm2020/data-grid/cell-component-template/cell-component-template.component.mjs +5 -2
- package/esm2020/data-grid/data-grid.component.mjs +5 -21
- package/esm2020/data-grid/data-grid.factory.mjs +2 -27
- package/esm2020/data-grid/data-grid.service.mjs +15 -4
- package/esm2020/form/form.component.mjs +6 -4
- package/esm2020/types/component/form-item-component-base.mjs +1 -1
- package/esm2020/types/config/form-item-config-base.mjs +1 -1
- package/fesm2015/ngx-rs-ant.mjs +246 -263
- package/fesm2015/ngx-rs-ant.mjs.map +1 -1
- package/fesm2020/ngx-rs-ant.mjs +237 -254
- package/fesm2020/ngx-rs-ant.mjs.map +1 -1
- package/package.json +1 -1
- package/types/component/form-item-component-base.d.ts +12 -0
- package/types/config/form-item-config-base.d.ts +8 -0
package/package.json
CHANGED
|
@@ -4,6 +4,18 @@ export declare class FormItemComponentBase extends ComponentBase {
|
|
|
4
4
|
* 编辑模式,在设计器中为true,用于区分组件设计和应用状态
|
|
5
5
|
*/
|
|
6
6
|
editMode: boolean;
|
|
7
|
+
/**
|
|
8
|
+
* 当前表单对应数据类租户
|
|
9
|
+
*/
|
|
10
|
+
tenant: any;
|
|
11
|
+
/**
|
|
12
|
+
* 当前表单对应数据类名
|
|
13
|
+
*/
|
|
14
|
+
className: any;
|
|
15
|
+
/**
|
|
16
|
+
* 当前表单对应数据实例oid
|
|
17
|
+
*/
|
|
18
|
+
oid?: any;
|
|
7
19
|
/**
|
|
8
20
|
* 表单当前model
|
|
9
21
|
*/
|
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
import { EventEmitter } from "@angular/core";
|
|
2
2
|
import { ConfigBase } from "./config-base";
|
|
3
3
|
export declare class FormItemConfigBase extends ConfigBase {
|
|
4
|
+
/**
|
|
5
|
+
* 当前表单对应数据类租户
|
|
6
|
+
*/
|
|
7
|
+
tenant: any;
|
|
8
|
+
/**
|
|
9
|
+
* 当前表单对应数据类名
|
|
10
|
+
*/
|
|
11
|
+
className: any;
|
|
4
12
|
/**
|
|
5
13
|
* 属性树,用于指定表单组件绑定的属性
|
|
6
14
|
*/
|