@dazhicheng/ui 1.5.183 → 1.5.185

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.
@@ -14,4 +14,4 @@ export type { FieldArrayContext, FieldEntry, ReadonlyFieldEntry, ResolvedFieldAr
14
14
  export type { TtExtendedFormApi, TtFormProps, TtFormRenderProps, TtFormSchema };
15
15
  export * as z from 'zod';
16
16
  export { useGroupForm } from './src/group-form';
17
- export type { FormGroupSchema, GroupFormNavAnchorProps, GroupFormSchema, GroupFormState, UseGroupFormNavAnchorProps, UseGroupFormOptions, UseGroupFormOptionsWithGroupSchema, UseGroupFormOptionsWithLegacySchema, } from './src/group-form';
17
+ export type * from './src/group-form';
@@ -1,4 +1,4 @@
1
1
  export { GroupFormApi } from './groupFormApi';
2
2
  export { useGroupForm } from './useGroupForm';
3
- export type { FormGroupSchema, FormRowSchema, GroupFormApiOptions, GroupFormNavAnchorProps, GroupFormSchema, GroupFormState, UseGroupFormNavAnchorProps, UseGroupFormOptions, UseGroupFormOptionsWithGroupSchema, UseGroupFormOptionsWithLegacySchema, } from './types';
3
+ export type * from './types';
4
4
  export { extractFlatSchemas, isGroupSchema, isRowSchema, isSlotSchema, resolveGroupSchema } from './utils';
@@ -46,7 +46,7 @@ export type GroupFormSchema = FormSchema | FormGroupSchema | FormRowSchema | For
46
46
  * 导航锚点基础配置:排除由内部维护的 `items` 与 `modelValue`,增加 `show` 控制是否渲染。
47
47
  * @property {boolean} [show] - 是否显示悬浮导航,默认 true
48
48
  */
49
- type NavAnchorPropsBase = Omit<Partial<TtNavAnchorProps>, "items" | "modelValue"> & {
49
+ export type NavAnchorPropsBase = Omit<Partial<TtNavAnchorProps>, "items" | "modelValue"> & {
50
50
  show?: boolean;
51
51
  };
52
52
  /**
@@ -167,4 +167,3 @@ export type GroupFormApiOptions = Pick<UseGroupFormOptions, "virtual" | "navAnch
167
167
  /** 分组 schema 树形结构(由 useGroupForm 传入) */
168
168
  groupSchema: GroupFormSchema[];
169
169
  };
170
- export {};