-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Showing
10 changed files
with
70 additions
and
124 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
'graphiql': patch | ||
'@graphiql/react': patch | ||
--- | ||
|
||
Allow Codemirror 5 `keyMap` to be defined, default `vim` or `emacs` allowed in addition to the original default of `sublime`. |
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
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
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,53 +1,29 @@ | ||
import { onHasCompletion } from './completion'; | ||
import { ImagePreview } from './components'; | ||
import { | ||
export { onHasCompletion } from './completion'; | ||
export { ImagePreview } from './components'; | ||
export { | ||
EditorContext, | ||
EditorContextProvider, | ||
useEditorContext, | ||
} from './context'; | ||
import { useHeaderEditor } from './header-editor'; | ||
import { | ||
export { useHeaderEditor } from './header-editor'; | ||
export { | ||
useAutoCompleteLeafs, | ||
useCopyQuery, | ||
useMergeQuery, | ||
usePrettifyEditors, | ||
} from './hooks'; | ||
import { useQueryEditor } from './query-editor'; | ||
import { useResponseEditor } from './response-editor'; | ||
import { useVariableEditor } from './variable-editor'; | ||
export { useQueryEditor } from './query-editor'; | ||
export { useResponseEditor } from './response-editor'; | ||
export { useVariableEditor } from './variable-editor'; | ||
|
||
import type { EditorContextType } from './context'; | ||
import type { UseHeaderEditorArgs } from './header-editor'; | ||
import type { UseQueryEditorArgs } from './query-editor'; | ||
import type { | ||
export type { EditorContextType } from './context'; | ||
export type { UseHeaderEditorArgs } from './header-editor'; | ||
export type { UseQueryEditorArgs } from './query-editor'; | ||
export type { | ||
ResponseTooltipType, | ||
UseResponseEditorArgs, | ||
} from './response-editor'; | ||
import type { TabsState } from './tabs'; | ||
import type { UseVariableEditorArgs } from './variable-editor'; | ||
export type { TabsState } from './tabs'; | ||
export type { UseVariableEditorArgs } from './variable-editor'; | ||
|
||
export { | ||
onHasCompletion, | ||
ImagePreview, | ||
EditorContext, | ||
EditorContextProvider, | ||
useAutoCompleteLeafs, | ||
useCopyQuery, | ||
useEditorContext, | ||
useHeaderEditor, | ||
useMergeQuery, | ||
usePrettifyEditors, | ||
useQueryEditor, | ||
useResponseEditor, | ||
useVariableEditor, | ||
}; | ||
|
||
export type { | ||
EditorContextType, | ||
ResponseTooltipType, | ||
TabsState, | ||
UseHeaderEditorArgs, | ||
UseQueryEditorArgs, | ||
UseResponseEditorArgs, | ||
UseVariableEditorArgs, | ||
}; | ||
export type { KeyMap } from './types'; |
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
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
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
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
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
Oops, something went wrong.