zombiej
9f5d421cd6
merge master
2018-11-30 14:48:37 +08:00
afc163
83c192ea3e
💄 fix eslint problems
2018-11-28 15:11:02 +08:00
afc163
e1d3d2b3e1
✨ Add dropdownRender
loading
for Select
...
close #10831
close #7988
close #13151
close #11225
close #9888
2018-11-27 12:01:30 +08:00
afc163
18f705fcf6
Merge branch 'master' into feature
...
* master: (28 commits)
remove overflowY on TextArea autoSize since height transition has been removed for a long time fix #10151
💄 tweak form control margin, close #13183
Update Crowdin configuration file
Correct date-picker demo
📝 upgrade ts comment
💄 tweak tree switcher icon size
Fix regular error in firefox and safri
add change log
add checkbox-border-width
add style to SwitchProps
update rc-tree-select
Snapshot fixed.
tabIndex prop added to DatePicker
Improve form demo
prefer logical AND over ternary (#13254 )
fix form demo
format (#13252 )
📝 improve document images
migrate locale provider to new lifecycle method
types: add generic type for Select[value]
...
2018-11-27 11:26:16 +08:00
zombieJ
9b49fb60d9
Config provider ( #12991 )
...
close #12985
2018-11-26 12:06:42 +08:00
zombiej
72d08b3828
Select support dropdownRender
...
close #10831
2018-11-26 11:50:12 +08:00
Wei Zhu
ab6c44dd1f
types: add generic type for Select[value]
...
usage:
const handleChange = (value: string) => {}
<Select<string> onChange={handleChange} >
2018-11-22 17:53:44 +08:00
zombiej
b28b7a72a8
update test case
2018-11-20 17:26:08 +08:00
afc163
6f98969dc0
🐛 Fix case sensitive module path
2018-11-15 14:43:54 +08:00
Joao Rabelo
4f51ff5277
Adding rcselect 'showAction' to AbstractSelectProps to avoid linting errors when used through antd Select component
...
The usage of this prop was discussed over #6873
2018-11-14 21:11:32 +08:00
afc163
cd8502a864
✅ Add test case
2018-11-12 12:18:21 +08:00
Cheng Liu
c79d69275b
✅ update test demo snapshots
2018-11-12 10:58:45 +08:00
Cheng Liu
b979c34420
💄 pass the specified class to custom icon as well
2018-11-12 10:58:45 +08:00
Cheng Liu
0d7963236c
feat(select): customize remove/clear/menuItemSelected icons
2018-11-12 10:58:45 +08:00
afc163
213693e333
🌐 site: transition component category, close #11629
2018-11-04 16:20:35 +08:00
zombiej
301c97d61c
fix onPopupScroll def. ref #12913
2018-11-02 15:38:04 +08:00
LLinFan-
bbd9556801
update select props :onPopupScroll
...
update select props type:onPopupScroll
2018-11-01 10:30:22 +08:00
MuYu
72a6febcc4
fix: select type definition ( #12865 )
...
* fix: select type definition
* fix: wrapPicker type definition
* fix: select type definition
2018-10-30 10:52:27 +08:00
hengkx
e1db20c25b
fix #12758
2018-10-25 00:40:55 +08:00
hengkx
78f6bb769d
Revert "fix #12758 multiple Select drop-down bug when set dropdownMatchSelectWidth"
...
This reverts commit 6fcdce97f2
.
2018-10-25 00:40:55 +08:00
hengkx
795370d0ea
fix #12758 multiple Select drop-down bug when set dropdownMatchSelectWidth
2018-10-25 00:40:55 +08:00
Dimitri Mitropoulos
8eaf66be0e
adds missing Select.Option type for style ( #12609 )
2018-10-11 23:47:53 +08:00
afc163
c4b3e7e58e
deme: improve demo code style
2018-10-06 18:58:25 +08:00
afc163
996ee9c0a2
demo: make select demo width adapted
2018-10-06 18:47:18 +08:00
Ilan
b447ab0a26
🌐 update select zh-CN.md
2018-10-06 15:35:29 +08:00
Ilan
bd2a58f745
✏️ updating select option types
2018-10-06 15:35:29 +08:00
Wei Zhu
1c1a67fe1d
Merge branch 'feature'
2018-09-30 16:53:28 +08:00
Johannes Loewe
0126c63b2d
fix #11312 : add autoClearSearchValue to AbstractSelectProps ( #12473 )
...
- extends the interface with an optional prop that can be provided to the RcSelect
First of all, thank you for your contribution! :-)
Please makes sure that these checkboxes are checked before submitting your PR, thank you!
* [ x ] Make sure that you propose PR to right branch: bugfix for `master`, feature for branch `feature`.
* [ x ] Make sure that you follow antd's [code convention](https://github.com/ant-design/ant-design/wiki/Code-convention-for-antd ).
* [ x ] Run `npm run lint` and fix those errors before submitting in order to keep consistent code style.
* [ x ] Rebase before creating a PR to keep commit history clear.
* [ x ] Add some descriptions and refer relative issues for you PR.
Extra checklist:
**if** *isBugFix* **:**
* [ ] Make sure that you add at least one unit test for the bug which you had fixed.
**elif** *isNewFeature* **:**
* [ ] Update API docs for the component.
* [ ] Update/Add demo to demonstrate new feature.
* [ ] Update TypeScript definition for the component.
* [ ] Add unit tests for the feature.
This fix is related to Issue #11312 and adds the optional `autoClearSearchValue` prop which can be supplied to `RcSelect` to the Select´s props. This is not really a new feature and a relatively unsubstantial one a that, so I didn´t add a demo for it, but I could do so if that´s desirable.
I updated the English API docs, but I´m not a Chinese speaker so there is no addition to the Chinese documentation. Maybe someone speaking Chinese would be willing to help out.
2018-09-30 15:04:03 +08:00
afc163
7c6299e12e
Merge branch 'master' into feature
2018-09-21 14:03:04 +08:00
HeskeyBaozi
a2520b02c9
select: suffix -> suffixIcon
2018-09-21 13:40:27 +08:00
HeskeyBaozi
a01450debb
add suffix interface to select
2018-09-21 13:40:27 +08:00
Yang
a3c1444a20
doc: add dropdown control props ( #12323 )
2018-09-19 22:50:53 +08:00
afc163
2952a8625b
site: remove old version hint of API
2018-09-12 21:43:01 +08:00
包子熊
4eb7d8f693
Hotfix(Select) add select clear icon ( #12196 )
...
close #12181
2018-09-11 20:45:40 +08:00
afc163
1a30e5de78
Fix select render lag of long text in chrome
...
close #11843
close #11456
2018-09-09 00:11:29 +08:00
HeskeyBaozi
ace857d8bf
add check icon in multi select
2018-09-07 14:14:23 +08:00
HeskeyBaozi
976f6969f4
update test snapshot
2018-09-07 14:14:23 +08:00
zombiej
1927f65c0b
fix #12117 . Remove height transition in autoComplete
2018-09-07 04:26:59 +08:00
Wei Zhu
1ddd1e9cf9
fix draging preview snapshot when using Select in table
...
https://codesandbox.io/s/xl7myw3p5w
2018-09-04 15:57:43 +08:00
HeskeyBaozi
2f8a56fa78
fix test case & update test snapshot
2018-09-02 20:59:37 +08:00
HeskeyBaozi
74798b8911
upgdate test snapshot
2018-09-02 20:59:37 +08:00
HeskeyBaozi
d6131fe18d
update test snapshot
2018-09-02 20:59:37 +08:00
HeskeyBaozi
0c9465aaf9
upgrade icons library
2018-08-27 20:40:11 +08:00
afc163
5c26ce69c2
revert select demo
2018-08-26 00:28:22 +08:00
afc163
7396948c96
support controlled open for Select, close #10482
2018-08-25 23:41:30 +08:00
HeskeyBaozi
6fe79dff36
upgrade tree-select
2018-08-25 15:51:07 +08:00
HeskeyBaozi
abfd50a7bf
use component
2018-08-24 19:47:07 +08:00
HeskeyBaozi
ee1d2469a8
upgrade test snapshot
2018-08-24 18:36:08 +08:00
HeskeyBaozi
796de6390b
update test snapshot
2018-08-14 15:32:29 +08:00
HeskeyBaozi
b9a9c308c9
[breaking] remove iconfont-font class helper
2018-08-14 15:31:20 +08:00
HeskeyBaozi
35974d67b2
update test snap shot
2018-08-13 20:51:01 +08:00
HeskeyBaozi
0a8f964935
update test snap shot
2018-08-13 14:46:55 +08:00
HeskeyBaozi
c0e365c488
use cascader expand icon
2018-08-13 11:44:25 +08:00
HeskeyBaozi
3baec95628
Merge branch 'feature-3.9.0' of https://github.com/ant-design/ant-design into feature/svg-icon
2018-08-13 09:26:33 +08:00
Havin
2c4c5fc6e3
move getPopupContainer from SelectProps to AbstractSelectProps ( #11690 )
2018-08-09 20:48:37 +08:00
HeskeyBaozi
bda65ddb1e
update select snapshot
2018-08-09 16:07:57 +08:00
HeskeyBaozi
4945d66084
update select
2018-08-09 12:07:27 +08:00
Wei Zhu
064bfaf554
Add @types/prop-types
2018-08-07 21:09:05 +08:00
Ilan Hasanov
86398d910a
💬 misc typos and blank spaces fixes
2018-07-29 01:15:02 +08:00
This JJ
2e7d08e98f
Add id to Select props ( #11189 )
...
* Can set id to props on Select
* Update index.tsx
2018-07-27 16:47:07 +08:00
afc163
6cb6f5c83e
Fix select menu item radius style
2018-07-23 19:01:30 +08:00
afc163
6be189aa0f
site: styling API Tables
2018-07-21 15:00:20 +08:00
zombiej
ecc2293229
fix #11368 . Clean outline style of treeSelect
2018-07-20 11:03:02 +08:00
afc163
782abe7bb6
demo: fix select showSearch demo placeholder, close #11325
2018-07-18 15:57:34 +08:00
Daniel Zhang
308cb046e4
Add onMouseEnter and onMouseLeave to SelectProps ( #11314 )
2018-07-18 00:06:27 +08:00
afc163
0c4d356e54
Merge branch 'master' into feature-3.7.0
2018-07-03 19:54:48 +08:00
Yury Kozyrev
cde2a6b6f0
Add missing showArrow option in types
2018-06-28 22:50:07 +08:00
zombiej
11dba9c305
update snapshot
2018-06-28 17:12:16 +08:00
afc163
56020cda39
Merge branch 'master' into feature-3.7.0
2018-06-27 16:14:14 +08:00
afc163
009ed08580
upgrade eslint-config-airbnb
2018-06-27 16:09:58 +08:00
zombiej
0d09dbafdd
close #11035 . Adjust select mirror top css to avoid to long string
2018-06-26 14:52:48 +08:00
Wei Zhu
354cc7303e
docs: remove combobox
2018-06-25 16:52:51 +08:00
Wei Zhu
6de4b00815
Rename mode name
2018-06-25 16:52:51 +08:00
Wei Zhu
5eaa03b4ea
Update snapshot
2018-06-25 16:52:51 +08:00
Wei Zhu
53046a454a
Deprecate combobox mode of Select
2018-06-25 16:52:51 +08:00
Wei Zhu
aa580beb8b
docs: sort api table
2018-06-24 17:09:18 +08:00
hehe
07e06709f8
docs: fix typo
2018-06-15 10:25:17 +08:00
zombiej
78adc05973
close #10745 , move dropdownMatchSelectWidth into AbstractSelectProps
2018-06-07 10:24:12 +08:00
Junbin Huang
bbf5cb75c3
chore: update typescript@~2.9.1 ( #10748 )
2018-06-02 20:12:09 +08:00
afc163
2989e8dba0
docs: update API
2018-05-23 22:36:06 +08:00
Dmitry Snegirev
fd96b4a784
Added missing prop firstActiveValue in Select component ( #10636 )
2018-05-23 19:13:11 +08:00
afc163
00d710cef0
demo: fix select demo order
2018-05-21 17:07:39 +08:00
afc163
e86f17186b
Fix select test snapshot
2018-05-06 14:58:05 +08:00
afc163
6d91a3eb4a
Fix select arrow overlap bug, close #10383
...
introduced by #10092 , this commit also fix #10092
2018-05-06 14:54:27 +08:00
paranoidjk
8e166915a9
fix(Select): value tsd ( #10336 )
2018-05-03 11:28:30 +08:00
Junbin Huang
3a3d550b54
chore: upgrade menu ( #10305 )
...
* chore: upgrade menu and select
* Add test case for coverage percent
2018-04-29 23:01:58 +08:00
afc163
81dd432e31
update select demo
2018-04-28 23:56:38 +08:00
afc163
4535e9d4f1
Fix Select extra space taken up when arrow disabled
...
close #10092
2018-04-28 23:38:05 +08:00
Thiebaud Thomas
a1e186b8a3
Fix type for placeholder in select component ( #10282 )
2018-04-27 18:22:10 +08:00
Wei Zhu
51d1f27a76
dcos: Detail Select[optionLabelProp] default value
...
Close #9745
2018-03-24 21:38:25 +08:00
Kevin BON
b1bcf842d7
Update index.en-US.md ( #9579 )
2018-03-09 00:48:23 +08:00
afc163
e071002fae
use lodash
2018-03-08 14:46:47 +08:00
twobin
d816879e78
fix: add props of onPopupScroll in Select ( #9475 )
2018-03-02 10:15:01 +08:00
Wei Zhu
755b3e9043
Fix Select dropdown box-radius
...
refer 82092c15
2018-02-27 18:27:31 +08:00
Wei Zhu
82092c154a
Fix Select dropdown border
2018-02-27 17:21:33 +08:00
Dimitri Mitropoulos
c92cf5b778
adds missing argument in Select onChange prop ( #9332 )
...
* adds missing argument in Select onChange prop
from the docs:
`function(value, option:Option/Array<Option>)`
also, (from reality) the callback really does send an option or options array.
* updates type to use ReactElement instead of Object
2018-02-13 07:33:25 -06:00
jim
7b4abe7568
doc add select component showArrow props document
2018-02-08 16:13:09 +08:00
afc163
a5f29f06a5
Fix select arrow style in IE11
2018-02-07 20:29:40 +08:00
afc163
33e2ef0f8d
revert 1502d36
to fix #9276
...
ref #7934
2018-02-07 11:43:21 +08:00
Wei Zhu
49c2a6220b
Merge branch 'feature-3.2'
2018-02-04 17:24:16 +08:00
愚指导
df4097ca4d
[Select] Pass Option as onChange and onSelect second argument ( #9228 )
2018-02-04 02:42:33 -06:00
afc163
8d6252cfe1
Fix missing scrollbar in chrome
2018-02-01 13:21:07 +08:00
Yury Kozyrev
76c7ce669a
add tabIndex to select ( #9144 )
2018-01-27 14:27:27 +08:00
niko
f2ba99978d
upgrade snapshots ( #9127 )
2018-01-25 18:24:59 +08:00
afc163
1502d3604d
Fix unexpected select disappearing in IE11, close #7934
2018-01-23 11:31:27 +08:00
Yury Kozyrev
ecd4177638
Update index.tsx ( #8922 )
2018-01-11 10:03:10 +08:00
Yury Kozyrev
67e956dddd
[Select] fix Typescript Props ( #8920 )
...
* Update button.tsx
* update ts types
Fixes #8895
* omitted values should be an array
2018-01-10 23:37:23 +08:00
隋鑫磊
9ccd2aeba8
doc: fix select multiple doc children ( #8904 )
2018-01-10 14:09:23 +08:00
jasonxia23
a3c53523c2
fix doc: type of select and option
2018-01-08 19:52:39 +08:00
afc163
0bfd5ee14d
Fix notFoundContent not working, close #8809
2018-01-04 20:43:56 +08:00
afc163
c14b13d4ac
Fix broken link, close #8797
2018-01-02 18:12:10 +08:00
Wei Zhu
999d6184ad
docs: Sort api table
2017-12-29 20:22:58 +08:00
Wei Zhu
2026b80ae2
Merge branch 'master' into feature-3.1
2017-12-28 16:31:25 +08:00
afc163
abf9717eab
Large component should has larger font size
...
14px => 16px
2017-12-28 15:41:48 +08:00
afc163
6efebb5bfa
patch for 8494d460
2017-12-22 19:28:22 +08:00
afc163
8494d46038
Fix select align issue in chrome
2017-12-22 18:11:29 +08:00
nikogu
5252de9209
Merge branch 'master' into feature-3.1
2017-12-22 11:43:54 +08:00
afc163
13c6e8ec1e
update getPopcontainer demo link
2017-12-21 21:50:41 +08:00
Wang Jun
d825e27667
fix loading ( #8571 )
2017-12-13 18:49:00 +08:00
Dane David
5a94236c30
Version fix for rc-select. Update docs to add onInputKeyDown ( #8552 )
2017-12-13 04:34:54 -06:00
afc163
8f1fd4d68b
Fix notFoundContent not working in AutoComplete, close #8553
2017-12-13 17:05:36 +08:00
Wei Zhu
18723a37ee
Update snapshot
2017-12-08 11:36:43 +08:00
Nidhi Agarwal
6d0b488d7f
Select - Moving defaultActiveFirstOption to AbstractSelectProps ( #8383 )
...
defaultActiveFirstOption Prop should be exposed to components which are extending AbstractSelectProps, even according the documentation of auto-complete.
2017-12-06 15:37:12 +08:00
Wei Zhu
4aeb811b72
Remove deprecations ( #8351 )
2017-11-30 09:53:32 +08:00
偏右
b531de3fee
Upgrade dev deps and fix lints ( #8358 )
...
* upgrade devDeps and fix lint
* Fix stylelint problems
2017-11-29 21:00:16 +08:00
Wei Zhu
c8a49c45fc
Upgrade rc-select
2017-11-28 09:51:29 +08:00
Wei Zhu
b647078baa
Fix implicit any for Select Slider Spin Switch
2017-11-21 14:58:08 +08:00
Wei Zhu
6837aedf69
Imporve tree and tree-select type definitions
2017-11-20 17:11:13 +08:00
Wei Zhu
bf4ad93f2c
Update rc-select
2017-11-19 20:14:53 +08:00
Wei Zhu
9678d3fcfd
Focus && blur support ( #8204 )
...
* Add test for select
* Add focus() and blur() for AutoComplete
* Add focus() and blur() to Cascader
* Add focus test for input
* Add focus() and blur() for Checkbox
* Add focus() and blur() for Radio
* Add focus() and blur() for Switch
* Add blur() for TimePicker
* Add focus() and blur() to TreeSelect
2017-11-19 01:41:40 +08:00
afc163
8ca9c9513d
Merge branch 'master' into antd-3.0
2017-11-18 14:29:56 +08:00
David Tsai
b3b3ee043e
Update Select component documentation ( #8229 )
...
Providing clarity through reworking the description(s) on usage.
2017-11-18 13:13:55 +08:00
Wei Zhu
479a5cb743
Remove allowSyntheticDefaultImports ( #8218 )
2017-11-17 14:38:54 +08:00
Wei Zhu
55c85f77a1
Update dependendies ( #8150 )
...
* deps: upgrade rc-menu, and close : #2837
* test: update snapshots
* Update rc-calendar
* Update rc-cascader
* Update rc-dialog
* Update dropdown
* Update rc-select@7.1.0
* Update rc-slider
* Update rc-time-picker
* Update rc-tooltip
* Update rc-tree-select
* Mock rc-trigger and Portal
* Fix animation warning when inlineCollapsed changes
* fix: should use SubMenu[popupClassName]
* Fix typescript error
* Fix lint
* fix: style for menu
* Mock rc-trigger for React 15
* Remvoe allow_failures
2017-11-11 00:07:03 +08:00
afc163
856ecd4ae3
Merge branch 'master' into antd-3.0
2017-11-09 19:45:06 +08:00
Wei Zhu
e5a57ff60a
Improve Select type definition
...
Close #8128
2017-11-07 17:33:09 +08:00
偏右
bdceb5f083
Review fix ( #8125 )
...
* Fix style
* Fix style
* fix lint
* Fix more styles
* Fix more styles
* update snap
2017-11-06 21:28:51 +08:00
afc163
b61cb8f99e
update select group title style
2017-10-29 14:21:00 +08:00
afc163
099d5a0822
Tweak select arrow style
2017-10-26 19:39:04 +08:00
Benjy Cui
e5699aff68
fix: should not import moment while useless, close : #8013
2017-10-26 10:50:18 +08:00
Wei Zhu
bbb1a3a828
Merge branch 'master' into antd-3.0
2017-10-25 10:27:38 +08:00
Wei Zhu
36227a10db
docs: sort api table
2017-10-25 10:25:44 +08:00
afc163
ef443ad047
Merge branch 'master' into antd-3.0
2017-10-20 15:47:42 +08:00
Stephen Esser
88ed97b63d
doc: Fix spelling mistake in Select demo ( #7932 )
2017-10-20 14:54:57 +08:00
Benjy Cui
7ea572bfc8
refactor: extract common locale logic ( #7915 )
2017-10-20 14:54:38 +08:00
afc163
1ef4cc277b
Fix select item padding
2017-10-11 16:56:52 +08:00
afc163
d3b98d311a
Merge branch 'master' into antd-3.0
2017-10-10 14:09:03 +08:00
afc163
712451acf7
Fix codepen demo
2017-10-10 11:35:50 +08:00
Wei Zhu
c5487ad1eb
React 16 + Enzyme 3
2017-10-09 19:18:04 +08:00
afc163
4eb9d5ef56
Merge branch 'master' into antd-3.0
2017-10-09 13:33:59 +08:00
afc163
942ea41b02
update snapshot for new jest
2017-10-09 13:32:11 +08:00
afc163
475e4ff23d
upgrade eslint-config-airbnb
2017-10-09 13:27:35 +08:00
afc163
95c72958ca
Fix AutoCompelete layout, close #7800
2017-10-08 15:22:24 +08:00
afc163
7a8a1a8ee3
Merge branch 'master' into antd-3.0
2017-09-30 21:31:29 +08:00
Graeme Yeates
47e3cedf86
Minor fixes for select and form en docs ( #7769 )
...
* Fix headers on form validateFields [ci skip]
* Include default as an option for select sizes [ci skip]
2017-09-29 10:54:37 +08:00
偏右
2bced36f0c
New component styles ( #7731 )
...
* Tweak button padding
* upgrade input and button size
* update form controls size
* update components size
* Add lemon color and update rate color
* Add new icons
* update layout style
* breadcrumb and dropdown
* update menu arrow width
* update layout and menu
* update steps
* fix var name
* update cascasder style
* Update DatePicker
* update InputNumber and Mention
* radio and switch
* select and transfer
* TimePicker & Upload
* more components
* calendar and list
* Tree Timeline Popover Tag
* divider modal popover
* update search input
* update card style
* update switch disabled opacity
* update shoadow and mask
* Add v2-compatible-reset.less
* Fix undefined className
* update snahshotssssssssssssssssss 👻
2017-09-27 22:32:49 +08:00
Benjy Cui
829b5f87bf
feat: make default locale to enUS ( #7553 )
...
* feat: make default locale to enUS
* test: fix CI
* docs: update getting started
2017-09-26 23:12:47 +08:00
afc163
c9069dfdf6
Merge branch 'master' into antd-3.0
2017-09-23 16:50:14 +08:00
afc163
8b1a4f80a9
Fix TreeSelect extra input text, close #7703
2017-09-23 12:11:17 +08:00
afc163
af7f0c3777
Merge branch 'master' into antd-3.0
2017-09-22 20:36:13 +08:00
afc163
776beaee05
Fix cursor height in safari
2017-09-22 20:17:04 +08:00
偏右
759b0bb821
seperate reset styles ( #7682 )
...
* seperate reset styles
* not reset ul/ol/p/heading
* revert reset.less idea
* move label style into ant-form-item, #5851
* revert reset.less idea
* update base.less
* Better typography from bootstrap@4
use reboot replace normalize
ref:
b4d84b9cdf/scss/_reboot.scss
close #6162
2017-09-22 18:33:29 +08:00
Wei Zhu
250c7a9c68
Revert "Mock rc-trigger"
...
This reverts commit 9d2c91598b
.
2017-09-15 16:42:25 +08:00
Wei Zhu
9d2c91598b
Mock rc-trigger
...
Ref #5522
2017-09-15 16:14:26 +08:00
Wei Zhu
579becd894
Update snapshot
2017-09-15 10:03:46 +08:00
afc163
9e319990d2
update snapshot
2017-09-14 18:09:30 +08:00
afc163
b24483545c
Merge branch 'master' into antd-3.0
2017-09-12 09:41:51 +08:00
Wei Zhu
c2031f701c
Document Select[firstActiveValue]
2017-09-11 12:00:15 +08:00
Benjy Cui
070b2696ba
chore: remove hacks for IE8-, close : #7447 ( #7512 )
2017-09-08 13:08:46 +08:00
afc163
94283b730f
Fix validateStatus styles of some Form Controls, close #7498
2017-09-06 20:17:20 +08:00
Leo
fc8f533e67
fix ts checking ( #7355 )
...
* add title prop to Option component(for ts checking)
* fix Checkbox onChange type
2017-08-29 08:58:51 +08:00
afc163
44319bec11
active the selected item should be highlighted
2017-08-23 18:16:52 +08:00
afc163
ac5bdc6983
doc: update select description
2017-08-23 13:17:43 +08:00
afc163
988e12f54b
tweak some font weight
2017-08-17 22:10:40 +08:00
afc163
fe3af14273
Remove exported SelectPropTypes and fix undefined exports, close #7222
2017-08-17 09:57:23 +08:00
afc163
f0c6350e0e
update select demo
2017-08-16 10:38:03 +08:00
afc163
57e3be2c32
Fix select popupContainer in site header
2017-08-14 22:57:45 +08:00
afc163
c79592cf05
Fix select demo
2017-08-11 10:44:13 +08:00
afc163
3570458c31
Fix undefined SelectPropTypes
2017-08-07 11:35:22 +08:00
Troy Thompson
18c6860296
Adds onFocus and onBlur to Select properties. ( #7082 )
2017-08-06 16:45:10 +08:00
Graeme Yeates
0e22ae62bb
Document select placeholder supporting ReactNode
2017-07-04 13:07:05 -04:00
afc163
3816778b6b
Fix select overflow bug, close #6621
2017-06-27 11:01:11 +08:00
Aaron Planell López
de030a0333
update document, ref #6392 ( #6420 )
2017-06-09 15:21:01 +08:00
afc163
41f157e596
Fix Select search input width, close #6382
2017-06-06 20:38:44 +08:00
afc163
551b17203c
Fix showSearch doc, close #6253
2017-05-25 11:57:45 +08:00
afc163
4d645a256f
tweak select placeholder text align
2017-05-24 16:48:45 +08:00
偏右
516317e78a
Merge pull request #6005 from megawac/multiselect-tag-bg
...
Use @tag-default-bg for multiselect tags
2017-05-22 16:35:03 +08:00
Graeme Yeates
adfca8ae78
Use @tag-default-bg for multiselect tags
2017-05-19 11:52:31 -04:00
Mitchell Demler
fa44de3faa
refactor: rearrange AbstractSelectProps so that AutoCompleteProps has access to some needed SelectProps ( #6205 )
2017-05-19 11:29:16 +08:00
afc163
b887ad8e54
Fix selected background
2017-05-18 15:08:30 +08:00
Benjy Cui
a0a6b4610b
chore: simplify code, close : #6030
2017-05-05 18:06:43 +08:00
Benjy Cui
0d672d5c2d
test: fix CI
2017-05-05 14:47:37 +08:00
kossel
169e0f9762
fix: issue 5834, autocomplete is not being decorated ( #6018 )
2017-05-05 14:40:57 +08:00
Graeme Yeates
d8d17a6401
Seperate @active-item-bg into 2 variables
2017-05-03 10:57:14 -04:00
Graeme Yeates
0bc8284c46
[ #5964 ] add @background-color-active rule
2017-05-02 11:06:01 -04:00
Graeme Yeates
4eb2855871
Add @active-item-bg to control hover and active states
2017-05-02 11:05:28 -04:00
afc163
c6efc4db27
Adjust dropdown item padding, close #5088
2017-05-02 16:07:16 +08:00
afc163
ebd66d0082
fix missing less variable
2017-05-01 14:18:16 +08:00
Graeme Yeates
5841746ec9
Decompose @background-color-base into several variables
2017-04-28 16:04:41 -04:00
Graeme Yeates
ede77a8aa7
Consistently use @background-color-base for disabled states
2017-04-28 15:43:02 -04:00
Erwann Mest
73d7e816b1
Destructuring for the win.
2017-04-13 17:27:03 +02:00
afc163
8a1c875123
update select doc
2017-04-13 16:46:46 +08:00
Manjit Kumar
4e055ed5d0
use PropTypes from 'prop-types' mdoule instead of React
...
- as React.PropTypes is being deprecated
- Warning: Accessing PropTypes via the main React package is deprecated. Use the prop-types package from npm instead.
- Solution: https://facebook.github.io/react/blog/2017/04/07/react-v15.5.0.html#migrating-from-react.proptypes
2017-04-12 02:22:05 +05:30
LeeHarlan
d8ebd398df
fix Select component notFoundContent locale. ( #5661 )
...
* fix Select component notFoundContent locale.
* Update index.tsx
2017-04-07 19:21:18 +08:00
Benjy Cui
50f46d0919
feat: merge Select[multiple|tags|combobox] to Select[mode], close : #5471 ( #5534 )
2017-03-28 21:27:58 +08:00
Benjy Cui
84d65b3f66
refactor: simplify Select relative components' code
2017-03-28 15:11:14 +08:00
HJin.me
47589ba92c
fix get(Popup|Calendar|Suggestion|Tooltip)Container ts type ( #5528 )
2017-03-28 13:20:05 +08:00
Benjy Cui
cb555fc30d
fix: Select[multiple|tags] should support allowClear, close : #4843 ( #5478 )
2017-03-27 17:37:39 +08:00
Benjy Cui
d6d62f6754
docs: update demo for Select[size]
2017-03-24 12:14:00 +08:00
Wei Zhu
21ee247253
Add new select demo snapshot
2017-03-23 13:48:19 +08:00
afc163
4442f71d31
Add select users demo, close #2765
2017-03-22 14:21:24 +08:00
afc163
322e9efdc9
Fix getPopupContainer ts type
2017-03-21 16:35:31 +08:00
Mitchell Demler
e968b575a2
fix: move filterOption to AbstractSelectProps so that AutoComplete component types do not break. ( #5393 )
2017-03-20 16:13:53 +08:00
Wei Zhu
f6b1e942e3
Jest 19 ( #5361 )
...
* Upgeade to jest 19
* Use jest.spyOn
2017-03-17 18:56:30 +08:00
afc163
a0cdce4d00
fix test case
2017-03-10 19:22:18 +08:00
Benjy Cui
7c564af6e4
Revert "css: adjust alignment in Select & AutoComplete, close : #5088 "
...
This reverts commit c01f24750a
.
2017-02-28 15:46:45 +08:00
Benjy Cui
c01f24750a
css: adjust alignment in Select & AutoComplete, close : #5088
2017-02-28 14:30:00 +08:00
afc163
f0a4afd388
Fix slight difference placeholder between Input and Select
...
close #4987
2017-02-21 22:45:56 +08:00
afc163
3884ee3c5a
rewrite Select demos to es6 component, #4878
2017-02-20 21:54:23 +08:00
afc163
c296d1a918
remove unused ant-select-show-search className, close #4859
2017-02-14 20:29:00 +08:00
Benjy Cui
200b88246f
docs: update docs format
2017-02-13 10:55:53 +08:00
偏右
75a4b06e44
Unified border radius, close #4772 ( #4773 )
2017-02-08 14:21:29 +08:00
Graeme Yeates
1006015ef0
Add border customization variables ( #4734 )
...
* Add border customization variables (#4712 )
* Make border styles customizable (fixes #4712 )
2017-01-31 16:05:10 +08:00
afc163
f2bb4afd4d
Merge from master
2017-01-27 17:23:51 +08:00
afc163
f3b2e155b5
style: Select height should flex with @input-height variable, close #4694
2017-01-24 15:20:06 +08:00
Wei Zhu
77b78a9389
docs: Unify type naming ( #4636 )
...
* Unify name of ReactNode type in document
* Lowser all string type name
* Lowercase all number type name
* Lowercase all boolean type name
* Unify array type
* Lowercase all object type name
* Unify mutilple types
2017-01-20 20:10:50 +08:00
afc163
35523be6e9
Merge from master
2017-01-20 18:28:09 +08:00
Benjy Cui
3e17551b7e
site: improve build speed
2017-01-19 15:22:53 +08:00
陆离
46c200896f
Customize Input Component of AutoComplete ( #4483 )
...
* cherry-pick
* remove useless files
* remove useless files
* Group ts
* update interface
* ReactElement
2017-01-13 21:19:23 +08:00
wallverb
c01ee02758
chore: Change AutoCompleteProps to extend SelectProps ( #4565 )
...
* Change AutoCompleteProps to extend SelectProps
* Extract common props into AbstractSelectProps
2017-01-12 09:23:56 +08:00
afc163
4654db312f
Fix some lesshint problems
2017-01-11 21:45:09 +08:00
afc163
9e4885d959
update select doc
2017-01-07 22:15:22 +08:00
afc163
1a8f000e35
update doc
2017-01-07 21:28:44 +08:00
afc163
e2b8aee202
fix snapshot
2017-01-05 17:24:14 +08:00
afc163
26d3c506b3
simplify select combobox demo
2017-01-05 15:47:19 +08:00
Wei Zhu
4305ca7ab0
docs: Docment Select.defaultActiveFirstOption
2017-01-04 18:46:39 +08:00
Benjy Cui
29e598a3f3
docs: add missing docs for Option[title]
2017-01-03 16:00:34 +08:00
Edd Hannay
ec2bec5417
Add tokenSeparators prop to Select TS definitions ( #4441 )
...
[The documentation](https://ant.design/components/select/ ) lists the `tokenSeparators` property on the `Select` component, but the TypeScript definition for the component does not contain the `tokenSeparators` property. The underlying `rc-select` component [defines tokenSeparators](https://github.com/react-component/select/blob/master/src/Select.jsx#L79 ) as `PropTypes.arrayOf(PropTypes.string)`, so I've added it as an optional TypeScript property of type `string[]`.
- Add tokenSeparators to SelectProps in Select Component
2017-01-02 19:11:13 +08:00
偏右
d811ebee5c
New color system ( #4426 )
...
* Add new color patterns algorithm
* Add color palettes
* update other colors
* fix gray color
* update more tint/shade to colorPalette
* new font color
* Update doc for new color system
* improve doc style
2017-01-01 22:20:06 +08:00
afc163
2583798cce
Add demo for Case-insensitive search Select, close #4408
2016-12-30 14:05:27 +08:00
Benjy Cui
9f2e6c8baa
docs: update demo for SSR
2016-12-19 17:54:25 +08:00
Pierre
827aa2f94c
style: remove hardcoded inputs height ( #4175 )
...
* remove hardcoded inputs height
* revert pagination input height
* revert pagination input heights bis
2016-12-15 11:17:09 +08:00
Wei Zhu
07103b9fb6
Don't ignore test files.
2016-12-14 14:48:09 +08:00
Wei Zhu
17a0a33283
Restructure tests.
2016-12-14 14:41:39 +08:00
afc163
a15d2c014a
update labelInValue description
2016-12-13 11:44:59 +08:00
afc163
9dfe19f544
update labelInValue description
2016-12-13 11:43:31 +08:00
chchen
3382abde65
css: set dropdown's background color with @component-background ( #4160 )
2016-12-09 10:35:13 +08:00
afc163
37af26fbdf
update select demo
2016-12-03 15:35:39 +08:00
afc163
3802f08191
Fix wrong description about Select[allowClear] ( #4101 )
2016-12-01 22:28:43 +08:00
Andrey G
a307a7acf7
refactor: remove unnecessary computed props for classNames ( #4055 )
...
* remove unnecessary computed props for classNames
* rollback autocomplete optimization for possible css style order issue
* update snapshots
* remove more unnecessary computed props at Input
2016-11-30 10:20:23 +08:00
Benjy Cui
932443099a
css: use @component-background, ref: #4040
2016-11-29 11:56:10 +08:00
cathayandy
addb6e44dc
Fix #4039 . Replace background-color: #fff with background: @body-background ( #4040 )
2016-11-29 09:54:54 +08:00
afc163
c6c5a0c3a1
fix demo focus error
2016-11-24 16:16:27 +08:00
afc163
1c23189b1d
update select style
2016-11-17 17:08:38 +08:00
afc163
5b3df08ade
use @input-placeholder-color in select and mention, close #3858
2016-11-16 11:34:25 +08:00
afc163
0d63e5f6b5
Fix select[combobox] vertical align, close #3855
2016-11-15 21:54:22 +08:00
afc163
b0f366cb0f
Fix TreeSelect[multiple] placeholder margin bug, close #3841
2016-11-14 20:15:51 +08:00
ddcat1115
0baef0627e
docs: 调整组件导航结构 ( #3758 )
...
- Layout 更名为 Grid
2016-11-09 14:43:32 +08:00
afc163
5aea5b24ef
update select demo code style
2016-11-08 21:23:29 +08:00
afc163
e4974ac72a
use @font-size-base ( #1752 )
2016-11-08 20:57:07 +08:00
afc163
0a48c62dcb
use @text-color
2016-11-08 20:50:59 +08:00
afc163
9b81fe86d9
clear less variables and add @text-color-secondary
2016-11-08 20:48:03 +08:00
Meck
7d2328b910
docs: improve
2016-11-03 10:44:41 +08:00
Wei Zhu
5c711a275e
deps: update rc-select ( #3692 )
...
* Update rc-select
* Add automatic tokenization demo
2016-11-02 17:35:05 +08:00
afc163
2026449976
fix some props missing documentation
2016-10-27 11:10:19 +08:00
Benjy Cui
08e21e0a2f
refactor: close : #3490
2016-10-24 16:30:38 +08:00
afc163
ba227bbe54
fix Select[onSearch] overflow scroll
2016-10-24 11:34:50 +08:00
afc163
915f343de3
update select check style
2016-10-21 20:21:40 +08:00
afc163
355f82231c
fix select style
2016-10-21 15:36:07 +08:00
afc163
97bc13426f
fix overflow selected value in Select ( #3481 )
2016-10-20 14:18:07 +08:00
afc163
d38c5a43da
fix about #3481
2016-10-20 11:59:38 +08:00
afc163
0b29ee6fee
continue fix for #3481 , also fix multiple select large and small size style
2016-10-19 20:32:14 +08:00
afc163
ff5d9f6029
Fix select vertical-align and refactor its style, close #3481
2016-10-19 14:27:38 +08:00
Albert Zheng
23dd825afd
【Please review】Fixes for supporting TypeScript 2.0.3 ( #3439 )
...
* Fixes for supporting TypeScript 2.0.3
* Fixes for supporting TypeScript 2.0.3. Issue is #3358
2016-10-18 11:55:00 +08:00
afc163
c196f37239
patch for fixing #3413
2016-10-14 15:47:08 +08:00
afc163
d92a24d477
Improve overlay border design
2016-10-14 15:40:39 +08:00
afc163
ea6537b47a
improve select doc
2016-10-14 11:31:24 +08:00
afc163
00dd1d5f07
improve select doc
2016-10-14 11:29:45 +08:00
afc163
d217c72529
Fix Select onSearch width style bug, close #3413
2016-10-13 15:54:25 +08:00
afc163
b5446d632a
Remove wrong dropdownStyle imported by #3344 , close #3386
2016-10-12 11:19:01 +08:00
kvetoslavnovak
0eb080bf49
Select Basic usage - Eng. correction ( #3383 )
2016-10-12 11:04:45 +08:00
kvetoslavnovak
b700e7ea06
Three Select - Eng. correction ( #3384 )
2016-10-12 11:04:40 +08:00
kvetoslavnovak
ef2c2b114e
Select Option Group - Eng. correction ( #3385 )
2016-10-12 11:04:32 +08:00
afc163
3ac6532577
Fix Select notFoundContent
...
close #3345
also close #3344
2016-10-09 22:55:50 +08:00
afc163
58d7741709
http => https, close #3303
2016-10-06 18:54:28 +08:00
Benjy Cui
0265cf0cb1
docs: update links
2016-09-30 10:34:27 +08:00
feng zhi hao
c0527f8b66
chore: complete declaration in Tabs and Select ( #3183 )
2016-09-28 16:58:14 +08:00
Benjy Cui
87753482bf
style: update code style to please lint, close : #2811
2016-09-27 10:06:34 +08:00
Benjy Cui
bd7e9f00c0
style: update code style
2016-09-21 11:54:53 +08:00
Benjy Cui
3f67fd3f9f
docs: update docs details
2016-09-21 11:28:38 +08:00
feng zhi hao
cad2d19be2
fix: complete loss declaration ( #3068 )
...
* complete loss declaration
* fix error in ts-lint
* fix Icon name error
2016-09-19 10:17:07 +08:00
偏右
354759cb17
Redesigned icons ( #3041 )
...
* redesigned icons
* change iconfont content
* use same icons
* fix missing icons
* improve icon size
2016-09-18 09:54:47 +08:00
afc163
9e5061acdc
Merge branch "1.x-stable"
2016-09-15 01:25:28 +08:00
马斯特
a25ec29fb8
refactor: 保证所有的tsx和less都正确使用prefix ( #3024 )
...
* refactor: extract prefix cls as less variable
* refactor: apply ant icon prefix cls in less files
* refactor: all components support prefixCls props
2016-09-14 16:18:33 +08:00
afc163
63789c3838
remove text overflow in select, close #2927
2016-09-13 18:46:45 +08:00
Benjy Cui
8db2b79505
chore: fix compile errors
2016-09-13 15:31:29 +08:00
Marius Ileana
a8cc57cd13
docs: select/demo/coordinate.md - English translation ( #3011 )
...
English translation of labels/data
2016-09-12 10:10:27 +08:00
Marius Ileana
bde1711597
docs: select/demo/combobox.md - English translation ( #3010 )
...
English translation of labels and comments
2016-09-12 10:10:07 +08:00
Marius Ileana
ced5c9a9ed
docs: select/demo/search.md - English translation ( #3009 )
...
English translation of labels.
2016-09-12 10:09:22 +08:00
afc163
0e6f677ff9
Fix doc headings
2016-09-10 13:43:30 +08:00