Browse Source
- Use node: protocol for fs and path imports in scripts/simple.js
- Replace deprecated hideRequiredMark with requiredMark={false}
- Replace Steps.Step with Steps items prop for antd v6
- Add missing data.d.ts for table-list service
- Fix formRef type in step-form using Form.useForm()
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
pull/11631/head
8 changed files with 87 additions and 70 deletions
@ -0,0 +1,14 @@ |
|||
export type TableListItem = { |
|||
key: number; |
|||
disabled?: boolean; |
|||
href: string; |
|||
avatar: string; |
|||
name: string; |
|||
owner: string; |
|||
desc: string; |
|||
callNo: number; |
|||
status: 0 | 1 | 2 | 3; |
|||
updatedAt: string; |
|||
createdAt: string; |
|||
progress: number; |
|||
}; |
|||
Loading…
Reference in new issue