diff --git a/.babelrc b/.babelrc
index ecbb2e8..123a498 100644
--- a/.babelrc
+++ b/.babelrc
@@ -2,7 +2,15 @@
"presets": [
"es2015",
"es2017",
- "stage-0"
+ "stage-0",
+ [
+ "env",
+ {
+ "targets": {
+ "browsers": ["last 3 versions", "not IE < 10"]
+ }
+ }
+ ]
],
"plugins": [
"transform-runtime",
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index 4525366..af8b90d 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -8,6 +8,8 @@ Before submitting your contribution please read the guidelines.
## Issue Reporting Guidelines
+- Do not create questions. The issue list is exclusively for reports, bugs and feature requests. Use the [Gitter Channel]( https://gitter.im/vuematerial/questions) instead.
+
- Always search for your issue first. It may have already been answered, planned or fixed in some branch. New components and features will be planned on [Milestones](https://github.com/marcosmoura/vue-material/milestones) or on [Projects](https://github.com/marcosmoura/vue-material/projects).
- Only create issues for the newest version. For now. Until 1.0.0.
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
index 2a75dc4..ffc6607 100644
--- a/.github/ISSUE_TEMPLATE.md
+++ b/.github/ISSUE_TEMPLATE.md
@@ -42,4 +42,4 @@ Do not create new features based on a problem that will only solve edge cases fo
### Reproduction Link
-
diff --git a/.gitignore b/.gitignore
index 153216e..9a6a2a1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
.DS_Store
node_modules/
npm-debug.log
+nbproject
diff --git a/README.md b/README.md
index c30936d..57212d4 100644
--- a/README.md
+++ b/README.md
@@ -11,14 +11,16 @@
-
+
+
+
Vue Material is lightweight framework built exactly according to the Material Design specs.
It aims to deliver a collection of reusable components and a series of UI Elements to build applications with support to all modern Web Browsers through Vue 2.
-Build powerful and well-designed web apps that can can fit on every screen. You can generate and use themes dynamically, use components on demand, take advantage of UI Elements and Components with an ease-to-use API.
+Build powerful and well-designed web apps that can fit on every screen. You can generate and use themes dynamically, use components on demand, take advantage of UI Elements and Components with an ease-to-use API.
## Demo and Documentation
Demo
@@ -67,31 +69,34 @@ Vue.use(VueMaterial)
// OR
-Vue.use(VueMaterial.mdCore) //Required to boot vue material
-Vue.use(VueMaterial.mdButton)
-Vue.use(VueMaterial.mdIcon)
-Vue.use(VueMaterial.mdSidenav)
-Vue.use(VueMaterial.mdToolbar)
+Vue.use(VueMaterial.MdCore) //Required to boot vue material
+Vue.use(VueMaterial.MdButton)
+Vue.use(VueMaterial.MdIcon)
+Vue.use(VueMaterial.MdSidenav)
+Vue.use(VueMaterial.MdToolbar)
```
-## Browser Support
-Vue Material supports the latest version of all Browsers. This means:
-* Google Chrome 50+
-* Firefox 48+
-* Safari 9+
-* Opera 40+
-* IE 11
-* Edge
-
-May work in other browsers but it's untested.
-
## Changelog
Changelog
+## Questions
+The issue list is exclusively for reports, bugs and feature requests. Use the [Gitter Channel]( https://gitter.im/vuematerial) instead.
+
## Contributing
Please make sure to read the [Contributing Guide](https://github.com/marcosmoura/vue-material/blob/master/.github/CONTRIBUTING.md) before making a pull request.
+## Browser Support
+Vue Material supports the latest version of all Browsers. This means:
+* Google Chrome 52+
+* Firefox 48+
+* Safari 9+
+* Opera 38+
+* Edge 12+
+* IE 11
+
+May work in other browsers but it's untested.
+
## Credits and Thanks
* This library aims to delivery components using almost the same API of Angular Material
* Thanks a lot to elviskang for donating the npm package name!
@@ -102,7 +107,6 @@ You don't need to include any other library to work with vue-material. The focus
* vue
* autosize
* element.scrollintoviewifneeded-polyfill
-* scopedQuerySelectorShim
## License
MIT
diff --git a/build/release.sh b/build/release.sh
index 72fbf62..7b75a0c 100644
--- a/build/release.sh
+++ b/build/release.sh
@@ -31,6 +31,7 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then
PACKAGE_VERSION=$(get_package_version)
cp -Rf dist/docs/releases tmp-releases
cp -Rf dist/docs tmp-releases/v$PACKAGE_VERSION
+ rm -Rf tmp-releases/v$PACKAGE_VERSION/releases
# append version
sed -i '' -e "s|\"]|\", \"$VERSION\"]|g" docs/versions.json
diff --git a/build/server/index.js b/build/server/index.js
index fc1947f..e0f2a9a 100644
--- a/build/server/index.js
+++ b/build/server/index.js
@@ -13,15 +13,14 @@ const app = express();
const compiler = webpack(webpackConfig);
const rootPath = path.join(__dirname, '..', '..');
const devMiddlewareInstance = devMiddleware(compiler, {
+ quiet: true,
publicPath: config.publicPath,
- index: config.indexPath,
- stats: {
- colors: true,
- chunks: false
- }
+ index: config.indexPath
});
-const hotMiddlewareInstance = hotMiddleware(compiler);
+const hotMiddlewareInstance = hotMiddleware(compiler, {
+ log() { }
+});
compiler.plugin('compilation', (compilation) => {
compilation.plugin('html-webpack-plugin-after-emit', (data, done) => {
@@ -36,14 +35,16 @@ app.use(hotMiddlewareInstance);
app.use('/', express.static(path.join(rootPath, config.docsPath)));
app.use('/assets', express.static(path.join(rootPath, config.assetsPath)));
-export default app.listen(config.server.port, (error) => {
+devMiddlewareInstance.waitUntilValid(() => {
let uri = 'http://localhost:' + config.server.port;
+ console.log(chalk.blue('> Listening at ' + uri + '\n'));
+});
+
+export default app.listen(config.server.port, (error) => {
if (error) {
console.log(chalk.red(error));
return;
}
-
- console.log(chalk.blue('Listening at ' + uri + '\n'));
});
diff --git a/build/webpack/base.js b/build/webpack/base.js
index 8275505..65cf3eb 100644
--- a/build/webpack/base.js
+++ b/build/webpack/base.js
@@ -3,6 +3,10 @@ import webpack from 'webpack';
import eslintFormatter from 'eslint-friendly-formatter';
import config from '../config';
+const resolvePath = (dir) => {
+ return path.resolve(__dirname, '..', '..', dir);
+};
+
export default {
entry: {
docs: './docs/src/index.js'
@@ -13,81 +17,50 @@ export default {
filename: '[name].js'
},
resolve: {
- extensions: ['', '.js', '.vue'],
- fallback: [config.nodePath],
+ extensions: ['.js', '.vue', '.json'],
alias: {
- assets: path.resolve(__dirname, '../../docs/src/assets')
+ assets: resolvePath('docs/src/assets')
}
},
- resolveLoader: {
- fallback: [config.nodePath]
- },
module: {
- preLoaders: [
+ rules: [
{
- test: /\.vue$/,
- loader: 'eslint',
- include: config.projectRoot,
- exclude: /node_modules/
+ test: /\.(js|vue)$/,
+ loader: 'eslint-loader',
+ enforce: 'pre',
+ include: [
+ resolvePath('build'),
+ resolvePath('src'),
+ resolvePath('docs')
+ ],
+ options: {
+ fix: true,
+ formatter: eslintFormatter
+ }
},
{
test: /\.js$/,
- loader: 'eslint',
- include: config.projectRoot,
- exclude: /node_modules/
- }
- ],
- loaders: [
- {
- test: /\.vue$/,
- loader: 'vue'
- },
- {
- test: /\.js$/,
- loader: 'babel',
- include: config.projectRoot,
- exclude: /node_modules/
- },
- {
- test: /\.css$/,
- loader: 'vue-style-loader!css-loader'
- },
- {
- test: /\.scss$/,
- loader: 'vue-style-loader!css-loader!sass-loader'
+ loader: 'babel-loader',
+ include: [
+ resolvePath('build'),
+ resolvePath('src'),
+ resolvePath('docs')
+ ]
},
{
test: /\.theme$/,
- loaders: ['raw', 'sass-loader']
+ use: ['raw-loader', 'sass-loader']
},
{
- test: /\.json$/,
- loaders: ['json-loader']
- },
- {
- test: /\.(png|jpg|gif|svg)(\?.*)?$/,
- loader: 'url',
+ test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
+ loader: 'url-loader',
query: {
limit: 10000,
name: '/assets/[name].[hash:8].[ext]'
}
- },
- {
- test: /\.html$/,
- loader: 'vue-html'
}
]
},
- eslint: {
- fix: true,
- formatter: eslintFormatter
- },
- vue: {
- loaders: {
- css: 'vue-style-loader!css-loader',
- scss: 'vue-style-loader!css-loader!sass-loader'
- }
- },
plugins: [
new webpack.DefinePlugin({
'process.env': config.env
diff --git a/build/webpack/debug-lib.js b/build/webpack/debug-lib.js
index be397e9..e4a4107 100644
--- a/build/webpack/debug-lib.js
+++ b/build/webpack/debug-lib.js
@@ -1,4 +1,3 @@
-import webpack from 'webpack';
import merge from 'webpack-merge';
import ExtractTextPlugin from 'extract-text-webpack-plugin';
import OptimizeJsPlugin from 'optimize-js-plugin';
@@ -12,11 +11,7 @@ const devConfig = merge(prodConfig, {
});
devConfig.plugins = [
- new webpack.optimize.OccurenceOrderPlugin(),
- new webpack.optimize.DedupePlugin(),
- new OptimizeJsPlugin({
- sourceMap: false
- }),
+ new OptimizeJsPlugin(),
new ExtractTextPlugin('[name].css')
];
diff --git a/build/webpack/dev.js b/build/webpack/dev.js
index 9fed283..9426f67 100644
--- a/build/webpack/dev.js
+++ b/build/webpack/dev.js
@@ -1,23 +1,47 @@
import webpack from 'webpack';
import merge from 'webpack-merge';
import HtmlWebpackPlugin from 'html-webpack-plugin';
+import FriendlyErrorsPlugin from 'friendly-errors-webpack-plugin';
import baseWebpackConfig from './base';
import config from '../config';
Object.keys(baseWebpackConfig.entry).forEach((name) => {
- baseWebpackConfig.entry[name] = ['./build/server/client'].concat(baseWebpackConfig.entry[name]);
+ baseWebpackConfig.entry[name] = ['./build/server/client', ...[baseWebpackConfig.entry[name]]];
});
export default merge(baseWebpackConfig, {
- devtool: 'source-map',
+ devtool: 'cheap-module-eval-source-map',
+ module: {
+ rules: [
+ {
+ test: /\.vue$/,
+ loader: 'vue-loader',
+ options: {
+ loaders: {
+ css: 'vue-style-loader!css-loader',
+ scss: 'vue-style-loader!css-loader!sass-loader'
+ }
+ }
+ },
+ {
+ test: /\.css$/,
+ use: ['vue-style-loader', 'css-loader']
+ },
+ {
+ test: /\.scss$/,
+ use: ['vue-style-loader', 'css-loader', 'sass-loader']
+ }
+ ]
+ },
plugins: [
new webpack.WatchIgnorePlugin([config.nodePath]),
new webpack.HotModuleReplacementPlugin(),
- new webpack.NoErrorsPlugin(),
+ new webpack.NoEmitOnErrorsPlugin(),
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'docs/index.html',
inject: true
- })
+ }),
+ new FriendlyErrorsPlugin()
]
});
diff --git a/build/webpack/prod-docs.js b/build/webpack/prod-docs.js
index dd6aa1d..8d64703 100644
--- a/build/webpack/prod-docs.js
+++ b/build/webpack/prod-docs.js
@@ -6,36 +6,73 @@ import ExtractTextPlugin from 'extract-text-webpack-plugin';
import CopyWebpackPlugin from 'copy-webpack-plugin';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import OptimizeJsPlugin from 'optimize-js-plugin';
+import OptimizeCssAssetsPlugin from 'optimize-css-assets-webpack-plugin';
+import mediaPacker from 'css-mqpacker';
import config from '../config';
import baseConfig from './base';
const docsPath = path.join(config.rootPath, config.docsPath);
-export default merge(baseConfig, {
+const conf = merge(baseConfig, {
output: {
path: docsPath,
publicPath: '',
filename: '[name].[chunkhash:8].js',
chunkFilename: '[name].[chunkhash:8].js'
},
- vue: {
- loaders: {
- css: ExtractTextPlugin.extract('css'),
- scss: ExtractTextPlugin.extract(['css', 'sass'])
- },
- postcss: [
- autoprefixer({
- browsers: ['last 3 versions']
- })
+ module: {
+ rules: [
+ {
+ test: /\.vue$/,
+ loader: 'vue-loader',
+ options: {
+ loaders: {
+ css: ExtractTextPlugin.extract({
+ use: 'css-loader',
+ fallback: 'vue-style-loader'
+ }),
+ scss: ExtractTextPlugin.extract({
+ use: 'css-loader!sass-loader',
+ fallback: 'vue-style-loader'
+ })
+ },
+ postcss: [
+ autoprefixer({
+ browsers: ['last 3 versions', 'not IE < 10']
+ }),
+ mediaPacker()
+ ]
+ }
+ },
+ {
+ test: /\.css$/,
+ loader: ExtractTextPlugin.extract({
+ use: 'css-loader',
+ fallback: 'vue-style-loader'
+ })
+ },
+ {
+ test: /\.scss$/,
+ loader: ExtractTextPlugin.extract({
+ use: 'css-loader!sass-loader',
+ fallback: 'vue-style-loader'
+ })
+ }
]
},
plugins: [
- new webpack.optimize.DedupePlugin(),
+ new webpack.LoaderOptionsPlugin({
+ minimize: true,
+ debug: true
+ }),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
},
- comments: false
+ output: {
+ comments: false
+ },
+ sourceMap: false
}),
new OptimizeJsPlugin({
sourceMap: false
@@ -97,6 +134,8 @@ export default merge(baseConfig, {
name: 'manifest',
chunks: ['vendor']
}),
- new webpack.optimize.OccurenceOrderPlugin()
+ new OptimizeCssAssetsPlugin()
]
});
+
+export default conf;
diff --git a/build/webpack/prod-lib.js b/build/webpack/prod-lib.js
index 1e81636..6433d9a 100644
--- a/build/webpack/prod-lib.js
+++ b/build/webpack/prod-lib.js
@@ -5,6 +5,8 @@ import merge from 'webpack-merge';
import autoprefixer from 'autoprefixer';
import ExtractTextPlugin from 'extract-text-webpack-plugin';
import OptimizeJsPlugin from 'optimize-js-plugin';
+import OptimizeCssAssetsPlugin from 'optimize-css-assets-webpack-plugin';
+import mediaPacker from 'css-mqpacker';
import config from '../config';
import baseConfig from './base';
@@ -35,43 +37,82 @@ export default merge(baseConfig, {
library: 'VueMaterial',
libraryTarget: 'umd'
},
- vue: {
- loaders: {
- css: ExtractTextPlugin.extract('css'),
- scss: ExtractTextPlugin.extract(['css', 'sass'])
- },
- postcss: [
- autoprefixer({
- browsers: ['last 2 versions']
- })
+ module: {
+ rules: [
+ {
+ test: /\.vue$/,
+ loader: 'vue-loader',
+ options: {
+ loaders: {
+ css: ExtractTextPlugin.extract({
+ use: 'css-loader',
+ fallback: 'vue-style-loader'
+ }),
+ scss: ExtractTextPlugin.extract({
+ use: 'css-loader!sass-loader',
+ fallback: 'vue-style-loader'
+ })
+ },
+ postcss: [
+ autoprefixer({
+ browsers: ['last 3 versions', 'not IE < 10']
+ }),
+ mediaPacker()
+ ]
+ }
+ },
+ {
+ test: /\.css$/,
+ loader: ExtractTextPlugin.extract({
+ use: 'css-loader',
+ fallback: 'vue-style-loader'
+ })
+ },
+ {
+ test: /\.scss$/,
+ loader: ExtractTextPlugin.extract({
+ use: 'css-loader!sass-loader',
+ fallback: 'vue-style-loader'
+ })
+ }
]
},
externals: {
- vue: 'Vue'
+ vue: {
+ commonjs: 'vue',
+ commonjs2: 'vue',
+ amd: 'vue',
+ root: 'Vue',
+ var: 'Vue'
+ }
},
plugins: [
- new webpack.optimize.DedupePlugin(),
- new webpack.IgnorePlugin(/vue/),
+ new webpack.LoaderOptionsPlugin({
+ minimize: true,
+ debug: false
+ }),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
},
- comments: false
+ output: {
+ comments: false
+ },
+ sourceMap: false
}),
- new webpack.optimize.OccurenceOrderPlugin(),
new OptimizeJsPlugin({
sourceMap: false
}),
- new webpack.BannerPlugin(
-`/*!
- * Vue Material v${version}
- * Made with love by Marcos Moura
- * Released under the MIT License.
- */`
- , {
+ new webpack.BannerPlugin({
+ banner: `/*!
+* Vue Material v${version}
+* Made with love by Marcos Moura
+* Released under the MIT License.
+*/ `,
raw: true,
entryOnly: true
}),
- new ExtractTextPlugin('[name].css')
+ new ExtractTextPlugin('[name].css'),
+ new OptimizeCssAssetsPlugin()
]
});
diff --git a/dist/components/mdAvatar/index.css b/dist/components/mdAvatar/index.css
index 7edc86e..3818d5e 100644
--- a/dist/components/mdAvatar/index.css
+++ b/dist/components/mdAvatar/index.css
@@ -1,2 +1,5 @@
-.md-avatar{width:40px;min-width:40px;height:40px;min-height:40px;margin:auto;display:inline-block;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative;border-radius:40px;vertical-align:middle}.md-avatar.md-large{width:64px;min-width:64px;height:64px;min-height:64px;border-radius:64px}.md-avatar.md-large .md-icon{width:40px;min-width:40px;height:40px;min-height:40px;font-size:40px;line-height:40px}.md-avatar.md-avatar-icon{background-color:rgba(0,0,0,.38)}.md-avatar.md-avatar-icon .md-icon{color:#fff}.md-avatar .md-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.md-avatar img{width:100%;height:100%;display:block}.md-avatar .md-ink-ripple{border-radius:50%}.md-avatar .md-ink-ripple .md-ripple.md-active{animation-duration:.9s}.md-avatar-tooltip.md-tooltip-top{margin-top:-8px}.md-avatar-tooltip.md-tooltip-right{margin-left:8px}.md-avatar-tooltip.md-tooltip-bottom{margin-top:8px}.md-avatar-tooltip.md-tooltip-left{margin-left:-8px}
-/*# sourceMappingURL=index.css.map*/
\ No newline at end of file
+/*!
+* Vue Material v0.7.1
+* Made with love by Marcos Moura
+* Released under the MIT License.
+*/.md-avatar{width:40px;min-width:40px;height:40px;min-height:40px;margin:auto;display:inline-block;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative;border-radius:40px;vertical-align:middle}.md-avatar.md-large{width:64px;min-width:64px;height:64px;min-height:64px;border-radius:64px}.md-avatar.md-large .md-icon{width:40px;min-width:40px;height:40px;min-height:40px;font-size:40px;line-height:40px}.md-avatar.md-avatar-icon{background-color:rgba(0,0,0,.38)}.md-avatar.md-avatar-icon .md-icon{color:#fff}.md-avatar .md-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.md-avatar img{width:100%;height:100%;display:block}.md-avatar .md-ink-ripple{border-radius:50%}.md-avatar .md-ink-ripple .md-ripple.md-active{animation-duration:.9s}.md-avatar-tooltip.md-tooltip-top{margin-top:-8px}.md-avatar-tooltip.md-tooltip-right{margin-left:8px}.md-avatar-tooltip.md-tooltip-bottom{margin-top:8px}.md-avatar-tooltip.md-tooltip-left{margin-left:-8px}
\ No newline at end of file
diff --git a/dist/components/mdAvatar/index.debug.js b/dist/components/mdAvatar/index.debug.js
index 5864e84..8560425 100644
--- a/dist/components/mdAvatar/index.debug.js
+++ b/dist/components/mdAvatar/index.debug.js
@@ -1,2 +1,339 @@
-!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.VueMaterial=t():e.VueMaterial=t()}(this,function(){return function(e){function t(a){if(r[a])return r[a].exports;var n=r[a]={exports:{},id:a,loaded:!1};return e[a].call(n.exports,n,n.exports,t),n.loaded=!0,n.exports}var r={};return t.m=e,t.c=r,t.p="/",t(0)}({0:function(e,t,r){e.exports=r(70)},1:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={props:{mdTheme:String},data:function(){return{closestThemedParent:!1}},methods:{getClosestThemedParent:function(e){return!(!e||!e.$el||0===e._uid)&&(e.mdTheme||e.mdName?e:this.getClosestThemedParent(e.$parent))}},computed:{themeClass:function(){if(this.mdTheme)return"md-theme-"+this.mdTheme;var e=this.closestThemedParent.mdTheme;return e||(e=this.closestThemedParent?this.closestThemedParent.mdName:this.$material.currentTheme),"md-theme-"+e}},mounted:function(){this.closestThemedParent=this.getClosestThemedParent(this.$parent),this.$material.currentTheme||this.$material.setCurrentTheme("default")}},e.exports=t.default},70:function(e,t,r){"use strict";function a(e){return e&&e.__esModule?e:{default:e}}function n(e){e.component("md-avatar",e.extend(d.default)),e.material.styles.push(i.default)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=n;var o=r(224),d=a(o),s=r(202),i=a(s);e.exports=t.default},102:function(e,t,r){"use strict";function a(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var n=r(1),o=a(n);t.default={mixins:[o.default]},e.exports=t.default},180:function(e,t){},202:function(e,t){e.exports=".THEME_NAME.md-avatar.md-primary.md-avatar-icon{background-color:PRIMARY-COLOR}.THEME_NAME.md-avatar.md-primary.md-avatar-icon .md-icon{color:PRIMARY-CONTRAST-0.99999}.THEME_NAME.md-avatar.md-accent.md-avatar-icon{background-color:ACCENT-COLOR}.THEME_NAME.md-avatar.md-accent.md-avatar-icon .md-icon{color:ACCENT-CONTRAST-0.99999}.THEME_NAME.md-avatar.md-warn.md-avatar-icon{background-color:WARN-COLOR}.THEME_NAME.md-avatar.md-warn.md-avatar-icon .md-icon{color:WARN-CONTRAST-0.99999}\n"},224:function(e,t,r){var a,n;r(180),a=r(102);var o=r(292);n=a=a||{},"object"!=typeof a.default&&"function"!=typeof a.default||(n=a=a.default),"function"==typeof n&&(n=n.options),n.render=o.render,n.staticRenderFns=o.staticRenderFns,e.exports=a},292:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",{staticClass:"md-avatar",class:[e.themeClass]},[e._t("default")],2)},staticRenderFns:[]}}})});
-//# sourceMappingURL=index.debug.js.map
\ No newline at end of file
+(function webpackUniversalModuleDefinition(root, factory) {
+ if(typeof exports === 'object' && typeof module === 'object')
+ module.exports = factory();
+ else if(typeof define === 'function' && define.amd)
+ define([], factory);
+ else if(typeof exports === 'object')
+ exports["VueMaterial"] = factory();
+ else
+ root["VueMaterial"] = factory();
+})(this, (function() {
+return /******/ (function(modules) { // webpackBootstrap
+/******/ // The module cache
+/******/ var installedModules = {};
+
+/******/ // The require function
+/******/ function __webpack_require__(moduleId) {
+
+/******/ // Check if module is in cache
+/******/ if(installedModules[moduleId])
+/******/ return installedModules[moduleId].exports;
+
+/******/ // Create a new module (and put it into the cache)
+/******/ var module = installedModules[moduleId] = {
+/******/ i: moduleId,
+/******/ l: false,
+/******/ exports: {}
+/******/ };
+
+/******/ // Execute the module function
+/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
+
+/******/ // Flag the module as loaded
+/******/ module.l = true;
+
+/******/ // Return the exports of the module
+/******/ return module.exports;
+/******/ }
+
+
+/******/ // expose the modules object (__webpack_modules__)
+/******/ __webpack_require__.m = modules;
+
+/******/ // expose the module cache
+/******/ __webpack_require__.c = installedModules;
+
+/******/ // identity function for calling harmony imports with the correct context
+/******/ __webpack_require__.i = function(value) { return value; };
+
+/******/ // define getter function for harmony exports
+/******/ __webpack_require__.d = function(exports, name, getter) {
+/******/ if(!__webpack_require__.o(exports, name)) {
+/******/ Object.defineProperty(exports, name, {
+/******/ configurable: false,
+/******/ enumerable: true,
+/******/ get: getter
+/******/ });
+/******/ }
+/******/ };
+
+/******/ // getDefaultExport function for compatibility with non-harmony modules
+/******/ __webpack_require__.n = function(module) {
+/******/ var getter = module && module.__esModule ?
+/******/ function getDefault() { return module['default']; } :
+/******/ function getModuleExports() { return module; };
+/******/ __webpack_require__.d(getter, 'a', getter);
+/******/ return getter;
+/******/ };
+
+/******/ // Object.prototype.hasOwnProperty.call
+/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
+
+/******/ // __webpack_public_path__
+/******/ __webpack_require__.p = "/";
+
+/******/ // Load entry module and return exports
+/******/ return __webpack_require__(__webpack_require__.s = 397);
+/******/ })
+/************************************************************************/
+/******/ ({
+
+/***/ 0:
+/***/ (function(module, exports) {
+
+module.exports = function normalizeComponent (
+ rawScriptExports,
+ compiledTemplate,
+ scopeId,
+ cssModules
+) {
+ var esModule
+ var scriptExports = rawScriptExports = rawScriptExports || {}
+
+ // ES6 modules interop
+ var type = typeof rawScriptExports.default
+ if (type === 'object' || type === 'function') {
+ esModule = rawScriptExports
+ scriptExports = rawScriptExports.default
+ }
+
+ // Vue.extend constructor export interop
+ var options = typeof scriptExports === 'function'
+ ? scriptExports.options
+ : scriptExports
+
+ // render functions
+ if (compiledTemplate) {
+ options.render = compiledTemplate.render
+ options.staticRenderFns = compiledTemplate.staticRenderFns
+ }
+
+ // scopedId
+ if (scopeId) {
+ options._scopeId = scopeId
+ }
+
+ // inject cssModules
+ if (cssModules) {
+ var computed = options.computed || (options.computed = {})
+ Object.keys(cssModules).forEach((function (key) {
+ var module = cssModules[key]
+ computed[key] = function () { return module }
+ }))
+ }
+
+ return {
+ esModule: esModule,
+ exports: scriptExports,
+ options: options
+ }
+}
+
+
+/***/ }),
+
+/***/ 1:
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = {
+ props: {
+ mdTheme: String
+ },
+ data: function data() {
+ return {
+ closestThemedParent: false
+ };
+ },
+ methods: {
+ getClosestThemedParent: function getClosestThemedParent($parent) {
+ if (!$parent || !$parent.$el || $parent._uid === 0) {
+ return false;
+ }
+
+ if ($parent.mdTheme || $parent.mdName) {
+ return $parent;
+ }
+
+ return this.getClosestThemedParent($parent.$parent);
+ }
+ },
+ computed: {
+ themeClass: function themeClass() {
+ if (this.mdTheme) {
+ return 'md-theme-' + this.mdTheme;
+ }
+
+ var theme = this.closestThemedParent.mdTheme;
+
+ if (!theme) {
+ if (this.closestThemedParent) {
+ theme = this.closestThemedParent.mdName;
+ } else {
+ theme = this.$material.currentTheme;
+ }
+ }
+
+ return 'md-theme-' + theme;
+ }
+ },
+ mounted: function mounted() {
+ this.closestThemedParent = this.getClosestThemedParent(this.$parent);
+
+ if (!this.$material.currentTheme) {
+ this.$material.setCurrentTheme('default');
+ }
+ }
+};
+module.exports = exports['default'];
+
+/***/ }),
+
+/***/ 131:
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+
+var _mixin = __webpack_require__(1);
+
+var _mixin2 = _interopRequireDefault(_mixin);
+
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
+
+exports.default = {
+ mixins: [_mixin2.default]
+}; //
+//
+//
+//
+//
+//
+//
+//
+
+module.exports = exports['default'];
+
+/***/ }),
+
+/***/ 215:
+/***/ (function(module, exports) {
+
+// removed by extract-text-webpack-plugin
+
+/***/ }),
+
+/***/ 233:
+/***/ (function(module, exports) {
+
+module.exports = ".THEME_NAME.md-avatar.md-primary.md-avatar-icon {\n background-color: PRIMARY-COLOR; }\n .THEME_NAME.md-avatar.md-primary.md-avatar-icon .md-icon {\n color: PRIMARY-CONTRAST-0.99999; }\n\n.THEME_NAME.md-avatar.md-accent.md-avatar-icon {\n background-color: ACCENT-COLOR; }\n .THEME_NAME.md-avatar.md-accent.md-avatar-icon .md-icon {\n color: ACCENT-CONTRAST-0.99999; }\n\n.THEME_NAME.md-avatar.md-warn.md-avatar-icon {\n background-color: WARN-COLOR; }\n .THEME_NAME.md-avatar.md-warn.md-avatar-icon .md-icon {\n color: WARN-CONTRAST-0.99999; }\n"
+
+/***/ }),
+
+/***/ 260:
+/***/ (function(module, exports, __webpack_require__) {
+
+
+/* styles */
+__webpack_require__(215)
+
+var Component = __webpack_require__(0)(
+ /* script */
+ __webpack_require__(131),
+ /* template */
+ __webpack_require__(364),
+ /* scopeId */
+ null,
+ /* cssModules */
+ null
+)
+Component.options.__file = "/Users/mrufino/Projects/personal/github/vue-material/src/components/mdAvatar/mdAvatar.vue"
+if (Component.esModule && Object.keys(Component.esModule).some((function (key) {return key !== "default" && key !== "__esModule"}))) {console.error("named exports are not supported in *.vue files.")}
+if (Component.options.functional) {console.error("[vue-loader] mdAvatar.vue: functional components are not supported with templates, they should use render functions.")}
+
+/* hot reload */
+if (false) {(function () {
+ var hotAPI = require("vue-hot-reload-api")
+ hotAPI.install(require("vue"), false)
+ if (!hotAPI.compatible) return
+ module.hot.accept()
+ if (!module.hot.data) {
+ hotAPI.createRecord("data-v-4fb5ecf8", Component.options)
+ } else {
+ hotAPI.reload("data-v-4fb5ecf8", Component.options)
+ }
+})()}
+
+module.exports = Component.exports
+
+
+/***/ }),
+
+/***/ 364:
+/***/ (function(module, exports, __webpack_require__) {
+
+module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;
+ return _c('div', {
+ staticClass: "md-avatar",
+ class: [_vm.themeClass]
+ }, [_vm._t("default")], 2)
+},staticRenderFns: []}
+module.exports.render._withStripped = true
+if (false) {
+ module.hot.accept()
+ if (module.hot.data) {
+ require("vue-hot-reload-api").rerender("data-v-4fb5ecf8", module.exports)
+ }
+}
+
+/***/ }),
+
+/***/ 397:
+/***/ (function(module, exports, __webpack_require__) {
+
+module.exports = __webpack_require__(90);
+
+
+/***/ }),
+
+/***/ 90:
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = install;
+
+var _mdAvatar = __webpack_require__(260);
+
+var _mdAvatar2 = _interopRequireDefault(_mdAvatar);
+
+var _mdAvatar3 = __webpack_require__(233);
+
+var _mdAvatar4 = _interopRequireDefault(_mdAvatar3);
+
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
+
+function install(Vue) {
+ Vue.component('md-avatar', _mdAvatar2.default);
+
+ Vue.material.styles.push(_mdAvatar4.default);
+}
+module.exports = exports['default'];
+
+/***/ })
+
+/******/ });
+}));
\ No newline at end of file
diff --git a/dist/components/mdAvatar/index.debug.js.map b/dist/components/mdAvatar/index.debug.js.map
deleted file mode 100644
index 854c5ab..0000000
--- a/dist/components/mdAvatar/index.debug.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["webpack:///webpack/universalModuleDefinition?5ca6*********************","webpack:///components/mdAvatar/index.debug.js","webpack:///webpack/bootstrap c05fcff1b8f3724fbaaf?c8fd*********************","webpack:///./src/core/components/mdTheme/mixin.js?4fd6******************","webpack:///./src/components/mdAvatar/index.js?4719","webpack:///mdAvatar.vue?d361","webpack:///./src/components/mdAvatar/mdAvatar.theme?4118","webpack:///./src/components/mdAvatar/mdAvatar.vue?6109","webpack:///./src/components/mdAvatar/mdAvatar.vue?5b46*"],"names":["root","factory","exports","module","define","amd","this","modules","__webpack_require__","moduleId","installedModules","id","loaded","call","m","c","p","0","1","Object","defineProperty","value","default","props","mdTheme","String","data","closestThemedParent","methods","getClosestThemedParent","$parent","$el","_uid","mdName","computed","themeClass","theme","$material","currentTheme","mounted","setCurrentTheme","70","_interopRequireDefault","obj","__esModule","install","Vue","component","extend","_mdAvatar2","material","styles","push","_mdAvatar4","_mdAvatar","_mdAvatar3","102","_mixin","_mixin2","mixins","180","202","224","__vue_exports__","__vue_options__","__vue_template__","options","render","staticRenderFns","292","_vm","_h","$createElement","_c","_self","staticClass","class","_t"],"mappings":"CAAA,SAAAA,EAAAC,GACA,gBAAAC,UAAA,gBAAAC,QACAA,OAAAD,QAAAD,IACA,kBAAAG,gBAAAC,IACAD,UAAAH,GACA,gBAAAC,SACAA,QAAA,YAAAD,IAEAD,EAAA,YAAAC,KACCK,KAAA,WACD,MCAgB,UAAUC,GCN1B,QAAAC,GAAAC,GAGA,GAAAC,EAAAD,GACA,MAAAC,GAAAD,GAAAP,OAGA,IAAAC,GAAAO,EAAAD,IACAP,WACAS,GAAAF,EACAG,QAAA,EAUA,OANAL,GAAAE,GAAAI,KAAAV,EAAAD,QAAAC,IAAAD,QAAAM,GAGAL,EAAAS,QAAA,EAGAT,EAAAD,QAvBA,GAAAQ,KAqCA,OATAF,GAAAM,EAAAP,EAGAC,EAAAO,EAAAL,EAGAF,EAAAQ,EAAA,IAGAR,EAAA,KDgBMS,EACA,SAASd,EAAQD,EAASM,GAE/BL,EAAOD,QAAUM,EAAoB,KAKhCU,EACA,SAASf,EAAQD,GAEtB,YAEAiB,QAAOC,eAAelB,EAAS,cAC7BmB,OAAO,IAETnB,EAAQoB,SErEPC,OACEC,QAASC,QAEXC,KAAM,kBACJC,qBAAqB,IAEvBC,SACEC,uBADO,SACgBC,GACrB,SAAKA,IAAYA,EAAQC,KAAwB,IAAjBD,EAAQE,QAIpCF,EAAQN,SAAWM,EAAQG,OACtBH,EAGFxB,KAAKuB,uBAAuBC,EAAQA,YAG/CI,UACEC,WADQ,WAEN,GAAI7B,KAAKkB,QACP,MAAO,YAAclB,KAAKkB,OAG5B,IAAIY,GAAQ9B,KAAKqB,oBAAoBH,OAUrC,OARKY,KAEDA,EADE9B,KAAKqB,oBACCrB,KAAKqB,oBAAoBM,OAEzB3B,KAAK+B,UAAUC,cAIpB,YAAcF,IAGzBG,QAvCa,WAwCXjC,KAAKqB,oBAAsBrB,KAAKuB,uBAAuBvB,KAAKwB,SAEvDxB,KAAK+B,UAAUC,cAClBhC,KAAK+B,UAAUG,gBAAgB,aF4EpCrC,EAAOD,QAAUA,EAAiB,SAI7BuC,GACA,SAAStC,EAAQD,EAASM,GAE/B,YAeA,SAASkC,GAAuBC,GAAO,MAAOA,IAAOA,EAAIC,WAAaD,GAAQrB,QAASqB,GG1IzE,QAASE,GAAQC,GAC9BA,EAAIC,UAAU,YAAaD,EAAIE,OAAJC,EAAA3B,UAE3BwB,EAAII,SAASC,OAAOC,KAApBC,EAAA/B,SH0HDH,OAAOC,eAAelB,EAAS,cAC7BmB,OAAO,IAETnB,EAAQoB,QGhIeuB,CAHxB,IAAAS,GAAA9C,EAAA,KHuIKyC,EAAaP,EAAuBY,GGtIzCC,EAAA/C,EAAA,KH0IK6C,EAAaX,EAAuBa,EASxCpD,GAAOD,QAAUA,EAAiB,SAI7BsD,IACA,SAASrD,EAAQD,EAASM,GAE/B,YAUA,SAASkC,GAAuBC,GAAO,MAAOA,IAAOA,EAAIC,WAAaD,GAAQrB,QAASqB,GARvFxB,OAAOC,eAAelB,EAAS,cAC7BmB,OAAO,GInJV,IAAAoC,GAAAjD,EAAA,GJwJKkD,EAAUhB,EAAuBe,EAIrCvD,GAAQoB,SACNqC,QI3JHD,EAAApC,UJqKCnB,EAAOD,QAAUA,EAAiB,SAI7B0D,IACA,SAASzD,EAAQD,KAMjB2D,IACA,SAAS1D,EAAQD,GK9LvBC,EAAAD,QAAA,2eLoMM4D,IACA,SAAS3D,EAAQD,EAASM,GMrMhC,GAAAuD,GAAAC,CAIAxD,GAAA,KAGAuD,EAAAvD,EAAA,IAGA,IAAAyD,GAAAzD,EAAA,IACAwD,GAAAD,QAEA,gBAAAA,GAAAzC,SACA,kBAAAyC,GAAAzC,UAEA0C,EAAAD,IAAAzC,SAEA,kBAAA0C,KACAA,IAAAE,SAGAF,EAAAG,OAAAF,EAAAE,OACAH,EAAAI,gBAAAH,EAAAG,gBAEAjE,EAAAD,QAAA6D,GN4MMM,IACA,SAASlE,EAAQD,GOtOvBC,EAAAD,SAAgBiE,OAAA,WAAmB,GAAAG,GAAAhE,KAAaiE,EAAAD,EAAAE,eAA0BC,EAAAH,EAAAI,MAAAD,IAAAF,CAC1E,OAAAE,GAAA,OACAE,YAAA,YACAC,OAAAN,EAAAnC,cACGmC,EAAAO,GAAA,gBACFT","file":"components/mdAvatar/index.debug.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"VueMaterial\"] = factory();\n\telse\n\t\troot[\"VueMaterial\"] = factory();\n})(this, function() {\nreturn \n\n\n// WEBPACK FOOTER //\n// webpack/universalModuleDefinition","(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"VueMaterial\"] = factory();\n\telse\n\t\troot[\"VueMaterial\"] = factory();\n})(this, function() {\nreturn /******/ (function(modules) { // webpackBootstrap\n/******/ \t// The module cache\n/******/ \tvar installedModules = {};\n/******/\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n/******/\n/******/ \t\t// Check if module is in cache\n/******/ \t\tif(installedModules[moduleId])\n/******/ \t\t\treturn installedModules[moduleId].exports;\n/******/\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = installedModules[moduleId] = {\n/******/ \t\t\texports: {},\n/******/ \t\t\tid: moduleId,\n/******/ \t\t\tloaded: false\n/******/ \t\t};\n/******/\n/******/ \t\t// Execute the module function\n/******/ \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n/******/\n/******/ \t\t// Flag the module as loaded\n/******/ \t\tmodule.loaded = true;\n/******/\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n/******/\n/******/\n/******/ \t// expose the modules object (__webpack_modules__)\n/******/ \t__webpack_require__.m = modules;\n/******/\n/******/ \t// expose the module cache\n/******/ \t__webpack_require__.c = installedModules;\n/******/\n/******/ \t// __webpack_public_path__\n/******/ \t__webpack_require__.p = \"/\";\n/******/\n/******/ \t// Load entry module and return exports\n/******/ \treturn __webpack_require__(0);\n/******/ })\n/************************************************************************/\n/******/ ({\n\n/***/ 0:\n/***/ function(module, exports, __webpack_require__) {\n\n\tmodule.exports = __webpack_require__(70);\n\n\n/***/ },\n\n/***/ 1:\n/***/ function(module, exports) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\texports.default = {\n\t props: {\n\t mdTheme: String\n\t },\n\t data: function data() {\n\t return {\n\t closestThemedParent: false\n\t };\n\t },\n\t methods: {\n\t getClosestThemedParent: function getClosestThemedParent($parent) {\n\t if (!$parent || !$parent.$el || $parent._uid === 0) {\n\t return false;\n\t }\n\t\n\t if ($parent.mdTheme || $parent.mdName) {\n\t return $parent;\n\t }\n\t\n\t return this.getClosestThemedParent($parent.$parent);\n\t }\n\t },\n\t computed: {\n\t themeClass: function themeClass() {\n\t if (this.mdTheme) {\n\t return 'md-theme-' + this.mdTheme;\n\t }\n\t\n\t var theme = this.closestThemedParent.mdTheme;\n\t\n\t if (!theme) {\n\t if (this.closestThemedParent) {\n\t theme = this.closestThemedParent.mdName;\n\t } else {\n\t theme = this.$material.currentTheme;\n\t }\n\t }\n\t\n\t return 'md-theme-' + theme;\n\t }\n\t },\n\t mounted: function mounted() {\n\t this.closestThemedParent = this.getClosestThemedParent(this.$parent);\n\t\n\t if (!this.$material.currentTheme) {\n\t this.$material.setCurrentTheme('default');\n\t }\n\t }\n\t};\n\tmodule.exports = exports['default'];\n\n/***/ },\n\n/***/ 70:\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\texports.default = install;\n\t\n\tvar _mdAvatar = __webpack_require__(224);\n\t\n\tvar _mdAvatar2 = _interopRequireDefault(_mdAvatar);\n\t\n\tvar _mdAvatar3 = __webpack_require__(202);\n\t\n\tvar _mdAvatar4 = _interopRequireDefault(_mdAvatar3);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction install(Vue) {\n\t Vue.component('md-avatar', Vue.extend(_mdAvatar2.default));\n\t\n\t Vue.material.styles.push(_mdAvatar4.default);\n\t}\n\tmodule.exports = exports['default'];\n\n/***/ },\n\n/***/ 102:\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _mixin = __webpack_require__(1);\n\t\n\tvar _mixin2 = _interopRequireDefault(_mixin);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\texports.default = {\n\t mixins: [_mixin2.default]\n\t}; //\n\t//\n\t//\n\t//\n\t//\n\t//\n\t//\n\t//\n\n\tmodule.exports = exports['default'];\n\n/***/ },\n\n/***/ 180:\n/***/ function(module, exports) {\n\n\t// removed by extract-text-webpack-plugin\n\n/***/ },\n\n/***/ 202:\n/***/ function(module, exports) {\n\n\tmodule.exports = \".THEME_NAME.md-avatar.md-primary.md-avatar-icon{background-color:PRIMARY-COLOR}.THEME_NAME.md-avatar.md-primary.md-avatar-icon .md-icon{color:PRIMARY-CONTRAST-0.99999}.THEME_NAME.md-avatar.md-accent.md-avatar-icon{background-color:ACCENT-COLOR}.THEME_NAME.md-avatar.md-accent.md-avatar-icon .md-icon{color:ACCENT-CONTRAST-0.99999}.THEME_NAME.md-avatar.md-warn.md-avatar-icon{background-color:WARN-COLOR}.THEME_NAME.md-avatar.md-warn.md-avatar-icon .md-icon{color:WARN-CONTRAST-0.99999}\\n\"\n\n/***/ },\n\n/***/ 224:\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar __vue_exports__, __vue_options__\n\tvar __vue_styles__ = {}\n\t\n\t/* styles */\n\t__webpack_require__(180)\n\t\n\t/* script */\n\t__vue_exports__ = __webpack_require__(102)\n\t\n\t/* template */\n\tvar __vue_template__ = __webpack_require__(292)\n\t__vue_options__ = __vue_exports__ = __vue_exports__ || {}\n\tif (\n\t typeof __vue_exports__.default === \"object\" ||\n\t typeof __vue_exports__.default === \"function\"\n\t) {\n\t__vue_options__ = __vue_exports__ = __vue_exports__.default\n\t}\n\tif (typeof __vue_options__ === \"function\") {\n\t __vue_options__ = __vue_options__.options\n\t}\n\t\n\t__vue_options__.render = __vue_template__.render\n\t__vue_options__.staticRenderFns = __vue_template__.staticRenderFns\n\t\n\tmodule.exports = __vue_exports__\n\n\n/***/ },\n\n/***/ 292:\n/***/ function(module, exports) {\n\n\tmodule.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;\n\t return _c('div', {\n\t staticClass: \"md-avatar\",\n\t class: [_vm.themeClass]\n\t }, [_vm._t(\"default\")], 2)\n\t},staticRenderFns: []}\n\n/***/ }\n\n/******/ })\n});\n;\n\n\n// WEBPACK FOOTER //\n// components/mdAvatar/index.debug.js"," \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId])\n \t\t\treturn installedModules[moduleId].exports;\n\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\texports: {},\n \t\t\tid: moduleId,\n \t\t\tloaded: false\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.loaded = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/\";\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(0);\n\n\n\n// WEBPACK FOOTER //\n// webpack/bootstrap c05fcff1b8f3724fbaaf","export default {\n props: {\n mdTheme: String\n },\n data: () => ({\n closestThemedParent: false\n }),\n methods: {\n getClosestThemedParent($parent) {\n if (!$parent || !$parent.$el || $parent._uid === 0) {\n return false;\n }\n\n if ($parent.mdTheme || $parent.mdName) {\n return $parent;\n }\n\n return this.getClosestThemedParent($parent.$parent);\n }\n },\n computed: {\n themeClass() {\n if (this.mdTheme) {\n return 'md-theme-' + this.mdTheme;\n }\n\n let theme = this.closestThemedParent.mdTheme;\n\n if (!theme) {\n if (this.closestThemedParent) {\n theme = this.closestThemedParent.mdName;\n } else {\n theme = this.$material.currentTheme;\n }\n }\n\n return 'md-theme-' + theme;\n }\n },\n mounted() {\n this.closestThemedParent = this.getClosestThemedParent(this.$parent);\n\n if (!this.$material.currentTheme) {\n this.$material.setCurrentTheme('default');\n }\n }\n};\n\n\n\n// WEBPACK FOOTER //\n// ./src/core/components/mdTheme/mixin.js","import mdAvatar from './mdAvatar.vue';\nimport mdAvatarTheme from './mdAvatar.theme';\n\nexport default function install(Vue) {\n Vue.component('md-avatar', Vue.extend(mdAvatar));\n\n Vue.material.styles.push(mdAvatarTheme);\n}\n\n\n\n// WEBPACK FOOTER //\n// ./src/components/mdAvatar/index.js","\n
More responsive and fluid experience on mobile devices. (Thanks to @igor-ribeiro)
+
+
+
+
Support to Theme Color on Android
+
Change the browser window color inside Chrome for Android based on the current theme.
+
+
+
+
Breaking changes:
+
+
+
To avoid issues and conflicts between multiple events on buttons and other "clickable" components the internal @click event don't work anymore. Use @click.native instead.
+
+
+
+
Only for contributors: To build Vue Material is now needed to upgrade all dependencies. Vue Material uses Webpack 2 under the hood and all dependencies were bumped to the latest.
+
+
+
+
Fixes:
+
+
check for null parent elements in mdInkRipple #313 (Thanks to @korylprince)
+
update the number of rows if the data set changes on mdTable #320 (Thanks to @pablohpsilva)
+
disable pointer events on snackbar container #327 (Thanks to @korylprince)
+
allow null value to be passed to parent of md-select #338 (Thanks to @korylprince)
+
fix textarea autosize on initial value #341 (Thanks to @korylprince)
+
fix char counter not updating after model change #384
+
prevent parent forms from submitting when adding chips #383
+
prevent body from scroll on dialogs and menus #373
+
fix error message not moving down on textarea #362
\n ')]),e._v(" "),t("code-block",{attrs:{lang:"xml"}},[e._v("\n export default {\n data: () => ({\n src: null\n }),\n methods: {\n loadImage() {\n let options = [\n 'assets/joker-1.jpg',\n 'assets/joker-2.jpg',\n 'assets/joker-3.jpg',\n 'assets/card-image-1.jpg',\n 'assets/card-image-2.jpg'\n ];\n\n this.src = options[Math.floor(Math.random() * 5)];\n },\n clearImage() {\n this.src = null;\n }\n }\n };\n ")])],1)])],1)])],1)},staticRenderFns:[]}}});
\ No newline at end of file
diff --git a/dist/docs/index.html b/dist/docs/index.html
index 4079d98..98fdf0d 100644
--- a/dist/docs/index.html
+++ b/dist/docs/index.html
@@ -1 +1 @@
-Vue Material
\ No newline at end of file
+Vue Material
\ No newline at end of file
diff --git a/dist/docs/ink-ripple.2e814707.js b/dist/docs/ink-ripple.2e814707.js
new file mode 100644
index 0000000..49cabb7
--- /dev/null
+++ b/dist/docs/ink-ripple.2e814707.js
@@ -0,0 +1 @@
+webpackJsonp([15,34],{474:function(e,n,i){i(607);var a=i(0)(null,i(576),"data-v-9d2ca598",null);e.exports=a.exports},539:function(e,n,i){n=e.exports=i(4)(),n.push([e.i,".has-ripple[data-v-9d2ca598]{margin-bottom:16px;padding:20px;display:inline-block;position:relative}.blue[data-v-9d2ca598]{color:#2196f3}.purple[data-v-9d2ca598]{color:#9c27b0}.red[data-v-9d2ca598]{color:#f44336}.card-ripple[data-v-9d2ca598]{width:300px;margin-top:24px}",""])},576:function(e,n){e.exports={render:function(){var e=this,n=e.$createElement,i=e._self._c||n;return i("page-content",{attrs:{"page-title":"Components - Ink Ripple"}},[i("docs-component",[i("div",{slot:"description"},[i("p",[e._v("Ink ripples confirm user input by immediately expanding outward from the point of touch. The card lifts to indicate an active state.")]),e._v(" "),i("p",[e._v("To disable the ripple component globally just call the API: ")]),e._v(" "),i("code-block",{attrs:{lang:"javascript"}},[e._v("\n // Anywhere\n Vue.material.inkRipple = false\n\n // Inside a Vue Intance\n this.$material.inkRipple = false\n ")])],1),e._v(" "),i("div",{slot:"api"},[i("api-table",{attrs:{name:"md-ink-ripple"}},[i("md-table",{slot:"properties"},[i("md-table-header",[i("md-table-row",[i("md-table-head",[e._v("Name")]),e._v(" "),i("md-table-head",[e._v("Type")]),e._v(" "),i("md-table-head",[e._v("Description")])],1)],1),e._v(" "),i("md-table-body",[i("md-table-row",[i("md-table-cell",[e._v("md-disabled")]),e._v(" "),i("md-table-cell",[i("code",[e._v("Boolean")])]),e._v(" "),i("md-table-cell",[e._v("Disable the ripple effect on the parent element. Default "),i("code",[e._v("false")])])],1)],1)],1)],1)],1),e._v(" "),i("div",{slot:"example"},[i("example-box",{attrs:{"card-title":"Default"}},[i("div",{slot:"demo"},[i("div",{staticClass:"has-ripple"},[i("md-ink-ripple"),e._v("\n This div has ripple effect\n ")],1),e._v(" "),i("div",{staticClass:"has-ripple purple"},[i("md-ink-ripple"),e._v("\n This div has ripple effect\n ")],1),e._v(" "),i("div",{staticClass:"has-ripple blue"},[i("md-ink-ripple"),e._v("\n This div has ripple effect\n ")],1),e._v(" "),i("div",{staticClass:"has-ripple red"},[i("md-ink-ripple"),e._v("\n This div has ripple effect\n ")],1),e._v(" "),i("md-card",{staticClass:"card-ripple",attrs:{"md-with-hover":""}},[i("md-card-media",[i("md-ink-ripple"),e._v(" "),i("img",{attrs:{src:"assets/card-image-1.jpg",alt:"People"}})],1),e._v(" "),i("md-card-actions",[i("md-button",{staticClass:"md-icon-button"},[i("md-icon",[e._v("favorite")])],1),e._v(" "),i("md-button",{staticClass:"md-icon-button"},[i("md-icon",[e._v("bookmark")])],1),e._v(" "),i("md-button",{staticClass:"md-icon-button"},[i("md-icon",[e._v("share")])],1)],1)],1)],1),e._v(" "),i("div",{slot:"code"},[i("code-block",{attrs:{lang:"xml"}},[e._v('\n
\n \n This div has ripple effect\n
\n\n
\n \n This div has ripple effect\n
\n\n
\n \n This div has ripple effect\n
\n\n
\n \n This div has ripple effect\n
\n\n \n \n \n \n \n\n \n \n favorite\n \n\n \n bookmark\n \n\n \n share\n \n \n \n ')]),e._v(" "),i("code-block",{attrs:{lang:"sass"}},[e._v("\n .has-ripple {\n margin-bottom: 16px;\n padding: 20px;\n display: inline-block;\n position: relative;\n }\n\n .blue {\n color: #2196F3;\n }\n\n .purple {\n color: #9C27B0;\n }\n\n .red {\n color: #F44336;\n }\n\n .card-ripple {\n width: 300px;\n margin-top: 24px;\n }\n ")])],1)])],1)])],1)},staticRenderFns:[]}},607:function(e,n,i){var a=i(539);"string"==typeof a&&(a=[[e.i,a,""]]),a.locals&&(e.exports=a.locals);i(5)("3123897f",a,!0)}});
\ No newline at end of file
diff --git a/dist/docs/input.76e80edc.js b/dist/docs/input.76e80edc.js
new file mode 100644
index 0000000..199a2db
--- /dev/null
+++ b/dist/docs/input.76e80edc.js
@@ -0,0 +1 @@
+webpackJsonp([10,34],{475:function(e,t,a){a(599);var n=a(0)(a(504),a(565),"data-v-53f2ef70",null);e.exports=n.exports},504:function(e,t,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={data:function(){return{initialValue:"My initial value"}}},e.exports=t.default},531:function(e,t,a){t=e.exports=a(4)(),t.push([e.i,"",""])},565:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("page-content",{attrs:{"page-title":"Components - Input"}},[a("docs-component",[a("div",{slot:"description"},[a("p",[e._v("Inputs allow users to input text and usually appear in forms. Users may enter text, numbers, or mixed-format types of input.")])]),e._v(" "),a("div",{slot:"api"},[a("api-table",{attrs:{name:"md-input-container"}},[a("md-table",{slot:"properties"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("md-inline")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Create inline field with a label or placeholder. Default "),a("code",[e._v("false")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("md-has-password")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Show a button to toggle the password visibility. Default "),a("code",[e._v("false")])])],1)],1)],1),e._v(" "),a("md-table",{slot:"classes"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("md-input-invalid")]),e._v(" "),a("md-table-cell",[e._v("Set the error class")])],1)],1)],1)],1),e._v(" "),a("api-table",{attrs:{name:"md-input"}},[a("md-table",{slot:"properties"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("v-model")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("A required model object to bind the value.")])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("type")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("Sets the type. Default "),a("code",[e._v("text")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("disabled")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Disable the input and prevent his actions. Default "),a("code",[e._v("false")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("required")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v('Apply the required rule to style the label with an "*". Default '),a("code",[e._v("false")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("placeholder")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("Sets the placeholder.")])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("maxlength")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Number")])]),e._v(" "),a("md-table-cell",[e._v("Sets the maxlength and enable the text counter.")])],1)],1)],1)],1),e._v(" "),a("api-table",{attrs:{name:"md-textarea"}},[a("md-table",{slot:"properties"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("v-model")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("A required model object to bind the value.")])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("disabled")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Disable the textarea and prevent his actions. Default "),a("code",[e._v("false")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("required")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v('Apply the required rule to style the label with an "*". Default '),a("code",[e._v("false")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("placeholder")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("Sets the placeholder.")])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("maxlength")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Number")])]),e._v(" "),a("md-table-cell",[e._v("Sets the maxlength and enable the text counter.")])],1)],1)],1)],1)],1),e._v(" "),a("div",{slot:"example"},[a("example-box",{attrs:{"card-title":"Regular fields"}},[a("div",{slot:"demo"},[a("form",{attrs:{novalidate:""},on:{submit:function(t){t.stopPropagation(),t.preventDefault(),e.submit(t)}}},[a("md-input-container",[a("label",[e._v("Initial value")]),e._v(" "),a("md-input",{directives:[{name:"model",rawName:"v-model",value:e.initialValue,expression:"initialValue"}],domProps:{value:e.initialValue},on:{input:function(t){e.initialValue=t}}})],1),e._v(" "),a("md-input-container",[a("label",[e._v("With label")]),e._v(" "),a("md-input",{attrs:{placeholder:"My nice placeholder"}})],1),e._v(" "),a("md-input-container",{attrs:{"md-inline":""}},[a("label",[e._v("Inline field")]),e._v(" "),a("md-input")],1),e._v(" "),a("md-input-container",[a("label",[e._v("Number")]),e._v(" "),a("md-input",{attrs:{type:"number"}})],1),e._v(" "),a("md-input-container",[a("label",[e._v("Textarea")]),e._v(" "),a("md-textarea")],1),e._v(" "),a("md-input-container",[a("label",[e._v("Disabled")]),e._v(" "),a("md-input",{attrs:{disabled:""}})],1)],1)]),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n ')]),e._v(" "),a("code-block",{attrs:{lang:"javascript"}},[e._v("\n export default {\n data() {\n return {\n initialValue: 'My initial value'\n };\n }\n };\n ")])],1)]),e._v(" "),a("example-box",{attrs:{"card-title":"Passwords"}},[a("div",{slot:"demo"},[a("form",{attrs:{novalidate:""},on:{submit:function(t){t.stopPropagation(),t.preventDefault(),e.submit(t)}}},[a("md-input-container",[a("label",[e._v("Regular Password")]),e._v(" "),a("md-input",{attrs:{type:"password"}})],1),e._v(" "),a("md-input-container",{attrs:{"md-has-password":""}},[a("label",[e._v("Password Reveal")]),e._v(" "),a("md-input",{attrs:{type:"password"}})],1)],1)]),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n ')])],1)]),e._v(" "),a("example-box",{attrs:{"card-title":"Icons"}},[a("div",{slot:"demo"},[a("form",{attrs:{novalidate:""},on:{submit:function(t){t.stopPropagation(),t.preventDefault(),e.submit(t)}}},[a("md-input-container",[a("md-icon",{staticClass:"md-warn"},[e._v("\n warning\n "),a("md-tooltip",[e._v("Be careful. You're almost broken!")])],1),e._v(" "),a("label",[e._v("Money")]),e._v(" "),a("md-input",{attrs:{type:"number"}}),e._v(" "),a("md-icon",[e._v("attach_money")])],1),e._v(" "),a("md-input-container",[a("md-icon",[e._v("phone")]),e._v(" "),a("label",[e._v("Phone")]),e._v(" "),a("md-input",{attrs:{type:"tel"}})],1),e._v(" "),a("md-input-container",[a("md-icon",[e._v("speaker_notes")]),e._v(" "),a("label",[e._v("Notes")]),e._v(" "),a("md-textarea")],1)],1)]),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n ')])],1)]),e._v(" "),a("example-box",{attrs:{"card-title":"Required and Errors"}},[a("div",{slot:"demo"},[a("form",{attrs:{novalidate:""},on:{submit:function(t){t.stopPropagation(),t.preventDefault(),e.submit(t)}}},[a("md-input-container",[a("label",[e._v("Required")]),e._v(" "),a("md-input",{attrs:{required:""}})],1),e._v(" "),a("md-input-container",{staticClass:"md-input-invalid"},[a("label",[e._v("Error")]),e._v(" "),a("md-input",{attrs:{required:""}})],1),e._v(" "),a("md-input-container",{staticClass:"md-input-invalid"},[a("label",[e._v("Error with message")]),e._v(" "),a("md-input",{attrs:{required:""}}),e._v(" "),a("span",{staticClass:"md-error"},[e._v("Validation message")])],1),e._v(" "),a("md-input-container",{staticClass:"md-input-invalid"},[a("label",[e._v("Textarea with error")]),e._v(" "),a("md-textarea"),e._v(" "),a("span",{staticClass:"md-error"},[e._v("Textarea validation message")])],1)],1)]),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n ')])],1)]),e._v(" "),a("example-box",{attrs:{"card-title":"Character counter"}},[a("div",{slot:"demo"},[a("form",{attrs:{novalidate:""},on:{submit:function(t){t.stopPropagation(),t.preventDefault(),e.submit(t)}}},[a("md-input-container",[a("label",[e._v("Textarea")]),e._v(" "),a("md-textarea",{attrs:{maxlength:"70"}})],1),e._v(" "),a("md-input-container",[a("label",[e._v("Input")]),e._v(" "),a("md-input",{attrs:{maxlength:"20"}})],1)],1)]),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n ')])],1)]),e._v(" "),a("example-box",{attrs:{"card-title":"Themes"}},[a("div",{slot:"demo"},[a("form",{attrs:{novalidate:""},on:{submit:function(t){t.stopPropagation(),t.preventDefault(),e.submit(t)}}},[a("md-input-container",{attrs:{"md-theme":"green"}},[a("label",[e._v("Green - Input")]),e._v(" "),a("md-input")],1),e._v(" "),a("md-input-container",{attrs:{"md-theme":"red"}},[a("label",[e._v("Red - Textarea")]),e._v(" "),a("md-textarea")],1)],1)]),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n ')])],1)])],1)])],1)},staticRenderFns:[]}},599:function(e,t,a){var n=a(531);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);a(5)("637efd80",n,!0)}});
\ No newline at end of file
diff --git a/dist/docs/list.93bce61c.js b/dist/docs/list.93bce61c.js
new file mode 100644
index 0000000..aa54c08
--- /dev/null
+++ b/dist/docs/list.93bce61c.js
@@ -0,0 +1,2 @@
+webpackJsonp([9,34],{476:function(t,i,s){s(595);var n=s(0)(s(505),s(559),"data-v-3afd7c90",null);t.exports=n.exports},505:function(t,i,s){"use strict";Object.defineProperty(i,"__esModule",{value:!0}),i.default={methods:{openAlert:function(){window.alert("...")}}},t.exports=i.default},527:function(t,i,s){i=t.exports=s(4)(),i.push([t.i,".phone-viewport[data-v-3afd7c90]{height:480px}.custom-list .md-icon[data-v-3afd7c90]:not(.md-primary){color:rgba(0,0,0,.26)}",""])},559:function(t,i){t.exports={render:function(){var t=this,i=t.$createElement,s=t._self._c||i;return s("page-content",{attrs:{"page-title":"Components - List"}},[s("docs-component",[s("div",{slot:"description"},[s("p",[t._v("Lists are best suited to presenting a homogeneous data type or sets of data types, such as images and text. They are optimized for reading comprehension while differentiating either between similar data types, or qualities within a single data type.")]),t._v(" "),s("p",[t._v("The "),s("code",[t._v("md-list")]),t._v(" component have some auxiliary classes to align content and display actions. All of them can be any HTML tag:")]),t._v(" "),s("ul",[s("li",[s("code",[t._v(".md-list-action")]),t._v(": Used to display a action on the right side of a list item. Commonly used to display a button with a single action.")]),t._v(" "),s("li",[s("code",[t._v(".md-list-text-container")]),t._v(": Used to align text horizontally with icons and actions. Used in double and triple lines.")]),t._v(" "),s("li",[s("code",[t._v(".md-divider")]),t._v(": Add a horizontal line between list items.")])])]),t._v(" "),s("div",{slot:"api"},[s("api-table",{attrs:{name:"md-list"}},[s("md-table",{slot:"classes"},[s("md-table-header",[s("md-table-row",[s("md-table-head",[t._v("Name")]),t._v(" "),s("md-table-head",[t._v("Description")])],1)],1),t._v(" "),s("md-table-body",[s("md-table-row",[s("md-table-cell",[t._v("md-dense")]),t._v(" "),s("md-table-cell",[t._v("Make the list dense and compact")])],1),t._v(" "),s("md-table-row",[s("md-table-cell",[t._v("md-double-line")]),t._v(" "),s("md-table-cell",[t._v("Make list items to support double line")])],1),t._v(" "),s("md-table-row",[s("md-table-cell",[t._v("md-triple-line")]),t._v(" "),s("md-table-cell",[t._v("Make list items to support triple line")])],1)],1)],1)],1),t._v(" "),s("api-table",{attrs:{name:"md-list-item"}},[s("p",[t._v("Display a single item inside lists")]),t._v(" "),s("md-table",{slot:"properties"},[s("md-table-header",[s("md-table-row",[s("md-table-head",[t._v("Name")]),t._v(" "),s("md-table-head",[t._v("Type")]),t._v(" "),s("md-table-head",[t._v("Description")])],1)],1),t._v(" "),s("md-table-body",[s("md-table-row",[s("md-table-cell",[t._v("href")]),t._v(" "),s("md-table-cell",[s("code",[t._v("String")])]),t._v(" "),s("md-table-cell",[t._v("The link that the item should redirect to.")])],1),t._v(" "),s("md-table-row",[s("md-table-cell",[t._v("target")]),t._v(" "),s("md-table-cell",[s("code",[t._v("String")])]),t._v(" "),s("md-table-cell",[t._v("The target for opening the href link. Normally used for "),s("code",[t._v("_blank")]),t._v(" cases.")])],1),t._v(" "),s("md-table-row",[s("md-table-cell",[t._v("disabled")]),t._v(" "),s("md-table-cell",[s("code",[t._v("Boolean")])]),t._v(" "),s("md-table-cell",[t._v("Disable the item and prevent his actions. Default "),s("code",[t._v("false")])])],1),t._v(" "),s("md-table-row",[s("md-table-cell",[t._v("md-expand-multiple")]),t._v(" "),s("md-table-cell",[s("code",[t._v("Boolean")])]),t._v(" "),s("md-table-cell",[t._v("Allow multiple items be expanded in same time in md-list. Default "),s("code",[t._v("false")])])],1)],1)],1),t._v(" "),s("md-table",{slot:"classes"},[s("md-table-header",[s("md-table-row",[s("md-table-head",[t._v("Name")]),t._v(" "),s("md-table-head",[t._v("Description")])],1)],1),t._v(" "),s("md-table-body",[s("md-table-row",[s("md-table-cell",[t._v("md-inset")]),t._v(" "),s("md-table-cell",[t._v("Add an empty space on the left of the table. "),s("br"),t._v("Useful to show list items without icons aligned with another that have an icon.")])],1)],1)],1)],1),t._v(" "),s("api-table",{attrs:{name:"md-list-expand"}},[s("p",[t._v("Create a expansion accordion automatically inside lists")]),t._v(" "),s("p",[t._v("No options available")])])],1),t._v(" "),s("div",{slot:"example"},[s("example-box",{attrs:{"card-title":"Single Line"}},[s("div",{slot:"demo"},[s("div",{staticClass:"phone-viewport"},[s("md-list",[s("md-list-item",[s("md-icon",[t._v("move_to_inbox")]),t._v(" "),s("span",[t._v("Inbox")])],1),t._v(" "),s("md-list-item",[s("md-icon",[t._v("send")]),t._v(" "),s("span",[t._v("Sent Mail")])],1),t._v(" "),s("md-list-item",[s("md-icon",[t._v("delete")]),t._v(" "),s("span",[t._v("Trash")])],1),t._v(" "),s("md-list-item",[s("md-icon",[t._v("error")]),t._v(" "),s("span",[t._v("Spam")]),t._v(" "),s("md-divider",{staticClass:"md-inset"})],1),t._v(" "),s("md-list-item",[s("md-avatar",[s("img",{attrs:{src:"https://placeimg.com/40/40/people/5",alt:"People"}})]),t._v(" "),s("span",[t._v("Abbey Christansen")]),t._v(" "),s("md-button",{staticClass:"md-icon-button md-list-action"},[s("md-icon",{staticClass:"md-primary"},[t._v("chat_bubble")])],1)],1),t._v(" "),s("md-list-item",[s("md-avatar",[s("img",{attrs:{src:"https://placeimg.com/40/40/people/1",alt:"People"}})]),t._v(" "),s("span",[t._v("Alex Nelson")]),t._v(" "),s("md-button",{staticClass:"md-icon-button md-list-action"},[s("md-icon",{staticClass:"md-primary"},[t._v("chat_bubble")])],1)],1),t._v(" "),s("md-list-item",[s("md-avatar",[s("img",{attrs:{src:"https://placeimg.com/40/40/people/6",alt:"People"}})]),t._v(" "),s("span",[t._v("Mary Johnson")]),t._v(" "),s("md-button",{staticClass:"md-icon-button md-list-action"},[s("md-icon",[t._v("chat_bubble")])],1)],1)],1)],1),t._v(" "),s("div",{staticClass:"phone-viewport"},[s("md-list",{staticClass:"md-dense"},[s("md-list-item",[s("md-icon",[t._v("move_to_inbox")]),t._v(" "),s("span",[t._v("Inbox")])],1),t._v(" "),s("md-list-item",[s("md-icon",[t._v("send")]),t._v(" "),s("span",[t._v("Sent Mail")])],1),t._v(" "),s("md-list-item",[s("md-icon",[t._v("delete")]),t._v(" "),s("span",[t._v("Trash")])],1),t._v(" "),s("md-list-item",[s("md-icon",[t._v("error")]),t._v(" "),s("span",[t._v("Spam")]),t._v(" "),s("md-divider",{staticClass:"md-inset"})],1),t._v(" "),s("md-list-item",[s("md-avatar",[s("img",{attrs:{src:"https://placeimg.com/40/40/people/5",alt:"People"}})]),t._v(" "),s("span",[t._v("Abbey Christansen")]),t._v(" "),s("md-button",{staticClass:"md-icon-button md-list-action"},[s("md-icon",{staticClass:"md-primary"},[t._v("chat_bubble")])],1)],1),t._v(" "),s("md-list-item",[s("md-avatar",[s("img",{attrs:{src:"https://placeimg.com/40/40/people/1",alt:"People"}})]),t._v(" "),s("span",[t._v("Alex Nelson")]),t._v(" "),s("md-button",{staticClass:"md-icon-button md-list-action"},[s("md-icon",{staticClass:"md-primary"},[t._v("chat_bubble")])],1)],1),t._v(" "),s("md-list-item",[s("md-avatar",[s("img",{attrs:{src:"https://placeimg.com/40/40/people/6",alt:"People"}})]),t._v(" "),s("span",[t._v("Mary Johnson")]),t._v(" "),s("md-button",{staticClass:"md-icon-button md-list-action"},[s("md-icon",[t._v("chat_bubble")])],1)],1)],1)],1)]),t._v(" "),s("div",{slot:"code"},[s("code-block",{attrs:{lang:"xml"}},[t._v('\n
\n ')])],1)]),t._v(" "),s("example-box",{attrs:{"card-title":"Triple Line"}},[s("div",{slot:"demo"},[s("div",{staticClass:"phone-viewport"},[s("md-list",{staticClass:"custom-list md-triple-line"},[s("md-list-item",[s("md-avatar",[s("img",{attrs:{src:"https://placeimg.com/40/40/people/1",alt:"People"}})]),t._v(" "),s("div",{staticClass:"md-list-text-container"},[s("span",[t._v("Ali Connors")]),t._v(" "),s("span",[t._v("Brunch this weekend?")]),t._v(" "),s("p",[t._v("I'll be in your neighborhood doing errands...")])]),t._v(" "),s("md-button",{staticClass:"md-icon-button md-list-action"},[s("md-icon",{staticClass:"md-primary"},[t._v("star")])],1),t._v(" "),s("md-divider",{staticClass:"md-inset"})],1),t._v(" "),s("md-list-item",[s("md-avatar",[s("img",{attrs:{src:"https://placeimg.com/40/40/people/6",alt:"People"}})]),t._v(" "),s("div",{staticClass:"md-list-text-container"},[s("span",[t._v("me, Scott, Jennifer")]),t._v(" "),s("span",[t._v("Summer BBQ")]),t._v(" "),s("p",[t._v("Wish I could come, but I'm out of town ...")])]),t._v(" "),s("md-button",{staticClass:"md-icon-button md-list-action"},[s("md-icon",[t._v("star_border")])],1),t._v(" "),s("md-divider",{staticClass:"md-inset"})],1),t._v(" "),s("md-list-item",[s("md-avatar",[s("img",{attrs:{src:"https://placeimg.com/40/40/people/5",alt:"People"}})]),t._v(" "),s("div",{staticClass:"md-list-text-container"},[s("span",[t._v("Sandra Adams")]),t._v(" "),s("span",[t._v("Oui oui")]),t._v(" "),s("p",[t._v("Do you have Paris recommendations ...")])]),t._v(" "),s("md-button",{staticClass:"md-icon-button md-list-action"},[s("md-icon",[t._v("star_border")])],1),t._v(" "),s("md-divider",{staticClass:"md-inset"})],1),t._v(" "),s("md-list-item",[s("md-avatar",[s("img",{attrs:{src:"https://placeimg.com/40/40/people/8",alt:"People"}})]),t._v(" "),s("div",{staticClass:"md-list-text-container"},[s("span",[t._v("Trevor Hansen")]),t._v(" "),s("span",[t._v("Order confirmation")]),t._v(" "),s("p",[t._v("Thank you for your recent order from ...")])]),t._v(" "),s("md-button",{staticClass:"md-icon-button md-list-action"},[s("md-icon",[t._v("star_border")])],1),t._v(" "),s("md-divider",{staticClass:"md-inset"})],1)],1)],1),t._v(" "),s("div",{staticClass:"phone-viewport"},[s("md-list",{staticClass:"custom-list md-triple-line md-dense"},[s("md-list-item",[s("md-avatar",[s("img",{attrs:{src:"https://placeimg.com/40/40/people/1",alt:"People"}})]),t._v(" "),s("div",{staticClass:"md-list-text-container"},[s("span",[t._v("Ali Connors")]),t._v(" "),s("span",[t._v("Brunch this weekend?")]),t._v(" "),s("p",[t._v("I'll be in your neighborhood doing errands...")])]),t._v(" "),s("md-button",{staticClass:"md-icon-button md-list-action"},[s("md-icon",{staticClass:"md-primary"},[t._v("star")])],1),t._v(" "),s("md-divider",{staticClass:"md-inset"})],1),t._v(" "),s("md-list-item",[s("md-avatar",[s("img",{attrs:{src:"https://placeimg.com/40/40/people/6",alt:"People"}})]),t._v(" "),s("div",{staticClass:"md-list-text-container"},[s("span",[t._v("me, Scott, Jennifer")]),t._v(" "),s("span",[t._v("Summer BBQ")]),t._v(" "),s("p",[t._v("Wish I could come, but I'm out of town ...")])]),t._v(" "),s("md-button",{staticClass:"md-icon-button md-list-action"},[s("md-icon",[t._v("star_border")])],1),t._v(" "),s("md-divider",{staticClass:"md-inset"})],1),t._v(" "),s("md-list-item",[s("md-avatar",[s("img",{attrs:{src:"https://placeimg.com/40/40/people/5",alt:"People"}})]),t._v(" "),s("div",{staticClass:"md-list-text-container"},[s("span",[t._v("Sandra Adams")]),t._v(" "),s("span",[t._v("Oui oui")]),t._v(" "),s("p",[t._v("Do you have Paris recommendations ...")])]),t._v(" "),s("md-button",{staticClass:"md-icon-button md-list-action"},[s("md-icon",[t._v("star_border")])],1),t._v(" "),s("md-divider",{staticClass:"md-inset"})],1),t._v(" "),s("md-list-item",[s("md-avatar",[s("img",{attrs:{src:"https://placeimg.com/40/40/people/8",alt:"People"}})]),t._v(" "),s("div",{staticClass:"md-list-text-container"},[s("span",[t._v("Trevor Hansen")]),t._v(" "),s("span",[t._v("Order confirmation")]),t._v(" "),s("p",[t._v("Thank you for your recent order from ...")])]),t._v(" "),s("md-button",{staticClass:"md-icon-button md-list-action"},[s("md-icon",[t._v("star_border")])],1),t._v(" "),s("md-divider",{staticClass:"md-inset"})],1)],1)],1)]),t._v(" "),s("div",{slot:"code"},[s("code-block",{attrs:{lang:"xml"}},[t._v('\n
\n \n \n\n \n \n phone\n \n\n \n \n phone\n My Item 1\n \n\n \n phone\n My Item 2\n \n\n \n phone\n My Item 3\n \n \n \n\n \n \n near_me\n \n\n \n \n Find on map\n near_me\n \n\n \n Call\n phone\n \n \n \n\n Open contact card\n ')]),e._v(" "),t("code-block",{attrs:{lang:"sass"}},[e._v("\n .author-card {\n padding: 8px 16px;\n display: flex;\n align-items: center;\n\n .md-avatar {\n margin-right: 16px;\n }\n\n .author-card-info {\n display: flex;\n flex-flow: column;\n flex: 1;\n }\n\n span {\n font-size: 16px;\n }\n\n .author-card-links {\n display: flex;\n\n a + a {\n margin-left: 8px;\n }\n }\n }\n ")])],1)])],1)])],1)},staticRenderFns:[]}},605:function(e,m,t){var n=t(537);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);t(5)("7e716a80",n,!0)}});
\ No newline at end of file
diff --git a/dist/docs/progress.dbae7eff.js b/dist/docs/progress.dbae7eff.js
new file mode 100644
index 0000000..f06bf31
--- /dev/null
+++ b/dist/docs/progress.dbae7eff.js
@@ -0,0 +1 @@
+webpackJsonp([8,34],{478:function(e,s,r){r(603);var t=r(0)(r(506),r(569),"data-v-63f6719f",null);e.exports=t.exports},506:function(e,s,r){"use strict";Object.defineProperty(s,"__esModule",{value:!0}),s.default={data:function(){return{progress:0,progressInterval:null,transition:!0}},methods:{startProgress:function(){var e=this;this.progressInterval=window.setInterval((function(){e.progress+=3,e.progress>100&&window.clearInterval(e.progressInterval)}),100)},restartProgress:function(){var e=this;this.progress=0,this.transition=!1,window.clearInterval(this.progressInterval),window.setTimeout((function(){e.transition=!0,e.startProgress()}),600)}},mounted:function(){this.startProgress()}},e.exports=s.default},535:function(e,s,r){s=e.exports=r(4)(),s.push([e.i,".progress-area[data-v-63f6719f]{height:44px}.progress-area+.md-button[data-v-63f6719f]{margin:16px 0 0}.md-progress[data-v-63f6719f]{margin-bottom:16px}",""])},569:function(e,s){e.exports={render:function(){var e=this,s=e.$createElement,r=e._self._c||s;return r("page-content",{attrs:{"page-title":"Components - Progress"}},[r("docs-component",[r("div",{slot:"description"},[r("p",[e._v("A linear progress indicator should always fill from 0% to 100% and never decrease in value. It should be represented by bars on the edge of a header or sheet that appear and disappear.")]),e._v(" "),r("p",[e._v("The following classes can be applied to change the color palette:")]),e._v(" "),r("ul",{staticClass:"md-body-2"},[r("li",[r("code",[e._v("md-accent")])]),e._v(" "),r("li",[r("code",[e._v("md-warn")])])])]),e._v(" "),r("div",{slot:"api"},[r("api-table",{attrs:{name:"md-progress"}},[r("md-table",{slot:"properties"},[r("md-table-header",[r("md-table-row",[r("md-table-head",[e._v("Name")]),e._v(" "),r("md-table-head",[e._v("Type")]),e._v(" "),r("md-table-head",[e._v("Description")])],1)],1),e._v(" "),r("md-table-body",[r("md-table-row",[r("md-table-cell",[e._v("md-indeterminate")]),e._v(" "),r("md-table-cell",[r("code",[e._v("Boolean")])]),e._v(" "),r("md-table-cell",[e._v("Enable the indeterminate state. Default "),r("code",[e._v("false")])])],1),e._v(" "),r("md-table-row",[r("md-table-cell",[e._v("md-progress")]),e._v(" "),r("md-table-cell",[r("code",[e._v("Number")])]),e._v(" "),r("md-table-cell",[e._v("Define the current progress of the progress. Default "),r("code",[e._v("0")])])],1)],1)],1)],1)],1),e._v(" "),r("div",{slot:"example"},[r("example-box",{attrs:{"card-title":"Determinate"}},[r("div",{staticClass:"progress-demo",slot:"demo"},[r("div",{staticClass:"progress-area"},[e.transition?r("md-progress",{attrs:{"md-progress":e.progress}}):e._e(),e._v(" "),e.transition?r("md-progress",{staticClass:"md-accent",attrs:{"md-progress":e.progress}}):e._e(),e._v(" "),e.transition?r("md-progress",{staticClass:"md-warn",attrs:{"md-progress":e.progress}}):e._e()],1),e._v(" "),r("md-button",{staticClass:"md-primary md-raised",nativeOn:{click:function(s){e.restartProgress(s)}}},[e._v("Restart")])],1),e._v(" "),r("div",{slot:"code"},[r("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n ')])],1)]),e._v(" "),r("example-box",{attrs:{"card-title":"Indeterminate"}},[r("div",{staticClass:"progress-demo",slot:"demo"},[r("div",{staticClass:"progress-area"},[e.transition?r("md-progress",{attrs:{"md-indeterminate":""}}):e._e(),e._v(" "),e.transition?r("md-progress",{staticClass:"md-accent",attrs:{"md-indeterminate":""}}):e._e(),e._v(" "),e.transition?r("md-progress",{staticClass:"md-warn",attrs:{"md-indeterminate":""}}):e._e()],1)]),e._v(" "),r("div",{slot:"code"},[r("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n ')])],1)]),e._v(" "),r("example-box",{attrs:{"card-title":"Themes"}},[r("div",{staticClass:"progress-demo",slot:"demo"},[r("div",{staticClass:"progress-area"},[e.transition?r("md-progress",{attrs:{"md-theme":"orange","md-indeterminate":""}}):e._e(),e._v(" "),e.transition?r("md-progress",{attrs:{"md-theme":"green","md-progress":e.progress}}):e._e(),e._v(" "),e.transition?r("md-progress",{attrs:{"md-theme":"purple","md-indeterminate":""}}):e._e()],1)]),e._v(" "),r("div",{slot:"code"},[r("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n ')])],1)])],1)])],1)},staticRenderFns:[]}},603:function(e,s,r){var t=r(535);"string"==typeof t&&(t=[[e.i,t,""]]),t.locals&&(e.exports=t.locals);r(5)("64b2b2ed",t,!0)}});
\ No newline at end of file
diff --git a/dist/docs/radio.0d3a1cf9.js b/dist/docs/radio.0d3a1cf9.js
new file mode 100644
index 0000000..1dc0f0a
--- /dev/null
+++ b/dist/docs/radio.0d3a1cf9.js
@@ -0,0 +1 @@
+webpackJsonp([25,34],{479:function(e,a,d){var o=d(0)(d(507),d(556),null,null);e.exports=o.exports},507:function(e,a,d){"use strict";Object.defineProperty(a,"__esModule",{value:!0}),a.default={data:function(){return{radio1:2,radio2:1,radio3:1,radio4:1,radio5:2,radio6:3,radio7:1,radio8:2}}},e.exports=a.default},556:function(e,a){e.exports={render:function(){var e=this,a=e.$createElement,d=e._self._c||a;return d("page-content",{attrs:{"page-title":"Components - Radio"}},[d("docs-component",[d("div",{slot:"description"},[d("p",[e._v("Radio buttons allow the user to select one option from a set. Use radio buttons for exclusive selection if you think that the user needs to see all available options side-by-side.")]),e._v(" "),d("p",[e._v("The following classes can be applied to change the color palette:")]),e._v(" "),d("ul",{staticClass:"md-body-2"},[d("li",[d("code",[e._v("md-primary")])]),e._v(" "),d("li",[d("code",[e._v("md-warn")])])])]),e._v(" "),d("div",{slot:"api"},[d("api-table",{attrs:{name:"md-radio"}},[d("md-table",{slot:"properties"},[d("md-table-header",[d("md-table-row",[d("md-table-head",[e._v("Name")]),e._v(" "),d("md-table-head",[e._v("Type")]),e._v(" "),d("md-table-head",[e._v("Description")])],1)],1),e._v(" "),d("md-table-body",[d("md-table-row",[d("md-table-cell",[e._v("v-model")]),e._v(" "),d("md-table-cell",[d("code",[e._v("String")])]),e._v(" "),d("md-table-cell",[e._v("A required model object to bind the value.")])],1),e._v(" "),d("md-table-row",[d("md-table-cell",[e._v("md-value")]),e._v(" "),d("md-table-cell",[d("code",[e._v("String")])]),e._v(" "),d("md-table-cell",[e._v("The single value of the particular radio button. Required.")])],1),e._v(" "),d("md-table-row",[d("md-table-cell",[e._v("name")]),e._v(" "),d("md-table-cell",[d("code",[e._v("String")])]),e._v(" "),d("md-table-cell",[e._v("Set the radio name.")])],1),e._v(" "),d("md-table-row",[d("md-table-cell",[e._v("id")]),e._v(" "),d("md-table-cell",[d("code",[e._v("String")])]),e._v(" "),d("md-table-cell",[e._v("Set the radio id.")])],1),e._v(" "),d("md-table-row",[d("md-table-cell",[e._v("disabled")]),e._v(" "),d("md-table-cell",[d("code",[e._v("Boolean")])]),e._v(" "),d("md-table-cell",[e._v("Disable the radio and prevent his actions. Default "),d("code",[e._v("false")])])],1)],1)],1),e._v(" "),d("md-table",{slot:"events"},[d("md-table-header",[d("md-table-row",[d("md-table-head",[e._v("Name")]),e._v(" "),d("md-table-head",[e._v("Value")]),e._v(" "),d("md-table-head",[e._v("Description")])],1)],1),e._v(" "),d("md-table-body",[d("md-table-row",[d("md-table-cell",[e._v("change")]),e._v(" "),d("md-table-cell",[e._v("Receive the state of the radio")]),e._v(" "),d("md-table-cell",[e._v("Triggered when the radio changes his value.")])],1)],1)],1)],1)],1),e._v(" "),d("div",{slot:"example"},[d("example-box",{attrs:{"card-title":"Default"}},[d("div",{slot:"demo"},[d("div",[d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio1,expression:"radio1"}],attrs:{id:"my-test1",name:"my-test-group1","md-value":"1"},domProps:{value:e.radio1},on:{input:function(a){e.radio1=a}}},[e._v("My beautiful radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio1,expression:"radio1"}],attrs:{id:"my-test2",name:"my-test-group1","md-value":"2"},domProps:{value:e.radio1},on:{input:function(a){e.radio1=a}}},[e._v("Another radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio1,expression:"radio1"}],attrs:{id:"my-test3",name:"my-test-group1","md-value":"3"},domProps:{value:e.radio1},on:{input:function(a){e.radio1=a}}},[e._v("Another another radio")])],1),e._v(" "),d("div",[d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio2,expression:"radio2"}],staticClass:"md-primary",attrs:{id:"my-test4",name:"my-test-group2","md-value":"1"},domProps:{value:e.radio2},on:{input:function(a){e.radio2=a}}},[e._v("Primary radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio2,expression:"radio2"}],staticClass:"md-primary",attrs:{id:"my-test5",name:"my-test-group2","md-value":"2"},domProps:{value:e.radio2},on:{input:function(a){e.radio2=a}}},[e._v("Another primary radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio2,expression:"radio2"}],staticClass:"md-primary",attrs:{id:"my-test6",name:"my-test-group2","md-value":"3"},domProps:{value:e.radio2},on:{input:function(a){e.radio2=a}}},[e._v("Another another primary radio")])],1),e._v(" "),d("div",[d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio3,expression:"radio3"}],staticClass:"md-warn",attrs:{id:"my-test7",name:"my-test-group3","md-value":"1"},domProps:{value:e.radio3},on:{input:function(a){e.radio3=a}}},[e._v("Warn radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio3,expression:"radio3"}],staticClass:"md-warn",attrs:{id:"my-test8",name:"my-test-group3","md-value":"2"},domProps:{value:e.radio3},on:{input:function(a){e.radio3=a}}},[e._v("Another warn radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio3,expression:"radio3"}],staticClass:"md-warn",attrs:{id:"my-test9",name:"my-test-group3","md-value":"3"},domProps:{value:e.radio3},on:{input:function(a){e.radio3=a}}},[e._v("Another another warn radio")])],1),e._v(" "),d("div",[d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio4,expression:"radio4"}],attrs:{id:"my-test10",name:"my-test-group3","md-value":"1"},domProps:{value:e.radio4},on:{input:function(a){e.radio4=a}}},[e._v("My beautiful radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio4,expression:"radio4"}],attrs:{id:"my-test11",name:"my-test-group3","md-value":"2",disabled:""},domProps:{value:e.radio4},on:{input:function(a){e.radio4=a}}},[e._v("Disabled")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio4,expression:"radio4"}],attrs:{id:"my-test12",name:"my-test-group3","md-value":"3"},domProps:{value:e.radio4},on:{input:function(a){e.radio4=a}}},[e._v("Another radio")])],1)]),e._v(" "),d("div",{slot:"code"},[d("code-block",{attrs:{lang:"xml"}},[e._v('\n
\n My beautiful radio\n Another radio\n Another another radio\n
\n\n
\n Primary radio\n Another primary radio\n Another another primary radio\n
\n\n
\n Warn radio\n Another warn radio\n Another another warn radio\n
\n\n
\n My beautiful radio\n Disabled\n Another radio\n
\n ')])],1)]),e._v(" "),d("example-box",{attrs:{"card-title":"Themes"}},[d("div",{slot:"demo"},[d("md-theme",{attrs:{"md-name":"orange"}},[d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio5,expression:"radio5"}],staticClass:"md-primary",attrs:{id:"my-test13",name:"my-test-group4","md-value":"1"},domProps:{value:e.radio5},on:{input:function(a){e.radio5=a}}},[e._v("Orange radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio5,expression:"radio5"}],staticClass:"md-primary",attrs:{id:"my-test14",name:"my-test-group4","md-value":"2"},domProps:{value:e.radio5},on:{input:function(a){e.radio5=a}}},[e._v("Another Orange radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio5,expression:"radio5"}],staticClass:"md-primary",attrs:{id:"my-test15",name:"my-test-group4","md-value":"3"},domProps:{value:e.radio5},on:{input:function(a){e.radio5=a}}},[e._v("Another another Orange radio")])],1),e._v(" "),d("md-theme",{attrs:{"md-name":"brown"}},[d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio6,expression:"radio6"}],staticClass:"md-primary",attrs:{id:"my-test16",name:"my-test-group4","md-value":"1"},domProps:{value:e.radio6},on:{input:function(a){e.radio6=a}}},[e._v("Brown radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio6,expression:"radio6"}],staticClass:"md-primary",attrs:{id:"my-test17",name:"my-test-group4","md-value":"2"},domProps:{value:e.radio6},on:{input:function(a){e.radio6=a}}},[e._v("Another Brown radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio6,expression:"radio6"}],staticClass:"md-primary",attrs:{id:"my-test18",name:"my-test-group4","md-value":"3"},domProps:{value:e.radio6},on:{input:function(a){e.radio6=a}}},[e._v("Another another Brown radio")])],1),e._v(" "),d("md-theme",{attrs:{"md-name":"green"}},[d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio7,expression:"radio7"}],staticClass:"md-primary",attrs:{id:"my-test19",name:"my-test-group6","md-value":"1"},domProps:{value:e.radio7},on:{input:function(a){e.radio7=a}}},[e._v("Green radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio7,expression:"radio7"}],staticClass:"md-primary",attrs:{id:"my-test20",name:"my-test-group6","md-value":"2"},domProps:{value:e.radio7},on:{input:function(a){e.radio7=a}}},[e._v("Another Green radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio7,expression:"radio7"}],staticClass:"md-primary",attrs:{id:"my-test21",name:"my-test-group6","md-value":"3"},domProps:{value:e.radio7},on:{input:function(a){e.radio7=a}}},[e._v("Another another Green radio")])],1),e._v(" "),d("md-theme",{attrs:{"md-name":"teal"}},[d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio8,expression:"radio8"}],staticClass:"md-primary",attrs:{id:"my-test22",name:"my-test-group3","md-value":"1"},domProps:{value:e.radio8},on:{input:function(a){e.radio8=a}}},[e._v("Teal radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio8,expression:"radio8"}],staticClass:"md-primary",attrs:{id:"my-test23",name:"my-test-group3","md-value":"2",disabled:""},domProps:{value:e.radio8},on:{input:function(a){e.radio8=a}}},[e._v("Teal disabled radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio8,expression:"radio8"}],staticClass:"md-primary",attrs:{id:"my-test24",name:"my-test-group3","md-value":"3"},domProps:{value:e.radio8},on:{input:function(a){e.radio8=a}}},[e._v("Another another Teal radio")])],1)],1),e._v(" "),d("div",{slot:"code"},[d("code-block",{attrs:{lang:"xml"}},[e._v('\n \n Orange radio\n Another Orange radio\n Another another Orange radio\n \n\n \n Brown radio\n Another Brown radio\n Another another Brown radio\n \n\n \n Green radio\n Another Green radio\n Another another Green radio\n \n\n \n Teal radio\n Teal disabled radio\n Another another Teal radio\n \n ')])],1)])],1)])],1)},staticRenderFns:[]}}});
\ No newline at end of file
diff --git a/dist/docs/0.cf567cfa.js b/dist/docs/releases/v0.5.2/0.cf567cfa.js
similarity index 100%
rename from dist/docs/0.cf567cfa.js
rename to dist/docs/releases/v0.5.2/0.cf567cfa.js
diff --git a/dist/docs/1.aebda25a.js b/dist/docs/releases/v0.5.2/1.aebda25a.js
similarity index 100%
rename from dist/docs/1.aebda25a.js
rename to dist/docs/releases/v0.5.2/1.aebda25a.js
diff --git a/dist/docs/10.d6e091c7.js b/dist/docs/releases/v0.5.2/10.d6e091c7.js
similarity index 100%
rename from dist/docs/10.d6e091c7.js
rename to dist/docs/releases/v0.5.2/10.d6e091c7.js
diff --git a/dist/docs/11.57baa516.js b/dist/docs/releases/v0.5.2/11.57baa516.js
similarity index 100%
rename from dist/docs/11.57baa516.js
rename to dist/docs/releases/v0.5.2/11.57baa516.js
diff --git a/dist/docs/12.412e420a.js b/dist/docs/releases/v0.5.2/12.412e420a.js
similarity index 100%
rename from dist/docs/12.412e420a.js
rename to dist/docs/releases/v0.5.2/12.412e420a.js
diff --git a/dist/docs/13.10c43d78.js b/dist/docs/releases/v0.5.2/13.10c43d78.js
similarity index 100%
rename from dist/docs/13.10c43d78.js
rename to dist/docs/releases/v0.5.2/13.10c43d78.js
diff --git a/dist/docs/14.b700e246.js b/dist/docs/releases/v0.5.2/14.b700e246.js
similarity index 100%
rename from dist/docs/14.b700e246.js
rename to dist/docs/releases/v0.5.2/14.b700e246.js
diff --git a/dist/docs/15.0f0501f9.js b/dist/docs/releases/v0.5.2/15.0f0501f9.js
similarity index 100%
rename from dist/docs/15.0f0501f9.js
rename to dist/docs/releases/v0.5.2/15.0f0501f9.js
diff --git a/dist/docs/16.7eaf3c08.js b/dist/docs/releases/v0.5.2/16.7eaf3c08.js
similarity index 100%
rename from dist/docs/16.7eaf3c08.js
rename to dist/docs/releases/v0.5.2/16.7eaf3c08.js
diff --git a/dist/docs/17.bef219a0.js b/dist/docs/releases/v0.5.2/17.bef219a0.js
similarity index 100%
rename from dist/docs/17.bef219a0.js
rename to dist/docs/releases/v0.5.2/17.bef219a0.js
diff --git a/dist/docs/18.d5035c12.js b/dist/docs/releases/v0.5.2/18.d5035c12.js
similarity index 100%
rename from dist/docs/18.d5035c12.js
rename to dist/docs/releases/v0.5.2/18.d5035c12.js
diff --git a/dist/docs/19.88ab05fd.js b/dist/docs/releases/v0.5.2/19.88ab05fd.js
similarity index 100%
rename from dist/docs/19.88ab05fd.js
rename to dist/docs/releases/v0.5.2/19.88ab05fd.js
diff --git a/dist/docs/2.b62f9e71.js b/dist/docs/releases/v0.5.2/2.b62f9e71.js
similarity index 100%
rename from dist/docs/2.b62f9e71.js
rename to dist/docs/releases/v0.5.2/2.b62f9e71.js
diff --git a/dist/docs/20.0980afec.js b/dist/docs/releases/v0.5.2/20.0980afec.js
similarity index 100%
rename from dist/docs/20.0980afec.js
rename to dist/docs/releases/v0.5.2/20.0980afec.js
diff --git a/dist/docs/21.6999e85f.js b/dist/docs/releases/v0.5.2/21.6999e85f.js
similarity index 100%
rename from dist/docs/21.6999e85f.js
rename to dist/docs/releases/v0.5.2/21.6999e85f.js
diff --git a/dist/docs/22.838a8032.js b/dist/docs/releases/v0.5.2/22.838a8032.js
similarity index 100%
rename from dist/docs/22.838a8032.js
rename to dist/docs/releases/v0.5.2/22.838a8032.js
diff --git a/dist/docs/23.91e06240.js b/dist/docs/releases/v0.5.2/23.91e06240.js
similarity index 100%
rename from dist/docs/23.91e06240.js
rename to dist/docs/releases/v0.5.2/23.91e06240.js
diff --git a/dist/docs/24.38594b9c.js b/dist/docs/releases/v0.5.2/24.38594b9c.js
similarity index 100%
rename from dist/docs/24.38594b9c.js
rename to dist/docs/releases/v0.5.2/24.38594b9c.js
diff --git a/dist/docs/25.0a12003e.js b/dist/docs/releases/v0.5.2/25.0a12003e.js
similarity index 100%
rename from dist/docs/25.0a12003e.js
rename to dist/docs/releases/v0.5.2/25.0a12003e.js
diff --git a/dist/docs/26.ce0a9d8d.js b/dist/docs/releases/v0.5.2/26.ce0a9d8d.js
similarity index 100%
rename from dist/docs/26.ce0a9d8d.js
rename to dist/docs/releases/v0.5.2/26.ce0a9d8d.js
diff --git a/dist/docs/3.24b8259b.js b/dist/docs/releases/v0.5.2/3.24b8259b.js
similarity index 100%
rename from dist/docs/3.24b8259b.js
rename to dist/docs/releases/v0.5.2/3.24b8259b.js
diff --git a/dist/docs/4.dda87c6e.js b/dist/docs/releases/v0.5.2/4.dda87c6e.js
similarity index 100%
rename from dist/docs/4.dda87c6e.js
rename to dist/docs/releases/v0.5.2/4.dda87c6e.js
diff --git a/dist/docs/5.4f97396d.js b/dist/docs/releases/v0.5.2/5.4f97396d.js
similarity index 100%
rename from dist/docs/5.4f97396d.js
rename to dist/docs/releases/v0.5.2/5.4f97396d.js
diff --git a/dist/docs/6.914fc411.js b/dist/docs/releases/v0.5.2/6.914fc411.js
similarity index 100%
rename from dist/docs/6.914fc411.js
rename to dist/docs/releases/v0.5.2/6.914fc411.js
diff --git a/dist/docs/7.43232ee9.js b/dist/docs/releases/v0.5.2/7.43232ee9.js
similarity index 100%
rename from dist/docs/7.43232ee9.js
rename to dist/docs/releases/v0.5.2/7.43232ee9.js
diff --git a/dist/docs/8.19299e2b.js b/dist/docs/releases/v0.5.2/8.19299e2b.js
similarity index 100%
rename from dist/docs/8.19299e2b.js
rename to dist/docs/releases/v0.5.2/8.19299e2b.js
diff --git a/dist/docs/9.7a6b4c90.js b/dist/docs/releases/v0.5.2/9.7a6b4c90.js
similarity index 100%
rename from dist/docs/9.7a6b4c90.js
rename to dist/docs/releases/v0.5.2/9.7a6b4c90.js
diff --git a/dist/docs/releases/v0.5.2/assets/avatar-2.jpg b/dist/docs/releases/v0.5.2/assets/avatar-2.jpg
new file mode 100644
index 0000000..b085d06
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/avatar-2.jpg differ
diff --git a/dist/docs/releases/v0.5.2/assets/avatar.jpg b/dist/docs/releases/v0.5.2/assets/avatar.jpg
new file mode 100644
index 0000000..bfcbeff
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/avatar.jpg differ
diff --git a/dist/docs/releases/v0.5.2/assets/avatar.png b/dist/docs/releases/v0.5.2/assets/avatar.png
new file mode 100644
index 0000000..c0924e0
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/avatar.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/card-example.jpg b/dist/docs/releases/v0.5.2/assets/card-example.jpg
new file mode 100644
index 0000000..f83e3fe
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/card-example.jpg differ
diff --git a/dist/docs/releases/v0.5.2/assets/card-image-1.jpg b/dist/docs/releases/v0.5.2/assets/card-image-1.jpg
new file mode 100644
index 0000000..8380353
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/card-image-1.jpg differ
diff --git a/dist/docs/releases/v0.5.2/assets/card-image-2.jpg b/dist/docs/releases/v0.5.2/assets/card-image-2.jpg
new file mode 100644
index 0000000..2ab8328
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/card-image-2.jpg differ
diff --git a/dist/docs/releases/v0.5.2/assets/card-image-3.jpg b/dist/docs/releases/v0.5.2/assets/card-image-3.jpg
new file mode 100644
index 0000000..1994ef9
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/card-image-3.jpg differ
diff --git a/dist/docs/releases/v0.5.2/assets/card-sky.jpg b/dist/docs/releases/v0.5.2/assets/card-sky.jpg
new file mode 100644
index 0000000..4c07815
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/card-sky.jpg differ
diff --git a/dist/docs/releases/v0.5.2/assets/card-weather.png b/dist/docs/releases/v0.5.2/assets/card-weather.png
new file mode 100644
index 0000000..5a5def5
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/card-weather.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/codepen.png b/dist/docs/releases/v0.5.2/assets/codepen.png
new file mode 100644
index 0000000..277c84e
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/codepen.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/cover.png b/dist/docs/releases/v0.5.2/assets/cover.png
new file mode 100644
index 0000000..0f7a19d
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/cover.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-144x144.png b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-144x144.png
new file mode 100644
index 0000000..c7d6bd5
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-144x144.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-192x192.png b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-192x192.png
new file mode 100644
index 0000000..d9a53e7
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-192x192.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-256x256.png b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-256x256.png
new file mode 100644
index 0000000..2f66277
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-256x256.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-36x36.png b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-36x36.png
new file mode 100644
index 0000000..4a467e6
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-36x36.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-384x384.png b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-384x384.png
new file mode 100644
index 0000000..06cfe95
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-384x384.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-48x48.png b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-48x48.png
new file mode 100644
index 0000000..fab483e
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-48x48.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-512x512.png b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-512x512.png
new file mode 100644
index 0000000..c7bdf0e
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-512x512.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-72x72.png b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-72x72.png
new file mode 100644
index 0000000..e3ce3f4
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-72x72.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-96x96.png b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-96x96.png
new file mode 100644
index 0000000..4c17831
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/favicon/android-chrome-96x96.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/apple-touch-icon.png b/dist/docs/releases/v0.5.2/assets/favicon/apple-touch-icon.png
new file mode 100644
index 0000000..6a04be1
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/favicon/apple-touch-icon.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/browserconfig.xml b/dist/docs/releases/v0.5.2/assets/favicon/browserconfig.xml
new file mode 100644
index 0000000..6478827
--- /dev/null
+++ b/dist/docs/releases/v0.5.2/assets/favicon/browserconfig.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+ #2196f3
+
+
+
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/favicon-16x16.png b/dist/docs/releases/v0.5.2/assets/favicon/favicon-16x16.png
new file mode 100644
index 0000000..d53209e
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/favicon/favicon-16x16.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/favicon-194x194.png b/dist/docs/releases/v0.5.2/assets/favicon/favicon-194x194.png
new file mode 100644
index 0000000..d811ce0
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/favicon/favicon-194x194.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/favicon-32x32.png b/dist/docs/releases/v0.5.2/assets/favicon/favicon-32x32.png
new file mode 100644
index 0000000..6f3f32c
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/favicon/favicon-32x32.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/favicon.ico b/dist/docs/releases/v0.5.2/assets/favicon/favicon.ico
new file mode 100644
index 0000000..07eaeed
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/favicon/favicon.ico differ
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/manifest.json b/dist/docs/releases/v0.5.2/assets/favicon/manifest.json
new file mode 100644
index 0000000..d2f9f1f
--- /dev/null
+++ b/dist/docs/releases/v0.5.2/assets/favicon/manifest.json
@@ -0,0 +1,54 @@
+{
+ "name": "Vue Material",
+ "icons": [
+ {
+ "src": "assets\/favicon\/android-chrome-36x36.png",
+ "sizes": "36x36",
+ "type": "image\/png"
+ },
+ {
+ "src": "assets\/favicon\/android-chrome-48x48.png",
+ "sizes": "48x48",
+ "type": "image\/png"
+ },
+ {
+ "src": "assets\/favicon\/android-chrome-72x72.png",
+ "sizes": "72x72",
+ "type": "image\/png"
+ },
+ {
+ "src": "assets\/favicon\/android-chrome-96x96.png",
+ "sizes": "96x96",
+ "type": "image\/png"
+ },
+ {
+ "src": "assets\/favicon\/android-chrome-144x144.png",
+ "sizes": "144x144",
+ "type": "image\/png"
+ },
+ {
+ "src": "assets\/favicon\/android-chrome-192x192.png",
+ "sizes": "192x192",
+ "type": "image\/png"
+ },
+ {
+ "src": "assets\/favicon\/android-chrome-256x256.png",
+ "sizes": "256x256",
+ "type": "image\/png"
+ },
+ {
+ "src": "assets\/favicon\/android-chrome-384x384.png",
+ "sizes": "384x384",
+ "type": "image\/png"
+ },
+ {
+ "src": "assets\/favicon\/android-chrome-512x512.png",
+ "sizes": "512x512",
+ "type": "image\/png"
+ }
+ ],
+ "theme_color": "#2196f3",
+ "start_url": "https:\/\/vuematerial.github.io",
+ "display": "standalone",
+ "orientation": "portrait"
+}
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/mstile-150x150.png b/dist/docs/releases/v0.5.2/assets/favicon/mstile-150x150.png
new file mode 100644
index 0000000..27bb1f5
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/favicon/mstile-150x150.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/favicon/safari-pinned-tab.svg b/dist/docs/releases/v0.5.2/assets/favicon/safari-pinned-tab.svg
new file mode 100644
index 0000000..7fa2f4f
--- /dev/null
+++ b/dist/docs/releases/v0.5.2/assets/favicon/safari-pinned-tab.svg
@@ -0,0 +1,19 @@
+
+
+
diff --git a/dist/docs/releases/v0.5.2/assets/logo-vue-material-blue-grey.png b/dist/docs/releases/v0.5.2/assets/logo-vue-material-blue-grey.png
new file mode 100644
index 0000000..de17022
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/logo-vue-material-blue-grey.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/logo-vue-material-cyan.png b/dist/docs/releases/v0.5.2/assets/logo-vue-material-cyan.png
new file mode 100644
index 0000000..694580d
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/logo-vue-material-cyan.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/logo-vue-material-default.png b/dist/docs/releases/v0.5.2/assets/logo-vue-material-default.png
new file mode 100644
index 0000000..617ff3f
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/logo-vue-material-default.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/logo-vue-material-green.png b/dist/docs/releases/v0.5.2/assets/logo-vue-material-green.png
new file mode 100644
index 0000000..ecbee1a
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/logo-vue-material-green.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/logo-vue-material-indigo.png b/dist/docs/releases/v0.5.2/assets/logo-vue-material-indigo.png
new file mode 100644
index 0000000..2ed2c60
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/logo-vue-material-indigo.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/logo-vue-material-orange.png b/dist/docs/releases/v0.5.2/assets/logo-vue-material-orange.png
new file mode 100644
index 0000000..4a12284
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/logo-vue-material-orange.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/logo-vue-material-purple.png b/dist/docs/releases/v0.5.2/assets/logo-vue-material-purple.png
new file mode 100644
index 0000000..15c520e
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/logo-vue-material-purple.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/logo-vue-material-red.png b/dist/docs/releases/v0.5.2/assets/logo-vue-material-red.png
new file mode 100644
index 0000000..617ff3f
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/logo-vue-material-red.png differ
diff --git a/dist/docs/releases/v0.5.2/assets/marcosmoura.jpg b/dist/docs/releases/v0.5.2/assets/marcosmoura.jpg
new file mode 100644
index 0000000..cff854b
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/marcosmoura.jpg differ
diff --git a/dist/docs/releases/v0.5.2/assets/vue-material-example.png b/dist/docs/releases/v0.5.2/assets/vue-material-example.png
new file mode 100644
index 0000000..cccf915
Binary files /dev/null and b/dist/docs/releases/v0.5.2/assets/vue-material-example.png differ
diff --git a/dist/docs/releases/v0.5.2/changelog.html b/dist/docs/releases/v0.5.2/changelog.html
new file mode 100644
index 0000000..d6b1ac1
--- /dev/null
+++ b/dist/docs/releases/v0.5.2/changelog.html
@@ -0,0 +1,282 @@
+
+
fix vue material instance on non commonjs env #220
+
recalculate the expansion element if a child is added
+
+
+
+
+
v0.5.0 - New Grid System Engine!
+
+
New Components:
+
+
Theme
+
Layout
+
Spinner
+
+
The long time requested feature is here! Vue Material has a new and easy-to-use Grid System. Enjoy!
+
+
Breaking changes:
+
The first breaking change we never forget. The themes engine has changed and it's more simple now. This change make the themes reactive to make the themes dynamic using the theme component or the API. The performance of the engine is waaay better and the theme styles are now fixed and have a better scope.
+
Check all theme changes in the new themes section inside the documentation website. There are some changes in the theme API:
+
+
v-md-theme directive removed
+
The v-md-theme do not exists anymore and should be replaced by the brand new <md-theme> component.
+
+
Register method renamed
+
Vue.material.theme.register changed to Vue.material.registerTheme. This will make the API smore simple and easy to write.
+
+
Register All removed
+
Vue.material.theme.registerAll was removed. The Vue.material.registerTheme function now accepts a object:
md-select displaying selected text (rather than value) #36
+
Added 'type' props to switch button #27 (Thanks to @guillaumerxl)
+
Add babel-cli as dev dependency #28 (Thanks to @lucassouza1)
+
Remove dotted outline around button in firefox #52 (Thanks to @yeknava)
+
+
+
+
+
v0.2.0 - New components
+
New Components:
+
+
Cards
+
+
+
Fixes:
+
+
Add Roboto font and google icons to the docs 421ce7b
+
Explains better how to install and configure vue-material cc43985
+
Emit change & input events from mdTextarea b474af9 (Thanks to @jvanbrug)
+
+
+
+
+
v0.1.2 - Bugfixes
+
Fixes:
+
+
Fixed tooltips on Firefox
+
Misaligned icons inside buttons on Firefox
+
Documentation fixes
+
+
+
+
+
v0.1.1 - Bugfixes
+
Changes:
+
+
Bugfixes
+
Firefox support
+
Initial documentation
+
+
+
+
+
v0.1.0 - Initial Release
+
New Components:
+
+
Avatar
+
Bottom Bar
+
Button
+
Button Toggle
+
Checkbox
+
Divider
+
Icon
+
Input
+
List
+
Radio
+
Select
+
Sidenav
+
Subheader
+
Switch
+
Tabs
+
Toolbar
+
Tooltip
+
Whiteframe
+
+
+
UI Elements:
+
+
Themes
+
Typography
+
Fluid Media
+
Custom Scrollbar
+
Selection Styles
+
+
diff --git a/dist/docs/docs.0b915d3f.css b/dist/docs/releases/v0.5.2/docs.0b915d3f.css
similarity index 100%
rename from dist/docs/docs.0b915d3f.css
rename to dist/docs/releases/v0.5.2/docs.0b915d3f.css
diff --git a/dist/docs/docs.80bc43c9.js b/dist/docs/releases/v0.5.2/docs.80bc43c9.js
similarity index 100%
rename from dist/docs/docs.80bc43c9.js
rename to dist/docs/releases/v0.5.2/docs.80bc43c9.js
diff --git a/dist/docs/releases/v0.5.2/index.html b/dist/docs/releases/v0.5.2/index.html
new file mode 100644
index 0000000..4079d98
--- /dev/null
+++ b/dist/docs/releases/v0.5.2/index.html
@@ -0,0 +1 @@
+Vue Material
\ No newline at end of file
diff --git a/dist/docs/manifest.013bc964.js b/dist/docs/releases/v0.5.2/manifest.013bc964.js
similarity index 100%
rename from dist/docs/manifest.013bc964.js
rename to dist/docs/releases/v0.5.2/manifest.013bc964.js
diff --git a/dist/docs/vendor.1366249b.js b/dist/docs/releases/v0.5.2/vendor.1366249b.js
similarity index 100%
rename from dist/docs/vendor.1366249b.js
rename to dist/docs/releases/v0.5.2/vendor.1366249b.js
diff --git a/dist/docs/releases/v0.5.2/versions.json b/dist/docs/releases/v0.5.2/versions.json
new file mode 100644
index 0000000..26d2379
--- /dev/null
+++ b/dist/docs/releases/v0.5.2/versions.json
@@ -0,0 +1 @@
+["0.5.1", "0.5.2"]
diff --git a/dist/docs/releases/v0.6.0/0.8985122d.js b/dist/docs/releases/v0.6.0/0.8985122d.js
new file mode 100644
index 0000000..4c9274e
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/0.8985122d.js
@@ -0,0 +1 @@
+webpackJsonp([0,32],{117:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={data:function(){return{nutrition:[{dessert:"Frozen yogurt",type:"ice_cream",calories:"159",fat:"6.0",comment:"Icy"},{dessert:"Ice cream sandwich",type:"ice_cream",calories:"237",fat:"9.0",comment:"Super Tasty"},{dessert:"Eclair",type:"pastry",calories:"262",fat:"16.0",comment:""},{dessert:"Cupcake",type:"pastry",calories:"305",fat:"3.7",comment:""},{dessert:"Gingerbread",type:"other",calories:"356",fat:"16.0",comment:""}],selectedData:[],sort:{},page:{}}},methods:{onSelect:function(e){this.selectedData=e,this.$forceUpdate()},onSort:function(e){this.sort=e},onPagination:function(e){this.page=e}}},e.exports=t.default},224:function(e,t,a){t=e.exports=a(1)(),t.push([e.id,".md-table+.md-table-card[data-v-080f56ba],.md-table-card+.md-table-card[data-v-080f56ba],.output[data-v-080f56ba]{margin-top:24px}.output .md-title[data-v-080f56ba]{font-size:20px}",""])},364:function(e,t,a){var d,l;a(545),d=a(117);var n=a(444);l=d=d||{},"object"!=typeof d.default&&"function"!=typeof d.default||(l=d=d.default),"function"==typeof l&&(l=l.options),l.render=n.render,l.staticRenderFns=n.staticRenderFns,l._scopeId="data-v-080f56ba",e.exports=d},444:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("page-content",{attrs:{"page-title":"Components - Table"}},[a("docs-component",[a("div",{slot:"description"},[a("p",[e._v("Data tables display sets of raw data. They usually appear in desktop enterprise products. Data tables may be embedded on a surface, such as a card.")])]),e._v(" "),a("div",{slot:"api"},[a("api-table",{attrs:{name:"md-table"}},[a("md-table",{slot:"properties"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("md-sort")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("Property name to match for sorting.")])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("md-sort-type")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("The order to apply on the sort: "),a("br"),e._v("Values: "),a("code",[e._v("asc")]),e._v(" | "),a("code",[e._v("desc")])])],1)],1)],1),e._v(" "),a("md-table",{slot:"events"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Value")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("sort")]),e._v(" "),a("md-table-cell",[e._v("Receive the sort object. Example: "),a("br"),a("code",[e._v("{ name: 'calories', type: 'asc' }")])]),e._v(" "),a("md-table-cell",[e._v("Triggered when a column is sorted.")])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("select")]),e._v(" "),a("md-table-cell",[e._v("Receive the all the selected rows as a "),a("code",[e._v("Object")])]),e._v(" "),a("md-table-cell",[e._v("Triggered every time a row is selected.")])],1)],1)],1)],1),e._v(" "),a("api-table",{attrs:{name:"md-table-card"}},[a("p",[e._v("Used to create tables inside cards. Optional.")]),e._v(" "),a("p",[e._v("No options available")])]),e._v(" "),a("api-table",{attrs:{name:"md-table-header"}},[a("p",[e._v("Used like a regular "),a("code",[e._v("thead")]),e._v(". Required.")]),e._v(" "),a("p",[e._v("No options available")])]),e._v(" "),a("api-table",{attrs:{name:"md-table-body"}},[a("p",[e._v("Used like a regular "),a("code",[e._v("tbody")]),e._v(". Required.")]),e._v(" "),a("p",[e._v("No options available")])]),e._v(" "),a("api-table",{attrs:{name:"md-table-row"}},[a("p",[e._v("Used like a regular "),a("code",[e._v("tr")]),e._v(". Required.")]),e._v(" "),a("md-table",{slot:"properties"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("md-selection")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Enable selection inside a particular row. Only works inside "),a("code",[e._v("md-table-body")]),e._v(". Default "),a("code",[e._v("false")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("md-auto-select")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Click in any area of the row to select it. Only works inside "),a("code",[e._v("md-table-body")]),e._v(". Default "),a("code",[e._v("false")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("md-item")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Object")])]),e._v(" "),a("md-table-cell",[e._v("The single item to be returned when the row is selected. Only works inside "),a("code",[e._v("md-table-body")]),e._v(".")])],1)],1)],1)],1),e._v(" "),a("api-table",{attrs:{name:"md-table-head"}},[a("p",[e._v("Used like a regular "),a("code",[e._v("th")]),e._v(". Required.")]),e._v(" "),a("md-table",{slot:"properties"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("md-numeric")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Align the header content to the right. Default "),a("code",[e._v("false")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("md-sort-by")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("The property name to be returned after applying the sort order on that particular column.")])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("md-tooltip")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("Text displayed inside a tooltip to provide definitions to column headers.")])],1)],1)],1)],1),e._v(" "),a("api-table",{attrs:{name:"md-table-cell"}},[a("p",[e._v("Used like a regular "),a("code",[e._v("td")]),e._v(". Required.")]),e._v(" "),a("md-table",{slot:"properties"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("md-numeric")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Align the cell content to the right. Default "),a("code",[e._v("false")])])],1)],1)],1)],1),e._v(" "),a("api-table",{attrs:{name:"md-table-pagination"}},[a("p",[e._v("The pagination element doesn't accept any content inside.")]),e._v(" "),a("md-table",{slot:"properties"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("md-size")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Number")])]),e._v(" "),a("md-table-cell",[e._v("Set the amount of rows displayed. Required. Default "),a("code",[e._v("10")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("md-page-options")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Array | Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Set the values inside the page amout selector. Default "),a("code",[e._v("[10, 25, 50, 100]")]),e._v(" "),a("br"),e._v("When false this flag will hide the page selector.")])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("md-page")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Number")])]),e._v(" "),a("md-table-cell",[e._v("Current page of the table pagination. Required. Default "),a("code",[e._v("1")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("md-total")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Number")])]),e._v(" "),a("md-table-cell",[e._v("Total of items in the collection. This will be used to calculate the amount of pages left. Default "),a("code",[e._v("Many")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("md-label")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("Text to be shown on the left of the page selector. Default "),a("code",[e._v("Rows per page")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("md-separator")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("Text to be shown on the left of the page selector. Default "),a("code",[e._v("of")])])],1)],1)],1)],1),e._v(" "),a("api-table",{attrs:{name:"md-table-alternate-header"}},[a("md-table",{slot:"properties"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("md-selected-label")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("The text to be shown after the amount of items selected.")])],1)],1)],1)],1)],1),e._v(" "),a("div",{slot:"example"},[a("example-box",{attrs:{"card-title":"Plain"}},[a("div",{slot:"demo"},[e._m(0)],1),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n Dessert (100g serving)\n Calories (g)\n Fat (g)\n Carbs (g)\n Protein (g)\n \n \n\n \n \n Dessert Name\n 10\n \n \n \n ')])],1)]),e._v(" "),a("example-box",{attrs:{"card-title":"Sort"}},[a("div",{slot:"demo"},[a("md-table",{attrs:{"md-sort":"calories"}},[a("md-table-header",[a("md-table-row",[a("md-table-head",{attrs:{"md-sort-by":"dessert"}},[e._v("Dessert (100g serving)")]),e._v(" "),a("md-table-head",{attrs:{"md-sort-by":"calories","md-numeric":"","md-tooltip":"The total amount of food energy and the given serving size"}},[e._v("Calories (g)")]),e._v(" "),a("md-table-head",{attrs:{"md-sort-by":"fat","md-numeric":""}},[e._v("Fat (g)")]),e._v(" "),a("md-table-head",{attrs:{"md-sort-by":"carbs","md-numeric":""}},[e._v("Carbs (g)")]),e._v(" "),a("md-table-head",{attrs:{"md-sort-by":"protein","md-numeric":""}},[e._v("Protein (g)")])],1)],1),e._v(" "),a("md-table-body",e._l(5,(function(t,d){return a("md-table-row",{key:d},[a("md-table-cell",[e._v("Dessert Name")]),e._v(" "),e._l(4,(function(t,d){return a("md-table-cell",{key:d,attrs:{"md-numeric":""}},[e._v("10")])}))],2)})))],1)],1),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n Dessert (100g serving)\n Calories (g)\n Fat (g)\n Carbs (g)\n Protein (g)\n \n \n\n \n \n Dessert Name\n 10\n \n \n \n ')])],1)]),e._v(" "),a("example-box",{attrs:{"card-title":"Within cards with pagination"}},[a("div",{slot:"demo"},[a("md-table-card",[a("md-toolbar",[a("h1",{staticClass:"md-title"},[e._v("Nutrition")]),e._v(" "),a("md-button",{staticClass:"md-icon-button"},[a("md-icon",[e._v("filter_list")])],1),e._v(" "),a("md-button",{staticClass:"md-icon-button"},[a("md-icon",[e._v("search")])],1)],1),e._v(" "),a("md-table",{attrs:{"md-sort":"dessert","md-sort-type":"desc"},on:{select:e.onSelect,sort:e.onSort}},[a("md-table-header",[a("md-table-row",[a("md-table-head",{attrs:{"md-sort-by":"dessert"}},[e._v("Dessert (100g serving)")]),e._v(" "),a("md-table-head",{attrs:{"md-sort-by":"calories","md-numeric":"","md-tooltip":"The total amount of food energy and the given serving size"}},[e._v("Calories (g)")]),e._v(" "),a("md-table-head",{attrs:{"md-sort-by":"fat","md-numeric":""}},[e._v("Fat (g)")]),e._v(" "),a("md-table-head",[a("md-icon",[e._v("message")]),e._v(" "),a("span",[e._v("Comments")])],1)],1)],1),e._v(" "),a("md-table-body",e._l(e.nutrition,(function(t,d){return a("md-table-row",{key:d,attrs:{"md-item":t,"md-auto-select":"","md-selection":""}},e._l(t,(function(t,d){return"type"!==d?a("md-table-cell",{key:d,attrs:{"md-numeric":"dessert"!==d&&"comment"!==d}},[e._v("\n "+e._s(t)+"\n ")]):e._e()})))})))],1),e._v(" "),a("md-table-pagination",{attrs:{"md-size":"5","md-total":"10","md-page":"1","md-label":"Rows","md-separator":"of","md-page-options":[5,10,25,50]},on:{pagination:e.onPagination}})],1),e._v(" "),a("div",{staticClass:"output"},[a("h2",{staticClass:"md-title"},[e._v("Selected Data")]),e._v(" "),a("pre",[e._v(e._s(e.selectedData))])]),e._v(" "),a("div",{staticClass:"output"},[a("h2",{staticClass:"md-title"},[e._v("Current Sort")]),e._v(" "),a("pre",[e._v(e._s(e.sort))])]),e._v(" "),a("div",{staticClass:"output"},[a("h2",{staticClass:"md-title"},[e._v("Current Pagination")]),e._v(" "),a("pre",[e._v(e._s(e.page))])])],1),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n
\n \n filter_list\n \n\n \n search\n \n \n\n \n \n delete\n \n\n \n more_vert\n \n \n\n \n \n \n Dessert (100g serving)\n Type\n Calories (g)\n Fat (g)\n \n message\n Comments\n \n \n \n\n \n \n \n '+e._s("{{ column }}")+'\n\n \n edit\n \n\n \n Ice Cream\n Pastry\n Other\n \n\n '+e._s("{{ column }}")+"\n \n \n \n \n \n ")]),e._v(" "),a("code-block",{attrs:{lang:"javascript"}},[e._v("\n export default {\n data: () => ({\n nutrition: [\n {\n dessert: 'Frozen yogurt',\n type: 'ice_cream',\n calories: '159',\n fat: '6.0',\n comment: 'Icy'\n },\n {\n dessert: 'Ice cream sandwich',\n type: 'ice_cream',\n calories: '237',\n fat: '9.0',\n comment: 'Super Tasty'\n },\n {\n dessert: 'Eclair',\n type: 'pastry',\n calories: '262',\n fat: '16.0',\n comment: ''\n },\n {\n dessert: 'Cupcake',\n type: 'pastry',\n calories: '305',\n fat: '3.7',\n comment: ''\n },\n {\n dessert: 'Gingerbread',\n type: 'other',\n calories: '356',\n fat: '16.0',\n comment: ''\n }\n ],\n })\n }\n ")])],1)])],1)])],1)},staticRenderFns:[function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("md-table",[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Dessert (100g serving)")]),e._v(" "),a("md-table-head",{attrs:{"md-numeric":""}},[e._v("Calories (g)")]),e._v(" "),a("md-table-head",{attrs:{"md-numeric":""}},[e._v("Fat (g)")]),e._v(" "),a("md-table-head",{attrs:{"md-numeric":""}},[e._v("Carbs (g)")]),e._v(" "),a("md-table-head",{attrs:{"md-numeric":""}},[e._v("Protein (g)")])],1)],1),e._v(" "),a("md-table-body",e._l(5,(function(t,d){return a("md-table-row",{key:d},[a("md-table-cell",[e._v("Dessert Name")]),e._v(" "),e._l(4,(function(t,d){return a("md-table-cell",{key:d,attrs:{"md-numeric":""}},[e._v("10")])}))],2)})))],1)}]}},545:function(e,t,a){var d=a(224);"string"==typeof d&&(d=[[e.id,d,""]]);a(2)(d,{});d.locals&&(e.exports=d.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/1.06ee0bed.js b/dist/docs/releases/v0.6.0/1.06ee0bed.js
new file mode 100644
index 0000000..e5a1a8a
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/1.06ee0bed.js
@@ -0,0 +1 @@
+webpackJsonp([1,32],{115:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={data:function(){return{progress:0,progressInterval:null,done:!1,transition:!0}},methods:{startProgress:function(){var e=this;this.progressInterval=window.setInterval((function(){e.progress+=3,e.progress>115&&(e.done=!0,window.clearInterval(e.progressInterval),window.setTimeout((function(){e.done=!1}),3e3))}),100)},restartProgress:function(){var e=this;this.progress=0,this.transition=!1,this.done=!1,window.clearInterval(this.progressInterval),window.setTimeout((function(){e.transition=!0,e.startProgress()}),600)}},mounted:function(){this.startProgress()}},e.exports=t.default},253:function(e,t,n){t=e.exports=n(1)(),t.push([e.id,".spinner-demo[data-v-9c4b5ba4]{min-height:55px}.complete-example[data-v-9c4b5ba4]{width:56px;height:56px;position:relative}.complete-example .md-fab[data-v-9c4b5ba4]{margin:0}.complete-example .md-spinner[data-v-9c4b5ba4]{position:absolute;top:50%;left:50%;-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}",""])},361:function(e,t,n){var s,r;n(574),s=n(115);var a=n(520);r=s=s||{},"object"!=typeof s.default&&"function"!=typeof s.default||(r=s=s.default),"function"==typeof r&&(r=r.options),r.render=a.render,r.staticRenderFns=a.staticRenderFns,r._scopeId="data-v-9c4b5ba4",e.exports=s},520:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("page-content",{attrs:{"page-title":"Components - Spinner"}},[n("docs-component",[n("div",{slot:"description"},[n("p",[e._v("Progress and activity indicators are visual indications of an app loading content.")]),e._v(" "),n("p",[e._v("The following classes can be applied to change the color palette:")]),e._v(" "),n("ul",{staticClass:"md-body-2"},[n("li",[n("code",[e._v("md-accent")])]),e._v(" "),n("li",[n("code",[e._v("md-warn")])])])]),e._v(" "),n("div",{slot:"api"},[n("api-table",{attrs:{name:"md-spinner"}},[n("md-table",{slot:"properties"},[n("md-table-header",[n("md-table-row",[n("md-table-head",[e._v("Name")]),e._v(" "),n("md-table-head",[e._v("Type")]),e._v(" "),n("md-table-head",[e._v("Description")])],1)],1),e._v(" "),n("md-table-body",[n("md-table-row",[n("md-table-cell",[e._v("md-size")]),e._v(" "),n("md-table-cell",[n("code",[e._v("Number")])]),e._v(" "),n("md-table-cell",[e._v("The spinner size. Default "),n("code",[e._v("50")])])],1),e._v(" "),n("md-table-row",[n("md-table-cell",[e._v("md-stroke")]),e._v(" "),n("md-table-cell",[n("code",[e._v("Number")])]),e._v(" "),n("md-table-cell",[e._v("The line width. Default "),n("code",[e._v("3.5")])])],1),e._v(" "),n("md-table-row",[n("md-table-cell",[e._v("md-indeterminate")]),e._v(" "),n("md-table-cell",[n("code",[e._v("Boolean")])]),e._v(" "),n("md-table-cell",[e._v("Enable the indeterminate state. Default "),n("code",[e._v("false")])])],1),e._v(" "),n("md-table-row",[n("md-table-cell",[e._v("md-progress")]),e._v(" "),n("md-table-cell",[n("code",[e._v("Number")])]),e._v(" "),n("md-table-cell",[e._v("Define the current progress of the spinner. Default "),n("code",[e._v("0")])])],1)],1)],1)],1)],1),e._v(" "),n("div",{slot:"example"},[n("example-box",{attrs:{"card-title":"Determinate"}},[n("div",{staticClass:"spinner-demo",slot:"demo"},[n("md-button",{staticClass:"md-primary md-raised",nativeOn:{click:function(t){e.restartProgress(t)}}},[e._v("Restart")]),e._v(" "),e.transition?n("md-spinner",{attrs:{"md-progress":e.progress}}):e._e(),e._v(" "),e.transition?n("md-spinner",{staticClass:"md-accent",attrs:{"md-progress":e.progress}}):e._e(),e._v(" "),e.transition?n("md-spinner",{staticClass:"md-warn",attrs:{"md-progress":e.progress}}):e._e()],1),e._v(" "),n("div",{slot:"code"},[n("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n ')])],1)]),e._v(" "),n("example-box",{attrs:{"card-title":"Indeterminate"}},[n("div",{staticClass:"spinner-demo",slot:"demo"},[n("md-spinner",{attrs:{"md-indeterminate":""}}),e._v(" "),n("md-spinner",{staticClass:"md-accent",attrs:{"md-indeterminate":""}}),e._v(" "),n("md-spinner",{staticClass:"md-warn",attrs:{"md-indeterminate":""}})],1),e._v(" "),n("div",{slot:"code"},[n("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n ')])],1)]),e._v(" "),n("example-box",{attrs:{"card-title":"Sizes"}},[n("div",{staticClass:"spinner-demo",slot:"demo"},[n("md-spinner",{staticClass:"md-accent",attrs:{"md-size":20,"md-indeterminate":""}}),e._v(" "),n("md-spinner",{staticClass:"md-warn",attrs:{"md-size":60,"md-indeterminate":""}}),e._v(" "),n("md-spinner",{attrs:{"md-size":150,"md-indeterminate":""}}),e._v(" "),n("md-spinner",{staticClass:"md-accent",attrs:{"md-size":20,"md-stroke":2.5,"md-indeterminate":""}}),e._v(" "),n("md-spinner",{staticClass:"md-warn",attrs:{"md-size":60,"md-stroke":1.5,"md-indeterminate":""}}),e._v(" "),n("md-spinner",{attrs:{"md-size":150,"md-stroke":1,"md-indeterminate":""}})],1),e._v(" "),n("div",{slot:"code"},[n("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n\n \n \n \n ')])],1)]),e._v(" "),n("example-box",{attrs:{"card-title":"Complete Example"}},[n("div",{slot:"demo"},[n("md-theme",{staticClass:"complete-example",attrs:{"md-name":"orange"}},[n("md-button",{staticClass:"md-fab",class:{"md-primary":e.done},nativeOn:{click:function(t){e.restartProgress(t)}}},[e.done?e._e():n("md-icon",[e._v("cloud_upload")]),e._v(" "),e.done?n("md-icon",[e._v("done")]):e._e()],1),e._v(" "),e.transition&&e.progress<115?n("md-spinner",{attrs:{"md-size":74,"md-stroke":2.2,"md-progress":e.progress}}):e._e()],1)],1),e._v(" "),n("div",{slot:"code"},[n("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n cloud_upload\n done\n \n\n \n \n ')]),e._v(" "),n("code-block",{attrs:{lang:"sass"}},[e._v("\n .complete-example {\n width: 56px;\n height: 56px;\n position: relative;\n\n .md-fab {\n margin: 0;\n }\n\n .md-spinner {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n }\n }\n ")]),e._v(" "),n("code-block",{attrs:{lang:"javascript"}},[e._v("\n export default {\n data: () => ({\n progress: 0,\n progressInterval: null,\n done: false,\n transition: true\n }),\n methods: {\n startProgress() {\n this.progressInterval = window.setInterval(() => {\n this.progress += 3;\n\n if (this.progress > 115) {\n this.done = true;\n window.clearInterval(this.progressInterval);\n window.setTimeout(() => {\n this.done = false;\n }, 3000);\n }\n }, 100);\n },\n restartProgress() {\n this.progress = 0;\n this.transition = false;\n this.done = false;\n\n window.clearInterval(this.progressInterval);\n window.setTimeout(() => {\n this.transition = true;\n this.startProgress();\n }, 600);\n }\n }\n };\n ")])],1)])],1)])],1)},staticRenderFns:[]}},574:function(e,t,n){var s=n(253);"string"==typeof s&&(s=[[e.id,s,""]]);n(2)(s,{});s.locals&&(e.exports=s.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/10.c7e6c3e5.js b/dist/docs/releases/v0.6.0/10.c7e6c3e5.js
new file mode 100644
index 0000000..b038421
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/10.c7e6c3e5.js
@@ -0,0 +1 @@
+webpackJsonp([10,32],{257:function(t,a,n){a=t.exports=n(1)(),a.push([t.id,"section[data-v-caa7bc1c]{max-width:960px}section+section[data-v-caa7bc1c]{margin-top:56px}.app-example .page-layout[data-v-caa7bc1c]{display:-ms-flexbox;display:flex}.app-example .column[data-v-caa7bc1c]{-ms-flex:1;flex:1;background-color:rgba(0,0,0,.06)}.app-example .column+.column[data-v-caa7bc1c]{margin-left:16px}.app-example .md-list[data-v-caa7bc1c]{background:none}.app-example .md-subheading[data-v-caa7bc1c]{padding:16px;display:block}.app-example .item-text[data-v-caa7bc1c]{-ms-flex:1;flex:1}.app-example .md-checkbox[data-v-caa7bc1c]{margin-right:16px}.app-example .md-button[data-v-caa7bc1c]{margin-left:16px}.card-layout[data-v-caa7bc1c]{margin:16px 15%;display:-ms-flexbox;display:flex}.card-layout .column[data-v-caa7bc1c]{-ms-flex:1;flex:1}.card-layout .column+.column[data-v-caa7bc1c]{margin-left:8px}.card-layout .md-card+.md-card[data-v-caa7bc1c]{margin-top:8px}",""])},370:function(t,a,n){var e,d;n(578);var m=n(530);d=e=e||{},"object"!=typeof e.default&&"function"!=typeof e.default||(d=e=e.default),"function"==typeof d&&(d=d.options),d.render=m.render,d.staticRenderFns=m.staticRenderFns,d._scopeId="data-v-caa7bc1c",t.exports=e},530:function(t,a){t.exports={render:function(){var t=this,a=t.$createElement,n=t._self._c||a;return n("page-content",{attrs:{"page-title":"Themes - Dynamic Themes"}},[n("docs-component",[n("div",{slot:"description"},[n("p",[t._v("Vue Material have a complete theme suite. You can create several themes and apply them on-demand. Like on this documentation website you can set a different theme per-page using the API. But you can have a advanced way to change themes using dynamic themes.")]),t._v(" "),n("p",[t._v("You can apply a theme only in a single area of your application using the "),n("code",[t._v("")]),t._v(". If the theme component have only one child element then the theme definition will be attached to this particular element. In other case the component will wrap all of it's children in a "),n("code",[t._v("
")]),t._v(" tag (or you can customize the output tag).")]),t._v(" "),n("p",[t._v("Also every single component in Vue Material suite have a "),n("code",[t._v("md-theme")]),t._v(" attribute to set his theme.")]),t._v(" "),n("p",[t._v("All the components will inherit all theme properties from it's parents. If the direct parent doesn't have a theme definition the theme will be resolved by its closest parent or the current theme of the entire application.")])]),t._v(" "),n("div",{slot:"api"},[n("api-table",{attrs:{name:"md-theme"}},[n("md-table",{slot:"properties"},[n("md-table-header",[n("md-table-row",[n("md-table-head",[t._v("Name")]),t._v(" "),n("md-table-head",[t._v("Type")]),t._v(" "),n("md-table-head",[t._v("Description")])],1)],1),t._v(" "),n("md-table-body",[n("md-table-row",[n("md-table-cell",[t._v("md-name")]),t._v(" "),n("md-table-cell",[n("code",[t._v("String")])]),t._v(" "),n("md-table-cell",[t._v("The name of the theme to be applied.")])],1),t._v(" "),n("md-table-row",[n("md-table-cell",[t._v("md-tag")]),t._v(" "),n("md-table-cell",[n("code",[t._v("String")])]),t._v(" "),n("md-table-cell",[t._v("The tag to be applied to wrap all it's children elements.")])],1)],1)],1)],1)],1),t._v(" "),n("div",{slot:"example"},[n("example-box",{attrs:{"card-title":"Component"}},[n("div",{slot:"demo"},[n("div",{staticClass:"app-example"},[n("md-whiteframe",{attrs:{"md-tag":"md-toolbar","md-elevation":"1"}},[n("span",{staticClass:"md-title"},[t._v("Life Organizer 2.0")])]),t._v(" "),n("div",{staticClass:"page-layout"},[n("md-theme",{attrs:{"md-name":"indigo"}},[n("div",{staticClass:"column"},[n("strong",{staticClass:"md-subheading"},[t._v("Shopping list")]),t._v(" "),n("md-list",[n("md-list-item",[n("md-checkbox",{staticClass:"md-primary md-list-action"}),t._v(" "),n("span",{staticClass:"item-text"},[t._v("French bread")])],1),t._v(" "),n("md-list-item",[n("md-checkbox",{staticClass:"md-primary md-list-action",attrs:{value:!0}}),t._v(" "),n("span",{staticClass:"item-text"},[t._v("Brazilian Cheese Bread")])],1),t._v(" "),n("md-list-item",[n("md-checkbox",{staticClass:"md-primary md-list-action"}),t._v(" "),n("span",{staticClass:"item-text"},[t._v("Italian Bread")])],1)],1)],1)]),t._v(" "),n("md-theme",{attrs:{"md-name":"green"}},[n("div",{staticClass:"column"},[n("strong",{staticClass:"md-subheading"},[t._v("Todo List")]),t._v(" "),n("md-list",[n("md-list-item",[n("md-checkbox",{staticClass:"md-primary md-list-action"}),t._v(" "),n("span",{staticClass:"item-text"},[t._v("Create new components")])],1),t._v(" "),n("md-list-item",[n("md-checkbox",{staticClass:"md-primary md-list-action",attrs:{value:!0}}),t._v(" "),n("span",{staticClass:"item-text"},[t._v("Answer Github issues")])],1)],1)],1)]),t._v(" "),n("md-theme",{attrs:{"md-name":"orange"}},[n("div",{staticClass:"column"},[n("strong",{staticClass:"md-subheading"},[t._v("Notes")]),t._v(" "),n("md-list",[n("md-list-item",[n("span",{staticClass:"item-text"},[t._v("Wake up early")]),t._v(" "),n("md-button",{staticClass:"md-icon-button md-list-action"},[n("md-icon",[t._v("star")])],1)],1),t._v(" "),n("md-list-item",[n("span",{staticClass:"item-text"},[t._v("Have breakfast everyday")]),t._v(" "),n("md-button",{staticClass:"md-icon-button md-list-action"},[n("md-icon",{staticClass:"md-primary"},[t._v("star")])],1)],1),t._v(" "),n("md-list-item",[n("span",{staticClass:"item-text"},[t._v("Contribution")]),t._v(" "),n("md-button",{staticClass:"md-icon-button md-list-action"},[n("md-icon",{staticClass:"md-primary"},[t._v("star")])],1)],1),t._v(" "),n("md-list-item",[n("span",{staticClass:"item-text"},[t._v("Travels")]),t._v(" "),n("md-button",{staticClass:"md-icon-button md-list-action"},[n("md-icon",{staticClass:"md-primary"},[t._v("star")])],1)],1)],1)],1)])],1)],1)]),t._v(" "),n("div",{slot:"code"},[n("code-block",{attrs:{lang:"xml"}},[t._v('\n
\n ')]),t._v(" "),n("code-block",{attrs:{lang:"sass"}},[t._v("\n .card-layout {\n margin: 16px 15%;\n display: flex;\n\n .column {\n flex: 1;\n\n + .column {\n margin-left: 8px;\n }\n }\n\n .md-card + .md-card {\n margin-top: 8px;\n }\n }\n ")])],1)])],1)])],1)},staticRenderFns:[]}},578:function(t,a,n){var e=n(257);"string"==typeof e&&(e=[[t.id,e,""]]);n(2)(e,{});e.locals&&(t.exports=e.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/11.fd21e8e8.js b/dist/docs/releases/v0.6.0/11.fd21e8e8.js
new file mode 100644
index 0000000..8743598
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/11.fd21e8e8.js
@@ -0,0 +1 @@
+webpackJsonp([11,32],{254:function(s,a,t){a=s.exports=t(1)(),a.push([s.id,".demo>[data-v-a5e4ce48]{margin:.5em 0;display:block}",""])},372:function(s,a,t){var e,n;t(575);var i=t(523);n=e=e||{},"object"!=typeof e.default&&"function"!=typeof e.default||(n=e=e.default),"function"==typeof n&&(n=n.options),n.render=i.render,n.staticRenderFns=i.staticRenderFns,n._scopeId="data-v-a5e4ce48",s.exports=e},523:function(s,a){s.exports={render:function(){var s=this,a=s.$createElement,t=s._self._c||a;return t("page-content",{attrs:{"page-title":"UI Elements - Typography"}},[t("docs-component",[t("div",{slot:"description"},[t("h2",{staticClass:"md-title"},[s._v("Styles")]),s._v(" "),t("p",[s._v("Too many type sizes and styles at once can wreck any layout. A typographic scale has a limited set of type sizes that work well together along with the layout grid.")]),s._v(" "),t("h2",{staticClass:"md-title"},[s._v("Typeface")]),s._v(" "),t("p",[s._v("Roboto has been refined extensively to work across the wider set of supported platforms. It is slightly wider and rounder, giving it greater clarity and making it more optimistic.")])]),s._v(" "),t("div",{slot:"example"},[t("example-box",{attrs:{"card-title":"Default"}},[t("div",{staticClass:"demo",slot:"demo"},[t("span",{staticClass:"md-display-4"},[s._v("Display 4")]),s._v(" "),t("span",{staticClass:"md-display-3"},[s._v("Display 3")]),s._v(" "),t("span",{staticClass:"md-display-2"},[s._v("Display 2")]),s._v(" "),t("span",{staticClass:"md-display-1"},[s._v("Display 1")]),s._v(" "),t("span",{staticClass:"md-headline"},[s._v("Headline")]),s._v(" "),t("span",{staticClass:"md-title"},[s._v("Title")]),s._v(" "),t("span",{staticClass:"md-subheading"},[s._v("Subheading")]),s._v(" "),t("span",{staticClass:"md-body-2"},[s._v("Body 2")]),s._v(" "),t("span",{staticClass:"md-body-1"},[s._v("Body 1")]),s._v(" "),t("span",{staticClass:"md-caption"},[s._v("Caption")]),s._v(" "),t("a",{attrs:{href:"#/typography"}},[s._v("Link")])]),s._v(" "),t("div",{slot:"code"},[t("code-block",{attrs:{lang:"xml"}},[s._v('\n Display 4\n Display 3\n Display 2\n Display 1\n Headline\n Title\n Subheading\n Body 2\n Body 1\n Caption\n Link\n ')])],1)])],1)])],1)},staticRenderFns:[]}},575:function(s,a,t){var e=t(254);"string"==typeof e&&(e=[[s.id,e,""]]);t(2)(e,{});e.locals&&(s.exports=e.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/12.cb3c1a2d.js b/dist/docs/releases/v0.6.0/12.cb3c1a2d.js
new file mode 100644
index 0000000..52fc3ba
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/12.cb3c1a2d.js
@@ -0,0 +1 @@
+webpackJsonp([12,32],{252:function(t,n,i){n=t.exports=i(1)(),n.push([t.id,".phone-viewport[data-v-819e694e]{height:400px}.custom-list .md-list-action[data-v-819e694e]{position:absolute;top:8px;right:16px;pointer-events:auto;z-index:2}.custom-list .md-icon[data-v-819e694e]{color:rgba(0,0,0,.26)}",""])},354:function(t,n,i){var s,a;i(573);var m=i(515);a=s=s||{},"object"!=typeof s.default&&"function"!=typeof s.default||(a=s=s.default),"function"==typeof a&&(a=a.options),a.render=m.render,a.staticRenderFns=m.staticRenderFns,a._scopeId="data-v-819e694e",t.exports=s},515:function(t,n){t.exports={render:function(){var t=this,n=t.$createElement,i=t._self._c||n;return i("page-content",{attrs:{"page-title":"Components - List"}},[i("docs-component",[i("div",{slot:"description"},[i("p",[t._v("Lists are best suited to presenting a homogeneous data type or sets of data types, such as images and text. They are optimized for reading comprehension while differentiating either between similar data types, or qualities within a single data type.")]),t._v(" "),i("p",[t._v("The "),i("code",[t._v("md-list")]),t._v(" component have some auxiliary classes to align content and display actions. All of them can be any HTML tag:")]),t._v(" "),i("ul",[i("li",[i("code",[t._v(".md-list-action")]),t._v(": Used to display a action on the right side of a list item. Commonly used to display a button with a single action.")]),t._v(" "),i("li",[i("code",[t._v(".md-list-text-container")]),t._v(": Used to align text horizontally with icons and actions. Used in double and triple lines.")]),t._v(" "),i("li",[i("code",[t._v(".md-divider")]),t._v(": Add a horizontal line between list items.")])])]),t._v(" "),i("div",{slot:"api"},[i("api-table",{attrs:{name:"md-list"}},[i("md-table",{slot:"classes"},[i("md-table-header",[i("md-table-row",[i("md-table-head",[t._v("Name")]),t._v(" "),i("md-table-head",[t._v("Description")])],1)],1),t._v(" "),i("md-table-body",[i("md-table-row",[i("md-table-cell",[t._v("md-dense")]),t._v(" "),i("md-table-cell",[t._v("Make the list dense and compact")])],1),t._v(" "),i("md-table-row",[i("md-table-cell",[t._v("md-double-line")]),t._v(" "),i("md-table-cell",[t._v("Make list items to support double line")])],1),t._v(" "),i("md-table-row",[i("md-table-cell",[t._v("md-triple-line")]),t._v(" "),i("md-table-cell",[t._v("Make list items to support triple line")])],1)],1)],1)],1),t._v(" "),i("api-table",{attrs:{name:"md-list-item"}},[i("p",[t._v("Display a single item inside lists")]),t._v(" "),i("md-table",{slot:"properties"},[i("md-table-header",[i("md-table-row",[i("md-table-head",[t._v("Name")]),t._v(" "),i("md-table-head",[t._v("Type")]),t._v(" "),i("md-table-head",[t._v("Description")])],1)],1),t._v(" "),i("md-table-body",[i("md-table-row",[i("md-table-cell",[t._v("href")]),t._v(" "),i("md-table-cell",[i("code",[t._v("String")])]),t._v(" "),i("md-table-cell",[t._v("The link that the item should redirect to.")])],1),t._v(" "),i("md-table-row",[i("md-table-cell",[t._v("target")]),t._v(" "),i("md-table-cell",[i("code",[t._v("String")])]),t._v(" "),i("md-table-cell",[t._v("The target for opening the href link. Normally used for "),i("code",[t._v("_blank")]),t._v(" cases.")])],1),t._v(" "),i("md-table-row",[i("md-table-cell",[t._v("disabled")]),t._v(" "),i("md-table-cell",[i("code",[t._v("Boolean")])]),t._v(" "),i("md-table-cell",[t._v("Disable the item and prevent his actions. Default "),i("code",[t._v("false")])])],1)],1)],1),t._v(" "),i("md-table",{slot:"classes"},[i("md-table-header",[i("md-table-row",[i("md-table-head",[t._v("Name")]),t._v(" "),i("md-table-head",[t._v("Description")])],1)],1),t._v(" "),i("md-table-body",[i("md-table-row",[i("md-table-cell",[t._v("md-inset")]),t._v(" "),i("md-table-cell",[t._v("Add an empty space on the left of the table. "),i("br"),t._v("Useful to show list items without icons aligned with another that have an icon.")])],1)],1)],1)],1),t._v(" "),i("api-table",{attrs:{name:"md-list-expand"}},[i("p",[t._v("Create a expansion accordion automatically inside lists")]),t._v(" "),i("p",[t._v("No options available")])])],1),t._v(" "),i("div",{slot:"example"},[i("example-box",{attrs:{"card-title":"Single Line"}},[i("div",{slot:"demo"},[i("div",{staticClass:"phone-viewport"},[i("md-list",[i("md-list-item",[i("md-icon",[t._v("move_to_inbox")]),t._v(" "),i("span",[t._v("Inbox")])],1),t._v(" "),i("md-list-item",[i("md-icon",[t._v("send")]),t._v(" "),i("span",[t._v("Sent Mail")])],1),t._v(" "),i("md-list-item",[i("md-icon",[t._v("delete")]),t._v(" "),i("span",[t._v("Trash")])],1),t._v(" "),i("md-list-item",[i("md-icon",[t._v("error")]),t._v(" "),i("span",[t._v("Spam")]),t._v(" "),i("md-divider",{staticClass:"md-inset"})],1),t._v(" "),i("md-list-item",[i("md-avatar",[i("img",{attrs:{src:"https://placeimg.com/40/40/people/5",alt:"People"}})]),t._v(" "),i("span",[t._v("Abbey Christansen")]),t._v(" "),i("md-button",{staticClass:"md-icon-button md-list-action"},[i("md-icon",{staticClass:"md-primary"},[t._v("chat_bubble")])],1)],1),t._v(" "),i("md-list-item",[i("md-avatar",[i("img",{attrs:{src:"https://placeimg.com/40/40/people/1",alt:"People"}})]),t._v(" "),i("span",[t._v("Alex Nelson")]),t._v(" "),i("md-button",{staticClass:"md-icon-button md-list-action"},[i("md-icon",{staticClass:"md-primary"},[t._v("chat_bubble")])],1)],1),t._v(" "),i("md-list-item",[i("md-avatar",[i("img",{attrs:{src:"https://placeimg.com/40/40/people/6",alt:"People"}})]),t._v(" "),i("span",[t._v("Mary Johnson")]),t._v(" "),i("md-button",{staticClass:"md-icon-button md-list-action"},[i("md-icon",[t._v("chat_bubble")])],1)],1)],1)],1),t._v(" "),i("div",{staticClass:"phone-viewport"},[i("md-list",{staticClass:"md-dense"},[i("md-list-item",[i("md-icon",[t._v("move_to_inbox")]),t._v(" "),i("span",[t._v("Inbox")])],1),t._v(" "),i("md-list-item",[i("md-icon",[t._v("send")]),t._v(" "),i("span",[t._v("Sent Mail")])],1),t._v(" "),i("md-list-item",[i("md-icon",[t._v("delete")]),t._v(" "),i("span",[t._v("Trash")])],1),t._v(" "),i("md-list-item",[i("md-icon",[t._v("error")]),t._v(" "),i("span",[t._v("Spam")]),t._v(" "),i("md-divider",{staticClass:"md-inset"})],1),t._v(" "),i("md-list-item",[i("md-avatar",[i("img",{attrs:{src:"https://placeimg.com/40/40/people/5",alt:"People"}})]),t._v(" "),i("span",[t._v("Abbey Christansen")]),t._v(" "),i("md-button",{staticClass:"md-icon-button md-list-action"},[i("md-icon",{staticClass:"md-primary"},[t._v("chat_bubble")])],1)],1),t._v(" "),i("md-list-item",[i("md-avatar",[i("img",{attrs:{src:"https://placeimg.com/40/40/people/1",alt:"People"}})]),t._v(" "),i("span",[t._v("Alex Nelson")]),t._v(" "),i("md-button",{staticClass:"md-icon-button md-list-action"},[i("md-icon",{staticClass:"md-primary"},[t._v("chat_bubble")])],1)],1),t._v(" "),i("md-list-item",[i("md-avatar",[i("img",{attrs:{src:"https://placeimg.com/40/40/people/6",alt:"People"}})]),t._v(" "),i("span",[t._v("Mary Johnson")]),t._v(" "),i("md-button",{staticClass:"md-icon-button md-list-action"},[i("md-icon",[t._v("chat_bubble")])],1)],1)],1)],1)]),t._v(" "),i("div",{slot:"code"},[i("code-block",{attrs:{lang:"xml"}},[t._v('\n
\n ')])],1)]),t._v(" "),i("example-box",{attrs:{"card-title":"Triple Line"}},[i("div",{slot:"demo"},[i("div",{staticClass:"phone-viewport"},[i("md-list",{staticClass:"custom-list md-triple-line"},[i("md-list-item",[i("md-avatar",[i("img",{attrs:{src:"https://placeimg.com/40/40/people/1",alt:"People"}})]),t._v(" "),i("div",{staticClass:"md-list-text-container"},[i("span",[t._v("Ali Connors")]),t._v(" "),i("span",[t._v("Brunch this weekend?")]),t._v(" "),i("p",[t._v("I'll be in your neighborhood doing errands...")])]),t._v(" "),i("md-button",{staticClass:"md-icon-button md-list-action"},[i("md-icon",{staticClass:"md-primary"},[t._v("star")])],1),t._v(" "),i("md-divider",{staticClass:"md-inset"})],1),t._v(" "),i("md-list-item",[i("md-avatar",[i("img",{attrs:{src:"https://placeimg.com/40/40/people/6",alt:"People"}})]),t._v(" "),i("div",{staticClass:"md-list-text-container"},[i("span",[t._v("me, Scott, Jennifer")]),t._v(" "),i("span",[t._v("Summer BBQ")]),t._v(" "),i("p",[t._v("Wish I could come, but I'm out of town ...")])]),t._v(" "),i("md-button",{staticClass:"md-icon-button md-list-action"},[i("md-icon",[t._v("star_border")])],1),t._v(" "),i("md-divider",{staticClass:"md-inset"})],1),t._v(" "),i("md-list-item",[i("md-avatar",[i("img",{attrs:{src:"https://placeimg.com/40/40/people/5",alt:"People"}})]),t._v(" "),i("div",{staticClass:"md-list-text-container"},[i("span",[t._v("Sandra Adams")]),t._v(" "),i("span",[t._v("Oui oui")]),t._v(" "),i("p",[t._v("Do you have Paris recommendations ...")])]),t._v(" "),i("md-button",{staticClass:"md-icon-button md-list-action"},[i("md-icon",[t._v("star_border")])],1),t._v(" "),i("md-divider",{staticClass:"md-inset"})],1),t._v(" "),i("md-list-item",[i("md-avatar",[i("img",{attrs:{src:"https://placeimg.com/40/40/people/8",alt:"People"}})]),t._v(" "),i("div",{staticClass:"md-list-text-container"},[i("span",[t._v("Trevor Hansen")]),t._v(" "),i("span",[t._v("Order confirmation")]),t._v(" "),i("p",[t._v("Thank you for your recent order from ...")])]),t._v(" "),i("md-button",{staticClass:"md-icon-button md-list-action"},[i("md-icon",[t._v("star_border")])],1),t._v(" "),i("md-divider",{staticClass:"md-inset"})],1)],1)],1),t._v(" "),i("div",{staticClass:"phone-viewport"},[i("md-list",{staticClass:"custom-list md-triple-line md-dense"},[i("md-list-item",[i("md-avatar",[i("img",{attrs:{src:"https://placeimg.com/40/40/people/1",alt:"People"}})]),t._v(" "),i("div",{staticClass:"md-list-text-container"},[i("span",[t._v("Ali Connors")]),t._v(" "),i("span",[t._v("Brunch this weekend?")]),t._v(" "),i("p",[t._v("I'll be in your neighborhood doing errands...")])]),t._v(" "),i("md-button",{staticClass:"md-icon-button md-list-action"},[i("md-icon",{staticClass:"md-primary"},[t._v("star")])],1),t._v(" "),i("md-divider",{staticClass:"md-inset"})],1),t._v(" "),i("md-list-item",[i("md-avatar",[i("img",{attrs:{src:"https://placeimg.com/40/40/people/6",alt:"People"}})]),t._v(" "),i("div",{staticClass:"md-list-text-container"},[i("span",[t._v("me, Scott, Jennifer")]),t._v(" "),i("span",[t._v("Summer BBQ")]),t._v(" "),i("p",[t._v("Wish I could come, but I'm out of town ...")])]),t._v(" "),i("md-button",{staticClass:"md-icon-button md-list-action"},[i("md-icon",[t._v("star_border")])],1),t._v(" "),i("md-divider",{staticClass:"md-inset"})],1),t._v(" "),i("md-list-item",[i("md-avatar",[i("img",{attrs:{src:"https://placeimg.com/40/40/people/5",alt:"People"}})]),t._v(" "),i("div",{staticClass:"md-list-text-container"},[i("span",[t._v("Sandra Adams")]),t._v(" "),i("span",[t._v("Oui oui")]),t._v(" "),i("p",[t._v("Do you have Paris recommendations ...")])]),t._v(" "),i("md-button",{staticClass:"md-icon-button md-list-action"},[i("md-icon",[t._v("star_border")])],1),t._v(" "),i("md-divider",{staticClass:"md-inset"})],1),t._v(" "),i("md-list-item",[i("md-avatar",[i("img",{attrs:{src:"https://placeimg.com/40/40/people/8",alt:"People"}})]),t._v(" "),i("div",{staticClass:"md-list-text-container"},[i("span",[t._v("Trevor Hansen")]),t._v(" "),i("span",[t._v("Order confirmation")]),t._v(" "),i("p",[t._v("Thank you for your recent order from ...")])]),t._v(" "),i("md-button",{staticClass:"md-icon-button md-list-action"},[i("md-icon",[t._v("star_border")])],1),t._v(" "),i("md-divider",{staticClass:"md-inset"})],1)],1)],1)]),t._v(" "),i("div",{slot:"code"},[i("code-block",{attrs:{lang:"xml"}},[t._v('\n
\n ')])],1)])],1)])],1)},staticRenderFns:[]}},573:function(t,n,i){var s=i(252);"string"==typeof s&&(s=[[t.id,s,""]]);i(2)(s,{});s.locals&&(t.exports=s.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/13.1cdad18e.js b/dist/docs/releases/v0.6.0/13.1cdad18e.js
new file mode 100644
index 0000000..2f77a80
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/13.1cdad18e.js
@@ -0,0 +1 @@
+webpackJsonp([13,32],{250:function(t,n,a){n=t.exports=a(1)(),n.push([t.id,".md-toolbar+.md-toolbar[data-v-7aafaa90]{margin-top:16px}.complete-example[data-v-7aafaa90]{height:540px;display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;position:relative;overflow:hidden;z-index:1}.complete-example .md-fab[data-v-7aafaa90]{margin:0;position:absolute;bottom:-20px;left:16px}.complete-example .md-title[data-v-7aafaa90]{color:#fff}.complete-example .md-list[data-v-7aafaa90]{overflow:auto}.complete-example .md-list-action .md-icon[data-v-7aafaa90]{color:rgba(0,0,0,.26)}.complete-example .md-avatar-icon .md-icon[data-v-7aafaa90]{color:#fff!important}.complete-example .md-sidenav .md-list-text-container>[data-v-7aafaa90]:nth-child(2){color:hsla(0,0%,100%,.54)}.complete-example .md-account-header .md-list-item:hover .md-button[data-v-7aafaa90]:hover{background-color:inherit}.complete-example .md-account-header .md-avatar-list .md-list-item-container[data-v-7aafaa90]:hover{background:none!important}",""])},366:function(t,n,a){var d,o;a(571);var m=a(510);o=d=d||{},"object"!=typeof d.default&&"function"!=typeof d.default||(o=d=d.default),"function"==typeof o&&(o=o.options),o.render=m.render,o.staticRenderFns=m.staticRenderFns,o._scopeId="data-v-7aafaa90",t.exports=d},510:function(t,n){t.exports={render:function(){var t=this,n=t.$createElement,a=t._self._c||n;return a("page-content",{attrs:{"page-title":"Components - Toolbar"}},[a("docs-component",[a("div",{slot:"description"},[a("p",[t._v("Toolbars appear a step above the content they affect. They may constrain their width to accommodate material passing over them.")]),t._v(" "),a("p",[t._v("You need to wrap all the elements of your toolbar in a element with the class "),a("code",[t._v("md-toolbar-container")]),t._v(" for medium and large toolbars. On large toolbars you can have two containers to push content to bottom.")]),t._v(" "),a("p",[t._v("The following classes can be applied to change the color palette:")]),t._v(" "),a("ul",{staticClass:"md-body-2"},[a("li",[a("code",[t._v("md-accent")])]),t._v(" "),a("li",[a("code",[t._v("md-warn")])]),t._v(" "),a("li",[a("code",[t._v("md-transparent")])])])]),t._v(" "),a("div",{slot:"api"},[a("api-table",{attrs:{name:"md-toolbar"}},[a("md-table",{slot:"classes"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[t._v("Name")]),t._v(" "),a("md-table-head",[t._v("Description")])],1)],1),t._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[t._v("md-dense")]),t._v(" "),a("md-table-cell",[t._v("Create a small and dense toolbar.")])],1),t._v(" "),a("md-table-row",[a("md-table-cell",[t._v("md-medium")]),t._v(" "),a("md-table-cell",[t._v("Create a medium.")])],1),t._v(" "),a("md-table-row",[a("md-table-cell",[t._v("md-large")]),t._v(" "),a("md-table-cell",[t._v("Create a large.")])],1),t._v(" "),a("md-table-row",[a("md-table-cell",[t._v("md-account-header")]),t._v(" "),a("md-table-cell",[t._v("Create a account header toolbar to show user accounts inside sidenav. See example below and the complete example")])],1)],1)],1)],1),t._v(" "),a("api-table",[a("code-block",{attrs:{lang:"xml",height:"none"}},[t._v('\n \n \n \n \n \n \n\n \n\n \n \n \n\n \n \n \n \n\n \n
\n ')]),t._v(" "),a("code-block",{attrs:{lang:"sass"}},[t._v("\n .complete-example {\n height: 540px;\n display: flex;\n flex-flow: column;\n position: relative;\n overflow: hidden;\n z-index: 1;\n\n .md-fab {\n margin: 0;\n position: absolute;\n bottom: -20px;\n left: 16px;\n }\n\n .md-title {\n color: #fff;\n }\n\n .md-list {\n overflow: auto;\n }\n\n .md-list-action .md-icon {\n color: rgba(#000, .26);\n }\n\n .md-avatar-icon .md-icon {\n color: #fff !important;\n }\n\n .md-sidenav .md-list-text-container > :nth-child(2) {\n color: rgba(#fff, .54);\n }\n\n .md-account-header {\n .md-list-item:hover .md-button:hover {\n background-color: inherit;\n }\n\n .md-avatar-list .md-list-item-container:hover {\n background: none !important;\n }\n }\n }\n ")])],1)])],1)])],1)},staticRenderFns:[]}},571:function(t,n,a){var d=a(250);"string"==typeof d&&(d=[[t.id,d,""]]);a(2)(d,{});d.locals&&(t.exports=d.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/14.fd41ec35.js b/dist/docs/releases/v0.6.0/14.fd41ec35.js
new file mode 100644
index 0000000..4af4d81
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/14.fd41ec35.js
@@ -0,0 +1 @@
+webpackJsonp([14,32],{249:function(e,t,a){t=e.exports=a(1)(),t.push([e.id,"section[data-v-7868a37f]{max-width:960px}section+section[data-v-7868a37f]{margin-top:56px}iframe[data-v-7868a37f]{height:550px}",""])},369:function(e,t,a){var n,o;a(570);var i=a(508);o=n=n||{},"object"!=typeof n.default&&"function"!=typeof n.default||(o=n=n.default),"function"==typeof o&&(o=o.options),o.render=i.render,o.staticRenderFns=i.staticRenderFns,o._scopeId="data-v-7868a37f",e.exports=n},508:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("page-content",{attrs:{"page-title":"Themes - Configuration"}},[a("article",{staticClass:"main-content"},[a("section",[a("h2",{staticClass:"md-headline"},[e._v("Theme Engine")]),e._v(" "),a("p",[e._v("When you create a theme the Vue Material will generate all of the styles ondemand so you don't need to create any css file to create them. Everything is generated when the API is called and this is great because you can create a theme anytime you want. After that you can use the declarative directive to apply the theme inside an element.")]),e._v(" "),a("p",[e._v("Most of the components of Vue Material can change it's colors. Every theme has Primary, Accent, Warn and Background colors. Some components also have a Transparent variation to make your layouts cleaner and easy to place on top of another element. E.g. Tabs inside toolbars.")]),e._v(" "),a("p",[e._v("Vue Material use classes to apply those color intentions: "),a("code",[e._v("md-primary")]),e._v(", "),a("code",[e._v("md-accent")]),e._v(", "),a("code",[e._v("md-warn")]),e._v(" and "),a("code",[e._v("md-transparent")]),e._v(". The background color is applied automaticaly.")])]),e._v(" "),a("section",[a("h2",{staticClass:"md-headline"},[e._v("Color Intentions")]),e._v(" "),a("p",[e._v("Color in material design is inspired by bold hues juxtaposed with muted environments, deep shadows, and bright highlights.")]),e._v(" "),a("p",[e._v("Theming allows changing the color of your application. The "),a("a",{attrs:{href:"https://material.google.com/style/color.html#color-color-palette",target:"_blank",rel:"noopener"}},[e._v("Material Design palette")]),e._v(" can be fully applied using Vue Material. You can pass all intentions or just change the intention that you want. The default colors are:")]),e._v(" "),a("ul",[a("li",[e._v("primary - indigo")]),e._v(" "),a("li",[e._v("accent - pink")]),e._v(" "),a("li",[e._v("warn - deep-orange")]),e._v(" "),a("li",[e._v("background - grey")])]),e._v(" "),a("p",[e._v("All of those colors can be applied to create a theme.")]),e._v(" "),a("ul",[a("li",[e._v("red")]),e._v(" "),a("li",[e._v("pink")]),e._v(" "),a("li",[e._v("purple")]),e._v(" "),a("li",[e._v("deep-purple")]),e._v(" "),a("li",[e._v("indigo")]),e._v(" "),a("li",[e._v("blue")]),e._v(" "),a("li",[e._v("light-blue")]),e._v(" "),a("li",[e._v("cyan")]),e._v(" "),a("li",[e._v("teal")]),e._v(" "),a("li",[e._v("green")]),e._v(" "),a("li",[e._v("light-green")]),e._v(" "),a("li",[e._v("lime")]),e._v(" "),a("li",[e._v("yellow")]),e._v(" "),a("li",[e._v("amber")]),e._v(" "),a("li",[e._v("orange")]),e._v(" "),a("li",[e._v("deep-orange")]),e._v(" "),a("li",[e._v("brown")]),e._v(" "),a("li",[e._v("grey")]),e._v(" "),a("li",[e._v("blue-grey")]),e._v(" "),a("li",[e._v("white")]),e._v(" "),a("li",[e._v("black")])])]),e._v(" "),a("section",[a("h3",{staticClass:"md-headline"},[e._v("Registering themes")]),e._v(" "),a("p",[e._v("The default colors will be applied without any change in your code base. But you can change the colors of the "),a("code",[e._v("default")]),e._v(" theme calling the Vue Material API.")]),e._v(" "),a("code-block",{attrs:{lang:"javascript"}},[e._v("\n Vue.material.registerTheme('default', {\n primary: 'blue',\n accent: 'red',\n warn: 'red',\n background: 'grey'\n })\n ")])],1),e._v(" "),a("section",[a("h3",{staticClass:"md-headline"},[e._v("Multiple themes")]),e._v(" "),a("p",[e._v("\n You can call the "),a("code",[e._v("registerTheme")]),e._v(" function how many times you want. However you can pass an object containing all the themes that you need to create:\n ")]),e._v(" "),a("code-block",{attrs:{lang:"javascript"}},[e._v("\n Vue.material.registerTheme({\n app: {\n primary: 'cyan'\n },\n about: {\n primary: 'indigo'\n },\n contact: {\n primary: 'teal'\n }\n })\n ")]),e._v(" "),a("small",[e._v("Note: If you do not pass all the colors the theme will inherit the "),a("strong",[e._v("default colors")]),e._v(".")])],1),e._v(" "),a("section",[a("h3",{staticClass:"md-headline"},[e._v("Custom Shades")]),e._v(" "),a("p",[e._v("To have a full use of the Material Design palette you can specify different shades for each color:")]),e._v(" "),a("code-block",{attrs:{lang:"javascript"}},[e._v("\n Vue.material.registerTheme('about', {\n primary: {\n color: 'indigo',\n hue: 'A200'\n },\n accent: {\n color: 'grey',\n hue: 300\n }\n })\n ")])],1),e._v(" "),a("section",[a("h3",{staticClass:"md-headline"},[e._v("Applying a theme")]),e._v(" "),a("p",[e._v("To change the current theme in your application just call the "),a("code",[e._v("setCurrentTheme")]),e._v(" method from anywhere in your application:")]),e._v(" "),a("code-block",{attrs:{lang:"javascript"}},[e._v("\n Vue.material.setCurrentTheme('about')\n ")]),e._v(" "),a("p",[e._v("Or inside a Vue instance:")]),e._v(" "),a("code-block",{attrs:{lang:"javascript"}},[e._v("\n this.$material.setCurrentTheme('about')\n ")])],1),e._v(" "),a("section",[a("h3",{staticClass:"md-headline"},[e._v("Codepen example")]),e._v(" "),a("iframe",{staticStyle:{width:"100%"},attrs:{height:"550",scrolling:"no",title:"Theme Example",src:"//codepen.io/vue-material/embed/WGavBE/?height=550&theme-id=dark&default-tab=html,result&embed-version=2",frameborder:"no",allowtransparency:"true",allowfullscreen:"true"}},[e._v("See the Pen "),a("a",{attrs:{href:"http://codepen.io/vue-material/pen/WGavBE/"}},[e._v("Theme Example")]),e._v(" by Vue Material ("),a("a",{attrs:{href:"http://codepen.io/vue-material"}},[e._v("@vue-material")]),e._v(") on "),a("a",{attrs:{href:"http://codepen.io"}},[e._v("CodePen")]),e._v(".")])],1)])])},staticRenderFns:[]}},570:function(e,t,a){var n=a(249);"string"==typeof n&&(n=[[e.id,n,""]]);a(2)(n,{});n.locals&&(e.exports=n.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/15.58889e3a.js b/dist/docs/releases/v0.6.0/15.58889e3a.js
new file mode 100644
index 0000000..fc0a4c9
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/15.58889e3a.js
@@ -0,0 +1 @@
+webpackJsonp([15,32],{248:function(a,t,d){t=a.exports=d(1)(),t.push([a.id,".md-avatar+.md-avatar[data-v-71526c58]{margin-left:8px}",""])},341:function(a,t,d){var n,e;d(569);var r=d(505);e=n=n||{},"object"!=typeof n.default&&"function"!=typeof n.default||(e=n=n.default),"function"==typeof e&&(e=e.options),e.render=r.render,e.staticRenderFns=r.staticRenderFns,e._scopeId="data-v-71526c58",a.exports=n},505:function(a,t){a.exports={render:function(){var a=this,t=a.$createElement,d=a._self._c||t;return d("page-content",{attrs:{"page-title":"Components - Avatar"}},[d("docs-component",[d("div",{slot:"description"},[d("p",[a._v("Avatars can be used to represent people. When used with a specific logo, avatars can also be used to represent brand.")]),a._v(" "),d("p",[a._v("The following classes can be applied to change the color palette:")]),a._v(" "),d("ul",{staticClass:"md-body-2"},[d("li",[d("code",[a._v("md-primary")])]),a._v(" "),d("li",[d("code",[a._v("md-accent")])]),a._v(" "),d("li",[d("code",[a._v("md-warn")])])])]),a._v(" "),d("div",{slot:"api"},[d("api-table",{attrs:{name:"md-avatar"}},[d("md-table",{slot:"classes"},[d("md-table-header",[d("md-table-row",[d("md-table-head",[a._v("Name")]),a._v(" "),d("md-table-head",[a._v("Description")])],1)],1),a._v(" "),d("md-table-body",[d("md-table-row",[d("md-table-cell",[a._v("md-avatar-icon")]),a._v(" "),d("md-table-cell",[a._v("Display an icon using md-icon component")])],1),a._v(" "),d("md-table-row",[d("md-table-cell",[a._v("md-large")]),a._v(" "),d("md-table-cell",[a._v("Display large avatar")])],1)],1)],1)],1)],1),a._v(" "),d("div",{slot:"example"},[d("example-box",{attrs:{"card-title":"Default"}},[d("div",{staticClass:"avatar-holder",slot:"demo"},[d("md-avatar",[d("img",{attrs:{src:"assets/avatar.png",alt:"Avatar"}})]),a._v(" "),d("md-avatar",{staticClass:"md-avatar-icon"},[d("md-icon",[a._v("home")])],1),a._v(" "),d("md-avatar",{staticClass:"md-avatar-icon md-primary"},[d("md-icon",[a._v("folder")])],1),a._v(" "),d("md-avatar",{staticClass:"md-avatar-icon md-accent"},[d("md-icon",[a._v("favorite")])],1),a._v(" "),d("md-avatar",{staticClass:"md-avatar-icon md-warn"},[d("md-icon",[a._v("notes")])],1)],1),a._v(" "),d("div",{slot:"code"},[d("code-block",{attrs:{lang:"xml"}},[a._v('\n \n \n \n\n \n home\n \n\n \n folder\n \n\n \n favorite\n \n\n \n notes\n \n ')])],1)]),a._v(" "),d("example-box",{attrs:{"card-title":"Large"}},[d("div",{staticClass:"avatar-holder",slot:"demo"},[d("md-avatar",{staticClass:"md-large"},[d("img",{attrs:{src:"assets/avatar-2.jpg",alt:"People"}})]),a._v(" "),d("md-avatar",{staticClass:"md-avatar-icon md-large"},[d("md-icon",[a._v("home")])],1),a._v(" "),d("md-avatar",{staticClass:"md-avatar-icon md-large md-primary"},[d("md-icon",[a._v("folder")])],1),a._v(" "),d("md-avatar",{staticClass:"md-avatar-icon md-large md-accent"},[d("md-icon",[a._v("favorite")])],1),a._v(" "),d("md-avatar",{staticClass:"md-avatar-icon md-large md-warn"},[d("md-icon",[a._v("notes")])],1)],1),a._v(" "),d("div",{slot:"code"},[d("code-block",{attrs:{lang:"xml"}},[a._v('\n \n \n \n\n \n home\n \n\n \n folder\n \n\n \n favorite\n \n\n \n notes\n \n ')])],1)])],1)])],1)},staticRenderFns:[]}},569:function(a,t,d){var n=d(248);"string"==typeof n&&(n=[[a.id,n,""]]);d(2)(n,{});n.locals&&(a.exports=n.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/16.e2efe67b.js b/dist/docs/releases/v0.6.0/16.e2efe67b.js
new file mode 100644
index 0000000..d2f44fc
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/16.e2efe67b.js
@@ -0,0 +1,2 @@
+webpackJsonp([16,32],{245:function(e,t,a){t=e.exports=a(1)(),t.push([e.id,".card-holder .md-card[data-v-6e7e0ccb]{width:100%;max-width:320px;margin:0 4px 16px;display:inline-block;vertical-align:top}.card-example .md-subhead .md-icon[data-v-6e7e0ccb]{width:16px;min-width:16px;height:16px;min-height:16px;font-size:16px;line-height:16px}.card-example .md-subhead span[data-v-6e7e0ccb]{vertical-align:middle}.card-example .card-reservation[data-v-6e7e0ccb]{margin-top:8px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.card-example .card-reservation .md-icon[data-v-6e7e0ccb]{margin:8px;color:rgba(0,0,0,.54)!important}.card-example .card-reservation .md-button[data-v-6e7e0ccb]{border-radius:2px!important}",""])},345:function(e,t,a){var d,n;a(566);var i=a(501);n=d=d||{},"object"!=typeof d.default&&"function"!=typeof d.default||(n=d=d.default),"function"==typeof n&&(n=n.options),n.render=i.render,n.staticRenderFns=i.staticRenderFns,n._scopeId="data-v-6e7e0ccb",e.exports=d},501:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("page-content",{attrs:{"page-title":"Components - Card"}},[a("docs-component",[a("div",{slot:"description"},[a("p",[e._v("Cards may contain a photo, text, and a link about a single subject. They may display content containing elements of varying size, such as photos with captions of variable length.")]),e._v(" "),a("p",[e._v("The card components are very granular. Every single part of a card is a component. You can combine them in any order that you want, following the same logic of the examples.")]),e._v(" "),a("p",[e._v('You can also use other Material components inside the card, like the "Complete Example".')]),e._v(" "),a("p",[e._v("The following classes can be applied to change the color palette:")]),e._v(" "),a("ul",{staticClass:"md-body-2"},[a("li",[a("code",[e._v("md-primary")])]),e._v(" "),a("li",[a("code",[e._v("md-accent")])]),e._v(" "),a("li",[a("code",[e._v("md-warn")])])])]),e._v(" "),a("div",{slot:"api"},[a("api-table",{attrs:{name:"md-card"}},[a("md-table",{slot:"properties"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("md-with-hover")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Enable full hover elevation in card. Default "),a("code",[e._v("false")])])],1)],1)],1)],1),e._v(" "),a("api-table",{attrs:{name:"md-card-header"}},[a("p",[e._v("Can display titles, subheads, medias and avatars in a header.")]),e._v(" "),a("p",[e._v("No options available")])]),e._v(" "),a("api-table",{attrs:{name:"md-card-header-text"}},[a("p",[e._v('Used inside a card header to group the title and the subhead. Useful to align with an action (like a overflow button) or a media inside headers, like on the "Media" example.')]),e._v(" "),a("p",[e._v("No options available")])]),e._v(" "),a("api-table",{attrs:{name:"md-card-content"}},[a("p",[e._v("Display the content of the card. Most used with plain text or with simple HTML content, like bold and italic tags.")]),e._v(" "),a("p",[e._v("No options available")])]),e._v(" "),a("api-table",{attrs:{name:"md-card-actions"}},[a("p",[e._v("Hold the actions of a card align them on the right. Here you can add "),a("code",[e._v("")]),e._v(" with or without icons.")]),e._v(" "),a("p",[e._v("No options available")])]),e._v(" "),a("api-table",{attrs:{name:"md-card-area"}},[a("div",{slot:"properties"},[a("p",[e._v("A card area create a division inside the card. This will apply a border on the bottom (only works if the card area is not the last element).")]),e._v(" "),a("p",[e._v('You can see an example of use on the "Complete example".')]),e._v(" "),a("md-table",[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("md-inset")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Apply a inset border. Default "),a("code",[e._v("false")])])],1)],1)],1)],1)]),e._v(" "),a("api-table",{attrs:{name:"md-card-media"}},[a("div",{slot:"properties"},[a("p",[e._v("The card media display images (and other types of media) inside cards. Can be used inside and outsite a card header.")]),e._v(" "),a("md-table",[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("md-ratio")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("Resize or clip the image automatically based on the following options: "),a("br"),e._v("1:1 or 1/1, 4:3 or 4/3 and 16:9 or 16/9.")])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("md-medium")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Applies medium size to the media. Works only inside md-card-header. Default "),a("code",[e._v("false")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("md-big")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Applies big size to the media. Works only inside md-card-header. Default "),a("code",[e._v("false")])])],1)],1)],1)],1)]),e._v(" "),a("api-table",{attrs:{name:"md-card-media-actions"}},[a("p",[e._v("Used to align a media and actions side by side.")]),e._v(" "),a("p",[e._v("No options available")])]),e._v(" "),a("api-table",{attrs:{name:"md-card-media-cover"}},[a("div",{slot:"properties"},[a("p",[e._v("You will need to give a "),a("code",[e._v("")]),e._v(" inside this component and a "),a("code",[e._v("")]),e._v(". The media and the area will be automatically be placed in order inside the card.")]),e._v(" "),a("p",[e._v('Take a look at the example: "Image cover with predefined aspect ratio".')]),e._v(" "),a("md-table",[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("md-text-scrim")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Apply a gradient background based on the image. This option increase the legibility of the text applying background colors by extracting the amount of lightness on the image. If the image is dark so the background of the text will be lighter. If it's not dark then the background will be darker. This will be calculated automatically. Default "),a("code",[e._v("false")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("md-solid")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Applies a solid background with the same calculation logic of the md-text-scrim. Default "),a("code",[e._v("false")])])],1)],1)],1)],1)]),e._v(" "),a("api-table",{attrs:{name:"md-card-expand"}},[a("p",[e._v('Create a expansible content area inside cards. Useful to "show more" content or load them on demand.')]),e._v(" "),a("p",[e._v("You will need a "),a("code",[e._v("")]),e._v(" with an element with a "),a("code",[e._v("md-expand-trigger")]),e._v(" attribute and a "),a("code",[e._v("")]),e._v(" with the content that you want to show. The trigger will automatically toggle the content on click.")]),e._v(" "),a("p",[e._v("A simple HTML markup can be like that:")]),e._v(" "),a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n keyboard_arrow_down\n \n \n\n \n Lorem ipsum dolor sit amet, consectetur adipisicing elit.\n \n \n ')]),e._v(" "),a("p",[e._v("No options available")])],1)],1),e._v(" "),a("div",{slot:"example"},[a("example-box",{attrs:{"card-title":"Regular Cards"}},[a("div",{staticClass:"card-holder",slot:"demo"},[a("md-card",[a("md-card-media",[a("img",{attrs:{src:"assets/card-image-1.jpg",alt:"People"}})]),e._v(" "),a("md-card-header",[a("div",{staticClass:"md-title"},[e._v("Title goes here")]),e._v(" "),a("div",{staticClass:"md-subhead"},[e._v("Subtitle here")])]),e._v(" "),a("md-card-actions",[a("md-button",[e._v("Action")]),e._v(" "),a("md-button",[e._v("Action")])],1),e._v(" "),a("md-card-content",[e._v("\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea, nostrum odio. Dolores, sed accusantium quasi non, voluptas eius illo quas, saepe voluptate pariatur in deleniti minus sint. Excepturi.\n ")])],1),e._v(" "),a("md-card",[a("md-card-header",[a("md-card-header-text",[a("div",{staticClass:"md-title"},[e._v("Title goes here")]),e._v(" "),a("div",{staticClass:"md-subhead"},[e._v("Subtitle here")])]),e._v(" "),a("md-menu",{attrs:{"md-size":"4","md-direction":"bottom left"}},[a("md-button",{staticClass:"md-icon-button",attrs:{"md-menu-trigger":""}},[a("md-icon",[e._v("more_vert")])],1),e._v(" "),a("md-menu-content",[a("md-menu-item",[a("span",[e._v("Call")]),e._v(" "),a("md-icon",[e._v("phone")])],1),e._v(" "),a("md-menu-item",[a("span",[e._v("Send a message")]),e._v(" "),a("md-icon",[e._v("message")])],1)],1)],1)],1),e._v(" "),a("md-card-media",[a("img",{attrs:{src:"assets/card-image-1.jpg",alt:"People"}})]),e._v(" "),a("md-card-content",[e._v("\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea, nostrum odio. Dolores, sed accusantium quasi non, voluptas eius illo quas, saepe voluptate pariatur in deleniti minus sint. Excepturi.\n ")])],1),e._v(" "),a("md-card",[a("md-card-media",[a("img",{attrs:{src:"assets/card-image-2.jpg",alt:"People"}})]),e._v(" "),a("md-card-content",[e._v("\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea nostrum.\n ")])],1),e._v(" "),a("md-card",[a("md-card-media",[a("img",{attrs:{src:"assets/card-image-2.jpg",alt:"People"}})]),e._v(" "),a("md-card-header",[a("div",{staticClass:"md-title"},[e._v("Title goes here")]),e._v(" "),a("div",{staticClass:"md-subhead"},[e._v("Subtitle here")])]),e._v(" "),a("md-card-actions",[a("md-button",[e._v("Action")]),e._v(" "),a("md-button",[e._v("Action")])],1)],1)],1),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n \n\n \n
Title goes here
\n
Subtitle here
\n \n\n \n Action\n Action\n \n\n \n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea, nostrum odio. Dolores, sed accusantium quasi non, voluptas eius illo quas, saepe voluptate pariatur in deleniti minus sint. Excepturi.\n \n \n\n \n \n \n
Title goes here
\n
Subtitle here
\n \n\n \n \n more_vert\n \n\n \n \n Call\n phone\n \n\n \n Send a message\n message\n \n \n \n \n\n \n \n \n\n \n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea, nostrum odio. Dolores, sed accusantium quasi non, voluptas eius illo quas, saepe voluptate pariatur in deleniti minus sint. Excepturi.\n \n \n\n \n \n \n \n\n \n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea nostrum.\n \n \n\n \n \n \n \n\n \n
Title goes here
\n
Subtitle here
\n \n\n \n Action\n Action\n \n \n ')])],1)]),e._v(" "),a("example-box",{attrs:{"card-title":"Hover Effect"}},[a("div",{staticClass:"card-holder",slot:"demo"},[a("md-card",{attrs:{"md-with-hover":""}},[a("md-card-header",[a("div",{staticClass:"md-title"},[e._v("Title goes here")]),e._v(" "),a("div",{staticClass:"md-subhead"},[e._v("Subtitle here")])]),e._v(" "),a("md-card-content",[e._v("\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea, nostrum odio. Dolores, sed accusantium quasi non, voluptas eius illo quas, saepe voluptate pariatur in deleniti minus sint. Excepturi.\n ")]),e._v(" "),a("md-card-actions",[a("md-button",[e._v("Action")]),e._v(" "),a("md-button",[e._v("Action")])],1)],1),e._v(" "),a("md-card",{attrs:{"md-with-hover":""}},[a("md-card-media",[a("img",{attrs:{src:"assets/card-image-1.jpg",alt:"People"}}),e._v(" "),a("md-ink-ripple")],1),e._v(" "),a("md-card-actions",[a("md-button",{staticClass:"md-icon-button"},[a("md-icon",[e._v("favorite")])],1),e._v(" "),a("md-button",{staticClass:"md-icon-button"},[a("md-icon",[e._v("bookmark")])],1),e._v(" "),a("md-button",{staticClass:"md-icon-button"},[a("md-icon",[e._v("share")])],1)],1)],1),e._v(" "),a("md-card",{attrs:{"md-with-hover":""}},[a("md-card-header",[a("md-avatar",[a("img",{attrs:{src:"assets/avatar.png",alt:"People"}})]),e._v(" "),a("div",{staticClass:"md-title"},[e._v("Title goes here")]),e._v(" "),a("div",{staticClass:"md-subhead"},[e._v("Subtitle here")])],1),e._v(" "),a("md-card-media",[a("img",{attrs:{src:"assets/card-image-1.jpg",alt:"People"}})]),e._v(" "),a("md-card-content",[e._v("\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea nostrum.\n ")]),e._v(" "),a("md-card-actions",[a("md-button",[e._v("Action")]),e._v(" "),a("md-button",[e._v("Action")])],1)],1)],1),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n
Title goes here
\n
Subtitle here
\n \n\n \n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea, nostrum odio. Dolores, sed accusantium quasi non, voluptas eius illo quas, saepe voluptate pariatur in deleniti minus sint. Excepturi.\n \n\n \n Action\n Action\n \n \n\n \n \n \n\n \n \n\n \n \n favorite\n \n\n \n bookmark\n \n\n \n share\n \n \n \n\n \n \n \n \n \n\n
\n \n\n \n \n \n \n\n \n Action\n Action\n \n \n\n \n \n \n \n \n\n \n \n favorite\n \n\n \n bookmark\n \n\n \n share\n \n \n \n \n ')])],1)]),e._v(" "),a("example-box",{attrs:{"card-title":"Full Control"}},[a("div",{staticClass:"card-holder",slot:"demo"},[a("md-card",[a("md-card-area",[a("md-card-media",[a("img",{attrs:{src:"assets/card-image-1.jpg",alt:"People"}})]),e._v(" "),a("md-card-header",[a("div",{staticClass:"md-title"},[e._v("Title goes here")]),e._v(" "),a("div",{staticClass:"md-subhead"},[e._v("Subtitle here")])]),e._v(" "),a("md-card-content",[e._v("\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea, nostrum odio. Dolores, sed accusantium quasi non, voluptas eius illo quas, saepe voluptate pariatur in deleniti minus sint. Excepturi.\n ")])],1),e._v(" "),a("md-card-actions",[a("md-button",[e._v("Action")]),e._v(" "),a("md-button",[e._v("Action")])],1)],1),e._v(" "),a("md-card",[a("md-card-media",[a("img",{attrs:{src:"assets/card-image-1.jpg",alt:"People"}})]),e._v(" "),a("md-card-header",[a("div",{staticClass:"md-title"},[e._v("Title goes here")]),e._v(" "),a("div",{staticClass:"md-subhead"},[e._v("Subtitle here")])]),e._v(" "),a("md-card-expand",[a("md-card-actions",[a("md-button",[e._v("Action")]),e._v(" "),a("md-button",[e._v("Action")]),e._v(" "),a("span",{staticStyle:{flex:"1"}}),e._v(" "),a("md-button",{staticClass:"md-icon-button",attrs:{"md-expand-trigger":""}},[a("md-icon",[e._v("keyboard_arrow_down")])],1)],1),e._v(" "),a("md-card-content",[e._v("\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea, nostrum odio. Dolores, sed accusantium quasi non, voluptas eius illo quas, saepe voluptate pariatur in deleniti minus sint. Excepturi.\n ")])],1)],1)],1),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n \n \n\n \n
Title goes here
\n
Subtitle here
\n \n\n \n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea, nostrum odio. Dolores, sed accusantium quasi non, voluptas eius illo quas, saepe voluptate pariatur in deleniti minus sint. Excepturi.\n \n \n\n \n Action\n Action\n \n \n\n \n \n \n \n\n \n
Title goes here
\n
Subtitle here
\n \n\n \n \n Action\n Action\n \n \n keyboard_arrow_down\n \n \n\n \n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea, nostrum odio. Dolores, sed accusantium quasi non, voluptas eius illo quas, saepe voluptate pariatur in deleniti minus sint. Excepturi.\n \n \n \n ')])],1)]),e._v(" "),a("example-box",{attrs:{"card-title":"Themes"}},[a("div",{staticClass:"card-holder",slot:"demo"},[a("md-card",{staticClass:"md-primary"},[a("md-card-media",[a("img",{attrs:{src:"assets/card-image-1.jpg",alt:"People"}})]),e._v(" "),a("md-card-header",[a("div",{staticClass:"md-title"},[e._v("Title goes here")]),e._v(" "),a("div",{staticClass:"md-subhead"},[e._v("Subtitle here")])]),e._v(" "),a("md-card-actions",[a("md-button",[e._v("Action")]),e._v(" "),a("md-button",[e._v("Action")])],1),e._v(" "),a("md-card-content",[e._v("\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea, nostrum odio. Dolores, sed accusantium quasi non, voluptas eius illo quas, saepe voluptate pariatur in deleniti minus sint. Excepturi.\n ")])],1),e._v(" "),a("md-card",{staticClass:"md-accent"},[a("md-card-header",[a("md-card-header-text",[a("div",{staticClass:"md-title"},[e._v("Title goes here")]),e._v(" "),a("div",{staticClass:"md-subhead"},[e._v("Subtitle here")])]),e._v(" "),a("md-menu",{attrs:{"md-size":"4","md-direction":"bottom left"}},[a("md-button",{staticClass:"md-icon-button",attrs:{"md-menu-trigger":""}},[a("md-icon",[e._v("more_vert")])],1),e._v(" "),a("md-menu-content",[a("md-menu-item",[a("span",[e._v("Call")]),e._v(" "),a("md-icon",[e._v("phone")])],1),e._v(" "),a("md-menu-item",[a("span",[e._v("Send a message")]),e._v(" "),a("md-icon",[e._v("message")])],1)],1)],1)],1),e._v(" "),a("md-card-media",[a("img",{attrs:{src:"assets/card-image-1.jpg",alt:"People"}})]),e._v(" "),a("md-card-content",[e._v("\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea, nostrum odio. Dolores, sed accusantium quasi non, voluptas eius illo quas, saepe voluptate pariatur in deleniti minus sint. Excepturi.\n ")])],1),e._v(" "),a("md-card",{staticClass:"md-warn"},[a("md-card-media",[a("img",{attrs:{src:"assets/card-image-2.jpg",alt:"People"}})]),e._v(" "),a("md-card-header",[a("div",{staticClass:"md-title"},[e._v("Title goes here")]),e._v(" "),a("div",{staticClass:"md-subhead"},[e._v("Subtitle here")])]),e._v(" "),a("md-card-actions",[a("md-button",[e._v("Action")]),e._v(" "),a("md-button",[e._v("Action")])],1)],1)],1),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n \n\n \n
Title goes here
\n
Subtitle here
\n \n\n \n Action\n Action\n \n\n \n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea, nostrum odio. Dolores, sed accusantium quasi non, voluptas eius illo quas, saepe voluptate pariatur in deleniti minus sint. Excepturi.\n \n \n\n \n \n \n
Title goes here
\n
Subtitle here
\n \n\n \n \n more_vert\n \n\n \n \n Call\n phone\n \n\n \n Send a message\n message\n \n \n \n \n\n \n \n \n\n \n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio itaque ea, nostrum odio. Dolores, sed accusantium quasi non, voluptas eius illo quas, saepe voluptate pariatur in deleniti minus sint. Excepturi.\n \n \n\n \n \n \n \n\n \n
Title goes here
\n
Subtitle here
\n \n\n \n Action\n Action\n \n \n ')])],1)]),e._v(" "),a("example-box",{
+attrs:{"card-title":"Complete Example"}},[a("div",{staticClass:"card-holder",slot:"demo"},[a("md-card",{staticClass:"card-example"},[a("md-card-area",{attrs:{"md-inset":""}},[a("md-card-media",{attrs:{"md-ratio":"16:9"}},[a("img",{attrs:{src:"assets/card-example.jpg",alt:"Coffee House"}})]),e._v(" "),a("md-card-header",[a("h2",{staticClass:"md-title"},[e._v("Coffee House")]),e._v(" "),a("div",{staticClass:"md-subhead"},[a("md-icon",[e._v("location_on")]),e._v(" "),a("span",[e._v("2 miles")])],1)]),e._v(" "),a("md-card-content",[e._v("\n Illy Coffee served with a complimentary Leonidas Belgian Chocolate with all beverages.\n ")])],1),e._v(" "),a("md-card-content",[a("h3",{staticClass:"md-subheading"},[e._v("Today's availability")]),e._v(" "),a("div",{staticClass:"card-reservation"},[a("md-icon",[e._v("access_time")]),e._v(" "),a("md-button-toggle",{staticClass:"md-button-group",attrs:{"md-single":""}},[a("md-button",[e._v("5:30PM")]),e._v(" "),a("md-button",[e._v("7:30PM")]),e._v(" "),a("md-button",[e._v("9:00PM")])],1)],1)]),e._v(" "),a("md-card-actions",[a("md-button",{staticClass:"md-primary"},[e._v("Reserve")])],1)],1)],1),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n \n \n\n \n
Coffee House
\n
\n location_on\n 2 miles\n
\n \n\n \n Illy Coffee served with a complimentary Leonidas Belgian Chocolate with all beverages.\n \n \n\n \n
Today\'s availability
\n
\n access_time\n \n 5:30PM\n 7:30PM\n 9:00PM\n \n
\n \n\n \n Reserve\n \n \n ')]),e._v(" "),a("code-block",{attrs:{lang:"sass"}},[e._v("\n .card-example {\n .md-subhead {\n .md-icon {\n $size: 16px;\n\n width: $size;\n min-width: $size;\n height: $size;\n min-height: $size;\n font-size: $size;\n line-height: $size;\n }\n\n span {\n vertical-align: middle;\n }\n }\n\n .card-reservation {\n margin-top: 8px;\n display: flex;\n align-items: center;\n justify-content: space-around;\n\n .md-icon {\n margin: 8px;\n color: rgba(#000, .54) !important;\n }\n\n .md-button {\n border-radius: 2px !important;\n }\n }\n }\n ")])],1)])],1)])],1)},staticRenderFns:[]}},566:function(e,t,a){var d=a(245);"string"==typeof d&&(d=[[e.id,d,""]]);a(2)(d,{});d.locals&&(e.exports=d.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/17.0d923825.js b/dist/docs/releases/v0.6.0/17.0d923825.js
new file mode 100644
index 0000000..04da488
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/17.0d923825.js
@@ -0,0 +1 @@
+webpackJsonp([17,32],{243:function(t,e,l){e=t.exports=l(1)(),e.push([t.id,'.layout-demo[data-v-65ea3bd7]{min-height:100px}.no-gutter>.md-layout[data-v-65ea3bd7]:last-child:before{background-color:rgba(0,0,0,.2)!important}.grid>.md-layout>.md-layout[data-v-65ea3bd7]:not(.md-column){min-height:40px;margin-bottom:16px}.grid-content[data-v-65ea3bd7]{padding:16px}.gutter .color .md-layout[data-v-65ea3bd7]{color:rgba(0,0,0,.54);font-size:13px;font-weight:500;text-indent:8px}.color:not(.md-column).md-gutter-8>.md-layout[data-v-65ea3bd7]:before{right:4px;left:4px}.color.md-column.md-gutter-8>.md-layout[data-v-65ea3bd7]:before{top:4px;bottom:4px}.color:not(.md-column).md-gutter-16>.md-layout[data-v-65ea3bd7]:before{right:8px;left:8px}.color.md-column.md-gutter-16>.md-layout[data-v-65ea3bd7]:before{top:8px;bottom:8px}.color:not(.md-column).md-gutter-24>.md-layout[data-v-65ea3bd7]:before{right:12px;left:12px}.color.md-column.md-gutter-24>.md-layout[data-v-65ea3bd7]:before{top:12px;bottom:12px}.color:not(.md-column).md-gutter-40>.md-layout[data-v-65ea3bd7]:before{right:20px;left:20px}.color.md-column.md-gutter-40>.md-layout[data-v-65ea3bd7]:before{top:20px;bottom:20px}.color>.md-layout[data-v-65ea3bd7]{position:relative}.color>.md-layout[data-v-65ea3bd7]:before{width:100%;height:100%;margin-bottom:-200%;display:block;pointer-events:none;background-color:rgba(0,0,0,.12);content:" "}.column-size[data-v-65ea3bd7]{height:250px!important}.column-size+.column-size[data-v-65ea3bd7]{margin-top:48px!important}.color-red[data-v-65ea3bd7]:before{background-color:#f44336!important}.color-blue[data-v-65ea3bd7]:before{background-color:#2196f3!important}.color-yellow[data-v-65ea3bd7]:before{background-color:#ffeb3b!important}.color-green[data-v-65ea3bd7]:before{background-color:#4caf50!important}.color-purple[data-v-65ea3bd7]:before{background-color:#9c27b0!important}.color-pink[data-v-65ea3bd7]:before{background-color:#e91e63!important}.color-teal[data-v-65ea3bd7]:before{background-color:#009688!important}.color-orange[data-v-65ea3bd7]:before{background-color:#ff9800!important}.properties table tr td[data-v-65ea3bd7]:first-child{white-space:nowrap}',""])},371:function(t,e,l){var a,d;l(564);var o=l(496);d=a=a||{},"object"!=typeof a.default&&"function"!=typeof a.default||(d=a=a.default),"function"==typeof d&&(d=d.options),d.render=o.render,d.staticRenderFns=o.staticRenderFns,d._scopeId="data-v-65ea3bd7",t.exports=a},496:function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,l=t._self._c||e;return l("page-content",{attrs:{"page-title":"UI Elements - Layout"}},[l("docs-component",[l("div",{slot:"description"},[l("p",[t._v("Responsive layouts in material design adapt to any possible screen size. This UI guidance includes a flexible grid that ensures consistency across layouts, breakpoint details about how content reflows on different screens, and a description of how an app can scale from small to extra-large screens.")]),t._v(" "),l("p",[t._v("By default you can create gutter-free layouts, make the grid system calculate the best margin size for each screen or set it by yourself with the "),l("code",[t._v("md-gutter")]),t._v(" property. If you want the automatic calculation the engine will set "),l("code",[t._v("16px")]),t._v(" for small screens and then apply "),l("code",[t._v("24px")]),t._v(" for medium to large.")]),t._v(" "),l("p",[t._v("You can create columns size by size or rows to make your layout fluid. You can combine columns with rows or even use nested columns.")]),t._v(" "),l("p",[t._v("The grid system makes use of flexbox to be flexible enough and give the best experience with a great and easy API. You can create responsive layouts with few lines of code with a declarative engine. The system work with some breakpoints:")]),t._v(" "),l("md-table",{staticClass:"properties",slot:"properties"},[l("md-table-header",[l("md-table-row",[l("md-table-head",[t._v("Name")]),t._v(" "),l("md-table-head",[t._v("Size")]),t._v(" "),l("md-table-head",[t._v("Description")])],1)],1),t._v(" "),l("md-table-body",[l("md-table-row",[l("md-table-cell",[l("code",[t._v("xsmall")])]),t._v(" "),l("md-table-cell",[t._v("600px")]),t._v(" "),l("md-table-cell",[t._v("For screens who have the maximum of 600px wide. For small, medium and large handsets in portrait. Also applies to small handsets in portrait.")])],1),t._v(" "),l("md-table-row",[l("md-table-cell",[l("code",[t._v("small")])]),t._v(" "),l("md-table-cell",[t._v("960px")]),t._v(" "),l("md-table-cell",[t._v("For screens who have between of 600px and 960px wide. For medium and large handsets in landscape, small and large tablets in portrait mode and some desktop monitors.")])],1),t._v(" "),l("md-table-row",[l("md-table-cell",[l("code",[t._v("medium")])]),t._v(" "),l("md-table-cell",[t._v("1280px")]),t._v(" "),l("md-table-cell",[t._v("For screens who have between of 960px and 1280px wide. For small and large tablets in landscape and desktop monitors.")])],1),t._v(" "),l("md-table-row",[l("md-table-cell",[l("code",[t._v("large")])]),t._v(" "),l("md-table-cell",[t._v("1920px")]),t._v(" "),l("md-table-cell",[t._v("For screens who have between of 1280px and 1920px wide. For large desktop monitors.")])],1),t._v(" "),l("md-table-row",[l("md-table-cell",[l("code",[t._v("xlarge")])]),t._v(" "),l("md-table-cell",[t._v(">1920px")]),t._v(" "),l("md-table-cell",[t._v("For screens bigger than 1920px wide. For huge desktop monitors or side-by-side screens.")])],1)],1)],1)],1),t._v(" "),l("div",{slot:"api"},[l("api-table",{attrs:{name:"md-layout"}},[l("md-table",{staticClass:"properties",slot:"properties"},[l("md-table-header",[l("md-table-row",[l("md-table-head",[t._v("Name")]),t._v(" "),l("md-table-head",[t._v("Type")]),t._v(" "),l("md-table-head",[t._v("Description")])],1)],1),t._v(" "),l("md-table-body",[l("md-table-row",[l("md-table-cell",[t._v("md-tag")]),t._v(" "),l("md-table-cell",[l("code",[t._v("String")])]),t._v(" "),l("md-table-cell",[t._v("The output tag. Default "),l("code",[t._v("div")])])],1),t._v(" "),l("md-table-row",[l("md-table-cell",[t._v("md-gutter")]),t._v(" "),l("md-table-cell",[l("code",[t._v("Boolean|Number")])]),t._v(" "),l("md-table-cell",[t._v("Apply a gutter space to direct childs of the element that have this property. If "),l("code",[t._v("true")]),t._v(" the gutter will be calculated automatically by the current screen size. If number the size will be fixed. Accepts "),l("code",[t._v("8")]),t._v("|"),l("code",[t._v("16")]),t._v("|"),l("code",[t._v("24")]),t._v("|"),l("code",[t._v("40")]),t._v(". Default "),l("code",[t._v("false")])])],1),t._v(" "),l("md-table-row",[l("md-table-cell",[t._v("md-row")]),t._v(" "),l("md-table-cell",[l("code",[t._v("Boolean")])]),t._v(" "),l("md-table-cell",[t._v("Create a row container. All child will be side by side.")])],1),t._v(" "),l("md-table-row",[l("md-table-cell",[t._v("md-row-{type}")]),t._v(" "),l("md-table-cell",[l("code",[t._v("Boolean")])]),t._v(" "),l("md-table-cell",[t._v("Create a row container on screen sizes less than or equal to given breakpoint. Example: "),l("code",[t._v("md-row-large")])])],1),t._v(" "),l("md-table-row",[l("md-table-cell",[t._v("md-column")]),t._v(" "),l("md-table-cell",[l("code",[t._v("Boolean")])]),t._v(" "),l("md-table-cell",[t._v("Create a column container. All child will be one underneath the other.")])],1),t._v(" "),l("md-table-row",[l("md-table-cell",[t._v("md-column-{type}")]),t._v(" "),l("md-table-cell",[l("code",[t._v("Boolean")])]),t._v(" "),l("md-table-cell",[t._v("Create a column container on screen sizes less than or equal to given breakpoint. Example: "),l("code",[t._v("md-column-small")])])],1),t._v(" "),l("md-table-row",[l("md-table-cell",[t._v("md-hide-{type}")]),t._v(" "),l("md-table-cell",[l("code",[t._v("Boolean")])]),t._v(" "),l("md-table-cell",[t._v("Hide a layout container/child on screen sizes less than or equal to given breakpoint. Example: "),l("code",[t._v("md-hide-medium")])])],1),t._v(" "),l("md-table-row",[l("md-table-cell",[t._v("md-flex")]),t._v(" "),l("md-table-cell",[l("code",[t._v("Boolean|Number")])]),t._v(" "),l("md-table-cell",[t._v("Create a flexible child. If "),l("code",[t._v("true")]),t._v(" the child element will grow to fill the empty space available on the parent element. If "),l("code",[t._v("Number")]),t._v(" the size of the child will be sized according to the giver size. Accepts values multiple of 5. Also accepts the values 33 and 66. Default: "),l("code",[t._v("true")])])],1),t._v(" "),l("md-table-row",[l("md-table-cell",[t._v("md-flex-{type}")]),t._v(" "),l("md-table-cell",[l("code",[t._v("Boolean|Number")])]),t._v(" "),l("md-table-cell",[t._v("Create a flexible child on screen sizes less than or equal to given breakpoint. Example: "),l("code",[t._v('md-flex-small="33"')])])],1),t._v(" "),l("md-table-row",[l("md-table-cell",[t._v("md-flex-offset")]),t._v(" "),l("md-table-cell",[l("code",[t._v("Number")])]),t._v(" "),l("md-table-cell",[t._v("Create a empty space before the actual child. Accepts the same value of "),l("code",[t._v("md-flex")]),t._v(" Example: "),l("code",[t._v('md-flex-offset="50"')])])],1),t._v(" "),l("md-table-row",[l("md-table-cell",[t._v("md-flex-offset-{type}")]),t._v(" "),l("md-table-cell",[l("code",[t._v("Number")])]),t._v(" "),l("md-table-cell",[t._v("Create a empty space before the actual child on screen sizes less than or equal to given breakpoint. Example: "),l("code",[t._v('md-flex-offset-small="20"')])])],1),t._v(" "),l("md-table-row",[l("md-table-cell",[t._v("md-align")]),t._v(" "),l("md-table-cell",[l("code",[t._v("String")])]),t._v(" "),l("md-table-cell",[t._v("Apply an alignment to the container. Accepts "),l("code",[t._v("start")]),t._v("|"),l("code",[t._v("center")]),t._v("|"),l("code",[t._v("end")]),t._v(" Example: "),l("code",[t._v('md-align="end"')])])],1),t._v(" "),l("md-table-row",[l("md-table-cell",[t._v("md-align-{type}")]),t._v(" "),l("md-table-cell",[l("code",[t._v("Number")])]),t._v(" "),l("md-table-cell",[t._v("Apply an alignment to the container on screen sizes less than or equal to given breakpoint. Example: "),l("code",[t._v('md-align-xlarge="center"')])])],1)],1)],1)],1)],1),t._v(" "),l("div",{slot:"example"},[l("example-box",{attrs:{"card-title":"Responsive"}},[l("div",{staticClass:"layout-demo grid",slot:"demo"},[l("md-layout",{staticClass:"color",attrs:{"md-gutter":""}},[l("md-layout",{staticClass:"color-red",attrs:{"md-flex-xsmall":"100","md-flex-small":"50","md-flex-medium":"33"}},[l("div",{staticClass:"grid-content"},[t._v("\n md-flex-xsmall "),l("br"),t._v('\n md-flex-small="50" '),l("br"),t._v('\n md-flex-medium="33"\n ')])]),t._v(" "),l("md-layout",{staticClass:"color-blue",attrs:{"md-flex-xsmall":"100","md-flex-small":"50","md-flex-medium":"33"}},[l("div",{staticClass:"grid-content"},[t._v("\n md-flex-xsmall "),l("br"),t._v('\n md-flex-small="50" '),l("br"),t._v('\n md-flex-medium="33"\n ')])]),t._v(" "),l("md-layout",{staticClass:"color-pink",attrs:{"md-flex-xsmall":"100","md-flex-small":"50","md-flex-medium":"33"}},[l("div",{staticClass:"grid-content"},[t._v("\n md-flex-xsmall "),l("br"),t._v('\n md-flex-small="50" '),l("br"),t._v('\n md-flex-medium="33"\n ')])]),t._v(" "),l("md-layout",{staticClass:"color-teal",attrs:{"md-flex-xsmall":"100","md-flex-small":"50","md-flex-medium":"33"}},[l("div",{staticClass:"grid-content"},[t._v("\n md-flex-xsmall "),l("br"),t._v('\n md-flex-small="50" '),l("br"),t._v('\n md-flex-medium="33"\n ')])]),t._v(" "),l("md-layout",{staticClass:"color-green",attrs:{"md-flex-small":"100","md-flex-medium":"33","md-hide-xsmall":""}},[l("div",{staticClass:"grid-content"},[t._v('\n md-flex-medium="33" '),l("br"),t._v("\n md-hide-xsmall\n ")])]),t._v(" "),l("md-layout",{staticClass:"color-yellow",attrs:{"md-flex":"","md-flex-medium":"33","md-hide-small":""}},[l("div",{staticClass:"grid-content"},[t._v('\n md-flex-medium="33" '),l("br"),t._v("\n md-hide-small\n ")])])],1)],1),t._v(" "),l("div",{slot:"code"},[l("code-block",{attrs:{lang:"xml"}},[t._v('\n \n \n md-flex-xsmall \n md-flex-small="50" \n md-flex-medium="33"\n \n\n \n md-flex-xsmall \n md-flex-small="50" \n md-flex-medium="33"\n \n\n \n md-flex-xsmall \n md-flex-small="50" \n md-flex-medium="33"\n \n\n \n md-flex-xsmall \n md-flex-small="50" \n md-flex-medium="33"\n \n\n \n md-flex-medium="33" \n md-hide-xsmall\n \n\n \n md-flex-medium="33" \n md-hide-small\n \n \n ')])],1)]),t._v(" "),l("example-box",{attrs:{"card-title":"Sizes and Offset"}},[l("div",{staticClass:"layout-demo grid",slot:"demo"},[l("md-layout",{staticClass:"color",attrs:{"md-gutter":""}},[l("md-layout",{attrs:{"md-flex":"50"}}),t._v(" "),l("md-layout"),t._v(" "),l("md-layout"),t._v(" "),l("md-layout")],1),t._v(" "),l("md-layout",{staticClass:"color",attrs:{"md-gutter":""}},[l("md-layout",{attrs:{"md-flex":"33"}}),t._v(" "),l("md-layout")],1),t._v(" "),l("md-layout",{staticClass:"color",attrs:{"md-gutter":""}},[l("md-layout"),t._v(" "),l("md-layout",{attrs:{"md-flex":"33","md-flex-offset":"33"}})],1),t._v(" "),l("md-layout",{staticClass:"color",attrs:{"md-gutter":""}},[l("md-layout",{attrs:{"md-flex":"75"}}),t._v(" "),l("md-layout")],1),t._v(" "),l("md-layout",{staticClass:"color",attrs:{"md-gutter":""}},[l("md-layout",{attrs:{"md-flex":"50"}}),t._v(" "),l("md-layout"),t._v(" "),l("md-layout")],1),t._v(" "),l("md-layout",{staticClass:"color",attrs:{"md-gutter":""}},[l("md-layout",{attrs:{"md-flex":"25","md-flex-offset":"25"}}),t._v(" "),l("md-layout",{attrs:{"md-flex":"25"}})],1)],1),t._v(" "),l("div",{slot:"code"},[l("code-block",{attrs:{lang:"xml"}},[t._v('\n \n \n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n ')])],1)]),t._v(" "),l("example-box",{attrs:{"card-title":"Direction"}},[l("div",{staticClass:"layout-demo grid",slot:"demo"},[l("md-layout",{staticClass:"column-size",attrs:{"md-gutter":"16"}},[l("md-layout",{staticClass:"color",attrs:{"md-column":"","md-gutter":"16"}},[l("md-layout",{attrs:{"md-flex":"20"}}),t._v(" "),l("md-layout")],1),t._v(" "),l("md-layout",{staticClass:"color",attrs:{"md-column":"","md-gutter":"16"}},[l("md-layout",{attrs:{"md-flex":"50"}}),t._v(" "),l("md-layout"),t._v(" "),l("md-layout")],1)],1)],1),t._v(" "),l("div",{slot:"code"},[l("code-block",{attrs:{lang:"xml"}},[t._v('\n \n \n \n \n \n\n \n \n \n \n \n \n ')])],1)]),t._v(" "),l("example-box",{attrs:{"card-title":"Alignment"}},[l("div",{staticClass:"layout-demo grid gutter",slot:"demo"},[l("md-layout",{staticClass:"color",attrs:{"md-gutter":"16"}},[l("md-layout",{attrs:{"md-flex":"50"}},[l("span",[t._v("start")])])],1),t._v(" "),l("md-layout",{staticClass:"color",attrs:{"md-align":"end","md-gutter":"16"}},[l("md-layout",{attrs:{"md-flex":"33"}},[l("span",[t._v("end")])])],1),t._v(" "),l("md-layout",{staticClass:"color",attrs:{"md-align":"end","md-gutter":"16"}},[l("md-layout",{attrs:{"md-flex":"20"}},[l("span",[t._v("end")])]),t._v(" "),l("md-layout",{attrs:{"md-flex":"20"}},[l("span",[t._v("end")])])],1),t._v(" "),l("md-layout",{staticClass:"color",attrs:{"md-align":"center","md-gutter":"16"}},[l("md-layout",{attrs:{"md-flex":"35"}},[l("span",[t._v("center")])]),t._v(" "),l("md-layout",{attrs:{"md-flex":"35"}},[l("span",[t._v("center")])])],1)],1),t._v(" "),l("div",{slot:"code"},[l("code-block",{attrs:{lang:"xml"}},[t._v('\n \n \n start\n \n \n\n \n \n end\n \n \n\n \n \n end\n \n\n \n end\n \n \n\n \n \n center\n \n\n \n center\n \n \n ')])],1)]),t._v(" "),l("example-box",{attrs:{"card-title":"Gutters"}},[l("div",{staticClass:"layout-demo grid gutter",slot:"demo"},[l("md-layout",{staticClass:"no-gutter color"},[l("md-layout"),t._v(" "),l("md-layout")],1),t._v(" "),l("md-layout",{staticClass:"color",attrs:{"md-gutter":8}},[l("md-layout",[l("span",[t._v("8px")])]),t._v(" "),l("md-layout",[l("span",[t._v("8px")])]),t._v(" "),l("md-layout",[l("span",[t._v("8px")])]),t._v(" "),l("md-layout",[l("span",[t._v("8px")])]),t._v(" "),l("md-layout",[l("span",[t._v("8px")])]),t._v(" "),l("md-layout",[l("span",[t._v("8px")])])],1),t._v(" "),l("md-layout",{staticClass:"color",attrs:{"md-gutter":"16"}},[l("md-layout",[l("span",[t._v("16px")])]),t._v(" "),l("md-layout",[l("span",[t._v("16px")])]),t._v(" "),l("md-layout",[l("span",[t._v("16px")])]),t._v(" "),l("md-layout",[l("span",[t._v("16px")])]),t._v(" "),l("md-layout",[l("span",[t._v("16px")])])],1),t._v(" "),l("md-layout",{staticClass:"color",attrs:{"md-gutter":24}},[l("md-layout",[l("span",[t._v("24px")])]),t._v(" "),l("md-layout",[l("span",[t._v("24px")])]),t._v(" "),l("md-layout",[l("span",[t._v("24px")])]),t._v(" "),l("md-layout",[l("span",[t._v("24px")])])],1),t._v(" "),l("md-layout",{staticClass:"color",attrs:{"md-gutter":40}},[l("md-layout",[l("span",[t._v("40px")])]),t._v(" "),l("md-layout",[l("span",[t._v("40px")])]),t._v(" "),l("md-layout",[l("span",[t._v("40px")])])],1),t._v(" "),l("md-layout",{staticClass:"color",attrs:{"md-gutter":!0}},[l("md-layout",[l("span",[t._v("Automatic")])]),t._v(" "),l("md-layout",[l("span",[t._v("Automatic")])])],1)],1),t._v(" "),l("div",{slot:"code"},[l("code-block",{attrs:{lang:"xml"}},[t._v('\n \n \n \n \n\n \n \n 8px\n \n\n \n 8px\n \n\n \n 8px\n \n\n \n 8px\n \n\n \n 8px\n \n\n \n 8px\n \n \n\n \n \n 16px\n \n\n \n 16px\n \n\n \n 16px\n \n\n \n 16px\n \n\n \n 16px\n \n \n\n \n \n 24px\n \n\n \n 24px\n \n\n \n 24px\n \n\n \n 24px\n \n \n\n \n \n 40px\n \n\n \n 40px\n \n\n \n 40px\n \n \n\n \n \n Automatic\n \n\n \n Automatic\n \n \n ')])],1)])],1)])],1)},staticRenderFns:[]}},564:function(t,e,l){var a=l(243);"string"==typeof a&&(a=[[t.id,a,""]]);l(2)(a,{});a.locals&&(t.exports=a.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/18.fa7c7df1.js b/dist/docs/releases/v0.6.0/18.fa7c7df1.js
new file mode 100644
index 0000000..5d757a7
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/18.fa7c7df1.js
@@ -0,0 +1 @@
+webpackJsonp([18,32],{240:function(e,m,t){m=e.exports=t(1)(),m.push([e.id,".md-menu[data-v-4afee79a]{margin-right:36px}.author-card[data-v-4afee79a]{padding:8px 16px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.author-card .md-avatar[data-v-4afee79a]{margin-right:16px}.author-card .author-card-info[data-v-4afee79a]{display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;-ms-flex:1;flex:1}.author-card span[data-v-4afee79a]{font-size:16px}.author-card .author-card-links[data-v-4afee79a]{display:-ms-flexbox;display:flex}.author-card .author-card-links a+a[data-v-4afee79a]{margin-left:8px}",""])},355:function(e,m,t){var n,d;t(561);var i=t(483);d=n=n||{},"object"!=typeof n.default&&"function"!=typeof n.default||(d=n=n.default),"function"==typeof d&&(d=d.options),d.render=i.render,d.staticRenderFns=i.staticRenderFns,d._scopeId="data-v-4afee79a",e.exports=n},483:function(e,m){e.exports={render:function(){var e=this,m=e.$createElement,t=e._self._c||m;return t("page-content",{attrs:{"page-title":"Components - Menu"}},[t("docs-component",[t("div",{slot:"description"},[t("p",[e._v("Menus appear upon interaction with a button, action, or other control. They display a list of choices, with one choice per line.")]),e._v(" "),t("p",[e._v("You can create menus with selection items or show rich content.")]),e._v(" "),t("p",[e._v("You will need an element with the "),t("code",[e._v("md-menu-trigger")]),e._v(" attribute inside the menu or to use the menu core methods, like on the last example.")])]),e._v(" "),t("div",{slot:"api"},[t("api-table",{attrs:{name:"md-menu"}},[t("md-table",{slot:"properties"},[t("md-table-header",[t("md-table-row",[t("md-table-head",[e._v("Name")]),e._v(" "),t("md-table-head",[e._v("Type")]),e._v(" "),t("md-table-head",[e._v("Description")])],1)],1),e._v(" "),t("md-table-body",[t("md-table-row",[t("md-table-cell",[e._v("md-size")]),e._v(" "),t("md-table-cell",[t("code",[e._v("Number")])]),e._v(" "),t("md-table-cell",[e._v("Sets the size of the menu content. From 0 to 7. "),t("br"),e._v("Default: "),t("code",[e._v("0")])])],1),e._v(" "),t("md-table-row",[t("md-table-cell",[e._v("md-direction")]),e._v(" "),t("md-table-cell",[t("code",[e._v("String")])]),e._v(" "),t("md-table-cell",[e._v("Sets the direction of the menu content. "),t("br"),e._v(" Possibilities: "),t("code",[e._v("bottom right")]),e._v(" | "),t("code",[e._v("bottom left")]),e._v(" | "),t("code",[e._v("top right")]),e._v(" | "),t("code",[e._v("top right")]),t("br"),e._v("Default: "),t("code",[e._v("bottom right")])])],1),e._v(" "),t("md-table-row",[t("md-table-cell",[e._v("md-align-trigger")]),e._v(" "),t("md-table-cell",[t("code",[e._v("Boolean")])]),e._v(" "),t("md-table-cell",[e._v("Align the menu content to do not cover menu trigger. "),t("br"),e._v("Default: "),t("code",[e._v("false")])])],1),e._v(" "),t("md-table-row",[t("md-table-cell",[e._v("md-offset-x")]),e._v(" "),t("md-table-cell",[t("code",[e._v("Number")])]),e._v(" "),t("md-table-cell",[e._v("Set the menu content offset margin horizontally. "),t("br"),e._v("Default: "),t("code",[e._v("0")])])],1),e._v(" "),t("md-table-row",[t("md-table-cell",[e._v("md-offset-y")]),e._v(" "),t("md-table-cell",[t("code",[e._v("Number")])]),e._v(" "),t("md-table-cell",[e._v("Set the menu content offset margin vertically. "),t("br"),e._v("Default: "),t("code",[e._v("0")])])],1),e._v(" "),t("md-table-row",[t("md-table-cell",[e._v("md-close-on-select")]),e._v(" "),t("md-table-cell",[t("code",[e._v("Boolean")])]),e._v(" "),t("md-table-cell",[e._v("Close menu content upon mouse click on its menu items. "),t("br"),e._v("Default: "),t("code",[e._v("true")])])],1)],1)],1),e._v(" "),t("md-table",{slot:"events"},[t("md-table-header",[t("md-table-row",[t("md-table-head",[e._v("Name")]),e._v(" "),t("md-table-head",[e._v("Value")]),e._v(" "),t("md-table-head",[e._v("Description")])],1)],1),e._v(" "),t("md-table-body",[t("md-table-row",[t("md-table-cell",[e._v("open")]),e._v(" "),t("md-table-cell",[e._v("None")]),e._v(" "),t("md-table-cell",[e._v("Triggered when the menu starts to open.")])],1),e._v(" "),t("md-table-row",[t("md-table-cell",[e._v("close")]),e._v(" "),t("md-table-cell",[e._v("None")]),e._v(" "),t("md-table-cell",[e._v("Triggered when the menu starts to close.")])],1)],1)],1),e._v(" "),t("md-table",{slot:"methods"},[t("md-table-header",[t("md-table-row",[t("md-table-head",[e._v("Name")]),e._v(" "),t("md-table-head",[e._v("Description")])],1)],1),e._v(" "),t("md-table-body",[t("md-table-row",[t("md-table-cell",[e._v("open")]),e._v(" "),t("md-table-cell",[e._v("Open the menu.")])],1),e._v(" "),t("md-table-row",[t("md-table-cell",[e._v("close")]),e._v(" "),t("md-table-cell",[e._v("Close the menu.")])],1)],1)],1)],1),e._v(" "),t("api-table",{attrs:{name:"md-menu-content"}},[t("p",[e._v("Displays the content of a menu.")]),e._v(" "),t("p",[e._v("No options available")])]),e._v(" "),t("api-table",{attrs:{name:"md-menu-item"}},[t("p",[e._v("Displays a single item inside a menu.")]),e._v(" "),t("div",{slot:"properties"},[t("md-table",[t("md-table-header",[t("md-table-row",[t("md-table-head",[e._v("Name")]),e._v(" "),t("md-table-head",[e._v("Type")]),e._v(" "),t("md-table-head",[e._v("Description")])],1)],1),e._v(" "),t("md-table-body",[t("md-table-row",[t("md-table-cell",[e._v("disabled")]),e._v(" "),t("md-table-cell",[t("code",[e._v("Boolean")])]),e._v(" "),t("md-table-cell",[e._v("Disable the button and prevent his actions. Default "),t("code",[e._v("false")])])],1)],1)],1)],1),e._v(" "),t("md-table",{slot:"events"},[t("md-table-header",[t("md-table-row",[t("md-table-head",[e._v("Name")]),e._v(" "),t("md-table-head",[e._v("Value")]),e._v(" "),t("md-table-head",[e._v("Description")])],1)],1),e._v(" "),t("md-table-body",[t("md-table-row",[t("md-table-cell",[e._v("selected")]),e._v(" "),t("md-table-cell",[e._v("Receives the "),t("code",[e._v("$event")])]),e._v(" "),t("md-table-cell",[e._v("Triggered when the item receives a click.")])],1)],1)],1)],1)],1),e._v(" "),t("div",{slot:"example"},[t("example-box",{attrs:{"card-title":"Directions"}},[t("div",{slot:"demo"},[t("md-menu",[t("md-button",{attrs:{"md-menu-trigger":""}},[e._v("Bottom Right")]),e._v(" "),t("md-menu-content",[t("md-menu-item",[e._v("My Item 1")]),e._v(" "),t("md-menu-item",[e._v("My Item 2")]),e._v(" "),t("md-menu-item",[e._v("My Item 3")])],1)],1),e._v(" "),t("md-menu",{attrs:{"md-direction":"bottom left"}},[t("md-button",{attrs:{"md-menu-trigger":""}},[e._v("Bottom Left")]),e._v(" "),t("md-menu-content",[t("md-menu-item",[e._v("My Item 1")]),e._v(" "),t("md-menu-item",[e._v("My Item 2")]),e._v(" "),t("md-menu-item",{attrs:{disabled:""}},[e._v("My Item 3")]),e._v(" "),t("md-menu-item",[e._v("My Item 4")])],1)],1),e._v(" "),t("md-menu",{attrs:{"md-direction":"top left"}},[t("md-button",{attrs:{"md-menu-trigger":""}},[e._v("Top Left")]),e._v(" "),t("md-menu-content",[t("md-menu-item",[e._v("My Item 1")]),e._v(" "),t("md-menu-item",[e._v("My Item 2")]),e._v(" "),t("md-menu-item",[e._v("My Item 3")])],1)],1),e._v(" "),t("md-menu",{attrs:{"md-direction":"top right"}},[t("md-button",{attrs:{"md-menu-trigger":""}},[e._v("Top Right")]),e._v(" "),t("md-menu-content",[t("md-menu-item",[e._v("My Item 1")]),e._v(" "),t("md-menu-item",[e._v("My Item 2")]),e._v(" "),t("md-menu-item",[e._v("My Item 3")])],1)],1)],1),e._v(" "),t("div",{slot:"code"},[t("code-block",{attrs:{lang:"xml"}},[e._v('\n \n Bottom Right\n\n \n My Item 1\n My Item 2\n My Item 3\n \n \n\n \n Bottom Left\n\n \n My Item 1\n My Item 2\n My Item 3\n My Item 4\n \n \n\n \n Top Left\n\n \n My Item 1\n My Item 2\n My Item 3\n \n \n\n \n Top Right\n\n \n My Item 1\n My Item 2\n My Item 3\n \n \n ')])],1)]),e._v(" "),t("example-box",{attrs:{"card-title":"Alignments"}},[t("div",{slot:"demo"},[t("md-menu",[t("md-button",{attrs:{"md-menu-trigger":""}},[e._v("Default")]),e._v(" "),t("md-menu-content",[t("md-menu-item",[e._v("My Item 1")]),e._v(" "),t("md-menu-item",[e._v("My Item 2")]),e._v(" "),t("md-menu-item",[e._v("My Item 3")])],1)],1),e._v(" "),t("md-menu",{attrs:{"md-align-trigger":""}},[t("md-button",{attrs:{"md-menu-trigger":""}},[e._v("Align trigger")]),e._v(" "),t("md-menu-content",[t("md-menu-item",[e._v("My Item 1")]),e._v(" "),t("md-menu-item",[e._v("My Item 2")]),e._v(" "),t("md-menu-item",[e._v("My Item 3")])],1)],1),e._v(" "),t("md-menu",{attrs:{"md-offset-x":154,"md-offset-y":"12"}},[t("md-button",{attrs:{"md-menu-trigger":""}},[e._v("Custom offset")]),e._v(" "),t("md-menu-content",[t("md-menu-item",[e._v("My Item 1")]),e._v(" "),t("md-menu-item",[e._v("My Item 2")]),e._v(" "),t("md-menu-item",[e._v("My Item 3")])],1)],1)],1),e._v(" "),t("div",{slot:"code"},[t("code-block",{attrs:{lang:"xml"}},[e._v('\n \n Default\n\n \n My Item 1\n My Item 2\n My Item 3\n \n \n\n \n Align trigger\n\n \n My Item 1\n My Item 2\n My Item 3\n \n \n\n \n Custom offset\n\n \n My Item 1\n My Item 2\n My Item 3\n \n \n ')])],1)]),e._v(" "),t("example-box",{attrs:{"card-title":"Sizes"}},[t("div",{slot:"demo"},[t("md-menu",{attrs:{"md-size":"1"}},[t("md-button",{attrs:{"md-menu-trigger":""}},[e._v("Size 1")]),e._v(" "),t("md-menu-content",[t("md-menu-item",[e._v("Item 1")]),e._v(" "),t("md-menu-item",[e._v("Item 2")]),e._v(" "),t("md-menu-item",[e._v("Item 3")])],1)],1),e._v(" "),t("md-menu",{attrs:{"md-size":"2"}},[t("md-button",{attrs:{"md-menu-trigger":""}},[e._v("Size 2")]),e._v(" "),t("md-menu-content",[t("md-menu-item",[e._v("My Item 1")]),e._v(" "),t("md-menu-item",[e._v("My Item 2")]),e._v(" "),t("md-menu-item",[e._v("My Item 3")])],1)],1),e._v(" "),t("md-menu",{attrs:{"md-size":"3"}},[t("md-button",{attrs:{"md-menu-trigger":""}},[e._v("Size 3")]),e._v(" "),t("md-menu-content",[t("md-menu-item",[e._v("My Item 1")]),e._v(" "),t("md-menu-item",[e._v("My Item 2")]),e._v(" "),t("md-menu-item",[e._v("My Item 3")])],1)],1),e._v(" "),t("md-menu",{attrs:{"md-size":"4"}},[t("md-button",{attrs:{"md-menu-trigger":""}},[e._v("Size 4")]),e._v(" "),t("md-menu-content",[t("md-menu-item",[e._v("My Item 1")]),e._v(" "),t("md-menu-item",[e._v("My Item 2")]),e._v(" "),t("md-menu-item",[e._v("My Item 3")])],1)],1),e._v(" "),t("md-menu",{attrs:{"md-size":"5"}},[t("md-button",{attrs:{"md-menu-trigger":""}},[e._v("Size 5")]),e._v(" "),t("md-menu-content",[t("md-menu-item",[e._v("My Item 1")]),e._v(" "),t("md-menu-item",[e._v("My Item 2")]),e._v(" "),t("md-menu-item",[e._v("My Item 3")])],1)],1),e._v(" "),t("md-menu",{attrs:{"md-size":"6"}},[t("md-button",{attrs:{"md-menu-trigger":""}},[e._v("Size 6")]),e._v(" "),t("md-menu-content",[t("md-menu-item",[e._v("My Item 1")]),e._v(" "),t("md-menu-item",[e._v("My Item 2")]),e._v(" "),t("md-menu-item",[e._v("My Item 3")])],1)],1),e._v(" "),t("md-menu",{attrs:{"md-size":"7"}},[t("md-button",{attrs:{"md-menu-trigger":""}},[e._v("Size 7")]),e._v(" "),t("md-menu-content",[t("md-menu-item",[e._v("My Item 1")]),e._v(" "),t("md-menu-item",[e._v("My Item 2")]),e._v(" "),t("md-menu-item",[e._v("My Item 3")])],1)],1)],1),e._v(" "),t("div",{slot:"code"},[t("code-block",{attrs:{lang:"xml"}},[e._v('\n \n Size 1\n\n \n Item 1\n Item 2\n Item 3\n \n \n\n \n Size 2\n\n \n My Item 1\n My Item 2\n My Item 3\n \n \n\n \n Size 3\n\n \n My Item 1\n My Item 2\n My Item 3\n \n \n\n \n Size 4\n\n \n My Item 1\n My Item 2\n My Item 3\n \n \n\n \n Size 5\n\n \n My Item 1\n My Item 2\n My Item 3\n \n \n\n \n Size 6\n\n \n My Item 1\n My Item 2\n My Item 3\n \n \n\n \n Size 7\n\n \n My Item 1\n My Item 2\n My Item 3\n \n \n ')])],1)]),e._v(" "),t("example-box",{attrs:{"card-title":"Rich Content and List Icons"}},[t("div",{slot:"demo"},[t("md-menu",{ref:"menu",attrs:{"md-size":"4","md-direction":"top right"}},[t("md-button",{staticClass:"md-icon-button",attrs:{"md-menu-trigger":""}},[t("md-icon",[e._v("contacts")])],1),e._v(" "),t("md-menu-content",[t("div",{staticClass:"author-card"},[t("md-avatar",{staticClass:"md-large"},[t("img",{attrs:{src:"assets/marcosmoura.jpg",alt:"Marcos Moura"}})]),e._v(" "),t("div",{staticClass:"author-card-info"},[t("span",[e._v("Marcos Moura")]),e._v(" "),t("div",{staticClass:"author-card-links"},[t("a",{attrs:{href:"https://linkedin.com/in/marcosvmmoura",target:"_blank",rel:"noopener"}},[e._v("Linkedin")]),e._v(" "),t("a",{attrs:{href:"https://github.com/marcosmoura",target:"_blank",rel:"noopener"}},[e._v("GitHub")])])])],1)])],1),e._v(" "),t("md-menu",{attrs:{"md-size":"4"}},[t("md-button",{staticClass:"md-icon-button",attrs:{"md-menu-trigger":""}},[t("md-icon",[e._v("phone")])],1),e._v(" "),t("md-menu-content",[t("md-menu-item",[t("md-icon",[e._v("phone")]),e._v(" "),t("span",[e._v("My Item 1")])],1),e._v(" "),t("md-menu-item",[t("md-icon",[e._v("phone")]),e._v(" "),t("span",[e._v("My Item 2")])],1),e._v(" "),t("md-menu-item",[t("md-icon",[e._v("phone")]),e._v(" "),t("span",[e._v("My Item 3")])],1)],1)],1),e._v(" "),t("md-menu",{attrs:{"md-direction":"bottom left","md-size":"4"}},[t("md-button",{staticClass:"md-icon-button",attrs:{"md-menu-trigger":""}},[t("md-icon",[e._v("near_me")])],1),e._v(" "),t("md-menu-content",[t("md-menu-item",[t("span",[e._v("Find on map")]),e._v(" "),t("md-icon",[e._v("near_me")])],1),e._v(" "),t("md-menu-item",[t("span",[e._v("Call")]),e._v(" "),t("md-icon",[e._v("phone")])],1)],1)],1),e._v(" "),t("md-button",{staticClass:"md-raised md-primary",nativeOn:{click:function(m){e.$refs.menu.open(m)}}},[e._v("Open contact card")])],1),e._v(" "),t("div",{slot:"code"},[t("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n contacts\n \n\n \n
\n \n \n\n \n \n phone\n \n\n \n \n phone\n My Item 1\n \n\n \n phone\n My Item 2\n \n\n \n phone\n My Item 3\n \n \n \n\n \n \n near_me\n \n\n \n \n Find on map\n near_me\n \n\n \n Call\n phone\n \n \n \n\n Open contact card\n ')]),e._v(" "),t("code-block",{attrs:{lang:"sass"}},[e._v("\n .author-card {\n padding: 8px 16px;\n display: flex;\n align-items: center;\n\n .md-avatar {\n margin-right: 16px;\n }\n\n .author-card-info {\n display: flex;\n flex-flow: column;\n flex: 1;\n }\n\n span {\n font-size: 16px;\n }\n\n .author-card-links {\n display: flex;\n\n a + a {\n margin-left: 8px;\n }\n }\n }\n ")])],1)])],1)])],1)},staticRenderFns:[]}},561:function(e,m,t){var n=t(240);"string"==typeof n&&(n=[[e.id,n,""]]);t(2)(n,{});n.locals&&(e.exports=n.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/19.62eeb5ff.js b/dist/docs/releases/v0.6.0/19.62eeb5ff.js
new file mode 100644
index 0000000..7a6ce71
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/19.62eeb5ff.js
@@ -0,0 +1 @@
+webpackJsonp([19,32],{238:function(e,n,t){n=e.exports=t(1)(),n.push([e.id,".has-ripple[data-v-4615340b]{margin-bottom:16px;padding:20px;display:inline-block;position:relative}.blue[data-v-4615340b]{color:#2196f3}.purple[data-v-4615340b]{color:#9c27b0}.red[data-v-4615340b]{color:#f44336}.card-ripple[data-v-4615340b]{width:300px;margin-top:24px}",""])},352:function(e,n,t){var i,a;t(559);var d=t(480);a=i=i||{},"object"!=typeof i.default&&"function"!=typeof i.default||(a=i=i.default),"function"==typeof a&&(a=a.options),a.render=d.render,a.staticRenderFns=d.staticRenderFns,a._scopeId="data-v-4615340b",e.exports=i},480:function(e,n){e.exports={render:function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("page-content",{attrs:{"page-title":"Components - Ink Ripple"}},[t("docs-component",[t("div",{slot:"description"},[t("p",[e._v("Ink ripples confirm user input by immediately expanding outward from the point of touch. The card lifts to indicate an active state.")]),e._v(" "),t("p",[e._v("To disable the ripple component globally just call the API: ")]),e._v(" "),t("code-block",{attrs:{lang:"javascript"}},[e._v("\n // Anywhere\n Vue.material.inkRipple = false\n\n // Inside a Vue Intance\n this.$material.inkRipple = false\n ")])],1),e._v(" "),t("div",{slot:"api"},[t("api-table",{attrs:{name:"md-ink-ripple"}},[t("md-table",{slot:"properties"},[t("md-table-header",[t("md-table-row",[t("md-table-head",[e._v("Name")]),e._v(" "),t("md-table-head",[e._v("Type")]),e._v(" "),t("md-table-head",[e._v("Description")])],1)],1),e._v(" "),t("md-table-body",[t("md-table-row",[t("md-table-cell",[e._v("md-disabled")]),e._v(" "),t("md-table-cell",[t("code",[e._v("Boolean")])]),e._v(" "),t("md-table-cell",[e._v("Disable the ripple effect on the parent element. Default "),t("code",[e._v("false")])])],1)],1)],1)],1)],1),e._v(" "),t("div",{slot:"example"},[t("example-box",{attrs:{"card-title":"Default"}},[t("div",{slot:"demo"},[t("div",{staticClass:"has-ripple"},[t("md-ink-ripple"),e._v("\n This div has ripple effect\n ")],1),e._v(" "),t("div",{staticClass:"has-ripple purple"},[t("md-ink-ripple"),e._v("\n This div has ripple effect\n ")],1),e._v(" "),t("div",{staticClass:"has-ripple blue"},[t("md-ink-ripple"),e._v("\n This div has ripple effect\n ")],1),e._v(" "),t("div",{staticClass:"has-ripple red"},[t("md-ink-ripple"),e._v("\n This div has ripple effect\n ")],1),e._v(" "),t("md-card",{staticClass:"card-ripple",attrs:{"md-with-hover":""}},[t("md-card-media",[t("md-ink-ripple"),e._v(" "),t("img",{attrs:{src:"assets/card-image-1.jpg",alt:"People"}})],1),e._v(" "),t("md-card-actions",[t("md-button",{staticClass:"md-icon-button"},[t("md-icon",[e._v("favorite")])],1),e._v(" "),t("md-button",{staticClass:"md-icon-button"},[t("md-icon",[e._v("bookmark")])],1),e._v(" "),t("md-button",{staticClass:"md-icon-button"},[t("md-icon",[e._v("share")])],1)],1)],1)],1),e._v(" "),t("div",{slot:"code"},[t("code-block",{attrs:{lang:"xml"}},[e._v('\n
\n \n This div has ripple effect\n
\n\n
\n \n This div has ripple effect\n
\n\n
\n \n This div has ripple effect\n
\n\n
\n \n This div has ripple effect\n
\n\n \n \n \n \n \n\n \n \n favorite\n \n\n \n bookmark\n \n\n \n share\n \n \n \n ')]),e._v(" "),t("code-block",{attrs:{lang:"sass"}},[e._v("\n .has-ripple {\n margin-bottom: 16px;\n padding: 20px;\n display: inline-block;\n position: relative;\n }\n\n .blue {\n color: #2196F3;\n }\n\n .purple {\n color: #9C27B0;\n }\n\n .red {\n color: #F44336;\n }\n\n .card-ripple {\n width: 300px;\n margin-top: 24px;\n }\n ")])],1)])],1)])],1)},staticRenderFns:[]}},559:function(e,n,t){var i=t(238);"string"==typeof i&&(i=[[e.id,i,""]]);t(2)(i,{});i.locals&&(e.exports=i.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/2.c10fbd04.js b/dist/docs/releases/v0.6.0/2.c10fbd04.js
new file mode 100644
index 0000000..5db3159
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/2.c10fbd04.js
@@ -0,0 +1 @@
+webpackJsonp([2,32],{114:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={data:function(){return{vertical:"bottom",horizontal:"center",duration:4e3}},methods:{open:function(){this.$refs.snackbar.open()}}},e.exports=t.default},246:function(e,t,a){t=e.exports=a(1)(),t.push([e.id,"",""])},360:function(e,t,a){var o,n;a(567),o=a(114);var d=a(502);n=o=o||{},"object"!=typeof o.default&&"function"!=typeof o.default||(n=o=o.default),"function"==typeof n&&(n=n.options),n.render=d.render,n.staticRenderFns=d.staticRenderFns,n._scopeId="data-v-6eaf2ec0",e.exports=o},502:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("page-content",{attrs:{"page-title":"Components - Snackbar"}},[a("docs-component",[a("div",{slot:"description"},[a("p",[e._v("Snackbars contain a single line of text directly related to the operation performed. They may contain a text action, but no icons.")])]),e._v(" "),a("div",{slot:"api"},[a("api-table",{attrs:{name:"md-snackbar"}},[a("md-table",{slot:"properties"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("md-position")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("Specify which vertical and horizontal position the snackbar will take. Accepts "),a("code",[e._v("top left")]),e._v("|"),a("code",[e._v("top center")]),e._v("|"),a("code",[e._v("right center")]),e._v("|"),a("code",[e._v("bottom left")]),e._v("|"),a("code",[e._v("bottom center")]),e._v("|"),a("code",[e._v("bottom right")]),e._v(". Default: "),a("code",[e._v("bottom center")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("md-duration")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Number")])]),e._v(" "),a("md-table-cell",[e._v("The duration visibility in miliseconds. Default: "),a("code",[e._v("4000")])])],1)],1)],1),e._v(" "),a("md-table",{slot:"events"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Value")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("open")]),e._v(" "),a("md-table-cell",[e._v("None")]),e._v(" "),a("md-table-cell",[e._v("Triggered when the snackbar open.")])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("close")]),e._v(" "),a("md-table-cell",[e._v("None")]),e._v(" "),a("md-table-cell",[e._v("Triggered when the snackbar closes.")])],1)],1)],1),e._v(" "),a("md-table",{slot:"methods"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("open")]),e._v(" "),a("md-table-cell",[e._v("Opens the Snackbar.")])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("close")]),e._v(" "),a("md-table-cell",[e._v("Closes the Snackbar.")])],1)],1)],1)],1)],1),e._v(" "),a("div",{slot:"example"},[a("example-box",{attrs:{"card-title":"Default"}},[a("div",{slot:"demo"},[a("form",{attrs:{novalidate:""},on:{submit:function(t){t.stopPropagation(),t.preventDefault(),e.open(t)}}},[a("div",[a("div",{staticClass:"md-body-2"},[e._v("Vertical")]),e._v(" "),a("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.vertical,expression:"vertical"}],attrs:{id:"top",name:"snackbar-vertical","md-value":"top"},domProps:{value:e.vertical},on:{input:function(t){e.vertical=t}}},[e._v("top")]),e._v(" "),a("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.vertical,expression:"vertical"}],attrs:{id:"bottom",name:"snackbar-vertical","md-value":"bottom"},domProps:{value:e.vertical},on:{input:function(t){e.vertical=t}}},[e._v("bottom")])],1),e._v(" "),a("div",[a("div",{staticClass:"md-body-2"},[e._v("Horizontal")]),e._v(" "),a("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.horizontal,expression:"horizontal"}],attrs:{id:"left",name:"snackbar-horizontal","md-value":"left"},domProps:{value:e.horizontal},on:{input:function(t){e.horizontal=t}}},[e._v("left")]),e._v(" "),a("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.horizontal,expression:"horizontal"}],attrs:{id:"center",name:"snackbar-horizontal","md-value":"center"},domProps:{value:e.horizontal},on:{input:function(t){e.horizontal=t}}},[e._v("center")]),e._v(" "),a("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.horizontal,expression:"horizontal"}],attrs:{id:"right",name:"snackbar-horizontal","md-value":"right"},domProps:{value:e.horizontal},on:{input:function(t){e.horizontal=t}}},[e._v("right")])],1),e._v(" "),a("div",[a("div",{staticClass:"md-body-2"},[e._v("Delay")]),e._v(" "),a("md-input-container",[a("md-input",{directives:[{name:"model",rawName:"v-model",value:e.duration,expression:"duration"}],attrs:{type:"number"},domProps:{value:e.duration},on:{input:function(t){e.duration=e._n(t)},blur:function(t){e.$forceUpdate()}}})],1)],1),e._v(" "),a("md-button",{staticClass:"md-primary md-raised",attrs:{type:"submit"}},[e._v("Open Snackbar")]),e._v(" "),a("md-snackbar",{ref:"snackbar",attrs:{"md-position":e.vertical+" "+e.horizontal,"md-duration":e.duration}},[a("span",[e._v("Connection timeout. Showing limited messages.")]),e._v(" "),a("md-button",{staticClass:"md-accent",attrs:{"md-theme":"light-blue"},on:{click:function(t){e.$refs.snackbar.close()}}},[e._v("Retry")])],1)],1)]),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n ')]),e._v(" "),a("code-block",{attrs:{lang:"javacript"}},[e._v("\n export default {\n data: () => ({\n vertical: 'bottom',\n horizontal: 'center',\n duration: 4000\n }),\n methods: {\n open() {\n this.$refs.snackbar.open();\n }\n }\n };\n ")])],1)])],1)]),e._v(" "),a("md-button",{staticClass:"md-fab md-fab-bottom-right"},[a("md-icon",[e._v("add")])],1)],1)},staticRenderFns:[]}},567:function(e,t,a){var o=a(246);"string"==typeof o&&(o=[[e.id,o,""]]);a(2)(o,{});o.locals&&(e.exports=o.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/20.861ee4ae.js b/dist/docs/releases/v0.6.0/20.861ee4ae.js
new file mode 100644
index 0000000..a27c6d3
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/20.861ee4ae.js
@@ -0,0 +1 @@
+webpackJsonp([20,32],{237:function(e,s,m){s=e.exports=m(1)(),s.push([e.id,"strong[data-v-42fff1b4]{margin:auto 16px auto 0;display:inline-block}",""])},350:function(e,s,m){var t,o;m(558);var a=m(478);o=t=t||{},"object"!=typeof t.default&&"function"!=typeof t.default||(o=t=t.default),"function"==typeof o&&(o=o.options),o.render=a.render,o.staticRenderFns=a.staticRenderFns,o._scopeId="data-v-42fff1b4",e.exports=t},478:function(e,s){e.exports={render:function(){var e=this,s=e.$createElement,m=e._self._c||s;return m("page-content",{attrs:{"page-title":"Components - Icon"}},[m("docs-component",[m("div",{slot:"description"},[m("p",[e._v("A system icon, or UI icon, symbolizes a command, file, device, or directory. System icons are also used to represent common actions like trash, print, and save.")]),e._v(" "),m("p",[e._v("You can see the full list of icons on the "),m("a",{attrs:{href:"https://material.io/icons/",target:"_blank",rel:"noopener"}},[e._v("Material Icons")]),e._v(" website. Replace the spaces in the icon name by underscores (for example, "),m("code",[e._v("arrow back")]),e._v(" becomes "),m("code",[e._v("arrow_back")]),e._v(").")]),e._v(" "),m("p",[e._v("Alternatively you can use your PNG or SVG icons using the "),m("code",[e._v("md-src")]),e._v(" property.")]),e._v(" "),m("p",[e._v("The following classes can be applied to change the color palette:")]),e._v(" "),m("ul",{staticClass:"md-body-2"},[m("li",[m("code",[e._v("md-primary")])]),e._v(" "),m("li",[m("code",[e._v("md-accent")])]),e._v(" "),m("li",[m("code",[e._v("md-warn")])])])]),e._v(" "),m("div",{slot:"api"},[m("api-table",{attrs:{name:"md-icon"}},[m("md-table",{slot:"classes"},[m("md-table-header",[m("md-table-row",[m("md-table-head",[e._v("Name")]),e._v(" "),m("md-table-head",[e._v("Description")])],1)],1),e._v(" "),m("md-table-body",[m("md-table-row",[m("md-table-cell",[e._v("md-size-{type}")]),e._v(" "),m("md-table-cell",[e._v("Change the size of an icon. From 2x to 5x. Example: md-size-3x")])],1)],1)],1),e._v(" "),m("md-table",{slot:"properties"},[m("md-table-header",[m("md-table-row",[m("md-table-head",[e._v("Name")]),e._v(" "),m("md-table-head",[e._v("Type")]),e._v(" "),m("md-table-head",[e._v("Description")])],1)],1),e._v(" "),m("md-table-body",[m("md-table-row",[m("md-table-cell",[e._v("md-src")]),e._v(" "),m("md-table-cell",[m("code",[e._v("String")])]),e._v(" "),m("md-table-cell",[e._v("The src of the image file. Can be SVG icons too!")])],1)],1)],1)],1)],1),e._v(" "),m("div",{slot:"example"},[m("example-box",{attrs:{"card-title":"Google Font"}},[m("div",{slot:"demo"},[m("md-icon",[e._v("home")]),e._v(" "),m("md-icon",{staticClass:"md-primary"},[e._v("menu")]),e._v(" "),m("md-icon",{staticClass:"md-accent"},[e._v("people")]),e._v(" "),m("md-icon",{staticClass:"md-warn"},[e._v("access_time")])],1),e._v(" "),m("div",{slot:"code"},[m("code-block",{attrs:{lang:"xml"}},[e._v('\n home\n menu\n people\n access_time\n ')])],1)]),e._v(" "),m("example-box",{attrs:{"card-title":"Sizes"}},[m("div",{slot:"demo"},[m("md-icon",[e._v("home")]),e._v(" "),m("md-icon",{staticClass:"md-size-2x md-primary"},[e._v("home")]),e._v(" "),m("md-icon",{staticClass:"md-size-3x md-accent"},[e._v("home")]),e._v(" "),m("md-icon",{staticClass:"md-size-4x md-warn"},[e._v("home")])],1),e._v(" "),m("div",{slot:"code"},[m("code-block",{attrs:{lang:"xml"}},[e._v('\n home\n home\n home\n home\n ')])],1)]),e._v(" "),m("example-box",{attrs:{"card-title":"Images"}},[m("div",{slot:"demo"},[m("md-layout",{attrs:{"md-gutter":!0}},[m("md-layout",[m("strong",{staticClass:"md-body-2"},[e._v("SVG:")]),e._v(" "),m("md-icon",{attrs:{"md-src":"assets/icon-home.svg"}}),e._v(" "),m("md-icon",{staticClass:"md-size-2x md-primary",attrs:{"md-src":"assets/icon-home.svg"}}),e._v(" "),m("md-icon",{staticClass:"md-size-3x md-accent",attrs:{"md-src":"assets/icon-home.svg"}}),e._v(" "),m("md-icon",{staticClass:"md-size-4x md-warn",attrs:{"md-src":"assets/icon-home.svg"}})],1),e._v(" "),m("md-layout",[m("strong",{staticClass:"md-body-2"},[e._v("PNG:")]),e._v(" "),m("md-icon",{attrs:{"md-src":"assets/icon-menu.png"}},[e._v("menu")]),e._v(" "),m("md-icon",{staticClass:"md-size-2x",attrs:{"md-src":"assets/icon-menu.png"}},[e._v("menu")]),e._v(" "),m("md-icon",{staticClass:"md-size-3x",attrs:{"md-src":"assets/icon-menu.png"}},[e._v("menu")]),e._v(" "),m("md-icon",{staticClass:"md-size-4x",attrs:{"md-src":"assets/icon-menu.png"}},[e._v("menu")])],1)],1)],1),e._v(" "),m("div",{slot:"code"},[m("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n SVG:\n \n \n \n \n \n\n \n PNG:\n menu\n menu\n menu\n menu\n \n \n ')])],1)]),e._v(" "),m("example-box",{attrs:{"card-title":"Themes"}},[m("div",{slot:"demo"},[m("md-icon",{staticClass:"md-primary",attrs:{"md-theme":"light-blue"}},[e._v("home")]),e._v(" "),m("md-icon",{staticClass:"md-primary",attrs:{"md-theme":"green"}},[e._v("menu")]),e._v(" "),m("md-icon",{staticClass:"md-primary",attrs:{"md-theme":"brown"}},[e._v("people")]),e._v(" "),m("md-icon",{staticClass:"md-primary",attrs:{"md-theme":"orange"}},[e._v("access_time")])],1),e._v(" "),m("div",{slot:"code"},[m("code-block",{attrs:{lang:"xml"}},[e._v('\n home\n menu\n people\n access_time\n ')])],1)])],1)])],1)},staticRenderFns:[]}},558:function(e,s,m){var t=m(237);"string"==typeof t&&(t=[[e.id,t,""]]);m(2)(t,{});t.locals&&(e.exports=t.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/21.9fa5a6ef.js b/dist/docs/releases/v0.6.0/21.9fa5a6ef.js
new file mode 100644
index 0000000..a5b6c8d
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/21.9fa5a6ef.js
@@ -0,0 +1 @@
+webpackJsonp([21,32],{236:function(t,o,d){o=t.exports=d(1)(),o.push([t.id,".md-avatar[data-v-406a6b18],.md-button[data-v-406a6b18]{margin:24px}",""])},367:function(t,o,d){var a,i;d(557);var e=d(476);i=a=a||{},"object"!=typeof a.default&&"function"!=typeof a.default||(i=a=a.default),"function"==typeof i&&(i=i.options),i.render=e.render,i.staticRenderFns=e.staticRenderFns,i._scopeId="data-v-406a6b18",t.exports=a},476:function(t,o){t.exports={render:function(){var t=this,o=t.$createElement,d=t._self._c||o;return d("page-content",{attrs:{"page-title":"Components - Tooltip"}},[d("docs-component",[d("div",{slot:"description"},[d("p",[t._v("Tooltips identify an element when they are activated. They may contain brief helper text about its function. For example, they may contain text information about actionable icons.")])]),t._v(" "),d("div",{slot:"api"},[d("api-table",{attrs:{name:"md-tooltip"}},[d("md-table",{slot:"properties"},[d("md-table-header",[d("md-table-row",[d("md-table-head",[t._v("Name")]),t._v(" "),d("md-table-head",[t._v("Type")]),t._v(" "),d("md-table-head",[t._v("Description")])],1)],1),t._v(" "),d("md-table-body",[d("md-table-row",[d("md-table-cell",[t._v("md-direction")]),t._v(" "),d("md-table-cell",[d("code",[t._v("String")])]),t._v(" "),d("md-table-cell",[t._v("Sets the direction position of the parent element. "),d("br"),t._v("Default: "),d("code",[t._v("bottom")]),t._v(" "),d("br"),t._v("Accepts: "),d("code",[t._v("top")]),t._v("|"),d("code",[t._v("right")]),t._v("|"),d("code",[t._v("bottom")]),t._v("|"),d("code",[t._v("left")])])],1),t._v(" "),d("md-table-row",[d("md-table-cell",[t._v("md-delay")]),t._v(" "),d("md-table-cell",[d("code",[t._v("Number")])]),t._v(" "),d("md-table-cell",[t._v("Sets the delay to show the tooltip in ms. "),d("br"),t._v("Default: "),d("code",[t._v("0")])])],1)],1)],1)],1)],1),t._v(" "),d("div",{slot:"example"},[d("example-box",{attrs:{"card-title":"Default"}},[d("div",{slot:"demo"},[d("div",[d("md-button",{staticClass:"md-icon-button md-raised md-primary"},[d("md-icon",[t._v("folder")]),t._v(" "),d("md-tooltip",{attrs:{"md-direction":"top"}},[t._v("My tooltip")])],1),t._v(" "),d("md-avatar",[d("img",{attrs:{src:"assets/avatar-2.jpg",alt:"People"}}),t._v(" "),d("md-tooltip",{attrs:{"md-direction":"bottom"}},[t._v("My tooltip")])],1)],1),t._v(" "),d("div",[d("md-button",{staticClass:"md-icon-button md-raised md-warn"},[d("md-icon",[t._v("home")]),t._v(" "),d("md-tooltip",{attrs:{"md-direction":"left"}},[t._v("My tooltip")])],1),t._v(" "),d("md-avatar",{staticClass:"md-avatar-icon"},[d("md-icon",[t._v("person")]),t._v(" "),d("md-tooltip",{attrs:{"md-direction":"right"}},[t._v("My tooltip")])],1)],1)]),t._v(" "),d("div",{slot:"code"},[d("code-block",{attrs:{lang:"xml"}},[t._v('\n
\n \n folder\n My tooltip\n \n\n \n \n My tooltip\n \n
\n\n
\n \n home\n My tooltip\n \n\n \n person\n My tooltip\n \n
\n \n folder\n My tooltip\n \n\n \n \n My tooltip\n \n
\n\n
\n \n home\n My tooltip\n \n\n \n person\n My tooltip\n \n
\n ')])],1)])],1)])],1)},staticRenderFns:[]}},557:function(t,o,d){var a=d(236);"string"==typeof a&&(a=[[t.id,a,""]]);d(2)(a,{});a.locals&&(t.exports=a.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/22.5475b341.js b/dist/docs/releases/v0.6.0/22.5475b341.js
new file mode 100644
index 0000000..c748be1
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/22.5475b341.js
@@ -0,0 +1 @@
+webpackJsonp([22,32],{227:function(e,t,m){t=e.exports=m(1)(),t.push([e.id,".md-whiteframe[data-v-15951f42]{width:100px;height:100px;margin:24px 12px 12px 24px;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}",""])},368:function(e,t,m){var d,a;m(548);var i=m(450);a=d=d||{},"object"!=typeof d.default&&"function"!=typeof d.default||(a=d=d.default),"function"==typeof a&&(a=a.options),a.render=i.render,a.staticRenderFns=i.staticRenderFns,a._scopeId="data-v-15951f42",e.exports=d},450:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,m=e._self._c||t;return m("page-content",{attrs:{"page-title":"Components - Whiteframe"}},[m("docs-component",[m("div",{slot:"description"},[m("p",[e._v("In the physical world, objects can be stacked or affixed to one another, but cannot pass through each other. Objects also cast shadows and reflect light.")])]),e._v(" "),m("div",{slot:"api"},[m("api-table",{attrs:{name:"md-whiteframe"}},[m("md-table",{slot:"properties"},[m("md-table-header",[m("md-table-row",[m("md-table-head",[e._v("Name")]),e._v(" "),m("md-table-head",[e._v("Type")]),e._v(" "),m("md-table-head",[e._v("Description")])],1)],1),e._v(" "),m("md-table-body",[m("md-table-row",[m("md-table-cell",[e._v("md-elevation")]),e._v(" "),m("md-table-cell",[m("code",[e._v("Number")])]),e._v(" "),m("md-table-cell",[e._v("The amount of elevation. From 0 to 24. "),m("br"),e._v("Default: "),m("code",[e._v("1")])])],1),e._v(" "),m("md-table-row",[m("md-table-cell",[e._v("md-tag")]),e._v(" "),m("md-table-cell",[m("code",[e._v("String")])]),e._v(" "),m("md-table-cell",[e._v("The generated html tag "),m("br"),e._v("Default: "),m("code",[e._v("div")])])],1)],1)],1)],1)],1),e._v(" "),m("div",{slot:"example"},[m("example-box",{attrs:{"card-title":"Default"}},[m("div",{slot:"demo"},[m("md-whiteframe",{attrs:{"md-tag":"section"}},[e._v("1dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"2"}},[e._v("2dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"3"}},[e._v("3dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"4"}},[e._v("4dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"5"}},[e._v("5dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"6"}},[e._v("6dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"7"}},[e._v("7dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"8"}},[e._v("8dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"9"}},[e._v("9dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"10"}},[e._v("10dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"11"}},[e._v("11dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"12"}},[e._v("12dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"13"}},[e._v("13dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"14"}},[e._v("14dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"15"}},[e._v("15dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"16"}},[e._v("16dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"17"}},[e._v("17dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"18"}},[e._v("18dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"19"}},[e._v("19dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"20"}},[e._v("20dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"21"}},[e._v("21dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"22"}},[e._v("22dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"23"}},[e._v("23dp")]),e._v(" "),m("md-whiteframe",{attrs:{"md-elevation":"24"}},[e._v("24dp")])],1),e._v(" "),m("div",{slot:"code"},[m("code-block",{attrs:{lang:"xml"}},[e._v('\n 1dp\n 2dp\n 3dp\n 4dp\n 5dp\n 6dp\n 7dp\n 8dp\n 9dp\n 10dp\n 11dp\n 12dp\n 13dp\n 14dp\n 15dp\n 16dp\n 17dp\n 18dp\n 19dp\n 20dp\n 21dp\n 22dp\n 23dp\n 24dp\n ')])],1)])],1)])],1)},staticRenderFns:[]}},548:function(e,t,m){var d=m(227);"string"==typeof d&&(d=[[e.id,d,""]]);m(2)(d,{});d.locals&&(e.exports=d.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/23.56fe1118.js b/dist/docs/releases/v0.6.0/23.56fe1118.js
new file mode 100644
index 0000000..4990ebe
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/23.56fe1118.js
@@ -0,0 +1 @@
+webpackJsonp([23,32],{225:function(t,n,o){n=t.exports=o(1)(),n.push([t.id,".md-button-toggle+.md-button-toggle[data-v-13cae4e1]{margin-top:16px}",""])},343:function(t,n,o){var d,m;o(546);var i=o(447);m=d=d||{},"object"!=typeof d.default&&"function"!=typeof d.default||(m=d=d.default),"function"==typeof m&&(m=m.options),m.render=i.render,m.staticRenderFns=i.staticRenderFns,m._scopeId="data-v-13cae4e1",t.exports=d},447:function(t,n){t.exports={render:function(){var t=this,n=t.$createElement,o=t._self._c||n;return o("page-content",{attrs:{"page-title":"Components - Button Toggle"}},[o("docs-component",[o("div",{slot:"description"},[o("p",[t._v("Toggle buttons may be used to group related options. Arrange layout and spacing to convey that certain toggle buttons are part of a group.")]),t._v(" "),o("p",[t._v("The following classes can be applied to change the color palette:")]),t._v(" "),o("ul",{staticClass:"md-body-2"},[o("li",[o("code",[t._v("md-primary")])]),t._v(" "),o("li",[o("code",[t._v("md-accent")])]),t._v(" "),o("li",[o("code",[t._v("md-warn")])])])]),t._v(" "),o("div",{slot:"api"},[o("api-table",{attrs:{name:"md-button-toggle"}},[o("md-table",{slot:"properties"},[o("md-table-header",[o("md-table-row",[o("md-table-head",[t._v("Name")]),t._v(" "),o("md-table-head",[t._v("Type")]),t._v(" "),o("md-table-head",[t._v("Description")])],1)],1),t._v(" "),o("md-table-body",[o("md-table-row",[o("md-table-cell",[t._v("md-single")]),t._v(" "),o("md-table-cell",[o("code",[t._v("Boolean")])]),t._v(" "),o("md-table-cell",[t._v("Enable single selection. Default "),o("code",[t._v("false")])])],1)],1)],1)],1),t._v(" "),o("api-table",{attrs:{name:"md-button"}},[o("md-table",{slot:"classes"},[o("md-table-header",[o("md-table-row",[o("md-table-head",[t._v("Name")]),t._v(" "),o("md-table-head",[t._v("Description")])],1)],1),t._v(" "),o("md-table-body",[o("md-table-row",[o("md-table-cell",[t._v("md-toggle")]),t._v(" "),o("md-table-cell",[t._v("Active selection")])],1)],1)],1)],1)],1),t._v(" "),o("div",{slot:"example"},[o("example-box",{attrs:{"card-title":"Multiple"}},[o("div",{slot:"demo"},[o("md-button-toggle",[o("md-button",{staticClass:"md-icon-button md-toggle"},[o("md-icon",[t._v("format_bold")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("format_italic")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("strikethrough_s")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button md-toggle"},[o("md-icon",[t._v("title")])],1)],1),t._v(" "),o("md-button-toggle",{staticClass:"md-primary"},[o("md-button",{staticClass:"md-icon-button md-toggle"},[o("md-icon",[t._v("format_bold")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button md-toggle"},[o("md-icon",[t._v("format_italic")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("format_underline")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("title")])],1)],1),t._v(" "),o("md-button-toggle",{staticClass:"md-accent"},[o("md-button",{staticClass:"md-icon-button md-toggle"},[o("md-icon",[t._v("format_bold")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button md-toggle"},[o("md-icon",[t._v("format_italic")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("format_underline")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("title")])],1)],1),t._v(" "),o("md-button-toggle",{staticClass:"md-warn"},[o("md-button",{staticClass:"md-icon-button md-toggle"},[o("md-icon",[t._v("format_bold")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button md-toggle"},[o("md-icon",[t._v("format_italic")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("strikethrough_s")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("title")])],1)],1),t._v(" "),o("md-button-toggle",{staticClass:"md-primary"},[o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("format_bold")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button",attrs:{disabled:""}},[o("md-icon",[t._v("format_italic")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button",attrs:{disabled:""}},[o("md-icon",[t._v("strikethrough_s")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("title")])],1)],1),t._v(" "),o("md-button-toggle",[o("md-button",{staticClass:"md-toggle"},[t._v("Works")]),t._v(" "),o("md-button",{staticClass:"md-toggle"},[t._v("With")]),t._v(" "),o("md-button",[t._v("Text")]),t._v(" "),o("md-button",[t._v("Too")])],1)],1),t._v(" "),o("div",{slot:"code"},[o("code-block",{attrs:{lang:"xml"}},[t._v('\n \n \n format_bold\n \n\n \n format_italic\n \n\n \n strikethrough_s\n \n\n \n title\n \n \n\n \n \n format_bold\n \n\n \n format_italic\n \n\n \n format_underline\n \n\n \n title\n \n \n\n \n \n format_bold\n \n\n \n format_italic\n \n\n \n format_underline\n \n\n \n title\n \n \n\n \n \n format_bold\n \n\n \n format_italic\n \n\n \n strikethrough_s\n \n\n \n title\n \n \n\n \n \n format_bold\n \n\n \n format_italic\n \n\n \n strikethrough_s\n \n\n \n title\n \n \n\n \n Works\n With\n Text\n Too\n \n ')])],1)]),t._v(" "),o("example-box",{attrs:{"card-title":"Single Selection"}},[o("div",{slot:"demo"},[o("md-button-toggle",{attrs:{"md-single":""}},[o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("format_bold")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("format_italic")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("strikethrough_s")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button md-toggle"},[o("md-icon",[t._v("title")])],1)],1),t._v(" "),o("md-button-toggle",{staticClass:"md-primary",attrs:{"md-single":""}},[o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("format_bold")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button md-toggle"},[o("md-icon",[t._v("format_italic")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("format_underline")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("title")])],1)],1),t._v(" "),o("md-button-toggle",{staticClass:"md-accent",attrs:{"md-single":""}},[o("md-button",{staticClass:"md-icon-button md-toggle"},[o("md-icon",[t._v("format_bold")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("format_italic")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("format_underline")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("title")])],1)],1),t._v(" "),o("md-button-toggle",{staticClass:"md-warn",attrs:{"md-single":""}},[o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("format_bold")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("format_italic")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button md-toggle"},[o("md-icon",[t._v("strikethrough_s")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("title")])],1)],1),t._v(" "),o("md-button-toggle",{staticClass:"md-primary",attrs:{"md-single":""}},[o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("format_bold")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button",attrs:{disabled:""}},[o("md-icon",[t._v("format_italic")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button",attrs:{disabled:""}},[o("md-icon",[t._v("strikethrough_s")])],1),t._v(" "),o("md-button",{staticClass:"md-icon-button"},[o("md-icon",[t._v("title")])],1)],1),t._v(" "),o("md-button-toggle",{attrs:{"md-single":""}},[o("md-button",[t._v("Works")]),t._v(" "),o("md-button",[t._v("With")]),t._v(" "),o("md-button",[t._v("Text")]),t._v(" "),o("md-button",[t._v("Too")])],1)],1),t._v(" "),o("div",{slot:"code"},[o("code-block",{attrs:{lang:"xml"}},[t._v('\n \n \n format_bold\n \n\n \n format_italic\n \n\n \n strikethrough_s\n \n\n \n title\n \n \n\n \n \n format_bold\n \n\n \n format_italic\n \n\n \n format_underline\n \n\n \n title\n \n \n\n \n \n format_bold\n \n\n \n format_italic\n \n\n \n format_underline\n \n\n \n title\n \n \n\n \n \n format_bold\n \n\n \n format_italic\n \n\n \n strikethrough_s\n \n\n \n title\n \n \n\n \n \n format_bold\n \n\n \n format_italic\n \n\n \n strikethrough_s\n \n\n \n title\n \n \n\n \n Works\n With\n Text\n Too\n \n ')])],1)])],1)])],1)},staticRenderFns:[]}},546:function(t,n,o){var d=o(225);"string"==typeof d&&(d=[[t.id,d,""]]);o(2)(d,{});d.locals&&(t.exports=d.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/24.d3091d84.js b/dist/docs/releases/v0.6.0/24.d3091d84.js
new file mode 100644
index 0000000..b7c697f
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/24.d3091d84.js
@@ -0,0 +1 @@
+webpackJsonp([24,32],{116:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={data:function(){return{checked0:!0,checked1:!0,checked2:!0,checked3:!0,checked4:!0,checked5:!0,checked6:!0,checked7:!0,checked8:!0,checked9:!0,checked10:!0}},methods:{submit:function(){alert("This switch submits the form")}}},e.exports=t.default},363:function(e,t,d){var m,c;m=d(116);var a=d(499);c=m=m||{},"object"!=typeof m.default&&"function"!=typeof m.default||(c=m=m.default),"function"==typeof c&&(c=c.options),c.render=a.render,c.staticRenderFns=a.staticRenderFns,e.exports=m},499:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,d=e._self._c||t;return d("page-content",{attrs:{"page-title":"Components - Switch"}},[d("docs-component",[d("div",{slot:"description"},[d("p",[e._v("On/off switches toggle the state of a single settings option. The option that the switch controls, as well as the state it’s in, should be made clear from the corresponding inline label.")]),e._v(" "),d("p",[e._v("The following classes can be applied to change the color palette:")]),e._v(" "),d("ul",{staticClass:"md-body-2"},[d("li",[d("code",[e._v("md-primary")])]),e._v(" "),d("li",[d("code",[e._v("md-warn")])])])]),e._v(" "),d("div",{slot:"api"},[d("api-table",{attrs:{name:"md-switch"}},[d("md-table",{slot:"properties"},[d("md-table-header",[d("md-table-row",[d("md-table-head",[e._v("Name")]),e._v(" "),d("md-table-head",[e._v("Type")]),e._v(" "),d("md-table-head",[e._v("Description")])],1)],1),e._v(" "),d("md-table-body",[d("md-table-row",[d("md-table-cell",[e._v("v-model")]),e._v(" "),d("md-table-cell",[d("code",[e._v("String")])]),e._v(" "),d("md-table-cell",[e._v("A required model object to bind the value.")])],1),e._v(" "),d("md-table-row",[d("md-table-cell",[e._v("type")]),e._v(" "),d("md-table-cell",[d("code",[e._v("String")])]),e._v(" "),d("md-table-cell",[e._v("Sets the type. Default "),d("code",[e._v("button")])])],1),e._v(" "),d("md-table-row",[d("md-table-cell",[e._v("name")]),e._v(" "),d("md-table-cell",[d("code",[e._v("String")])]),e._v(" "),d("md-table-cell",[e._v("Set the switch name.")])],1),e._v(" "),d("md-table-row",[d("md-table-cell",[e._v("id")]),e._v(" "),d("md-table-cell",[d("code",[e._v("String")])]),e._v(" "),d("md-table-cell",[e._v("Set the switch id.")])],1),e._v(" "),d("md-table-row",[d("md-table-cell",[e._v("disabled")]),e._v(" "),d("md-table-cell",[d("code",[e._v("Boolean")])]),e._v(" "),d("md-table-cell",[e._v("Disable the switch and prevent his actions. Default "),d("code",[e._v("false")])])],1)],1)],1),e._v(" "),d("md-table",{slot:"events"},[d("md-table-header",[d("md-table-row",[d("md-table-head",[e._v("Name")]),e._v(" "),d("md-table-head",[e._v("Value")]),e._v(" "),d("md-table-head",[e._v("Description")])],1)],1),e._v(" "),d("md-table-body",[d("md-table-row",[d("md-table-cell",[e._v("change")]),e._v(" "),d("md-table-cell",[e._v("Receive the state of the switch")]),e._v(" "),d("md-table-cell",[e._v("Triggered when the switch changes his value.")])],1)],1)],1)],1)],1),e._v(" "),d("div",{slot:"example"},[d("example-box",{attrs:{"card-title":"Default"}},[d("div",{slot:"demo"},[d("div",[d("md-switch",{directives:[{name:"model",rawName:"v-model",value:e.checked0,expression:"checked0"}],attrs:{id:"my-test0",name:"my-test0"},domProps:{value:e.checked0},on:{input:function(t){e.checked0=t}}})],1),e._v(" "),d("div",[d("md-switch",{directives:[{name:"model",rawName:"v-model",value:e.checked1,expression:"checked1"}],staticClass:"md-primary",attrs:{id:"my-test1",name:"my-test1"},domProps:{value:e.checked1},on:{input:function(t){e.checked1=t}}},[e._v("Primary Color")])],1),e._v(" "),d("div",[d("md-switch",{directives:[{name:"model",rawName:"v-model",value:e.checked2,expression:"checked2"}],staticClass:"md-warn",attrs:{id:"my-test2",name:"my-test2"},domProps:{value:e.checked2},on:{input:function(t){e.checked2=t}}},[e._v("Warn Color")])],1),e._v(" "),d("div",[d("md-switch",{directives:[{name:"model",rawName:"v-model",value:e.checked3,expression:"checked3"}],attrs:{id:"my-test3",name:"my-test3",disabled:""},domProps:{value:e.checked3},on:{input:function(t){e.checked3=t}}},[e._v("Disabled")])],1)]),e._v(" "),d("div",{slot:"code"},[d("code-block",{attrs:{lang:"xml"}},[e._v('\n \n Primary Color\n Warn Color\n Disabled\n ')])],1)]),e._v(" "),d("example-box",{attrs:{"card-title":"With type"}},[d("div",{slot:"demo"},[d("md-switch",{directives:[{name:"model",rawName:"v-model",value:e.checked8,expression:"checked8"}],attrs:{id:"my-test8",name:"my-test8"},domProps:{value:e.checked8},on:{input:function(t){e.checked8=t}}},[e._v("Default")]),e._v(" "),d("form",{on:{click:function(t){t.stopPropagation(),t.preventDefault(),e.submit(t)}}},[d("md-switch",{directives:[{name:"model",rawName:"v-model",value:e.checked9,expression:"checked9"}],staticClass:"md-primary",attrs:{type:"submit",id:"my-test9",name:"my-test9"},domProps:{value:e.checked9},on:{input:function(t){e.checked9=t}}},[e._v("Submit")])],1)],1),e._v(" "),d("div",{slot:"code"},[d("code-block",{attrs:{lang:"xml"}},[e._v('\n Default\n\n \n ')])],1)]),e._v(" "),d("example-box",{attrs:{"card-title":"Themes"}},[d("div",{slot:"demo"},[d("div",[d("md-switch",{directives:[{name:"model",rawName:"v-model",value:e.checked4,expression:"checked4"}],staticClass:"md-primary",attrs:{"md-theme":"orange",id:"my-test4",name:"my-test4"},domProps:{value:e.checked4},on:{input:function(t){e.checked4=t}}})],1),e._v(" "),d("div",[d("md-switch",{directives:[{name:"model",rawName:"v-model",value:e.checked5,expression:"checked5"}],staticClass:"md-primary",attrs:{"md-theme":"green",id:"my-test5",name:"my-test5"},domProps:{value:e.checked5},on:{input:function(t){e.checked5=t}}},[e._v("Green Primary Color")])],1),e._v(" "),d("div",[d("md-switch",{directives:[{name:"model",rawName:"v-model",value:e.checked6,expression:"checked6"}],staticClass:"md-primary",attrs:{"md-theme":"brown",id:"my-test6",name:"my-test6"},domProps:{value:e.checked6},on:{input:function(t){e.checked6=t}}},[e._v("Brown Primary Color")])],1),e._v(" "),d("div",[d("md-switch",{directives:[{name:"model",rawName:"v-model",value:e.checked7,expression:"checked7"}],staticClass:"md-primary",attrs:{"md-theme":"light-blue",id:"my-test7",name:"my-test7",disabled:""},domProps:{value:e.checked7},on:{input:function(t){e.checked7=t}}},[e._v("Light Blue Primary Color Disabled")])],1)]),e._v(" "),d("div",{slot:"code"},[d("code-block",{attrs:{lang:"xml"}},[e._v('\n \n Green Primary Color\n Brown Primary Color\n Light Blue Primary Color Disabled\n ')])],1)])],1)])],1)},staticRenderFns:[]}}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/25.bb881f9f.js b/dist/docs/releases/v0.6.0/25.bb881f9f.js
new file mode 100644
index 0000000..3130eb2
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/25.bb881f9f.js
@@ -0,0 +1 @@
+webpackJsonp([25,32],{111:function(e,a){"use strict";Object.defineProperty(a,"__esModule",{value:!0}),a.default={data:function(){return{radio1:2,radio2:1,radio3:1,radio4:1,radio5:2,radio6:3,radio7:1,radio8:2}}},e.exports=a.default},357:function(e,a,d){var o,r;o=d(111);var m=d(470);r=o=o||{},"object"!=typeof o.default&&"function"!=typeof o.default||(r=o=o.default),"function"==typeof r&&(r=r.options),r.render=m.render,r.staticRenderFns=m.staticRenderFns,e.exports=o},470:function(e,a){e.exports={render:function(){var e=this,a=e.$createElement,d=e._self._c||a;return d("page-content",{attrs:{"page-title":"Components - Radio"}},[d("docs-component",[d("div",{slot:"description"},[d("p",[e._v("Radio buttons allow the user to select one option from a set. Use radio buttons for exclusive selection if you think that the user needs to see all available options side-by-side.")]),e._v(" "),d("p",[e._v("The following classes can be applied to change the color palette:")]),e._v(" "),d("ul",{staticClass:"md-body-2"},[d("li",[d("code",[e._v("md-primary")])]),e._v(" "),d("li",[d("code",[e._v("md-warn")])])])]),e._v(" "),d("div",{slot:"api"},[d("api-table",{attrs:{name:"md-radio"}},[d("md-table",{slot:"properties"},[d("md-table-header",[d("md-table-row",[d("md-table-head",[e._v("Name")]),e._v(" "),d("md-table-head",[e._v("Type")]),e._v(" "),d("md-table-head",[e._v("Description")])],1)],1),e._v(" "),d("md-table-body",[d("md-table-row",[d("md-table-cell",[e._v("v-model")]),e._v(" "),d("md-table-cell",[d("code",[e._v("String")])]),e._v(" "),d("md-table-cell",[e._v("A required model object to bind the value.")])],1),e._v(" "),d("md-table-row",[d("md-table-cell",[e._v("md-value")]),e._v(" "),d("md-table-cell",[d("code",[e._v("String")])]),e._v(" "),d("md-table-cell",[e._v("The single value of the particular radio button. Required.")])],1),e._v(" "),d("md-table-row",[d("md-table-cell",[e._v("name")]),e._v(" "),d("md-table-cell",[d("code",[e._v("String")])]),e._v(" "),d("md-table-cell",[e._v("Set the radio name.")])],1),e._v(" "),d("md-table-row",[d("md-table-cell",[e._v("id")]),e._v(" "),d("md-table-cell",[d("code",[e._v("String")])]),e._v(" "),d("md-table-cell",[e._v("Set the radio id.")])],1),e._v(" "),d("md-table-row",[d("md-table-cell",[e._v("disabled")]),e._v(" "),d("md-table-cell",[d("code",[e._v("Boolean")])]),e._v(" "),d("md-table-cell",[e._v("Disable the radio and prevent his actions. Default "),d("code",[e._v("false")])])],1)],1)],1),e._v(" "),d("md-table",{slot:"events"},[d("md-table-header",[d("md-table-row",[d("md-table-head",[e._v("Name")]),e._v(" "),d("md-table-head",[e._v("Value")]),e._v(" "),d("md-table-head",[e._v("Description")])],1)],1),e._v(" "),d("md-table-body",[d("md-table-row",[d("md-table-cell",[e._v("change")]),e._v(" "),d("md-table-cell",[e._v("Receive the state of the radio")]),e._v(" "),d("md-table-cell",[e._v("Triggered when the radio changes his value.")])],1)],1)],1)],1)],1),e._v(" "),d("div",{slot:"example"},[d("example-box",{attrs:{"card-title":"Default"}},[d("div",{slot:"demo"},[d("div",[d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio1,expression:"radio1"}],attrs:{id:"my-test1",name:"my-test-group1","md-value":"1"},domProps:{value:e.radio1},on:{input:function(a){e.radio1=a}}},[e._v("My beautiful radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio1,expression:"radio1"}],attrs:{id:"my-test2",name:"my-test-group1","md-value":"2"},domProps:{value:e.radio1},on:{input:function(a){e.radio1=a}}},[e._v("Another radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio1,expression:"radio1"}],attrs:{id:"my-test3",name:"my-test-group1","md-value":"3"},domProps:{value:e.radio1},on:{input:function(a){e.radio1=a}}},[e._v("Another another radio")])],1),e._v(" "),d("div",[d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio2,expression:"radio2"}],staticClass:"md-primary",attrs:{id:"my-test4",name:"my-test-group2","md-value":"1"},domProps:{value:e.radio2},on:{input:function(a){e.radio2=a}}},[e._v("Primary radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio2,expression:"radio2"}],staticClass:"md-primary",attrs:{id:"my-test5",name:"my-test-group2","md-value":"2"},domProps:{value:e.radio2},on:{input:function(a){e.radio2=a}}},[e._v("Another primary radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio2,expression:"radio2"}],staticClass:"md-primary",attrs:{id:"my-test6",name:"my-test-group2","md-value":"3"},domProps:{value:e.radio2},on:{input:function(a){e.radio2=a}}},[e._v("Another another primary radio")])],1),e._v(" "),d("div",[d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio3,expression:"radio3"}],staticClass:"md-warn",attrs:{id:"my-test7",name:"my-test-group3","md-value":"1"},domProps:{value:e.radio3},on:{input:function(a){e.radio3=a}}},[e._v("Warn radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio3,expression:"radio3"}],staticClass:"md-warn",attrs:{id:"my-test8",name:"my-test-group3","md-value":"2"},domProps:{value:e.radio3},on:{input:function(a){e.radio3=a}}},[e._v("Another warn radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio3,expression:"radio3"}],staticClass:"md-warn",attrs:{id:"my-test9",name:"my-test-group3","md-value":"3"},domProps:{value:e.radio3},on:{input:function(a){e.radio3=a}}},[e._v("Another another warn radio")])],1),e._v(" "),d("div",[d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio4,expression:"radio4"}],attrs:{id:"my-test10",name:"my-test-group3","md-value":"1"},domProps:{value:e.radio4},on:{input:function(a){e.radio4=a}}},[e._v("My beautiful radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio4,expression:"radio4"}],attrs:{id:"my-test11",name:"my-test-group3","md-value":"2",disabled:""},domProps:{value:e.radio4},on:{input:function(a){e.radio4=a}}},[e._v("Disabled")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio4,expression:"radio4"}],attrs:{id:"my-test12",name:"my-test-group3","md-value":"3"},domProps:{value:e.radio4},on:{input:function(a){e.radio4=a}}},[e._v("Another radio")])],1)]),e._v(" "),d("div",{slot:"code"},[d("code-block",{attrs:{lang:"xml"}},[e._v('\n
\n My beautiful radio\n Another radio\n Another another radio\n
\n\n
\n Primary radio\n Another primary radio\n Another another primary radio\n
\n\n
\n Warn radio\n Another warn radio\n Another another warn radio\n
\n\n
\n My beautiful radio\n Disabled\n Another radio\n
\n ')])],1)]),e._v(" "),d("example-box",{attrs:{"card-title":"Themes"}},[d("div",{slot:"demo"},[d("md-theme",{attrs:{"md-name":"orange"}},[d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio5,expression:"radio5"}],staticClass:"md-primary",attrs:{id:"my-test13",name:"my-test-group4","md-value":"1"},domProps:{value:e.radio5},on:{input:function(a){e.radio5=a}}},[e._v("Orange radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio5,expression:"radio5"}],staticClass:"md-primary",attrs:{id:"my-test14",name:"my-test-group4","md-value":"2"},domProps:{value:e.radio5},on:{input:function(a){e.radio5=a}}},[e._v("Another Orange radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio5,expression:"radio5"}],staticClass:"md-primary",attrs:{id:"my-test15",name:"my-test-group4","md-value":"3"},domProps:{value:e.radio5},on:{input:function(a){e.radio5=a}}},[e._v("Another another Orange radio")])],1),e._v(" "),d("md-theme",{attrs:{"md-name":"brown"}},[d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio6,expression:"radio6"}],staticClass:"md-primary",attrs:{id:"my-test16",name:"my-test-group4","md-value":"1"},domProps:{value:e.radio6},on:{input:function(a){e.radio6=a}}},[e._v("Brown radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio6,expression:"radio6"}],staticClass:"md-primary",attrs:{id:"my-test17",name:"my-test-group4","md-value":"2"},domProps:{value:e.radio6},on:{input:function(a){e.radio6=a}}},[e._v("Another Brown radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio6,expression:"radio6"}],staticClass:"md-primary",attrs:{id:"my-test18",name:"my-test-group4","md-value":"3"},domProps:{value:e.radio6},on:{input:function(a){e.radio6=a}}},[e._v("Another another Brown radio")])],1),e._v(" "),d("md-theme",{attrs:{"md-name":"green"}},[d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio7,expression:"radio7"}],staticClass:"md-primary",attrs:{id:"my-test19",name:"my-test-group6","md-value":"1"},domProps:{value:e.radio7},on:{input:function(a){e.radio7=a}}},[e._v("Green radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio7,expression:"radio7"}],staticClass:"md-primary",attrs:{id:"my-test20",name:"my-test-group6","md-value":"2"},domProps:{value:e.radio7},on:{input:function(a){e.radio7=a}}},[e._v("Another Green radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio7,expression:"radio7"}],staticClass:"md-primary",attrs:{id:"my-test21",name:"my-test-group6","md-value":"3"},domProps:{value:e.radio7},on:{input:function(a){e.radio7=a}}},[e._v("Another another Green radio")])],1),e._v(" "),d("md-theme",{attrs:{"md-name":"teal"}},[d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio8,expression:"radio8"}],staticClass:"md-primary",attrs:{id:"my-test22",name:"my-test-group3","md-value":"1"},domProps:{value:e.radio8},on:{input:function(a){e.radio8=a}}},[e._v("Teal radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio8,expression:"radio8"}],staticClass:"md-primary",attrs:{id:"my-test23",name:"my-test-group3","md-value":"2",disabled:""},domProps:{value:e.radio8},on:{input:function(a){e.radio8=a}}},[e._v("Teal disabled radio")]),e._v(" "),d("md-radio",{directives:[{name:"model",rawName:"v-model",value:e.radio8,expression:"radio8"}],staticClass:"md-primary",attrs:{id:"my-test24",name:"my-test-group3","md-value":"3"},domProps:{value:e.radio8},on:{input:function(a){e.radio8=a}}},[e._v("Another another Teal radio")])],1)],1),e._v(" "),d("div",{slot:"code"},[d("code-block",{attrs:{lang:"xml"}},[e._v('\n \n Orange radio\n Another Orange radio\n Another another Orange radio\n \n\n \n Brown radio\n Another Brown radio\n Another another Brown radio\n \n\n \n Green radio\n Another Green radio\n Another another Green radio\n \n\n \n Teal radio\n Teal disabled radio\n Another another Teal radio\n \n ')])],1)])],1)])],1)},staticRenderFns:[]}}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/26.6c68ad23.js b/dist/docs/releases/v0.6.0/26.6c68ad23.js
new file mode 100644
index 0000000..455cf82
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/26.6c68ad23.js
@@ -0,0 +1 @@
+webpackJsonp([26,32],{108:function(e,a){"use strict";Object.defineProperty(a,"__esModule",{value:!0}),a.default={data:function(){return{src:null}},methods:{loadImage:function(){var e=["assets/joker-1.jpg","assets/joker-2.jpg","assets/joker-3.jpg","assets/card-image-1.jpg","assets/card-image-2.jpg"];this.src=e[Math.floor(5*Math.random())]},clearImage:function(){this.src=null}}},e.exports=a.default},351:function(e,a,t){var s,n;s=t(108);var d=t(452);n=s=s||{},"object"!=typeof s.default&&"function"!=typeof s.default||(n=s=s.default),"function"==typeof n&&(n=n.options),n.render=d.render,n.staticRenderFns=d.staticRenderFns,e.exports=s},452:function(e,a){e.exports={render:function(){var e=this,a=e.$createElement,t=e._self._c||a;return t("page-content",{attrs:{"page-title":"Components - Image Loader"}},[t("docs-component",[t("div",{slot:"description"},[t("p",[e._v("Illustrations and photographs may load and transition in three phases by staggering opacity, exposure, and saturation levels.")])]),e._v(" "),t("div",{slot:"api"},[t("api-table",{attrs:{name:"md-image"}},[t("md-table",{slot:"properties"},[t("md-table-header",[t("md-table-row",[t("md-table-head",[e._v("Name")]),e._v(" "),t("md-table-head",[e._v("Type")]),e._v(" "),t("md-table-head",[e._v("Description")])],1)],1),e._v(" "),t("md-table-body",[t("md-table-row",[t("md-table-cell",[e._v("md-src")]),e._v(" "),t("md-table-cell",[t("code",[e._v("String")])]),e._v(" "),t("md-table-cell",[e._v("The image source. Accepts any image file extension.")])],1)],1)],1)],1)],1),e._v(" "),t("div",{slot:"example"},[t("example-box",{attrs:{"card-title":"Default"}},[t("div",{slot:"demo"},[t("md-button",{staticClass:"md-primary md-raised",on:{click:e.loadImage}},[e._v("Load Image")]),e._v(" "),t("md-button",{staticClass:"md-primary md-raised",on:{click:e.clearImage}},[e._v("Clear Image")]),e._v(" "),t("div",[t("md-image",{attrs:{"md-src":e.src}})],1)],1),e._v(" "),t("div",{slot:"code"},[t("code-block",{attrs:{lang:"xml"}},[e._v('\n Load Image\n Clear Image\n\n
\n \n
\n ')]),e._v(" "),t("code-block",{attrs:{lang:"xml"}},[e._v("\n export default {\n data: () => ({\n src: null\n }),\n methods: {\n loadImage() {\n let options = [\n 'assets/joker-1.jpg',\n 'assets/joker-2.jpg',\n 'assets/joker-3.jpg',\n 'assets/card-image-1.jpg',\n 'assets/card-image-2.jpg'\n ];\n\n this.src = options[Math.floor(Math.random() * 5)];\n },\n clearImage() {\n this.src = null;\n }\n }\n };\n ")])],1)])],1)])],1)},staticRenderFns:[]}}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/27.dac46d92.js b/dist/docs/releases/v0.6.0/27.dac46d92.js
new file mode 100644
index 0000000..915f179
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/27.dac46d92.js
@@ -0,0 +1 @@
+webpackJsonp([27,32],{107:function(e,l){"use strict";Object.defineProperty(l,"__esModule",{value:!0}),l.default={data:function(){return{single:null,placeholder:null,initialValue:"my-profile-picture.jpg",multiple:null,onlyImages:null}}},e.exports=l.default},349:function(e,l,t){var n,a;n=t(107);var i=t(479);a=n=n||{},"object"!=typeof n.default&&"function"!=typeof n.default||(a=n=n.default),"function"==typeof a&&(a=a.options),a.render=i.render,a.staticRenderFns=i.staticRenderFns,e.exports=n},479:function(e,l){e.exports={render:function(){var e=this,l=e.$createElement,t=e._self._c||l;return t("page-content",{attrs:{"page-title":"Components - File"}},[t("docs-component",[t("div",{slot:"description"},[t("p",[e._v("The file picker aim to select files like images, videos and other formats. They can have multiselection and use the devide file system to pick the file.")])]),e._v(" "),t("div",{slot:"api"},[t("api-table",{attrs:{name:"md-file"}},[t("md-table",{slot:"properties"},[t("md-table-header",[t("md-table-row",[t("md-table-head",[e._v("Name")]),e._v(" "),t("md-table-head",[e._v("Type")]),e._v(" "),t("md-table-head",[e._v("Description")])],1)],1),e._v(" "),t("md-table-body",[t("md-table-row",[t("md-table-cell",[e._v("v-model")]),e._v(" "),t("md-table-cell",[t("code",[e._v("String")])]),e._v(" "),t("md-table-cell",[e._v("A required model object to bind the value.")])],1),e._v(" "),t("md-table-row",[t("md-table-cell",[e._v("id")]),e._v(" "),t("md-table-cell",[t("code",[e._v("String")])]),e._v(" "),t("md-table-cell",[e._v("Sets the input id.")])],1),e._v(" "),t("md-table-row",[t("md-table-cell",[e._v("name")]),e._v(" "),t("md-table-cell",[t("code",[e._v("String")])]),e._v(" "),t("md-table-cell",[e._v("Sets the input name.")])],1),e._v(" "),t("md-table-row",[t("md-table-cell",[e._v("disabled")]),e._v(" "),t("md-table-cell",[t("code",[e._v("Boolean")])]),e._v(" "),t("md-table-cell",[e._v("Disable the input and prevent his actions. Default "),t("code",[e._v("false")])])],1),e._v(" "),t("md-table-row",[t("md-table-cell",[e._v("required")]),e._v(" "),t("md-table-cell",[t("code",[e._v("Boolean")])]),e._v(" "),t("md-table-cell",[e._v('Apply the required rule to style the label with an "*". Default '),t("code",[e._v("false")])])],1),e._v(" "),t("md-table-row",[t("md-table-cell",[e._v("accept")]),e._v(" "),t("md-table-cell",[t("code",[e._v("String")])]),e._v(" "),t("md-table-cell",[e._v("Filter files that can be selected by mimetype pattern.")])],1),e._v(" "),t("md-table-row",[t("md-table-cell",[e._v("multiple")]),e._v(" "),t("md-table-cell",[t("code",[e._v("Boolean")])]),e._v(" "),t("md-table-cell",[e._v("Enable multiple selection.")])],1)],1)],1)],1)],1),e._v(" "),t("div",{slot:"example"},[t("example-box",{attrs:{"card-title":"Single File"}},[t("div",{slot:"demo"},[t("md-input-container",[t("label",[e._v("Single")]),e._v(" "),t("md-file",{directives:[{name:"model",rawName:"v-model",value:e.single,expression:"single"}],domProps:{value:e.single},on:{input:function(l){e.single=l}}})],1),e._v(" "),t("md-input-container",[t("md-file",{directives:[{name:"model",rawName:"v-model",value:e.placeholder,expression:"placeholder"}],attrs:{placeholder:"A nice input placeholder"},domProps:{value:e.placeholder},on:{input:function(l){e.placeholder=l}}})],1),e._v(" "),t("md-input-container",[t("md-file",{attrs:{placeholder:"Disabled",disabled:""}})],1),e._v(" "),t("md-input-container",[t("label",[e._v("Initial Value")]),e._v(" "),t("md-file",{directives:[{name:"model",rawName:"v-model",value:e.initialValue,expression:"initialValue"}],domProps:{value:e.initialValue},on:{input:function(l){e.initialValue=l}}})],1),e._v(" "),t("md-input-container",[t("label",[e._v("Multiple")]),e._v(" "),t("md-file",{directives:[{name:"model",rawName:"v-model",value:e.multiple,expression:"multiple"}],attrs:{multiple:""},domProps:{value:e.multiple},on:{input:function(l){e.multiple=l}}})],1),e._v(" "),t("md-input-container",[t("label",[e._v("Only Images")]),e._v(" "),t("md-file",{directives:[{name:"model",rawName:"v-model",value:e.onlyImages,expression:"onlyImages"}],attrs:{accept:"image/*"},domProps:{value:e.onlyImages},on:{input:function(l){e.onlyImages=l}}})],1)],1),e._v(" "),t("div",{slot:"code"},[t("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n ')]),e._v(" "),t("code-block",{attrs:{lang:"javascript"}},[e._v("\n export default {\n data: () => ({\n single: null,\n placeholder: null,\n initialValue: 'my-profile-picture.jpg',\n multiple: null,\n onlyImages: null\n })\n };\n ")])],1)])],1)])],1)},staticRenderFns:[]}}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/28.3b5484f8.js b/dist/docs/releases/v0.6.0/28.3b5484f8.js
new file mode 100644
index 0000000..e063f88
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/28.3b5484f8.js
@@ -0,0 +1 @@
+webpackJsonp([28,32],{105:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={data:function(){return{fruits:["Orange","Apple","Pineapple"],contacts:["Marcos Moura"],cities:["Amsterdam","London","Tokio"]}}},e.exports=t.default},347:function(e,t,l){var a,d;a=l(105);var o=l(506);d=a=a||{},"object"!=typeof a.default&&"function"!=typeof a.default||(d=a=a.default),"function"==typeof d&&(d=d.options),d.render=o.render,d.staticRenderFns=o.staticRenderFns,e.exports=a},506:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,l=e._self._c||t;return l("page-content",{attrs:{"page-title":"Components - Chips"}},[l("docs-component",[l("div",{slot:"description"},[l("p",[e._v("A chip may contain entities such as a photo, text, rules, an icon, or a contact.")])]),e._v(" "),l("div",{slot:"api"},[l("api-table",{attrs:{name:"md-chip"}},[l("md-table",{slot:"properties"},[l("md-table-header",[l("md-table-row",[l("md-table-head",[e._v("Name")]),e._v(" "),l("md-table-head",[e._v("Type")]),e._v(" "),l("md-table-head",[e._v("Description")])],1)],1),e._v(" "),l("md-table-body",[l("md-table-row",[l("md-table-cell",[e._v("disabled")]),e._v(" "),l("md-table-cell",[l("code",[e._v("Boolean")])]),e._v(" "),l("md-table-cell",[e._v("Disable the chip and prevent his actions. Default: "),l("code",[e._v("false")])])],1),e._v(" "),l("md-table-row",[l("md-table-cell",[e._v("md-deletable")]),e._v(" "),l("md-table-cell",[l("code",[e._v("Boolean")])]),e._v(" "),l("md-table-cell",[e._v("Enable delete button. Default: "),l("code",[e._v("false")])])],1)],1)],1),e._v(" "),l("md-table",{slot:"events"},[l("md-table-header",[l("md-table-row",[l("md-table-head",[e._v("Name")]),e._v(" "),l("md-table-head",[e._v("Value")]),e._v(" "),l("md-table-head",[e._v("Description")])],1)],1),e._v(" "),l("md-table-body",[l("md-table-row",[l("md-table-cell",[e._v("delete")]),e._v(" "),l("md-table-cell",[e._v("None")]),e._v(" "),l("md-table-cell",[e._v("Triggered when delete button is clicked.")])],1)],1)],1)],1),e._v(" "),l("api-table",{attrs:{name:"md-chips"}},[l("md-table",{slot:"properties"},[l("md-table-header",[l("md-table-row",[l("md-table-head",[e._v("Name")]),e._v(" "),l("md-table-head",[e._v("Type")]),e._v(" "),l("md-table-head",[e._v("Description")])],1)],1),e._v(" "),l("md-table-body",[l("md-table-row",[l("md-table-cell",[e._v("v-model")]),e._v(" "),l("md-table-cell",[l("code",[e._v("Array")])]),e._v(" "),l("md-table-cell",[e._v("A required model object to bind the value.")])],1),e._v(" "),l("md-table-row",[l("md-table-cell",[e._v("disabled")]),e._v(" "),l("md-table-cell",[l("code",[e._v("Boolean")])]),e._v(" "),l("md-table-cell",[e._v("Disable the chips and prevent his actions. Default: "),l("code",[e._v("false")])])],1),e._v(" "),l("md-table-row",[l("md-table-cell",[e._v("md-input-id")]),e._v(" "),l("md-table-cell",[l("code",[e._v("String")])]),e._v(" "),l("md-table-cell",[e._v("The chips input id.")])],1),e._v(" "),l("md-table-row",[l("md-table-cell",[e._v("md-input-name")]),e._v(" "),l("md-table-cell",[l("code",[e._v("String")])]),e._v(" "),l("md-table-cell",[e._v("The chips input name.")])],1),e._v(" "),l("md-table-row",[l("md-table-cell",[e._v("md-input-placeholder")]),e._v(" "),l("md-table-cell",[l("code",[e._v("String")])]),e._v(" "),l("md-table-cell",[e._v("The chips input placeholder.")])],1),e._v(" "),l("md-table-row",[l("md-table-cell",[e._v("md-input-type")]),e._v(" "),l("md-table-cell",[l("code",[e._v("String")])]),e._v(" "),l("md-table-cell",[e._v('The chips input type. Cannot be "file". Default: '),l("code",[e._v("text")])])],1),e._v(" "),l("md-table-row",[l("md-table-cell",[e._v("md-static")]),e._v(" "),l("md-table-cell",[l("code",[e._v("Boolean")])]),e._v(" "),l("md-table-cell",[e._v("Display read only chips. Default: "),l("code",[e._v("false")])])],1),e._v(" "),l("md-table-row",[l("md-table-cell",[e._v("md-max")]),e._v(" "),l("md-table-cell",[l("code",[e._v("Number")])]),e._v(" "),l("md-table-cell",[e._v("The max number of chips to be added. This property works only for new chips. If the initial value in the v-model have more chips than the max value, all the chips will be rendered. Default: "),l("code",[e._v("Infinity")])])],1)],1)],1),e._v(" "),l("md-table",{slot:"events"},[l("md-table-header",[l("md-table-row",[l("md-table-head",[e._v("Name")]),e._v(" "),l("md-table-head",[e._v("Value")]),e._v(" "),l("md-table-head",[e._v("Description")])],1)],1),e._v(" "),l("md-table-body",[l("md-table-row",[l("md-table-cell",[e._v("change")]),e._v(" "),l("md-table-cell",[e._v("The selcted chips Array")]),e._v(" "),l("md-table-cell",[e._v("Triggered when the chips is created or deleted.")])],1)],1)],1)],1)],1),e._v(" "),l("div",{slot:"example"},[l("example-box",{attrs:{"card-title":"Single Chips"}},[l("div",{slot:"demo"},[l("md-chip",[e._v("Marcos Moura")]),e._v(" "),l("md-chip",{attrs:{"md-deletable":""}},[e._v("Luiza Ivanenko")])],1),e._v(" "),l("div",{slot:"code"},[l("code-block",{attrs:{lang:"xml"}},[e._v("\n Marcos Moura\n Luiza Ivanenko\n ")])],1)]),e._v(" "),l("example-box",{attrs:{"card-title":"Static"}},[l("div",{slot:"demo"},[l("md-chips",{directives:[{name:"model",rawName:"v-model",value:e.fruits,expression:"fruits"}],attrs:{"md-static":""},domProps:{value:e.fruits},on:{input:function(t){e.fruits=t}},scopedSlots:{default:function(t){return[e._v(e._s(t.value))]}}})],1),e._v(" "),l("div",{slot:"code"},[l("code-block",{attrs:{lang:"xml"}},[e._v('\n \n '+e._s("{{ chip.value }}")+"\n \n ")]),e._v(" "),l("code-block",{attrs:{lang:"javascript"}},[e._v("\n export default {\n data: () => ({\n fruits: ['Orange', 'Apple', 'Pineapple']\n })\n };\n ")])],1)]),e._v(" "),l("example-box",{attrs:{"card-title":"Editable"}},[l("div",{slot:"demo"},[l("md-chips",{directives:[{name:"model",rawName:"v-model",value:e.contacts,expression:"contacts"}],attrs:{"md-input-placeholder":"Add a contact"},domProps:{value:e.contacts},on:{input:function(t){e.contacts=t}},scopedSlots:{default:function(t){return[e._v(e._s(t.value))]}}})],1),e._v(" "),l("div",{slot:"code"},[l("code-block",{attrs:{lang:"xml"}},[e._v('\n \n '+e._s("{{ chip.value }}")+"\n \n ")]),e._v(" "),l("code-block",{attrs:{lang:"javascript"}},[e._v("\n export default {\n data: () => ({\n contacts: ['Marcos Moura'],\n })\n };\n ")])],1)]),e._v(" "),l("example-box",{attrs:{"card-title":"Limit"}},[l("div",{slot:"demo"},[l("md-chips",{directives:[{name:"model",rawName:"v-model",value:e.cities,expression:"cities"}],attrs:{"md-max":5,"md-input-placeholder":"Cities..."},domProps:{value:e.cities},on:{input:function(t){e.cities=t}},scopedSlots:{default:function(t){return[l("span",[e._v(e._s(t.value))]),e._v(" "),"Amsterdam"===t.value?l("small",[e._v("(favorite)")]):e._e()]}}})],1),e._v(" "),l("div",{slot:"code"},[l("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n '+e._s("{{ chip.value }}")+"\n (favorite)\n \n \n ")]),e._v(" "),l("code-block",{attrs:{lang:"javascript"}},[e._v("\n export default {\n data: () => ({\n cities: ['Amsterdam', 'London', 'Tokio']\n })\n };\n ")])],1)])],1)])],1)},staticRenderFns:[]}}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/29.cf5daabc.js b/dist/docs/releases/v0.6.0/29.cf5daabc.js
new file mode 100644
index 0000000..2cc12fe
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/29.cf5daabc.js
@@ -0,0 +1 @@
+webpackJsonp([29,32],{104:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={data:function(){return{checkbox:!0,checkbox2:!1}}},e.exports=t.default},346:function(e,t,c){var o,m;o=c(104);var a=c(492);m=o=o||{},"object"!=typeof o.default&&"function"!=typeof o.default||(m=o=o.default),"function"==typeof m&&(m=m.options),m.render=a.render,m.staticRenderFns=a.staticRenderFns,e.exports=o},492:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,c=e._self._c||t;return c("page-content",{attrs:{"page-title":"Components - Checkbox"}},[c("docs-component",[c("div",{slot:"description"},[c("p",[e._v("Checkboxes allow the user to select multiple options from a set.")]),e._v(" "),c("p",[e._v("The following classes can be applied to change the color palette:")]),e._v(" "),c("ul",{staticClass:"md-body-2"},[c("li",[c("code",[e._v("md-primary")])]),e._v(" "),c("li",[c("code",[e._v("md-warn")])])])]),e._v(" "),c("div",{slot:"api"},[c("api-table",{attrs:{name:"md-checkbox"}},[c("md-table",{slot:"properties"},[c("md-table-header",[c("md-table-row",[c("md-table-head",[e._v("Name")]),e._v(" "),c("md-table-head",[e._v("Type")]),e._v(" "),c("md-table-head",[e._v("Description")])],1)],1),e._v(" "),c("md-table-body",[c("md-table-row",[c("md-table-cell",[e._v("v-model")]),e._v(" "),c("md-table-cell",[c("code",[e._v("String")])]),e._v(" "),c("md-table-cell",[e._v("A required model object to bind the value.")])],1),e._v(" "),c("md-table-row",[c("md-table-cell",[e._v("name")]),e._v(" "),c("md-table-cell",[c("code",[e._v("String")])]),e._v(" "),c("md-table-cell",[e._v("Set the checkbox name.")])],1),e._v(" "),c("md-table-row",[c("md-table-cell",[e._v("id")]),e._v(" "),c("md-table-cell",[c("code",[e._v("String")])]),e._v(" "),c("md-table-cell",[e._v("Set the checkbox id.")])],1),e._v(" "),c("md-table-row",[c("md-table-cell",[e._v("disabled")]),e._v(" "),c("md-table-cell",[c("code",[e._v("Boolean")])]),e._v(" "),c("md-table-cell",[e._v("Disable the checkbox and prevent his actions. Default "),c("code",[e._v("false")])])],1)],1)],1),e._v(" "),c("md-table",{slot:"events"},[c("md-table-header",[c("md-table-row",[c("md-table-head",[e._v("Name")]),e._v(" "),c("md-table-head",[e._v("Value")]),e._v(" "),c("md-table-head",[e._v("Description")])],1)],1),e._v(" "),c("md-table-body",[c("md-table-row",[c("md-table-cell",[e._v("change")]),e._v(" "),c("md-table-cell",[e._v("Receive the state of the checkbox")]),e._v(" "),c("md-table-cell",[e._v("Triggered when the checkbox changes his value.")])],1)],1)],1)],1)],1),e._v(" "),c("div",{slot:"example"},[c("example-box",{attrs:{"card-title":"Default"}},[c("div",{slot:"demo"},[c("md-checkbox",{directives:[{name:"model",rawName:"v-model",value:e.checkbox,expression:"checkbox"}],attrs:{id:"my-test1",name:"my-test1"},domProps:{value:e.checkbox},on:{input:function(t){e.checkbox=t}}},[e._v("Regular Checkbox")]),e._v(" "),c("md-checkbox",{directives:[{name:"model",rawName:"v-model",value:e.checkbox,expression:"checkbox"}],staticClass:"md-primary",attrs:{id:"my-test2",name:"my-test2"},domProps:{value:e.checkbox},on:{input:function(t){e.checkbox=t}}},[e._v("Primary Color")]),e._v(" "),c("md-checkbox",{directives:[{name:"model",rawName:"v-model",value:e.checkbox,expression:"checkbox"}],staticClass:"md-warn",attrs:{id:"my-test3",name:"my-test3"},domProps:{value:e.checkbox},on:{input:function(t){e.checkbox=t}}},[e._v("Warn Color")]),e._v(" "),c("md-checkbox",{directives:[{name:"model",rawName:"v-model",value:e.checkbox,expression:"checkbox"}],attrs:{id:"my-test4",name:"my-test4",disabled:""},domProps:{value:e.checkbox},on:{input:function(t){e.checkbox=t}}},[e._v("Disabled")])],1),e._v(" "),c("div",{slot:"code"},[c("code-block",{attrs:{lang:"xml"}},[e._v('\n Regular Checkbox\n Primary Color\n Warn Color\n Disabled\n ')])],1)]),e._v(" "),c("example-box",{attrs:{"card-title":"Themes"}},[c("div",{slot:"demo"},[c("md-checkbox",{directives:[{name:"model",rawName:"v-model",value:e.checkbox2,expression:"checkbox2"}],staticClass:"md-primary",attrs:{"md-theme":"orange",id:"my-test5",name:"my-test5"},domProps:{value:e.checkbox2},on:{input:function(t){e.checkbox2=t}}},[e._v("Primary Orange")]),e._v(" "),c("md-checkbox",{directives:[{name:"model",rawName:"v-model",value:e.checkbox2,expression:"checkbox2"}],staticClass:"md-primary",attrs:{"md-theme":"green",id:"my-test6",name:"my-test6"},domProps:{value:e.checkbox2},on:{input:function(t){e.checkbox2=t}}},[e._v("Primary Green")]),e._v(" "),c("md-checkbox",{directives:[{name:"model",rawName:"v-model",value:e.checkbox2,expression:"checkbox2"}],staticClass:"md-primary",attrs:{"md-theme":"light-blue",id:"my-test7",name:"my-test7"},domProps:{value:e.checkbox2},on:{input:function(t){e.checkbox2=t}}},[e._v("Primary Light Blue")]),e._v(" "),c("md-checkbox",{directives:[{name:"model",rawName:"v-model",value:e.checkbox2,expression:"checkbox2"}],staticClass:"md-primary",attrs:{"md-theme":"indigo",id:"my-test8",name:"my-test8"},domProps:{value:e.checkbox2},on:{input:function(t){e.checkbox2=t}}},[e._v("Primary Indigo")]),e._v(" "),c("md-checkbox",{directives:[{name:"model",rawName:"v-model",value:e.checkbox2,expression:"checkbox2"}],staticClass:"md-primary",attrs:{"md-theme":"brown",id:"my-test9",name:"my-test9",disabled:""},domProps:{value:e.checkbox2},on:{input:function(t){e.checkbox2=t}}},[e._v("Primary Brown Disabled")])],1),e._v(" "),c("div",{slot:"code"},[c("code-block",{attrs:{lang:"xml"}},[e._v('\n Primary Orange\n Primary Green\n Primary Light Blue\n Primary Indigo\n Primary Brown Disabled\n ')])],1)])],1)])],1)},staticRenderFns:[]}}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/3.937606f3.js b/dist/docs/releases/v0.6.0/3.937606f3.js
new file mode 100644
index 0000000..d68b431
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/3.937606f3.js
@@ -0,0 +1 @@
+webpackJsonp([3,32],{113:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={methods:{toggleLeftSidenav:function(){this.$refs.leftSidenav.toggle()},toggleRightSidenav:function(){this.$refs.rightSidenav.toggle()},closeRightSidenav:function(){this.$refs.rightSidenav.close()},open:function(e){console.log("Opened: "+e)},close:function(e){console.log("Closed: "+e)}}},e.exports=t.default},247:function(e,t,n){t=e.exports=n(1)(),t.push([e.id,".phone-viewport p[data-v-70fc7701]{padding:8px 16px}",""])},359:function(e,t,n){var o,d;n(568),o=n(113);var i=n(504);d=o=o||{},"object"!=typeof o.default&&"function"!=typeof o.default||(d=o=o.default),"function"==typeof d&&(d=d.options),d.render=i.render,d.staticRenderFns=i.staticRenderFns,d._scopeId="data-v-70fc7701",e.exports=o},504:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("page-content",{attrs:{"page-title":"Components - Sidenav"}},[n("docs-component",[n("div",{slot:"description"},[n("p",[e._v("The sidenav spans the height of the screen, with everything behind it visible but darkened by a backdrop.")])]),e._v(" "),n("div",{slot:"api"},[n("api-table",{attrs:{name:"md-sidenav"}},[n("md-table",{slot:"classes"},[n("md-table-header",[n("md-table-row",[n("md-table-head",[e._v("Name")]),e._v(" "),n("md-table-head",[e._v("Description")])],1)],1),e._v(" "),n("md-table-body",[n("md-table-row",[n("md-table-cell",[e._v("md-left")]),e._v(" "),n("md-table-cell",[e._v("Display the sidenav on the left of parent")])],1),e._v(" "),n("md-table-row",[n("md-table-cell",[e._v("md-right")]),e._v(" "),n("md-table-cell",[e._v("Display the sidenav on the right of parent")])],1),e._v(" "),n("md-table-row",[n("md-table-cell",[e._v("md-fixed")]),e._v(" "),n("md-table-cell",[e._v("Apply position fixed")])],1)],1)],1),e._v(" "),n("md-table",{slot:"events"},[n("md-table-header",[n("md-table-row",[n("md-table-head",[e._v("Name")]),e._v(" "),n("md-table-head",[e._v("Value")]),e._v(" "),n("md-table-head",[e._v("Description")])],1)],1),e._v(" "),n("md-table-body",[n("md-table-row",[n("md-table-cell",[e._v("open")]),e._v(" "),n("md-table-cell",[e._v("None")]),e._v(" "),n("md-table-cell",[e._v("Triggered when the sidenav starts to open.")])],1),e._v(" "),n("md-table-row",[n("md-table-cell",[e._v("close")]),e._v(" "),n("md-table-cell",[e._v("None")]),e._v(" "),n("md-table-cell",[e._v("Triggered when the sidenav starts to close.")])],1)],1)],1),e._v(" "),n("md-table",{slot:"methods"},[n("md-table-header",[n("md-table-row",[n("md-table-head",[e._v("Name")]),e._v(" "),n("md-table-head",[e._v("Description")])],1)],1),e._v(" "),n("md-table-body",[n("md-table-row",[n("md-table-cell",[e._v("open")]),e._v(" "),n("md-table-cell",[e._v("Open the sidenav.")])],1),e._v(" "),n("md-table-row",[n("md-table-cell",[e._v("close")]),e._v(" "),n("md-table-cell",[e._v("Close the sidenav.")])],1),e._v(" "),n("md-table-row",[n("md-table-cell",[e._v("toggle")]),e._v(" "),n("md-table-cell",[e._v("Toggle the sidenav.")])],1)],1)],1)],1)],1),e._v(" "),n("div",{slot:"example"},[n("example-box",{attrs:{"card-title":"Default"}},[n("div",{slot:"demo"},[n("div",{staticClass:"phone-viewport"},[n("md-toolbar",[n("md-button",{staticClass:"md-icon-button",on:{click:e.toggleLeftSidenav}},[n("md-icon",[e._v("menu")])],1),e._v(" "),n("h2",{staticClass:"md-title"},[e._v("My App")])],1),e._v(" "),n("div",[n("md-button",{staticClass:"md-raised md-accent",on:{click:e.toggleRightSidenav}},[e._v("Toggle right")]),e._v(" "),n("p",[e._v("Open console to see the events")])],1),e._v(" "),n("md-sidenav",{ref:"leftSidenav",staticClass:"md-left",on:{open:function(t){e.open("Left")},close:function(t){e.close("Left")}}},[n("md-toolbar",{staticClass:"md-large"},[n("div",{staticClass:"md-toolbar-container"},[n("h3",{staticClass:"md-title"},[e._v("Sidenav content")])])]),e._v(" "),n("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nisi cupiditate esse necessitatibus beatae nobis, deserunt ut est fugit, tempora deleniti, eligendi commodi doloribus. Nemo, assumenda possimus, impedit inventore perferendis iusto!")])],1),e._v(" "),n("md-sidenav",{ref:"rightSidenav",staticClass:"md-right",on:{open:function(t){e.open("Right")},close:function(t){e.close("Right")}}},[n("md-toolbar",[n("div",{staticClass:"md-toolbar-container"},[n("h3",{staticClass:"md-title"},[e._v("Sidenav content")])])]),e._v(" "),n("md-button",{staticClass:"md-raised md-accent",on:{click:e.closeRightSidenav}},[e._v("Close")])],1)],1)]),e._v(" "),n("div",{slot:"code"},[n("code-block",{attrs:{lang:"xml"}},[e._v('\n
\n \n \n menu\n \n\n
My App
\n \n\n
\n Toggle right\n
Open console to see the events
\n
\n\n \n \n
\n
Sidenav content
\n
\n \n\n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nisi cupiditate esse necessitatibus beatae nobis, deserunt ut est fugit, tempora deleniti, eligendi commodi doloribus. Nemo, assumenda possimus, impedit inventore perferendis iusto!
\n \n\n \n \n
\n
Sidenav content
\n
\n \n\n Close\n \n
\n ')]),e._v(" "),n("code-block",{attrs:{lang:"javascript"}},[e._v("\n export default {\n methods: {\n toggleLeftSidenav() {\n this.$refs.leftSidenav.toggle();\n },\n toggleRightSidenav() {\n this.$refs.rightSidenav.toggle();\n },\n closeRightSidenav() {\n this.$refs.rightSidenav.close();\n },\n open(ref) {\n console.log('Opened: ' + ref);\n },\n close(ref) {\n console.log('Closed: ' + ref);\n }\n }\n };\n ")])],1)])],1)])],1)},staticRenderFns:[]}},568:function(e,t,n){var o=n(247);"string"==typeof o&&(o=[[e.id,o,""]]);n(2)(o,{});o.locals&&(e.exports=o.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/30.a9cd11af.js b/dist/docs/releases/v0.6.0/30.a9cd11af.js
new file mode 100644
index 0000000..20ab75f
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/30.a9cd11af.js
@@ -0,0 +1 @@
+webpackJsonp([30,32],{365:function(e,t,i){var a,o,d=i(471);o=a=a||{},"object"!=typeof a.default&&"function"!=typeof a.default||(o=a=a.default),"function"==typeof o&&(o=o.options),o.render=d.render,o.staticRenderFns=d.staticRenderFns,e.exports=a},471:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("page-content",{attrs:{"page-title":"Components - Tabs"}},[i("docs-component",[i("div",{slot:"description"},[i("p",[e._v("Tabs enable content organization at a high level, such as switching between views, data sets, or functional aspects of an app.")]),e._v(" "),i("p",[e._v("The following classes can be applied to change the color palette:")]),e._v(" "),i("ul",{staticClass:"md-body-2"},[i("li",[i("code",[e._v("md-accent")])]),e._v(" "),i("li",[i("code",[e._v("md-warn")])]),e._v(" "),i("li",[i("code",[e._v("md-transparent")])])])]),e._v(" "),i("div",{slot:"api"},[i("api-table",{attrs:{name:"md-tabs"}},[i("md-table",{slot:"properties"},[i("md-table-header",[i("md-table-row",[i("md-table-head",[e._v("Name")]),e._v(" "),i("md-table-head",[e._v("Type")]),e._v(" "),i("md-table-head",[e._v("Description")])],1)],1),e._v(" "),i("md-table-body",[i("md-table-row",[i("md-table-cell",[e._v("md-fixed")]),e._v(" "),i("md-table-cell",[i("code",[e._v("Boolean")])]),e._v(" "),i("md-table-cell",[e._v("Make the tabs navigation fixed and elastic filling the whole space. Default "),i("code",[e._v("false")])])],1),e._v(" "),i("md-table-row",[i("md-table-cell",[e._v("md-centered")]),e._v(" "),i("md-table-cell",[i("code",[e._v("Boolean")])]),e._v(" "),i("md-table-cell",[e._v("Align the tabs navigation to the center. Default "),i("code",[e._v("false")])])],1),e._v(" "),i("md-table-row",[i("md-table-cell",[e._v("md-right")]),e._v(" "),i("md-table-cell",[i("code",[e._v("Boolean")])]),e._v(" "),i("md-table-cell",[e._v("Align the tabs navigation to the right. Default "),i("code",[e._v("false")])])],1),e._v(" "),i("md-table-row",[i("md-table-cell",[e._v("md-dynamic-height")]),e._v(" "),i("md-table-cell",[i("code",[e._v("Boolean")])]),e._v(" "),i("md-table-cell",[e._v("Make the tab content to be resized based on the contents. Default "),i("code",[e._v("true")])])],1),e._v(" "),i("md-table-row",[i("md-table-cell",[e._v("md-elevation")]),e._v(" "),i("md-table-cell",[i("code",[e._v("Number")])]),e._v(" "),i("md-table-cell",[e._v("Add a shadow on the navigation with an whiteframe. Default "),i("code",[e._v("0")])])],1)],1)],1),e._v(" "),i("md-table",{slot:"events"},[i("md-table-header",[i("md-table-row",[i("md-table-head",[e._v("Name")]),e._v(" "),i("md-table-head",[e._v("Value")]),e._v(" "),i("md-table-head",[e._v("Description")])],1)],1),e._v(" "),i("md-table-body",[i("md-table-row",[i("md-table-cell",[e._v("change")]),e._v(" "),i("md-table-cell",[e._v("Receive the tab index")]),e._v(" "),i("md-table-cell",[e._v("Triggered when a tab is activated.")])],1)],1)],1)],1),e._v(" "),i("api-table",{attrs:{name:"md-tab"}},[i("p",[e._v("You should wrap the "),i("code",[e._v("")]),e._v(" in a "),i("code",[e._v("")]),e._v(" as a direct parent.")]),e._v(" "),i("md-table",{slot:"properties"},[i("md-table-header",[i("md-table-row",[i("md-table-head",[e._v("Name")]),e._v(" "),i("md-table-head",[e._v("Type")]),e._v(" "),i("md-table-head",[e._v("Description")])],1)],1),e._v(" "),i("md-table-body",[i("md-table-row",[i("md-table-cell",[e._v("id")]),e._v(" "),i("md-table-cell",[i("code",[e._v("String")])]),e._v(" "),i("md-table-cell",[e._v("Unique id to each tab")])],1),e._v(" "),i("md-table-row",[i("md-table-cell",[e._v("md-label")]),e._v(" "),i("md-table-cell",[i("code",[e._v("String")])]),e._v(" "),i("md-table-cell",[e._v("The tab text")])],1),e._v(" "),i("md-table-row",[i("md-table-cell",[e._v("md-icon")]),e._v(" "),i("md-table-cell",[i("code",[e._v("String")])]),e._v(" "),i("md-table-cell",[e._v("Icon name on the "),i("a",{attrs:{href:"https://material.io/icons/",target:"_blank",rel:"noopener"}},[e._v("Material Icons")]),e._v(" docs.")])],1),e._v(" "),i("md-table-row",[i("md-table-cell",[e._v("md-active")]),e._v(" "),i("md-table-cell",[i("code",[e._v("Boolean")])]),e._v(" "),i("md-table-cell",[e._v("Activate the tab. Default "),i("code",[e._v("false")])])],1),e._v(" "),i("md-table-row",[i("md-table-cell",[e._v("md-disabled")]),e._v(" "),i("md-table-cell",[i("code",[e._v("Boolean")])]),e._v(" "),i("md-table-cell",[e._v("Disable the tab and prevent his actions. Default "),i("code",[e._v("false")])])],1),e._v(" "),i("md-table-row",[i("md-table-cell",[e._v("md-tooltip")]),e._v(" "),i("md-table-cell",[i("code",[e._v("String")])]),e._v(" "),i("md-table-cell",[e._v("Add a tooltip on the tab header. Optional.")])],1),e._v(" "),i("md-table-row",[i("md-table-cell",[e._v("md-tooltip-delay")]),e._v(" "),i("md-table-cell",[i("code",[e._v("String")])]),e._v(" "),i("md-table-cell",[e._v("Delay of the tab header tooltip. Default: "),i("code",[e._v("0")])])],1),e._v(" "),i("md-table-row",[i("md-table-cell",[e._v("md-tooltip-direction")]),e._v(" "),i("md-table-cell",[i("code",[e._v("String")])]),e._v(" "),i("md-table-cell",[e._v("Direction of the tab header tooltip. Default: "),i("code",[e._v("bottom")])])],1)],1)],1)],1)],1),e._v(" "),i("div",{slot:"example"},[i("example-box",{attrs:{"card-title":"Default"}},[i("div",{slot:"demo"},[i("md-tabs",{attrs:{"md-dynamic-height":!1}},[i("md-tab",{attrs:{id:"movies","md-label":"Movies"}},[i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.")])]),e._v(" "),i("md-tab",{attrs:{id:"music","md-label":"Music"}},[i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.")]),e._v(" "),i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.")])]),e._v(" "),i("md-tab",{attrs:{id:"books","md-label":"Books"}},[i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas.")])]),e._v(" "),i("md-tab",{attrs:{id:"pictures","md-label":"Pictures","md-tooltip":"This is the pictures tab!"}},[i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas.")])])],1)],1),e._v(" "),i("div",{slot:"code"},[i("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.
\n \n\n \n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.
\n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.
\n \n\n \n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas.
\n \n\n \n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas.
\n \n \n ')])],1)]),e._v(" "),i("example-box",{attrs:{"card-title":"Fixed"}},[i("div",{slot:"demo"},[i("md-tabs",{staticClass:"md-accent",attrs:{"md-dynamic-height":!1,"md-fixed":""}},[i("md-tab",{attrs:{id:"movies","md-label":"Movies"}},[i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.")])]),e._v(" "),i("md-tab",{attrs:{id:"music","md-label":"Music"}},[i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.")]),e._v(" "),i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.")])]),e._v(" "),i("md-tab",{attrs:{id:"books","md-label":"Books"}},[i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas.")])]),e._v(" "),i("md-tab",{attrs:{id:"pictures","md-label":"Pictures"}},[i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas.")])])],1)],1),e._v(" "),i("div",{slot:"code"},[i("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.
\n \n\n \n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.
\n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.
\n \n\n \n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas.
\n \n\n \n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas.
\n \n \n ')])],1)]),e._v(" "),i("example-box",{attrs:{"card-title":"Centered with Text and Icon"}},[i("div",{slot:"demo"},[i("md-tabs",{staticClass:"md-warn",attrs:{"md-dynamic-height":!1,"md-centered":""}},[i("md-tab",{attrs:{"md-label":"Movies","md-icon":"ondemand_video"}},[i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.")])]),e._v(" "),i("md-tab",{attrs:{"md-label":"Music","md-icon":"music_note"}},[i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.")]),e._v(" "),i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.")])]),e._v(" "),i("md-tab",{attrs:{"md-label":"Books","md-icon":"books"}},[i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas.")])]),e._v(" "),i("md-tab",{attrs:{"md-label":"Pictures","md-icon":"photo"}},[i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas.")])])],1)],1),e._v(" "),i("div",{slot:"code"},[i("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.
\n \n\n \n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.
\n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.
\n \n\n \n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas.
\n \n\n \n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas.
\n \n \n ')])],1)]),e._v(" "),i("example-box",{attrs:{"card-title":"Aligned to the right with only icons"}},[i("div",{slot:"demo"},[i("md-tabs",{staticClass:"md-transparent",attrs:{"md-dynamic-height":!1,"md-right":""}},[i("md-tab",{attrs:{"md-icon":"phone"}},[i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.")])]),e._v(" "),i("md-tab",{attrs:{"md-icon":"favorite"}},[i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.")]),e._v(" "),i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.")])]),e._v(" "),i("md-tab",{attrs:{"md-icon":"near_me"}},[i("p",[e._v("Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas.")])])],1)],1),e._v(" "),i("div",{slot:"code"},[i("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.
\n \n\n \n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.
\n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas amet cum vitae, omnis! Illum quas voluptatem, expedita iste, dicta ipsum ea veniam dolore in, quod saepe reiciendis nihil.
\n \n\n \n
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt dolorum quas.
\n \n \n ')])],1)])],1)])],1)},staticRenderFns:[]}}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/31.111340a6.js b/dist/docs/releases/v0.6.0/31.111340a6.js
new file mode 100644
index 0000000..ddc05f1
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/31.111340a6.js
@@ -0,0 +1 @@
+webpackJsonp([31,32],{362:function(t,n,a){var s,i,d=a(528);i=s=s||{},"object"!=typeof s.default&&"function"!=typeof s.default||(i=s=s.default),"function"==typeof i&&(i=i.options),i.render=d.render,i.staticRenderFns=d.staticRenderFns,t.exports=s},528:function(t,n){t.exports={render:function(){var t=this,n=t.$createElement,a=t._self._c||n;return a("page-content",{attrs:{"page-title":"Components - Subheader"}},[a("docs-component",[a("div",{slot:"description"},[a("p",[t._v("Subheaders may be displayed inline with tiles or associated with content. They are typically related to filtering or sorting criteria.")]),t._v(" "),a("p",[t._v("The following classes can be applied to change the color palette:")]),t._v(" "),a("ul",{staticClass:"md-body-2"},[a("li",[a("code",[t._v("md-primary")])]),t._v(" "),a("li",[a("code",[t._v("md-accent")])]),t._v(" "),a("li",[a("code",[t._v("md-warn")])])])]),t._v(" "),a("div",{slot:"api"},[a("api-table",{attrs:{name:"md-subheader"}},[a("md-table",{slot:"classes"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[t._v("Name")]),t._v(" "),a("md-table-head",[t._v("Description")])],1)],1),t._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[t._v("md-inset")]),t._v(" "),a("md-table-cell",[t._v("Add a padding to the left of the subheader to follow inset lists")])],1)],1)],1)],1)],1),t._v(" "),a("div",{slot:"example"},[a("example-box",{attrs:{"card-title":"Default"}},[a("div",{slot:"demo"},[a("div",{staticClass:"phone-viewport"},[a("md-list",[a("md-subheader",[t._v("Navigation")]),t._v(" "),a("md-list-item",[a("md-icon",[t._v("move_to_inbox")]),t._v(" "),a("span",[t._v("Inbox")])],1),t._v(" "),a("md-list-item",[a("md-icon",[t._v("send")]),t._v(" "),a("span",[t._v("Outbox")])],1),t._v(" "),a("md-list-item",[a("md-icon",[t._v("delete")]),t._v(" "),a("span",[t._v("Trash")])],1),t._v(" "),a("md-list-item",[a("md-icon",[t._v("error")]),t._v(" "),a("span",[t._v("Spam")]),t._v(" "),a("md-divider",{staticClass:"md-inset"})],1),t._v(" "),a("md-subheader",[t._v("Contacts")]),t._v(" "),a("md-list-item",[a("md-avatar",[a("img",{attrs:{src:"assets/avatar-2.jpg",alt:"People"}})]),t._v(" "),a("span",[t._v("Abbey Christansen")]),t._v(" "),a("md-button",{staticClass:"md-icon-button md-list-action"},[a("md-icon",{staticClass:"md-primary"},[t._v("chat_bubble")])],1)],1),t._v(" "),a("md-list-item",[a("md-avatar",[a("img",{attrs:{src:"assets/avatar-2.jpg",alt:"People"}})]),t._v(" "),a("span",[t._v("Alex Nelson")]),t._v(" "),a("md-button",{staticClass:"md-icon-button md-list-action"},[a("md-icon",{staticClass:"md-primary"},[t._v("chat_bubble")])],1)],1),t._v(" "),a("md-list-item",[a("md-avatar",[a("img",{attrs:{src:"assets/avatar-2.jpg",alt:"People"}})]),t._v(" "),a("span",[t._v("Mary Johnson")]),t._v(" "),a("md-button",{staticClass:"md-icon-button md-list-action"},[a("md-icon",[t._v("chat_bubble")])],1)],1)],1)],1),t._v(" "),a("div",{staticClass:"phone-viewport"},[a("md-list",{staticClass:"custom-list md-triple-line"},[a("md-subheader",{staticClass:"md-inset"},[t._v("Today")]),t._v(" "),a("md-list-item",[a("md-avatar",[a("img",{attrs:{src:"assets/avatar-2.jpg",alt:"People"}})]),t._v(" "),a("div",{staticClass:"md-list-text-container"},[a("span",[t._v("Ali Connors")]),t._v(" "),a("span",[t._v("Brunch this weekend?")]),t._v(" "),a("p",[t._v("I'll be in your neighborhood doing errands...")])]),t._v(" "),a("md-button",{staticClass:"md-icon-button md-list-action"},[a("md-icon",{staticClass:"md-primary"},[t._v("star")])],1),t._v(" "),a("md-divider",{staticClass:"md-inset"})],1),t._v(" "),a("md-list-item",[a("md-avatar",[a("img",{attrs:{src:"assets/avatar-2.jpg",alt:"People"}})]),t._v(" "),a("div",{staticClass:"md-list-text-container"},[a("span",[t._v("me, Scott, Jennifer")]),t._v(" "),a("span",[t._v("Summer BBQ")]),t._v(" "),a("p",[t._v("Wish I could come, but I'm out of town ...")])]),t._v(" "),a("md-button",{staticClass:"md-icon-button md-list-action"},[a("md-icon",[t._v("star_border")])],1),t._v(" "),a("md-divider",{staticClass:"md-inset"})],1),t._v(" "),a("md-list-item",[a("md-avatar",[a("img",{attrs:{src:"assets/avatar-2.jpg",alt:"People"}})]),t._v(" "),a("div",{staticClass:"md-list-text-container"},[a("span",[t._v("Sandra Adams")]),t._v(" "),a("span",[t._v("Oui oui")]),t._v(" "),a("p",[t._v("Do you have Paris recommendations ...")])]),t._v(" "),a("md-button",{staticClass:"md-icon-button md-list-action"},[a("md-icon",[t._v("star_border")])],1),t._v(" "),a("md-divider",{staticClass:"md-inset"})],1),t._v(" "),a("md-list-item",[a("md-avatar",[a("img",{attrs:{src:"assets/avatar-2.jpg",alt:"People"}})]),t._v(" "),a("div",{staticClass:"md-list-text-container"},[a("span",[t._v("Trevor Hansen")]),t._v(" "),a("span",[t._v("Order confirmation")]),t._v(" "),a("p",[t._v("Thank you for your recent order from ...")])]),t._v(" "),a("md-button",{staticClass:"md-icon-button md-list-action"},[a("md-icon",[t._v("star_border")])],1),t._v(" "),a("md-divider",{staticClass:"md-inset"})],1)],1)],1)]),t._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[t._v('\n
\n ')])],1)])],1)])],1)},staticRenderFns:[]}}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/4.94654a0e.js b/dist/docs/releases/v0.6.0/4.94654a0e.js
new file mode 100644
index 0000000..a8b4d78
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/4.94654a0e.js
@@ -0,0 +1 @@
+webpackJsonp([4,32],{112:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={data:function(){return{movie:"godfather",country:"",font:"",food:"",users:["jim_halpert","michael_scott"]}},methods:{setPulpFiction:function(){this.movie="pulp_fiction"}}},e.exports=t.default},251:function(e,t,o){t=e.exports=o(1)(),t.push([e.id,".field-group[data-v-7caab3f7]{display:-ms-flexbox;display:flex}.md-input-container[data-v-7caab3f7]{max-width:300px}.md-input-container+.md-input-container[data-v-7caab3f7]{margin-left:4px}.multiple[data-v-7caab3f7]{height:300px}",""])},358:function(e,t,o){var a,n;o(572),a=o(112);var l=o(511);n=a=a||{},"object"!=typeof a.default&&"function"!=typeof a.default||(n=a=a.default),"function"==typeof n&&(n=n.options),n.render=l.render,n.staticRenderFns=l.staticRenderFns,n._scopeId="data-v-7caab3f7",e.exports=a},511:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("page-content",{attrs:{"page-title":"Components - Select"}},[o("docs-component",[o("div",{slot:"description"},[o("p",[e._v("A dropdown button selects between multiple selections. The select displays the current state and a down arrow.")])]),e._v(" "),o("div",{slot:"api"},[o("api-table",{attrs:{name:"md-select"}},[o("md-table",{slot:"properties"},[o("md-table-header",[o("md-table-row",[o("md-table-head",[e._v("Name")]),e._v(" "),o("md-table-head",[e._v("Type")]),e._v(" "),o("md-table-head",[e._v("Description")])],1)],1),e._v(" "),o("md-table-body",[o("md-table-row",[o("md-table-cell",[e._v("v-model")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("A required model object to bind the value.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("name")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("The name of the select")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("id")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("The id of the select")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("disabled")]),e._v(" "),o("md-table-cell",[o("code",[e._v("Boolean")])]),e._v(" "),o("md-table-cell",[e._v("Disable the input and prevent his actions. Default "),o("code",[e._v("false")])])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("required")]),e._v(" "),o("md-table-cell",[o("code",[e._v("Boolean")])]),e._v(" "),o("md-table-cell",[e._v('Apply the required rule to style the label with an "*". Default '),o("code",[e._v("false")])])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("placeholder")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("Sets the placeholder.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-menu-class")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("The css class to be applied on the opened select holder")])],1)],1)],1),e._v(" "),o("md-table",{slot:"events"},[o("md-table-header",[o("md-table-row",[o("md-table-head",[e._v("Name")]),e._v(" "),o("md-table-head",[e._v("Value")]),e._v(" "),o("md-table-head",[e._v("Description")])],1)],1),e._v(" "),o("md-table-body",[o("md-table-row",[o("md-table-cell",[e._v("selected|change")]),e._v(" "),o("md-table-cell",[e._v("Receives the value of the model")]),e._v(" "),o("md-table-cell",[e._v("Triggered when the model changes.")])],1)],1)],1)],1),e._v(" "),o("api-table",{attrs:{name:"md-option"}},[o("p",[e._v("Displays a single item inside the select.")]),e._v(" "),o("div",{slot:"properties"},[o("md-table",[o("md-table-header",[o("md-table-row",[o("md-table-head",[e._v("Name")]),e._v(" "),o("md-table-head",[e._v("Type")]),e._v(" "),o("md-table-head",[e._v("Description")])],1)],1),e._v(" "),o("md-table-body",[o("md-table-row",[o("md-table-cell",[e._v("value")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("The value of the option to be binded on the v-model")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("disabled")]),e._v(" "),o("md-table-cell",[o("code",[e._v("Boolean")])]),e._v(" "),o("md-table-cell",[e._v("Disable the button and prevent his actions. Default "),o("code",[e._v("false")])])],1)],1)],1)],1),e._v(" "),o("md-table",{slot:"events"},[o("md-table-header",[o("md-table-row",[o("md-table-head",[e._v("Name")]),e._v(" "),o("md-table-head",[e._v("Value")]),e._v(" "),o("md-table-head",[e._v("Description")])],1)],1),e._v(" "),o("md-table-body",[o("md-table-row",[o("md-table-cell",[e._v("selected")]),e._v(" "),o("md-table-cell",[e._v("Receives the "),o("code",[e._v("$event")])]),e._v(" "),o("md-table-cell",[e._v("Triggered when the item receives a click.")])],1)],1)],1)],1)],1),e._v(" "),o("div",{slot:"example"},[o("example-box",{attrs:{"card-title":"Default"}},[o("div",{slot:"demo"},[o("div",{staticClass:"field-group"},[o("md-input-container",[o("label",{attrs:{for:"movie"}},[e._v("Movie")]),e._v(" "),o("md-select",{directives:[{name:"model",rawName:"v-model",value:e.movie,expression:"movie"}],attrs:{name:"movie",id:"movie"},domProps:{value:e.movie},on:{input:function(t){e.movie=t}}},[o("md-option",{attrs:{value:"fight_club"}},[e._v("Fight Club")]),e._v(" "),o("md-option",{attrs:{value:"godfather"}},[e._v("Godfather")]),e._v(" "),o("md-option",{attrs:{value:"godfather_ii"}},[e._v("Godfather II")]),e._v(" "),o("md-option",{attrs:{value:"godfather_iii"}},[e._v("Godfather III")]),e._v(" "),o("md-option",{attrs:{value:"godfellas"}},[e._v("Godfellas")]),e._v(" "),o("md-option",{attrs:{value:"pulp_fiction"}},[e._v("Pulp Fiction")]),e._v(" "),o("md-option",{attrs:{value:"scarface"}},[e._v("Scarface")])],1)],1),e._v(" "),o("md-input-container",[o("label",{attrs:{for:"country"}},[e._v("Country")]),e._v(" "),o("md-select",{directives:[{name:"model",rawName:"v-model",value:e.country,expression:"country"}],attrs:{name:"country",id:"country"},domProps:{value:e.country},on:{input:function(t){e.country=t}}},[o("md-option",{attrs:{value:"australia"}},[e._v("Australia")]),e._v(" "),o("md-option",{attrs:{value:"brazil"}},[e._v("Brazil")]),e._v(" "),o("md-option",{attrs:{value:"japan"}},[e._v("Japan")]),e._v(" "),o("md-option",{attrs:{value:"united_states"}},[e._v("United States")])],1)],1),e._v(" "),o("md-input-container",[o("label",{attrs:{for:"font"}},[e._v("Font")]),e._v(" "),o("md-select",{directives:[{name:"model",rawName:"v-model",value:e.font,expression:"font"}],attrs:{name:"font",id:"font"},domProps:{value:e.font},on:{input:function(t){e.font=t}}},[o("md-option",{attrs:{value:"arial"}},[e._v("Arial")]),e._v(" "),o("md-option",{attrs:{value:"calibri"}},[e._v("Calibri")]),e._v(" "),o("md-option",{attrs:{value:"cambria"}},[e._v("Cambria")]),e._v(" "),o("md-option",{attrs:{value:"comic_sans"}},[e._v("Comic Sans")]),e._v(" "),o("md-option",{attrs:{value:"consolas"}},[e._v("Consolas")]),e._v(" "),o("md-option",{attrs:{value:"courier"}},[e._v("Courier")]),e._v(" "),o("md-option",{attrs:{value:"droid_sans"}},[e._v("Droid Sans")]),e._v(" "),o("md-option",{attrs:{value:"georgia"}},[e._v("Georgia")]),e._v(" "),o("md-option",{attrs:{value:"helvetica"}},[e._v("Helvetica")]),e._v(" "),o("md-option",{attrs:{value:"impact"}},[e._v("Impact")]),e._v(" "),o("md-option",{attrs:{value:"roboto"}},[e._v("Roboto")]),e._v(" "),o("md-option",{attrs:{value:"segoe_ui"}},[e._v("Segoe UI")]),e._v(" "),o("md-option",{attrs:{value:"times_new_roman"}},[e._v("Times New Roman")]),e._v(" "),o("md-option",{attrs:{value:"ubuntu"}},[e._v("Ubuntu")]),e._v(" "),o("md-option",{attrs:{value:"verdana"}},[e._v("Verdana")])],1)],1),e._v(" "),o("md-input-container",[o("label",{attrs:{for:"food"}},[e._v("Food")]),e._v(" "),o("md-select",{directives:[{name:"model",rawName:"v-model",value:e.food,expression:"food"}],attrs:{name:"food",id:"food"},domProps:{value:e.food},on:{input:function(t){e.food=t}}},[o("md-subheader",[e._v("Fruits")]),e._v(" "),o("md-option",{attrs:{value:"apples"}},[e._v("Apples")]),e._v(" "),o("md-option",{attrs:{value:"bananas"}},[e._v("Bananas")]),e._v(" "),o("md-option",{attrs:{value:"peaches"}},[e._v("Peaches")]),e._v(" "),o("md-option",{attrs:{value:"oranges"}},[e._v("Oranges")]),e._v(" "),o("md-subheader",[e._v("Vegetables")]),e._v(" "),o("md-option",{attrs:{value:"carrots"}},[e._v("Carrots")]),e._v(" "),o("md-option",{attrs:{value:"cucumbers"}},[e._v("Cucumbers")]),e._v(" "),o("md-subheader",[e._v("Baked Goods")]),e._v(" "),o("md-option",{attrs:{value:"apple_pie"}},[e._v("Apple Pie")]),e._v(" "),o("md-option",{attrs:{value:"chocolate_cake"}},[e._v("Chocolate Cake")])],1)],1)],1),e._v(" "),o("md-button",{staticClass:"md-raised md-primary",on:{click:e.setPulpFiction}},[e._v("Set Pulp Fiction")])],1),e._v(" "),o("div",{slot:"code"},[o("code-block",{attrs:{lang:"xml"}},[e._v('\n
\n ")]),e._v(" "),o("code-block",{attrs:{lang:"javascript"}},[e._v("\n export default {\n data: () => ({\n food: '',\n users: [\n 'jim_halpert',\n 'michael_scott'\n ]\n })\n };\n ")])],1)])],1)])],1)},staticRenderFns:[]}},572:function(e,t,o){var a=o(251);"string"==typeof a&&(a=[[e.id,a,""]]);o(2)(a,{});a.locals&&(e.exports=a.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/5.f8a38ce8.js b/dist/docs/releases/v0.6.0/5.f8a38ce8.js
new file mode 100644
index 0000000..733ad3b
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/5.f8a38ce8.js
@@ -0,0 +1 @@
+webpackJsonp([5,32],{110:function(e,s){"use strict";Object.defineProperty(s,"__esModule",{value:!0}),s.default={data:function(){return{progress:0,progressInterval:null,transition:!0}},methods:{startProgress:function(){var e=this;this.progressInterval=window.setInterval((function(){e.progress+=3,e.progress>100&&window.clearInterval(e.progressInterval)}),100)},restartProgress:function(){var e=this;this.progress=0,this.transition=!1,window.clearInterval(this.progressInterval),window.setTimeout((function(){e.transition=!0,e.startProgress()}),600)}},mounted:function(){this.startProgress()}},e.exports=s.default},232:function(e,s,r){s=e.exports=r(1)(),s.push([e.id,".progress-area[data-v-26399830]{height:44px}.progress-area+.md-button[data-v-26399830]{margin:16px 0 0}.md-progress[data-v-26399830]{margin-bottom:16px}",""])},356:function(e,s,r){var t,a;r(553),t=r(110);var o=r(462);a=t=t||{},"object"!=typeof t.default&&"function"!=typeof t.default||(a=t=t.default),"function"==typeof a&&(a=a.options),a.render=o.render,a.staticRenderFns=o.staticRenderFns,a._scopeId="data-v-26399830",e.exports=t},462:function(e,s){e.exports={render:function(){var e=this,s=e.$createElement,r=e._self._c||s;return r("page-content",{attrs:{"page-title":"Components - Progress"}},[r("docs-component",[r("div",{slot:"description"},[r("p",[e._v("A linear progress indicator should always fill from 0% to 100% and never decrease in value. It should be represented by bars on the edge of a header or sheet that appear and disappear.")]),e._v(" "),r("p",[e._v("The following classes can be applied to change the color palette:")]),e._v(" "),r("ul",{staticClass:"md-body-2"},[r("li",[r("code",[e._v("md-accent")])]),e._v(" "),r("li",[r("code",[e._v("md-warn")])])])]),e._v(" "),r("div",{slot:"api"},[r("api-table",{attrs:{name:"md-progress"}},[r("md-table",{slot:"properties"},[r("md-table-header",[r("md-table-row",[r("md-table-head",[e._v("Name")]),e._v(" "),r("md-table-head",[e._v("Type")]),e._v(" "),r("md-table-head",[e._v("Description")])],1)],1),e._v(" "),r("md-table-body",[r("md-table-row",[r("md-table-cell",[e._v("md-indeterminate")]),e._v(" "),r("md-table-cell",[r("code",[e._v("Boolean")])]),e._v(" "),r("md-table-cell",[e._v("Enable the indeterminate state. Default "),r("code",[e._v("false")])])],1),e._v(" "),r("md-table-row",[r("md-table-cell",[e._v("md-progress")]),e._v(" "),r("md-table-cell",[r("code",[e._v("Number")])]),e._v(" "),r("md-table-cell",[e._v("Define the current progress of the progress. Default "),r("code",[e._v("0")])])],1)],1)],1)],1)],1),e._v(" "),r("div",{slot:"example"},[r("example-box",{attrs:{"card-title":"Determinate"}},[r("div",{staticClass:"progress-demo",slot:"demo"},[r("div",{staticClass:"progress-area"},[e.transition?r("md-progress",{attrs:{"md-progress":e.progress}}):e._e(),e._v(" "),e.transition?r("md-progress",{staticClass:"md-accent",attrs:{"md-progress":e.progress}}):e._e(),e._v(" "),e.transition?r("md-progress",{staticClass:"md-warn",attrs:{"md-progress":e.progress}}):e._e()],1),e._v(" "),r("md-button",{staticClass:"md-primary md-raised",nativeOn:{click:function(s){e.restartProgress(s)}}},[e._v("Restart")])],1),e._v(" "),r("div",{slot:"code"},[r("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n ')])],1)]),e._v(" "),r("example-box",{attrs:{"card-title":"Indeterminate"}},[r("div",{staticClass:"progress-demo",slot:"demo"},[r("div",{staticClass:"progress-area"},[e.transition?r("md-progress",{attrs:{"md-indeterminate":""}}):e._e(),e._v(" "),e.transition?r("md-progress",{staticClass:"md-accent",attrs:{"md-indeterminate":""}}):e._e(),e._v(" "),e.transition?r("md-progress",{staticClass:"md-warn",attrs:{"md-indeterminate":""}}):e._e()],1)]),e._v(" "),r("div",{slot:"code"},[r("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n ')])],1)]),e._v(" "),r("example-box",{attrs:{"card-title":"Themes"}},[r("div",{staticClass:"progress-demo",slot:"demo"},[r("div",{staticClass:"progress-area"},[e.transition?r("md-progress",{attrs:{"md-theme":"orange","md-indeterminate":""}}):e._e(),e._v(" "),e.transition?r("md-progress",{attrs:{"md-theme":"green","md-progress":e.progress}}):e._e(),e._v(" "),e.transition?r("md-progress",{attrs:{"md-theme":"purple","md-indeterminate":""}}):e._e()],1)]),e._v(" "),r("div",{slot:"code"},[r("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n \n ')])],1)])],1)])],1)},staticRenderFns:[]}},553:function(e,s,r){var t=r(232);"string"==typeof t&&(t=[[e.id,t,""]]);r(2)(t,{});t.locals&&(e.exports=t.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/6.6d779ad8.js b/dist/docs/releases/v0.6.0/6.6d779ad8.js
new file mode 100644
index 0000000..039f976
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/6.6d779ad8.js
@@ -0,0 +1 @@
+webpackJsonp([6,32],{109:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={data:function(){return{initialValue:"My initial value"}}},e.exports=t.default},241:function(e,t,a){t=e.exports=a(1)(),t.push([e.id,"",""])},353:function(e,t,a){var n,l;a(562),n=a(109);var d=a(486);l=n=n||{},"object"!=typeof n.default&&"function"!=typeof n.default||(l=n=n.default),"function"==typeof l&&(l=l.options),l.render=d.render,l.staticRenderFns=d.staticRenderFns,l._scopeId="data-v-4f85dac2",e.exports=n},486:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("page-content",{attrs:{"page-title":"Components - Input"}},[a("docs-component",[a("div",{slot:"description"},[a("p",[e._v("Inputs allow users to input text and usually appear in forms. Users may enter text, numbers, or mixed-format types of input.")])]),e._v(" "),a("div",{slot:"api"},[a("api-table",{attrs:{name:"md-input-container"}},[a("md-table",{slot:"properties"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("md-inline")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Create inline field with a label or placeholder. Default "),a("code",[e._v("false")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("md-has-password")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Show a button to toggle the password visibility. Default "),a("code",[e._v("false")])])],1)],1)],1),e._v(" "),a("md-table",{slot:"classes"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("md-input-invalid")]),e._v(" "),a("md-table-cell",[e._v("Set the error class")])],1)],1)],1)],1),e._v(" "),a("api-table",{attrs:{name:"md-input"}},[a("md-table",{slot:"properties"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("v-model")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("A required model object to bind the value.")])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("type")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("Sets the type. Default "),a("code",[e._v("text")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("disabled")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Disable the input and prevent his actions. Default "),a("code",[e._v("false")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("required")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v('Apply the required rule to style the label with an "*". Default '),a("code",[e._v("false")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("placeholder")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("Sets the placeholder.")])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("maxlength")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Number")])]),e._v(" "),a("md-table-cell",[e._v("Sets the maxlength and enable the text counter.")])],1)],1)],1)],1),e._v(" "),a("api-table",{attrs:{name:"md-textarea"}},[a("md-table",{slot:"properties"},[a("md-table-header",[a("md-table-row",[a("md-table-head",[e._v("Name")]),e._v(" "),a("md-table-head",[e._v("Type")]),e._v(" "),a("md-table-head",[e._v("Description")])],1)],1),e._v(" "),a("md-table-body",[a("md-table-row",[a("md-table-cell",[e._v("v-model")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("A required model object to bind the value.")])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("disabled")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v("Disable the textarea and prevent his actions. Default "),a("code",[e._v("false")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("required")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Boolean")])]),e._v(" "),a("md-table-cell",[e._v('Apply the required rule to style the label with an "*". Default '),a("code",[e._v("false")])])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("placeholder")]),e._v(" "),a("md-table-cell",[a("code",[e._v("String")])]),e._v(" "),a("md-table-cell",[e._v("Sets the placeholder.")])],1),e._v(" "),a("md-table-row",[a("md-table-cell",[e._v("maxlength")]),e._v(" "),a("md-table-cell",[a("code",[e._v("Number")])]),e._v(" "),a("md-table-cell",[e._v("Sets the maxlength and enable the text counter.")])],1)],1)],1)],1)],1),e._v(" "),a("div",{slot:"example"},[a("example-box",{attrs:{"card-title":"Regular fields"}},[a("div",{slot:"demo"},[a("form",{attrs:{novalidate:""},on:{submit:function(t){t.stopPropagation(),t.preventDefault(),e.submit(t)}}},[a("md-input-container",[a("label",[e._v("Initial value")]),e._v(" "),a("md-input",{directives:[{name:"model",rawName:"v-model",value:e.initialValue,expression:"initialValue"}],domProps:{value:e.initialValue},on:{input:function(t){e.initialValue=t}}})],1),e._v(" "),a("md-input-container",[a("label",[e._v("With label")]),e._v(" "),a("md-input",{attrs:{placeholder:"My nice placeholder"}})],1),e._v(" "),a("md-input-container",{attrs:{"md-inline":""}},[a("label",[e._v("Inline field")]),e._v(" "),a("md-input")],1),e._v(" "),a("md-input-container",[a("label",[e._v("Number")]),e._v(" "),a("md-input",{attrs:{type:"number"}})],1),e._v(" "),a("md-input-container",[a("label",[e._v("Textarea")]),e._v(" "),a("md-textarea")],1),e._v(" "),a("md-input-container",[a("label",[e._v("Disabled")]),e._v(" "),a("md-input",{attrs:{disabled:""}})],1)],1)]),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n ')]),e._v(" "),a("code-block",{attrs:{lang:"javascript"}},[e._v("\n export default {\n data() {\n return {\n initialValue: 'My initial value'\n };\n }\n };\n ")])],1)]),e._v(" "),a("example-box",{attrs:{"card-title":"Passwords"}},[a("div",{slot:"demo"},[a("form",{attrs:{novalidate:""},on:{submit:function(t){t.stopPropagation(),t.preventDefault(),e.submit(t)}}},[a("md-input-container",[a("label",[e._v("Regular Password")]),e._v(" "),a("md-input",{attrs:{type:"password"}})],1),e._v(" "),a("md-input-container",{attrs:{"md-has-password":""}},[a("label",[e._v("Password Reveal")]),e._v(" "),a("md-input",{attrs:{type:"password"}})],1)],1)]),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n ')])],1)]),e._v(" "),a("example-box",{attrs:{"card-title":"Icons"}},[a("div",{slot:"demo"},[a("form",{attrs:{novalidate:""},on:{submit:function(t){t.stopPropagation(),t.preventDefault(),e.submit(t)}}},[a("md-input-container",[a("md-icon",{staticClass:"md-warn"},[e._v("\n warning\n "),a("md-tooltip",[e._v("Be careful. You're almost broken!")])],1),e._v(" "),a("label",[e._v("Money")]),e._v(" "),a("md-input",{attrs:{type:"text"}}),e._v(" "),a("md-icon",[e._v("attach_money")])],1),e._v(" "),a("md-input-container",[a("md-icon",[e._v("phone")]),e._v(" "),a("label",[e._v("Phone")]),e._v(" "),a("md-input",{attrs:{type:"tel"}})],1),e._v(" "),a("md-input-container",[a("md-icon",[e._v("speaker_notes")]),e._v(" "),a("label",[e._v("Notes")]),e._v(" "),a("md-textarea")],1)],1)]),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n ')])],1)]),e._v(" "),a("example-box",{attrs:{"card-title":"Required and Errors"}},[a("div",{slot:"demo"},[a("form",{attrs:{novalidate:""},on:{submit:function(t){t.stopPropagation(),t.preventDefault(),e.submit(t)}}},[a("md-input-container",[a("label",[e._v("Required")]),e._v(" "),a("md-input",{attrs:{required:""}})],1),e._v(" "),a("md-input-container",{staticClass:"md-input-invalid"},[a("label",[e._v("Error")]),e._v(" "),a("md-input",{attrs:{required:""}})],1),e._v(" "),a("md-input-container",{staticClass:"md-input-invalid"},[a("label",[e._v("Error with message")]),e._v(" "),a("md-input",{attrs:{required:""}}),e._v(" "),a("span",{staticClass:"md-error"},[e._v("Validation message")])],1),e._v(" "),a("md-input-container",{staticClass:"md-input-invalid"},[a("label",[e._v("Textarea with error")]),e._v(" "),a("md-textarea"),e._v(" "),a("span",{staticClass:"md-error"},[e._v("Textarea validation message")])],1)],1)]),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n ')])],1)]),e._v(" "),a("example-box",{attrs:{"card-title":"Character counter"}},[a("div",{slot:"demo"},[a("form",{attrs:{novalidate:""},on:{submit:function(t){t.stopPropagation(),t.preventDefault(),e.submit(t)}}},[a("md-input-container",[a("label",[e._v("Textarea")]),e._v(" "),a("md-textarea",{attrs:{maxlength:"70"}})],1),e._v(" "),a("md-input-container",[a("label",[e._v("Input")]),e._v(" "),a("md-input",{attrs:{maxlength:"20"}})],1)],1)]),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n ')])],1)]),e._v(" "),a("example-box",{attrs:{"card-title":"Themes"}},[a("div",{slot:"demo"},[a("form",{attrs:{novalidate:""},on:{submit:function(t){t.stopPropagation(),t.preventDefault(),e.submit(t)}}},[a("md-input-container",{attrs:{"md-theme":"green"}},[a("label",[e._v("Green - Input")]),e._v(" "),a("md-input")],1),e._v(" "),a("md-input-container",{attrs:{"md-theme":"red"}},[a("label",[e._v("Red - Textarea")]),e._v(" "),a("md-textarea")],1)],1)]),e._v(" "),a("div",{slot:"code"},[a("code-block",{attrs:{lang:"xml"}},[e._v('\n \n ')])],1)])],1)])],1)},staticRenderFns:[]}},562:function(e,t,a){var n=a(241);"string"==typeof n&&(n=[[e.id,n,""]]);a(2)(n,{});n.locals&&(e.exports=n.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/7.fea19aba.js b/dist/docs/releases/v0.6.0/7.fea19aba.js
new file mode 100644
index 0000000..ad99380
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/7.fea19aba.js
@@ -0,0 +1 @@
+webpackJsonp([7,32],{106:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={data:function(){return{alert:{content:"Your post has been deleted!",ok:"Cool!"},alert2:{title:"Post created!",contentHtml:"Your post Material Design is awesome has been created."},confirm:{title:"Use Google's location service?",contentHtml:"Let Google help apps determine location. This means sending anonymous location data to Google, even when no apps are running.",ok:"Agree",cancel:"Disagree"},prompt:{title:"What's your name?",ok:"Done",cancel:"Cancel",id:"name",name:"name",placeholder:"Type your name...",maxlength:30,value:""}}},methods:{openDialog:function(e){this.$refs[e].open()},closeDialog:function(e){this.$refs[e].close()},onOpen:function(){console.log("Opened")},onClose:function(e){console.log("Closed",e)}}},e.exports=t.default},259:function(e,t,o){t=e.exports=o(1)(),t.push([e.id,".dialog-fab[data-v-e65f137a]{height:200px}",""])},348:function(e,t,o){var l,n;o(580),l=o(106);var a=o(538);n=l=l||{},"object"!=typeof l.default&&"function"!=typeof l.default||(n=l=l.default),"function"==typeof n&&(n=n.options),n.render=a.render,n.staticRenderFns=a.staticRenderFns,n._scopeId="data-v-e65f137a",e.exports=l},538:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("page-content",{attrs:{"page-title":"Components - Dialog"}},[o("docs-component",[o("div",{slot:"description"},[o("p",[e._v("Dialogs inform users about a specific task and may contain critical information, require decisions, or involve multiple tasks.")]),e._v(" "),o("p",[e._v("The dialog component works with any plain html content. You can have tabs, all form components and more.")]),e._v(" "),o("p",[e._v("Alternativelly you can use three presets to build Alerts, Confirms and Prompt dialogs.")]),e._v(" "),o("p",[e._v("The preset component is created on top of "),o("code",[e._v("")]),e._v(". You should provide the content or the HTML content at least.")]),e._v(" "),o("p",[e._v("All the pressets can use the same options and events from the "),o("code",[e._v("")]),e._v(" component.")])]),e._v(" "),o("div",{slot:"api"},[o("api-table",{attrs:{name:"md-dialog"}},[o("md-table",{slot:"properties"},[o("md-table-header",[o("md-table-row",[o("md-table-head",[e._v("Name")]),e._v(" "),o("md-table-head",[e._v("Type")]),e._v(" "),o("md-table-head",[e._v("Description")])],1)],1),e._v(" "),o("md-table-body",[o("md-table-row",[o("md-table-cell",[e._v("md-click-outside-to-close")]),e._v(" "),o("md-table-cell",[o("code",[e._v("Boolean")])]),e._v(" "),o("md-table-cell",[e._v("Enable or disable click outside to close. Default: "),o("code",[e._v("true")])])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-esc-to-close")]),e._v(" "),o("md-table-cell",[o("code",[e._v("Boolean")])]),e._v(" "),o("md-table-cell",[e._v("Enable or disable close on esc key. Default: "),o("code",[e._v("true")])])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-backdrop")]),e._v(" "),o("md-table-cell",[o("code",[e._v("Boolean")])]),e._v(" "),o("md-table-cell",[e._v("Create an opaque backdrop behind the dialog. Default: "),o("code",[e._v("true")])])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-open-from")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("The query selector of the element that is used to determine from which the Dialog will open.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-close-to")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("The query selector of the element that is used to determine from which the Dialog will close.")])],1)],1)],1),e._v(" "),o("md-table",{slot:"events"},[o("md-table-header",[o("md-table-row",[o("md-table-head",[e._v("Name")]),e._v(" "),o("md-table-head",[e._v("Value")]),e._v(" "),o("md-table-head",[e._v("Description")])],1)],1),e._v(" "),o("md-table-body",[o("md-table-row",[o("md-table-cell",[e._v("open")]),e._v(" "),o("md-table-cell",[e._v("Receive the state of the dialog: "),o("code",[e._v("ok")]),e._v("| "),o("code",[e._v("cancel")]),e._v(" "),o("br"),e._v("Works only for Confirm and Prompt")]),e._v(" "),o("md-table-cell",[e._v("Triggered when the dialog open.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("close")]),e._v(" "),o("md-table-cell",[e._v("Receive the state of the dialog: "),o("code",[e._v("ok")]),e._v("| "),o("code",[e._v("cancel")]),e._v(" "),o("br"),e._v("Works only for Confirm and Prompt")]),e._v(" "),o("md-table-cell",[e._v("Triggered when the dialog closes.")])],1)],1)],1),e._v(" "),o("md-table",{slot:"methods"},[o("md-table-header",[o("md-table-row",[o("md-table-head",[e._v("Name")]),e._v(" "),o("md-table-head",[e._v("Description")])],1)],1),e._v(" "),o("md-table-body",[o("md-table-row",[o("md-table-cell",[e._v("open")]),e._v(" "),o("md-table-cell",[e._v("Open the dialog.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("close")]),e._v(" "),o("md-table-cell",[e._v("Close the dialog.")])],1)],1)],1)],1),e._v(" "),o("api-table",{attrs:{name:"md-dialog-title"}},[o("p",[e._v("Can display a title on the top of the Dialog.")]),e._v(" "),o("p",[e._v("No options available")])]),e._v(" "),o("api-table",{attrs:{name:"md-dialog-content"}},[o("p",[e._v("Used to display rich content inside the Dialog.")]),e._v(" "),o("p",[e._v("No options available")])]),e._v(" "),o("api-table",{attrs:{name:"md-dialog-actions"}},[o("p",[e._v("Hold the actions of a dialog and align them on the right. Here you can add "),o("code",[e._v("")]),e._v(" with or without icons.")]),e._v(" "),o("p",[e._v("No options available")])]),e._v(" "),o("api-table",{attrs:{name:"md-dialog-alert"}},[o("div",{slot:"properties"},[o("md-table",[o("md-table-header",[o("md-table-row",[o("md-table-head",[e._v("Name")]),e._v(" "),o("md-table-head",[e._v("Type")]),e._v(" "),o("md-table-head",[e._v("Description")])],1)],1),e._v(" "),o("md-table-body",[o("md-table-row",[o("md-table-cell",[e._v("md-title")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("Sets the alert title. Optional.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-content")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("Sets the alert content.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-content-html")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("Sets the alert content with a custom html.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-ok-text")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v('Sets the alert "Okay" button text.')])],1)],1)],1)],1)]),e._v(" "),o("api-table",{attrs:{name:"md-dialog-confirm"}},[o("div",{slot:"properties"},[o("md-table",[o("md-table-header",[o("md-table-row",[o("md-table-head",[e._v("Name")]),e._v(" "),o("md-table-head",[e._v("Type")]),e._v(" "),o("md-table-head",[e._v("Description")])],1)],1),e._v(" "),o("md-table-body",[o("md-table-row",[o("md-table-cell",[e._v("md-title")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("Sets the confirm title. Optional.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-content")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("Sets the confirm content.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-content-html")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("Sets the confirm content with a custom html.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-ok-text")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v('Sets the confirm "Okay" button text.')])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-cancel-text")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v('Sets the confirm "Cancel" button text.')])],1)],1)],1)],1)]),e._v(" "),o("api-table",{attrs:{name:"md-dialog-prompt"}},[o("div",{slot:"properties"},[o("md-table",[o("md-table-header",[o("md-table-row",[o("md-table-head",[e._v("Name")]),e._v(" "),o("md-table-head",[e._v("Type")]),e._v(" "),o("md-table-head",[e._v("Description")])],1)],1),e._v(" "),o("md-table-body",[o("md-table-row",[o("md-table-cell",[e._v("md-title")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("Sets the prompt title. Optional.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-content")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("Sets the prompt content.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-content-html")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("Sets the prompt content with a custom html.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-ok-text")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v('Sets the prompt "Okay" button text.')])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-cancel-text")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v('Sets the prompt "Cancel" button text.')])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("v-model")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("A required model object to be bind when the value is confirmed.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-input-id")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("Set the ID of the field inside the prompt dialog.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-input-name")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("Set the name of the field inside the prompt dialog.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-input-maxlength")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("Set the optional maxlength of the field inside the prompt dialog with the text count.")])],1),e._v(" "),o("md-table-row",[o("md-table-cell",[e._v("md-input-placeholder")]),e._v(" "),o("md-table-cell",[o("code",[e._v("String")])]),e._v(" "),o("md-table-cell",[e._v("Set the optional placeholder of the field inside the prompt dialog.")])],1)],1)],1)],1)])],1),e._v(" "),o("div",{slot:"example"},[o("example-box",{attrs:{"card-title":"Custom"}},[o("div",{staticClass:"dialog-fab",slot:"demo"},[o("md-dialog",{ref:"dialog1",attrs:{"md-open-from":"#custom","md-close-to":"#custom"}},[o("md-dialog-title",[e._v("Lorem ipsum dolor sit amet")]),e._v(" "),o("md-dialog-content",[e._v("Nemo, nobis necessitatibus ut illo, ducimus ex.")]),e._v(" "),o("md-dialog-actions",[o("md-button",{staticClass:"md-primary",on:{click:function(t){e.closeDialog("dialog1")}}},[e._v("Cancel")]),e._v(" "),o("md-button",{staticClass:"md-primary",on:{click:function(t){e.closeDialog("dialog1")}}},[e._v("Ok")])],1)],1),e._v(" "),o("md-dialog",{ref:"dialog2",attrs:{"md-open-from":"#fab","md-close-to":"#fab"}},[o("md-dialog-title",[e._v("Create new note")]),e._v(" "),o("md-dialog-content",[o("form",[o("md-input-container",[o("label",[e._v("Note")]),e._v(" "),o("md-textarea")],1)],1)]),e._v(" "),o("md-dialog-actions",[o("md-button",{staticClass:"md-primary",on:{click:function(t){e.closeDialog("dialog2")}}},[e._v("Cancel")]),e._v(" "),o("md-button",{staticClass:"md-primary",on:{click:function(t){e.closeDialog("dialog2")}}},[e._v("Create")])],1)],1),e._v(" "),o("md-button",{staticClass:"md-primary md-raised",attrs:{id:"custom"},on:{click:function(t){e.openDialog("dialog1")}}},[e._v("Custom")]),e._v(" "),o("md-button",{staticClass:"md-fab md-fab-bottom-right",attrs:{id:"fab"},on:{click:function(t){e.openDialog("dialog2")}}},[o("md-icon",[e._v("add")])],1)],1),e._v(" "),o("div",{slot:"code"},[o("code-block",{attrs:{lang:"xml"}},[e._v('\n \n Lorem ipsum dolor sit amet\n\n Nemo, nobis necessitatibus ut illo, ducimus ex.\n\n \n Cancel\n Ok\n \n \n\n \n Create new note\n\n \n \n \n\n \n Cancel\n Create\n \n \n\n Custom\n \n add\n \n ')]),e._v(" "),o("code-block",{attrs:{lang:"javascript"}},[e._v("\n export default {\n methods: {\n openDialog(ref) {\n this.$refs[ref].open();\n },\n closeDialog(ref) {\n this.$refs[ref].close();\n },\n onOpen() {\n console.log('Opened');\n },\n onClose(type) {\n console.log('Closed', type);\n }\n }\n };\n ")])],1)]),e._v(" "),o("example-box",{attrs:{"card-title":"Alerts"}},[o("div",{slot:"demo"},[o("md-dialog-alert",{ref:"dialog3",attrs:{"md-content":e.alert.content,"md-ok-text":e.alert.ok},on:{open:e.onOpen,close:e.onClose}}),e._v(" "),o("md-dialog-alert",{ref:"dialog4",attrs:{"md-title":e.alert2.title,"md-content-html":e.alert2.contentHtml},on:{open:e.onOpen,close:e.onClose}}),e._v(" "),o("md-button",{staticClass:"md-primary md-raised",on:{click:function(t){e.openDialog("dialog3")}}},[e._v("Alert")]),e._v(" "),o("md-button",{staticClass:"md-primary md-raised",on:{click:function(t){e.openDialog("dialog4")}}},[e._v("Alert with HTML")])],1),e._v(" "),o("div",{slot:"code"},[o("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n\n \n \n\n Alert\n Alert with HTML\n ')]),e._v(" "),o("code-block",{attrs:{lang:"javascript"}},[e._v("\n export default {\n data: () => ({\n alert: {\n content: 'Your post has been deleted!',\n ok: 'Cool!'\n },\n alert2: {\n title: 'Post created!',\n contentHtml: 'Your post Material Design is awesome has been created.'\n }\n }),\n methods: {\n openDialog(ref) {\n this.$refs[ref].open();\n },\n closeDialog(ref) {\n this.$refs[ref].close();\n },\n onOpen() {\n console.log('Opened');\n },\n onClose(type) {\n console.log('Closed', type);\n }\n }\n };\n ")])],1)]),e._v(" "),o("example-box",{attrs:{"card-title":"Confirm"}},[o("div",{slot:"demo"},[o("md-dialog-confirm",{ref:"dialog5",attrs:{"md-title":e.confirm.title,"md-content-html":e.confirm.contentHtml,"md-ok-text":e.confirm.ok,"md-cancel-text":e.confirm.cancel},on:{open:e.onOpen,close:e.onClose}}),e._v(" "),o("md-button",{staticClass:"md-primary md-raised",on:{click:function(t){e.openDialog("dialog5")}}},[e._v("Confirm")])],1),e._v(" "),o("div",{slot:"code"},[o("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n\n Confirm\n ')]),e._v(" "),o("code-block",{attrs:{lang:"javascript"}},[e._v("\n export default {\n data: () => ({\n confirm: {\n title: 'Use Google\\'s location service?',\n contentHtml: 'Let Google help apps determine location. This means sending anonymous location data to Google, even when no apps are running.',\n ok: 'Agree',\n cancel: 'Disagree'\n }\n }),\n methods: {\n openDialog(ref) {\n this.$refs[ref].open();\n },\n closeDialog(ref) {\n this.$refs[ref].close();\n },\n onOpen() {\n console.log('Opened');\n },\n onClose(type) {\n console.log('Closed', type);\n }\n }\n };\n ")])],1)]),e._v(" "),o("example-box",{attrs:{"card-title":"Prompt"}},[o("div",{slot:"demo"},[o("md-dialog-prompt",{directives:[{name:"model",rawName:"v-model",value:e.prompt.value,expression:"prompt.value"}],ref:"dialog6",attrs:{"md-title":e.prompt.title,"md-ok-text":e.prompt.ok,"md-cancel-text":e.prompt.cancel,"md-input-id":e.prompt.id,"md-input-name":e.prompt.name,"md-input-maxlength":e.prompt.maxlength,"md-input-placeholder":e.prompt.placeholder},domProps:{value:e.prompt.value},on:{open:e.onOpen,close:e.onClose,input:function(t){e.prompt.value=t}}}),e._v(" "),o("md-button",{staticClass:"md-primary md-raised",on:{click:function(t){e.openDialog("dialog6")}}},[e._v("Prompt")])],1),e._v(" "),o("div",{slot:"code"},[o("code-block",{attrs:{lang:"xml"}},[e._v('\n \n \n\n Prompt\n ')]),e._v(" "),o("code-block",{attrs:{lang:"javascript"}},[e._v("\n export default {\n data: () => ({\n prompt: {\n title: 'What\\'s your name?',\n ok: 'Done',\n cancel: 'Cancel',\n id: 'name',\n name: 'name',\n placeholder: 'Type your name...',\n maxlength: 30,\n value: ''\n }\n }),\n methods: {\n openDialog(ref) {\n this.$refs[ref].open();\n },\n closeDialog(ref) {\n this.$refs[ref].close();\n },\n onOpen() {\n console.log('Opened');\n },\n onClose(type) {\n console.log('Closed', type);\n }\n }\n };\n ")])],1)])],1)])],1)},staticRenderFns:[]}},580:function(e,t,o){var l=o(259);"string"==typeof l&&(l=[[e.id,l,""]]);o(2)(l,{});l.locals&&(e.exports=l.locals)}});
\ No newline at end of file
diff --git a/dist/docs/releases/v0.6.0/8.4a1e48b3.js b/dist/docs/releases/v0.6.0/8.4a1e48b3.js
new file mode 100644
index 0000000..5b1f17c
--- /dev/null
+++ b/dist/docs/releases/v0.6.0/8.4a1e48b3.js
@@ -0,0 +1 @@
+webpackJsonp([8,32],{103:function(t,d){"use strict";Object.defineProperty(d,"__esModule",{value:!0}),d.default={data:function(){return{buttonDisabled:!0}},methods:{disablePrimaryButton:function(){this.buttonDisabled=!this.buttonDisabled}}},t.exports=d.default},256:function(t,d,n){d=t.exports=n(1)(),d.push([t.id,".disabled-button[data-v-b2bd28d4]{margin-left:8px}.fab-holder[data-v-b2bd28d4]{height:300px}",""])},344:function(t,d,n){var m,a;n(577),m=n(103);var o=n(525);a=m=m||{},"object"!=typeof m.default&&"function"!=typeof m.default||(a=m=m.default),"function"==typeof a&&(a=a.options),a.render=o.render,a.staticRenderFns=o.staticRenderFns,a._scopeId="data-v-b2bd28d4",t.exports=m},525:function(t,d){t.exports={render:function(){var t=this,d=t.$createElement,n=t._self._c||d;return n("page-content",{attrs:{"page-title":"Components - Button"}},[n("docs-component",[n("div",{slot:"description"},[n("p",[t._v("Buttons communicate the action that will occur when the user touches them.")]),t._v(" "),n("p",[t._v("The following classes can be applied to change the color palette:")]),t._v(" "),n("ul",{staticClass:"md-body-2"},[n("li",[n("code",[t._v("md-primary")])]),t._v(" "),n("li",[n("code",[t._v("md-accent")])]),t._v(" "),n("li",[n("code",[t._v("md-warn")])])])]),t._v(" "),n("div",{slot:"api"},[n("api-table",{attrs:{name:"md-button"}},[n("md-table",{slot:"properties"},[n("md-table-header",[n("md-table-row",[n("md-table-head",[t._v("Name")]),t._v(" "),n("md-table-head",[t._v("Type")]),t._v(" "),n("md-table-head",[t._v("Description")])],1)],1),t._v(" "),n("md-table-body",[n("md-table-row",[n("md-table-cell",[t._v("disabled")]),t._v(" "),n("md-table-cell",[n("code",[t._v("Boolean")])]),t._v(" "),n("md-table-cell",[t._v("Disable the button and prevent his actions. Default "),n("code",[t._v("false")])])],1),t._v(" "),n("md-table-row",[n("md-table-cell",[t._v("type")]),t._v(" "),n("md-table-cell",[n("code",[t._v("String")])]),t._v(" "),n("md-table-cell",[t._v("Apply a type to button - Doesn't apply for links.")])],1),t._v(" "),n("md-table-row",[n("md-table-cell",[t._v("href")]),t._v(" "),n("md-table-cell",[n("code",[t._v("String")])]),t._v(" "),n("md-table-cell",[t._v("Create a anchor on the button - In this case the generated tag will be "),n("code",[t._v("")]),t._v(".")])],1)],1)],1),t._v(" "),n("md-table",{slot:"classes"},[n("md-table-header",[n("md-table-row",[n("md-table-head",[t._v("Name")]),t._v(" "),n("md-table-head",[t._v("Description")])],1)],1),t._v(" "),n("md-table-body",[n("md-table-row",[n("md-table-cell",[t._v("md-raised")]),t._v(" "),n("md-table-cell",[t._v("Raised button")])],1),t._v(" "),n("md-table-row",[n("md-table-cell",[t._v("md-icon-button")]),t._v(" "),n("md-table-cell",[t._v("Create rounded buttons - Need a inside")])],1),t._v(" "),n("md-table-row",[n("md-table-cell",[t._v("md-dense")]),t._v(" "),n("md-table-cell",[t._v("Small dense buttons")])],1),t._v(" "),n("md-table-row",[n("md-table-cell",[t._v("md-fab")]),t._v(" "),n("md-table-cell",[t._v("Create an Floating Action Button")])],1),t._v(" "),n("md-table-row",[n("md-table-cell",[t._v("md-mini")]),t._v(" "),n("md-table-cell",[t._v("Small md-fab")])],1),t._v(" "),n("md-table-row",[n("md-table-cell",[t._v("md-fab-top-left")]),t._v(" "),n("md-table-cell",[t._v("Position the md-fab absolutely on the top left of his parent")])],1),t._v(" "),n("md-table-row",[n("md-table-cell",[t._v("md-fab-top-center")]),t._v(" "),n("md-table-cell",[t._v("Position the md-fab absolutely on the top center of his parent")])],1),t._v(" "),n("md-table-row",[n("md-table-cell",[t._v("md-fab-top-right")]),t._v(" "),n("md-table-cell",[t._v("Position the md-fab absolutely on the top right of his parent")])],1),t._v(" "),n("md-table-row",[n("md-table-cell",[t._v("md-fab-bottom-left")]),t._v(" "),n("md-table-cell",[t._v("Position the md-fab absolutely on the bottom left of his parent")])],1),t._v(" "),n("md-table-row",[n("md-table-cell",[t._v("md-fab-bottom-center")]),t._v(" "),n("md-table-cell",[t._v("Position the md-fab absolutely on the bottom center of his parent")])],1),t._v(" "),n("md-table-row",[n("md-table-cell",[t._v("md-fab-bottom-right")]),t._v(" "),n("md-table-cell",[t._v("Position the md-fab absolutely on the bottom right of his parent")])],1)],1)],1)],1)],1),t._v(" "),n("div",{slot:"example"},[n("example-box",{attrs:{"card-title":"Flat"}},[n("div",{slot:"demo"},[n("md-button",[t._v("Default")]),t._v(" "),n("md-button",{staticClass:"md-primary"},[t._v("Primary")]),t._v(" "),n("md-button",{staticClass:"md-accent"},[t._v("Accent")]),t._v(" "),n("md-button",{staticClass:"md-warn"},[t._v("Warn")]),t._v(" "),n("md-button",{staticClass:"md-primary",attrs:{disabled:""}},[t._v("Disabled")]),t._v(" "),n("md-button",{staticClass:"md-dense"},[t._v("Dense")])],1),t._v(" "),n("div",{slot:"code"},[n("code-block",{attrs:{lang:"xml"}},[t._v('\n Default\n Primary\n Accent\n Warn\n Disabled\n Dense\n ')])],1)]),t._v(" "),n("example-box",{attrs:{"card-title":"Raised"}},[n("div",{slot:"demo"},[n("md-button",{staticClass:"md-raised"},[t._v("Default")]),t._v(" "),n("md-button",{staticClass:"md-raised md-primary"},[t._v("Primary")]),t._v(" "),n("md-button",{staticClass:"md-raised md-accent"},[t._v("Accent")]),t._v(" "),n("md-button",{staticClass:"md-raised md-warn"},[t._v("Warn")]),t._v(" "),n("md-button",{staticClass:"md-raised md-primary",attrs:{disabled:""}},[t._v("Disabled")]),t._v(" "),n("md-button",{staticClass:"md-raised md-dense"},[t._v("Dense")])],1),t._v(" "),n("div",{slot:"code"},[n("code-block",{attrs:{lang:"xml"}},[t._v('\n Default\n Primary\n Accent\n Warn\n Disabled\n Dense\n ')])],1)]),t._v(" "),n("example-box",{attrs:{"card-title":"Button vs Link vs Router Link"}},[n("div",{slot:"demo"},[n("md-button",{staticClass:"md-raised md-primary"},[t._v("Button")]),t._v(" "),n("md-button",{staticClass:"md-raised md-primary",attrs:{href:"#/components/button"}},[t._v("Link")]),t._v(" "),n("router-link",{staticClass:"md-raised md-primary",attrs:{tag:"md-button",to:"/components/button"}},[t._v("Router Link")])],1),t._v(" "),n("div",{slot:"code"},[n("code-block",{attrs:{lang:"xml"}},[t._v('\n Button\n Link\n Router Link\n ')])],1)]),t._v(" "),n("example-box",{attrs:{"card-title":"Icons - Flat"}},[n("div",{slot:"demo"},[n("md-button",{staticClass:"md-icon-button"},[n("md-icon",[t._v("more_vert")])],1),t._v(" "),n("md-button",{staticClass:"md-icon-button md-primary"},[n("md-icon",[t._v("more_vert")])],1),t._v(" "),n("md-button",{staticClass:"md-icon-button md-accent"},[n("md-icon",[t._v("more_vert")])],1),t._v(" "),n("md-button",{staticClass:"md-icon-button md-warn"},[n("md-icon",[t._v("more_vert")])],1),t._v(" "),n("md-button",{staticClass:"md-icon-button",attrs:{disabled:""}},[n("md-icon",[t._v("more_vert")])],1),t._v(" "),n("md-button",{staticClass:"md-icon-button md-dense"},[n("md-icon",[t._v("more_vert")])],1)],1),t._v(" "),n("div",{slot:"code"},[n("code-block",{attrs:{lang:"xml"}},[t._v('\n \n more_vert\n \n\n \n more_vert\n \n\n \n more_vert\n \n\n \n more_vert\n \n\n \n more_vert\n \n\n \n more_vert\n \n ')])],1)]),t._v(" "),n("example-box",{attrs:{"card-title":"Icons - Raised"}},[n("div",{slot:"demo"},[n("md-button",{staticClass:"md-icon-button md-raised"},[n("md-icon",[t._v("add")])],1),t._v(" "),n("md-button",{staticClass:"md-icon-button md-raised md-primary"},[n("md-icon",[t._v("add")])],1),t._v(" "),n("md-button",{staticClass:"md-icon-button md-raised md-accent"},[n("md-icon",[t._v("add")])],1),t._v(" "),n("md-button",{staticClass:"md-icon-button md-raised md-warn"},[n("md-icon",[t._v("add")])],1),t._v(" "),n("md-button",{staticClass:"md-icon-button md-raised",attrs:{disabled:""}},[n("md-icon",[t._v("add")])],1),t._v(" "),n("md-button",{staticClass:"md-icon-button md-raised md-dense"},[n("md-icon",[t._v("add")])],1)],1),t._v(" "),n("div",{slot:"code"},[n("code-block",{attrs:{lang:"xml"}},[t._v('\n \n add\n \n\n \n add\n \n\n \n add\n \n\n \n add\n \n\n \n add\n \n\n \n add\n \n ')])],1)]),t._v(" "),n("example-box",{attrs:{"card-title":"Floating Action Button"}},[n("div",{staticClass:"fab-holder",slot:"demo"},[n("div",[n("md-button",{staticClass:"md-fab"},[n("md-icon",[t._v("edit")])],1),t._v(" "),n("md-button",{staticClass:"md-fab md-primary"},[n("md-icon",[t._v("email")])],1),t._v(" "),n("md-button",{staticClass:"md-fab md-warn"},[n("md-icon",[t._v("save")])],1),t._v(" "),n("md-button",{staticClass:"md-fab md-clean"},[n("md-icon",[t._v("dialpad")])],1),t._v(" "),n("md-button",{staticClass:"md-fab",attrs:{disabled:""}},[n("md-icon",[t._v("message")])],1)],1),t._v(" "),n("div",[n("md-button",{staticClass:"md-fab md-mini"},[n("md-icon",[t._v("edit")])],1),t._v(" "),n("md-button",{staticClass:"md-fab md-primary md-mini"},[n("md-icon",[t._v("email")])],1),t._v(" "),n("md-button",{staticClass:"md-fab md-warn md-mini"},[n("md-icon",[t._v("save")])],1),t._v(" "),n("md-button",{staticClass:"md-fab md-clean md-mini"},[n("md-icon",[t._v("dialpad")])],1),t._v(" "),n("md-button",{staticClass:"md-fab md-mini",attrs:{disabled:""}},[n("md-icon",[t._v("message")])],1)],1),t._v(" "),n("md-button",{staticClass:"md-fab md-fab-bottom-left"},[n("md-icon",[t._v("save")])],1),t._v(" "),n("md-button",{staticClass:"md-fab md-primary md-fab-bottom-center"},[n("md-icon",[t._v("dialpad")])],1),t._v(" "),n("md-button",{staticClass:"md-fab md-fab-bottom-right"},[n("md-icon",[t._v("add")])],1)],1),t._v(" "),n("div",{slot:"code"},[n("code-block",{attrs:{lang:"xml"}},[t._v('\n
fix vue material instance on non commonjs env #220
+
recalculate the expansion element if a child is added
+
+
+
+
+
v0.5.0 - New Grid System Engine!
+
+
New Components:
+
+
Theme
+
Layout
+
Spinner
+
+
The long time requested feature is here! Vue Material has a new and easy-to-use Grid System. Enjoy!
+
+
Breaking changes:
+
The first breaking change we never forget. The themes engine has changed and it's more simple now. This change make the themes reactive to make the themes dynamic using the theme component or the API. The performance of the engine is waaay better and the theme styles are now fixed and have a better scope.
+
Check all theme changes in the new themes section inside the documentation website. There are some changes in the theme API:
+
+
v-md-theme directive removed
+
The v-md-theme do not exists anymore and should be replaced by the brand new <md-theme> component.
+
+
Register method renamed
+
Vue.material.theme.register changed to Vue.material.registerTheme. This will make the API smore simple and easy to write.
+
+
Register All removed
+
Vue.material.theme.registerAll was removed. The Vue.material.registerTheme function now accepts a object: