tabby/tabby-settings
2021-12-19 18:11:43 +01:00
..
src UI switch for --disable-gpu - #5131, #3499 2021-12-19 18:11:43 +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 },
    ...
  ]
})