From f15770abe73d62dae4785378bdf1ecbe66f59a9f Mon Sep 17 00:00:00 2001 From: jim chen Date: Wed, 29 Nov 2017 10:23:13 +0800 Subject: [PATCH] add .d.ts file & optimized some docs (#315) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 增加AvatarList d.ts说明文件 * 修改 axis的链接 , g2修改了新的官网 * AvatarList 增加判断是否为必须属性 * 删除无用的空行. 优化格式 * 修改错误的图表文档. 增加几处漏写的文档 * 添加图表的 描述文件chart.d.ts * 改了个错别字! * 增加CountDown d.ts描述文件 * 增加 DescriptionList d.ts描述文件 * 增加所有剩余对外开发的组件 .d.ts 完善一些文档 * fontWeight 推荐使用 number 来表示数字 * 增加文本自动省略号 .d.ts --- src/components/Ellipsis/index.d.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/components/Ellipsis/index.d.ts diff --git a/src/components/Ellipsis/index.d.ts b/src/components/Ellipsis/index.d.ts new file mode 100644 index 00000000..91446707 --- /dev/null +++ b/src/components/Ellipsis/index.d.ts @@ -0,0 +1,11 @@ +import React from "react"; +export interface EllipsisProps { + tooltip?: boolean; + length?: number; + lines?: number; +} + +export default class Ellipsis extends React.Component< + EllipsisProps, + any +> {} -- GitLab