Browse Source

Chore: update es changelog for 2.2.2 (#10175)

Gonzalo Nandez 7 years ago
parent
commit
89768279a6

+ 13 - 13
CHANGELOG.es.md

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

+ 5 - 4
examples/docs/es/input.md

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

+ 1 - 1
examples/docs/es/pagination.md

@@ -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   | —                                        | —                                      |
 | prev-text    | texto para el botón `prev`               | 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
 | Nombre del evento | Descripción                             | Parámetros                    |

+ 2 - 2
examples/docs/es/popover.md

@@ -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 |
 | ----------------- | --------------------------------------- | ---------- |
 | 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  | —          |
-| after-leave       | triggers when the leaving transition ends | —        |
+| after-leave       | se dispara cuando la transicion de salida termina | —        |

+ 1 - 1
examples/docs/es/slider.md

@@ -236,7 +236,7 @@ Se soporta la selección de un rango de valores.
 | step                | tamaño del paso                          | number          | —                 | 1           |
 | 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        |
-| 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-tooltip        | si se muestra el valor en un tooltip     | boolean         | —                 | true        |
 | format-tooltip      | formato para mostrar el valor del tooltip | function(value) | —                 | —           |

+ 2 - 2
examples/docs/es/transfer.md

@@ -289,5 +289,5 @@ Por defecto Transfer busca los atributos `key`, `label`, y `disabled` en cada el
 | 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 |
-| 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 |
-| 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 |
+| 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 | 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 |