Giter VIP home page Giter VIP logo

blk-design-system-angular's Introduction

Blk• Design System Angular 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 Angular is a responsive Bootstrap 4 kit, developed using Angular 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 Angular 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 Angular is built on top of the much awaited Bootstrap 4 and Angular. This makes starting a new project very simple. It also provides benefits if you are already working on a Bootstrap 4 or Angular project; you can just import the Blk• Design System Angular 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

HTML Angular React
BLK Design System  HTML BLK Design System  Angular BLK Design System  React

Demo

Buttons Inputs Navbars
Buttons Inputs Navbar
Register Page Landing Page Profile Page
Register Page Landing Page Profile Page

View More

Quick start

Documentation

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

File Structure

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

Blk• Design System Angular
├── CHANGELOG.md
├── ISSUE_TEMPLATE.md
├── LICENSE.md
├── README.md
├── angular.json
├── e2e
├── package-lock.json
├── package.json
├── src
│   ├── app
│   │   ├── app-routing.module.ts
│   │   ├── app.component.html
│   │   ├── app.component.scss
│   │   ├── app.component.spec.ts
│   │   ├── app.component.ts
│   │   ├── app.module.ts
│   │   └── pages
│   │       ├── examples
│   │       │   ├── landingpage
│   │       │   │   ├── landingpage.component.html
│   │       │   │   └── landingpage.component.ts
│   │       │   ├── profilepage
│   │       │   │   ├── profilepage.component.html
│   │       │   │   └── profilepage.component.ts
│   │       │   └── registerpage
│   │       │       ├── registerpage.component.html
│   │       │       └── registerpage.component.ts
│   │       ├── index
│   │       │   ├── index.component.html
│   │       │   └── index.component.ts
│   │       └── pages.module.ts
│   ├── assets
│   │   ├── css
│   │   │   └── nucleo-icons.css
│   │   ├── demo
│   │   ├── fonts
│   │   ├── img
│   │   └── scss
│   │       ├── blk-design-system
│   │       │   ├── angular
│   │       │   ├── bootstrap
│   │       │   └── custom
│   │       └── blk-design-system.scss
│   ├── browserslist
│   ├── environments
│   ├── favicon.ico
│   ├── index.html
│   ├── karma.conf.js
│   ├── main.ts
│   ├── polyfills.ts
│   ├── styles.scss
│   ├── test.ts
│   ├── tsconfig.app.json
│   ├── tsconfig.spec.json
│   └── tslint.json
├── tsconfig.json
└── tslint.json

Browser Support

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

Resources

HTML Angular Vue React
Black Dashboard  HTML Black Dashboard  Angular Vue Black Dashboard Black Dashboard React

Reporting Issues

We use GitHub Issues as the official bug tracker for the BLK Design System Angular. 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 Angular. 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

Useful Links

Social Media

Twitter: https://twitter.com/CreativeTim

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

Dribbble: https://dribbble.com/creativetim

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

blk-design-system-angular's People

Contributors

chelaruc avatar marqbeniamin avatar rarestoma avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

blk-design-system-angular's Issues

[Bug] Failed to decode downloaded font for tim-icons - When deploying to App Engine Server

Version

v1.1.0

Reproduction link

https://celbux-frontend-ng.ew.r.appspot.com/home
(Open console to see errors)

Operating System

Windows 10

Device

Dell XPS 13

Browser & Version

Microsoft Edge 86.0.622.68 [Chromium]

Steps to reproduce

  1. Create and Build the BLK System that uses tim-icons

  2. Create an app.yaml next to the generated folder in dist

  3. gcloud app deploy to GCP project

  4. https://celbux-frontend-ng.ew.r.appspot.com/home
    (Open console to see errors)

APP.YAML CONTENTS

runtime: python27
api_version: 1
threadsafe: true
handlers:

  # Initial route that will serve up index.html, main entry point to your app
  - url: /
    secure: always
    static_files: celbux-frontend-ng/index.html
    upload: celbux-frontend-ng/.*

  # Routing for typedoc, assets and favicon.ico to serve directly
  - url: /((?:assets|docs)/.*|favicon\.ico)
    secure: always
    redirect_http_response_code: 301
    static_files: celbux-frontend-ng/\1
    upload: celbux-frontend-ng/.*

  # Routing for any js files
  - url: /(.*\.js)
    secure: always
    redirect_http_response_code: 301
    static_files: celbux-frontend-ng/\1
    upload: celbux-frontend-ng/.*\.js

  # Routing for any css files
  - url: /(.*\.css)
    secure: always
    redirect_http_response_code: 301
    static_files: celbux-frontend-ng/\1
    mime_type: text/css
    upload: celbux-frontend-ng/.*\.css

  # Routing for anything (wild card) after
  - url: /.*
    secure: always
    static_files: celbux-frontend-ng/index.html
    upload: celbux-frontend-ng/.*

What is expected?

I expect to see the tim-icons show up in my deployed web app

What is actually happening?

"Failed to decode downloaded font" displayed about x6 times


Solution

I have no solution for this issue.

Additional comments

I would like assistance to please help me get through this final hurdle.

image

[Bug] Blk and angular 10

Version

1.0.0

Reproduction link

https://jsfiddle.net/

Operating System

win10

Device

PC

Browser & Version

83.0.4103.116 chrome

Steps to reproduce

  1. create new angular app (10 version)
  2. npm i blk
  3. put scss files in angular.json
  4. watch errors

What is expected?

no error

What is actually happening?

ERROR in ./node_modules/blk-design-system-angular/src/assets/scss/blk-design-system.scss (./node_modules/css-loader/dist/cjs.js??ref--13-1!./node_modules/postcss-loader/src??embedded!./node_modules/resolve-url-loader??ref--13-3!./node_modules/sass-loader/dist/cjs.js??ref--13-4!./node_modules/blk-design-system-angular/src/assets/scss/blk-design-system.scss)
Module build failed (from ./node_modules/sass-loader/dist/cjs.js):
SassError: expected "{".

32 │ background-image: url($file-2x);
│ ^

node_modules\blk-design-system-angular\src\assets\scss\blk-design-system\bootstrap\mixins_image.scss 32:21 @import
node_modules\blk-design-system-angular\src\assets\scss\blk-design-system\bootstrap_mixins.scss 8:9 @import
D:\webs\x\demo-app\node_modules\blk-design-system-angular\src\assets\scss\blk-design-system.scss 26:9 root stylesheet


Solution

Additional comments

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.