-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from creativetimofficial/feature/v2.0.0
Feature: v2.0.0
- Loading branch information
Showing
108 changed files
with
8,070 additions
and
5,998 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
package-lock.json | ||
node_modules/ | ||
.eslintcache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,107 @@ | ||
# Change Log | ||
|
||
## [2.0.0] 2021-01-21 | ||
### IMPORTANT | ||
- We have updated this product from Bootstrap 3 to Bootstrap 4, so in essence, this is a new product | ||
- For this, we have followed the guidelines from [here](https://react-bootstrap.github.io/migrating/) and [here](https://getbootstrap.com/docs/4.0/migration/) | ||
- We also did not add Bootstrap variables as part of our styles (we will do so in one of our next updates, probably in version 3.0.0 when we'll add Bootstrap 5) | ||
### Bug fixing | ||
- Renamed all files to `.js`, instead of `.jsx` | ||
- Refactor all files from class components to functional ones, so now, you can use React Hooks | ||
- https://github.com/creativetimofficial/light-bootstrap-dashboard-react/issues/62 | ||
- https://github.com/creativetimofficial/light-bootstrap-dashboard-react/issues/58 | ||
- https://github.com/creativetimofficial/light-bootstrap-dashboard-react/issues/52 | ||
- https://github.com/creativetimofficial/light-bootstrap-dashboard-react/issues/50 | ||
### Major style changes | ||
- Since the update from Bootstrap 3 to Bootstrap 4, all styles have been changed | ||
### Deleted components | ||
- src/components/Card/Card.jsx (we'll use the simple React Bootstrap tags instead) | ||
- src/components/CustomButton/CustomButton.jsx (we'll use the simple React Bootstrap tags instead) | ||
- src/components/CustomCheckbox/CustomCheckbox.jsx (we'll use the simple React Bootstrap tags instead) | ||
- src/components/CustomRadio/CustomRadio.jsx (we'll use the simple React Bootstrap tags instead) | ||
- src/components/FormInputs/FormInputs.jsx (we'll use the simple React Bootstrap tags instead) | ||
- src/components/StatsCard/StatsCard.jsx (we'll use the simple React Bootstrap tags instead) | ||
- src/components/Tasks/Tasks.jsx (we'll use the simple React Bootstrap tags instead) | ||
- src/components/UserCard/UserCard.jsx (we'll use the simple React Bootstrap tags instead) | ||
### Added components | ||
### Deleted dependencies | ||
- react-notification-system (we'll use react-notification-alert from now on) | ||
- @types/googlemaps | ||
- @types/markerclustererplus | ||
- @types/react | ||
- react-google-maps (we'll use simple Google Maps API with Vanilla JS) | ||
- react-toggle (we'll use the simple React-Bootstrap Form.Check as a switch instead) | ||
### Added dependencies | ||
+ [email protected] (instead of the react-notification-system) | ||
+ [email protected] (as part of the react-notification-alert) | ||
+ [email protected] (since Bootstrap requires it) | ||
+ @fortawesome/fontawesome-free@5.15.2 (For easier update of the package - instead of a link inside public/index.html) | ||
+ [email protected] (For Creative Tim licenses) | ||
+ [email protected] (For Creative Tim licenses) | ||
### Updated dependencies | ||
``` | ||
bootstrap 3.3.7 → 4.6.0 | ||
node-sass 4.12.0 → 4.14.1 | ||
react 16.8.6 → 17.0.1 | ||
react-bootstrap 0.32.4 → 1.4.3 | ||
react-chartist 0.13.3 → 0.14.3 | ||
react-dom 16.8.6 → 17.0.1 | ||
react-router 5.0.0 → 5.2.0 | ||
react-router-dom 5.0.0 → 5.2.0 | ||
react-scripts 3.0.0 → 4.0.1 | ||
typescript 3.4.3 → 4.1.3 | ||
``` | ||
### Warning | ||
**The TypeScript and jQuery 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 TypeScript or jQuery!** | ||
_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):_ | ||
``` | ||
npm WARN [email protected] requires a peer of react@^0.14.9 || ^15.0.0 || ^16.0.0 but none is installed. You must install peer dependencies yourself. | ||
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. | ||
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. | ||
``` | ||
_If they will persist in our 2.4.* version, we will drop their usages and replace them with other plugins._ | ||
_In development mode, some of the above plugins will throw a warning because they still use React v16 syntax. If the error will persist in our 2.4.* version, we will drop their usage and replace them with other plugins._ | ||
### Upgrade details | ||
* Updated all packages from `package.json` using `npm-upgrade`, link here: https://www.npmjs.com/package/npm-upgrade | ||
* Renamed all `ControlLabel` components to `FormLabel` (this refers to the react-bootstrap components) | ||
* Renamed all `Grid` components to `Container` (this refers to the react-bootstrap components) | ||
* Rename all `HelpBlock` components to `FormText` | ||
* Rename all `MenuItem` components to `Dropdown.Item` and `NavDropdown.Item` | ||
* Rename all Panel components to Card | ||
* Deleted variables folder | ||
* Change the usage of `React Big Calendar` to the new API, so instead of | ||
``` | ||
import BigCalendar from "react-big-calendar"; | ||
``` | ||
* And | ||
``` | ||
const localizer = BigCalendar.momentLocalizer(moment); | ||
``` | ||
* We will have: | ||
``` | ||
import { Calendar as BigCalendar, momentLocalizer } from "react-big-calendar"; | ||
``` | ||
* And | ||
``` | ||
const localizer = momentLocalizer(moment); | ||
``` | ||
* Change Panels with new react-bootstrap components | ||
* For Col componets, replaced `size={number1} sizeOffest={number2}` with `size={{span: number1, offset: number2}}` where size can be `xs`, `sm`, `md`, `lg` | ||
* Changed `bsStyle` to `variant` | ||
* Changed `bsSize` to `size` | ||
* Replace `<Navbar.Header>` with `<div className=“navbar-header”>` | ||
* Replace `<Navbar.Form>` with `<div className="navbar-search-form navbar-form navbar-left">` | ||
* Replace `<FormGroup>` with `<Form.Group>` | ||
* Replace `<InputGroup.Addon>` with `<InputGroup.Prepend><InputGroup.Text>` and `<InputGroup.Append><InputGroup.Text>` | ||
* All required images have a default prop at the end now, example: `const us_flag = require("../assets/img/flags/US.png");` was changed to `const us_flag = require("../assets/img/flags/US.png").default;` | ||
* Rename all .jsx files to .js | ||
* Added Row and Col inside StatsCard | ||
* Delete eventKey from NavDropdown components | ||
* Deleted noCaret from NavDropdown components | ||
* Replace Navbar fluid with Navbar → Container fluid | ||
* Add fontawesome as dependencie instead of font link insde public/index.html, it is now imported insde src/index.js | ||
* In addition to these changes, we’ve chaned the structure of the pages and components as well to match those from the HTML version of the product: https://www.creative-tim.com/product/light-bootstrap-dashboard | ||
|
||
## [1.3.0] 2019-05-03 | ||
### Bug fixing | ||
- Renamed `src/layouts/Dashboard/Dashboard.jsx` to `src/layouts/Admin.jsx` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
const gulp = require("gulp"); | ||
const gap = require("gulp-append-prepend"); | ||
|
||
gulp.task("licenses", async function () { | ||
// this is to add Creative Tim licenses in the production mode for the minified js | ||
gulp | ||
.src("build/static/js/*chunk.js", { base: "./" }) | ||
.pipe( | ||
gap.prependText(`/*! | ||
========================================================= | ||
* Light Bootstrap Dashboard React - v2.0.0 | ||
========================================================= | ||
* Product Page: https://www.creative-tim.com/product/light-bootstrap-dashboard-react | ||
* Copyright 2020 Creative Tim (https://www.creative-tim.com) | ||
* Coded by Creative Tim | ||
========================================================= | ||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
*/`) | ||
) | ||
.pipe(gulp.dest("./", { overwrite: true })); | ||
|
||
// this is to add Creative Tim licenses in the production mode for the minified html | ||
gulp | ||
.src("build/index.html", { base: "./" }) | ||
.pipe( | ||
gap.prependText(`<!-- | ||
========================================================= | ||
* Light Bootstrap Dashboard React - v2.0.0 | ||
========================================================= | ||
* Product Page: https://www.creative-tim.com/product/light-bootstrap-dashboard-react | ||
* Copyright 2020 Creative Tim (https://www.creative-tim.com) | ||
* Coded by Creative Tim | ||
========================================================= | ||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
-->`) | ||
) | ||
.pipe(gulp.dest("./", { overwrite: true })); | ||
|
||
// this is to add Creative Tim licenses in the production mode for the minified css | ||
gulp | ||
.src("build/static/css/*chunk.css", { base: "./" }) | ||
.pipe( | ||
gap.prependText(`/*! | ||
========================================================= | ||
* Light Bootstrap Dashboard React - v2.0.0 | ||
========================================================= | ||
* Product Page: https://www.creative-tim.com/product/light-bootstrap-dashboard-react | ||
* Copyright 2020 Creative Tim (https://www.creative-tim.com) | ||
* Coded by Creative Tim | ||
========================================================= | ||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
*/`) | ||
) | ||
.pipe(gulp.dest("./", { overwrite: true })); | ||
return; | ||
}); |
Oops, something went wrong.