tabby/terminus-settings
Eugene Pankov bc7a537c4c
lint
2020-12-27 21:03:12 +01:00
..
src lint 2020-12-27 21:03:12 +01:00
.gitignore done 2017-04-11 22:45:59 +02:00
package.json electron 11 cleanup 2020-12-24 14:03:14 +01:00
README.md autogen docs 2019-03-07 18:04:03 +01:00
tsconfig.json refactoring, build fix 2019-06-06 13:45:15 +02:00
tsconfig.typings.json refactoring, build fix 2019-06-06 13:45:15 +02:00
webpack.config.js use more performant sourcemap mode - fixes #2617 2020-07-27 16:12:16 +02:00
yarn.lock . 2019-09-23 10:37:11 +02:00

Terminus Settings Plugin

  • tabbed settings interface

Using the API:

import { SettingsTabProvider } from 'terminus-settings'

Exporting your subclasses:

@NgModule({
  ...
  providers: [
    ...
    { provide: SettingsTabProvider, useClass: MySettingsTab, multi: true },
    ...
  ]
})