Skip to content

Commit 440d72a

Browse files
authored
Merge branch 'dev' into lazy-tab
2 parents e1ed4e9 + 1fe51c9 commit 440d72a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+1559
-774
lines changed

CHANGELOG.en-US.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
## Changelog
22

3+
### 2.3.9
4+
5+
*2018-05-18*
6+
7+
- Fixed when the source data does not have the field specified by a TableColumn's `prop` attribute, an error would occur when the mouse moves into that column's cells, #11137
8+
- The `lockScroll` attribute of pop up components no longer adds an inline style to the parent element, but instead adds a class name, #11114
9+
- Fixed the icon of Progress not displaying when its `status` is exception, #11172
10+
- Fixed options' `disabled` attribute not working in filterable Cascader's filter result list, #11185
11+
- Fixed an issue where Table's expanded row cannot be collapsed if the data source is updated after its expansion, #11186
12+
- `setCurrentKey` of Tree now accepts `null` as its param to cancel the currently highlighted node, #11205
13+
314
### 2.3.8
415

516
*2018-05-11*

CHANGELOG.es.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
## Changelog
22

3+
### 2.3.9
4+
5+
*2018-05-18*
6+
7+
- Corregido que cuando los datos de origen no tenian el campo especificado por el atributo `prop` de una TableColumn, se producía un error al moverse el ratón dentro de las celdas de esa columna, #11137.
8+
- El atributo `lockScroll` de los componentes pop-up ya no añade un inline style al elemento padre, sino que añade un nombre de clase, #1111114.
9+
- Arreglado el icono de Progreso que no se mostraba cuando su `status` era `exception`, #11172
10+
- El atributo `disabled` no funcionaba en la lista de resultados del filtro de Cascader, #11185
11+
- Se ha corregido un problema por el que la fila expandida de la Tabla no se podía contraer si los datos de origen se actualizaban después de su expansión, #11186.
12+
- `setCurrentKey` de Tree ahora acepta `null` como parámetro para cancelar el nodo actualmente resaltado, #11205
13+
314
### 2.3.8
415

516
*2018-05-11*

CHANGELOG.zh-CN.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
## 更新日志
22

3+
### 2.3.9
4+
5+
*2018-05-18*
6+
7+
- 修复当 TableColumn 的 `prop` 属性指定的字段在数据源中不存在时,鼠标移入该列单元格会报错的问题,#11137
8+
- 弹出类组件的 `lockScroll` 属性不再为父元素添加内联样式,而是添加相应类名,#11114
9+
- 修复 Progress 在 `status` 为 exception 时图标不显示的问题,#11172
10+
- 修复可搜索的 Cascader 在输入关键词后,选项的 `disabled` 属性失效的问题,#11185
11+
- 修复可展开的 Table 在展开某一行后更新数据源会造成该行无法收起的问题,#11186
12+
- Tree 的 `setCurrentKey` 方法支持传入 `null`,可取消当前高亮的节点,#11205
13+
314
### 2.3.8
415

516
*2018-05-11*

build/bin/build-entry.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,10 @@ const install = function(Vue, opts = {}) {
2929
3030
Vue.use(Loading.directive);
3131
32-
const ELEMENT = {};
33-
ELEMENT.size = opts.size || '';
32+
Vue.prototype.$ELEMENT = {
33+
size: opts.size || '',
34+
zIndex: opts.zIndex || 2000
35+
};
3436
3537
Vue.prototype.$loading = Loading.service;
3638
Vue.prototype.$msgbox = MessageBox;
@@ -40,7 +42,6 @@ const install = function(Vue, opts = {}) {
4042
Vue.prototype.$notify = Notification;
4143
Vue.prototype.$message = Message;
4244
43-
Vue.prototype.$ELEMENT = ELEMENT;
4445
};
4546
4647
/* istanbul ignore if */

build/cooking.common.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

build/cooking.component.js

Lines changed: 0 additions & 23 deletions
This file was deleted.

build/cooking.conf.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

build/cooking.demo.js

Lines changed: 0 additions & 133 deletions
This file was deleted.

build/cooking.test.js

Lines changed: 0 additions & 29 deletions
This file was deleted.

build/deploy-ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ if [ "$TRAVIS_TAG" ]; then
5656
fi
5757

5858
# build dev site
59-
npm run build:file && CI_ENV=/dev/$TRAVIS_BRANCH/ node_modules/.bin/cooking build -c build/cooking.demo.js
59+
npm run build:file && CI_ENV=/dev/$TRAVIS_BRANCH/ node_modules/.bin/webpack --config build/webpack.demo.js
6060
cd temp_web
6161
git clone https://$ROT_TOKEN@github.com/ElementUI/dev.git && cd dev
6262
mkdir $TRAVIS_BRANCH

0 commit comments

Comments
 (0)