1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-30 13:04:27 +03:00
tabby/terminus-settings
2021-06-22 11:51:19 +02:00
..
src fixes 2021-06-20 17:14:31 +02:00
.gitignore done 2017-04-11 22:45:59 +02:00
package.json bumped plugins 2021-06-22 11:51:19 +02: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.1 to 1.8.3 in /terminus-settings 2021-06-04 04:26:58 +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 },
    ...
  ]
})