Commit e4094e9e authored by Leopoldthecoder's avatar Leopoldthecoder

[build] 2.3.0

parent a6c80c0c
<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 | — |
This diff is collapsed.
{"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"}
\ No newline at end of file \ No newline at end of file
{ {
"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",
......
...@@ -171,7 +171,7 @@ if (typeof window !== 'undefined' && window.Vue) { ...@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment