Hair Keeper v1.0.0:一个高度集成、深度定制、约定优于配置的全栈Web应用模板,旨在保持灵活性的同时提供一套基于成熟架构的开发底座,自带身份认证、权限控制、丰富前端组件、文件上传、后台任务、智能体开发等丰富功能,提供AI开发辅助,免于纠结功能如何实现,可快速上手专注于业务逻辑
This commit is contained in:
67
src/components/data-details/index.ts
Normal file
67
src/components/data-details/index.ts
Normal file
@@ -0,0 +1,67 @@
|
||||
/**
|
||||
* 通用对象详情展示框架
|
||||
*
|
||||
* 基于"小而美"的原子组件设计理念,提供一套可自由组装的详情展示组件库。
|
||||
* 每个组件职责单一,无复杂配置,通过组合而非配置实现灵活性。
|
||||
*/
|
||||
|
||||
export { DetailSheet } from './detail-sheet'
|
||||
export type { DetailSheetProps } from './detail-sheet'
|
||||
|
||||
export { DetailHeader } from './detail-header'
|
||||
export type { DetailHeaderProps } from './detail-header'
|
||||
|
||||
export { DetailSection } from './detail-section'
|
||||
export type { DetailSectionProps } from './detail-section'
|
||||
|
||||
export { DetailField } from './detail-field'
|
||||
export type { DetailFieldProps } from './detail-field'
|
||||
|
||||
export { DetailFieldGroup } from './detail-field-group'
|
||||
export type { DetailFieldGroupProps } from './detail-field-group'
|
||||
|
||||
export { DetailBadgeList } from './detail-badge-list'
|
||||
export type { DetailBadgeListProps } from './detail-badge-list'
|
||||
|
||||
export { DetailList } from './detail-list'
|
||||
export type { DetailListProps } from './detail-list'
|
||||
|
||||
export { DetailCodeBlock } from './detail-code-block'
|
||||
export type { DetailCodeBlockProps } from './detail-code-block'
|
||||
|
||||
export { DetailCopyable } from './detail-copyable'
|
||||
export type { DetailCopyableProps } from './detail-copyable'
|
||||
|
||||
export {
|
||||
Timeline,
|
||||
TimelineEmpty,
|
||||
TimelineItem,
|
||||
TimelineConnector,
|
||||
TimelineNode,
|
||||
TimelineContent,
|
||||
TimelineHeader,
|
||||
TimelineTitleArea,
|
||||
TimelineTitle,
|
||||
TimelineBadge,
|
||||
TimelineActions,
|
||||
TimelineTimestamp,
|
||||
TimelineDescription,
|
||||
TimelineMetadata,
|
||||
} from './detail-timeline'
|
||||
export type {
|
||||
TimelineProps,
|
||||
TimelineEmptyProps,
|
||||
TimelineItemProps,
|
||||
TimelineConnectorProps,
|
||||
TimelineNodeProps,
|
||||
TimelineContentProps,
|
||||
TimelineHeaderProps,
|
||||
TimelineTitleAreaProps,
|
||||
TimelineTitleProps,
|
||||
TimelineBadgeProps,
|
||||
TimelineActionsProps,
|
||||
TimelineTimestampProps,
|
||||
TimelineDescriptionProps,
|
||||
TimelineMetadataProps,
|
||||
TimelineMetadataItem,
|
||||
} from './detail-timeline'
|
||||
Reference in New Issue
Block a user