forked from graphql/graphiql
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: editor tabs by @harshithpabbati, doc explorer as plugin
Co-Authored By: Harshith Pabbati <[email protected]>
- Loading branch information
Showing
57 changed files
with
350 additions
and
2,083 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
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 was deleted.
Oops, something went wrong.
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,11 +1,11 @@ | ||
import { configure, addDecorator } from '@storybook/react'; | ||
import React from 'react'; | ||
import requireContext from 'require-context.macro'; | ||
import ThemeProvider from '../src/new-components/themes/provider'; | ||
import ThemeProvider from '../src/components/common/themes/provider'; | ||
|
||
addDecorator(story => <ThemeProvider>{story()}</ThemeProvider>); | ||
|
||
configure( | ||
requireContext('../src/new-components', true, /\.stories\.tsx$/), | ||
requireContext('../src/components/common', true, /\.stories\.tsx$/), | ||
module, | ||
); |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export * from './useOperation'; | ||
export * from './useQueryFacts'; | ||
export * from './useSchema'; | ||
export * from './useValueRef'; |
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,5 @@ | ||
export * from './providers/GraphiQLEditorsProvider'; | ||
export * from './providers/GraphiQLSessionProvider'; | ||
export * from './providers/GraphiQLSchemaProvider'; | ||
export * from './hooks'; | ||
export * from './types'; |
Oops, something went wrong.