Merge branch 'master' into antd-3.0

This commit is contained in:
afc163 2017-09-25 23:10:42 +08:00
commit f9754c8a25
8 changed files with 7 additions and 8 deletions

View File

@ -519,7 +519,7 @@ form {
border-color: @error-color;
}
}
&.@{ant-prefix}-mention-active .@{ant-prefix}-mention-editor,
&.@{ant-prefix}-mention-active:not([disabled]) .@{ant-prefix}-mention-editor,
.@{ant-prefix}-mention-editor:not([disabled]):focus {
.active(@error-color);
}

View File

@ -43,7 +43,7 @@ class AsyncMention extends React.Component {
const { suggestions, loading } = this.state;
return (
<Mention
style={{ width: '100%', height: 100 }}
style={{ width: '100%' }}
loading={loading}
suggestions={suggestions}
onSearchChange={this.onSearchChange}

View File

@ -53,7 +53,7 @@ class CustomNavMention extends React.Component {
const { suggestions } = this.state;
return (
<Mention
style={{ width: '100%', height: 100 }}
style={{ width: '100%' }}
suggestions={suggestions}
onSearchChange={this.onSearchChange}
/>

View File

@ -27,7 +27,7 @@ function onSelect(suggestion) {
ReactDOM.render(
<Mention
style={{ width: '100%', height: 100 }}
style={{ width: '100%' }}
onChange={onChange}
defaultValue={toContentState('@afc163')}
suggestions={['afc163', 'benjycui', 'yiminghe', 'RaoHai', '中文', 'にほんご']}

View File

@ -65,7 +65,6 @@ class App extends React.Component {
})(
<Mention
suggestions={['afc163', 'benjycui', 'yiminghe', 'RaoHai', '中文', 'にほんご']}
style={{ height: 60 }}
/>
)}
</FormItem>

View File

@ -55,7 +55,7 @@ class CustomNavMention extends React.Component {
return (
<Mention
placeholder="@someone"
style={{ width: '100%', height: 100 }}
style={{ width: '100%' }}
suggestions={suggestions}
onSearchChange={this.onSearchChange}
onSelect={onSelect}

View File

@ -45,7 +45,7 @@ class App extends React.Component {
render() {
return (
<Mention
style={{ width: '100%', height: 100 }}
style={{ width: '100%' }}
onChange={onChange}
placeholder="input @ to mention people, # to mention tag"
prefix={['@', '#']}

View File

@ -32,7 +32,7 @@ class PopoverContainer extends React.Component {
render() {
const mention = (
<Mention
style={{ width: '100%', height: 100 }}
style={{ width: '100%' }}
onChange={onChange}
defaultValue={toContentState('@afc163')}
suggestions={['afc163', 'benjycui', 'yiminghe', 'RaoHai', '中文', 'にほんご']}