phoenix-ui-components
TypeScript icon, indicating that this package has built-in type declarations

2.16.0 • Public • Published

Phoenix UI

Version Downloads

This library was generated with Angular CLI version 10.0.14.

To install the package for reusing components.

npm install phoenix-ui-components
# or
yarn add phoenix-ui-components

Setup

You can see phoenix-app as a reference app that uses this package.

Since the components use some icons and images, you will need to copy these assets to your application. Download these assets from ./src/assets and put them in the src/assets directory of your application. All assets should be served through /assets.

Once you have the assets set up, import the PhoenixUIModule and BrowserAnimationsModule in your NgModule.

import { PhoenixUIModule } from 'phoenix-ui-components';

@NgModule({
  imports: [
    ...
    BrowserAnimationsModule,
    PhoenixUIModule,
    ...
  ],
  ...
})
export class MyModule {}

Styling

Since some Phoenix components use Bootstrap, you will need to add the the Bootstrap stylesheet in the src/index.html file of your app.

<head>
  ...

  <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" />
</head>

For theming of components, you will also need to import some global styles into your app.
It can be done by importing the theming file into your app's global styles (styles.scss).

styles.scss

@import 'phoenix-ui-components/theming';

...

Usage

With everything set up, you can use the Phoenix components in your module component(s).

component.html

<app-nav></app-nav>
<app-ui-menu></app-ui-menu>
<!-- Be sure to replace the experiment information (`logo`, `url` and `tagline`). -->
<app-experiment-info logo="assets/images/sample.svg" url="https://home.cern/science/experiments/sample" tagline="SAMPLE Experiment at CERN"></app-experiment-info>
<app-phoenix-menu [rootNode]="phoenixMenuRoot"></app-phoenix-menu>
<div id="eventDisplay"></div>

component.ts

@Component({
  selector: 'app-test',
  templateUrl: './component.html',
  styleUrls: ['./component.scss'],
})
export class TestComponent {
  phoenixMenuRoot = new PhoenixMenuNode('Phoenix Menu', 'phoenix-menu');
}

Readme

Keywords

none

Package Sidebar

Install

npm i phoenix-ui-components

Weekly Downloads

4

Version

2.16.0

License

Apache-2.0

Unpacked Size

1.43 MB

Total Files

128

Last publish

Collaborators

  • 9inpachi
  • edwardmoyse