docs:补充table事件文档&修复timeline文档问题 (#6197)

This commit is contained in:
hsm-lv 2023-02-16 16:39:24 +08:00 committed by GitHub
parent 6b25efb333
commit 12a7c62067
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 34 additions and 22 deletions

View File

@ -1038,10 +1038,10 @@ action 还可以使用 `body` 来渲染其他组件,让那些不支持行为
当前组件会对外派发以下事件,可以通过`onEvent`来监听这些事件,并通过`actions`来配置执行的动作,详细查看[事件动作](../../docs/concepts/event-action)。
| 事件名称 | 事件参数 | 说明 |
| ---------- | ------------------------ | -------------- |
| click | nativeEvent 鼠标事件对象 | 点击时触发 |
| mouseenter | nativeEvent 鼠标事件对象 | 鼠标移入时触发 |
| mouseleave | nativeEvent 鼠标事件对象 | 鼠标移出时触发 |
| ---------- | -------------------------------------- | -------------- |
| click | `nativeEvent: MouseEvent` 鼠标事件对象 | 点击时触发 |
| mouseenter | `nativeEvent: MouseEvent` 鼠标事件对象 | 鼠标移入时触发 |
| mouseleave | `nativeEvent: MouseEvent` 鼠标事件对象 | 鼠标移出时触发 |
## 动作表

View File

@ -214,7 +214,7 @@ v6 用 fa-regular / fa-solid 等表示前缀,可参考官网[示例](https://f
当前组件会对外派发以下事件,可以通过`onEvent`来监听这些事件,并通过`actions`来配置执行的动作,详细查看[事件动作](../../docs/concepts/event-action)。
| 事件名称 | 事件参数 | 说明 |
| ---------- | ------------------------ | -------------- |
| click | nativeEvent 鼠标事件对象 | 点击时触发 |
| mouseenter | nativeEvent 鼠标事件对象 | 鼠标移入时触发 |
| mouseleave | nativeEvent 鼠标事件对象 | 鼠标移出时触发 |
| ---------- | -------------------------------------- | -------------- |
| click | `nativeEvent: MouseEvent` 鼠标事件对象 | 点击时触发 |
| mouseenter | `nativeEvent: MouseEvent` 鼠标事件对象 | 鼠标移入时触发 |
| mouseleave | `nativeEvent: MouseEvent` 鼠标事件对象 | 鼠标移出时触发 |

View File

@ -1857,3 +1857,15 @@ popOver 的其它配置请参考 [popover](./popover)
| fixed | `left` \| `right` \| `none` | | 是否固定当前列 |
| popOver | | | 弹出框 |
| copyable | `boolean``{icon: string, content:string}` | | 是否可复制 |
## 事件表
> 2.6.1 及以上版本
当前组件会对外派发以下事件,可以通过`onEvent`来监听这些事件,并通过`actions`来配置执行的动作,详细查看[事件动作](../../docs/concepts/event-action)。
| 事件名称 | 事件参数 | 说明 |
| ---------- | ------------------------------------------------------------------------------ | ---------------------------------------------- |
| click | `nativeEvent: MouseEvent` 鼠标事件对象<br/>`[columnName]: string` 对应列名的值 | 监听表格列点击事件,表格数据点击时触发 |
| mouseenter | `nativeEvent: MouseEvent` 鼠标事件对象<br/>`[columnName]: string` 对应列名的值 | 监听表格列鼠标移入事件,表格数据鼠标移入时触发 |
| mouseleave | `nativeEvent: MouseEvent` 鼠标事件对象<br/>`[columnName]: string` 对应列名的值 | 监听表格列鼠标移出事件,表格数据鼠标移出时触发 |

View File

@ -191,7 +191,7 @@ icon:
当前组件会对外派发以下事件,可以通过`onEvent`来监听这些事件,并通过`actions`来配置执行的动作,详细查看[事件动作](../../docs/concepts/event-action)。
| 事件名称 | 事件参数 | 说明 |
| ---------- | ------------------------ | -------------- |
| click | nativeEvent 鼠标事件对象 | 点击时触发 |
| mouseenter | nativeEvent 鼠标事件对象 | 鼠标移入时触发 |
| mouseleave | nativeEvent 鼠标事件对象 | 鼠标移出时触发 |
| ---------- | -------------------------------------- | -------------- |
| click | `nativeEvent: MouseEvent` 鼠标事件对象 | 点击时触发 |
| mouseenter | `nativeEvent: MouseEvent` 鼠标事件对象 | 鼠标移入时触发 |
| mouseleave | `nativeEvent: MouseEvent` 鼠标事件对象 | 鼠标移出时触发 |

View File

@ -394,12 +394,12 @@ order: 73
## 属性表
| 属性名 | 类型 | 默认值 | 说明 |
| --------- | ------------------------------------- | ---------- | ----------------------------------------------------------- | --- |
| --------- | ------------------------------------- | ---------- | ----------------------------------------------------------- |
| type | `string` | | `"timeline"` 指定为 时间轴 渲染器 |
| items | Array<[timelineItem](#timeline.item)> | [] | 配置节点数据 |
| source | [API](../../../docs/types/api) | | 数据源,可通过数据映射获取当前数据域变量、或者配置 API 对象 |
| mode | `left` \| `right` \| `alternate` | `right` | 指定文字相对于时间轴的位置,仅 direction=vertical 时支持 |
| direction | `vertical` \| `horizontal` | `vertical` | 时间轴方向 | |
| direction | `vertical` \| `horizontal` | `vertical` | 时间轴方向 |
| reverse | `boolean` | `false` | 根据时间倒序显示 |
### timeline.item

View File

@ -66,7 +66,7 @@ order: 70
当前组件会对外派发以下事件,可以通过`onEvent`来监听这些事件,并通过`actions`来配置执行的动作,详细查看[事件动作](../../docs/concepts/event-action)。
| 事件名称 | 事件参数 | 说明 |
| ---------- | ------------------------ | -------------- |
| click | nativeEvent 鼠标事件对象 | 点击时触发 |
| mouseenter | nativeEvent 鼠标事件对象 | 鼠标移入时触发 |
| mouseleave | nativeEvent 鼠标事件对象 | 鼠标移出时触发 |
| ---------- | -------------------------------------- | -------------- |
| click | `nativeEvent: MouseEvent` 鼠标事件对象 | 点击时触发 |
| mouseenter | `nativeEvent: MouseEvent` 鼠标事件对象 | 鼠标移入时触发 |
| mouseleave | `nativeEvent: MouseEvent` 鼠标事件对象 | 鼠标移出时触发 |