1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-30 02:54:04 +03:00
tabby/tabby-settings
2021-12-08 20:58:13 +01:00
..
src profile settings: allow filtering by description - fixes #5022 2021-12-08 20:58:13 +01:00
package.json bumped plugins 2021-12-06 09:19:32 +01:00
README.md bundle the clickable-links plugin with Tabby 2021-12-08 19:54:26 +01:00
tsconfig.json project rename 2021-06-29 23:57:04 +02:00
tsconfig.typings.json project rename 2021-06-29 23:57:04 +02:00
webpack.config.js project rename 2021-06-29 23:57:04 +02:00
yarn.lock pull utils-decorators dep up 2021-09-24 23:59:34 +02:00

Tabby Settings Plugin

  • tabbed settings interface

Using the API:

import { SettingsTabProvider } from 'tabby-settings'

Exporting your subclasses:

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