2.1.0 • Published 4 years ago

@aligov/components-table-actions v2.1.0

Weekly downloads
12
License
MIT
Repository
-
Last release
4 years ago

表格操作单元格容器

@aligov/components-table-actions

表格操作单元格容器。

用于表格的操作列内容渲染,直接写内容,容器给内部的元素添加空白间隔。

2.0.0 版本开始,添加了超过指定数量后将收起放到「更多」下拉菜单里的功能。下拉菜单默认和触发元素右对齐,可根据实际场景来做调整。

用法

<TableActions>
  <Button type="primary" text={true}>Button型文字</Button>
  <Button type="primary">按钮</Button>
  <a href="//taobao.com">链接</a>
  <span>普通文本</span>
</TableActions>

API

参数名说明必填类型默认值备注
moreThreshold子元素超过该数量后,将出现下拉菜单Nnumber32.0.0 版本起
moreText下拉菜单展示文案Nstring"更多"2.0.0 版本起
moreProps下拉菜单 props,详见 MenuButtonNobject{}2.0.0 版本起
popupProps下拉弹层 props,详见 OverlayNobject{}2.0.0 版本起