├── .changeset ├── README.md └── config.json ├── .env ├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report_extension.md │ ├── bug_report_standalone.md │ └── feature_request.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .prettierignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── assets └── preview.gif ├── babel.config.js ├── cosmos.config.json ├── cosmos.override.js ├── jest.config.js ├── package.json ├── pnpm-lock.yaml ├── scripts ├── changelog.js ├── cli.js ├── cosmos-add-badge.js └── postinstall.js ├── src ├── assets │ ├── events │ │ ├── execution.svg │ │ ├── other.svg │ │ ├── teardown.svg │ │ └── update.svg │ ├── icon-128.png │ ├── icon-16.png │ ├── icon-256.png │ ├── icon-32.png │ ├── icon-48.png │ ├── icon-512.png │ ├── icon-64.png │ ├── icon-disabled-128.png │ ├── icon-disabled-256.png │ ├── icon-disabled-32.png │ ├── icon-disabled-512.png │ ├── icon-disabled-64.png │ └── icon.svg ├── electron │ └── main.ts ├── extension │ ├── background.ts │ ├── content_script.ts │ ├── devtools.html │ ├── devtools.ts │ └── manifest.json ├── panel │ ├── App.css │ ├── App.test.tsx │ ├── App.tsx │ ├── __image_snapshots__ │ │ ├── TimelineDuration - Alive │ │ └── TimelineDuration - Network │ ├── __snapshots__ │ │ └── App.test.tsx.snap │ ├── components │ │ ├── Background.tsx │ │ ├── CodeHighlight.fixture.tsx │ │ ├── CodeHighlight.tsx │ │ ├── Collapsible.tsx │ │ ├── IndicatorArrow.tsx │ │ ├── Navigation.fixture.tsx │ │ ├── Navigation.tsx │ │ ├── Pane.test.tsx │ │ ├── Pane.tsx │ │ ├── Portal.tsx │ │ ├── Tabs.test.tsx │ │ ├── Tabs.tsx │ │ ├── Toolbar.fixture.tsx │ │ ├── Toolbar.tsx │ │ ├── __snapshots__ │ │ │ ├── Pane.test.tsx.snap │ │ │ └── Tabs.test.tsx.snap │ │ └── index.ts │ ├── context │ │ ├── Devtools.test.tsx │ │ ├── Devtools.tsx │ │ ├── Explorer │ │ │ ├── Explorer.test.tsx │ │ │ ├── ast │ │ │ │ ├── index.test.tsx │ │ │ │ ├── index.ts │ │ │ │ └── variables.ts │ │ │ └── index.tsx │ │ ├── Request.test.tsx │ │ ├── Request.tsx │ │ ├── Timeline.tsx │ │ └── index.ts │ ├── cosmos.decorator.tsx │ ├── definitions.d.ts │ ├── hooks │ │ ├── index.ts │ │ └── useOrientationWatcher.ts │ ├── pages │ │ ├── disconnected │ │ │ ├── Disconnected.fixture.tsx │ │ │ ├── Disconnected.test.tsx │ │ │ ├── Disconnected.tsx │ │ │ ├── __snapshots__ │ │ │ │ └── Disconnected.test.tsx.snap │ │ │ └── index.ts │ │ ├── error │ │ │ ├── ErrorBoundary.fixture.tsx │ │ │ ├── ErrorBoundary.tsx │ │ │ └── index.ts │ │ ├── events │ │ │ ├── Timeline.fixture.tsx │ │ │ ├── Timeline.tsx │ │ │ ├── components │ │ │ │ ├── Settings.fixture.tsx │ │ │ │ ├── Settings.test.tsx │ │ │ │ ├── Settings.tsx │ │ │ │ ├── Tick.fixture.tsx │ │ │ │ ├── Tick.tsx │ │ │ │ ├── TimelineDuration.fixture.tsx │ │ │ │ ├── TimelineDuration.tsx │ │ │ │ ├── TimelineEvent.fixture.tsx │ │ │ │ ├── TimelineEvent.tsx │ │ │ │ ├── TimelinePane │ │ │ │ │ ├── TimelinePane.fixture.tsx │ │ │ │ │ ├── TimelinePane.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── TimelineRow.fixture.tsx │ │ │ │ ├── TimelineRow.test.tsx │ │ │ │ ├── TimelineRow.tsx │ │ │ │ ├── TimelineSourceIcon.fixture.tsx │ │ │ │ ├── TimelineSourceIcon.tsx │ │ │ │ ├── TimelineTooltip.fixture.tsx │ │ │ │ ├── TimelineTooltip.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── explorer │ │ │ ├── Explorer.fixture.tsx │ │ │ ├── Explorer.tsx │ │ │ ├── components │ │ │ │ ├── Arguments.fixture.tsx │ │ │ │ ├── Arguments.tsx │ │ │ │ ├── Icons.tsx │ │ │ │ ├── ListItem.tsx │ │ │ │ ├── NodeInfoPane.fixture.tsx │ │ │ │ ├── NodeInfoPane.tsx │ │ │ │ ├── Tree.tsx │ │ │ │ └── index.ts │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ └── useFlash.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── mismatch │ │ │ ├── Mismatch.fixture.tsx │ │ │ ├── Mismatch.tsx │ │ │ └── index.ts │ │ └── request │ │ │ ├── Request.fixture.tsx │ │ │ ├── Request.tsx │ │ │ ├── components │ │ │ ├── Collapsible.tsx │ │ │ ├── Fields.fixture.tsx │ │ │ ├── Fields.tsx │ │ │ ├── Query.tsx │ │ │ ├── Response.tsx │ │ │ ├── Schema.fixture.tsx │ │ │ ├── Schema.tsx │ │ │ ├── Search.fixture.tsx │ │ │ ├── Search.tsx │ │ │ ├── Settings.tsx │ │ │ ├── Stack.fixture.tsx │ │ │ ├── Stack.tsx │ │ │ ├── TopBar.tsx │ │ │ ├── Type.tsx │ │ │ └── index.ts │ │ │ └── index.ts │ ├── panel.html │ ├── panel.tsx │ ├── prism.ts │ ├── styled.d.ts │ ├── theme.ts │ ├── types │ │ ├── codemirror.d.ts │ │ └── styled-components.d.ts │ └── util │ │ ├── Connection.ts │ │ ├── EnvUtils.ts │ │ ├── ErrorOverlay.ts │ │ ├── index.ts │ │ └── openExternalUrl.ts ├── setupTests.ts ├── types │ ├── connections.ts │ └── index.ts └── util │ ├── EventTarget.ts │ ├── debug.ts │ └── index.ts ├── tsconfig.json └── webpack ├── webpack.electron.config.js └── webpack.extension.config.js /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/.env -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/.github/ISSUE_TEMPLATE/bug_report_extension.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_standalone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/.github/ISSUE_TEMPLATE/bug_report_standalone.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/.prettierignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/README.md -------------------------------------------------------------------------------- /assets/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/assets/preview.gif -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/babel.config.js -------------------------------------------------------------------------------- /cosmos.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/cosmos.config.json -------------------------------------------------------------------------------- /cosmos.override.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/cosmos.override.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/scripts/changelog.js -------------------------------------------------------------------------------- /scripts/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/scripts/cli.js -------------------------------------------------------------------------------- /scripts/cosmos-add-badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/scripts/cosmos-add-badge.js -------------------------------------------------------------------------------- /scripts/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/scripts/postinstall.js -------------------------------------------------------------------------------- /src/assets/events/execution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/events/execution.svg -------------------------------------------------------------------------------- /src/assets/events/other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/events/other.svg -------------------------------------------------------------------------------- /src/assets/events/teardown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/events/teardown.svg -------------------------------------------------------------------------------- /src/assets/events/update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/events/update.svg -------------------------------------------------------------------------------- /src/assets/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/icon-128.png -------------------------------------------------------------------------------- /src/assets/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/icon-16.png -------------------------------------------------------------------------------- /src/assets/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/icon-256.png -------------------------------------------------------------------------------- /src/assets/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/icon-32.png -------------------------------------------------------------------------------- /src/assets/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/icon-48.png -------------------------------------------------------------------------------- /src/assets/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/icon-512.png -------------------------------------------------------------------------------- /src/assets/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/icon-64.png -------------------------------------------------------------------------------- /src/assets/icon-disabled-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/icon-disabled-128.png -------------------------------------------------------------------------------- /src/assets/icon-disabled-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/icon-disabled-256.png -------------------------------------------------------------------------------- /src/assets/icon-disabled-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/icon-disabled-32.png -------------------------------------------------------------------------------- /src/assets/icon-disabled-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/icon-disabled-512.png -------------------------------------------------------------------------------- /src/assets/icon-disabled-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/icon-disabled-64.png -------------------------------------------------------------------------------- /src/assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/assets/icon.svg -------------------------------------------------------------------------------- /src/electron/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/electron/main.ts -------------------------------------------------------------------------------- /src/extension/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/extension/background.ts -------------------------------------------------------------------------------- /src/extension/content_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/extension/content_script.ts -------------------------------------------------------------------------------- /src/extension/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/extension/devtools.html -------------------------------------------------------------------------------- /src/extension/devtools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/extension/devtools.ts -------------------------------------------------------------------------------- /src/extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/extension/manifest.json -------------------------------------------------------------------------------- /src/panel/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/App.css -------------------------------------------------------------------------------- /src/panel/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/App.test.tsx -------------------------------------------------------------------------------- /src/panel/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/App.tsx -------------------------------------------------------------------------------- /src/panel/__image_snapshots__/TimelineDuration - Alive: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/panel/__image_snapshots__/TimelineDuration - Network: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/panel/__snapshots__/App.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/__snapshots__/App.test.tsx.snap -------------------------------------------------------------------------------- /src/panel/components/Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/Background.tsx -------------------------------------------------------------------------------- /src/panel/components/CodeHighlight.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/CodeHighlight.fixture.tsx -------------------------------------------------------------------------------- /src/panel/components/CodeHighlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/CodeHighlight.tsx -------------------------------------------------------------------------------- /src/panel/components/Collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/Collapsible.tsx -------------------------------------------------------------------------------- /src/panel/components/IndicatorArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/IndicatorArrow.tsx -------------------------------------------------------------------------------- /src/panel/components/Navigation.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/Navigation.fixture.tsx -------------------------------------------------------------------------------- /src/panel/components/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/Navigation.tsx -------------------------------------------------------------------------------- /src/panel/components/Pane.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/Pane.test.tsx -------------------------------------------------------------------------------- /src/panel/components/Pane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/Pane.tsx -------------------------------------------------------------------------------- /src/panel/components/Portal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/Portal.tsx -------------------------------------------------------------------------------- /src/panel/components/Tabs.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/Tabs.test.tsx -------------------------------------------------------------------------------- /src/panel/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/Tabs.tsx -------------------------------------------------------------------------------- /src/panel/components/Toolbar.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/Toolbar.fixture.tsx -------------------------------------------------------------------------------- /src/panel/components/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/Toolbar.tsx -------------------------------------------------------------------------------- /src/panel/components/__snapshots__/Pane.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/__snapshots__/Pane.test.tsx.snap -------------------------------------------------------------------------------- /src/panel/components/__snapshots__/Tabs.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/__snapshots__/Tabs.test.tsx.snap -------------------------------------------------------------------------------- /src/panel/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/components/index.ts -------------------------------------------------------------------------------- /src/panel/context/Devtools.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/context/Devtools.test.tsx -------------------------------------------------------------------------------- /src/panel/context/Devtools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/context/Devtools.tsx -------------------------------------------------------------------------------- /src/panel/context/Explorer/Explorer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/context/Explorer/Explorer.test.tsx -------------------------------------------------------------------------------- /src/panel/context/Explorer/ast/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/context/Explorer/ast/index.test.tsx -------------------------------------------------------------------------------- /src/panel/context/Explorer/ast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/context/Explorer/ast/index.ts -------------------------------------------------------------------------------- /src/panel/context/Explorer/ast/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/context/Explorer/ast/variables.ts -------------------------------------------------------------------------------- /src/panel/context/Explorer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/context/Explorer/index.tsx -------------------------------------------------------------------------------- /src/panel/context/Request.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/context/Request.test.tsx -------------------------------------------------------------------------------- /src/panel/context/Request.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/context/Request.tsx -------------------------------------------------------------------------------- /src/panel/context/Timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/context/Timeline.tsx -------------------------------------------------------------------------------- /src/panel/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/context/index.ts -------------------------------------------------------------------------------- /src/panel/cosmos.decorator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/cosmos.decorator.tsx -------------------------------------------------------------------------------- /src/panel/definitions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/definitions.d.ts -------------------------------------------------------------------------------- /src/panel/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./useOrientationWatcher"; 2 | -------------------------------------------------------------------------------- /src/panel/hooks/useOrientationWatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/hooks/useOrientationWatcher.ts -------------------------------------------------------------------------------- /src/panel/pages/disconnected/Disconnected.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/disconnected/Disconnected.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/disconnected/Disconnected.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/disconnected/Disconnected.test.tsx -------------------------------------------------------------------------------- /src/panel/pages/disconnected/Disconnected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/disconnected/Disconnected.tsx -------------------------------------------------------------------------------- /src/panel/pages/disconnected/__snapshots__/Disconnected.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/disconnected/__snapshots__/Disconnected.test.tsx.snap -------------------------------------------------------------------------------- /src/panel/pages/disconnected/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Disconnected"; 2 | -------------------------------------------------------------------------------- /src/panel/pages/error/ErrorBoundary.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/error/ErrorBoundary.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/error/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/error/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/panel/pages/error/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ErrorBoundary"; 2 | -------------------------------------------------------------------------------- /src/panel/pages/events/Timeline.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/Timeline.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/Timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/Timeline.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/Settings.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/Settings.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/Settings.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/Settings.test.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/Settings.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/Tick.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/Tick.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/Tick.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/Tick.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/TimelineDuration.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/TimelineDuration.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/TimelineDuration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/TimelineDuration.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/TimelineEvent.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/TimelineEvent.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/TimelineEvent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/TimelineEvent.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/TimelinePane/TimelinePane.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/TimelinePane/TimelinePane.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/TimelinePane/TimelinePane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/TimelinePane/TimelinePane.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/TimelinePane/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./TimelinePane"; 2 | -------------------------------------------------------------------------------- /src/panel/pages/events/components/TimelineRow.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/TimelineRow.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/TimelineRow.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/TimelineRow.test.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/TimelineRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/TimelineRow.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/TimelineSourceIcon.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/TimelineSourceIcon.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/TimelineSourceIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/TimelineSourceIcon.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/TimelineTooltip.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/TimelineTooltip.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/TimelineTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/TimelineTooltip.tsx -------------------------------------------------------------------------------- /src/panel/pages/events/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/events/components/index.ts -------------------------------------------------------------------------------- /src/panel/pages/events/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Timeline"; 2 | -------------------------------------------------------------------------------- /src/panel/pages/explorer/Explorer.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/explorer/Explorer.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/explorer/Explorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/explorer/Explorer.tsx -------------------------------------------------------------------------------- /src/panel/pages/explorer/components/Arguments.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/explorer/components/Arguments.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/explorer/components/Arguments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/explorer/components/Arguments.tsx -------------------------------------------------------------------------------- /src/panel/pages/explorer/components/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/explorer/components/Icons.tsx -------------------------------------------------------------------------------- /src/panel/pages/explorer/components/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/explorer/components/ListItem.tsx -------------------------------------------------------------------------------- /src/panel/pages/explorer/components/NodeInfoPane.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/explorer/components/NodeInfoPane.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/explorer/components/NodeInfoPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/explorer/components/NodeInfoPane.tsx -------------------------------------------------------------------------------- /src/panel/pages/explorer/components/Tree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/explorer/components/Tree.tsx -------------------------------------------------------------------------------- /src/panel/pages/explorer/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/explorer/components/index.ts -------------------------------------------------------------------------------- /src/panel/pages/explorer/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./useFlash"; 2 | -------------------------------------------------------------------------------- /src/panel/pages/explorer/hooks/useFlash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/explorer/hooks/useFlash.ts -------------------------------------------------------------------------------- /src/panel/pages/explorer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/explorer/index.ts -------------------------------------------------------------------------------- /src/panel/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/index.ts -------------------------------------------------------------------------------- /src/panel/pages/mismatch/Mismatch.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/mismatch/Mismatch.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/mismatch/Mismatch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/mismatch/Mismatch.tsx -------------------------------------------------------------------------------- /src/panel/pages/mismatch/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Mismatch"; 2 | -------------------------------------------------------------------------------- /src/panel/pages/request/Request.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/Request.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/request/Request.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/Request.tsx -------------------------------------------------------------------------------- /src/panel/pages/request/components/Collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/components/Collapsible.tsx -------------------------------------------------------------------------------- /src/panel/pages/request/components/Fields.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/components/Fields.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/request/components/Fields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/components/Fields.tsx -------------------------------------------------------------------------------- /src/panel/pages/request/components/Query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/components/Query.tsx -------------------------------------------------------------------------------- /src/panel/pages/request/components/Response.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/components/Response.tsx -------------------------------------------------------------------------------- /src/panel/pages/request/components/Schema.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/components/Schema.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/request/components/Schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/components/Schema.tsx -------------------------------------------------------------------------------- /src/panel/pages/request/components/Search.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/components/Search.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/request/components/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/components/Search.tsx -------------------------------------------------------------------------------- /src/panel/pages/request/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/components/Settings.tsx -------------------------------------------------------------------------------- /src/panel/pages/request/components/Stack.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/components/Stack.fixture.tsx -------------------------------------------------------------------------------- /src/panel/pages/request/components/Stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/components/Stack.tsx -------------------------------------------------------------------------------- /src/panel/pages/request/components/TopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/components/TopBar.tsx -------------------------------------------------------------------------------- /src/panel/pages/request/components/Type.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/components/Type.tsx -------------------------------------------------------------------------------- /src/panel/pages/request/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/pages/request/components/index.ts -------------------------------------------------------------------------------- /src/panel/pages/request/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Request"; 2 | -------------------------------------------------------------------------------- /src/panel/panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/panel.html -------------------------------------------------------------------------------- /src/panel/panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/panel.tsx -------------------------------------------------------------------------------- /src/panel/prism.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/prism.ts -------------------------------------------------------------------------------- /src/panel/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/styled.d.ts -------------------------------------------------------------------------------- /src/panel/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/theme.ts -------------------------------------------------------------------------------- /src/panel/types/codemirror.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/types/codemirror.d.ts -------------------------------------------------------------------------------- /src/panel/types/styled-components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/types/styled-components.d.ts -------------------------------------------------------------------------------- /src/panel/util/Connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/util/Connection.ts -------------------------------------------------------------------------------- /src/panel/util/EnvUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/util/EnvUtils.ts -------------------------------------------------------------------------------- /src/panel/util/ErrorOverlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/util/ErrorOverlay.ts -------------------------------------------------------------------------------- /src/panel/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/util/index.ts -------------------------------------------------------------------------------- /src/panel/util/openExternalUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/panel/util/openExternalUrl.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/types/connections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/types/connections.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./connections"; 2 | -------------------------------------------------------------------------------- /src/util/EventTarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/util/EventTarget.ts -------------------------------------------------------------------------------- /src/util/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/util/debug.ts -------------------------------------------------------------------------------- /src/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/src/util/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack/webpack.electron.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/webpack/webpack.electron.config.js -------------------------------------------------------------------------------- /webpack/webpack.extension.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urql-graphql/urql-devtools/HEAD/webpack/webpack.extension.config.js --------------------------------------------------------------------------------