@icos-desktop/react-components 1.2.0-beta.10 → 1.2.0-beta.11
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/icos-desktop.d.ts +12 -2
- package/dist/icos-desktop.js +3871 -32
- package/dist/icos-desktop.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/icos-desktop.d.ts
CHANGED
@@ -251,11 +251,21 @@ declare const CcosSenseEdit: {
|
|
251
251
|
|
252
252
|
interface SenseFormProps {
|
253
253
|
/**
|
254
|
-
*
|
254
|
+
* 数据
|
255
255
|
*/
|
256
256
|
data: string;
|
257
|
+
/**
|
258
|
+
* schema
|
259
|
+
*/
|
257
260
|
schemaJSON: string;
|
258
|
-
|
261
|
+
/**
|
262
|
+
* 只读列表
|
263
|
+
*/
|
264
|
+
readonlyList?: string[];
|
265
|
+
/**
|
266
|
+
* 是否禁用(初次渲染时生效)
|
267
|
+
*/
|
268
|
+
disabled?: boolean;
|
259
269
|
}
|
260
270
|
interface SenseFormRef {
|
261
271
|
getValues: () => Promise<any>;
|