feat(dify-ui): add drawer (#35917)

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
yyh
2026-05-08 08:53:32 +00:00
committed by GitHub
co-authored by autofix-ci[bot]
parent 82f24b336d
commit 8f93bb36ba
66 changed files with 1686 additions and 1955 deletions
+8
View File
@@ -0,0 +1,8 @@
export const segmentImportStatus = {
waiting: 'waiting',
processing: 'processing',
completed: 'completed',
error: 'error',
} as const
export type SegmentImportStatus = typeof segmentImportStatus[keyof typeof segmentImportStatus]