From 12a7c620674ee5aad9a50b2e45282eb0c8188d8e Mon Sep 17 00:00:00 2001 From: hsm-lv <80095014+hsm-lv@users.noreply.github.com> Date: Thu, 16 Feb 2023 16:39:24 +0800 Subject: [PATCH] =?UTF-8?q?docs:=E8=A1=A5=E5=85=85table=E4=BA=8B=E4=BB=B6?= =?UTF-8?q?=E6=96=87=E6=A1=A3&=E4=BF=AE=E5=A4=8Dtimeline=E6=96=87=E6=A1=A3?= =?UTF-8?q?=E9=97=AE=E9=A2=98=20(#6197)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/zh-CN/components/action.md | 10 +++++----- docs/zh-CN/components/icon.md | 10 +++++----- docs/zh-CN/components/table.md | 12 ++++++++++++ docs/zh-CN/components/tag.md | 10 +++++----- docs/zh-CN/components/timeline.md | 4 ++-- docs/zh-CN/components/tpl.md | 10 +++++----- 6 files changed, 34 insertions(+), 22 deletions(-) diff --git a/docs/zh-CN/components/action.md b/docs/zh-CN/components/action.md index 8339904e0..fc6e462a3 100755 --- a/docs/zh-CN/components/action.md +++ b/docs/zh-CN/components/action.md @@ -1037,11 +1037,11 @@ action 还可以使用 `body` 来渲染其他组件,让那些不支持行为 当前组件会对外派发以下事件,可以通过`onEvent`来监听这些事件,并通过`actions`来配置执行的动作,详细查看[事件动作](../../docs/concepts/event-action)。 -| 事件名称 | 事件参数 | 说明 | -| ---------- | ------------------------ | -------------- | -| click | nativeEvent 鼠标事件对象 | 点击时触发 | -| mouseenter | nativeEvent 鼠标事件对象 | 鼠标移入时触发 | -| mouseleave | nativeEvent 鼠标事件对象 | 鼠标移出时触发 | +| 事件名称 | 事件参数 | 说明 | +| ---------- | -------------------------------------- | -------------- | +| click | `nativeEvent: MouseEvent` 鼠标事件对象 | 点击时触发 | +| mouseenter | `nativeEvent: MouseEvent` 鼠标事件对象 | 鼠标移入时触发 | +| mouseleave | `nativeEvent: MouseEvent` 鼠标事件对象 | 鼠标移出时触发 | ## 动作表 diff --git a/docs/zh-CN/components/icon.md b/docs/zh-CN/components/icon.md index 11fa7405f..775d64c3f 100755 --- a/docs/zh-CN/components/icon.md +++ b/docs/zh-CN/components/icon.md @@ -213,8 +213,8 @@ 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` 鼠标事件对象 | 鼠标移出时触发 | diff --git a/docs/zh-CN/components/table.md b/docs/zh-CN/components/table.md index 47c728b21..91d51ef3a 100755 --- a/docs/zh-CN/components/table.md +++ b/docs/zh-CN/components/table.md @@ -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` 鼠标事件对象
`[columnName]: string` 对应列名的值 | 监听表格列点击事件,表格数据点击时触发 | +| mouseenter | `nativeEvent: MouseEvent` 鼠标事件对象
`[columnName]: string` 对应列名的值 | 监听表格列鼠标移入事件,表格数据鼠标移入时触发 | +| mouseleave | `nativeEvent: MouseEvent` 鼠标事件对象
`[columnName]: string` 对应列名的值 | 监听表格列鼠标移出事件,表格数据鼠标移出时触发 | diff --git a/docs/zh-CN/components/tag.md b/docs/zh-CN/components/tag.md index e2145f810..79630e1a8 100644 --- a/docs/zh-CN/components/tag.md +++ b/docs/zh-CN/components/tag.md @@ -190,8 +190,8 @@ icon: 当前组件会对外派发以下事件,可以通过`onEvent`来监听这些事件,并通过`actions`来配置执行的动作,详细查看[事件动作](../../docs/concepts/event-action)。 -| 事件名称 | 事件参数 | 说明 | -| ---------- | ------------------------ | -------------- | -| click | nativeEvent 鼠标事件对象 | 点击时触发 | -| mouseenter | nativeEvent 鼠标事件对象 | 鼠标移入时触发 | -| mouseleave | nativeEvent 鼠标事件对象 | 鼠标移出时触发 | +| 事件名称 | 事件参数 | 说明 | +| ---------- | -------------------------------------- | -------------- | +| click | `nativeEvent: MouseEvent` 鼠标事件对象 | 点击时触发 | +| mouseenter | `nativeEvent: MouseEvent` 鼠标事件对象 | 鼠标移入时触发 | +| mouseleave | `nativeEvent: MouseEvent` 鼠标事件对象 | 鼠标移出时触发 | diff --git a/docs/zh-CN/components/timeline.md b/docs/zh-CN/components/timeline.md index c4dae829b..07bf434d7 100644 --- a/docs/zh-CN/components/timeline.md +++ b/docs/zh-CN/components/timeline.md @@ -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 diff --git a/docs/zh-CN/components/tpl.md b/docs/zh-CN/components/tpl.md index 5707f6072..e377e6504 100755 --- a/docs/zh-CN/components/tpl.md +++ b/docs/zh-CN/components/tpl.md @@ -65,8 +65,8 @@ order: 70 当前组件会对外派发以下事件,可以通过`onEvent`来监听这些事件,并通过`actions`来配置执行的动作,详细查看[事件动作](../../docs/concepts/event-action)。 -| 事件名称 | 事件参数 | 说明 | -| ---------- | ------------------------ | -------------- | -| click | nativeEvent 鼠标事件对象 | 点击时触发 | -| mouseenter | nativeEvent 鼠标事件对象 | 鼠标移入时触发 | -| mouseleave | nativeEvent 鼠标事件对象 | 鼠标移出时触发 | +| 事件名称 | 事件参数 | 说明 | +| ---------- | -------------------------------------- | -------------- | +| click | `nativeEvent: MouseEvent` 鼠标事件对象 | 点击时触发 | +| mouseenter | `nativeEvent: MouseEvent` 鼠标事件对象 | 鼠标移入时触发 | +| mouseleave | `nativeEvent: MouseEvent` 鼠标事件对象 | 鼠标移出时触发 |