tabby/tabby-settings
qyecst 1579356d54
Update settingsTabBody.component.ts
increase the value of max-width to avoid shadowing the font size in the Settings (Settings - Appearance - Font).
2023-06-24 03:27:37 +08:00
..
src Update settingsTabBody.component.ts 2023-06-24 03:27:37 +08:00
package.json Bump ngx-infinite-scroll from 15.0.0 to 16.0.0 in /tabby-settings 2023-05-16 04:59:48 +00: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.mjs bootstrap 5 WIP (#7891) 2023-02-26 20:42:31 +01:00
yarn.lock Bump ngx-infinite-scroll from 15.0.0 to 16.0.0 in /tabby-settings 2023-05-16 04:59:48 +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 },
    ...
  ]
})