mirror of
https://github.com/Eugeny/tabby.git
synced 2025-07-20 02:18:01 +00:00
plugin version bump
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tabby-web-demo",
|
||||
"version": "1.0.147-nightly.4",
|
||||
"version": "1.0.147",
|
||||
"main": "dist/index.js",
|
||||
"typings": "dist/index.d.ts",
|
||||
"scripts": {
|
||||
|
@@ -1,15 +1,13 @@
|
||||
import { Injectable } from '@angular/core'
|
||||
import { ProfileProvider, NewTabParameters, Profile } from 'tabby-core'
|
||||
// import { SerialProfileSettingsComponent } from './components/serialProfileSettings.component'
|
||||
import { ProfileProvider, NewTabParameters, Profile, PartialProfile } from 'tabby-core'
|
||||
import { DemoTerminalTabComponent } from './components/terminalTab.component'
|
||||
|
||||
@Injectable({ providedIn: 'root' })
|
||||
export class DemoProfilesService extends ProfileProvider {
|
||||
export class DemoProfilesService extends ProfileProvider<Profile> {
|
||||
id = 'demo'
|
||||
name = 'Demo'
|
||||
// settingsComponent = SerialProfileSettingsComponent
|
||||
|
||||
async getBuiltinProfiles (): Promise<Profile[]> {
|
||||
async getBuiltinProfiles (): Promise<PartialProfile<Profile>[]> {
|
||||
return [
|
||||
{
|
||||
id: 'demo',
|
||||
|
Reference in New Issue
Block a user