Skip to content

Commit a287b30

Browse files
committed
fix: temporary add dependency to git @coreui/react
1 parent 09a02cc commit a287b30

File tree

4 files changed

+4
-45
lines changed

4 files changed

+4
-45
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"url": "[email protected]:mrholek/CoreUI-React.git"
1313
},
1414
"dependencies": {
15-
"@coreui/styles": "git://github.com/coreui/styles.git",
16-
"@coreui/react-dev": "git://github.com/coreui/react.git",
15+
"@coreui/styles": "next",
16+
"@coreui/react": "git://github.com/coreui/react.git",
1717
"bootstrap": "4.0.0",
1818
"chart.js": "2.7.2",
1919
"classnames": "^2.2.3",

src/containers/Full/Full.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
AppSidebarHeader,
1414
AppSidebarMinimizer,
1515
AppSidebarNav,
16-
} from '@coreui/react-dev';
16+
} from '@coreui/react';
1717
// sidebar nav config
1818
import navigation from '../../_nav';
1919
// routes config

src/containers/Full/FullHeader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { Component } from 'react';
22
import { Badge, DropdownItem, DropdownMenu, DropdownToggle, Nav, NavItem, NavLink } from 'reactstrap';
33
import PropTypes from 'prop-types';
44

5-
import { AppAsideToggler, AppHeaderDropdown, AppNavbarBrand, AppSidebarToggler } from '@coreui/react-dev';
5+
import { AppAsideToggler, AppHeaderDropdown, AppNavbarBrand, AppSidebarToggler } from '@coreui/react';
66

77
const propTypes = {
88
children: PropTypes.node,

src/scss/style.css

Lines changed: 0 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
@charset "UTF-8";
2-
/*!
3-
* CoreUI - Open Source Dashboard UI Kit
4-
* @version v2.0.0-alpha.2
5-
* @link https://coreui.io
6-
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
7-
* Licensed under MIT (https://coreui.io/license)
8-
*/
91
/*!
102
* Bootstrap v4.0.0 (https://getbootstrap.com)
113
* Copyright 2011-2018 The Bootstrap Authors
@@ -7011,39 +7003,6 @@ button {
70117003
base-chart.chart {
70127004
display: block; }
70137005

7014-
canvas {
7015-
user-select: none; }
7016-
7017-
.chartjs-tooltip {
7018-
position: absolute;
7019-
z-index: 1021;
7020-
display: flex;
7021-
flex-direction: column;
7022-
padding: 0.25rem 0.5rem;
7023-
color: #fff;
7024-
pointer-events: none;
7025-
background: rgba(0, 0, 0, 0.7);
7026-
border-radius: 0.25rem;
7027-
opacity: 0;
7028-
transition: all .1s ease;
7029-
transform: translate(-50%, 0); }
7030-
.chartjs-tooltip .tooltip-header {
7031-
margin-bottom: 0.5rem; }
7032-
.chartjs-tooltip .tooltip-header-item {
7033-
font-size: 0.76563rem;
7034-
font-weight: 700; }
7035-
.chartjs-tooltip .tooltip-body-item {
7036-
display: flex;
7037-
align-items: center;
7038-
font-size: 0.76563rem;
7039-
white-space: nowrap; }
7040-
7041-
.chartjs-tooltip-key {
7042-
display: inline-block;
7043-
width: 0.875rem;
7044-
height: 0.875rem;
7045-
margin-right: 0.875rem; }
7046-
70477006
.dropdown-item {
70487007
position: relative;
70497008
padding: 10px 20px;

0 commit comments

Comments
 (0)