@aspire-ui/element-component-pro 1.0.3 → 1.0.4

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/README.md CHANGED
@@ -310,6 +310,7 @@ const handleSubmit = (values) => {
310
310
  - **ifShow** / **show**: 动态显示(ifShow 不渲染 DOM)
311
311
  - **dynamicDisabled**: 动态禁用
312
312
  - **dynamicRules**: 动态校验规则
313
+ - **labelWidth**: 支持字段级标签宽度,覆盖表单级 `labelWidth`
313
314
  - **componentProps**: 支持函数,可获取 formModel、formActionType
314
315
 
315
316
  ## 示例与文档
@@ -5,6 +5,7 @@ declare function __VLS_template(): Partial<Record<string, (_: {
5
5
  schema: {
6
6
  field: string;
7
7
  label: string;
8
+ labelWidth?: string | undefined;
8
9
  component?: (import('..').ProFormBuiltInComponent | import('..').ProFormCustomComponent) | undefined;
9
10
  componentProps?: (Record<string, unknown> | ((params: import('..').RenderCallbackParams & {
10
11
  formActionType?: FormActionType;