# form-item-wrapper-dependencies LLMs.txt > 供 LLM 快速理解 `@flatbiz/antd/form-item-wrapper-dependencies` 的使用方式。 ## 模块定位 FormItem依赖写法包装,当处在EasyForm内部时,不支持 此写法,使用 代替 ## 导入方式 ```ts import { FormItemWrapperDependencies } from '@flatbiz/antd/form-item-wrapper-dependencies'; // 也可以从主入口导入:import { ... } from '@flatbiz/antd'; ``` ## 公开导出 - `FormItemWrapperDependencies` - FormItem依赖写法包装,当处在EasyForm内部时,不支持 此写法,使用 ReactElement - `dependencies`(必填):: any[] - `className`(可选):: string - `style`(可选):: CSSProperties ## 使用规则与行为 - FormItem依赖写法包装,当处在EasyForm内部时,不支持 此写法,使用 代替 ## 基础示例 ```tsx import { FormItemWrapperDependencies, type FormItemWrapperDependenciesProps } from '@flatbiz/antd/form-item-wrapper-dependencies'; const props: FormItemWrapperDependenciesProps = { // 按业务传入必要参数 }; ; ``` ## 源码索引 - `src/form-item-wrapper-dependencies/dependencies.tsx` - `src/form-item-wrapper-dependencies/index.ts` ## 给 LLM 的注意事项 - 优先使用 `@flatbiz/antd/form-item-wrapper-dependencies` 或主入口 `@flatbiz/antd` 的公开导出,不要引用内部实现文件。 - 当 Props 与 antd 原组件同名能力冲突时,以本模块导出的 Props 类型为准。 - 若文档未覆盖某个边缘参数,请读取上方源码索引中的类型定义和 JSDoc。