Skip to content

Commit 8195a57

Browse files
committed
fixes, bump version
1 parent df8b2b9 commit 8195a57

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

packages/graphql-playground-electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
"extract-text-webpack-plugin": "^2.0.0-beta.3",
128128
"file-loader": "^0.11.2",
129129
"fork-ts-checker-webpack-plugin": "^0.1.5",
130-
"graphql-playground": "0.1.15",
130+
"graphql-playground": "0.1.17",
131131
"happypack": "^3.1.0",
132132
"html-webpack-plugin": "^2.30.1",
133133
"identity-obj-proxy": "^3.0.0",

packages/graphql-playground-electron/yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3246,9 +3246,9 @@ [email protected]:
32463246
graphql "^0.10.1"
32473247
graphql-language-service-types "0.0.21"
32483248

3249-
3250-
version "0.1.15"
3251-
resolved "https://registry.yarnpkg.com/graphql-playground/-/graphql-playground-0.1.15.tgz#36425a4ef8f328eae89a2d7fec6ac700ec122245"
3249+
3250+
version "0.1.17"
3251+
resolved "https://registry.yarnpkg.com/graphql-playground/-/graphql-playground-0.1.17.tgz#85693d1575dc030b263571e46f1fd7a372f3bd3a"
32523252
dependencies:
32533253
calculate-size "^1.1.1"
32543254
classnames "^2.2.5"

packages/graphql-playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-playground",
3-
"version": "0.1.15",
3+
"version": "0.1.17",
44
"main": "./lib/Playground.js",
55
"typings": "./lib/index.d.ts",
66
"scripts": {

packages/graphql-playground/src/components/Playground/DocExplorer/GraphDocs.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,19 @@ class GraphDocs extends React.Component<
120120
@p: .mh0, .ph16;
121121
border: none;
122122
}
123+
.doc-type-description p {
124+
@p: .pa16, .f14;
125+
}
123126
.graphiql-container .doc-type-description {
124127
@p: .mh0, .ph16, .f14;
125128
}
126129
.doc-header .doc-category-item {
127130
@p: .f16;
128131
word-wrap: break-word;
129132
}
133+
.doc-description p {
134+
@p: .f14;
135+
}
130136
`}</style>
131137
<style jsx={true}>{`
132138
.docs :global(.doc-category-title) {

packages/graphql-playground/src/components/Playground/QueryEditor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import * as React from 'react'
1010
import { GraphQLSchema } from 'graphql'
1111

12-
import onHasCompletion from 'graphiql/dist/utility/onHasCompletion'
12+
import onHasCompletion from './onHasCompletion'
1313
/**
1414
* QueryEditor
1515
*

0 commit comments

Comments
 (0)