diff --git a/docs/tab/index.en-us.md b/docs/tab/index.en-us.md index aab013b53e..e42e442a13 100644 --- a/docs/tab/index.en-us.md +++ b/docs/tab/index.en-us.md @@ -47,3 +47,4 @@ Disable animation with `animation={false}` | --------- | ---------- | --------- | ----- | | title | Title of tab | ReactNode | - | | closeable | If tab is closeable | Boolean | false | +| disabled | If tab is disabled | Boolean | false | \ No newline at end of file diff --git a/docs/tab/index.md b/docs/tab/index.md index 8a89e5b802..65758f8f18 100644 --- a/docs/tab/index.md +++ b/docs/tab/index.md @@ -59,3 +59,4 @@ Fusion 提供了三级选项卡,分别用于不同的场景。 | --------- | ---------- | --------- | ----- | | title | 选项卡标题 | ReactNode | - | | closeable | 单个选项卡是否可关闭 | Boolean | false | +| disabled | 选项卡是否被禁用 | Boolean | false | diff --git a/src/grid/row.jsx b/src/grid/row.jsx index 505191cd56..371da9c39b 100644 --- a/src/grid/row.jsx +++ b/src/grid/row.jsx @@ -36,13 +36,11 @@ export default class Row extends Component { /** * (不支持IE9浏览器)多列垂直方向对齐方式 * @enumdesc 顶部对齐, 居中对齐, 底部对齐, 按第一行文字基线对齐, 未设置高度或设为 auto,将占满整个容器的高度 - * @default 'stretch' */ align: PropTypes.oneOf(['top', 'center', 'bottom', 'baseline', 'stretch']), /** * (不支持IE9浏览器)行内具有多余空间时的布局方式 * @enumdesc 左对齐, 居中对齐, 右对齐, 两端对齐,列之间间距相等, 每列具有相同的左右间距,行两端间距是列间距的二分之一 - * @default 'start' */ justify: PropTypes.oneOf(['start', 'center', 'end', 'space-between', 'space-around']), /**