commit
07c7d3d565
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,5 +1,15 @@
|
||||
## [CoreUI](https://coreui.io/) for [react](./REACT.md) changelog
|
||||
|
||||
##### `v2.0.12`
|
||||
fixes some issues with `rtl`, `ie11`, `sidebar-minimized` behaviour and `aside` responsiveness
|
||||
- fix(DefaultAside): `ListGroup` with `tag="div"` works better with `rtl`
|
||||
- fix(DefaultLayout): `AppAside` remove deprecated `hidden` prop
|
||||
- chore: update `@coreui/react` to `^2.0.8`
|
||||
- chore: update `reactsrtrap` to `^6.5.0`
|
||||
- chore: update `react-scripts` to `^2.0.4`
|
||||
- chore: `enzyme` to `3.7.0`
|
||||
- chore: `enzyme-adapter-react-16` to `1.6.0`
|
||||
|
||||
##### `v2.0.11`
|
||||
- chore: update `@coreui/react` to `^2.0.7`
|
||||
- chore: migration to [Create React App 2.0](https://reactjs.org/blog/2018/10/01/create-react-app-v2.html)
|
||||
|
14
README.md
14
README.md
@ -1,3 +1,17 @@
|
||||
[](https://github.com/coreui/coreui)
|
||||
[![npm package][npm-coreui-badge]][npm-coreui]
|
||||
[![NPM downloads][npm-coreui-download]][npm-coreui]
|
||||
[](https://github.com/coreui/react)
|
||||
[![npm package][npm-coreui-react-badge]][npm-coreui-react]
|
||||
[![NPM downloads][npm-coreui-react-download]][npm-coreui-react]
|
||||
|
||||
[npm-coreui]: https://www.npmjs.com/package/@coreui/coreui
|
||||
[npm-coreui-badge]: https://img.shields.io/npm/v/@coreui/coreui.png?style=flat-square
|
||||
[npm-coreui-download]: https://img.shields.io/npm/dm/@coreui/coreui.svg?style=flat-square
|
||||
[npm-coreui-react]: https://www.npmjs.com/package/@coreui/react
|
||||
[npm-coreui-react-badge]: https://img.shields.io/npm/v/@coreui/react.png?style=flat-square
|
||||
[npm-coreui-react-download]: https://img.shields.io/npm/dm/@coreui/react.svg?style=flat-square
|
||||
|
||||
# CoreUI Free React Admin Template v2 [](https://twitter.com/intent/tweet?text=CoreUI%20-%20Free%20React%20Admin%20Template%20&url=https://coreui.io/react/&hashtags=bootstrap,admin,template,dashboard,panel,free,angular,react,vue)
|
||||
|
||||
Please help us on [Product Hunt](https://www.producthunt.com/posts/coreui-open-source-bootstrap-4-admin-template-with-angular-2-react-js-vue-js-support) and [Designer News](https://www.designernews.co/stories/81127). Thanks in advance!
|
||||
|
12
package.json
12
package.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@coreui/coreui-free-react-admin-template",
|
||||
"version": "2.0.11",
|
||||
"version": "2.0.12",
|
||||
"description": "CoreUI React Open Source Bootstrap 4 Admin Template",
|
||||
"author": "Łukasz Holeczek",
|
||||
"homepage": "https://coreui.io",
|
||||
@ -15,13 +15,13 @@
|
||||
"@coreui/coreui": "^2.0.14",
|
||||
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.2.0",
|
||||
"@coreui/icons": "0.3.0",
|
||||
"@coreui/react": "^2.0.7",
|
||||
"@coreui/react": "^2.0.8",
|
||||
"bootstrap": "^4.1.3",
|
||||
"chart.js": "^2.7.2",
|
||||
"classnames": "^2.2.6",
|
||||
"core-js": "^2.5.7",
|
||||
"enzyme": "^3.6.0",
|
||||
"enzyme-adapter-react-16": "^1.5.0",
|
||||
"enzyme": "^3.7.0",
|
||||
"enzyme-adapter-react-16": "^1.6.0",
|
||||
"flag-icon-css": "^3.2.0",
|
||||
"font-awesome": "^4.7.0",
|
||||
"node-sass": "^4.9.3",
|
||||
@ -34,14 +34,14 @@
|
||||
"react-router-config": "^4.4.0-beta.1",
|
||||
"react-router-dom": "^4.3.1",
|
||||
"react-test-renderer": "^16.5.2",
|
||||
"reactstrap": "^6.4.0",
|
||||
"reactstrap": "^6.5.0",
|
||||
"simple-line-icons": "^2.4.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-jest": "^23.6.0",
|
||||
"node-sass-chokidar": "^1.3.3",
|
||||
"npm-run-all": "^4.1.3",
|
||||
"react-scripts": "^2.0.3"
|
||||
"react-scripts": "^2.0.4"
|
||||
},
|
||||
"scripts": {
|
||||
"build-css": "node-sass-chokidar --include-path ./node_modules ./src/scss -o ./src/scss",
|
||||
|
@ -64,7 +64,7 @@ class DefaultAside extends Component {
|
||||
</Nav>
|
||||
<TabContent activeTab={this.state.activeTab}>
|
||||
<TabPane tabId="1">
|
||||
<ListGroup className="list-group-accent">
|
||||
<ListGroup className="list-group-accent" tag={'div'}>
|
||||
<ListGroupItem className="list-group-item-accent-secondary bg-light text-center font-weight-bold text-muted text-uppercase small">Today</ListGroupItem>
|
||||
<ListGroupItem action tag="a" href="#" className="list-group-item-accent-warning list-group-item-divider">
|
||||
<div className="avatar float-right">
|
||||
|
@ -52,7 +52,7 @@ class DefaultLayout extends Component {
|
||||
</Switch>
|
||||
</Container>
|
||||
</main>
|
||||
<AppAside fixed hidden>
|
||||
<AppAside fixed>
|
||||
<DefaultAside />
|
||||
</AppAside>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user