ONAP-UI-ANGULAR Style-Guide and Components
This project aims to create a unified UI styled components for multiple development teams who work on the same web-based applications. This repository contains the definition of all the basic widgets and reusable controllers.
Note: the project is build of 3 different projects:
- onap-ui-common - contains HTML and SCSS files for all components
- onap-ui-angular - contains Angular components according to the HTML defined in onap-ui-common
- onap-ui-react - contains React components according to the HTML defined in onap-ui-common
Usage
To start using this library you need to install 2 libraris:
- onap-ui-angular or onap-ui-react.
- onap-ui-common
npm install --save-dev onap-ui-angularnpm install --save-dev onap-ui-common
Link the library's CSS file
The main CSS file is defined in onap-ui-common library. There are several options to link it to your project:
Angular CLI projects
You can add this line to src/style.css file:
@;
Angular CLI project has angular.json file, that defines location of styles files. By default angular.json contains the following definition:
"styles": "src/styles.css"
So you can add to src/styles.css import of onap-ui-common styles.
HTML
Webpack)
As Module (Using loading tool, i.e.;
Importing SCSS typography files
onap-ui-common also contains to SCSS files: variables.scss mixins.scss
You can import these files to your project and get the same color scheme and variables line onap-ui-common.
Using the library in latest Angular (6)
Add the library to your module
; @
Running storybook
The components in this library are displayed via storybook. Head to http://onap-sdc.github.io/onap-ui-angular to see the components that are in master
.
While developing, just run npm run storybook
in your terminal to launch a local storybook server where you can see your changes. For deploying storybook to your own fork repository, refer to the guides section below.
Useful guides
Deploying storybook to a fork's github pages
Having some trouble? Have an issue?
For bugs and issues, please use the issues page
How to Contribute
Contribution can be made only by following these guide lines
- This project combines both
React
&Angular
framework libraries. Hence, every change in the basic HTML files structure, must be followed by changes on react and angular projects (onap-ui-angular, onap-ui-react). - There will be no any 3rd party UI framework imported (i.e.
Bootstrap
,Material
,Foundation
... etc.). - Contribution are done only by the contribution guide. Contributions submitted not in this format and guidelines will not be considered.