From b1773502803ba7404d8162c98b80db1bd2658e24 Mon Sep 17 00:00:00 2001 From: afc163 Date: Mon, 7 Dec 2015 16:32:44 +0800 Subject: [PATCH 1/2] update icon document --- components/icon/index.md | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/components/icon/index.md b/components/icon/index.md index 7841bbedd3..7c6d38883b 100644 --- a/components/icon/index.md +++ b/components/icon/index.md @@ -10,34 +10,30 @@ ## 图标的命名规范 -我们为每个图标赋予了语义化的命名。只需在 标签内,制定对应的 type 属性即可。 - -不同 type 命名规则如下: +我们为每个图标赋予了语义化的命名,命名规则如下: - 实心和描线图标保持同名,用 `-o` 来区分,比如 `question-circle`(实心) 和 `question-circle-o`(描线); - 命名顺序:`[icon名]-[形状可选]-[描线与否]-[方向可选]`。 -## 实现原理 +## 如何使用 -所有的 Icon 标签最终会渲染为 +使用 `` 标签声明组件,指定图标对应的 type 属性,示例代码如下: ```html - + ``` -## 如何使用 - -使用 标签申明组件,设置对应的 type 设置需要渲染的图标,示例代码如下: +最终会渲染为: ```html - + ``` -> 点击图标复制代码。 - ## 图标列表 +> 点击图标复制代码。 + ### 一. 方向性图标
From 7f7e66070e5bf47869df1d794720be70fcc27108 Mon Sep 17 00:00:00 2001 From: tom Date: Mon, 7 Dec 2015 18:53:28 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix=20bug:=20=E5=8F=AA=E6=9C=89=E5=9C=A8?= =?UTF-8?q?=E5=AD=98=E5=9C=A8btn=E6=83=85=E5=86=B5=E4=B8=8B=E6=89=8D?= =?UTF-8?q?=E8=83=BD=E8=B0=83=E7=94=A8close?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/notification/index.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/notification/index.jsx b/components/notification/index.jsx index ab7cb49756..0810c52247 100644 --- a/components/notification/index.jsx +++ b/components/notification/index.jsx @@ -59,6 +59,7 @@ function notice(args) { duration: duration, closable: true, onClose: args.onClose, + key: args.key, style: {} }); } else { @@ -73,6 +74,7 @@ function notice(args) { duration: duration, closable: true, onClose: args.onClose, + key: args.key, style: {} }); } else {