Sources来源引用
Sources
来源引用
展示引用的数据来源地址。
通用属性参考:通用属性
| 属性 | 说明 | 类型 | 默认值 | 版本 |
|---|---|---|---|---|
| classNames | 样式类名 | Record<SemanticDOM, string> | - | - |
| styles | 样式 style | Record<SemanticDOM, CSSProperties> | - | - |
| title | 标题内容 | React.ReactNode | - | - |
| items | 来源内容 | SourcesItem[] | - | - |
| expandIconPosition | 折叠图标位置 | 'start' | 'end' | 'start' | - |
| defaultExpanded | 默认是否展开 | boolean | true | - |
| expanded | 是否展开 | boolean | - | - |
| onExpand | 展开事件 | (expand: boolean) => void | - | - |
| onClick | 点击事件 | (item: SourcesItem) => void | - | - |
| inline | 行内模式 | boolean | false | - |
| activeKey | 行内模式,激活的 key | React.Key | - | - |
| popoverOverlayWidth | 弹出层宽度 | number | string | 300 | - |
interface SourcesItem {key?: React.Key;title: React.ReactNode;url?: string;icon?: React.ReactNode;description?: React.ReactNode;}