Browse Source

Merge branch 'master' into develop-0.11.0

pull/619/head
afc163 9 years ago
parent
commit
19c69eb071
  1. 2
      .eslintrc
  2. 10
      CHANGELOG.md
  3. 7
      components/select/demo/basic.md
  4. 12
      components/select/index.md
  5. 2
      docs/getting-started.md
  6. 8
      package.json

2
.eslintrc

@ -12,7 +12,7 @@
"experimentalObjectRestSpread": true
},
"plugins": [
"markdown",
"markdown-antd",
"react",
"babel"
],

10
CHANGELOG.md

@ -4,9 +4,17 @@
---
## 0.10.4 `2015-11-30`
- 将 media-match 加入默认的 polyfill 文件中。[5626974](https://github.com/ant-design/ant-design/commit/562697423b1139eb324c1dceb051c143f4870ed7)
- 修复了 [MonthPicker](http://ant.design/components/datepicker/#demo-month-picker) 报错问题,并增加了相关演示。
- 修复 RadioGroup 中的 Radio/RadioButton 无法单独设置 disabled 的问题。[#603](https://github.com/ant-design/ant-design/issues/603)
- 修复今天是不可选日期时的一个展示问题。[#606](https://github.com/ant-design/ant-design/issues/606)
## 0.10.3 `2015-11-26`
- 默认引入 `antd/lib/index.css`,和 0.9.x 保持一致,方便第三方引用。引用 less 文件进行变量配置的可自行 `import 'antd/style/index.less'`。[#593](https://github.com/ant-design/ant-design/issues/593)
- 和 0.9.x 保持一致默认引入 `antd/lib/index.css`(而非 less 文件),方便第三方引用。引用 less 文件进行变量配置的可自行 `import 'antd/style/index.less'`。[#593](https://github.com/ant-design/ant-design/issues/593)
- 升级 Pagination,增加 `defaultCurrent` 属性,修正原来的 `current` 为[完全受控属性](https://facebook.github.io/react/docs/forms.html#controlled-components)。
- Pagination 的改动也修复了 Table 切换数据源后回到[第一页的例子](http://ant.design/components/table/#demo-ajax)。
- 对演示和样式代码增加了 lint 检查。

7
components/select/demo/basic.md

@ -14,12 +14,15 @@ function handleChange(value) {
console.log('selected ' + value);
}
ReactDOM.render(
ReactDOM.render(<div>
<Select defaultValue="lucy" style={{width:120}} onChange={handleChange}>
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
<Option value="disabled" disabled>Disabled</Option>
<Option value="yiminghe">yiminghe</Option>
</Select>
, document.getElementById('components-select-demo-basic'));
<Select defaultValue="lucy" style={{width:120}} disabled>
<Option value="lucy">Lucy</Option>
</Select>
</div>, document.getElementById('components-select-demo-basic'));
````

12
components/select/index.md

@ -26,19 +26,21 @@
|----------|----------------|----------|--------------|
| value | 指定当前选中的条目 | string/Array<String> | 无 |
| defaultValue | 指定默认选中的条目 | string/Array<String> | 无 |
| multiple | 支持多选 | | false |
| filterOption | 是否根据输入项进行筛选 | | true |
| tags | 可以把随意输入的条目作为tag,输入项不需要与下拉选项匹配 | |false |
| multiple | 支持多选 | boolean | false |
| filterOption | 是否根据输入项进行筛选 | boolean | true |
| tags | 可以把随意输入的条目作为tag,输入项不需要与下拉选项匹配 | boolean |false |
| onSelect | 被选中时调用,参数为选中的option value值 | function(value, option) | 无 |
| onDeselect | 取消选中时调用,参数为选中的option value值,仅在multiple或tags模式下生效 | function(value, option) | 无 |
| onChange | 选中option,或input的value变化(combobox模式下)时,调用此函数 | function(value, label) | 无 |
| allowClear | 显示清除按钮 | | false |
| allowClear | 显示清除按钮 | boolean | false |
| onSearch | 文本框值变化时回调 | function(value: String) | |
| placeholder | 选择框默认文字 | string | 无 |
| searchPlaceholder | 搜索框默认文字 | string | 无 |
| optionFilterProp | 输入项过滤对应的 option 属性 | string | value |
| combobox | 输入框自动提示模式 | | false |
| combobox | 输入框自动提示模式 | boolean | false |
| size | 选择框大小,可选 `large` `small` | String | default |
| showSearch | 在下拉中显示搜索框 | boolean | false |
| disabled | 是否禁用 | boolean | false |
### Option props

2
docs/getting-started.md

@ -21,6 +21,8 @@ Ant Design React 致力于提供给程序员**愉悦**的开发体验。
### 1. 安装命令行工具
> 使用 `antd-init` 前,务必确认 [Node.js](https://nodejs.org/en/) 已经升级到 v4.x 或以上。
```bash
$ npm install antd-init -g
```

8
package.json

@ -1,7 +1,7 @@
{
"name": "antd",
"version": "0.10.3",
"stableVersion": "0.10.3",
"version": "0.10.4",
"stableVersion": "0.10.4",
"title": "Ant Design",
"description": "一个 UI 设计语言",
"homepage": "http://ant.design/",
@ -84,7 +84,7 @@
"eslint": "^1.1.0",
"eslint-config-airbnb": "^1.0.0",
"eslint-plugin-babel": "^2.1.1",
"eslint-plugin-markdown": "git+https://github.com/ant-design/eslint-plugin-markdown.git",
"eslint-plugin-markdown-antd": "0.0.0",
"eslint-plugin-react": "^3.3.1",
"expect.js": "~0.3.1",
"extract-text-webpack-plugin": "^0.9.1",
@ -94,7 +94,7 @@
"json-loader": "^0.5.1",
"less": "~2.5.3",
"less-loader": "^2.2.0",
"lesshint": "git+https://github.com/ant-design/lesshint.git",
"lesshint-antd": "~1.1.0",
"lodash": "^3.10.0",
"nico-jsx": "~0.6.0",
"pre-commit": "1.x",

Loading…
Cancel
Save