yiminghe
|
fdee139459
|
add className for table
|
2015-10-22 17:28:12 +08:00 |
|
afc163
|
75eefe533c
|
upgrade datepicker
|
2015-10-22 17:16:02 +08:00 |
|
afc163
|
86c5ead45a
|
Add onChange prop to Table, fix #395
|
2015-10-21 20:21:14 +08:00 |
|
偏右
|
3af6ea1639
|
Merge pull request #417 from ant-design/feature-vertical-tabs
Add vertical tabs, fix #398
|
2015-10-21 20:04:29 +08:00 |
|
afc163
|
b6cdeb157d
|
Add vertical tabs, fix #398
|
2015-10-21 20:00:02 +08:00 |
|
jljsj
|
d2cf91d837
|
update queue-anim interval
|
2015-10-21 18:15:17 +08:00 |
|
Benjy Cui
|
f7a8b11243
|
chore: remove deprecated APIs
|
2015-10-21 17:59:57 +08:00 |
|
jljsj
|
dc2c720cec
|
update queue-anim enter-leave state.show
|
2015-10-21 17:56:42 +08:00 |
|
jljsj
|
ba34a49f79
|
update queue-anim demo
|
2015-10-21 17:53:38 +08:00 |
|
yiminghe
|
8c71530838
|
add start end demo for datepicker
|
2015-10-21 16:27:48 +08:00 |
|
yiminghe
|
1e43c9ddc5
|
upgrade tabs
|
2015-10-21 14:53:48 +08:00 |
|
afc163
|
eed88125f1
|
Fix document
|
2015-10-21 10:48:58 +08:00 |
|
yiminghe
|
8f2e8437be
|
add calendarStyle
|
2015-10-20 16:50:42 +08:00 |
|
yiminghe
|
76b0f673ec
|
beta2
|
2015-10-20 16:47:55 +08:00 |
|
afc163
|
aed7eae2bc
|
Fix confirmLoading
|
2015-10-20 10:45:49 +08:00 |
|
羽航
|
999e8a0e53
|
fix conflict
|
2015-10-20 09:50:47 +08:00 |
|
afc163
|
f26bbc1cd5
|
Add document version switch in footer, #406
|
2015-10-19 17:58:56 +08:00 |
|
afc163
|
e5bed684eb
|
Remove enter-animation document
|
2015-10-19 16:21:26 +08:00 |
|
jljsj
|
bf1d703274
|
queue-anim demo
|
2015-10-19 15:36:32 +08:00 |
|
afc163
|
dc47b1cd5b
|
fix reqwest
|
2015-10-19 11:34:44 +08:00 |
|
ioldfish
|
b3351715f3
|
Merge branch 'develop-0.10.0' of https://github.com/ant-design/ant-design into develop-0.10.0
|
2015-10-15 14:38:12 +08:00 |
|
afc163
|
8e00cdedf4
|
Merge branch 'master' into develop-0.10.0
|
2015-10-15 11:26:32 +08:00 |
|
afc163
|
ed7114e25e
|
update modal info
|
2015-10-15 11:26:07 +08:00 |
|
ioldfish
|
d700a53543
|
Merge branch 'develop-0.10.0' of https://github.com/ant-design/ant-design into develop-0.10.0
|
2015-10-15 10:40:01 +08:00 |
|
ioldfish
|
aca09cf191
|
update ant-tree
|
2015-10-15 10:38:14 +08:00 |
|
Yuwei Ba
|
60987b0112
|
Update offset.md
Typo
|
2015-10-15 00:10:01 +08:00 |
|
afc163
|
9ef14500f3
|
Fix datepicker defaultValue, closes #391
|
2015-10-14 18:09:28 +08:00 |
|
afc163
|
164c01b5ba
|
Merge branch 'master' into develop-0.10.0
|
2015-10-14 16:44:52 +08:00 |
|
afc163
|
a3b2ad5791
|
#380
|
2015-10-14 10:29:15 +08:00 |
|
羽航
|
1c9b9e8c86
|
fix little code style
|
2015-10-13 13:30:37 +08:00 |
|
羽航
|
dd76fe6520
|
增加InputNumber的Validator示例
|
2015-10-13 13:26:49 +08:00 |
|
yiminghe
|
fb43a1b86d
|
fix anim server render
|
2015-10-13 12:52:41 +08:00 |
|
羽航
|
1efca6afa3
|
增加Datepicker的Validator示例
|
2015-10-12 17:53:32 +08:00 |
|
羽航
|
52edc78676
|
修改onSelect属性为onChange属性,以支持Validator.为向前兼容,保留了onSelect属性.
|
2015-10-12 17:53:01 +08:00 |
|
偏右
|
842c7bb33d
|
Merge pull request #370 from benjycui/feature-button
feat: add support for `htmlType`
|
2015-10-11 15:21:53 +08:00 |
|
afc163
|
100adfc69a
|
update row select argument name
|
2015-10-10 11:35:31 +08:00 |
|
afc163
|
d184b39450
|
Merge branch 'feature-#252' of https://github.com/RaoHai/ant-design into develop-0.10.0
|
2015-10-09 18:48:32 +08:00 |
|
RaoHai
|
2c1fda70d6
|
Table 列选择模式重构
+ 表格 `rowSelection` 支持多选
+ 表格可配置某行数据默认选中、不能选中。该配置对 ajax 载入的数据有效。
示例:
```
getCheckboxProps: function (value) {
return {
defaultValue: value.name === '胡彦祖ajax2', // 配置默认勾选的列
disabled: value.name === '李大嘴ajax3' // 配置无法勾选的列
}
},
```
|
2015-10-09 17:14:09 +08:00 |
|
Benjy Cui
|
1e45e02e8a
|
feat: add support for htmlType
|
2015-10-09 16:55:07 +08:00 |
|
Benjy Cui
|
f4ca0798de
|
refactor: generate className with rcUtil.classSet
|
2015-10-09 16:42:08 +08:00 |
|
偏右
|
88f6be5855
|
Merge pull request #368 from benjycui/feature-button
chore: replace `button` tag with `Button` component
|
2015-10-09 15:47:14 +08:00 |
|
Benjy Cui
|
26069c33e9
|
chore: upgrade react-slick in order to work with React@0.14.x
|
2015-10-09 11:35:44 +08:00 |
|
Benjy Cui
|
429a4ca382
|
refactor: joinClasses is removed in React@0.14.x
|
2015-10-09 10:55:52 +08:00 |
|
Benjy Cui
|
5b86a4be1d
|
refactor: replace button tag with Button component
|
2015-10-08 15:13:04 +08:00 |
|
afc163
|
93c181677a
|
Merge branch develop-0.10.0
|
2015-10-06 12:55:01 +08:00 |
|
Benjy Cui
|
2f771b0482
|
feat: button should be a component
|
2015-10-05 15:19:07 +08:00 |
|
elrrrrrrr
|
c540d124a5
|
chore: 迁移 upload iconfont
|
2015-10-02 16:52:34 +08:00 |
|
elrrrrrrr
|
725a142669
|
chore: 迁移 tag iconfont
|
2015-10-02 16:39:15 +08:00 |
|
elrrrrrrr
|
b7a922a895
|
chore: 迁移 tabs iconfont
|
2015-10-02 16:36:48 +08:00 |
|
elrrrrrrr
|
1640a34c4c
|
chore: 迁移 table iconfont
|
2015-10-02 16:31:51 +08:00 |
|
elrrrrrrr
|
37a1e03bc8
|
chore: 迁移 switch iconfont
|
2015-10-02 16:25:10 +08:00 |
|
elrrrrrrr
|
335c34aab7
|
chore: 迁移 slider iconfont
- 需要飞哥 review
|
2015-10-02 16:18:43 +08:00 |
|
elrrrrrrr
|
b9fa8d1a45
|
chore: 迁移 progress iconfont
|
2015-10-02 15:58:37 +08:00 |
|
elrrrrrrr
|
ac6505e68a
|
chore: 迁移 notification iconfont
|
2015-10-02 15:48:56 +08:00 |
|
elrrrrrrr
|
244c3a78a5
|
chore: 迁移 modal iconfont
- api 接口有变
|
2015-10-02 15:41:04 +08:00 |
|
elrrrrrrr
|
f99848a5a0
|
chore: 迁移 message iconfont
- 需要修改组件 jsx
|
2015-10-02 15:32:16 +08:00 |
|
elrrrrrrr
|
ae5ae396ef
|
chore: 迁移 menu iconfont
|
2015-10-02 15:26:18 +08:00 |
|
elrrrrrrr
|
d467994249
|
chore: 迁移 form iconfont
|
2015-10-02 15:17:21 +08:00 |
|
elrrrrrrr
|
d89cc5610b
|
chore: 迁移 dropdown iconfont 组件
|
2015-10-02 15:12:07 +08:00 |
|
elrrrrrrr
|
bcc4265201
|
chore: 迁移 button iconfont
- 手动加上 margin-right 8px
|
2015-10-02 15:04:28 +08:00 |
|
elrrrrrrr
|
a85898da62
|
chore: 迁移 breadcrump iconfont
|
2015-10-02 14:25:46 +08:00 |
|
elrrrrrrr
|
7f701cc2b7
|
chore: 迁移 badge iconfont
|
2015-10-02 14:23:53 +08:00 |
|
elrrrrrrr
|
64aa7b0acb
|
chore: 迁移 alert 组件 iconfont
|
2015-10-02 14:21:02 +08:00 |
|
elrrrrrrr
|
2ec165d2aa
|
chore(iconfont): 根据 CR 修复代码风格
|
2015-09-26 01:26:30 +08:00 |
|
elrrrrrrr
|
6465712385
|
feat: 抽离 Icon 组件、支持自定义属性
fixed #307
|
2015-09-26 01:26:30 +08:00 |
|
afc163
|
05347da926
|
not emit fetch when there is no dataSource change, #347
|
2015-09-26 00:56:15 +08:00 |
|
afc163
|
094ae9bbbf
|
update upload document
|
2015-09-24 19:43:02 +08:00 |
|
afc163
|
147b4ac49b
|
Add overlayClassName to popover and tooltip
|
2015-09-24 18:38:31 +08:00 |
|
afc163
|
52b639faba
|
Should update table data when changing pageSize
fix #317
|
2015-09-23 14:28:08 +08:00 |
|
afc163
|
74b2c8fcc1
|
update pagination document
|
2015-09-23 14:13:31 +08:00 |
|
Yuwei Ba
|
a08fa60930
|
添加 pageSize 发生变化的回调。 #317
|
2015-09-23 13:58:56 +08:00 |
|
afc163
|
67735552bb
|
update progress index.md
|
2015-09-22 20:14:56 +08:00 |
|
afc163
|
73c1d3f595
|
update progress demo
|
2015-09-22 20:11:28 +08:00 |
|
afc163
|
176adab763
|
update modal basic demo
|
2015-09-22 15:11:29 +08:00 |
|
afc163
|
c5cab1d687
|
Add confirmLoading prop for Modal
You can use `confirmLoading` to cancel button loading status.
```
onOk() {
...
this.setState({
confirmLoading: false
});
}
```
Fix #322
|
2015-09-22 15:06:10 +08:00 |
|
afc163
|
961b990f07
|
upgrade rc-upload to 1.6.x
|
2015-09-21 11:34:14 +08:00 |
|
afc163
|
6854a83989
|
get filename
|
2015-09-20 13:56:14 +08:00 |
|
afc163
|
7d82eccb41
|
update upload list logic
|
2015-09-19 17:05:41 +08:00 |
|
afc163
|
6474cb378b
|
Fix upload try logic
|
2015-09-18 23:31:07 +08:00 |
|
afc163
|
63fa44867c
|
update badge style
|
2015-09-18 17:24:14 +08:00 |
|
afc163
|
d6a4094bc4
|
Allow multiple confirm dialogs popup
|
2015-09-18 16:00:12 +08:00 |
|
afc163
|
d8ae9003ea
|
Fix iconfont script url
|
2015-09-17 20:18:14 +08:00 |
|
yiminghe
|
7b4bdc8482
|
fix placeholder
|
2015-09-17 19:31:52 +08:00 |
|
羽航
|
05e36a4018
|
fix little text
|
2015-09-17 16:16:53 +08:00 |
|
afc163
|
181d20e6ff
|
Merge branch 'master' of github.com:ant-design/ant-design
|
2015-09-16 20:02:51 +08:00 |
|
afc163
|
f266298553
|
update upload
|
2015-09-16 20:02:29 +08:00 |
|
yiminghe
|
0435ca60e3
|
update filterOption
|
2015-09-16 19:52:09 +08:00 |
|
afc163
|
74d8ecb1fd
|
Fix IE9 file.status problem
|
2015-09-16 18:48:22 +08:00 |
|
afc163
|
78d15aabbf
|
Fix initial maxDescriptionWidth for vertical steps
|
2015-09-16 18:23:51 +08:00 |
|
afc163
|
e4577eb1bb
|
update steps demos
|
2015-09-16 16:28:57 +08:00 |
|
羽航
|
89c34ebceb
|
Merge branch 'master' of github.com:ant-design/ant-design
|
2015-09-16 14:44:15 +08:00 |
|
羽航
|
f4372f3cbf
|
update rc-steps v1.2.5 Steps组件增加current属性,可自动判断当前正在执行状态。
|
2015-09-16 14:44:03 +08:00 |
|
afc163
|
bd1f13efba
|
show current father menu only
|
2015-09-16 12:18:17 +08:00 |
|
jljsj
|
af3b98a742
|
update enetr-animation from.md
|
2015-09-15 17:55:56 +08:00 |
|
jljsj
|
f4f0605a5f
|
update basic and enter-data demo
|
2015-09-15 17:52:16 +08:00 |
|
jljsj
|
d42c248780
|
Merge branch 'master' of github.com:ant-design/ant-design
|
2015-09-15 17:41:58 +08:00 |
|
jljsj
|
b52b6c8bbf
|
update enter-animation demo
|
2015-09-15 17:41:34 +08:00 |
|
afc163
|
9603413223
|
fix enter-animation router demo
|
2015-09-15 17:36:27 +08:00 |
|
afc163
|
961a679a9f
|
upgrade to fit react-router@1.0.0-rc1
|
2015-09-15 17:35:22 +08:00 |
|
afc163
|
55a028ba71
|
useless file
|
2015-09-15 16:32:28 +08:00 |
|