commit
ae534b903d
29
CHANGELOG.md
29
CHANGELOG.md
@ -1,5 +1,34 @@
|
||||
## [CoreUI](https://coreui.io/) for [react](./REACT.md) changelog
|
||||
|
||||
##### `v2.0.3`
|
||||
- refactor: disable `ServiceWorker` by default
|
||||
- fix(routes): mismatched `SimpleLineIcons` dynamic import
|
||||
- refactor: CoreUI Icons `v0.2.0`
|
||||
- chore: update`babel-jest` to `v22.4.4`
|
||||
|
||||
##### `v2.0.2`
|
||||
- chore: update `@coreui/react` to `v2.0.0`,
|
||||
|
||||
##### `v2.0.1`
|
||||
- refactor: code splitting via dynamic import
|
||||
- refactor: switches view rearrange
|
||||
- fix: update component names in package.json
|
||||
- chore: update `node-sass-chokidar` to `v1.3.0`
|
||||
- chore(release): dependencies update
|
||||
|
||||
##### `v2.0.0-rc.1`
|
||||
- feat: new CoreUI Icons set
|
||||
|
||||
##### `v2.0.0-beta.2`
|
||||
- feat: CoreUI custom tooltips plugin for chart.js
|
||||
|
||||
##### `v2.0.0-beta.1`
|
||||
- refactor(Switches): move to AppSwitch component
|
||||
- fix: typo
|
||||
|
||||
##### `v2.0.0-beta`
|
||||
- update to `@coreui/react: ^2.0.0-beta`
|
||||
|
||||
##### `v2.0.0-alpha.3`
|
||||
- refactor(Colors): view layout, minor temp tweaks
|
||||
- refactor(FullAside): - ListGroup (deprecate callout)
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@coreui/coreui-free-react-admin-template",
|
||||
"version": "2.0.2",
|
||||
"version": "2.0.3",
|
||||
"description": "CoreUI React Open Source Bootstrap 4 Admin Template",
|
||||
"author": "Łukasz Holeczek",
|
||||
"homepage": "https://coreui.io",
|
||||
@ -14,7 +14,7 @@
|
||||
"dependencies": {
|
||||
"@coreui/coreui": "^2.0.1",
|
||||
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.2.0",
|
||||
"@coreui/icons": "^0.1.1",
|
||||
"@coreui/icons": "^0.2.0",
|
||||
"@coreui/react": "^2.0.0",
|
||||
"bootstrap": "^4.1.1",
|
||||
"chart.js": "^2.7.2",
|
||||
@ -36,7 +36,7 @@
|
||||
"simple-line-icons": "^2.4.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-jest": "^22.4.3",
|
||||
"babel-jest": "^22.4.4",
|
||||
"node-sass-chokidar": "^1.3.0",
|
||||
"npm-run-all": "^4.1.2",
|
||||
"react-scripts": "^1.1.4"
|
||||
|
@ -3,7 +3,9 @@ import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import './index.css';
|
||||
import App from './App';
|
||||
import registerServiceWorker from './registerServiceWorker';
|
||||
// disable ServiceWorker
|
||||
// import registerServiceWorker from './registerServiceWorker';
|
||||
|
||||
ReactDOM.render(<App />, document.getElementById('root'));
|
||||
registerServiceWorker();
|
||||
// disable ServiceWorker
|
||||
// registerServiceWorker();
|
||||
|
@ -138,7 +138,7 @@ const FontAwesome = Loadable({
|
||||
});
|
||||
|
||||
const SimpleLineIcons = Loadable({
|
||||
loader: () => import('./views/Icons/FontAwesome'),
|
||||
loader: () => import('./views/Icons/SimpleLineIcons'),
|
||||
loading: Loading,
|
||||
});
|
||||
|
||||
|
@ -16,6 +16,242 @@ class CoreUIIcons extends Component {
|
||||
</CardHeader>
|
||||
<CardBody>
|
||||
<Row className="text-center">
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-account-logout icons font-2xl d-block mt-4"></i>
|
||||
<div>account-logout</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-action-redo icons font-2xl d-block mt-4"></i>
|
||||
<div>action-redo</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-action-undo icons font-2xl d-block mt-4"></i>
|
||||
<div>action-undo</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-align-center icons font-2xl d-block mt-4"></i>
|
||||
<div>align-center</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-align-left icons font-2xl d-block mt-4"></i>
|
||||
<div>align-left</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-align-right icons font-2xl d-block mt-4"></i>
|
||||
<div>align-right</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-aperture icons font-2xl d-block mt-4"></i>
|
||||
<div>aperture</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-arrow-bottom icons font-2xl d-block mt-4"></i>
|
||||
<div>arrow-bottom</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-arrow-circle-bottom icons font-2xl d-block mt-4"></i>
|
||||
<div>arrow-circle-bottom</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-arrow-circle-left icons font-2xl d-block mt-4"></i>
|
||||
<div>arrow-circle-left</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-arrow-circle-right icons font-2xl d-block mt-4"></i>
|
||||
<div>arrow-circle-right</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-arrow-circle-top icons font-2xl d-block mt-4"></i>
|
||||
<div>arrow-circle-top</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-arrow-left icons font-2xl d-block mt-4"></i>
|
||||
<div>arrow-left</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-arrow-right icons font-2xl d-block mt-4"></i>
|
||||
<div>arrow-right</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-arrow-thick-bottom icons font-2xl d-block mt-4"></i>
|
||||
<div>arrow-thick-bottom</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-arrow-thick-left icons font-2xl d-block mt-4"></i>
|
||||
<div>arrow-thick-left</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-arrow-thick-right icons font-2xl d-block mt-4"></i>
|
||||
<div>arrow-thick-right</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-arrow-thick-top icons font-2xl d-block mt-4"></i>
|
||||
<div>arrow-thick-top</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-arrow-top icons font-2xl d-block mt-4"></i>
|
||||
<div>arrow-top</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-audio icons font-2xl d-block mt-4"></i>
|
||||
<div>audio</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-audio-spectrum icons font-2xl d-block mt-4"></i>
|
||||
<div>audio-spectrum</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-badge icons font-2xl d-block mt-4"></i>
|
||||
<div>badge</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-ban icons font-2xl d-block mt-4"></i>
|
||||
<div>ban</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-bar-chart icons font-2xl d-block mt-4"></i>
|
||||
<div>bar-chart</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-battery-empty icons font-2xl d-block mt-4"></i>
|
||||
<div>battery-empty</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-battery-full icons font-2xl d-block mt-4"></i>
|
||||
<div>battery-full</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-beaker icons font-2xl d-block mt-4"></i>
|
||||
<div>beaker</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-bluetooth icons font-2xl d-block mt-4"></i>
|
||||
<div>bluetooth</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-bold icons font-2xl d-block mt-4"></i>
|
||||
<div>bold</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-bolt icons font-2xl d-block mt-4"></i>
|
||||
<div>bolt</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-book icons font-2xl d-block mt-4"></i>
|
||||
<div>book</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-bookmark icons font-2xl d-block mt-4"></i>
|
||||
<div>bookmark</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-box icons font-2xl d-block mt-4"></i>
|
||||
<div>box</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-briefcase icons font-2xl d-block mt-4"></i>
|
||||
<div>briefcase</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-british-pound icons font-2xl d-block mt-4"></i>
|
||||
<div>british-pound</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-browser icons font-2xl d-block mt-4"></i>
|
||||
<div>browser</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-brush icons font-2xl d-block mt-4"></i>
|
||||
<div>brush</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-bug icons font-2xl d-block mt-4"></i>
|
||||
<div>bug</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-bullhorn icons font-2xl d-block mt-4"></i>
|
||||
<div>bullhorn</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-caret-bottom icons font-2xl d-block mt-4"></i>
|
||||
<div>caret-bottom</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-caret-left icons font-2xl d-block mt-4"></i>
|
||||
<div>caret-left</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-caret-right icons font-2xl d-block mt-4"></i>
|
||||
<div>caret-right</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-caret-top icons font-2xl d-block mt-4"></i>
|
||||
<div>caret-top</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-cart icons font-2xl d-block mt-4"></i>
|
||||
<div>cart</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-chat icons font-2xl d-block mt-4"></i>
|
||||
<div>chat</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-check icons font-2xl d-block mt-4"></i>
|
||||
<div>check</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-chevron-bottom icons font-2xl d-block mt-4"></i>
|
||||
<div>chevron-bottom</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-chevron-left icons font-2xl d-block mt-4"></i>
|
||||
<div>chevron-left</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-chevron-right icons font-2xl d-block mt-4"></i>
|
||||
<div>chevron-right</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-chevron-top icons font-2xl d-block mt-4"></i>
|
||||
<div>chevron-top</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-circle-check icons font-2xl d-block mt-4"></i>
|
||||
<div>circle-check</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-circle-x icons font-2xl d-block mt-4"></i>
|
||||
<div>circle-x</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-clipboard icons font-2xl d-block mt-4"></i>
|
||||
<div>clipboard</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-clock icons font-2xl d-block mt-4"></i>
|
||||
<div>clock</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-cloud icons font-2xl d-block mt-4"></i>
|
||||
<div>cloud</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-cloud-upload icons font-2xl d-block mt-4"></i>
|
||||
<div>cloud-upload</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-cloudy icons font-2xl d-block mt-4"></i>
|
||||
<div>cloudy</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-social-linkedin icons font-2xl d-block mt-4"></i>
|
||||
<div>social-linkedin</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-social-spotify icons font-2xl d-block mt-4"></i>
|
||||
<div>social-spotify</div>
|
||||
</Col>
|
||||
<Col xs="6" sm="4" md="3">
|
||||
<i className="cui-basket-loaded icons font-2xl d-block mt-4"></i>
|
||||
<div>basket-loaded</div>
|
||||
@ -181,3 +417,4 @@ class CoreUIIcons extends Component {
|
||||
}
|
||||
|
||||
export default CoreUIIcons;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user