@sq-ui/ng-sq-common
Simple Quality UI kit for Angular
built by developers for developers!
Docs
You will find a description of the public API for each component.
The components are grouped by modules. Any properties you can see through code inspection that are left out from this documentation are for internal use and you should not rely on them.
Any types of public interfaces and services are also included.
Installation
npm i @sq-ui/ng-sq-common --save
-- or --
yarn add @sq-ui/ng-sq-common
Usage
Import the NgSqUiModule in your module:
import { NgSqCommonModule } from '@sq-ui/ng-sq-common';
and then include it in the imports
array of your @NgModule() decorator:
@NgModule({
declarations: [ //... ],
imports: [
NgSqCommonModule,
//...
],
//...
ng-sq-ui does not come with a specific font. Including the default theme is also optional. Refer to our Live examples page.
Add styles to angular.json
"styles": [
"src/styles.css",
"./node_modules/@fortawesome/fontawesome-free/css/fontawesome.min.css",
"./node_modules/@fortawesome/fontawesome-free/css/solid.min.css",
"./node_modules/@fortawesome/fontawesome-free/css/regular.min.css",
],
Apply styling to the components
To use our styling just add the class="sq"
on a parent element.
<body class="sq">
<sq-paginator ...></sq-paginator>
</body>
Support
- Use NG-SQ-UI in your daily work.
- Star it if you like.
- Join slack chat to help solve problems.
- Follow us on twitter to get latest updates.