-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f167d0d
commit ff1c421
Showing
7 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
assets/js/src/modules/editor-tab-manager/interface/IAssetEditorTabManager.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import {IAssetEditorTab} from "@Pimcore/modules/editor-tab-manager/interface/types/IAssetEditorTab"; | ||
import {IEditorTabManager} from "@Pimcore/modules/editor-tab-manager/interface/IEditorTabManager"; | ||
import { type IAssetEditorTab } from '@Pimcore/modules/editor-tab-manager/interface/types/IAssetEditorTab' | ||
import { type IEditorTabManager } from '@Pimcore/modules/editor-tab-manager/interface/IEditorTabManager' | ||
|
||
export interface IAssetEditorTabManager extends IEditorTabManager { | ||
tabs: IAssetEditorTab[] | ||
getTabs(): IAssetEditorTab[] | ||
getTab(key: string): IAssetEditorTab | undefined | ||
register(tab: IAssetEditorTab): void | ||
tabs: IAssetEditorTab[] | ||
getTabs: () => IAssetEditorTab[] | ||
getTab: (key: string) => IAssetEditorTab | undefined | ||
register: (tab: IAssetEditorTab) => void | ||
} |
10 changes: 5 additions & 5 deletions
10
assets/js/src/modules/editor-tab-manager/interface/IEditorTab.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import type React from "react"; | ||
import type React from 'react' | ||
|
||
export interface IEditorTab { | ||
key: string | ||
label: string | ||
children: React.JSX.Element | ||
icon: React.JSX.Element | ||
key: string | ||
label: string | ||
children: React.JSX.Element | ||
icon: React.JSX.Element | ||
} |
6 changes: 3 additions & 3 deletions
6
assets/js/src/modules/editor-tab-manager/interface/IEditorTabManager.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import {IEditorTab} from "@Pimcore/modules/editor-tab-manager/interface/IEditorTab"; | ||
import { type IEditorTab } from '@Pimcore/modules/editor-tab-manager/interface/IEditorTab' | ||
|
||
export interface IEditorTabManager { | ||
type: string | ||
tabs: IEditorTab[] | ||
type: string | ||
tabs: IEditorTab[] | ||
} |
2 changes: 1 addition & 1 deletion
2
assets/js/src/modules/editor-tab-manager/interface/types/IAssetEditorTab.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import {IEditorTab} from "@Pimcore/modules/editor-tab-manager/interface/IEditorTab"; | ||
import { type IEditorTab } from '@Pimcore/modules/editor-tab-manager/interface/IEditorTab' | ||
|
||
export interface IAssetEditorTab extends IEditorTab {} |
2 changes: 1 addition & 1 deletion
2
assets/js/src/modules/editor-tab-manager/interface/types/IDocumentEditorTab.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import {IEditorTab} from "@Pimcore/modules/editor-tab-manager/interface/IEditorTab"; | ||
import { type IEditorTab } from '@Pimcore/modules/editor-tab-manager/interface/IEditorTab' | ||
|
||
export interface IDocumentEditorTab extends IEditorTab {} |
2 changes: 1 addition & 1 deletion
2
assets/js/src/modules/editor-tab-manager/interface/types/IObjectEditorTab.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import {IEditorTab} from "@Pimcore/modules/editor-tab-manager/interface/IEditorTab"; | ||
import { type IEditorTab } from '@Pimcore/modules/editor-tab-manager/interface/IEditorTab' | ||
|
||
export interface IObjectEditorTab extends IEditorTab {} |