@iconsolutions/htm

Getting Started

To begin using the library simply run npm i @iconsolutions/htm in whatever angular app you need to use the library in.

You will need to add the following to the app routing module:

{
    path: 'htm',
    loadChildren: () =>
    import('@iconsolutions/htm').then((m) => m.HtmModule)
}

You will also need to import the HtmToolsModule in your app.module.ts.

@NgModule({
    declarations: [AppComponent],
    imports: [
        BrowserModule,
        BrowserAnimationsModule,
        CommonModule,
        AppRoutingModule,
        HtmToolsModule
    ]
})

Dependencies

Peer Dependencies

Icon Solutions

Icons own library for use of commonly used components.

  • "@iconsolutions/common"

Customising the HTM Operational Dashboard Module

To customise the HTM Operational Dashboard module see the relevant ops-gui-module docs.