1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-23 05:03:36 +03:00
tabby/terminus-settings
Eugene c9c42c8a22
Merge pull request #3943 from Eugeny/dependabot/npm_and_yarn/terminus-settings/utils-decorators-1.8.3
Bump utils-decorators from 1.8.1 to 1.8.3 in /terminus-settings
2021-06-05 19:30:55 +02:00
..
src allow config encryption 2021-06-05 19:13:22 +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.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 },
    ...
  ]
})