There was an error while loading. Please reload this page.
TBD...
If you want use @angular/cli to bootstrap your application, you'll need to make sure to do the following to ensure maximum compatibility with HelixUI.
@angular/cli
node_modules/helix-ui/
src/assets/helix-ui/
node_modules/@webcomponents/webcomponentsjs/
src/assets/webcomponentsjs/
src/index.html
<link>
<scripts>
src/assets/helix-ui
src/assets/webcomponentsjs
CUSTOM_ELEMENTS_SCHEMA
src/app/app.module.ts
/* * src/app/app.module.ts */ import { BrowserModule } from '@angular/platform-browser'; import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule ], providers: [], bootstrap: [AppComponent], schemas: [ CUSTOM_ELEMENTS_SCHEMA ] }) export class AppModule { }