tabby/tabby-settings
2023-01-23 23:39:59 +01:00
..
src fix Eugeny/tabby#7254 - config sync replace ngModelChange by key down enter 2023-01-23 23:39:59 +01:00
package.json new tabby-web release 2022-11-07 22:57:40 +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 Bump marked from 4.0.10 to 4.0.12 in /tabby-settings 2022-02-01 04:16:28 +00: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 },
    ...
  ]
})