How to use material-community-components - 5 common examples

To help you get started, we’ve selected a few material-community-components examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github babsey / nest-desktop / src / app / app.module.ts View on Github external
// NoopAnimationsModule,
    AppRoutingModule,
    BrowserAnimationsModule,
    BrowserModule,
    ConfigModule,
    FontAwesomeModule,
    HelpModule,
    MaterialModule,
    ModelModule,
    NavigationModule,
    NestServerModule,
    NetworkModule,
    SimulationModule,
    SimulationNavigationModule,
    VisualizationModule,
    MccColorPickerModule.forRoot({
      used_colors: []
    }),
  ],
  bootstrap: [AppComponent]
})
export class AppModule {
  constructor(
    private library: FaIconLibrary,
  ) {
    library.addIconPacks(fas);
  }
}
github babsey / nest-desktop / src / app / view / view.module.ts View on Github external
TreeViewComponent,
  ],
  exports: [
    NodesViewComponent,
    LinksViewComponent,
    TreeViewComponent,
  ],
  imports: [
    AppFormsModule,
    AppNodeModule,
    AppPipesModule,
    CommonModule,
    FontAwesomeModule,
    FormsModule,
    MaterialModule,
    MccColorPickerModule.forRoot({
      used_colors: []
    }),
  ]
})
export class ViewModule { }
github babsey / nest-desktop / src / app / network / network.module.ts View on Github external
NodeMenuComponent,
    NodeParamComponent,
    NodeSelectionComponent,
    NodeShapeComponent,
    NodeSketchComponent,
    NodeSpatialComponent,
    NodeToolbarComponent,
  ],
  imports: [
    AppFormsModule,
    AppPipesModule,
    CommonModule,
    FontAwesomeModule,
    FormsModule,
    MaterialModule,
    MccColorPickerModule.forRoot({
      used_colors: []
    }),
    ModelModule,
    PlotlyModule,
  ],
  providers: [
    NetworkSketchService,
  ],
})
export class NetworkModule { }
github babsey / nest-desktop / src / app / config / config.module.ts View on Github external
ConfigComponent,
    ConfigListComponent,
  ],
  imports: [
    AppPipesModule,
    AppRoutingModule,
    CommonModule,
    FontAwesomeModule,
    FormsModule,
    MaterialModule,
    ModelModule,
    NestServerModule,
    NetworkModule,
    SimulationModule,
    VisualizationModule,
    MccColorPickerModule.forRoot({
      used_colors: []
    }),
    ReactiveFormsModule,
  ],
  providers: [
    AppConfigService,
  ]
})
export class ConfigModule { }
github babsey / nest-desktop / src / app / controller / controller.module.ts View on Github external
ControllerSheetComponent,
    KernelControllerComponent,
    LinkControllerComponent,
    NodeControllerComponent,
    SimulationControllerComponent,
  ],
  imports: [
    AppFormsModule,
    AppNodeModule,
    AppPipesModule,
    CommonModule,
    FontAwesomeModule,
    FormsModule,
    MaterialModule,
    SketchModule,
    MccColorPickerModule.forRoot({
      used_colors: []
    }),
  ],
  providers: [
    ControllerService,
  ],
  entryComponents: [
    ControllerSheetComponent,
  ]
})
export class ControllerModule { }

material-community-components

Angular Material components that are not implemented in official package.

MIT
Latest version published 2 years ago

Package Health Score

53 / 100
Full package analysis

Popular material-community-components functions