Chore: update es changelog for 2.2.2 (#10175)

pull/10179/head
Gonzalo Nandez 2018-03-15 03:36:24 +01:00 committed by 杨奕
parent 64522ebd56
commit 89768279a6
6 changed files with 24 additions and 23 deletions

View File

@ -4,19 +4,19 @@
*2018-03-14* *2018-03-14*
- Added `clear` event for Input, #9988 (by @blackmiaool) - Agregado el evento `clear` para Input, #9988 (by @blackmiaool)
- Now manual input of ColorPicker supports `hsl`, `hsv` and `rgb` modes, #9991 - Ahora la entrada manual de ColorPicker soporta los modos `hsl`, `hsv` y `rgb`, #9991
- Fixed DatePicker not triggering `change` event when its initial value is cleared, #9986 - Arreglado DatePicker no desencadenaba el evento `change` cuando se borraba su valor inicial, #9986
- Now icon class related attributes of Rate support dynamic updates, #10003 - Ahora la clase de iconos relacionadas con los atributos de Rate soporta actualizaciones dinamicas, #10003
- Fixed Table with fixed columns not updating its height correctly if `max-height` is set, #10034 - Arreglado Table que con columnas `fixed` no actualizaban correctamente su altura si se fijaba `max-height`, #10034
- Now DatePicker's range mode supports reverse selection (clicking the end date, then clicking the start date), #8156 (by @earlymeme) - Ahora DatePicker en modo rango admite la selección inversa (haciendo clic en la fecha final y, a continuación, haciendo clic en la fecha de inicio), #8156 (by @earlymeme)
- Added `disabled` attribute for Pagination, #10006 - Agregado el atributo `disabled` para Pagination, #10006
- Added `after-enter` and ` after-leave` events for Popover, #10047 - Agregados los eventos `after-enter` y ` after-leave` para Popover, #10047
- Fixed Select not triggering validation when user selects an option after executing `resetFields` of Form, #10105 - Arreglado Select no disparaba validación cuando el usuario seleccionaba una opción después de ejecutar `resetFields` de Form, #10105
- Fixed incorrect widths of fixed columns of Table in some cases, #10130 - Arreglado anchos incorrectos de columnas fijas de Table en algunos casos, #10130
- Fixed MessageBox inheriting the `title` attribute of its previous instance when called without `title`, #10126 (by @Pochodaydayup) - Corregido MessageBox heredaba el atributo `title` de su instancia anterior cuando se llamaba sin `title`, #10126 (by @Pochodaydayup)
- Added `input-size` attribute for Slider, #10154 - Agregado el atributo `input-size` para Slider, #10154
- Added `left-check-change` and `right-check-change` events for Transfer, #10156 - Agregados los eventos `left-check-change` y `right-check-change` para Transfer, #10156
### 2.2.1 ### 2.2.1

View File

@ -1,4 +1,4 @@
<script> <script>
export default { export default {
data() { data() {
return { return {
@ -47,7 +47,7 @@
querySearchAsync(queryString, cb) { querySearchAsync(queryString, cb) {
var links = this.links; var links = this.links;
var results = queryString ? links.filter(this.createStateFilter(queryString)) : links; var results = queryString ? links.filter(this.createStateFilter(queryString)) : links;
clearTimeout(this.timeout); clearTimeout(this.timeout);
this.timeout = setTimeout(() => { this.timeout = setTimeout(() => {
cb(results); cb(results);
@ -112,11 +112,11 @@
font-size: 14px; font-size: 14px;
color: #8492a6; color: #8492a6;
} }
.el-col:not(:last-child) { .el-col:not(:last-child) {
border-right: 1px solid rgba(224,230,237,0.50); border-right: 1px solid rgba(224,230,237,0.50);
} }
.el-autocomplete { .el-autocomplete {
text-align: left; text-align: left;
} }
@ -661,6 +661,7 @@ Búsqueda de datos desde el servidor.
| blur | Se dispara cuando se pierde el foco | (event: Event) | | blur | Se dispara cuando se pierde el foco | (event: Event) |
| focus | Se dispara cuando se obtiene el foco | (event: Event) | | focus | Se dispara cuando se obtiene el foco | (event: Event) |
| change | se activa cuando cambia el valor de entrada | (value: string \| number) | | change | se activa cuando cambia el valor de entrada | (value: string \| number) |
| clear | se dispara cuando la entrada es borrada por el botón generado por el atributo "clearable". | (event: Event) |
### Autocomplete Atributos ### Autocomplete Atributos

View File

@ -207,7 +207,7 @@ Agrega más modulos basados en su escenario.
| popper-class | clase propia para el `dropdown` del `select` del número de páginas | string | — | — | | popper-class | clase propia para el `dropdown` del `select` del número de páginas | string | — | — |
| prev-text | texto para el botón `prev` | string | — | — | | prev-text | texto para el botón `prev` | string | — | — |
| next-text | texto para el botón `next` | string | — | — | | next-text | texto para el botón `next` | string | — | — |
| disabled | whether Pagination is disabled | boolean | — | false | | disabled | si Pagination esta disabled | boolean | — | false |
### Eventos ### Eventos
| Nombre del evento | Descripción | Parámetros | | Nombre del evento | Descripción | Parámetros |

View File

@ -241,6 +241,6 @@ Por supuesto, puedes anidar otras operaciones. Es más ligero que utilizar un `d
| Nombre del evento | Descripción | Parámetros | | Nombre del evento | Descripción | Parámetros |
| ----------------- | --------------------------------------- | ---------- | | ----------------- | --------------------------------------- | ---------- |
| show | se dispara cuando se muestra el popover | — | | show | se dispara cuando se muestra el popover | — |
| after-enter | triggers when the entering transition ends | — | | after-enter | se dispara cuando la transicion de entrada termina | — |
| hide | se dispara cuando se oculta el popover | — | | hide | se dispara cuando se oculta el popover | — |
| after-leave | triggers when the leaving transition ends | — | | after-leave | se dispara cuando la transicion de salida termina | — |

View File

@ -236,7 +236,7 @@ Se soporta la selección de un rango de valores.
| step | tamaño del paso | number | — | 1 | | step | tamaño del paso | number | — | 1 |
| show-input | Si se muestra el input, trabaja cuando`range`es false | boolean | — | false | | show-input | Si se muestra el input, trabaja cuando`range`es false | boolean | — | false |
| show-input-controls | si se muestran los botones de control cuando`show-input`es true | boolean | — | true | | show-input-controls | si se muestran los botones de control cuando`show-input`es true | boolean | — | true |
| input-size | size of the input box | string | large / medium / small / mini | small | | input-size | tamaño del input | string | large / medium / small / mini | small |
| show-stops | si se muestran los puntos de ruptura (breakpoints) | boolean | — | false | | show-stops | si se muestran los puntos de ruptura (breakpoints) | boolean | — | false |
| show-tooltip | si se muestra el valor en un tooltip | boolean | — | true | | show-tooltip | si se muestra el valor en un tooltip | boolean | — | true |
| format-tooltip | formato para mostrar el valor del tooltip | function(value) | — | — | | format-tooltip | formato para mostrar el valor del tooltip | function(value) | — | — |

View File

@ -289,5 +289,5 @@ Por defecto Transfer busca los atributos `key`, `label`, y `disabled` en cada el
| Nombre | Descripcion | Parametros | | Nombre | Descripcion | Parametros |
| ------ | ---------------------------------------- | ---------------------------------------- | | ------ | ---------------------------------------- | ---------------------------------------- |
| change | se lanzá cuando los elementos cambian en la lista de la derecha | array con las claves de los elementos de la lista de la derecha | | change | se lanzá cuando los elementos cambian en la lista de la derecha | array con las claves de los elementos de la lista de la derecha |
| left-check-change | triggers when end user changes the checked state of any data item in the left list | key array of currently checked items, key array of items whose checked state have changed | | left-check-change | se dispara cuando el usuario final cambia el estado verificado de cualquier elemento de datos en la lista izquierda | array clave de ítems actualmente verificados, array clave de ítems cuyo estado verificado ha cambiado |
| right-check-change | triggers when end user changes the checked state of any data item in the right list | key array of currently checked items, key array of items whose checked state have changed | | right-check-change | se dispara cuando el usuario final cambia el estado verificado de cualquier elemento de datos en la lista derecha. | array clave de ítems actualmente verificados, array clave de ítems cuyo estado verificado ha cambiado |