From 69d67c24a7b055df08f804a6aa8d5614b791a21c Mon Sep 17 00:00:00 2001 From: sajadevo Date: Thu, 10 Jun 2021 04:25:51 -0700 Subject: [PATCH 1/4] Update modules --- package.json | 4 ++-- yarn.lock | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index dfb37b83..e1af1fca 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "private": true, "homepage": "https://demos.creative-tim.com/material-tailwind-dashboard-react/#/", "dependencies": { - "@material-tailwind/react": "^0.3.3", + "@material-tailwind/react": "^0.3.4", "@react-google-maps/api": "^2.1.1", "@testing-library/jest-dom": "^5.11.4", "@testing-library/react": "^11.1.0", @@ -50,7 +50,7 @@ "npm-run-all": "^4.1.5", "postcss": "^8.2.13", "postcss-cli": "^8.3.1", - "tailwindcss": "^2.1.2" + "tailwindcss": "^2.1.4" }, "optionalDependencies": { "@babel/core": "7.14.0", diff --git a/yarn.lock b/yarn.lock index ccb55c31..b2ea0909 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1645,10 +1645,10 @@ "@types/yargs" "^15.0.0" chalk "^4.0.0" -"@material-tailwind/react@^0.3.3": - version "0.3.3" - resolved "https://registry.yarnpkg.com/@material-tailwind/react/-/react-0.3.3.tgz#12ec6840e9d87ec5081e45545083b6e4ec9f786b" - integrity sha512-BLrK7flKdXwFMQqnwtEimsYbdDS4kOGHDdaQ2gsqY12Do1Mg0jHEfimPstKieMC+sU1hQe8P0oVlRQXeksd4XA== +"@material-tailwind/react@^0.3.4": + version "0.3.4" + resolved "https://registry.yarnpkg.com/@material-tailwind/react/-/react-0.3.4.tgz#aaccb84d6b1dbe7a3cb790b6c8d4209081e031c0" + integrity sha512-ri5nMD6Wv4WT5x+3B3jt1A8ZwHijprY8R3EmI5eXnmCNe+Wzyn0AeKcB6IIHhP7fcZVMjSpMBrn5XO700LhO5Q== dependencies: "@babel/plugin-proposal-class-properties" "^7.13.0" "@babel/runtime" "^7.14.0" @@ -12909,10 +12909,10 @@ table@^6.0.4: slice-ansi "^4.0.0" string-width "^4.2.0" -tailwindcss@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-2.1.2.tgz#29402bf73a445faedd03df6d3b177e7b52b7c4a1" - integrity sha512-T5t+wwd+/hsOyRw2HJuFuv0LTUm3MUdHm2DJ94GPVgzqwPPFa9XxX0KlwLWupUuiOUj6uiKURCzYPHFcuPch/w== +tailwindcss@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-2.1.4.tgz#ee8a1b8ccc140db61960b6738f968a8a1c4cd1f8" + integrity sha512-fh1KImDLg6se/Suaelju/5oFbqq1b0ntagmGLu0aG9LlnNPGHgO1n/4E57CbKcCtyz/VYnvVXUiWmfyfBBZQ6g== dependencies: "@fullhuman/postcss-purgecss" "^3.1.3" bytes "^3.0.0" From ee45c5d83627d8c03640a9de7b5d9c9715e3ef68 Mon Sep 17 00:00:00 2001 From: sajadevo Date: Thu, 10 Jun 2021 04:26:00 -0700 Subject: [PATCH 2/4] Update adminNavbar dropdown --- src/components/AdminNavbar.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/AdminNavbar.js b/src/components/AdminNavbar.js index 3eba345e..f3ed3231 100644 --- a/src/components/AdminNavbar.js +++ b/src/components/AdminNavbar.js @@ -56,14 +56,17 @@ export default function AdminNavbar({ showSidebar, setShowSidebar }) {
} rounded - style={{ padding: 0, color: 'transparent' }} + style={{ + padding: 0, + color: 'transparent', + }} > Action From ff6292ca9169c1bb1baa14416825e63ff8ef25f8 Mon Sep 17 00:00:00 2001 From: sajadevo Date: Thu, 10 Jun 2021 04:34:13 -0700 Subject: [PATCH 3/4] Add the download button to the sidebar --- src/components/Sidebar.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/components/Sidebar.js b/src/components/Sidebar.js index 9a784359..904f6561 100644 --- a/src/components/Sidebar.js +++ b/src/components/Sidebar.js @@ -116,7 +116,7 @@ export default function Sidebar() { From c113d3a760b1fbc4b90f078635e443689fe26e19 Mon Sep 17 00:00:00 2001 From: sajadevo Date: Thu, 10 Jun 2021 04:47:04 -0700 Subject: [PATCH 4/4] Update to version v1.1.0 --- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- package.json | 2 +- public/index.html | 2 +- src/assets/styles/index.css | 2 +- 5 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be21418d..9322305f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## [1.1.0] 2021-06-10 + +### New Features + +- Add the download button + +### Bug Fixing + +- Fix the dropdown of admin navbar + ## [1.0.0] 2021-06-08 ### Original Release diff --git a/README.md b/README.md index d646b354..7f2e3512 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # [Material Tailwind Dashboard React](https://demos.creative-tim.com/material-tailwind-dashboard-react/#/?ref=readme-mtdr) -![version](https://img.shields.io/badge/version-1.0.0-blue.svg) [![GitHub issues open](https://img.shields.io/github/issues/creativetimofficial/material-tailwind-dashboard-react.svg?maxAge=2592000)](https://github.com/creativetimofficial/material-tailwind-dashboard-react/issues?q=is%3Aopen+is%3Aissue) [![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/creativetimofficial/material-tailwind-dashboard-react.svg?maxAge=2592000)](https://github.com/creativetimofficial/material-tailwind-dashboard-react/issues?q=is%3Aissue+is%3Aclosed) +![version](https://img.shields.io/badge/version-1.1.0-blue.svg) [![GitHub issues open](https://img.shields.io/github/issues/creativetimofficial/material-tailwind-dashboard-react.svg?maxAge=2592000)](https://github.com/creativetimofficial/material-tailwind-dashboard-react/issues?q=is%3Aopen+is%3Aissue) [![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/creativetimofficial/material-tailwind-dashboard-react.svg?maxAge=2592000)](https://github.com/creativetimofficial/material-tailwind-dashboard-react/issues?q=is%3Aissue+is%3Aclosed) ![Image](https://s3.amazonaws.com/creativetim_bucket/products/488/original/opt_md_tailwindreact_thumbnail.jpg) diff --git a/package.json b/package.json index e1af1fca..050a91c6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "material-tailwind-dashboard-react", - "version": "1.0.0", + "version": "1.1.0", "private": true, "homepage": "https://demos.creative-tim.com/material-tailwind-dashboard-react/#/", "dependencies": { diff --git a/public/index.html b/public/index.html index 5c624448..3f0aa62a 100644 --- a/public/index.html +++ b/public/index.html @@ -1,7 +1,7 @@