[build] 2.3.0

pull/10411/head
Leopoldthecoder 2018-03-28 14:46:08 +08:00
parent a6c80c0c8f
commit e4094e9e69
5 changed files with 473 additions and 473 deletions

View File

@ -1,223 +1,223 @@
<script> <script>
export default { export default {
methods: { methods: {
hello() { hello() {
alert('Hello World!'); alert('Hello World!');
} }
} }
} }
</script> </script>
<style> <style>
.demo-box.demo-alert .el-alert { .demo-box.demo-alert .el-alert {
margin: 20px 0 0; margin: 20px 0 0;
} }
.demo-box.demo-alert .el-alert:first-child { .demo-box.demo-alert .el-alert:first-child {
margin: 0; margin: 0;
} }
</style> </style>
## Alert ## Alert
Displays important alert messages. Displays important alert messages.
### Basic usage ### Basic usage
Alert components are non-overlay elements in the page that does not disappear automatically. Alert components are non-overlay elements in the page that does not disappear automatically.
:::demo Alert provides 4 types of themes defined by `type`, whose default value is `info`. :::demo Alert provides 4 types of themes defined by `type`, whose default value is `info`.
```html ```html
<template> <template>
<el-alert <el-alert
title="success alert" title="success alert"
type="success"> type="success">
</el-alert> </el-alert>
<el-alert <el-alert
title="info alert" title="info alert"
type="info"> type="info">
</el-alert> </el-alert>
<el-alert <el-alert
title="warning alert" title="warning alert"
type="warning"> type="warning">
</el-alert> </el-alert>
<el-alert <el-alert
title="error alert" title="error alert"
type="error"> type="error">
</el-alert> </el-alert>
</template> </template>
``` ```
::: :::
### Customizable close button ### Customizable close button
Customize the close button as texts or other symbols. Customize the close button as texts or other symbols.
:::demo Alert allows you to configure if it's closable. The close button text and closing callbacks are also customizable. `closable` attribute decides if the component can be closed or not. It accepts `boolean`, and the default is `true`. You can set `close-text` attribute to replace the default cross symbol as the close button. Be careful that `close-text` must be a string. `close` event fires when the component is closed. :::demo Alert allows you to configure if it's closable. The close button text and closing callbacks are also customizable. `closable` attribute decides if the component can be closed or not. It accepts `boolean`, and the default is `true`. You can set `close-text` attribute to replace the default cross symbol as the close button. Be careful that `close-text` must be a string. `close` event fires when the component is closed.
```html ```html
<template> <template>
<el-alert <el-alert
title="unclosable alert" title="unclosable alert"
type="success" type="success"
:closable="false"> :closable="false">
</el-alert> </el-alert>
<el-alert <el-alert
title="customized close-text" title="customized close-text"
type="info" type="info"
close-text="Gotcha"> close-text="Gotcha">
</el-alert> </el-alert>
<el-alert <el-alert
title="alert with callback" title="alert with callback"
type="warning" type="warning"
@close="hello"> @close="hello">
</el-alert> </el-alert>
</template> </template>
<script> <script>
export default { export default {
methods: { methods: {
hello() { hello() {
alert('Hello World!'); alert('Hello World!');
} }
} }
} }
</script> </script>
``` ```
::: :::
### With icon ### With icon
Displaying an icon improves readability. Displaying an icon improves readability.
:::demo Setting the `show-icon` attribute displays an icon that corresponds with the current Alert type. :::demo Setting the `show-icon` attribute displays an icon that corresponds with the current Alert type.
```html ```html
<template> <template>
<el-alert <el-alert
title="success alert" title="success alert"
type="success" type="success"
show-icon> show-icon>
</el-alert> </el-alert>
<el-alert <el-alert
title="info alert" title="info alert"
type="info" type="info"
show-icon> show-icon>
</el-alert> </el-alert>
<el-alert <el-alert
title="warning alert" title="warning alert"
type="warning" type="warning"
show-icon> show-icon>
</el-alert> </el-alert>
<el-alert <el-alert
title="error alert" title="error alert"
type="error" type="error"
show-icon> show-icon>
</el-alert> </el-alert>
</template> </template>
``` ```
::: :::
## Centered text ## Centered text
Use the `center` attribute to center the text. Use the `center` attribute to center the text.
:::demo :::demo
```html ```html
<template> <template>
<el-alert <el-alert
title="success alert" title="success alert"
type="success" type="success"
center center
show-icon> show-icon>
</el-alert> </el-alert>
<el-alert <el-alert
title="info alert" title="info alert"
type="info" type="info"
center center
show-icon> show-icon>
</el-alert> </el-alert>
<el-alert <el-alert
title="warning alert" title="warning alert"
type="warning" type="warning"
center center
show-icon> show-icon>
</el-alert> </el-alert>
<el-alert <el-alert
title="error alert" title="error alert"
type="error" type="error"
center center
show-icon> show-icon>
</el-alert> </el-alert>
</template> </template>
``` ```
::: :::
### With description ### With description
Description includes a message with more detailed information. Description includes a message with more detailed information.
:::demo Besides the required `title` attribute, you can add a `description` attribute to help you describe the alert with more details. Description can only store text string, and it will word wrap automatically. :::demo Besides the required `title` attribute, you can add a `description` attribute to help you describe the alert with more details. Description can only store text string, and it will word wrap automatically.
```html ```html
<template> <template>
<el-alert <el-alert
title="with description" title="with description"
type="success" type="success"
description="This is a description."> description="This is a description.">
</el-alert> </el-alert>
</template> </template>
``` ```
::: :::
### With icon and description ### With icon and description
:::demo At last, this is an example with both icon and description. :::demo At last, this is an example with both icon and description.
```html ```html
<template> <template>
<el-alert <el-alert
title="success alert" title="success alert"
type="success" type="success"
description="more text description" description="more text description"
show-icon> show-icon>
</el-alert> </el-alert>
<el-alert <el-alert
title="info alert" title="info alert"
type="info" type="info"
description="more text description" description="more text description"
show-icon> show-icon>
</el-alert> </el-alert>
<el-alert <el-alert
title="warning alert" title="warning alert"
type="warning" type="warning"
description="more text description" description="more text description"
show-icon> show-icon>
</el-alert> </el-alert>
<el-alert <el-alert
title="error alert" title="error alert"
type="error" type="error"
description="more text description" description="more text description"
show-icon> show-icon>
</el-alert> </el-alert>
</template> </template>
``` ```
::: :::
### Attributes ### Attributes
| Attribute | Description | Type | Accepted Values | Default | | Attribute | Description | Type | Accepted Values | Default |
|---------- |-------------- |---------- |-------------------------------- |-------- | |---------- |-------------- |---------- |-------------------------------- |-------- |
| **title** | title **REQUIRED** | string | — | — | | **title** | title **REQUIRED** | string | — | — |
| type | component type | string | success/warning/info/error | info | | type | component type | string | success/warning/info/error | info |
| description | descriptive text. Can also be passed with the default slot | string | — | — | | description | descriptive text. Can also be passed with the default slot | string | — | — |
| closable | if closable or not | boolean | — | true | | closable | if closable or not | boolean | — | true |
| center | whether to center the text | boolean | — | false | | center | whether to center the text | boolean | — | false |
| close-text | customized close button text | string | — | — | | close-text | customized close button text | string | — | — |
| show-icon | if a type icon is displayed | boolean | — | false | | show-icon | if a type icon is displayed | boolean | — | false |
### Events ### Events
| Event Name | Description | Parameters | | Event Name | Description | Parameters |
|---------- |-------- |---------- | |---------- |-------- |---------- |
| close | fires when alert is closed | — | | close | fires when alert is closed | — |

View File

@ -1,247 +1,247 @@
<style> <style>
.demo-box.demo-popover { .demo-box.demo-popover {
.el-popover + .el-popover { .el-popover + .el-popover {
margin-left: 10px; margin-left: 10px;
} }
.el-input { .el-input {
width: 360px; width: 360px;
} }
.el-button { .el-button {
margin-left: 10px; margin-left: 10px;
} }
} }
</style> </style>
<script> <script>
export default { export default {
data() { data() {
return { return {
visible2: false, visible2: false,
gridData: [{ gridData: [{
date: '2016-05-02', date: '2016-05-02',
name: 'Jack', name: 'Jack',
address: 'New York City' address: 'New York City'
}, { }, {
date: '2016-05-04', date: '2016-05-04',
name: 'Jack', name: 'Jack',
address: 'New York City' address: 'New York City'
}, { }, {
date: '2016-05-01', date: '2016-05-01',
name: 'Jack', name: 'Jack',
address: 'New York City' address: 'New York City'
}, { }, {
date: '2016-05-03', date: '2016-05-03',
name: 'Jack', name: 'Jack',
address: 'New York City' address: 'New York City'
}], }],
gridData2: [{ gridData2: [{
date: '2016-05-02', date: '2016-05-02',
name: 'Jack', name: 'Jack',
address: 'New York City', address: 'New York City',
}, { }, {
date: '2016-05-04', date: '2016-05-04',
name: 'Jack', name: 'Jack',
address: 'New York City', address: 'New York City',
$info: true $info: true
}, { }, {
date: '2016-05-01', date: '2016-05-01',
name: 'Jack', name: 'Jack',
address: 'New York City', address: 'New York City',
}, { }, {
date: '2016-05-03', date: '2016-05-03',
name: 'Jack', name: 'Jack',
address: 'New York City', address: 'New York City',
$positive: true $positive: true
}], }],
gridData3: [{ gridData3: [{
tag: 'Home', tag: 'Home',
date: '2016-05-03', date: '2016-05-03',
name: 'Jack', name: 'Jack',
address: 'New York City' address: 'New York City'
}, { }, {
tag: 'Company', tag: 'Company',
date: '2016-05-02', date: '2016-05-02',
name: 'Jack', name: 'Jack',
address: 'New York City' address: 'New York City'
}, { }, {
tag: 'Company', tag: 'Company',
date: '2016-05-04', date: '2016-05-04',
name: 'Jack', name: 'Jack',
address: 'New York City' address: 'New York City'
}, { }, {
tag: 'Home', tag: 'Home',
date: '2016-05-01', date: '2016-05-01',
name: 'Jack', name: 'Jack',
address: 'New York City' address: 'New York City'
}, { }, {
tag: 'Company', tag: 'Company',
date: '2016-05-08', date: '2016-05-08',
name: 'Jack', name: 'Jack',
address: 'New York City' address: 'New York City'
}, { }, {
tag: 'Home', tag: 'Home',
date: '2016-05-06', date: '2016-05-06',
name: 'Jack', name: 'Jack',
address: 'New York City' address: 'New York City'
}, { }, {
tag: 'Company', tag: 'Company',
date: '2016-05-07', date: '2016-05-07',
name: 'Jack', name: 'Jack',
address: 'New York City' address: 'New York City'
}] }]
}; };
} }
}; };
</script> </script>
## Popover ## Popover
### Basic usage ### Basic usage
Similar to Tooltip, Popover is also built with `Vue-popper`. So for some duplicated attributes, please refer to the documentation of Tooltip. Similar to Tooltip, Popover is also built with `Vue-popper`. So for some duplicated attributes, please refer to the documentation of Tooltip.
:::demo Add `ref` in your popover, then in your button, use `v-popover` directive to link the button and the popover. The attribute `trigger` is used to define how popover is triggered: `hover`, `click` or `focus`. Alternatively, you can specify reference using a named `slot`. :::demo Add `ref` in your popover, then in your button, use `v-popover` directive to link the button and the popover. The attribute `trigger` is used to define how popover is triggered: `hover`, `click` or `focus`. Alternatively, you can specify reference using a named `slot`.
```html ```html
<el-popover <el-popover
ref="popover1" ref="popover1"
placement="top-start" placement="top-start"
title="Title" title="Title"
width="200" width="200"
trigger="hover" trigger="hover"
content="this is content, this is content, this is content"> content="this is content, this is content, this is content">
</el-popover> </el-popover>
<el-popover <el-popover
ref="popover2" ref="popover2"
placement="bottom" placement="bottom"
title="Title" title="Title"
width="200" width="200"
trigger="click" trigger="click"
content="this is content, this is content, this is content"> content="this is content, this is content, this is content">
</el-popover> </el-popover>
<el-button v-popover:popover1>Hover to activate</el-button> <el-button v-popover:popover1>Hover to activate</el-button>
<el-button v-popover:popover2>Click to activate</el-button> <el-button v-popover:popover2>Click to activate</el-button>
<el-popover <el-popover
placement="right" placement="right"
title="Title" title="Title"
width="200" width="200"
trigger="focus" trigger="focus"
content="this is content, this is content, this is content"> content="this is content, this is content, this is content">
<el-button slot="reference">Focus to activate</el-button> <el-button slot="reference">Focus to activate</el-button>
</el-popover> </el-popover>
``` ```
::: :::
### Nested information ### Nested information
Other components can be nested in popover. Following is an example of nested table. Other components can be nested in popover. Following is an example of nested table.
:::demo replace the `content` attribute with a default `slot`. :::demo replace the `content` attribute with a default `slot`.
```html ```html
<el-popover <el-popover
ref="popover4" ref="popover4"
placement="right" placement="right"
width="400" width="400"
trigger="click"> trigger="click">
<el-table :data="gridData"> <el-table :data="gridData">
<el-table-column width="150" property="date" label="date"></el-table-column> <el-table-column width="150" property="date" label="date"></el-table-column>
<el-table-column width="100" property="name" label="name"></el-table-column> <el-table-column width="100" property="name" label="name"></el-table-column>
<el-table-column width="300" property="address" label="address"></el-table-column> <el-table-column width="300" property="address" label="address"></el-table-column>
</el-table> </el-table>
</el-popover> </el-popover>
<el-button v-popover:popover4>Click to activate</el-button> <el-button v-popover:popover4>Click to activate</el-button>
<script> <script>
export default { export default {
data() { data() {
return { return {
gridData: [{ gridData: [{
date: '2016-05-02', date: '2016-05-02',
name: 'Jack', name: 'Jack',
address: 'New York City' address: 'New York City'
}, { }, {
date: '2016-05-04', date: '2016-05-04',
name: 'Jack', name: 'Jack',
address: 'New York City' address: 'New York City'
}, { }, {
date: '2016-05-01', date: '2016-05-01',
name: 'Jack', name: 'Jack',
address: 'New York City' address: 'New York City'
}, { }, {
date: '2016-05-03', date: '2016-05-03',
name: 'Jack', name: 'Jack',
address: 'New York City' address: 'New York City'
}] }]
}; };
} }
}; };
</script> </script>
``` ```
::: :::
### Nested operation ### Nested operation
Of course, you can nest other operations. It's more light-weight than using a dialog. Of course, you can nest other operations. It's more light-weight than using a dialog.
:::demo :::demo
```html ```html
<el-popover <el-popover
ref="popover5" ref="popover5"
placement="top" placement="top"
width="160" width="160"
v-model="visible2"> v-model="visible2">
<p>Are you sure to delete this?</p> <p>Are you sure to delete this?</p>
<div style="text-align: right; margin: 0"> <div style="text-align: right; margin: 0">
<el-button size="mini" type="text" @click="visible2 = false">cancel</el-button> <el-button size="mini" type="text" @click="visible2 = false">cancel</el-button>
<el-button type="primary" size="mini" @click="visible2 = false">confirm</el-button> <el-button type="primary" size="mini" @click="visible2 = false">confirm</el-button>
</div> </div>
</el-popover> </el-popover>
<el-button v-popover:popover5>Delete</el-button> <el-button v-popover:popover5>Delete</el-button>
<script> <script>
export default { export default {
data() { data() {
return { return {
visible2: false, visible2: false,
}; };
} }
} }
</script> </script>
``` ```
::: :::
### Attributes ### Attributes
| Attribute | Description | Type | Accepted Values | Default | | Attribute | Description | Type | Accepted Values | Default |
|--------------------|----------------------------------------------------------|-------------------|-------------|--------| |--------------------|----------------------------------------------------------|-------------------|-------------|--------|
| trigger | how the popover is triggered | string | click/focus/hover/manual | click | | trigger | how the popover is triggered | string | click/focus/hover/manual | click |
| title | popover title | string | — | — | | title | popover title | string | — | — |
| content | popover content, can be replaced with a default `slot` | string | — | — | | content | popover content, can be replaced with a default `slot` | string | — | — |
| width | popover width | string, number | — | Min width 150px | | width | popover width | string, number | — | Min width 150px |
| placement | popover placement | string | top/top-start/top-end/bottom/bottom-start/bottom-end/left/left-start/left-end/right/right-start/right-end | bottom | | placement | popover placement | string | top/top-start/top-end/bottom/bottom-start/bottom-end/left/left-start/left-end/right/right-start/right-end | bottom |
| disabled | whether Popover is disabled | boolean | — | false | | disabled | whether Popover is disabled | boolean | — | false |
| value(v-model) | whether popover is visible | Boolean | — | false | | value(v-model) | whether popover is visible | Boolean | — | false |
| offset | popover offset | number | — | 0 | | offset | popover offset | number | — | 0 |
| transition | popover transition animation | string | — | el-fade-in-linear | | transition | popover transition animation | string | — | el-fade-in-linear |
| visible-arrow | whether a tooltip arrow is displayed or not. For more info, please refer to [Vue-popper](https://github.com/element-component/vue-popper) | boolean | — | true | | visible-arrow | whether a tooltip arrow is displayed or not. For more info, please refer to [Vue-popper](https://github.com/element-component/vue-popper) | boolean | — | true |
| popper-options | parameters for [popper.js](https://popper.js.org/documentation.html) | object | please refer to [popper.js](https://popper.js.org/documentation.html) | `{ boundariesElement: 'body', gpuAcceleration: false }` | | popper-options | parameters for [popper.js](https://popper.js.org/documentation.html) | object | please refer to [popper.js](https://popper.js.org/documentation.html) | `{ boundariesElement: 'body', gpuAcceleration: false }` |
| popper-class | custom class name for popover | string | — | — | | popper-class | custom class name for popover | string | — | — |
| open-delay | delay of appearance when `trigger` is hover, in milliseconds | number | — | — | | open-delay | delay of appearance when `trigger` is hover, in milliseconds | number | — | — |
### Slot ### Slot
| Name | Description | | Name | Description |
| --- | --- | | --- | --- |
| — | text content of popover | | — | text content of popover |
| reference | HTML element that triggers popover | | reference | HTML element that triggers popover |
### Events ### Events
| Event Name | Description | 回调参数 | | Event Name | Description | 回调参数 |
|---------|--------|---------| |---------|--------|---------|
| show | triggers when popover shows | — | | show | triggers when popover shows | — |
| after-enter | triggers when the entering transition ends | — | | after-enter | triggers when the entering transition ends | — |
| hide | triggers when popover hides | — | | hide | triggers when popover hides | — |
| after-leave | triggers when the leaving transition ends | — | | after-leave | triggers when the leaving transition ends | — |

View File

@ -1 +1 @@
{"1.4.13":"1.4","2.0.11":"2.0","2.1.0":"2.1","2.2.2":"2.2"} {"1.4.13":"1.4","2.0.11":"2.0","2.1.0":"2.1","2.2.2":"2.2","2.3.0":"2.3"}

View File

@ -1,6 +1,6 @@
{ {
"name": "element-theme-chalk", "name": "element-theme-chalk",
"version": "2.2.2", "version": "2.3.0",
"description": "Element component chalk theme.", "description": "Element component chalk theme.",
"main": "lib/index.css", "main": "lib/index.css",
"style": "lib/index.css", "style": "lib/index.css",

View File

@ -171,7 +171,7 @@ if (typeof window !== 'undefined' && window.Vue) {
} }
module.exports = { module.exports = {
version: '2.2.2', version: '2.3.0',
locale: locale.use, locale: locale.use,
i18n: locale.i18n, i18n: locale.i18n,
install, install,