Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/v1.1.1 #24

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# dependencies
/node_modules
package-lock.json
/.pnp
.pnp.js

Expand Down
3 changes: 3 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
legacy-peer-deps=true
auto-install-peers=true
strict-peer-dependencies=false
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Change Log

## [1.1.1] 2023-05-22

- Update dependencies
- Fix installation issue

## [1.1.0] 2021-03-19

### Bug fixing

- Rename `master` branch to `main`
- To make a lot of our changes, we've followed the instructions from here (minus the `colors` and `font-sizes`): https://tailwindcss.com/docs/upgrading-to-v2
- For the colors, the only change that we made, is the fact that we've added all Tailwind CSS colors to our `tailwind.config.js` files, and inside our product, all `{type}-gray-{number}` classes were renamed to `{type}-blueGray-{number}`
Expand All @@ -15,7 +22,7 @@
- Then, you search in your whole project for `blueGray-700` and replace it with `blueGray-600`
- Then, you search in your whole project for `blueGray-800` and replace it with `blueGray-700`
- Then, you search in your whole project for `blueGray-900` and replace it with `blueGray-800`
- For the colors, the only change that we made, is the fact that we've added all Tailwind CSS colors to our `tailwind.config.js` files, and inside our product, all `{type}-blue-{number}` classes were renamed to `{type}-lightBlue-{number}`
- For the colors, the only change that we made, is the fact that we've added all Tailwind CSS colors to our `tailwind.config.js` files, and inside our product, all `{type}-blue-{number}` classes were renamed to `{type}-sky-{number}`
- For the colors, the only change that we made, is the fact that we've added all Tailwind CSS colors to our `tailwind.config.js` files, and inside our product, all `{type}-green-{number}` classes were renamed to `{type}-emerald-{number}`
- `lg:bg-transparent` is not working anymore, so we've changed it with `lg:bg-opacity-0`
- https://github.com/creativetimofficial/notus-angular/issues/4
Expand All @@ -29,24 +36,34 @@
- https://github.com/creativetimofficial/notus-svelte/issues/3
- https://github.com/creativetimofficial/notus-svelte/issues/6
- https://github.com/creativetimofficial/vue-notus/pull/4/

### Major style changes

- The upgrade of Tailwind CSS from version 1 to version 2, will cause multiple style changes, check them out on the official Tailwind CSS websites:
- https://blog.tailwindcss.com/tailwindcss-v2
- https://tailwindcss.com/
- https://tailwindcss.com/docs/upgrading-to-v2

### Deleted components

### Added components

### Deleted dependencies

- `@tailwindcss/custom-forms`
- `react-google-maps` (replaced by simple Google Maps API)
- `@types/googlemaps` (dependencies of `react-google-maps`)
- `@types/markerclustererplus` (dependencies of `react-google-maps`)
- `@types/react` (dependencies of `react-google-maps`)

### Added dependencies

- `@tailwindcss/forms` (replaces `@tailwindcss/custom-forms`)
- `autoprefixer`
- `postcss`

### Updated dependencies

```
@fortawesome/fontawesome-free 5.14.0 → 5.15.3
@popperjs/core 2.5.1 → 2.9.1
Expand All @@ -57,10 +74,14 @@ react-scripts 3.4.3 → 4.0.3
tailwindcss 1.8.10 → 2.0.4
typescript 4.0.3 → 4.2.3
```

### Warning

_On a clean install there may be some warnings from request, chokidar, fsevents - they come from node_modules, and they do not affect the product at all._

## [1.0.0] 2020-09-29

### Original Release

- Started project from [Tailwind Starter Kit by Creative Tim](https://www.creative-tim.com/learning-lab/tailwind-starter-kit/presentation?ref=nr-changelog)
- Added design from Tailwind Starter Kit by Creative Tim
33 changes: 19 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "notus-react",
"version": "1.1.0",
"version": "1.1.1",
"description": "Notus React - A free Tailwind CSS and React UI Kit and Admin by Creative Tim.",
"repository": "https://github.com/creativetimofficial/notus-react",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-free": "5.15.3",
"@popperjs/core": "2.9.1",
"@tailwindcss/forms": "0.2.1",
"autoprefixer": "10.2.5",
"@fortawesome/fontawesome-free": "6.4.0",
"@popperjs/core": "2.11.7",
"@tailwindcss/forms": "0.5.3",
"autoprefixer": "10.4.14",
"chart.js": "2.9.4",
"gulp": "4.0.2",
"gulp-append-prepend": "1.0.8",
"postcss": "8.2.8",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.3",
"tailwindcss": "2.0.4"
"gulp-append-prepend": "1.0.9",
"postcss": "8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router": "6.11.1",
"react-router-dom": "6.11.1",
"react-scripts": "5.0.1",
"tailwindcss": "2.2.19"
},
"scripts": {
"start": "react-scripts start",
Expand All @@ -44,6 +44,11 @@
]
},
"optionalDependencies": {
"typescript": "4.2.3"
"typescript": "5.0.4"
},
"overrides": {
"svgo": "3.0.2",
"chokidar": "3.5.3",
"fsevents": "2.3.2"
}
}
Loading