File tree 9 files changed +1069
-517
lines changed
9 files changed +1069
-517
lines changed Original file line number Diff line number Diff line change 1
- ## [ react] ( ./REACT.md ) version ` changelog `
1
+ ## [ CoreUI] ( https://coreui.io/ ) for [ react] ( ./REACT.md ) changelog
2
+
3
+ ##### ` v2.0.0-alpha.3 `
4
+ - refactor: Colors
5
+ - refactor: FullAside - ListGroup (deprecate callout)
6
+ - refactor: Full* containers minor fixes
7
+ - refactor: Dropdowns minor fixes
2
8
3
9
##### ` v2.0.0-alpha.2 `
4
10
- refactor: FullHeader ` <AppHeaderDropdown direction="down"> ` (required prop ` direction ` )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " CoreUI-React" ,
3
- "version" : " 2.0.0-alpha.2 " ,
3
+ "version" : " 2.0.0-alpha.3 " ,
4
4
"description" : " CoreUI React Open Source Bootstrap 4 Admin Template" ,
5
5
"author" : " Łukasz Holeczek" ,
6
6
"homepage" : " http://coreui.io" ,
12
12
"url" :
" [email protected] :mrholek/CoreUI-React.git"
13
13
},
14
14
"dependencies" : {
15
- "@coreui/styles" : " next" ,
16
- "@coreui/react" : " next" ,
15
+ "@coreui/coreui" : " ^2.0.0-beta.5" ,
16
+ "@coreui/react" : " ^2.0.0-alpha.5" ,
17
+ "babel-jest" : " ^22.4.3" ,
17
18
"bootstrap" : " 4.0.0" ,
18
19
"chart.js" : " ^2.7.2" ,
19
20
"classnames" : " ^2.2.3" ,
Original file line number Diff line number Diff line change @@ -38,15 +38,7 @@ class Full extends Component {
38
38
< AppSidebarMinimizer />
39
39
</ AppSidebar >
40
40
< main className = "main" >
41
- < AppBreadcrumb appRoutes = { routes } >
42
- < li class = "breadcrumb-menu d-md-down-none" >
43
- < div class = "btn-group" role = "group" aria-label = "Button group with nested dropdown" >
44
- < a class = "btn" href = "#" > < i class = "icon-speech" > </ i > </ a >
45
- < a class = "btn" href = "/dashboard" > < i class = "icon-graph" > </ i > Dashboard</ a >
46
- < a class = "btn" href = "#" > < i class = "icon-settings" > </ i > Settings</ a >
47
- </ div >
48
- </ li >
49
- </ AppBreadcrumb >
41
+ < AppBreadcrumb appRoutes = { routes } />
50
42
< Container fluid >
51
43
< Switch >
52
44
{ routes . map ( ( route , idx ) => {
@@ -60,11 +52,11 @@ class Full extends Component {
60
52
</ Switch >
61
53
</ Container >
62
54
</ main >
63
- < AppAside fixed hidden display = "lg" >
55
+ < AppAside fixed hidden >
64
56
< FullAside />
65
57
</ AppAside >
66
58
</ div >
67
- < AppFooter fixed >
59
+ < AppFooter >
68
60
< FullFooter />
69
61
</ AppFooter >
70
62
</ div >
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ const defaultProps = {};
10
10
class FullFooter extends Component {
11
11
render ( ) {
12
12
13
+ // eslint-disable-next-line
13
14
const { children, ...attributes } = this . props ;
14
15
15
16
return (
@@ -24,4 +25,4 @@ class FullFooter extends Component {
24
25
FullFooter . propTypes = propTypes ;
25
26
FullFooter . defaultProps = defaultProps ;
26
27
27
- export default FullFooter ;
28
+ export default FullFooter ;
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ const defaultProps = {};
13
13
class FullHeader extends Component {
14
14
render ( ) {
15
15
16
+ // eslint-disable-next-line
16
17
const { children, ...attributes } = this . props ;
17
18
18
19
return (
@@ -67,7 +68,7 @@ class FullHeader extends Component {
67
68
</ AppHeaderDropdown >
68
69
</ Nav >
69
70
< AppAsideToggler className = "d-md-down-none" />
70
- < AppAsideToggler className = "d-lg-none" mobile />
71
+ { /* <AppAsideToggler className="d-lg-none" mobile />*/ }
71
72
</ React . Fragment >
72
73
) ;
73
74
}
You can’t perform that action at this time.
0 commit comments