1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-11 04:43:03 +03:00
tabby/tabby-settings
dependabot[bot] 6813fd54cd
build(deps-dev): bump marked and @types/marked in /tabby-settings
Bumps [marked](https://github.com/markedjs/marked) and [@types/marked](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/marked). These dependencies needed to be updated together.

Updates `marked` from 4.2.12 to 5.1.2
- [Release notes](https://github.com/markedjs/marked/releases)
- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json)
- [Commits](https://github.com/markedjs/marked/compare/v4.2.12...v5.1.2)

Updates `@types/marked` from 4.0.8 to 5.0.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/marked)

---
updated-dependencies:
- dependency-name: marked
  dependency-type: direct:development
  update-type: version-update:semver-major
- dependency-name: "@types/marked"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-07-26 04:33:20 +00:00
..
src feat(settings): Eugeny/tabby#8680 configurable priotity on quick connect profile selector option 2023-07-18 14:10:31 +02:00
package.json build(deps-dev): bump marked and @types/marked in /tabby-settings 2023-07-26 04:33:20 +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 build(deps-dev): bump marked and @types/marked in /tabby-settings 2023-07-26 04:33:20 +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 },
    ...
  ]
})