Socket
Socket
Sign inDemoInstall

blk-design-system-react

Package Overview
Dependencies
18
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    blk-design-system-react

React version of BLK Design System by Creative Tim


Version published
Weekly downloads
8
decreased by-61.9%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

[1.1.0] 2020-04-10

Bug fixing

  • Github
    • https://github.com/creativetimofficial/blk-design-system-react/issues/8
    • https://github.com/creativetimofficial/blk-design-system-react/issues/7
    • https://github.com/creativetimofficial/blk-design-system-react/issues/5
    • https://github.com/creativetimofficial/blk-design-system-react/issues/4
    • https://github.com/creativetimofficial/blk-design-system-react/issues/2
    • https://github.com/creativetimofficial/blk-design-system-react/issues/1

Major style changes

  • src/assets/scss/blk-design-system-react/react/plugins/_plugin-nouislider.scss

Deleted components

Added components

Deleted dependencies

Added dependencies

  • eslint-plugin-flowtype@3.13.0 (to stop terminal/cmd warnings)
  • typescript@3.8.3 (to stop terminal/cmd warnings)

Updated dependencies

chart.js             2.7.3   →     2.9.3
node-sass           4.11.0   →    4.13.1
nouislider          13.1.1   →    14.2.0
perfect-scrollbar    1.4.0   →     1.5.0
react               16.8.3   →   16.13.1
react-chartjs-2      2.7.4   →     2.9.0
react-dom           16.8.3   →   16.13.1
react-router-dom     4.3.1   →     5.1.2
react-scripts        2.1.5   →     3.4.1
reactstrap           7.1.0   →     8.4.1

Warning

The following warnings may appear when running the installation command, but they do not affect the UI or the functionality of the product:

npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142
npm WARN deprecated popper.js@1.16.1: Popper changed home, find its new releases at @popperjs/core
npm WARN deprecated core-js@2.6.11: core-js@<3 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3.

The folowing components make react throw errors for using life-cycle methods that will be dropped in React 17.x: react-datetime, react-bootstrap-switch. But the UI or functionality of the product is not affected. When we'll update the product to React 17.x, if the issue will persist, we'll drop support for these components and replace them with other ones that create the same or a similar UI. Also, the warnings are only present in the development, and not in production.

Warning: componentWillReceiveProps has been renamed, and is not recommended for use. See https://fb.me/react-unsafe-component-lifecycles for details.

* Move data fetching code or side effects to componentDidUpdate.
* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://fb.me/react-derived-state
* Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress this warning in non-strict mode. In React 17.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.

Please update the following components: DateTime, Switch

Readme

Source

Blk• Design System React Tweet

version license GitHub issues open GitHub issues closed Join the chat at https://gitter.im/NIT-dgp/General Chat

Product Presentation Image

Blk• Design System React is a responsive Bootstrap 4 kit, developed using React, Reactstrap and create-react-app, and it is provided for free by Creative Tim. It is a beautiful cross-platform UI kit featuring over 70 elements and 3 templates.

Blk• Design System React will help you create a clean and simple website that is a perfect fit for today's black design. It is built using the 12 column grid system, with components designed to fit together perfectly. It makes use of bold colours, beautiful typography, clear photography and spacious arrangements.

Complex Documentation

Each element is well presented in a very complex documentation. You can read more about the idea behind this design system here. You can check the components here and the foundation here.

Bootstrap 4 Support

Blk• Design System React is built on top of the much awaited Bootstrap 4 (Reactstrap). This makes starting a new project very simple. It also provides benefits if you are already working on a Bootstrap 4 or Reactstrap project; you can just import the Blk• Design System React style over it. Most of the elements have been redesigned; but if you are using an element we have not touched, it will fall back to the Bootstrap default.

Table of Contents

Versions

HTMLReact
BLK Design System  HTMLBLK Design System  React

Demo

ButtonsInputsNavbars
ButtonsInputsNavbar
Login PageLanding PageProfile Page
Register PageLanding PageProfile Page

View More

Quick start

Documentation

The documentation for the BLK Design System React is hosted at our website.

File Structure

Within the download you'll find the following directories and files:

Blk• Design System React
.
├── CHANGELOG.md
├── ISSUE_TEMPLATE.md
├── README.md
├── package.json
├── public
│   ├── favicon.ico
│   ├── index.html
│   └── manifest.json
└── src
    ├── index.js
    ├── variables
    │   └── charts.js
    ├── assets
    │   ├── css
    │   │   ├── blk-design-system-react.css
    │   │   ├── blk-design-system-react.css.map
    │   │   ├── blk-design-system-react.min.css
    │   │   └── nucleo-icons.css
    │   ├── demo
    │   │   └── demo.css
    │   ├── fonts
    │   │   ├── nucleo.eot
    │   │   ├── nucleo.ttf
    │   │   ├── nucleo.woff
    │   │   └── nucleo.woff2
    │   ├── img
    │   └── scss
    │       ├── blk-design-system-react
    │       │   ├── bootstrap
    │       │   │   ├── mixins
    │       │   │   └── utilities
    │       │   ├── custom
    │       │   │   ├── cards
    │       │   │   ├── mixins
    │       │   │   ├── sections
    │       │   │   ├── utilities
    │       │   │   └── vendor
    │       │   └── react
    │       │       └── react-differences.scss
    │       └── blk-design-system-react.scss
    ├── components
    │   ├── Footer
    │   │   └── Footer.js
    │   ├── Navbars
    │   │   ├── ComponentsNavbar.js
    │   │   └── ExamplesNavbar.js
    │   └── PageHeader
    │       └── PageHeader.js
    └── views
        ├── Index.js
        ├── IndexSections
        │   ├── Basics.js
        │   ├── Download.js
        │   ├── Examples.js
        │   ├── JavaScript.js
        │   ├── Navbars.js
        │   ├── Notifications.js
        │   ├── NucleoIcons.js
        │   ├── Pagination.js
        │   ├── Signup.js
        │   ├── Tabs.js
        │   └── Typography.js
        └── examples
            ├── LandingPage.js
            ├── ProfilePage.js
            └── RegisterPage.js

Browser Support

At present, we officially aim to support the last two versions of the following browsers:

Resources

HTMLReactVue
Black Dashboard  HTMLBlack Dashboard  ReactVue Black Dashboard

Reporting Issues

We use GitHub Issues as the official bug tracker for the BLK Design System. Here are some advices for our users that want to report an issue:

  1. Make sure that you are using the latest version of the BLK Design System. Check the CHANGELOG from your dashboard on our website.
  2. Providing us reproducible steps for the issue will shorten the time it takes for it to be fixed.
  3. Some issues may be browser specific, so specifying in what browser you encountered the issue might help.

Licensing

Social Media

Twitter: https://twitter.com/CreativeTim

Facebook: https://www.facebook.com/CreativeTim

Dribbble: https://dribbble.com/creativetim

Instagram: https://www.instagram.com/CreativeTimOfficial

Keywords

FAQs

Last updated on 10 Apr 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc