5.1.93 • Published 5 years ago

onap-ui-angular-test v5.1.93

Weekly downloads
3
License
MIT
Repository
-
Last release
5 years ago

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: 1. onap-ui-common - contains HTML and SCSS files for all components 2. onap-ui-angular - contains Angular components according to the HTML defined in onap-ui-common 3. 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: 1. onap-ui-angular or onap-ui-react. 2. onap-ui-common

npm install --save-dev onap-ui-angular
npm 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:

@import "node_modules/onap-ui-common/lib/style.css";

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
<link rel="stylesheet" href="node_modules/onap-ui-common/lib/style.css">
As Module (Using loading tool, i.e. Webpack)
import 'onap-ui-common/lib/style.css';
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
  import { SdcUiComponentsModule, SdcUiComponents } from 'onap-ui-angular';

  @NgModule({
	declarations: [
	  AppComponent
	],
	imports: [
	  BrowserModule,
	  FormsModule,
	  HttpModule,
	  SdcUiComponentsModule
	],
	providers: [
		SdcUiComponents.ModalService
	],
	bootstrap: [AppComponent]
  })
  export class AppModule { }

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

Adding a new component

Deploying storybook to a fork's github pages

Understanding project build

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.
5.1.93

5 years ago

5.1.92

5 years ago

5.1.91

5 years ago

5.1.90

5 years ago

5.1.89

5 years ago

5.1.88

5 years ago

5.1.87

5 years ago

5.1.86

5 years ago

5.1.85

5 years ago

5.1.84

5 years ago

5.1.83

5 years ago

5.1.82

5 years ago

5.1.81

5 years ago

5.1.80

5 years ago

5.1.79

5 years ago

5.1.78

5 years ago

5.1.77

5 years ago

5.1.76

5 years ago

5.1.75

5 years ago

5.1.73

5 years ago

5.1.72

5 years ago

5.1.71

5 years ago

5.1.70

5 years ago

5.1.69

5 years ago

5.1.68

5 years ago

5.1.67

5 years ago

5.1.66

5 years ago

5.1.65

5 years ago

5.1.64

5 years ago

5.1.63

5 years ago

5.1.62

5 years ago

5.1.61

5 years ago

5.1.60

5 years ago

5.1.59

5 years ago

5.1.58

5 years ago

5.1.57

5 years ago

5.1.56

5 years ago

5.1.55

5 years ago

5.1.54

5 years ago

5.1.53

5 years ago

5.1.52

5 years ago

5.1.51

5 years ago

5.1.50

5 years ago

5.1.49

5 years ago

5.1.48

5 years ago

5.1.47

5 years ago

5.1.46

5 years ago

5.1.45

5 years ago

5.1.44

5 years ago

5.1.43

5 years ago

5.1.42

5 years ago

5.1.41

5 years ago

5.1.40

5 years ago

5.1.39

5 years ago

5.1.38

5 years ago

5.1.37

5 years ago

5.1.36

5 years ago

5.1.35

5 years ago

5.1.34

5 years ago