Skip to content

Commit c8874ae

Browse files
authored
Merge pull request #29 from creativetimofficial/feature/v1.4.0
Feature/v1.4.0
2 parents d91d1d0 + e963b25 commit c8874ae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+13861
-96
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules/
2+
dist/
23
package-lock.json
34
/docs
45
/dist

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## [1.4.0] 2020-03-12
4+
### Dependencies Updates
5+
- Updated all out of date dependencies from `package.json` file
6+
- Add `API_KEY` file
7+
- Add new structure for google maps plugin
8+
39
## [1.3.2] 2019-12-13
410
### Dependencies Updates
511
- Updated all out of date dependencies from `package.json` file

ISSUE_TEMPLATE.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

LICENSE.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# [Vue Material Dashboard](https://demos.creative-tim.com/vue-material-dashboard) [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social&logo=twitter)](https://twitter.com/home?status=Vue%20Material%20Dashboard,%20a%20free%20Material%20Admin%20Template%20%E2%9D%A4%EF%B8%8F%20https%3A//bit.ly/2Nh5aVy%20%20%23vue%20%23material%20%23design%20%23developers%20%23freebie%20%20via%20%40CreativeTim)
22

33

4-
![version](https://img.shields.io/badge/version-1.3.2-blue.svg) ![license](https://img.shields.io/badge/license-MIT-blue.svg) [![GitHub issues open](https://img.shields.io/github/issues/creativetimofficial/vue-material-dashboard.svg?maxAge=2592000)](https://github.com/creativetimofficial/vue-material-dashboard/issues?q=is%3Aopen+is%3Aissue) [![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/creativetimofficial/vue-material-dashboard.svg?maxAge=2592000)](https://github.com/creativetimofficial/vue-material-dashboard/issues?q=is%3Aissue+is%3Aclosed) [![Join the chat at https://gitter.im/NIT-dgp/General](https://badges.gitter.im/NIT-dgp/General.svg)](https://gitter.im/creative-tim-general/Lobby) [![Chat](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://discord.gg/E4aHAQy)
4+
![version](https://img.shields.io/badge/version-1.4.0-blue.svg) ![license](https://img.shields.io/badge/license-MIT-blue.svg) [![GitHub issues open](https://img.shields.io/github/issues/creativetimofficial/vue-material-dashboard.svg?maxAge=2592000)](https://github.com/creativetimofficial/vue-material-dashboard/issues?q=is%3Aopen+is%3Aissue) [![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/creativetimofficial/vue-material-dashboard.svg?maxAge=2592000)](https://github.com/creativetimofficial/vue-material-dashboard/issues?q=is%3Aissue+is%3Aclosed) [![Join the chat at https://gitter.im/NIT-dgp/General](https://badges.gitter.im/NIT-dgp/General.svg)](https://gitter.im/creative-tim-general/Lobby) [![Chat](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://discord.gg/E4aHAQy)
55

66

77
![Product Gif](https://s3.amazonaws.com/creativetim_bucket/github/gif/vue-material-dashboard.gif)

docs/.vuepress/config.js

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
const markdownParser = require('./markdownParser')
2+
const path = require('path');
3+
module.exports = {
4+
title: 'Vue Material Dashboard',
5+
base: '/vue-material-dashboard/documentation/',
6+
markdown: {
7+
config: markdownParser
8+
},
9+
configureWebpack: (config, isServer) => {
10+
config.resolve.alias['@'] = path.resolve(__dirname, '../../src')
11+
},
12+
head: [
13+
['link', { rel: 'stylesheet', href: `https://fonts.googleapis.com/icon?family=Material+Icons` }],
14+
['link', { rel: 'icon', type: 'image/png', sizes: '96x96', href: '/favicon.png' }],
15+
['link', { rel: 'canonical', href: 'https://www.creative-tim.com/product/vue-material-dashboard' }]
16+
],
17+
themeConfig: {
18+
repo: 'creativetimofficial/vue-material-dashboard',
19+
nav: [
20+
{ text: 'v1.3.2', link: '/' }
21+
],
22+
sidebar: [
23+
{
24+
title: 'General Information',
25+
collapsable: false,
26+
children: [
27+
'/',
28+
'/component-docs/license'
29+
]
30+
},
31+
{
32+
title: 'Components',
33+
collapsable: false,
34+
children: [
35+
'/component-docs/buttons',
36+
'/component-docs/cards',
37+
'/component-docs/checkboxes',
38+
'/component-docs/dropdown',
39+
'/component-docs/inputs',
40+
'/component-docs/textarea',
41+
'/component-docs/maps',
42+
'/component-docs/notifications',
43+
'/component-docs/tables',
44+
'/component-docs/tabs',
45+
'/component-docs/tooltips',
46+
'/component-docs/material-icons',
47+
'/component-docs/toolbar'
48+
]
49+
}
50+
]
51+
}
52+
};

0 commit comments

Comments
 (0)