Skip to content

Commit

Permalink
update @ant-design/icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Fisherma committed Jan 8, 2020
1 parent 53f21e2 commit 953e59b
Show file tree
Hide file tree
Showing 7 changed files with 757 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@

---

## 0.2.2

`2020-01-08`

- 🐞 fix `Table` dropdown position bug
- 🐞 fix `Icon` not work with updated `@ant-design/icons`

## 0.2.1

`2019-12-20`
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@

---

## 0.2.2

`2020-01-08`

- 🐞 修复 `Table` 组件中dropdown位置不正确的问题
- 🐞 修复 `Icon` 组件 `@ant-design/icons` 升级后无法使用问题

## 0.2.1

`2019-12-20`
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "santd",
"version": "0.2.1",
"version": "0.2.2",
"description": "san UI design",
"scripts": {
"start": "cross-env NODE_ENV=development node scripts/preview.js",
Expand All @@ -23,7 +23,7 @@
"dist"
],
"dependencies": {
"@ant-design/icons": "^4.0.0-alpha.11",
"@ant-design/icons": "^4.0.0-alpha.19",
"add-dom-event-listener": "^1.1.0",
"async-validator": "^1.11.2",
"axios": "^0.18.0",
Expand Down
2 changes: 1 addition & 1 deletion src/icon/docs/iconDisplay/fields.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @file Santd icon display fileds file
**/

import manifest from '@ant-design/icons-svg/lib/manifest';
import manifest from './manifest';

let allIcons = [];
Object.keys(manifest).forEach(theme => {
Expand Down
2 changes: 1 addition & 1 deletion src/icon/docs/iconDisplay/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import san from 'san';
import Radio from '../../../radio';
import Icon from '../../../icon';
import Input from '../../../input';
import manifest from '@ant-design/icons-svg/lib/manifest';
import {FilledIcon, OutlinedIcon, TwoToneIcon} from './themeIcons';
import {categories} from './fields';
import manifest from './manifest';

import './index.less';

Expand Down
Loading

0 comments on commit 953e59b

Please sign in to comment.