@nocobase/client 2.0.52 → 2.0.53
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/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/SubTableColumnModel.d.ts +4 -0
- package/es/flow/models/fields/ClickableFieldModel.d.ts +3 -0
- package/es/flow/models/fields/DisplayEnumFieldModel.d.ts +6 -0
- package/es/flow/models/fields/DisplayTitleFieldModel.d.ts +2 -2
- package/es/index.mjs +3313 -3089
- package/es/schema-component/antd/form-v2/Form.d.ts +5 -0
- package/lib/index.js +128 -128
- package/package.json +6 -6
|
@@ -12,6 +12,11 @@ import React from 'react';
|
|
|
12
12
|
export interface FormProps extends IFormLayoutProps {
|
|
13
13
|
form?: FormilyForm;
|
|
14
14
|
disabled?: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Override the internally calculated scroll container height.
|
|
17
|
+
* Used by blocks that compose additional headers/footers outside FormV2.
|
|
18
|
+
*/
|
|
19
|
+
height?: number;
|
|
15
20
|
}
|
|
16
21
|
export declare const Form: React.FC<FormProps> & {
|
|
17
22
|
Designer?: any;
|