Skip to content

Commit f323845

Browse files
authored
Merge pull request #35 from creativetimofficial/feature/v1.2.1
Feature/v1.2.1
2 parents a66c3ec + ba73825 commit f323845

File tree

116 files changed

+6162
-11965
lines changed

Some content is hidden

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

116 files changed

+6162
-11965
lines changed

.github/workflows/main.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Autocloser
2+
on: [issues]
3+
jobs:
4+
autoclose:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Issue auto-closer
8+
uses: roots/[email protected]
9+
with:
10+
repo-token: ${{ secrets.GITHUB_TOKEN }}
11+
issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow our rules:\n\n<pre>\n\n\n\nIMPORTANT: Please use the following link to create a new issue:\n\nhttps://www.creative-tim.com/new-issue/black-dashboard-react\n\n**If your issue was not created using the app above, it will be closed immediately.**\n\n\n\nLove Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:\n👉 https://www.creative-tim.com/bundles\n👉 https://www.creative-tim.com\n\n\n</pre>\n\n"
12+
issue-pattern: (\#\#\# Version([\S\s.*]*?)\#\#\# Reproduction link([\S\s.*]*?)\#\#\# Operating System([\S\s.*]*?)\#\#\# Device([\S\s.*]*?)\#\#\# Browser & Version([\S\s.*]*?)\#\#\# Steps to reproduce([\S\s.*]*?)\#\#\# What is expected([\S\s.*]*?)\#\#\# What is actually happening([\S\s.*]*?)---([\S\s.*]*?)\#\#\# Solution([\S\s.*]*?)\#\#\# Additional comments([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)|(\#\#\# What is your enhancement([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
package-lock.json
44
/build
55
.vscode
6+
.eslintcache

CHANGELOG.md

Lines changed: 93 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,106 @@
1+
# CHANGELOG
2+
3+
## [1.2.1] 2022-06-29
4+
5+
- Update dependencies
6+
- Migrate from node-sass to sass
7+
8+
## [1.2.0] 2020-12-11
9+
10+
### Bug fixing
11+
12+
- Added hooks support
13+
- https://github.com/creativetimofficial/black-dashboard-react/issues/19
14+
- https://github.com/creativetimofficial/black-dashboard-react/issues/17
15+
16+
### Major style changes
17+
18+
- All Bootstrap imports from `src/assets/scss/black-dashboard-react/bootstrap` have been changed with imports from `node_modules` from `Bootstrap`
19+
20+
### Deleted components
21+
22+
### Added components
23+
24+
### Deleted dependencies
25+
26+
- history (instead of using `history`, we'll be using `BrowserRouter` from `react-router-dom`)
27+
- @types/googlemaps
28+
- @types/react
29+
- @types/markerclustererplus
30+
- react-google-maps (Instead of it, we're going to use simple plain JS Google maps)
31+
32+
### Added dependencies
33+
34+
- [email protected] (for importing `Bootstrap` from `node_modules`)
35+
- [email protected] (instead of using downloaded zip of `Bootstrap`, we'll use it from `node_modules`)
36+
- [email protected] (to stop `Bootstrap` warning on a clean install)
37+
38+
### Updated dependencies
39+
40+
```
41+
@fortawesome/fontawesome-free 5.13.0 → 5.15.1
42+
chart.js 2.9.3 → 2.9.4
43+
node-sass 4.13.1 → 4.14.1
44+
react 16.13.1 → 17.0.1
45+
react-chartjs-2 2.9.0 → 2.11.1
46+
react-dom 16.13.1 → 17.0.1
47+
react-notification-alert 0.0.12 → 0.0.13
48+
react-router-dom 5.1.2 → 5.2.0
49+
react-scripts 3.4.1 → 4.0.1
50+
reactstrap 8.4.1 → 8.7.1
51+
eslint-plugin-flowtype 3.13.0 → 5.2.0
52+
typescript 3.8.3 → 4.1.2
53+
```
54+
55+
### Important Notes
56+
57+
**The jQuery and TypeScript dependencies are installed only to stop console warnings on install. They are not actually used in our product. So the product is not based on jQuery, and it is not based on TypeScript!**
58+
59+
### Warning
60+
61+
_Some warnings may appear when running the installation command, but they do not affect the UI or the functionality of the product._
62+
_The following warnings will appear when running the installation command, but they do not affect the UI or the functionality of the product (they will be solved in our next update - they come from the plugins that we are using, and they haven't yet upgraded to the latest React version):_
63+
64+
```
65+
npm WARN [email protected] requires a peer of [email protected] || ^15.0.0 || ^16.0.0 but none is installed. You must install peer dependencies yourself.
66+
npm WARN [email protected] requires a peer of react@^0.14.0 || ^15.0.0 || ^16.0.0 but none is installed. You must install peer dependencies yourself.
67+
```
68+
69+
Happy Hacking!
70+
171
## [1.1.0] 2020-03-13
72+
273
### Bug fixing
74+
375
- Github issues:
476
- https://github.com/creativetimofficial/black-dashboard-react/issues/8
577
- https://github.com/creativetimofficial/black-dashboard-react/issues/7
678
- https://github.com/creativetimofficial/black-dashboard-react/issues/6 (not really an issue, but was old and needed to close it)
779
- https://github.com/creativetimofficial/black-dashboard-react/issues/4
80+
881
### Major style changes
82+
983
### Deleted components
84+
1085
### Added components
86+
1187
### Deleted dependencies
88+
1289
- bootstrap (styles are already added inside the scss folder)
90+
1391
### Added dependencies
92+
1493
- To stop consolde warnings on installation:
15-
16-
+ @types/markerclustererplus@2.1.33
17-
+ @types/googlemaps@3.39.3
18-
94+
95+
- @types/markerclustererplus@2.1.33
96+
- @types/googlemaps@3.39.3
97+
1998
- For Creative Tim copyrights
20-
21-
99+
100+
101+
22102
### Updated dependencies
103+
23104
```
24105
@types/react 16.4.16 → 16.9.23
25106
chart.js ^2.7.2 → 2.9.3
@@ -35,17 +116,22 @@ react-router-dom 4.3.1 → 5.1.2
35116
react-scripts 2.0.4 → 3.4.0
36117
reactstrap 6.5.0 → 8.4.1
37118
```
119+
38120
### Warning
121+
39122
**There are some errors that come from the react-google-maps components, since they are using old React v16 syntax, this, at the moment does not affect the UI or the functionality of the product. If the issue will perssit in React v17, we will drop the usage of these components and replace them with other maps components. The following warnings on installation could not be solved, due to some of our dependencies, however, they do not affect the functionality or the UI of the product:**
123+
40124
```
41125
npm WARN deprecated [email protected]: request has been deprecated, see https://github.com/request/request/issues/3142
42126
npm WARN deprecated [email protected]: core-js@<3 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3.
43127
npm WARN deprecated [email protected]: Popper changed home, find its new releases at @popperjs/core
44128
```
45-
**Also, the above, are only present in development, and not in production.**
46129

130+
**Also, the above, are only present in development, and not in production.**
47131

48132
## [1.0.0] 2018-11-29
133+
49134
### Original Release
135+
50136
- Added Reactstrap as base framework
51137
- Added design from PRODUCT NAME by Creative Tim

0 commit comments

Comments
 (0)