@stepzen/graphiql-proxy 0.20.1 → 0.21.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
- package/src/server/api/details.js +2 -2
- package/src/server/api/proxy.js +14 -7
- package/src/server/index.js +39 -20
- package/src/ui/build/asset-manifest.json +6 -6
- package/src/ui/build/index.html +1 -1
- package/src/ui/build/static/css/main.4fb42d49.css +2 -0
- package/src/ui/build/static/css/main.4fb42d49.css.map +1 -0
- package/src/ui/build/static/js/0.a1da3266.chunk.js.map +1 -1
- package/src/ui/build/static/js/136.7849911c.chunk.js.map +1 -1
- package/src/ui/build/static/js/170.27296619.chunk.js.map +1 -1
- package/src/ui/build/static/js/190.e088a175.chunk.js.map +1 -1
- package/src/ui/build/static/js/267.962ef6a4.chunk.js.map +1 -1
- package/src/ui/build/static/js/306.cb66dc99.chunk.js.map +1 -1
- package/src/ui/build/static/js/316.7c2be1f0.chunk.js.map +1 -1
- package/src/ui/build/static/js/322.5ada89eb.chunk.js.map +1 -1
- package/src/ui/build/static/js/344.e6b10333.chunk.js.map +1 -1
- package/src/ui/build/static/js/39.dd9b3202.chunk.js.map +1 -1
- package/src/ui/build/static/js/430.de05cf2b.chunk.js.map +1 -1
- package/src/ui/build/static/js/503.a3ba392a.chunk.js.map +1 -1
- package/src/ui/build/static/js/580.b48b02d9.chunk.js.map +1 -1
- package/src/ui/build/static/js/587.f2cbe2fb.chunk.js.map +1 -1
- package/src/ui/build/static/js/619.cd709ae5.chunk.js.map +1 -1
- package/src/ui/build/static/js/658.916c9abf.chunk.js.map +1 -1
- package/src/ui/build/static/js/756.a915a97e.chunk.js.map +1 -1
- package/src/ui/build/static/js/76.0a014434.chunk.js.map +1 -1
- package/src/ui/build/static/js/804.118a9243.chunk.js.map +1 -1
- package/src/ui/build/static/js/849.f850f73b.chunk.js.map +1 -1
- package/src/ui/build/static/js/88.b5b4cd91.chunk.js.map +1 -1
- package/src/ui/build/static/js/983.df163755.chunk.js.map +1 -1
- package/src/ui/build/static/js/{main.20771770.js → main.6e3668a7.js} +3 -3
- package/src/ui/build/static/js/{main.20771770.js.LICENSE.txt → main.6e3668a7.js.LICENSE.txt} +0 -0
- package/src/ui/build/static/js/{main.20771770.js.map → main.6e3668a7.js.map} +1 -1
- package/src/ui/build/static/css/main.f9030c32.css +0 -2
- package/src/ui/build/static/css/main.f9030c32.css.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stepzen/graphiql-proxy",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.0-beta.2",
|
|
4
4
|
"author": "Darren Waddell <darren@stepzen.com>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://stepzen.com",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"cors": "^2.8.5",
|
|
28
28
|
"cross-spawn": "^7.0.3",
|
|
29
29
|
"debug": "^4.3.4",
|
|
30
|
-
"express": "^4.
|
|
30
|
+
"express": "^4.18.1",
|
|
31
31
|
"express-promise-router": "^4.1.1",
|
|
32
32
|
"node-fetch": "^2.6.7",
|
|
33
33
|
"open": "^8.4.0",
|
|
34
|
-
"prettier": "^2.
|
|
34
|
+
"prettier": "^2.7.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/chai": "^4.2.12",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"sinon-chai": "3.7.0",
|
|
58
58
|
"ts-node": "^10.8.2"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "58b85cc37fa990639bf7170d4224cf51cc1f7ad1"
|
|
61
61
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// Copyright (c) 2020,2021,2022, StepZen, Inc.
|
|
2
2
|
|
|
3
3
|
const details = async (req, res) => {
|
|
4
|
-
const {
|
|
4
|
+
const {zenservUrl, predicates, workspace} = req.stepzen
|
|
5
5
|
|
|
6
|
-
const endpoint =
|
|
6
|
+
const endpoint = `${zenservUrl}/${workspace.endpoint}/__graphql`
|
|
7
7
|
|
|
8
8
|
res.json({
|
|
9
9
|
endpoint,
|
package/src/server/api/proxy.js
CHANGED
|
@@ -6,22 +6,32 @@ const fetch = require('node-fetch')
|
|
|
6
6
|
const {version} = require('../../../package.json')
|
|
7
7
|
|
|
8
8
|
const proxy = async (req, res) => {
|
|
9
|
-
const {
|
|
10
|
-
|
|
9
|
+
const {
|
|
10
|
+
adminkey,
|
|
11
|
+
debugging,
|
|
12
|
+
zenservDomain,
|
|
13
|
+
zenservUrl,
|
|
14
|
+
predicates,
|
|
15
|
+
workspace,
|
|
16
|
+
} = req.stepzen
|
|
11
17
|
|
|
12
18
|
let endpoint = workspace.endpoint
|
|
13
19
|
|
|
14
|
-
let headers = {
|
|
20
|
+
let headers = {
|
|
21
|
+
host: zenservDomain,
|
|
22
|
+
}
|
|
15
23
|
|
|
16
24
|
if (predicates.available && predicates.enabled) {
|
|
17
25
|
try {
|
|
18
26
|
const others = JSON.parse(JSON.stringify(predicates.headers))
|
|
19
27
|
headers = {
|
|
28
|
+
...headers,
|
|
20
29
|
...others,
|
|
21
30
|
}
|
|
22
31
|
} catch {}
|
|
23
32
|
} else {
|
|
24
33
|
headers = {
|
|
34
|
+
...headers,
|
|
25
35
|
Authorization: `Apikey ${adminkey}`,
|
|
26
36
|
}
|
|
27
37
|
}
|
|
@@ -33,10 +43,7 @@ const proxy = async (req, res) => {
|
|
|
33
43
|
}
|
|
34
44
|
}
|
|
35
45
|
|
|
36
|
-
const url =
|
|
37
|
-
'.io',
|
|
38
|
-
'.net',
|
|
39
|
-
)}/${endpoint}/__graphql`
|
|
46
|
+
const url = `${zenservUrl}/${endpoint}/__graphql`
|
|
40
47
|
|
|
41
48
|
debug('stepzen:dashboard')(`proxy headers: ${JSON.stringify(headers)}`)
|
|
42
49
|
debug('stepzen:dashboard')(`proxy url: ${url}`)
|
package/src/server/index.js
CHANGED
|
@@ -15,24 +15,41 @@ const _predicates = require('./api/predicates')
|
|
|
15
15
|
const proxy = require('./api/proxy')
|
|
16
16
|
const samples = require('./api/samples')
|
|
17
17
|
|
|
18
|
-
module.exports = async
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
18
|
+
module.exports = async options => {
|
|
19
|
+
const {
|
|
20
|
+
/** @deprecated use zenservDomain and zenservUrl */
|
|
21
|
+
account,
|
|
22
|
+
adminkey,
|
|
23
|
+
apikey,
|
|
24
|
+
cli = {version: ''},
|
|
25
|
+
/** @deprecated use zenservDomain and zenservUrl */
|
|
26
|
+
domain = 'stepzen.io',
|
|
27
|
+
port = 5000,
|
|
28
|
+
predicates = {
|
|
29
|
+
available: false,
|
|
30
|
+
enabled: false,
|
|
31
|
+
onTogglePredicates: async () => {},
|
|
32
|
+
},
|
|
33
|
+
debugging = {
|
|
34
|
+
enabled: false,
|
|
35
|
+
onToggleDebugging: async () => {},
|
|
36
|
+
},
|
|
37
|
+
workspace,
|
|
38
|
+
zenservDomain,
|
|
39
|
+
zenservUrl,
|
|
40
|
+
} = options
|
|
41
|
+
|
|
42
|
+
const warnIfUsingDeprecatedOption = option => {
|
|
43
|
+
if (options[option]) {
|
|
44
|
+
debug('stepzen:dashboard')(
|
|
45
|
+
`The account ${option} is deprecated.` +
|
|
46
|
+
` Please use zenservDomain and zenservUrl instead.`,
|
|
47
|
+
)
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
warnIfUsingDeprecatedOption('account')
|
|
51
|
+
warnIfUsingDeprecatedOption('domain')
|
|
52
|
+
|
|
36
53
|
const app = express()
|
|
37
54
|
|
|
38
55
|
app.use(express.json())
|
|
@@ -41,14 +58,16 @@ module.exports = async ({
|
|
|
41
58
|
app.use(express.static(`${__dirname}/../ui/build`))
|
|
42
59
|
app.use((req, res, next) => {
|
|
43
60
|
req.stepzen = {
|
|
44
|
-
account,
|
|
45
61
|
adminkey,
|
|
46
62
|
apikey,
|
|
47
63
|
cli,
|
|
48
64
|
debugging,
|
|
49
|
-
domain,
|
|
50
65
|
predicates,
|
|
51
66
|
workspace,
|
|
67
|
+
zenservDomain:
|
|
68
|
+
zenservDomain || `${account}.${domain.replace('.io', '.net')}`,
|
|
69
|
+
zenservUrl:
|
|
70
|
+
zenservUrl || `https://${account}.${domain.replace('.io', '.net')}`,
|
|
52
71
|
}
|
|
53
72
|
next()
|
|
54
73
|
})
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"files": {
|
|
3
|
-
"main.css": "/static/css/main.
|
|
4
|
-
"main.js": "/static/js/main.
|
|
3
|
+
"main.css": "/static/css/main.4fb42d49.css",
|
|
4
|
+
"main.js": "/static/js/main.6e3668a7.js",
|
|
5
5
|
"static/js/503.a3ba392a.chunk.js": "/static/js/503.a3ba392a.chunk.js",
|
|
6
6
|
"static/js/136.7849911c.chunk.js": "/static/js/136.7849911c.chunk.js",
|
|
7
7
|
"static/js/190.e088a175.chunk.js": "/static/js/190.e088a175.chunk.js",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"static/js/0.a1da3266.chunk.js": "/static/js/0.a1da3266.chunk.js",
|
|
27
27
|
"static/media/logo.svg": "/static/media/logo.2fa5e016c31f1c335b07ff477d91ee9a.svg",
|
|
28
28
|
"index.html": "/index.html",
|
|
29
|
-
"main.
|
|
30
|
-
"main.
|
|
29
|
+
"main.4fb42d49.css.map": "/static/css/main.4fb42d49.css.map",
|
|
30
|
+
"main.6e3668a7.js.map": "/static/js/main.6e3668a7.js.map",
|
|
31
31
|
"503.a3ba392a.chunk.js.map": "/static/js/503.a3ba392a.chunk.js.map",
|
|
32
32
|
"136.7849911c.chunk.js.map": "/static/js/136.7849911c.chunk.js.map",
|
|
33
33
|
"190.e088a175.chunk.js.map": "/static/js/190.e088a175.chunk.js.map",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"0.a1da3266.chunk.js.map": "/static/js/0.a1da3266.chunk.js.map"
|
|
53
53
|
},
|
|
54
54
|
"entrypoints": [
|
|
55
|
-
"static/css/main.
|
|
56
|
-
"static/js/main.
|
|
55
|
+
"static/css/main.4fb42d49.css",
|
|
56
|
+
"static/js/main.6e3668a7.js"
|
|
57
57
|
]
|
|
58
58
|
}
|
package/src/ui/build/index.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><title>StepZen</title><script defer="defer" src="/static/js/main.
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><title>StepZen</title><script defer="defer" src="/static/js/main.6e3668a7.js"></script><link href="/static/css/main.4fb42d49.css" rel="stylesheet"></head><body><div id="root"></div></body></html>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
.loading{align-items:center;display:flex;height:100%;justify-content:center;text-align:center;width:100%}.loading .logo{-webkit-animation-direction:alternate;animation-direction:alternate;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:bounce;animation-name:bounce;-webkit-animation-timing-function:cubic-bezier(.95,.05,.8,.05);animation-timing-function:cubic-bezier(.95,.05,.8,.05);height:50px;width:200px}@-webkit-keyframes bounce{0%{-webkit-transform:translateY(0) scale(1);transform:translateY(0) scale(1)}to{-webkit-transform:translateY(20px) scaleY(.7);transform:translateY(20px) scaleY(.7)}}@keyframes bounce{0%{-webkit-transform:translateY(0) scale(1);transform:translateY(0) scale(1)}to{-webkit-transform:translateY(20px) scaleY(.7);transform:translateY(20px) scaleY(.7)}}.server-status-overlay{align-items:center;background-color:rgba(0,0,0,.3);bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:1000}.server-status-pop{background-color:#fff;border-radius:5px;box-shadow:0 3px 7px rgba(0,0,0,.3);height:50px;padding:1rem 1rem 0;text-align:center;width:200px}.server-status-pop .pop-copy{line-height:21px}.server-status-pop code{background:rgba(0,178,202,.3);border:1px solid #00b2ca;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;color:#193460;padding:1px}.server-status-pop .pop-icon{font-size:28px;margin-bottom:0;padding:0}.graphiqlpanel-wrap{background:#fff;box-shadow:0 0 8px rgba(0,0,0,.15);display:flex;flex-direction:column;flex-shrink:0;position:relative;width:350px;z-index:20}.graphiqlpanel-title-bar{cursor:default;display:flex;height:34px;line-height:14px;padding:8px 8px 5px;position:relative;-webkit-user-select:none;user-select:none}.graphiqlpanel-title-bar .graphiqlpanel-title{flex:1 1;font-weight:700;overflow-x:hidden;padding:10px 0 10px 10px;text-align:center;text-overflow:ellipsis;-webkit-user-select:text;user-select:text;white-space:nowrap}.graphiqlpanel-title-bar .graphiqlpanel-close{background:0;border:0;cursor:pointer;font-size:18px;line-height:14px;margin:-7px -8px -6px 0;padding:18px 16px 15px 12px}.graphiqlpanel-content{background-color:#fff;border-top:1px solid #d6d6d6;bottom:0;flex:1 1;left:0;overflow-y:auto;padding:20px 15px;position:absolute;right:0;top:47px}.has-footer .graphiqlpanel-content{border-bottom:1px solid #d6d6d6;bottom:47px}.has-footer .graphiqlpanel-footer-bar{bottom:0;display:flex;height:47px;left:0;padding:0 30px;position:absolute;right:0;-webkit-user-select:none;user-select:none}.form *,.form :after,.form :before,form *,form :after,form :before{box-sizing:border-box}.form .field.radio,form .field.radio{display:flex}.form .field+.field,form .field+.field{padding-top:10px}.form .field.buttons,form .field.buttons{border-top:1px solid #eaeaea;margin-top:20px;padding-top:20px}.form .label,.form label,form .label,form label{display:block;font-size:16px;padding-bottom:4px}.form .label .label-title,.form label .label-title,form .label .label-title,form label .label-title{font-weight:700;margin:0 0 10px}.form .label .label-description,.form label .label-description,form .label .label-description,form label .label-description{margin:0 0 10px}.form input[type=radio],form input[type=radio]{height:30px;margin-right:10px;width:30px}.form input[type=password],.form input[type=text],form input[type=password],form input[type=text]{-webkit-appearance:none;appearance:none;border:2px solid #ddd;border-radius:2px;color:#333;display:inline-block;font-family:inherit;font-size:16px;height:40px;padding:8px;width:100%}.form input[type=password]:disabled,.form input[type=text]:disabled,form input[type=password]:disabled,form input[type=text]:disabled{background:#ccc}.form textarea,form textarea{-webkit-appearance:none;appearance:none;border:2px solid #ddd;border-radius:2px;color:#333;display:inline-block;font-family:inherit;font-size:16px;padding:8px;width:100%}.form textarea[readonly],form textarea[readonly]{background:#eee}.form .button,form .button{align-items:center;background:#2163ef;border:0;border-radius:2px;color:#fff;cursor:pointer;display:inline-block;font-family:inherit;font-size:16px;font-weight:500;height:44px;justify-content:center;min-width:8ch;padding:0 8px}.form .button:disabled,form .button:disabled{cursor:default;opacity:.7}.form .button.is-link,form .button.is-link{background:none;color:#2163ef}.form .button.is-secondary,form .button.is-secondary{background:#ccc;color:#222}.form .button+.button,form .button+.button{margin-left:10px}.form .checkbox label,.form .radio label,form .checkbox label,form .radio label{display:inline-block;height:30px;line-height:30px;padding:0;vertical-align:middle}.form .checkbox input[type=checkbox],.form .checkbox input[type=radio],.form .radio input[type=checkbox],.form .radio input[type=radio],form .checkbox input[type=checkbox],form .checkbox input[type=radio],form .radio input[type=checkbox],form .radio input[type=radio]{border:2px solid #ddd;border-radius:2px;display:inline-block;height:30px;margin:0 10px 0 0;position:relative;top:-2px;vertical-align:middle;width:30px}.predicates-toggle{flex:1 1}.predicates-toggle>label{display:flex}.predicates-toggle>label span{line-height:24px;padding-right:10px}.predicates-toggle .predicates-settings{margin-top:30px}.predicates-toggle .predicates-settings textarea{font-size:12px}.react-toggle{-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent;background-color:initial;border:0;cursor:pointer;display:inline-block;padding:0;position:relative;touch-action:pan-x;-webkit-user-select:none;user-select:none}.react-toggle-screenreader-only{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.react-toggle--disabled{cursor:not-allowed;opacity:.5;transition:opacity .25s}.react-toggle-track{background-color:#4d4d4d;border-radius:30px;height:24px;padding:0;transition:all .2s ease;width:50px}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#000}.react-toggle--checked .react-toggle-track{background-color:#19ab27}.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#128d15}.react-toggle-track-check{bottom:0;height:10px;left:8px;line-height:0;margin-bottom:auto;margin-top:auto;opacity:0;position:absolute;top:0;transition:opacity .25s ease;width:14px}.react-toggle--checked .react-toggle-track-check,.react-toggle-track-x{opacity:1;transition:opacity .25s ease}.react-toggle-track-x{bottom:0;height:10px;line-height:0;margin-bottom:auto;margin-top:auto;position:absolute;right:10px;top:0;width:10px}.react-toggle--checked .react-toggle-track-x{opacity:0}.react-toggle-thumb{background-color:#fafafa;border:1px solid #4d4d4d;border-radius:50%;box-sizing:border-box;height:22px;left:1px;position:absolute;top:1px;transition:all .5s cubic-bezier(.23,1,.32,1) 0ms;transition:all .25s ease;width:22px}.react-toggle--checked .react-toggle-thumb{border-color:#19ab27;left:27px}.react-toggle--focus .react-toggle-thumb{box-shadow:0 0 2px 3px #0099e0}.react-toggle:active:not(.react-toggle--disabled) .react-toggle-thumb{box-shadow:0 0 5px 5px #0099e0}.advanced-settings-container{margin-top:10px}.graphiql-container .settings-toggle{background:linear-gradient(#f7f7f7,#e2e2e2);border:none;border-bottom:1px solid #d0d0d0;border-left:1px solid rgba(0,0,0,.2);border-radius:0;color:#3b5998;cursor:pointer;font-size:14px;height:48px;margin:-11px -14px -11px auto;padding:2px 20px 0 18px}.graphiql-container .settings-toggle svg{font-size:20px;margin-left:5px;vertical-align:middle}.graphiql-container .settings-toggle:before{border-left:2px solid #3b5998;border-top:2px solid #3b5998;content:"";display:inline-block;height:9px;margin:0 3px -1px 0;position:relative;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);width:9px}.graphiql-container,.graphiql-container button,.graphiql-container input{color:#141823;font-family:system,-apple-system,San Francisco,\.SFNSDisplay-Regular,Segoe UI,Segoe,Segoe WP,Helvetica Neue,helvetica,Lucida Grande,arial,sans-serif;font-size:14px}.graphiql-container{display:flex;flex-direction:row;height:100%;margin:0;overflow:hidden;width:100%}.graphiql-container .editorWrap{display:flex;flex:1 1;flex-direction:column;overflow-x:hidden}.graphiql-container .title{font-size:18px}.graphiql-container .title em{font-family:georgia;font-size:19px}.graphiql-container .topBar,.graphiql-container .topBarWrap{display:flex;flex-direction:row}.graphiql-container .topBar{align-items:center;background:linear-gradient(#f7f7f7,#e2e2e2);border-bottom:1px solid #d0d0d0;cursor:default;flex:1 1;height:34px;overflow-y:visible;padding:7px 14px 6px;-webkit-user-select:none;user-select:none}.graphiql-container .toolbar{display:flex;overflow-x:visible}.graphiql-container .docExplorerShow,.graphiql-container .historyShow{background:linear-gradient(#f7f7f7,#e2e2e2);border-bottom:1px solid #d0d0d0;border-radius:0;border-right:none;border-top:none;color:#3b5998;cursor:pointer;font-size:14px;margin:0;padding:2px 20px 0 18px}.graphiql-container .docExplorerShow{border-left:1px solid rgba(0,0,0,.2)}.graphiql-container .historyShow{border-left:0;border-right:1px solid rgba(0,0,0,.2)}.graphiql-container .docExplorerShow:before{border-left:2px solid #3b5998;border-top:2px solid #3b5998;content:"";display:inline-block;height:9px;margin:0 3px -1px 0;position:relative;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);width:9px}.graphiql-container .editorBar{display:flex;flex:1 1;flex-direction:row;max-height:100%}.graphiql-container .queryWrap,.graphiql-container .resultWrap{display:flex;flex:1 1;flex-direction:column}.graphiql-container .resultWrap{border-left:1px solid #e0e0e0;flex-basis:1em;position:relative}.graphiql-container .docExplorerWrap,.graphiql-container .historyPaneWrap{background:#fff;box-shadow:0 0 8px rgba(0,0,0,.15);position:relative;z-index:3}.graphiql-container .historyPaneWrap{min-width:230px;z-index:5}.graphiql-container .docExplorerResizer{cursor:col-resize;height:100%;left:-5px;position:absolute;top:0;width:10px;z-index:10}.graphiql-container .docExplorerHide{background:0;border:0;cursor:pointer;font-size:18px;line-height:14px;margin:-7px -8px -6px 0;padding:18px 16px 15px 12px}.graphiql-container div .query-editor{flex:1 1;position:relative}.graphiql-container .secondary-editor{display:flex;flex-direction:column;height:30px;position:relative}.graphiql-container .secondary-editor-title{-webkit-font-feature-settings:"smcp";font-feature-settings:"smcp";background:#eee;border-bottom:1px solid #d6d6d6;border-top:1px solid #e0e0e0;color:#777;font-variant:small-caps;font-weight:700;letter-spacing:1px;line-height:14px;padding:6px 0 8px 43px;text-transform:lowercase;-webkit-user-select:none;user-select:none}.graphiql-container .codemirrorWrap,.graphiql-container .result-window{flex:1 1;height:100%;position:relative}.graphiql-container .footer{background:#f6f7f8;border-left:1px solid #e0e0e0;border-top:1px solid #e0e0e0;margin-left:12px;position:relative}.graphiql-container .footer:before{background:#eee;bottom:0;content:" ";left:-13px;position:absolute;top:-1px;width:12px}.result-window .CodeMirror.cm-s-graphiql{background:#f6f7f8}.graphiql-container .result-window .CodeMirror-gutters{background-color:#eee;border-color:#e0e0e0;cursor:col-resize}.graphiql-container .result-window .CodeMirror-foldgutter,.graphiql-container .result-window .CodeMirror-foldgutter-folded:after,.graphiql-container .result-window .CodeMirror-foldgutter-open:after{padding-left:3px}.graphiql-container .toolbar-button{background:#fdfdfd;background:linear-gradient(#f9f9f9,#ececec);border:0;border-radius:3px;box-shadow:inset 0 0 0 1px rgba(0,0,0,.2),0 1px 0 hsla(0,0%,100%,.7),inset 0 1px #fff;color:#555;cursor:pointer;display:inline-block;margin:0 5px;max-width:150px;padding:3px 11px 5px;text-decoration:none;text-overflow:ellipsis;white-space:nowrap}.graphiql-container .toolbar-button:active{background:linear-gradient(#ececec,#d5d5d5);box-shadow:0 1px 0 hsla(0,0%,100%,.7),inset 0 0 0 1px rgba(0,0,0,.1),inset 0 1px 1px 1px rgba(0,0,0,.12),inset 0 0 5px rgba(0,0,0,.1)}.graphiql-container .toolbar-button.error{background:linear-gradient(#fdf3f3,#e6d6d7);color:#b00}.graphiql-container .toolbar-button-group{margin:0 5px;white-space:nowrap}.graphiql-container .toolbar-button-group>*{margin:0}.graphiql-container .toolbar-button-group>:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.graphiql-container .toolbar-button-group>:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;margin-left:-1px}.graphiql-container .execute-button-wrap{height:34px;margin:0 14px 0 28px;position:relative}.graphiql-container .execute-button{fill:#444;background:linear-gradient(#fdfdfd,#d2d3d6);border:1px solid rgba(0,0,0,.25);border-radius:17px;box-shadow:0 1px 0 #fff;cursor:pointer;height:34px;margin:0;padding:0;width:34px}.graphiql-container .execute-button svg,.graphiql-container .toolbar-button>svg{pointer-events:none}.graphiql-container .execute-button:active{background:linear-gradient(#e6e6e6,#c3c3c3);box-shadow:0 1px 0 #fff,inset 0 0 2px rgba(0,0,0,.2),inset 0 0 6px rgba(0,0,0,.1)}.graphiql-container .toolbar-menu,.graphiql-container .toolbar-select{position:relative}.graphiql-container .execute-options,.graphiql-container .toolbar-menu-items,.graphiql-container .toolbar-select-options{background:#fff;box-shadow:0 0 0 1px rgba(0,0,0,.1),0 2px 4px rgba(0,0,0,.25);margin:0;padding:6px 0;position:absolute;z-index:100}.graphiql-container .execute-options{left:-1px;min-width:100px;top:37px}.graphiql-container .toolbar-menu-items{left:1px;margin-top:-1px;min-width:110%;top:100%;visibility:hidden}.graphiql-container .toolbar-menu-items.open{visibility:visible}.graphiql-container .toolbar-select-options{left:0;min-width:100%;top:-5px;visibility:hidden}.graphiql-container .toolbar-select-options.open{visibility:visible}.graphiql-container .execute-options>li,.graphiql-container .toolbar-menu-items>li,.graphiql-container .toolbar-select-options>li{cursor:pointer;display:block;margin:none;max-width:300px;overflow:hidden;padding:2px 20px 4px 11px;white-space:nowrap}.graphiql-container .execute-options>li.selected,.graphiql-container .history-contents>li:active,.graphiql-container .history-contents>li:hover,.graphiql-container .toolbar-menu-items>li.hover,.graphiql-container .toolbar-menu-items>li:active,.graphiql-container .toolbar-menu-items>li:hover,.graphiql-container .toolbar-select-options>li.hover,.graphiql-container .toolbar-select-options>li:active,.graphiql-container .toolbar-select-options>li:hover{background:#e10098;color:#fff}.graphiql-container .toolbar-select-options>li>svg{fill:#666;display:inline;margin:0 -6px 0 6px;pointer-events:none;vertical-align:middle}.graphiql-container .toolbar-select-options>li.hover>svg,.graphiql-container .toolbar-select-options>li:active>svg,.graphiql-container .toolbar-select-options>li:hover>svg{fill:#fff}.graphiql-container .CodeMirror-scroll{overflow-scrolling:touch}.graphiql-container .CodeMirror{color:#141823;font-family:Consolas,Inconsolata,Droid Sans Mono,Monaco,monospace;font-size:13px;height:100%;left:0;position:absolute;top:0;width:100%}.graphiql-container .CodeMirror-lines{padding:20px 0}.CodeMirror-hint-information .content{box-orient:vertical;line-clamp:3;color:#141823;display:flex;font-family:system,-apple-system,San Francisco,\.SFNSDisplay-Regular,Segoe UI,Segoe,Segoe WP,Helvetica Neue,helvetica,Lucida Grande,arial,sans-serif;font-size:13px;line-height:16px;max-height:48px;overflow:hidden;text-overflow:-o-ellipsis-lastline}.CodeMirror-hint-information .content p:first-child{margin-top:0}.CodeMirror-hint-information .content p:last-child{margin-bottom:0}.CodeMirror-hint-information .infoType{color:#ca9800;cursor:pointer;display:inline;margin-right:.5em}.autoInsertedLeaf.cm-property{-webkit-animation-duration:6s;animation-duration:6s;-webkit-animation-name:insertionFade;animation-name:insertionFade;border-bottom:2px solid hsla(0,0%,100%,0);border-radius:2px;margin:-2px -4px -1px;padding:2px 4px 1px}@-webkit-keyframes insertionFade{0%,to{background:hsla(0,0%,100%,0);border-color:hsla(0,0%,100%,0)}15%,85%{background:#fbffc9;border-color:#f0f3c0}}@keyframes insertionFade{0%,to{background:hsla(0,0%,100%,0);border-color:hsla(0,0%,100%,0)}15%,85%{background:#fbffc9;border-color:#f0f3c0}}div.CodeMirror-lint-tooltip{background-color:#fff;border:0;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.45);color:#141823;font-size:13px;line-height:16px;max-width:430px;opacity:0;padding:8px 10px;transition:opacity .15s;white-space:pre-wrap}div.CodeMirror-lint-tooltip>*{padding-left:23px}div.CodeMirror-lint-tooltip>*+*{margin-top:12px}.graphiql-container .variable-editor-title-text{color:grey;cursor:pointer;display:inline-block}.graphiql-container .variable-editor-title-text.active{color:#000}.graphiql-container .tabs{align-items:center;background-image:linear-gradient(#f7f7f7,#e2e2e2);display:flex;height:42px}.graphiql-container .tab{align-items:center;border-bottom-style:none;border-left:1px solid #d3d3d3;border-right-style:none;border-top-style:none;color:rgba(0,0,0,.6);cursor:pointer;display:flex;height:100%;justify-content:center;padding-left:14px;padding-right:6px;padding-top:0;position:relative}.graphiql-container .tab:first-child:nth-last-child(2){padding-right:14px}.graphiql-container .tab:hover{background-image:linear-gradient(hsla(0,0%,96%,.7),#d7d7d7);color:rgba(0,0,0,.8)}.graphiql-container .tab.active{background-image:linear-gradient(hsla(0,0%,91%,.7),#cdcdcd);color:#000}.graphiql-container .tab .close{background:transparent;border:none;border-radius:4px;cursor:pointer;display:inline-block;margin-left:6px;padding:3px 6px}.graphiql-container .tab.active .close,.graphiql-container .tab:hover .close{opacity:1}.graphiql-container .tab .close:before{color:rgba(0,0,0,.7);content:"✕";display:inline-block;font-size:12px;font-weight:700;height:14px}.graphiql-container .tab .close:hover{background:rgba(0,0,0,.08)}.graphiql-container .tab .close:active{background:rgba(0,0,0,.12)}.graphiql-container .tab-add{align-items:center;background:transparent;border:none;border-radius:4px;color:rgba(0,0,0,.5);cursor:pointer;display:flex;font-size:26px;height:30px;justify-content:center;line-height:1;margin-left:6px;padding:0 8px 3px}.graphiql-container .tab-add:hover{background:rgba(0,0,0,.06)}.graphiql-container .tab-add:active{background:rgba(0,0,0,.1)}.graphiql-container .CodeMirror-foldmarker{background:#08f;background:linear-gradient(#43a8ff,#0f83e8);border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.2),inset 0 0 0 1px rgba(0,0,0,.1);color:#fff;font-family:arial;font-size:12px;line-height:0;margin:0 3px;padding:0 4px 1px;text-shadow:0 -1px rgba(0,0,0,.1)}.graphiql-container div.CodeMirror span.CodeMirror-matchingbracket{color:#555;text-decoration:underline}.graphiql-container div.CodeMirror span.CodeMirror-nonmatchingbracket{color:red}.cm-comment{color:#666}.cm-punctuation{color:#555}.cm-keyword{color:#b11a04}.cm-def{color:#d2054e}.cm-property{color:#1f61a0}.cm-qualifier{color:#1c92a9}.cm-attribute{color:#8b2bb9}.cm-number{color:#2882f9}.cm-string{color:#d64292}.cm-builtin{color:#d47509}.cm-string-2{color:#0b7fc7}.cm-variable{color:#397d13}.cm-meta{color:#b33086}.cm-atom{color:#ca9800}.CodeMirror{color:#000;font-family:monospace;height:300px}.CodeMirror-lines{padding:4px 0}.CodeMirror pre{padding:0 4px}.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#fff}.CodeMirror-gutters{background-color:#f7f7f7;border-right:1px solid #ddd;white-space:nowrap}.CodeMirror-linenumber{color:#666;min-width:20px;padding:0 3px 0 5px;text-align:right;white-space:nowrap}.CodeMirror-guttermarker{color:#000}.CodeMirror-guttermarker-subtle{color:#666}.CodeMirror .CodeMirror-cursor{border-left:1px solid #000}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.CodeMirror.cm-fat-cursor div.CodeMirror-cursor{background:#7e7;border:0;width:auto}.CodeMirror.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-animate-fat-cursor{-webkit-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite;border:0;width:auto}@-webkit-keyframes blink{0%{background:#7e7}50%{background:none}to{background:#7e7}}@keyframes blink{0%{background:#7e7}50%{background:none}to{background:#7e7}}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-ruler{border-left:1px solid #ccc;position:absolute}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-variable-3{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta,.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#666}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-header{color:#00f}.cm-s-default .cm-quote{color:#090}.cm-s-default .cm-hr{color:#666}.cm-s-default .cm-link{color:#00c}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:700}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-invalidchar,.cm-s-default .cm-error{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0f0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#f22}.CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{background:#fff;overflow:hidden;position:relative}.CodeMirror-scroll{height:100%;margin-bottom:-30px;margin-right:-30px;outline:none;overflow:scroll!important;padding-bottom:30px;position:relative}.CodeMirror-sizer{border-right:30px solid transparent;position:relative}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{display:none;position:absolute;z-index:6}.CodeMirror-vscrollbar{overflow-x:hidden;overflow-y:scroll;right:0;top:0}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-x:scroll;overflow-y:hidden}.CodeMirror-scrollbar-filler{bottom:0;right:0}.CodeMirror-gutter-filler{bottom:0;left:0}.CodeMirror-gutters{left:0;min-height:100%;position:absolute;top:0;z-index:3}.CodeMirror-gutter{display:inline-block;height:100%;margin-bottom:-30px;vertical-align:top;white-space:normal}.CodeMirror-gutter-wrapper{background:none!important;border:none!important;position:absolute;z-index:4}.CodeMirror-gutter-background{bottom:0;position:absolute;top:0;z-index:4}.CodeMirror-gutter-elt{cursor:default;position:absolute;z-index:4}.CodeMirror-gutter-wrapper{-webkit-user-select:none;user-select:none}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre{-webkit-tap-highlight-color:transparent;-webkit-font-feature-settings:none;font-feature-settings:none;word-wrap:normal;background:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;-webkit-font-variant-ligatures:none;font-variant-ligatures:none;line-height:inherit;margin:0;overflow:visible;position:relative;white-space:pre;z-index:2}.CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{bottom:0;left:0;position:absolute;right:0;top:0;z-index:0}.CodeMirror-linewidget{overflow:auto;position:relative;z-index:2}.CodeMirror-code{outline:none}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber,.CodeMirror-scroll,.CodeMirror-sizer{box-sizing:initial}.CodeMirror-measure{height:0;overflow:hidden;position:absolute;visibility:hidden;width:100%}.CodeMirror-cursor{position:absolute}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{position:relative;visibility:hidden;z-index:3}.CodeMirror-focused div.CodeMirror-cursors,div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background:#ffa;background:rgba(255,255,0,.4)}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:""}span.CodeMirror-selectedtext{background:none}.CodeMirror-dialog{background:inherit;color:inherit;left:0;overflow:hidden;padding:.1em .8em;position:absolute;right:0;z-index:15}.CodeMirror-dialog-top{border-bottom:1px solid #eee;top:0}.CodeMirror-dialog-bottom{border-top:1px solid #eee;bottom:0}.CodeMirror-dialog input{background:transparent;border:1px solid #d3d6db;color:inherit;font-family:monospace;outline:none;width:20em}.CodeMirror-dialog button{font-size:70%}.CodeMirror-foldmarker{color:#00f;cursor:pointer;font-family:arial;line-height:.3;text-shadow:#b9f 1px 1px 2px,#b9f -1px -1px 2px,#b9f 1px -1px 2px,#b9f -1px 1px 2px}.CodeMirror-foldgutter{width:.7em}.CodeMirror-foldgutter-folded,.CodeMirror-foldgutter-open{cursor:pointer}.CodeMirror-foldgutter-open:after{content:"\25BE"}.CodeMirror-foldgutter-folded:after{content:"\25B8"}.CodeMirror-info{background:#fff;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.45);box-sizing:border-box;color:#555;font-family:system,-apple-system,San Francisco,\.SFNSDisplay-Regular,Segoe UI,Segoe,Segoe WP,Helvetica Neue,helvetica,Lucida Grande,arial,sans-serif;font-size:13px;line-height:16px;margin:8px -8px;max-width:400px;opacity:0;overflow:hidden;padding:8px;position:fixed;transition:opacity .15s;z-index:50}.CodeMirror-info :first-child{margin-top:0}.CodeMirror-info :last-child{margin-bottom:0}.CodeMirror-info p{margin:1em 0}.CodeMirror-info .info-description{color:#777;line-height:16px;margin-top:1em;max-height:80px;overflow:hidden}.CodeMirror-info .info-deprecation{background:#fffae8;box-shadow:inset 0 1px 1px -1px #bfb063;color:#867f70;line-height:16px;margin:8px -8px -8px;max-height:80px;overflow:hidden;padding:8px}.CodeMirror-info .info-deprecation-label{color:#c79b2e;cursor:default;display:block;font-size:9px;font-weight:700;letter-spacing:1px;line-height:1;padding-bottom:5px;text-transform:uppercase;-webkit-user-select:none;user-select:none}.CodeMirror-info .info-deprecation-label+*{margin-top:0}.CodeMirror-info a{text-decoration:none}.CodeMirror-info a:hover{text-decoration:underline}.CodeMirror-info .type-name{color:#ca9800}.CodeMirror-info .field-name{color:#1f61a0}.CodeMirror-info .enum-value{color:#0b7fc7}.CodeMirror-info .arg-name{color:#8b2bb9}.CodeMirror-info .directive-name{color:#b33086}.CodeMirror-jump-token{cursor:pointer;text-decoration:underline}.CodeMirror-lint-markers{width:16px}.CodeMirror-lint-tooltip{background-color:infobackground;border:1px solid #000;border-radius:4px 4px 4px 4px;color:infotext;font-family:monospace;font-size:10pt;max-width:600px;opacity:0;overflow:hidden;padding:2px 5px;position:fixed;transition:opacity .4s;white-space:pre-wrap;z-index:100}.CodeMirror-lint-mark-error,.CodeMirror-lint-mark-warning{background-position:0 100%;background-repeat:repeat-x}.CodeMirror-lint-mark-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJDw4cOCW1/KIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAHElEQVQI12NggIL/DAz/GdA5/xkY/qPKMDAwAADLZwf5rvm+LQAAAABJRU5ErkJggg==)}.CodeMirror-lint-mark-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJFhQXEbhTg7YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAMklEQVQI12NkgIIvJ3QXMjAwdDN+OaEbysDA4MPAwNDNwMCwiOHLCd1zX07o6kBVGQEAKBANtobskNMAAAAASUVORK5CYII=)}.CodeMirror-lint-marker-error,.CodeMirror-lint-marker-warning{background-position:50%;background-repeat:no-repeat;cursor:pointer;display:inline-block;height:16px;position:relative;vertical-align:middle;width:16px}.CodeMirror-lint-message-error,.CodeMirror-lint-message-warning{background-position:0 0;background-repeat:no-repeat;padding-left:18px}.CodeMirror-lint-marker-error,.CodeMirror-lint-message-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAHlBMVEW7AAC7AACxAAC7AAC7AAAAAAC4AAC5AAD///+7AAAUdclpAAAABnRSTlMXnORSiwCK0ZKSAAAATUlEQVR42mWPOQ7AQAgDuQLx/z8csYRmPRIFIwRGnosRrpamvkKi0FTIiMASR3hhKW+hAN6/tIWhu9PDWiTGNEkTtIOucA5Oyr9ckPgAWm0GPBog6v4AAAAASUVORK5CYII=)}.CodeMirror-lint-marker-warning,.CodeMirror-lint-message-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAANlBMVEX/uwDvrwD/uwD/uwD/uwD/uwD/uwD/uwD/uwD6twD/uwAAAADurwD2tQD7uAD+ugAAAAD/uwDhmeTRAAAADHRSTlMJ8mN1EYcbmiixgACm7WbuAAAAVklEQVR42n3PUQqAIBBFUU1LLc3u/jdbOJoW1P08DA9Gba8+YWJ6gNJoNYIBzAA2chBth5kLmG9YUoG0NHAUwFXwO9LuBQL1giCQb8gC9Oro2vp5rncCIY8L8uEx5ZkAAAAASUVORK5CYII=)}.CodeMirror-lint-marker-multiple{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAACVBMVEUAAAAAAAC/v7914kyHAAAAAXRSTlMAQObYZgAAACNJREFUeNo1ioEJAAAIwmz/H90iFFSGJgFMe3gaLZ0od+9/AQZ0ADosbYraAAAAAElFTkSuQmCC);background-position:100% 100%;background-repeat:no-repeat;height:100%;width:100%}.graphiql-container .spinner-container{height:36px;left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:36px;z-index:10}.graphiql-container .spinner{-webkit-animation:rotation .6s linear infinite;animation:rotation .6s linear infinite;border:6px solid hsla(0,0%,59%,.15);border-radius:100%;border-top-color:hsla(0,0%,59%,.8);display:inline-block;height:24px;position:absolute;vertical-align:middle;width:24px}@-webkit-keyframes rotation{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes rotation{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.CodeMirror-hints{background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.45);font-family:Consolas,Inconsolata,Droid Sans Mono,Monaco,monospace;font-size:13px;list-style:none;margin:0;max-height:14.5em;overflow:hidden;overflow-y:auto;padding:0;position:absolute;z-index:10}.CodeMirror-hint{border-top:1px solid #f7f7f7;color:#141823;cursor:pointer;margin:0;max-width:300px;overflow:hidden;padding:2px 6px;white-space:pre}li.CodeMirror-hint-active{background-color:#08f;border-top-color:#fff;color:#fff}.CodeMirror-hint-information{border-top:1px solid silver;max-width:300px;padding:4px 6px;position:relative;z-index:1}.CodeMirror-hint-information:first-child{border-bottom:1px solid silver;border-top:none;margin-bottom:-1px}.CodeMirror-hint-deprecation{background:#fffae8;box-shadow:inset 0 1px 1px -1px #bfb063;color:#867f70;font-family:system,-apple-system,San Francisco,\.SFNSDisplay-Regular,Segoe UI,Segoe,Segoe WP,Helvetica Neue,helvetica,Lucida Grande,arial,sans-serif;font-size:13px;line-height:16px;margin-top:4px;max-height:80px;overflow:hidden;padding:6px}.CodeMirror-hint-deprecation .deprecation-label{color:#c79b2e;cursor:default;display:block;font-size:9px;font-weight:700;letter-spacing:1px;line-height:1;padding-bottom:5px;text-transform:uppercase;-webkit-user-select:none;user-select:none}.CodeMirror-hint-deprecation .deprecation-label+*{margin-top:0}.CodeMirror-hint-deprecation :last-child{margin-bottom:0}.graphiql-container .doc-explorer{background:#fff}.graphiql-container .doc-explorer-title-bar,.graphiql-container .history-title-bar{cursor:default;display:flex;height:34px;line-height:14px;padding:8px 8px 5px;position:relative;-webkit-user-select:none;user-select:none}.graphiql-container .doc-explorer-title,.graphiql-container .history-title{flex:1 1;font-weight:700;overflow-x:hidden;padding:10px 0 10px 10px;text-align:center;text-overflow:ellipsis;-webkit-user-select:text;user-select:text;white-space:nowrap}.graphiql-container .doc-explorer-back{background:0;border:0;color:#3b5998;cursor:pointer;line-height:14px;margin:-7px 0 -6px -8px;overflow-x:hidden;padding:17px 12px 16px 16px;text-overflow:ellipsis;white-space:nowrap}.doc-explorer-narrow .doc-explorer-back{width:0}.graphiql-container .doc-explorer-back:before{border-left:2px solid #3b5998;border-top:2px solid #3b5998;content:"";display:inline-block;height:9px;margin:0 3px -1px 0;position:relative;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);width:9px}.graphiql-container .doc-explorer-rhs{position:relative}.graphiql-container .doc-explorer-contents,.graphiql-container .history-contents{background-color:#fff;border-top:1px solid #d6d6d6;bottom:0;left:0;overflow-y:auto;padding:20px 15px;position:absolute;right:0;top:47px}.graphiql-container .doc-explorer-contents{min-width:300px}.graphiql-container .doc-type-description blockquote:first-child,.graphiql-container .doc-type-description p:first-child{margin-top:0}.graphiql-container .doc-explorer-contents a{cursor:pointer;text-decoration:none}.graphiql-container .doc-explorer-contents a:hover{text-decoration:underline}.graphiql-container .doc-value-description>:first-child{margin-top:4px}.graphiql-container .doc-value-description>:last-child{margin-bottom:4px}.graphiql-container .doc-category code,.graphiql-container .doc-category pre,.graphiql-container .doc-type-description code,.graphiql-container .doc-type-description pre{--saf-0:rgba(var(--sk_foreground_low,29,28,29),0.13);-webkit-font-feature-settings:none;font-feature-settings:none;word-wrap:break-word;font-size:12px;-webkit-font-variant-ligatures:none;font-variant-ligatures:none;line-height:1.50001;-webkit-tab-size:4;tab-size:4;white-space:pre;white-space:pre-wrap;word-break:normal}.graphiql-container .doc-category code,.graphiql-container .doc-type-description code{background-color:rgba(29,28,29,.04);background-color:rgba(var(--sk_foreground_min,29,28,29),.04);background-color:#fff;border:1px solid var(--saf-0);border-radius:3px;color:#e01e5a;padding:2px 3px 1px}.graphiql-container .doc-category{margin:20px 0}.graphiql-container .doc-category-title{-webkit-font-feature-settings:"smcp";font-feature-settings:"smcp";border-bottom:1px solid #e0e0e0;color:#777;cursor:default;font-size:14px;font-variant:small-caps;font-weight:700;letter-spacing:1px;margin:0 -15px 10px 0;padding:10px 0;-webkit-user-select:none;user-select:none}.graphiql-container .doc-category-item{color:#555;margin:12px 0}.graphiql-container .keyword{color:#b11a04}.graphiql-container .type-name{color:#ca9800}.graphiql-container .field-name{color:#1f61a0}.graphiql-container .field-short-description{color:#666;margin-left:5px;overflow:hidden;text-overflow:ellipsis}.graphiql-container .enum-value{color:#0b7fc7}.graphiql-container .arg-name{color:#8b2bb9}.graphiql-container .arg{display:block;margin-left:1em}.graphiql-container .arg:first-child:last-child,.graphiql-container .arg:first-child:nth-last-child(2),.graphiql-container .arg:first-child:nth-last-child(2)~.arg{display:inherit;margin:inherit}.graphiql-container .arg:first-child:nth-last-child(2):after{content:", "}.graphiql-container .arg-default-value{color:#43a047}.graphiql-container .doc-deprecation{background:#fffae8;border-radius:3px;box-shadow:inset 0 0 1px #bfb063;color:#867f70;line-height:16px;margin:8px -8px;max-height:80px;overflow:hidden;padding:8px}.graphiql-container .doc-deprecation:before{color:#c79b2e;content:"Deprecated:";cursor:default;display:block;font-size:9px;font-weight:700;letter-spacing:1px;line-height:1;padding-bottom:5px;text-transform:uppercase;-webkit-user-select:none;user-select:none}.graphiql-container .doc-deprecation>:first-child{margin-top:0}.graphiql-container .doc-deprecation>:last-child{margin-bottom:0}.graphiql-container .show-btn{-webkit-appearance:initial;background:#fbfcfc;border:1px solid #ccc;border-radius:3px;box-sizing:border-box;color:#555;cursor:pointer;display:block;padding:8px 12px 10px;text-align:center;width:100%}.graphiql-container .search-box{align-items:center;border-bottom:1px solid #d3d6db;display:flex;font-size:14px;margin:-15px -15px 12px 0;position:relative}.graphiql-container .search-box-icon{cursor:pointer;display:block;font-size:24px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-user-select:none;user-select:none}.graphiql-container .search-box .search-box-clear{background-color:#d0d0d0;border:0;border-radius:12px;color:#fff;cursor:pointer;font-size:11px;padding:1px 5px 2px;position:absolute;right:3px;-webkit-user-select:none;user-select:none}.graphiql-container .search-box .search-box-clear:hover{background-color:#b9b9b9}.graphiql-container .search-box>input{border:none;box-sizing:border-box;font-size:14px;outline:none;padding:6px 24px 8px 20px;width:100%}.graphiql-container .error-container{font-weight:700;left:0;letter-spacing:1px;opacity:.5;position:absolute;right:0;text-align:center;text-transform:uppercase;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.graphiql-container .history-contents{font-family:Consolas,Inconsolata,Droid Sans Mono,Monaco,monospace;margin:0;padding:0}.graphiql-container .history-contents li{align-items:center;border-bottom:1px solid #e0e0e0;display:flex;font-size:12px;margin:0;overflow:hidden;padding:8px;text-overflow:ellipsis;white-space:nowrap}.graphiql-container .history-contents li button:not(.history-label){display:none;margin-left:10px}.graphiql-container .history-contents li:focus-within button:not(.history-label),.graphiql-container .history-contents li:hover button:not(.history-label){display:inline-block}.graphiql-container .history-contents button,.graphiql-container .history-contents input{background:0;border:0;color:inherit;font-family:inherit;font-size:inherit;line-height:14px;padding:0}.graphiql-container .history-contents input{flex-grow:1}.graphiql-container .history-contents input::-webkit-input-placeholder{color:inherit}.graphiql-container .history-contents input::placeholder{color:inherit}.graphiql-container .history-contents button{cursor:pointer;text-align:left}.graphiql-container .history-contents .history-label{flex-grow:1;overflow:hidden;text-overflow:ellipsis}.graphiql-code-exporter .CodeMirror{background:transparent;font-size:11px;position:relative}.graphiql-code-exporter .CodeMirror-lines{padding-top:0}.graphiql-container .error-or-loading{align-items:center;display:flex;flex-direction:column;height:100vh;justify-content:center;width:100vw}.graphiql-container .error-or-loading .logo{width:300px}.graphiql-container .graphiql-explorer-actions{overflow:hidden}.graphiql-container .graphiql-explorer-root>div>div{padding-left:3px}.graphiql-container .title{width:100px}.graphiql-container .title img{display:block}.graphiql-container .toolbar{width:100%}.graphiql-container .endpoint{-webkit-font-feature-settings:"smcp";font-feature-settings:"smcp";background:#eee;color:#000;font-variant:small-caps;font-weight:700;height:15px;letter-spacing:1px;line-height:14px;overflow:hidden;padding:6px 0 8px 13px;text-overflow:ellipsis;text-transform:lowercase;white-space:nowrap;width:100%}.graphiql-container .history-contents button[aria-label]{font-size:20px}.graphiql-container .history-contents button[aria-label].favorited{display:block}.graphiql-container .docExplorerWrap{z-index:15!important}.graphiql-container .graphiql-operation-title-bar button{height:20px!important;margin-left:5px!important;vertical-align:middle;width:20px!important}.graphiql-container .graphiql-operation-title-bar input{font-family:Consolas,Inconsolata,Droid Sans Mono,Monaco,monospace}.graphiql-container .graphiql-explorer-actions select{margin-left:5px;margin-right:5px}body{margin:0;overflow:hidden}#root,body{height:100vh}h1,h2,h3,h4,h5,h6,p{margin:0 0 20px;padding:0}h1:last-child,h2:last-child,h3:last-child,h4:last-child,h5:last-child,h6:last-child,p:last-child{margin-bottom:0}hr{border:0;border-bottom:1px solid #eaeaea;margin:0 0 10px;padding:5px 0}pre{white-space:pre-wrap}.sr-only{clip:rect(0,0,0,0);border-width:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}
|
|
2
|
+
/*# sourceMappingURL=main.4fb42d49.css.map*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"static/css/main.4fb42d49.css","mappings":"AAAA,SACE,kBAAmB,CACnB,YAAa,CACb,WAAY,CACZ,sBAAuB,CACvB,iBAAkB,CAClB,UAAW,CANb,eASI,qCAA8B,CAA9B,6BAA8B,CAC9B,8BAAwB,CAAxB,sBAAwB,CACxB,0CAAmC,CAAnC,kCAAmC,CACnC,6BAAsB,CAAtB,qBAAsB,CACtB,8DAA8D,CAA9D,sDAA8D,CAC9D,WAAY,CACZ,WAAY,CACb,0BAID,GACE,yEAAiC,CAEnC,GACE,mFAAyC,EAR1C,kBAID,GACE,yEAAiC,CAEnC,GACE,mFAAyC,ECxB7C,uBASE,kBAAmB,CAHnB,+BAAsC,CAHtC,QAAS,CAKT,YAAa,CAEb,uBANA,MAAO,CAHP,cAAe,CAIf,OAAQ,CAHR,KAAM,CAKN,YAGuB,CACxB,mBAGC,qBAAuB,CAMvB,iBAAkB,CAGlB,oCAPA,WAAY,CAGZ,mBAA4B,CAD5B,iBAAkB,CAHlB,WAQwC,CACzC,6BAGC,gBAAiB,CAClB,wBAQC,6BAAkC,CADlC,wBAAyB,CAJzB,iBAAkB,CAClB,sBAAuB,CACvB,yBAA0B,CAI1B,cAHA,WAGc,CACf,6BAKC,eAFA,eAAgB,CAChB,SACe,CC3CjB,oBACE,eAAgB,CAChB,kCAAuC,CACvC,YAAa,CACb,qBAAsB,CACtB,aAAc,CACd,iBAAkB,CAClB,WAAY,CACZ,UAAW,CACZ,yBAGC,cAAe,CACf,YAAa,CACb,WAAY,CACZ,gBAAiB,CACjB,mBAAoB,CACpB,iBAAkB,CAClB,wBAAyB,CACzB,gBAAiB,CARnB,8CAWI,QAAS,CACT,eAAgB,CAChB,iBAAkB,CAClB,wBAAyB,CACzB,iBAAkB,CAClB,sBAAuB,CACvB,wBAAiB,CAAjB,gBAAiB,CACjB,kBAAmB,CAlBvB,8CA0BI,YAAa,CACb,QAAS,CALT,cAAe,CACf,cAAe,CAKf,iBAJA,uBAAwB,CACxB,2BAGiB,CAClB,uBAID,qBAAsB,CACtB,4BAA6B,CAC7B,QAAS,CACT,QAAS,CACT,MAAO,CACP,eAAgB,CAChB,iBAAkB,CAClB,iBAAkB,CAClB,OAAQ,CACR,QAAS,CACV,mCAIG,+BAAgC,CAChC,WAAY,CAHhB,sCAOI,QAAS,CACT,YAAa,CACb,WAAY,CACZ,MAAO,CACP,cAAe,CACf,iBAAkB,CAClB,OAAQ,CACR,yCAAiB,CCtErB,mEAKI,qBAAsB,CAL1B,qCAUM,YAAa,CAVnB,uCAcM,gBAAiB,CAdvB,yCAkBM,4BAA6B,CAC7B,eAAgB,CAChB,gBAAiB,CApBvB,gDA0BI,aAAc,CACd,cAAe,CACf,kBAAmB,CA5BvB,oGA+BM,eAAgB,CAChB,eAAgB,CAhCtB,4HAoCM,eAAgB,CApCtB,+CAyCI,WAAY,CACZ,iBAAkB,CAClB,UAAW,CA3Cf,kGAgDI,uBAAgB,CAAhB,eAAgB,CAChB,qBAAsB,CACtB,iBAAkB,CAClB,UAAW,CACX,oBAAqB,CACrB,mBAAoB,CACpB,cAAe,CACf,WAAY,CACZ,WAAY,CACZ,UAAW,CAzDf,sIA4DM,eAAgB,CA5DtB,6BAiEI,uBAAgB,CAAhB,eAAgB,CAChB,qBAAsB,CACtB,iBAAkB,CAClB,UAAW,CACX,oBAAqB,CACrB,mBAAoB,CACpB,cAAe,CACf,WAAY,CACZ,UAAW,CAzEf,iDA4EM,eAAgB,CA5EtB,2BAiFI,kBAAmB,CACnB,kBAAmB,CACnB,QAAS,CACT,iBAAkB,CAClB,UAAW,CACX,cAAe,CACf,oBAAqB,CACrB,mBAAoB,CACpB,cAAe,CACf,eAAgB,CAChB,WAAY,CACZ,sBAAuB,CACvB,aAAc,CACd,aAAc,CA9FlB,6CAiGM,cAAe,CACf,UAAY,CAlGlB,2CAsGM,eAAgB,CAChB,aAAc,CAvGpB,qDA2GM,eAAgB,CAChB,UAAW,CA5GjB,2CAgHM,gBAAiB,CAhHvB,gFAuHM,oBAAqB,CACrB,WAAY,CACZ,gBAAiB,CACjB,SAAU,CACV,qBAAsB,CA3H5B,4QAgIM,qBAAsB,CACtB,iBAAkB,CAClB,oBAAqB,CACrB,WAAY,CACZ,iBAAkB,CAClB,iBAAkB,CAClB,QAAS,CACT,qBAAsB,CACtB,UAAW,CCxIjB,mBACE,QAAO,CADT,yBAII,YAAa,CAJjB,8BAOM,gBAAiB,CACjB,kBAAmB,CARzB,wCAaI,eAAgB,CAbpB,iDAgBM,cAAe,CChBrB,cAUE,0BAA2B,CAO3B,yCAA0C,CAC1C,uCAAwC,CAZxC,wBAA6B,CAC7B,QAAS,CAFT,cAAe,CAFf,oBAAqB,CAKrB,SAAU,CAJV,iBAAkB,CAHlB,kBAAmB,CAUnB,wBAAyB,CAIzB,gBAIF,CAEA,gCAEE,kBAAmB,CADnB,QAAS,CAET,UAAW,CACX,WAAY,CACZ,eAAgB,CAChB,SAAU,CACV,iBAAkB,CAClB,SACF,CAEA,wBACE,kBAAmB,CACnB,UAAY,CAEZ,uBACF,CAEA,oBAKE,wBAAyB,CADzB,kBAAmB,CAFnB,WAAY,CACZ,SAAU,CAKV,uBAAyB,CAPzB,UAQF,CAEA,qEACE,qBACF,CAEA,2CACE,wBACF,CAEA,8EACE,wBACF,CAEA,0BAKE,QAAW,CAFX,WAAY,CAMZ,QAAS,CADT,aAAc,CADd,kBAAmB,CADnB,eAAgB,CAIhB,SAAU,CATV,iBAAkB,CAGlB,KAAQ,CASR,4BAA8B,CAX9B,UAYF,CASA,uEANE,SAAU,CAGV,4BAiBF,CAdA,sBAKE,QAAW,CAFX,WAAY,CAKZ,aAAc,CADd,kBAAmB,CADnB,eAAgB,CALhB,iBAAkB,CAQlB,UAAW,CALX,KAAQ,CAFR,UAYF,CAEA,6CACE,SACF,CAEA,oBASE,wBAAyB,CAFzB,wBAAyB,CACzB,iBAAkB,CAKlB,qBAAsB,CAPtB,WAAY,CAFZ,QAAS,CAFT,iBAAkB,CAClB,OAAQ,CAFR,gDAAuD,CAgBvD,wBAA0B,CAZ1B,UAaF,CAEA,2CAEE,oBAAqB,CADrB,SAEF,CAEA,yCAGE,8BACF,CAEA,sEAGE,8BACF,CC5IA,6BACE,eAAgB,CCDlB,qCACE,2CAA6C,CAK7C,WAAgB,CAAhB,+BAAgB,CAAhB,oCAAgB,CAJhB,eAAgB,CAKhB,aAAc,CACd,cAAe,CACf,cAAe,CACf,WAAY,CACZ,6BAA8B,CAC9B,uBAAwB,CAZ1B,yCAeI,cAAe,CACf,eAAgB,CAChB,qBAAsB,CAjB1B,4CAqBI,6BAA8B,CAC9B,4BAA6B,CAC7B,UAAW,CACX,oBAAqB,CACrB,UAAW,CACX,mBAAoB,CACpB,iBAAkB,CAClB,gCAAyB,CAAzB,wBAAyB,CACzB,SAAU,CC7Bd,yEAAyE,aAAa,CAAC,oJAAoJ,CAAC,cAAc,CAAC,oBAAoB,YAAY,CAAC,kBAAkB,CAAC,WAAW,CAAC,QAAQ,CAAC,eAAe,CAAC,UAAU,CAAC,gCAAgC,YAAY,CAAuB,QAAM,CAA5B,qBAAqB,CAAQ,iBAAiB,CAAC,2BAA2B,cAAc,CAAC,8BAA8B,mBAAmB,CAAC,cAAc,CAAiE,4DAAhC,YAAY,CAAC,kBAAwQ,CAArP,4BAA4B,kBAAkB,CAAC,2CAA2C,CAAC,+BAA+B,CAAC,cAAc,CAAiC,QAAM,CAAC,WAAW,CAAC,kBAAkB,CAAC,oBAAoB,CAAC,yCAAgB,CAAC,6BAAgD,YAAW,CAA9B,kBAA+B,CAAC,sEAAsE,2CAA2C,CAAiB,+BAA+B,CAA/C,eAAe,CAAiC,iBAAiB,CAAC,eAAe,CAAC,aAAa,CAAC,cAAc,CAAC,cAAc,CAAC,QAAQ,CAAC,uBAAuB,CAAC,qCAAqC,oCAAoC,CAAC,iCAAuE,aAAY,CAAlD,qCAAmD,CAAC,4CAA4C,6BAA6B,CAAC,4BAA4B,CAAC,UAAU,CAAC,oBAAoB,CAAC,UAAU,CAAC,mBAAmB,CAAC,iBAAiB,CAAC,gCAAwB,CAAxB,wBAAwB,CAAC,SAAS,CAAC,+BAA+B,YAAY,CAAoB,QAAM,CAAzB,kBAAkB,CAAQ,eAAe,CAAC,+DAA+D,YAAY,CAAuB,SAAtB,qBAA4B,CAAC,gCAAgC,6BAA6B,CAAC,cAAc,CAAC,iBAAiB,CAAC,0EAA0E,eAAe,CAAC,kCAAkC,CAAC,iBAAiB,CAAC,SAAS,CAAC,qCAAqC,eAAe,CAAC,SAAS,CAAC,wCAAwC,iBAAiB,CAAC,WAAW,CAAC,SAAS,CAAC,iBAAiB,CAAC,KAAK,CAAC,UAAU,CAAC,UAAU,CAAC,qCAAuH,YAAY,CAAC,QAAQ,CAAvG,cAAc,CAAC,cAAc,CAA2E,gBAAe,CAAzF,uBAAuB,CAAC,2BAAkE,CAAC,sCAAsC,QAAM,CAAC,iBAAiB,CAAC,sCAAsC,YAAY,CAAC,qBAAqB,CAAC,WAAW,CAAC,iBAAiB,CAAC,4CAAoI,oCAAuB,CAAvB,4BAAuB,CAA/G,eAAe,CAAC,+BAA+B,CAAC,4BAA4B,CAAC,UAAU,CAAC,uBAAuB,CAAC,eAAe,CAAC,kBAAkB,CAAC,gBAAgB,CAAC,sBAAsB,CAAC,wBAAwB,CAAC,yCAAgB,CAAC,uEAAuE,QAAM,CAAC,WAAW,CAAC,iBAAiB,CAAC,4BAA4B,kBAAkB,CAAC,6BAA6B,CAAC,4BAA4B,CAAC,gBAAgB,CAAC,iBAAiB,CAAC,mCAAmC,eAAe,CAAC,QAAQ,CAAC,WAAW,CAAC,UAAU,CAAC,iBAAiB,CAAC,QAAQ,CAAC,UAAU,CAAC,yCAAyC,kBAAkB,CAAC,uDAAuD,qBAAqB,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,sMAAsM,gBAAgB,CAAC,oCAAoC,kBAAkB,CAAC,2CAA2C,CAAC,QAAQ,CAAC,iBAAiB,CAAC,qFAAqF,CAAC,UAAU,CAAC,cAAc,CAAC,oBAAoB,CAAC,YAAY,CAAqF,eAAc,CAAlG,oBAAoB,CAAC,oBAAoB,CAAC,sBAAsB,CAAC,kBAAkC,CAAC,2CAA2C,2CAA2C,CAAC,qIAAqI,CAAC,0CAA0C,2CAA2C,CAAC,UAAU,CAAC,0CAA0C,YAAY,CAAC,kBAAkB,CAAC,4CAA4C,QAAQ,CAAC,4DAAsF,4BAA2B,CAArD,yBAAsD,CAAC,6DAAsF,2BAA2B,CAApD,wBAAwB,CAA6B,gBAAgB,CAAC,yCAAyC,WAAW,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,oCAA2K,SAAS,CAAhJ,2CAA2C,CAAoB,gCAAgC,CAAnD,kBAAkB,CAAkC,uBAAuB,CAAC,cAAc,CAAW,WAAW,CAAC,QAAQ,CAAC,SAAS,CAAC,UAAU,CAAC,gFAAgF,mBAAmB,CAAC,2CAA2C,2CAA2C,CAAC,iFAAiF,CAAC,sEAAsE,iBAAiB,CAAC,yHAAyH,eAAe,CAAC,6DAA6D,CAAC,QAAQ,CAAC,aAAa,CAAC,iBAAiB,CAAC,WAAW,CAAC,qCAA8D,SAAQ,CAAjC,eAAe,CAAC,QAAkB,CAAC,wCAAwC,QAAQ,CAAC,eAAe,CAAC,cAAc,CAAC,QAAQ,CAAC,iBAAiB,CAAC,6CAA6C,kBAAkB,CAAC,4CAA4C,MAAM,CAAC,cAAc,CAAC,QAAQ,CAAC,iBAAiB,CAAC,iDAAiD,kBAAkB,CAAC,kIAAkI,cAAc,CAAC,aAAa,CAAC,WAAW,CAAC,eAAe,CAAC,eAAe,CAAC,yBAAyB,CAAC,kBAAkB,CAAC,ocAAoc,kBAAkB,CAAC,UAAU,CAAC,mDAAkE,SAAS,CAAxB,cAAc,CAAW,mBAAmB,CAAC,mBAAmB,CAAC,qBAAqB,CAAC,4KAA4K,SAAS,CAAC,uCAAuC,wBAAwB,CAAC,gCAAgC,aAAa,CAAC,iEAAiE,CAAC,cAAc,CAAC,WAAW,CAAC,MAAM,CAAC,iBAAiB,CAAC,KAAK,CAAC,UAAU,CAAC,sCAAsC,cAAc,CAAC,sCAAsC,mBAAmB,CAAgM,YAAY,CAA3M,aAAa,CAAC,YAAY,CAAC,oJAAoJ,CAAC,cAAc,CAAc,gBAAgB,CAAC,eAAe,CAAC,eAAe,CAAC,kCAAkC,CAAC,oDAAoD,YAAY,CAAC,mDAAmD,eAAe,CAAC,uCAAuC,aAAa,CAAC,cAAc,CAAC,cAAc,CAAC,iBAAiB,CAAC,8BAA8B,6BAAqB,CAArB,qBAAqB,CAAC,oCAA4B,CAA5B,4BAA4B,CAAC,yCAAyC,CAAC,iBAAiB,CAAC,qBAAqB,CAAC,mBAAmB,CAAC,iCAAyB,MAAM,4BAA4B,CAAC,8BAA8B,CAAC,QAAQ,kBAAkB,CAAC,oBAAoB,CAAC,CAA3I,yBAAyB,MAAM,4BAA4B,CAAC,8BAA8B,CAAC,QAAQ,kBAAkB,CAAC,oBAAoB,CAAC,CAAC,4BAA4B,qBAAqB,CAAmB,QAAQ,CAA1B,iBAAiB,CAAwB,oCAAoC,CAAlD,aAAa,CAAsC,cAAc,CAAC,gBAAgB,CAAC,eAAe,CAAC,SAAS,CAAC,gBAAgB,CAAC,uBAAuB,CAAC,oBAAoB,CAAC,8BAA8B,iBAAiB,CAAC,gCAAgC,eAAe,CAAC,gDAAoF,UAAS,CAA7C,cAAc,CAAC,oBAA+B,CAAC,uDAAuD,UAAU,CAAC,0BAAqG,kBAAiB,CAAhF,iDAAiD,CAAC,YAAY,CAA1E,WAA6F,CAAC,yBAAuE,kBAAkB,CAA+J,wBAAwB,CAA5E,6BAA6B,CAAgD,uBAAsB,CAArE,qBAAqB,CAAxE,oBAAoB,CAAxJ,cAAc,CAAC,YAAY,CAA6F,WAAW,CAApF,sBAAsB,CAAiC,iBAAiB,CAAnC,iBAAiB,CAA/B,aAAa,CAArG,iBAA+Q,CAAC,uDAAuD,kBAAkB,CAAC,+BAA+B,2DAA6D,CAAC,oBAAoB,CAAC,gCAAgC,2DAA6D,CAAC,UAAU,CAAC,gCAAgF,sBAAsB,CAAlC,WAAW,CAAwD,iBAAgB,CAAlG,cAAc,CAAnC,oBAAoB,CAAmD,eAAe,CAAC,eAAiC,CAAC,6EAA6E,SAAS,CAAC,uCAAuG,oBAAO,CAAvE,WAAQ,CAAI,oBAAS,CAA4B,cAAW,CAA3B,eAAa,CAAuC,WAAQ,CAAI,sCAAsC,0BAAY,CAAe,uCAAuC,0BAAY,CAAe,6BAA0C,kBAAa,CAAyC,sBAAY,CAAxB,WAAQ,CAAoE,iBAAe,CAAG,oBAAO,CAAgD,cAAa,CAAzN,YAAS,CAA+F,cAAW,CAAI,WAAQ,CAA/F,sBAAiB,CAAyC,aAAa,CAAqF,eAAa,CAA/B,iBAA0C,CAAO,mCAAmC,0BAAY,CAAe,oCAAoC,yBAAY,CAAc,2CAA6D,eAAY,CAAI,2CAAY,CAA9C,iBAAe,CAA+D,kEAAqD,CAAc,UAAO,CAAI,iBAAa,CAAK,cAAW,CAAI,aAAa,CAAC,YAAQ,CAAK,iBAAS,CAAS,iCAAoB,CAAc,mEAAmE,UAAO,CAAI,yBAAiB,CAAS,sEAAsE,SAAO,CAAG,YAAY,UAAO,CAAI,gBAAgB,UAAO,CAAI,YAAY,aAAO,CAAO,QAAQ,aAAO,CAAO,aAAa,aAAO,CAAO,cAAc,aAAO,CAAO,cAAc,aAAO,CAAO,WAAW,aAAO,CAAO,WAAW,aAAO,CAAO,YAAY,aAAO,CAAO,aAAa,aAAO,CAAO,aAAa,aAAO,CAAO,SAAS,aAAO,CAAO,SAAS,aAAO,CAAO,YAC93V,UAAO,CAAI,qBAAa,CAAS,YAAQ,CAAK,kBAAkB,aAAS,CAAK,gBAAgB,aAAS,CAAK,uDAAuD,qBAAkB,CAAI,oBAAgD,wBAAkB,CAA9C,2BAAc,CAAuC,kBAAa,CAAM,uBAAuB,UAAO,CAAI,cAAW,CAAI,mBAAS,CAAW,gBAAY,CAAK,kBAAa,CAAM,yBAAyB,UAAO,CAAI,gCAAgC,UAAO,CAAI,+BAA+B,0BAAa,CAAc,2CAA2C,4BAAa,CAAgB,gDAAgD,eAAY,CAAI,QAAQ,CAAC,UAAO,CAAI,iDAAiD,SAAS,CAAC,uBAAuB,+CAAgC,CAAhC,uCAAgC,CAAQ,QAAQ,CAAC,UAAO,CAAI,yBAAW,GAAS,eAAY,CAAI,IAAI,eAAY,CAAI,GAAG,eAAY,CAAI,CAA3E,iBAAW,GAAS,eAAY,CAAI,IAAI,eAAY,CAAI,GAAG,eAAY,CAAI,CAAC,QAAQ,oBAAS,CAAY,uBAAiB,CAAO,kBAAkB,0BAAa,CAAc,iBAAU,CAAQ,0BAA0B,UAAO,CAAI,uBAAuB,UAAO,CAAI,yBAAyB,UAAO,CAAI,sBAAsB,UAAO,CAAI,6BAA6B,UAAO,CAAI,6BAA6B,UAAO,CAAI,0BAA0B,UAAO,CAAI,yBAAyB,UAAO,CAAI,2BAA2B,UAAO,CAAI,mDAAmD,UAAO,CAAI,0BAA0B,UAAO,CAAI,0BAA0B,UAAO,CAAI,sBAAsB,UAAO,CAAI,4BAA4B,UAAO,CAAI,yBAAyB,UAAO,CAAI,wBAAwB,UAAO,CAAI,qBAAqB,UAAO,CAAI,uBAAuB,UAAO,CAAI,aAAa,UAAO,CAAI,aAAa,UAAO,CAAI,sBAAsB,eAAa,CAAG,OAAO,iBAAY,CAAM,SAAS,yBAAiB,CAAS,kBAAkB,4BAAiB,CAAY,wCAAwC,SAAO,CAAG,sBAAsB,uBAAe,CAAS,+CAA+C,UAAO,CAAI,kDAAkD,UAAO,CAAI,wBAAwB,6BAAY,CAAkB,kCAAkC,kBAAY,CAAO,YAAY,eAAY,CAAI,eAAU,CAAM,iBAAU,CAAQ,mBAAmB,WAAQ,CAAI,mBAAe,CAAK,kBAAc,CAAK,YAAS,CAAI,yBAAgB,CAAU,mBAAgB,CAAI,iBAAU,CAAQ,kBAAkB,mCAAc,CAAsB,iBAAU,CAAQ,qGAAqG,YAAS,CAAI,iBAAU,CAAQ,SAAS,CAAC,uBAAuB,iBAAY,CAAM,iBAAY,CAAM,OAAO,CAAC,KAAK,CAAC,uBAAuB,QAAQ,CAAC,MAAM,CAAC,iBAAY,CAAM,iBAAY,CAAM,6BAAqC,SAAR,OAAgB,CAAC,0BAAiC,SAAP,MAAe,CAAC,oBAAsD,MAAM,CAAxC,eAAY,CAAI,iBAAU,CAAe,KAAK,CAAC,SAAS,CAAC,mBAAmB,oBAAS,CAAY,WAAQ,CAAI,mBAAe,CAAK,kBAAgB,CAAG,kBAAa,CAAM,2BAA2B,yBAAgB,CAAU,qBAAY,CAAU,iBAAU,CAAQ,SAAS,CAAC,8BAAsD,QAAQ,CAAhC,iBAAU,CAAQ,KAAK,CAAU,SAAS,CAAC,uBAAuB,cAAQ,CAAO,iBAAU,CAAQ,SAAS,CAAC,2BAA2B,yCAAa,CAAI,kBAAkB,WAAQ,CAAI,cAAY,CAAG,gBAAgB,uCAA6B,CAAqH,kCAAwB,CAAxB,0BAAwB,CAAoF,gBAAW,CAAjO,sBAAY,CAAW,eAAe,CAAC,cAAc,CAAC,aAAO,CAAO,mBAAa,CAAO,iBAAW,CAAO,mCAAwB,CAAxB,2BAAwB,CAAI,mBAAa,CAAO,QAAQ,CAAC,gBAAU,CAAO,iBAAU,CAAQ,eAAa,CAAoB,SAAS,CAAC,qBAAqB,oBAAW,CAAU,oBAAa,CAAQ,iBAAY,CAAM,2BAAkE,QAAQ,CAA7B,MAAM,CAAxB,iBAAU,CAAe,OAAO,CAAC,KAAK,CAAU,SAAS,CAAC,uBAAuB,aAAU,CAAI,iBAAU,CAAQ,SAAS,CAAC,iBAAiB,YAAS,CAAI,mGAAmG,kBAAY,CAAW,oBAAoB,QAAQ,CAAC,eAAU,CAAM,iBAAU,CAAQ,iBAAY,CAAM,UAAO,CAAI,mBAAmB,iBAAU,CAAQ,wBAAwB,eAAU,CAAM,uBAAuB,iBAAU,CAAQ,iBAAY,CAAM,SAAS,CAAC,sEAAsE,kBAAY,CAAO,qBAAqB,kBAAY,CAAO,yCAAyC,kBAAY,CAAO,sBAAsB,gBAAQ,CAAS,mGAAmG,kBAAY,CAAO,kHAAkH,kBAAY,CAAO,cAAc,eAAY,CAAI,6BAAY,CAAkB,iBAAiB,kBAAe,CAAI,aAAa,mCAAmC,iBAAY,CAAM,CAAE,wBAAuB,UAAS,CAAE,6BAA6B,eAAY,CAAI,mBAAmB,kBAAY,CAAO,aAAO,CAAO,MAAM,CAAS,eAAU,CAAM,iBAAS,CAAS,iBAAU,CAApD,OAAO,CAAqD,UAAS,CAAE,uBAAuB,4BAAe,CAAc,KAAK,CAAC,0BAA0B,yBAAY,CAAc,QAAQ,CAAC,yBAAyB,sBAAY,CAAW,wBAAQ,CAAiB,aAAO,CAAO,qBAAa,CAAS,YAAS,CAAI,UAAO,CAAI,0BAA0B,aAAW,CAAG,uBACpzK,UAAO,CAAI,cAAQ,CAAO,iBAAa,CAAK,cAAa,CAAE,mFAAa,CAAuE,uBAAuB,UAAO,CAAI,0DAA0D,cAAQ,CAAO,kCAAkC,eAAS,CAAO,oCAAoC,eAAS,CAAO,iBACtW,eAAY,CAAI,iBAAe,CAAG,oCAAsB,CAAe,qBAAY,CAAU,UAAO,CAAI,oJAAa,CAAwI,cAAW,CAAI,gBAAa,CAAI,eAAQ,CAAQ,eAAW,CAAK,SAAS,CAAC,eAAU,CAAM,WAAS,CAAG,cAAU,CAAK,uBAAY,CAAY,UAAS,CAAE,8BAA8B,YAAY,CAAC,6BAA6B,eAAe,CAAC,mBAAmB,YAAQ,CAAK,mCAAmC,UAAO,CAAI,gBAAa,CAAI,cAAY,CAAG,eAAY,CAAI,eAAU,CAAM,mCAAmC,kBAAY,CAAO,uCAAY,CAA4B,aAAO,CAAO,gBAAa,CAAI,oBAAQ,CAAa,eAAY,CAAI,eAAU,CAAM,WAAS,CAAG,yCAAyC,aAAO,CAAO,cAAQ,CAAO,aAAS,CAAK,aAAW,CAAG,eAAa,CAAG,kBAAgB,CAAG,aAAa,CAAC,kBAAgB,CAAG,wBAAgB,CAAS,yCAAa,CAAI,2CAA2C,YAAY,CAAC,mBAAmB,oBAAiB,CAAI,yBAAyB,yBAAiB,CAAS,4BAA4B,aAAO,CAAO,6BAA6B,aAAO,CAAO,6BAA6B,aAAO,CAAO,2BAA2B,aAAO,CAAO,iCAAiC,aAAO,CAAO,uBACp1C,eAA1B,yBAAkC,CAAO,yBACvC,UAAO,CAAI,yBAAyB,+BAAkB,CAA4C,qBAAQ,CAAtC,6BAAe,CAAqC,cAAO,CAAQ,qBAAa,CAAS,cAAW,CAAI,eAAW,CAAK,SAAS,CAAC,eAAU,CAAM,eAAS,CAAO,cAAU,CAAK,sBAAY,CAAW,oBAAa,CAAQ,WAAS,CAAG,0DAA0D,0BAAqB,CAAM,0BAAmB,CAAQ,4BAA4B,gTAAszB,CAAQ,8BAAsB,4UAAuhB,+DAAmF,uBAAqV,4BAAiC,gDAAuN,wCAA8B,WAA4B,iEACh/E,uBAAqB,4BAA0B,gFAA0C,gTAAiQ,kEAAuB,oWACpU,CAAqD,iCAA+B,oNAAsN,CAAC,6BAAe,CAAa,2BAA6B,YAAsB,CAAtB,UAAsB,wCAAiC,qBAA6B,gEAA4D,+BAA4B,oDAAyC,8CAAkE,uCAA6B,CAA2D,mCAAc,CAAzE,kBAAmB,CAAwC,kCAAc,iHAAa,GAAwI,8BAAgC,CAAC,sBAAc,oCAA4C,kDAAgD,8BAA6B,uBAAc,CAAW,GAAG,gCAAgC,CAAG,wBAAc,oBAAmB,eAAyB,uGAAgF,yCAAyC,iBAAgB,iCACl1C,2BAAgB,wEAAmF,cAAQ,CAAO,wBAAqB,CAAI,gBAAa,eAAI,gBAAoB,2BAAkB,sBAAa,qBAAI,oEAAkF,gBAAgB,gBAAkB,4BAAyB,0CAAyC,8CAAiB,mBAAmB,8BAAwC,kBAAa,wCAAuC,cAAkB,qJAAqJ,eAAQ,gDAA8C,4BAA8B,iDAAwC,aAA6B,CAAG,4BAAoB,cAAkB,oEAAmC,kDAAsC,CAAU,gBAAQ,yGAAuG,eAA6B,mCAAgC,eAAkB,oFAA8E,cAAgB,0HAAyH,4EAAyE,SAAiB,eAAI,2CAAmD,mBAAiB,sBAAS,0CAAwD,mBAAe,wCAAyE,sBAAzE,aAAuD,eAAkB,0KAA0K,sDAAoE,6BAAoB,8GAA4B,iCAAqC,yBAAqB,UAAY,CAAM,sCAA8C,mGAA0G,kDAAgD,iIAA2E,eAAsB,0HAAwH,YAAW,8CAA8B,uFAAwC,yBAAmB,yDAAqC,cAAiB,wDAAqD,iBAAW,2KAAmL,oDAA2C,CAAuB,kCAA8C,2BAA8B,CAAqE,qBAAxK,cAAuB,CAA4E,mCAAuC,4BAA8B,CAAjJ,oBAAiJ,2KAA+P,mCAAa,6DAA0F,CAAmB,sBAAvL,+CAA6D,CAAuG,aAAmB,CAAvL,mBAAuL,mCAAgE,sDAA0H,oCAAoC,6BAA6B,CAA3I,+BAA8B,yCAA4C,CAAiE,uBAA2B,CAAG,kCAAiC,sBAAmB,wCAAyB,yDAAiB,UAAkD,CAAlD,aAAkD,8BAAa,6CAAiE,8CAA8B,aAA2B,8CAAwC,UAAc,gBAAkB,gBAAsB,uBAAW,iCAAyC,aAAW,+BAAe,aAAgC,uCAAgC,CAAS,eAAI,oKAA+J,4FAA0C,oDAAkD,aAAyB,sCAA8B,kBAA0B,CAA8E,kBAA1E,gCAAoB,cAAkB,CAAO,gBAAG,gCAAiB,gBAAS,yDAAiF,aAAsC,CAAtC,sBAAsC,cAAY,eAAY,aAAU,gBAA4B,CAAC,kBAAD,cAA0B,mBAAW,yBAAqC,yBAAuB,iBAAmB,mDAAiD,YAAM,kDAAiC,8CAA2B,0BACp9J,CAA8H,kBAAmB,CAAjJ,wCAAqF,qBAAyC,CAAmB,UAAS,CAAI,eAA9J,cAAkE,qBAAmB,CAArF,iBAAkE,CAAmB,UAAoF,CAAI,gCAAmE,kBAAY,CAA/D,+BAA0C,aAAS,CAAY,cAAe,CAAiB,iFAAiF,4BAAiB,sKAAgL,yBAAgL,SAAhL,+EAAmG,kBAAsB,mCAA+B,CAAO,gBAAiB,yDAA0D,wBAAY,8HAAyD,WAAc,CAAC,qCAAD,eAA6C,OAAe,CAAC,kBAAe,uDAAqD,yBAA4B,2CAAe,srCCT5jC,oCAGE,uBADA,cAAe,CADf,iBAEuB,CACxB,0CAEC,aAAc,CCHhB,sCAEI,kBAAmB,CACnB,YAAa,CACb,qBAAsB,CAEtB,YAAa,CADb,sBAAuB,CAEvB,WAAY,CAPhB,4CAUM,WAAY,CAVlB,+CAeI,eAAgB,CAfpB,oDAmBI,gBAAiB,CAnBrB,2BAuBI,WAAY,CAvBhB,+BA0BM,aAAc,CA1BpB,6BA+BI,UAAW,CA/Bf,8BAqCI,oCAAwB,CAAxB,4BAAwB,CAFxB,eAAgB,CAChB,UAAW,CACX,uBAAwB,CACxB,eAAgB,CAChB,WAAY,CACZ,kBAAmB,CACnB,gBAAiB,CACjB,eAAgB,CAChB,sBAAuB,CACvB,sBAAuB,CACvB,wBAAyB,CACzB,kBAAmB,CACnB,UAAW,CA/Cf,yDAoDM,cAAe,CApDrB,mEAuDQ,aAAc,CAvDtB,qCA6DI,oBAAsB,CA7D1B,yDAkEM,qBAAuB,CACvB,yBAA2B,CAC3B,qBAAsB,CACtB,oBAAsB,CArE5B,wDAyEM,iEAAwE,CAzE9E,sDA+EM,eAAgB,CAChB,gBAAiB,CCnFvB,KACE,QAAS,CAET,eAAgB,CACjB,WAFC,YAKa,CACd,oBASC,eAAgB,CAChB,SAAU,CARZ,iGAWI,eAAgB,CACjB,GAID,QAAS,CACT,+BAAgC,CAChC,eAAgB,CAChB,aAAc,CACf,IAGC,oBAAqB,CACtB,SAIC,kBAAsB,CADtB,cAAe,CAEf,UAAW,CACX,WAAY,CACZ,eAAgB,CAChB,SAAU,CACV,iBAAkB,CAClB,kBAAmB,CACnB,SAAU","sources":["components/Loading/Loading.scss","components/ServerStatus/ServerStatus.scss","components/GraphiQLPanel/GraphiQLPanel.scss","components/Forms/Forms.scss","components/PredicatesToggle/PredicatesToggle.scss","../node_modules/react-toggle/style.css","components/SettingsPanel/SettingsPanel.scss","components/SettingsToggle/SettingsToggle.scss","../node_modules/graphiql/graphiql.min.css","../node_modules/graphiql-code-exporter/CodeExporter.css","components/Explorer/Explorer.scss","index.scss"],"sourcesContent":[".loading {\n align-items: center;\n display: flex;\n height: 100%;\n justify-content: center;\n text-align: center;\n width: 100%;\n\n .logo {\n animation-direction: alternate;\n animation-duration: 0.5s;\n animation-iteration-count: infinite;\n animation-name: bounce;\n animation-timing-function: cubic-bezier(0.95, 0.05, 0.8, 0.05);\n height: 50px;\n width: 200px;\n }\n}\n\n@keyframes bounce {\n from {\n transform: translateY(0) scale(1);\n }\n to {\n transform: translateY(20px) scale(1, 0.7);\n }\n}\n",".server-status-overlay {\n position: fixed;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n background-color: rgba($color: #000000, $alpha: 0.3);\n z-index: 1000;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.server-status-pop {\n background-color: white;\n width: 200px;\n height: 50px;\n padding: 10px;\n text-align: center;\n padding: 1rem 1rem 0rem 1rem;\n border-radius: 5px;\n -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);\n -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);\n box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);\n}\n\n.server-status-pop .pop-copy {\n line-height: 21px;\n}\n\n.server-status-pop code {\n border-radius: 2px;\n -moz-border-radius: 2px;\n -webkit-border-radius: 2px;\n padding: 1px;\n border: 1px solid #00b2ca;\n background: rgba(0, 178, 202, 0.3);\n color: #193460;\n}\n\n.server-status-pop .pop-icon {\n margin-bottom: 0;\n padding: 0;\n font-size: 28px;\n}\n",".graphiqlpanel-wrap {\n background: #fff;\n box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);\n display: flex;\n flex-direction: column;\n flex-shrink: 0;\n position: relative;\n width: 350px;\n z-index: 20;\n}\n\n.graphiqlpanel-title-bar {\n cursor: default;\n display: flex;\n height: 34px;\n line-height: 14px;\n padding: 8px 8px 5px;\n position: relative;\n -webkit-user-select: none;\n user-select: none;\n\n .graphiqlpanel-title {\n flex: 1 1;\n font-weight: 700;\n overflow-x: hidden;\n padding: 10px 0 10px 10px;\n text-align: center;\n text-overflow: ellipsis;\n user-select: text;\n white-space: nowrap;\n }\n\n .graphiqlpanel-close {\n cursor: pointer;\n font-size: 18px;\n margin: -7px -8px -6px 0;\n padding: 18px 16px 15px 12px;\n background: 0;\n border: 0;\n line-height: 14px;\n }\n}\n\n.graphiqlpanel-content {\n background-color: #fff;\n border-top: 1px solid #d6d6d6;\n bottom: 0;\n flex: 1 1;\n left: 0;\n overflow-y: auto;\n padding: 20px 15px;\n position: absolute;\n right: 0;\n top: 47px;\n}\n\n.has-footer {\n .graphiqlpanel-content {\n border-bottom: 1px solid #d6d6d6;\n bottom: 47px;\n }\n\n .graphiqlpanel-footer-bar {\n bottom: 0;\n display: flex;\n height: 47px;\n left: 0;\n padding: 0 30px;\n position: absolute;\n right: 0;\n user-select: none;\n }\n}\n","form,\n.form {\n *,\n *:before,\n *:after {\n box-sizing: border-box;\n }\n\n .field {\n &.radio {\n display: flex;\n }\n\n + .field {\n padding-top: 10px;\n }\n\n &.buttons {\n border-top: 1px solid #eaeaea;\n margin-top: 20px;\n padding-top: 20px;\n }\n }\n\n label,\n .label {\n display: block;\n font-size: 16px;\n padding-bottom: 4px;\n\n .label-title {\n font-weight: 700;\n margin: 0 0 10px;\n }\n\n .label-description {\n margin: 0 0 10px;\n }\n }\n\n input[type='radio'] {\n height: 30px;\n margin-right: 10px;\n width: 30px;\n }\n\n input[type='password'],\n input[type='text'] {\n appearance: none;\n border: 2px solid #ddd;\n border-radius: 2px;\n color: #333;\n display: inline-block;\n font-family: inherit;\n font-size: 16px;\n height: 40px;\n padding: 8px;\n width: 100%;\n\n &:disabled {\n background: #ccc;\n }\n }\n\n textarea {\n appearance: none;\n border: 2px solid #ddd;\n border-radius: 2px;\n color: #333;\n display: inline-block;\n font-family: inherit;\n font-size: 16px;\n padding: 8px;\n width: 100%;\n\n &[readonly] {\n background: #eee;\n }\n }\n\n .button {\n align-items: center;\n background: #2163ef;\n border: 0;\n border-radius: 2px;\n color: #fff;\n cursor: pointer;\n display: inline-block;\n font-family: inherit;\n font-size: 16px;\n font-weight: 500;\n height: 44px;\n justify-content: center;\n min-width: 8ch;\n padding: 0 8px;\n\n &:disabled {\n cursor: default;\n opacity: 0.7;\n }\n\n &.is-link {\n background: none;\n color: #2163ef;\n }\n\n &.is-secondary {\n background: #ccc;\n color: #222;\n }\n\n + .button {\n margin-left: 10px;\n }\n }\n\n .checkbox,\n .radio {\n label {\n display: inline-block;\n height: 30px;\n line-height: 30px;\n padding: 0;\n vertical-align: middle;\n }\n\n input[type='checkbox'],\n input[type='radio'] {\n border: 2px solid #ddd;\n border-radius: 2px;\n display: inline-block;\n height: 30px;\n margin: 0 10px 0 0;\n position: relative;\n top: -2px;\n vertical-align: middle;\n width: 30px;\n }\n }\n}\n",".predicates-toggle {\n flex: 1;\n\n > label {\n display: flex;\n\n span {\n line-height: 24px;\n padding-right: 10px;\n }\n }\n\n .predicates-settings {\n margin-top: 30px;\n\n textarea {\n font-size: 12px;\n }\n }\n}\n",".react-toggle {\n touch-action: pan-x;\n\n display: inline-block;\n position: relative;\n cursor: pointer;\n background-color: transparent;\n border: 0;\n padding: 0;\n\n -webkit-touch-callout: none;\n -webkit-user-select: none;\n -khtml-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n\n -webkit-tap-highlight-color: rgba(0,0,0,0);\n -webkit-tap-highlight-color: transparent;\n}\n\n.react-toggle-screenreader-only {\n border: 0;\n clip: rect(0 0 0 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n}\n\n.react-toggle--disabled {\n cursor: not-allowed;\n opacity: 0.5;\n -webkit-transition: opacity 0.25s;\n transition: opacity 0.25s;\n}\n\n.react-toggle-track {\n width: 50px;\n height: 24px;\n padding: 0;\n border-radius: 30px;\n background-color: #4D4D4D;\n -webkit-transition: all 0.2s ease;\n -moz-transition: all 0.2s ease;\n transition: all 0.2s ease;\n}\n\n.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track {\n background-color: #000000;\n}\n\n.react-toggle--checked .react-toggle-track {\n background-color: #19AB27;\n}\n\n.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {\n background-color: #128D15;\n}\n\n.react-toggle-track-check {\n position: absolute;\n width: 14px;\n height: 10px;\n top: 0px;\n bottom: 0px;\n margin-top: auto;\n margin-bottom: auto;\n line-height: 0;\n left: 8px;\n opacity: 0;\n -webkit-transition: opacity 0.25s ease;\n -moz-transition: opacity 0.25s ease;\n transition: opacity 0.25s ease;\n}\n\n.react-toggle--checked .react-toggle-track-check {\n opacity: 1;\n -webkit-transition: opacity 0.25s ease;\n -moz-transition: opacity 0.25s ease;\n transition: opacity 0.25s ease;\n}\n\n.react-toggle-track-x {\n position: absolute;\n width: 10px;\n height: 10px;\n top: 0px;\n bottom: 0px;\n margin-top: auto;\n margin-bottom: auto;\n line-height: 0;\n right: 10px;\n opacity: 1;\n -webkit-transition: opacity 0.25s ease;\n -moz-transition: opacity 0.25s ease;\n transition: opacity 0.25s ease;\n}\n\n.react-toggle--checked .react-toggle-track-x {\n opacity: 0;\n}\n\n.react-toggle-thumb {\n transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;\n position: absolute;\n top: 1px;\n left: 1px;\n width: 22px;\n height: 22px;\n border: 1px solid #4D4D4D;\n border-radius: 50%;\n background-color: #FAFAFA;\n\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n\n -webkit-transition: all 0.25s ease;\n -moz-transition: all 0.25s ease;\n transition: all 0.25s ease;\n}\n\n.react-toggle--checked .react-toggle-thumb {\n left: 27px;\n border-color: #19AB27;\n}\n\n.react-toggle--focus .react-toggle-thumb {\n -webkit-box-shadow: 0px 0px 3px 2px #0099E0;\n -moz-box-shadow: 0px 0px 3px 2px #0099E0;\n box-shadow: 0px 0px 2px 3px #0099E0;\n}\n\n.react-toggle:active:not(.react-toggle--disabled) .react-toggle-thumb {\n -webkit-box-shadow: 0px 0px 5px 5px #0099E0;\n -moz-box-shadow: 0px 0px 5px 5px #0099E0;\n box-shadow: 0px 0px 5px 5px #0099E0;\n}\n",".advanced-settings-container {\n margin-top: 10px;\n}\n",".graphiql-container .settings-toggle {\n background: linear-gradient(#f7f7f7, #e2e2e2);\n border-radius: 0;\n border-bottom: 1px solid #d0d0d0;\n border-left: 1px solid rgba(0, 0, 0, 0.2);\n border-right: none;\n border-top: none;\n color: #3b5998;\n cursor: pointer;\n font-size: 14px;\n height: 48px;\n margin: -11px -14px -11px auto;\n padding: 2px 20px 0 18px;\n\n svg {\n font-size: 20px;\n margin-left: 5px;\n vertical-align: middle;\n }\n\n &:before {\n border-left: 2px solid #3b5998;\n border-top: 2px solid #3b5998;\n content: '';\n display: inline-block;\n height: 9px;\n margin: 0 3px -1px 0;\n position: relative;\n transform: rotate(-45deg);\n width: 9px;\n }\n}\n",".graphiql-container,.graphiql-container button,.graphiql-container input{color:#141823;font-family:system,-apple-system,San Francisco,\\.SFNSDisplay-Regular,Segoe UI,Segoe,Segoe WP,Helvetica Neue,helvetica,Lucida Grande,arial,sans-serif;font-size:14px}.graphiql-container{display:flex;flex-direction:row;height:100%;margin:0;overflow:hidden;width:100%}.graphiql-container .editorWrap{display:flex;flex-direction:column;flex:1;overflow-x:hidden}.graphiql-container .title{font-size:18px}.graphiql-container .title em{font-family:georgia;font-size:19px}.graphiql-container .topBarWrap{display:flex;flex-direction:row}.graphiql-container .topBar{align-items:center;background:linear-gradient(#f7f7f7,#e2e2e2);border-bottom:1px solid #d0d0d0;cursor:default;display:flex;flex-direction:row;flex:1;height:34px;overflow-y:visible;padding:7px 14px 6px;user-select:none}.graphiql-container .toolbar{overflow-x:visible;display:flex}.graphiql-container .docExplorerShow,.graphiql-container .historyShow{background:linear-gradient(#f7f7f7,#e2e2e2);border-radius:0;border-bottom:1px solid #d0d0d0;border-right:none;border-top:none;color:#3b5998;cursor:pointer;font-size:14px;margin:0;padding:2px 20px 0 18px}.graphiql-container .docExplorerShow{border-left:1px solid rgba(0,0,0,.2)}.graphiql-container .historyShow{border-right:1px solid rgba(0,0,0,.2);border-left:0}.graphiql-container .docExplorerShow:before{border-left:2px solid #3b5998;border-top:2px solid #3b5998;content:\"\";display:inline-block;height:9px;margin:0 3px -1px 0;position:relative;transform:rotate(-45deg);width:9px}.graphiql-container .editorBar{display:flex;flex-direction:row;flex:1;max-height:100%}.graphiql-container .queryWrap,.graphiql-container .resultWrap{display:flex;flex-direction:column;flex:1}.graphiql-container .resultWrap{border-left:1px solid #e0e0e0;flex-basis:1em;position:relative}.graphiql-container .docExplorerWrap,.graphiql-container .historyPaneWrap{background:#fff;box-shadow:0 0 8px rgba(0,0,0,.15);position:relative;z-index:3}.graphiql-container .historyPaneWrap{min-width:230px;z-index:5}.graphiql-container .docExplorerResizer{cursor:col-resize;height:100%;left:-5px;position:absolute;top:0;width:10px;z-index:10}.graphiql-container .docExplorerHide{cursor:pointer;font-size:18px;margin:-7px -8px -6px 0;padding:18px 16px 15px 12px;background:0;border:0;line-height:14px}.graphiql-container div .query-editor{flex:1;position:relative}.graphiql-container .secondary-editor{display:flex;flex-direction:column;height:30px;position:relative}.graphiql-container .secondary-editor-title{background:#eee;border-bottom:1px solid #d6d6d6;border-top:1px solid #e0e0e0;color:#777;font-variant:small-caps;font-weight:700;letter-spacing:1px;line-height:14px;padding:6px 0 8px 43px;text-transform:lowercase;user-select:none}.graphiql-container .codemirrorWrap,.graphiql-container .result-window{flex:1;height:100%;position:relative}.graphiql-container .footer{background:#f6f7f8;border-left:1px solid #e0e0e0;border-top:1px solid #e0e0e0;margin-left:12px;position:relative}.graphiql-container .footer:before{background:#eee;bottom:0;content:\" \";left:-13px;position:absolute;top:-1px;width:12px}.result-window .CodeMirror.cm-s-graphiql{background:#f6f7f8}.graphiql-container .result-window .CodeMirror-gutters{background-color:#eee;border-color:#e0e0e0;cursor:col-resize}.graphiql-container .result-window .CodeMirror-foldgutter,.graphiql-container .result-window .CodeMirror-foldgutter-folded:after,.graphiql-container .result-window .CodeMirror-foldgutter-open:after{padding-left:3px}.graphiql-container .toolbar-button{background:#fdfdfd;background:linear-gradient(#f9f9f9,#ececec);border:0;border-radius:3px;box-shadow:inset 0 0 0 1px rgba(0,0,0,.2),0 1px 0 hsla(0,0%,100%,.7),inset 0 1px #fff;color:#555;cursor:pointer;display:inline-block;margin:0 5px;padding:3px 11px 5px;text-decoration:none;text-overflow:ellipsis;white-space:nowrap;max-width:150px}.graphiql-container .toolbar-button:active{background:linear-gradient(#ececec,#d5d5d5);box-shadow:0 1px 0 hsla(0,0%,100%,.7),inset 0 0 0 1px rgba(0,0,0,.1),inset 0 1px 1px 1px rgba(0,0,0,.12),inset 0 0 5px rgba(0,0,0,.1)}.graphiql-container .toolbar-button.error{background:linear-gradient(#fdf3f3,#e6d6d7);color:#b00}.graphiql-container .toolbar-button-group{margin:0 5px;white-space:nowrap}.graphiql-container .toolbar-button-group>*{margin:0}.graphiql-container .toolbar-button-group>:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.graphiql-container .toolbar-button-group>:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0;margin-left:-1px}.graphiql-container .execute-button-wrap{height:34px;margin:0 14px 0 28px;position:relative}.graphiql-container .execute-button{background:linear-gradient(#fdfdfd,#d2d3d6);border-radius:17px;border:1px solid rgba(0,0,0,.25);box-shadow:0 1px 0 #fff;cursor:pointer;fill:#444;height:34px;margin:0;padding:0;width:34px}.graphiql-container .execute-button svg,.graphiql-container .toolbar-button>svg{pointer-events:none}.graphiql-container .execute-button:active{background:linear-gradient(#e6e6e6,#c3c3c3);box-shadow:0 1px 0 #fff,inset 0 0 2px rgba(0,0,0,.2),inset 0 0 6px rgba(0,0,0,.1)}.graphiql-container .toolbar-menu,.graphiql-container .toolbar-select{position:relative}.graphiql-container .execute-options,.graphiql-container .toolbar-menu-items,.graphiql-container .toolbar-select-options{background:#fff;box-shadow:0 0 0 1px rgba(0,0,0,.1),0 2px 4px rgba(0,0,0,.25);margin:0;padding:6px 0;position:absolute;z-index:100}.graphiql-container .execute-options{min-width:100px;top:37px;left:-1px}.graphiql-container .toolbar-menu-items{left:1px;margin-top:-1px;min-width:110%;top:100%;visibility:hidden}.graphiql-container .toolbar-menu-items.open{visibility:visible}.graphiql-container .toolbar-select-options{left:0;min-width:100%;top:-5px;visibility:hidden}.graphiql-container .toolbar-select-options.open{visibility:visible}.graphiql-container .execute-options>li,.graphiql-container .toolbar-menu-items>li,.graphiql-container .toolbar-select-options>li{cursor:pointer;display:block;margin:none;max-width:300px;overflow:hidden;padding:2px 20px 4px 11px;white-space:nowrap}.graphiql-container .execute-options>li.selected,.graphiql-container .history-contents>li:active,.graphiql-container .history-contents>li:hover,.graphiql-container .toolbar-menu-items>li.hover,.graphiql-container .toolbar-menu-items>li:active,.graphiql-container .toolbar-menu-items>li:hover,.graphiql-container .toolbar-select-options>li.hover,.graphiql-container .toolbar-select-options>li:active,.graphiql-container .toolbar-select-options>li:hover{background:#e10098;color:#fff}.graphiql-container .toolbar-select-options>li>svg{display:inline;fill:#666;margin:0 -6px 0 6px;pointer-events:none;vertical-align:middle}.graphiql-container .toolbar-select-options>li.hover>svg,.graphiql-container .toolbar-select-options>li:active>svg,.graphiql-container .toolbar-select-options>li:hover>svg{fill:#fff}.graphiql-container .CodeMirror-scroll{overflow-scrolling:touch}.graphiql-container .CodeMirror{color:#141823;font-family:Consolas,Inconsolata,Droid Sans Mono,Monaco,monospace;font-size:13px;height:100%;left:0;position:absolute;top:0;width:100%}.graphiql-container .CodeMirror-lines{padding:20px 0}.CodeMirror-hint-information .content{box-orient:vertical;color:#141823;display:flex;font-family:system,-apple-system,San Francisco,\\.SFNSDisplay-Regular,Segoe UI,Segoe,Segoe WP,Helvetica Neue,helvetica,Lucida Grande,arial,sans-serif;font-size:13px;line-clamp:3;line-height:16px;max-height:48px;overflow:hidden;text-overflow:-o-ellipsis-lastline}.CodeMirror-hint-information .content p:first-child{margin-top:0}.CodeMirror-hint-information .content p:last-child{margin-bottom:0}.CodeMirror-hint-information .infoType{color:#ca9800;cursor:pointer;display:inline;margin-right:.5em}.autoInsertedLeaf.cm-property{animation-duration:6s;animation-name:insertionFade;border-bottom:2px solid hsla(0,0%,100%,0);border-radius:2px;margin:-2px -4px -1px;padding:2px 4px 1px}@keyframes insertionFade{0%,to{background:hsla(0,0%,100%,0);border-color:hsla(0,0%,100%,0)}15%,85%{background:#fbffc9;border-color:#f0f3c0}}div.CodeMirror-lint-tooltip{background-color:#fff;border-radius:2px;border:0;color:#141823;box-shadow:0 1px 3px rgba(0,0,0,.45);font-size:13px;line-height:16px;max-width:430px;opacity:0;padding:8px 10px;transition:opacity .15s;white-space:pre-wrap}div.CodeMirror-lint-tooltip>*{padding-left:23px}div.CodeMirror-lint-tooltip>*+*{margin-top:12px}.graphiql-container .variable-editor-title-text{cursor:pointer;display:inline-block;color:grey}.graphiql-container .variable-editor-title-text.active{color:#000}.graphiql-container .tabs{height:42px;background-image:linear-gradient(#f7f7f7,#e2e2e2);display:flex;align-items:center}.graphiql-container .tab{position:relative;cursor:pointer;display:flex;align-items:center;justify-content:center;padding-top:0;padding-right:6px;padding-left:14px;height:100%;color:rgba(0,0,0,.6);border-left:1px solid #d3d3d3;border-top-style:none;border-bottom-style:none;border-right-style:none}.graphiql-container .tab:first-child:nth-last-child(2){padding-right:14px}.graphiql-container .tab:hover{background-image:linear-gradient(hsla(0,0%,96.1%,.7),#d7d7d7);color:rgba(0,0,0,.8)}.graphiql-container .tab.active{background-image:linear-gradient(hsla(0,0%,91.4%,.7),#cdcdcd);color:#000}.graphiql-container .tab .close{display:inline-block;cursor:pointer;border:none;background:transparent;margin-left:6px;padding:3px 6px;border-radius:4px}.graphiql-container .tab.active .close,.graphiql-container .tab:hover .close{opacity:1}.graphiql-container .tab .close:before{content:\"✕\";display:inline-block;font-weight:700;font-size:12px;color:rgba(0,0,0,.7);height:14px}.graphiql-container .tab .close:hover{background:rgba(0,0,0,.08)}.graphiql-container .tab .close:active{background:rgba(0,0,0,.12)}.graphiql-container .tab-add{display:flex;align-items:center;justify-content:center;border:none;background:transparent;line-height:1;font-size:26px;height:30px;border-radius:4px;color:rgba(0,0,0,.5);padding:0 8px 3px;margin-left:6px;cursor:pointer}.graphiql-container .tab-add:hover{background:rgba(0,0,0,.06)}.graphiql-container .tab-add:active{background:rgba(0,0,0,.1)}.graphiql-container .CodeMirror-foldmarker{border-radius:4px;background:#08f;background:linear-gradient(#43a8ff,#0f83e8);box-shadow:0 1px 1px rgba(0,0,0,.2),inset 0 0 0 1px rgba(0,0,0,.1);color:#fff;font-family:arial;font-size:12px;line-height:0;margin:0 3px;padding:0 4px 1px;text-shadow:0 -1px rgba(0,0,0,.1)}.graphiql-container div.CodeMirror span.CodeMirror-matchingbracket{color:#555;text-decoration:underline}.graphiql-container div.CodeMirror span.CodeMirror-nonmatchingbracket{color:red}.cm-comment{color:#666}.cm-punctuation{color:#555}.cm-keyword{color:#b11a04}.cm-def{color:#d2054e}.cm-property{color:#1f61a0}.cm-qualifier{color:#1c92a9}.cm-attribute{color:#8b2bb9}.cm-number{color:#2882f9}.cm-string{color:#d64292}.cm-builtin{color:#d47509}.cm-string-2{color:#0b7fc7}.cm-variable{color:#397d13}.cm-meta{color:#b33086}.cm-atom{color:#ca9800}\n.CodeMirror{color:#000;font-family:monospace;height:300px}.CodeMirror-lines{padding:4px 0}.CodeMirror pre{padding:0 4px}.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#fff}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumber{color:#666;min-width:20px;padding:0 3px 0 5px;text-align:right;white-space:nowrap}.CodeMirror-guttermarker{color:#000}.CodeMirror-guttermarker-subtle{color:#666}.CodeMirror .CodeMirror-cursor{border-left:1px solid #000}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.CodeMirror.cm-fat-cursor div.CodeMirror-cursor{background:#7e7;border:0;width:auto}.CodeMirror.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-animate-fat-cursor{animation:blink 1.06s steps(1) infinite;border:0;width:auto}@keyframes blink{0%{background:#7e7}50%{background:none}to{background:#7e7}}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-ruler{border-left:1px solid #ccc;position:absolute}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-variable-3{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta,.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#666}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-header{color:#00f}.cm-s-default .cm-quote{color:#090}.cm-s-default .cm-hr{color:#666}.cm-s-default .cm-link{color:#00c}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:700}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-invalidchar,.cm-s-default .cm-error{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0f0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#f22}.CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{background:#fff;overflow:hidden;position:relative}.CodeMirror-scroll{height:100%;margin-bottom:-30px;margin-right:-30px;outline:none;overflow:scroll!important;padding-bottom:30px;position:relative}.CodeMirror-sizer{border-right:30px solid transparent;position:relative}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{display:none;position:absolute;z-index:6}.CodeMirror-vscrollbar{overflow-x:hidden;overflow-y:scroll;right:0;top:0}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-x:scroll;overflow-y:hidden}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{min-height:100%;position:absolute;left:0;top:0;z-index:3}.CodeMirror-gutter{display:inline-block;height:100%;margin-bottom:-30px;vertical-align:top;white-space:normal}.CodeMirror-gutter-wrapper{background:none!important;border:none!important;position:absolute;z-index:4}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{cursor:default;position:absolute;z-index:4}.CodeMirror-gutter-wrapper{user-select:none}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre{-webkit-tap-highlight-color:transparent;background:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-variant-ligatures:none;line-height:inherit;margin:0;overflow:visible;position:relative;white-space:pre;word-wrap:normal;z-index:2}.CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.CodeMirror-linewidget{overflow:auto;position:relative;z-index:2}.CodeMirror-code{outline:none}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber,.CodeMirror-scroll,.CodeMirror-sizer{box-sizing:content-box}.CodeMirror-measure{height:0;overflow:hidden;position:absolute;visibility:hidden;width:100%}.CodeMirror-cursor{position:absolute}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{position:relative;visibility:hidden;z-index:3}.CodeMirror-focused div.CodeMirror-cursors,div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background:#ffa;background:rgba(255,255,0,.4)}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:\"\"}span.CodeMirror-selectedtext{background:none}.CodeMirror-dialog{background:inherit;color:inherit;left:0;right:0;overflow:hidden;padding:.1em .8em;position:absolute;z-index:15}.CodeMirror-dialog-top{border-bottom:1px solid #eee;top:0}.CodeMirror-dialog-bottom{border-top:1px solid #eee;bottom:0}.CodeMirror-dialog input{background:transparent;border:1px solid #d3d6db;color:inherit;font-family:monospace;outline:none;width:20em}.CodeMirror-dialog button{font-size:70%}\n.CodeMirror-foldmarker{color:#00f;cursor:pointer;font-family:arial;line-height:.3;text-shadow:#b9f 1px 1px 2px,#b9f -1px -1px 2px,#b9f 1px -1px 2px,#b9f -1px 1px 2px}.CodeMirror-foldgutter{width:.7em}.CodeMirror-foldgutter-folded,.CodeMirror-foldgutter-open{cursor:pointer}.CodeMirror-foldgutter-open:after{content:\"\\25BE\"}.CodeMirror-foldgutter-folded:after{content:\"\\25B8\"}\n.CodeMirror-info{background:#fff;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.45);box-sizing:border-box;color:#555;font-family:system,-apple-system,San Francisco,\\.SFNSDisplay-Regular,Segoe UI,Segoe,Segoe WP,Helvetica Neue,helvetica,Lucida Grande,arial,sans-serif;font-size:13px;line-height:16px;margin:8px -8px;max-width:400px;opacity:0;overflow:hidden;padding:8px;position:fixed;transition:opacity .15s;z-index:50}.CodeMirror-info :first-child{margin-top:0}.CodeMirror-info :last-child{margin-bottom:0}.CodeMirror-info p{margin:1em 0}.CodeMirror-info .info-description{color:#777;line-height:16px;margin-top:1em;max-height:80px;overflow:hidden}.CodeMirror-info .info-deprecation{background:#fffae8;box-shadow:inset 0 1px 1px -1px #bfb063;color:#867f70;line-height:16px;margin:8px -8px -8px;max-height:80px;overflow:hidden;padding:8px}.CodeMirror-info .info-deprecation-label{color:#c79b2e;cursor:default;display:block;font-size:9px;font-weight:700;letter-spacing:1px;line-height:1;padding-bottom:5px;text-transform:uppercase;user-select:none}.CodeMirror-info .info-deprecation-label+*{margin-top:0}.CodeMirror-info a{text-decoration:none}.CodeMirror-info a:hover{text-decoration:underline}.CodeMirror-info .type-name{color:#ca9800}.CodeMirror-info .field-name{color:#1f61a0}.CodeMirror-info .enum-value{color:#0b7fc7}.CodeMirror-info .arg-name{color:#8b2bb9}.CodeMirror-info .directive-name{color:#b33086}\n.CodeMirror-jump-token{text-decoration:underline;cursor:pointer}\n.CodeMirror-lint-markers{width:16px}.CodeMirror-lint-tooltip{background-color:infobackground;border-radius:4px 4px 4px 4px;border:1px solid #000;color:infotext;font-family:monospace;font-size:10pt;max-width:600px;opacity:0;overflow:hidden;padding:2px 5px;position:fixed;transition:opacity .4s;white-space:pre-wrap;z-index:100}.CodeMirror-lint-mark-error,.CodeMirror-lint-mark-warning{background-position:0 100%;background-repeat:repeat-x}.CodeMirror-lint-mark-error{background-image:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJDw4cOCW1/KIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAHElEQVQI12NggIL/DAz/GdA5/xkY/qPKMDAwAADLZwf5rvm+LQAAAABJRU5ErkJggg==\")}.CodeMirror-lint-mark-warning{background-image:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJFhQXEbhTg7YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAMklEQVQI12NkgIIvJ3QXMjAwdDN+OaEbysDA4MPAwNDNwMCwiOHLCd1zX07o6kBVGQEAKBANtobskNMAAAAASUVORK5CYII=\")}.CodeMirror-lint-marker-error,.CodeMirror-lint-marker-warning{background-position:50%;background-repeat:no-repeat;cursor:pointer;display:inline-block;height:16px;position:relative;vertical-align:middle;width:16px}.CodeMirror-lint-message-error,.CodeMirror-lint-message-warning{background-position:0 0;background-repeat:no-repeat;padding-left:18px}.CodeMirror-lint-marker-error,.CodeMirror-lint-message-error{background-image:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAHlBMVEW7AAC7AACxAAC7AAC7AAAAAAC4AAC5AAD///+7AAAUdclpAAAABnRSTlMXnORSiwCK0ZKSAAAATUlEQVR42mWPOQ7AQAgDuQLx/z8csYRmPRIFIwRGnosRrpamvkKi0FTIiMASR3hhKW+hAN6/tIWhu9PDWiTGNEkTtIOucA5Oyr9ckPgAWm0GPBog6v4AAAAASUVORK5CYII=\")}.CodeMirror-lint-marker-warning,.CodeMirror-lint-message-warning{background-image:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAANlBMVEX/uwDvrwD/uwD/uwD/uwD/uwD/uwD/uwD/uwD6twD/uwAAAADurwD2tQD7uAD+ugAAAAD/uwDhmeTRAAAADHRSTlMJ8mN1EYcbmiixgACm7WbuAAAAVklEQVR42n3PUQqAIBBFUU1LLc3u/jdbOJoW1P08DA9Gba8+YWJ6gNJoNYIBzAA2chBth5kLmG9YUoG0NHAUwFXwO9LuBQL1giCQb8gC9Oro2vp5rncCIY8L8uEx5ZkAAAAASUVORK5CYII=\")}.CodeMirror-lint-marker-multiple{background-image:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAACVBMVEUAAAAAAAC/v7914kyHAAAAAXRSTlMAQObYZgAAACNJREFUeNo1ioEJAAAIwmz/H90iFFSGJgFMe3gaLZ0od+9/AQZ0ADosbYraAAAAAElFTkSuQmCC\");background-position:100% 100%;background-repeat:no-repeat;width:100%;height:100%}\n.graphiql-container .spinner-container{height:36px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:36px;z-index:10}.graphiql-container .spinner{animation:rotation .6s linear infinite;border-radius:100%;border:6px solid hsla(0,0%,58.8%,.15);border-top-color:hsla(0,0%,58.8%,.8);display:inline-block;height:24px;position:absolute;vertical-align:middle;width:24px}@keyframes rotation{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}\n.CodeMirror-hints{background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.45);font-family:Consolas,Inconsolata,Droid Sans Mono,Monaco,monospace;font-size:13px;list-style:none;margin:0;max-height:14.5em;overflow:hidden;overflow-y:auto;padding:0;position:absolute;z-index:10}.CodeMirror-hint{border-top:1px solid #f7f7f7;color:#141823;cursor:pointer;margin:0;max-width:300px;overflow:hidden;padding:2px 6px;white-space:pre}li.CodeMirror-hint-active{background-color:#08f;border-top-color:#fff;color:#fff}.CodeMirror-hint-information{border-top:1px solid silver;max-width:300px;padding:4px 6px;position:relative;z-index:1}.CodeMirror-hint-information:first-child{border-bottom:1px solid silver;border-top:none;margin-bottom:-1px}.CodeMirror-hint-deprecation{background:#fffae8;box-shadow:inset 0 1px 1px -1px #bfb063;color:#867f70;font-family:system,-apple-system,San Francisco,\\.SFNSDisplay-Regular,Segoe UI,Segoe,Segoe WP,Helvetica Neue,helvetica,Lucida Grande,arial,sans-serif;font-size:13px;line-height:16px;margin-top:4px;max-height:80px;overflow:hidden;padding:6px}.CodeMirror-hint-deprecation .deprecation-label{color:#c79b2e;cursor:default;display:block;font-size:9px;font-weight:700;letter-spacing:1px;line-height:1;padding-bottom:5px;text-transform:uppercase;user-select:none}.CodeMirror-hint-deprecation .deprecation-label+*{margin-top:0}.CodeMirror-hint-deprecation :last-child{margin-bottom:0}\n.graphiql-container .doc-explorer{background:#fff}.graphiql-container .doc-explorer-title-bar,.graphiql-container .history-title-bar{cursor:default;display:flex;height:34px;line-height:14px;padding:8px 8px 5px;position:relative;user-select:none}.graphiql-container .doc-explorer-title,.graphiql-container .history-title{flex:1;font-weight:700;overflow-x:hidden;padding:10px 0 10px 10px;text-align:center;text-overflow:ellipsis;user-select:text;white-space:nowrap}.graphiql-container .doc-explorer-back{color:#3b5998;cursor:pointer;margin:-7px 0 -6px -8px;overflow-x:hidden;padding:17px 12px 16px 16px;text-overflow:ellipsis;white-space:nowrap;background:0;border:0;line-height:14px}.doc-explorer-narrow .doc-explorer-back{width:0}.graphiql-container .doc-explorer-back:before{border-left:2px solid #3b5998;border-top:2px solid #3b5998;content:\"\";display:inline-block;height:9px;margin:0 3px -1px 0;position:relative;transform:rotate(-45deg);width:9px}.graphiql-container .doc-explorer-rhs{position:relative}.graphiql-container .doc-explorer-contents,.graphiql-container .history-contents{background-color:#fff;border-top:1px solid #d6d6d6;bottom:0;left:0;overflow-y:auto;padding:20px 15px;position:absolute;right:0;top:47px}.graphiql-container .doc-explorer-contents{min-width:300px}.graphiql-container .doc-type-description blockquote:first-child,.graphiql-container .doc-type-description p:first-child{margin-top:0}.graphiql-container .doc-explorer-contents a{cursor:pointer;text-decoration:none}.graphiql-container .doc-explorer-contents a:hover{text-decoration:underline}.graphiql-container .doc-value-description>:first-child{margin-top:4px}.graphiql-container .doc-value-description>:last-child{margin-bottom:4px}.graphiql-container .doc-category code,.graphiql-container .doc-category pre,.graphiql-container .doc-type-description code,.graphiql-container .doc-type-description pre{--saf-0:rgba(var(--sk_foreground_low,29,28,29),0.13);font-size:12px;line-height:1.50001;font-variant-ligatures:none;white-space:pre;white-space:pre-wrap;word-wrap:break-word;word-break:normal;-webkit-tab-size:4;-moz-tab-size:4;tab-size:4}.graphiql-container .doc-category code,.graphiql-container .doc-type-description code{padding:2px 3px 1px;border:1px solid var(--saf-0);border-radius:3px;background-color:rgba(var(--sk_foreground_min,29,28,29),.04);color:#e01e5a;background-color:#fff}.graphiql-container .doc-category{margin:20px 0}.graphiql-container .doc-category-title{border-bottom:1px solid #e0e0e0;color:#777;cursor:default;font-size:14px;font-variant:small-caps;font-weight:700;letter-spacing:1px;margin:0 -15px 10px 0;padding:10px 0;user-select:none}.graphiql-container .doc-category-item{margin:12px 0;color:#555}.graphiql-container .keyword{color:#b11a04}.graphiql-container .type-name{color:#ca9800}.graphiql-container .field-name{color:#1f61a0}.graphiql-container .field-short-description{color:#666;margin-left:5px;overflow:hidden;text-overflow:ellipsis}.graphiql-container .enum-value{color:#0b7fc7}.graphiql-container .arg-name{color:#8b2bb9}.graphiql-container .arg{display:block;margin-left:1em}.graphiql-container .arg:first-child:last-child,.graphiql-container .arg:first-child:nth-last-child(2),.graphiql-container .arg:first-child:nth-last-child(2)~.arg{display:inherit;margin:inherit}.graphiql-container .arg:first-child:nth-last-child(2):after{content:\", \"}.graphiql-container .arg-default-value{color:#43a047}.graphiql-container .doc-deprecation{background:#fffae8;box-shadow:inset 0 0 1px #bfb063;color:#867f70;line-height:16px;margin:8px -8px;max-height:80px;overflow:hidden;padding:8px;border-radius:3px}.graphiql-container .doc-deprecation:before{content:\"Deprecated:\";color:#c79b2e;cursor:default;display:block;font-size:9px;font-weight:700;letter-spacing:1px;line-height:1;padding-bottom:5px;text-transform:uppercase;user-select:none}.graphiql-container .doc-deprecation>:first-child{margin-top:0}.graphiql-container .doc-deprecation>:last-child{margin-bottom:0}.graphiql-container .show-btn{-webkit-appearance:initial;display:block;border-radius:3px;border:1px solid #ccc;text-align:center;padding:8px 12px 10px;width:100%;box-sizing:border-box;background:#fbfcfc;color:#555;cursor:pointer}.graphiql-container .search-box{border-bottom:1px solid #d3d6db;display:flex;align-items:center;font-size:14px;margin:-15px -15px 12px 0;position:relative}.graphiql-container .search-box-icon{cursor:pointer;display:block;font-size:24px;transform:rotate(-45deg);user-select:none}.graphiql-container .search-box .search-box-clear{background-color:#d0d0d0;border-radius:12px;color:#fff;cursor:pointer;font-size:11px;padding:1px 5px 2px;position:absolute;right:3px;user-select:none;border:0}.graphiql-container .search-box .search-box-clear:hover{background-color:#b9b9b9}.graphiql-container .search-box>input{border:none;box-sizing:border-box;font-size:14px;outline:none;padding:6px 24px 8px 20px;width:100%}.graphiql-container .error-container{font-weight:700;left:0;letter-spacing:1px;opacity:.5;position:absolute;right:0;text-align:center;text-transform:uppercase;top:50%;transform:translateY(-50%)}\n.graphiql-container .history-contents{font-family:Consolas,Inconsolata,Droid Sans Mono,Monaco,monospace;margin:0;padding:0}.graphiql-container .history-contents li{align-items:center;display:flex;font-size:12px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin:0;padding:8px;border-bottom:1px solid #e0e0e0}.graphiql-container .history-contents li button:not(.history-label){display:none;margin-left:10px}.graphiql-container .history-contents li:focus-within button:not(.history-label),.graphiql-container .history-contents li:hover button:not(.history-label){display:inline-block}.graphiql-container .history-contents button,.graphiql-container .history-contents input{padding:0;background:0;border:0;font-size:inherit;font-family:inherit;line-height:14px;color:inherit}.graphiql-container .history-contents input{flex-grow:1}.graphiql-container .history-contents input::placeholder{color:inherit}.graphiql-container .history-contents button{cursor:pointer;text-align:left}.graphiql-container .history-contents .history-label{flex-grow:1;overflow:hidden;text-overflow:ellipsis}\n\n/*# sourceMappingURL=graphiql.min.css.map*/",".graphiql-code-exporter .CodeMirror {\n position: relative;\n font-size: 11px;\n background: transparent;\n}\n.graphiql-code-exporter .CodeMirror-lines {\n padding-top: 0;\n}\n","@import 'graphiql/graphiql.min.css';\n@import 'graphiql-code-exporter/CodeExporter.css';\n\n.graphiql-container {\n .error-or-loading {\n align-items: center;\n display: flex;\n flex-direction: column;\n justify-content: center;\n height: 100vh;\n width: 100vw;\n\n .logo {\n width: 300px;\n }\n }\n\n .graphiql-explorer-actions {\n overflow: hidden;\n }\n\n .graphiql-explorer-root > div > div {\n padding-left: 3px;\n }\n\n .title {\n width: 100px;\n\n img {\n display: block;\n }\n }\n\n .toolbar {\n width: 100%;\n }\n\n .endpoint {\n background: #eee;\n color: #000;\n font-variant: small-caps;\n font-weight: 700;\n height: 15px;\n letter-spacing: 1px;\n line-height: 14px;\n overflow: hidden;\n padding: 6px 0 8px 13px;\n text-overflow: ellipsis;\n text-transform: lowercase;\n white-space: nowrap;\n width: 100%;\n }\n\n .history-contents {\n button[aria-label] {\n font-size: 20px;\n\n &.favorited {\n display: block;\n }\n }\n }\n\n .docExplorerWrap {\n z-index: 15 !important;\n }\n\n .graphiql-operation-title-bar {\n button {\n height: 20px !important;\n margin-left: 5px !important;\n vertical-align: middle;\n width: 20px !important;\n }\n\n input {\n font-family: Consolas, Inconsolata, 'Droid Sans Mono', Monaco, monospace;\n }\n }\n\n .graphiql-explorer-actions {\n select {\n margin-left: 5px;\n margin-right: 5px;\n }\n }\n}\n","body {\n margin: 0;\n height: 100vh;\n overflow: hidden;\n}\n\n#root {\n height: 100vh;\n}\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\np {\n margin: 0 0 20px;\n padding: 0;\n\n &:last-child {\n margin-bottom: 0;\n }\n}\n\nhr {\n border: 0;\n border-bottom: 1px solid #eaeaea;\n margin: 0 0 10px;\n padding: 5px 0;\n}\n\npre {\n white-space: pre-wrap;\n}\n\n.sr-only {\n border-width: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n white-space: nowrap;\n width: 1px;\n}\n"],"names":[],"sourceRoot":""}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"static/js/0.a1da3266.chunk.js","mappings":"6OASA,iBA0CA,SAASA,EAAYC,EAAuBC,GAC1C,IAAMC,EAAQF,EAAGE,MAAMC,KAEjBC,EAASH,EAAEG,QAAUH,EAAEI,WAE7B,GAAMD,aAAkBE,aAGA,SAApBF,EAAOG,eAA8CC,IAAvBN,EAAMO,aAAxC,CAIA,IAAMC,EAAMN,EAAOO,wBAEbC,EAAc,WAClBC,aAAaX,EAAMO,cACnBP,EAAMO,aAAeK,WAAWC,EAASC,
|
|
1
|
+
{"version":3,"file":"static/js/0.a1da3266.chunk.js","mappings":"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","sources":["../node_modules/codemirror-graphql/src/utils/info-addon.ts"],"sourcesContent":["/**\n * Copyright (c) 2021 GraphQL Contributors\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n */\n\nimport CodeMirror from 'codemirror';\nimport { GraphQLInfoOptions } from '../info';\n\nCodeMirror.defineOption(\n 'info',\n false,\n (\n cm: CodeMirror.Editor,\n options: GraphQLInfoOptions,\n old?: GraphQLInfoOptions,\n ) => {\n if (old && old !== CodeMirror.Init) {\n const oldOnMouseOver = cm.state.info.onMouseOver;\n CodeMirror.off(cm.getWrapperElement(), 'mouseover', oldOnMouseOver);\n clearTimeout(cm.state.info.hoverTimeout);\n delete cm.state.info;\n }\n\n if (options) {\n const state: Record<string, any> = (cm.state.info = createState(options));\n state.onMouseOver = onMouseOver.bind(null, cm);\n CodeMirror.on(cm.getWrapperElement(), 'mouseover', state.onMouseOver);\n }\n },\n);\n\nfunction createState(options: GraphQLInfoOptions) {\n return {\n options:\n options instanceof Function\n ? { render: options }\n : options === true\n ? {}\n : options,\n };\n}\n\nfunction getHoverTime(cm: CodeMirror.Editor) {\n const options = cm.state.info.options;\n return (options && options.hoverTime) || 500;\n}\n\nfunction onMouseOver(cm: CodeMirror.Editor, e: MouseEvent) {\n const state = cm.state.info;\n\n const target = e.target || e.srcElement;\n\n if (!(target instanceof HTMLElement)) {\n return;\n }\n if (target.nodeName !== 'SPAN' || state.hoverTimeout !== undefined) {\n return;\n }\n\n const box = target.getBoundingClientRect();\n\n const onMouseMove = function () {\n clearTimeout(state.hoverTimeout);\n state.hoverTimeout = setTimeout(onHover, hoverTime);\n };\n\n const onMouseOut = function () {\n CodeMirror.off(document, 'mousemove', onMouseMove);\n CodeMirror.off(cm.getWrapperElement(), 'mouseout', onMouseOut);\n clearTimeout(state.hoverTimeout);\n state.hoverTimeout = undefined;\n };\n\n const onHover = function () {\n CodeMirror.off(document, 'mousemove', onMouseMove);\n CodeMirror.off(cm.getWrapperElement(), 'mouseout', onMouseOut);\n state.hoverTimeout = undefined;\n onMouseHover(cm, box);\n };\n\n const hoverTime = getHoverTime(cm);\n state.hoverTimeout = setTimeout(onHover, hoverTime);\n\n CodeMirror.on(document, 'mousemove', onMouseMove);\n CodeMirror.on(cm.getWrapperElement(), 'mouseout', onMouseOut);\n}\n\nfunction onMouseHover(cm: CodeMirror.Editor, box: DOMRect) {\n const pos = cm.coordsChar({\n left: (box.left + box.right) / 2,\n top: (box.top + box.bottom) / 2,\n });\n\n const state = cm.state.info;\n const options = state.options;\n const render = options.render || cm.getHelper(pos, 'info');\n if (render) {\n const token = cm.getTokenAt(pos, true);\n if (token) {\n const info: HTMLDivElement = render(token, options, cm, pos);\n if (info) {\n showPopup(cm, box, info);\n }\n }\n }\n}\n\nfunction showPopup(cm: CodeMirror.Editor, box: DOMRect, info: HTMLDivElement) {\n const popup = document.createElement('div');\n popup.className = 'CodeMirror-info';\n popup.appendChild(info);\n document.body.appendChild(popup);\n\n const popupBox = popup.getBoundingClientRect();\n const popupStyle = window.getComputedStyle(popup);\n const popupWidth =\n popupBox.right -\n popupBox.left +\n parseFloat(popupStyle.marginLeft) +\n parseFloat(popupStyle.marginRight);\n const popupHeight =\n popupBox.bottom -\n popupBox.top +\n parseFloat(popupStyle.marginTop) +\n parseFloat(popupStyle.marginBottom);\n\n let topPos = box.bottom;\n if (\n popupHeight > window.innerHeight - box.bottom - 15 &&\n box.top > window.innerHeight - box.bottom\n ) {\n topPos = box.top - popupHeight;\n }\n\n if (topPos < 0) {\n topPos = box.bottom;\n }\n\n let leftPos = Math.max(0, window.innerWidth - popupWidth - 15);\n if (leftPos > box.left) {\n leftPos = box.left;\n }\n\n popup.style.opacity = '1';\n popup.style.top = topPos + 'px';\n popup.style.left = leftPos + 'px';\n\n let popupTimeout: NodeJS.Timeout;\n\n const onMouseOverPopup = function () {\n clearTimeout(popupTimeout);\n };\n\n const onMouseOut = function () {\n clearTimeout(popupTimeout);\n popupTimeout = setTimeout(hidePopup, 200);\n };\n\n const hidePopup = function () {\n CodeMirror.off(popup, 'mouseover', onMouseOverPopup);\n CodeMirror.off(popup, 'mouseout', onMouseOut);\n CodeMirror.off(cm.getWrapperElement(), 'mouseout', onMouseOut);\n\n if (popup.style.opacity) {\n popup.style.opacity = '0';\n setTimeout(() => {\n if (popup.parentNode) {\n popup.parentNode.removeChild(popup);\n }\n }, 600);\n } else if (popup.parentNode) {\n popup.parentNode.removeChild(popup);\n }\n };\n\n CodeMirror.on(popup, 'mouseover', onMouseOverPopup);\n CodeMirror.on(popup, 'mouseout', onMouseOut);\n CodeMirror.on(cm.getWrapperElement(), 'mouseout', onMouseOut);\n}\n"],"names":["onMouseOver","cm","e","state","info","target","srcElement","HTMLElement","nodeName","undefined","hoverTimeout","box","getBoundingClientRect","onMouseMove","clearTimeout","setTimeout","onHover","hoverTime","onMouseOut","codemirror_1","off","document","getWrapperElement","pos","coordsChar","left","right","top","bottom","options","render","getHelper","token","getTokenAt","popup","createElement","className","appendChild","body","popupBox","popupStyle","window","getComputedStyle","popupWidth","parseFloat","marginLeft","marginRight","popupHeight","marginTop","marginBottom","topPos","innerHeight","popupTimeout","leftPos","Math","max","innerWidth","style","opacity","onMouseOverPopup","hidePopup","parentNode","removeChild","on","showPopup","onMouseHover","getHoverTime","defineOption","old","Init","oldOnMouseOver","Function","createState","bind"],"sourceRoot":""}
|