@dazhicheng/ui 1.5.97 → 1.5.98

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.
@@ -1,7 +1,9 @@
1
1
  import { LazyFormFieldProps } from './types';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
- slots: Partial<Record<string, (_: any) => any>>;
4
+ slots: {
5
+ default?(_: any): any;
6
+ };
5
7
  refs: {
6
8
  containerRef: HTMLDivElement;
7
9
  };
@@ -41,7 +41,7 @@ export interface FormRowSchema {
41
41
  /** 是否显示,支持布尔值或函数 (values, actions) => boolean | Promise<boolean>,默认 true */
42
42
  ifShow?: IfShowConditionType;
43
43
  }
44
- export type GroupFormSchema = FormGroupSchema | FormRowSchema | FormSlotSchema | FormSchema;
44
+ export type GroupFormSchema = FormSchema | FormGroupSchema | FormRowSchema | FormSlotSchema;
45
45
  /**
46
46
  * 导航锚点基础配置:排除由内部维护的 `items` 与 `modelValue`,增加 `show` 控制是否渲染。
47
47
  * @property {boolean} [show] - 是否显示悬浮导航,默认 true