1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-20 09:27:16 +03:00
tabby/terminus-settings
Eugene Pankov 871b06c19d
lint
2021-05-28 20:08:27 +02:00
..
src lint 2021-05-28 20:08:27 +02:00
.gitignore done 2017-04-11 22:45:59 +02:00
package.json bumped plugins 2021-03-10 20:51:50 +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 cleanup webpack configs 2021-02-13 12:11:38 +01:00
yarn.lock Bump utils-decorators from 1.8.0 to 1.8.1 in /terminus-settings 2021-02-24 04:17:51 +00: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 },
    ...
  ]
})