1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-20 01:18:39 +03:00
tabby/tabby-core
dependabot[bot] 397825a32c Bump mixpanel from 0.13.0 to 0.17.0 in /tabby-core
Bumps [mixpanel](https://github.com/mixpanel/mixpanel-node) from 0.13.0 to 0.17.0.
- [Release notes](https://github.com/mixpanel/mixpanel-node/releases)
- [Changelog](https://github.com/mixpanel/mixpanel-node/blob/master/history.md)
- [Commits](https://github.com/mixpanel/mixpanel-node/compare/v0.13.0...v0.17.0)

---
updated-dependencies:
- dependency-name: mixpanel
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-03 18:51:50 +02:00
..
src make Platform.exec async 2022-09-27 23:07:26 +02:00
package.json Bump mixpanel from 0.13.0 to 0.17.0 in /tabby-core 2022-10-03 18:51:50 +02: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 mixpanel from 0.13.0 to 0.17.0 in /tabby-core 2022-10-03 18:51:50 +02:00

Tabby Core Plugin

See also:

This module provides:

  • tabbed interface services
  • toolbar UI
  • config file management
  • hotkeys
  • tab recovery
  • logging
  • theming

Using the API:

import { AppService, TabContextMenuItemProvider } from 'tabby-core'

Exporting your subclasses:

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