@scalar/api-client 0.12.13 → 0.12.14
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/CHANGELOG.md +8 -0
- package/dist/index.js +667 -3065
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -3,2276 +3,7 @@
|
|
|
3
3
|
try {
|
|
4
4
|
if (typeof document != "undefined") {
|
|
5
5
|
var elementStyle = document.createElement("style");
|
|
6
|
-
elementStyle.appendChild(document.createTextNode(`@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900');@import url('https://fonts.googleapis.com/css?family=JetBrains%20Mono');
|
|
7
|
-
|
|
8
|
-
:root {
|
|
9
|
-
--default-theme-border-width: 1px;
|
|
10
|
-
--default-theme-radius: 3px;
|
|
11
|
-
--default-theme-radius-lg: 6px;
|
|
12
|
-
--default-theme-radius-xl: 8px;
|
|
13
|
-
|
|
14
|
-
--default-theme-header-height: 50px;
|
|
15
|
-
--default-theme-sidebar-width: 280px;
|
|
16
|
-
--default-theme-toc-width: 280px;
|
|
17
|
-
|
|
18
|
-
/* TYPOGRAPHY ------------------------------------ */
|
|
19
|
-
--default-theme-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
|
|
20
|
-
Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
21
|
-
--default-theme-font-code: 'JetBrains Mono', ui-monospace, Menlo, Monaco,
|
|
22
|
-
'Cascadia Mono', 'Segoe UI Mono', 'Roboto Mono', 'Oxygen Mono',
|
|
23
|
-
'Ubuntu Monospace', 'Source Code Pro', 'Fira Mono', 'Droid Sans Mono',
|
|
24
|
-
'Courier New', monospace;
|
|
25
|
-
|
|
26
|
-
/** Font sizes for rendered text content (editor styles or static content) */
|
|
27
|
-
--default-theme-heading-1: 40px; /* Editor Page heading */
|
|
28
|
-
--default-theme-page-description: 24px;
|
|
29
|
-
--default-theme-heading-2: 24px; /* Editor section headings */
|
|
30
|
-
--default-theme-heading-3: 20px;
|
|
31
|
-
--default-theme-heading-4: 16px;
|
|
32
|
-
--default-theme-heading-5: 16px;
|
|
33
|
-
--default-theme-heading-6: 16px;
|
|
34
|
-
|
|
35
|
-
--default-theme-paragraph: 16px;
|
|
36
|
-
--default-theme-small: 14px;
|
|
37
|
-
--default-theme-mini: 13px;
|
|
38
|
-
--default-theme-micro: 12px;
|
|
39
|
-
--default-theme-bold: 600;
|
|
40
|
-
--default-theme-semibold: 500;
|
|
41
|
-
--default-theme-regular: 400;
|
|
42
|
-
|
|
43
|
-
/* Font sizes for interactive applications (not rendered text content) */
|
|
44
|
-
--default-theme-font-size-1: 24px;
|
|
45
|
-
--default-theme-font-size-2: 16px;
|
|
46
|
-
--default-theme-font-size-3: 14px;
|
|
47
|
-
--default-theme-font-size-4: 13px;
|
|
48
|
-
--default-theme-font-size-5: 12px;
|
|
49
|
-
|
|
50
|
-
--default-theme-line-height-1: 32px;
|
|
51
|
-
--default-theme-line-height-2: 24px;
|
|
52
|
-
--default-theme-line-height-3: 20px;
|
|
53
|
-
--default-theme-line-height-4: 18px;
|
|
54
|
-
--default-theme-line-height-5: 16px;
|
|
55
|
-
|
|
56
|
-
--default-theme-font-medium: 500;
|
|
57
|
-
--default-theme-font-bold: 700;
|
|
58
|
-
}
|
|
59
|
-
.dark-mode {
|
|
60
|
-
color-scheme: dark;
|
|
61
|
-
--default-theme-scrollbar-color: rgba(255, 255, 255, 0.18);
|
|
62
|
-
--default-theme-scrollbar-color-active: rgba(255, 255, 255, 0.36);
|
|
63
|
-
--default-theme-button-1: rgba(255, 255, 255, 1);
|
|
64
|
-
--default-theme-button-1-hover: rgba(255, 255, 255, 0.9);
|
|
65
|
-
--default-theme-button-1-color: black;
|
|
66
|
-
}
|
|
67
|
-
.light-mode {
|
|
68
|
-
color-scheme: light;
|
|
69
|
-
--default-theme-scrollbar-color-active: rgba(0, 0, 0, 0.36);
|
|
70
|
-
--default-theme-scrollbar-color: rgba(0, 0, 0, 0.18);
|
|
71
|
-
--default-theme-button-1: rgba(0, 0, 0, 1);
|
|
72
|
-
--default-theme-button-1-hover: rgba(0, 0, 0, 0.8);
|
|
73
|
-
--default-theme-button-1-color: rgba(255, 255, 255, 0.9);
|
|
74
|
-
}
|
|
75
|
-
@media (max-width: 460px) {
|
|
76
|
-
:root {
|
|
77
|
-
--default-theme-font-size-1: 22px;
|
|
78
|
-
--default-theme-font-size-2: 14px;
|
|
79
|
-
--default-theme-font-size-3: 12px;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
@media (max-width: 720px) {
|
|
83
|
-
:root {
|
|
84
|
-
--default-theme-heading-1: 24px;
|
|
85
|
-
--default-theme-page-description: 20px;
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
.cm-scroller,
|
|
89
|
-
.custom-scroll {
|
|
90
|
-
overflow-y: auto;
|
|
91
|
-
scrollbar-color: transparent transparent;
|
|
92
|
-
scrollbar-width: thin;
|
|
93
|
-
-webkit-overflow-scrolling: touch;
|
|
94
|
-
}
|
|
95
|
-
.custom-scroll-self-contain-overflow {
|
|
96
|
-
overscroll-behavior: contain;
|
|
97
|
-
}
|
|
98
|
-
@supports (-moz-appearance: none) {
|
|
99
|
-
.cm-scroller,
|
|
100
|
-
.custom-scroll {
|
|
101
|
-
padding-right: 12px;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
.cm-scroller:hover,
|
|
105
|
-
.custom-scroll:hover {
|
|
106
|
-
scrollbar-color: var(
|
|
107
|
-
--theme-scrollbar-color,
|
|
108
|
-
var(--default-theme-scrollbar-color)
|
|
109
|
-
)
|
|
110
|
-
transparent;
|
|
111
|
-
}
|
|
112
|
-
.cm-scroller:hover::-webkit-scrollbar-thumb,
|
|
113
|
-
.custom-scroll:hover::-webkit-scrollbar-thumb {
|
|
114
|
-
background: var(
|
|
115
|
-
--theme-scrollbar-color,
|
|
116
|
-
var(--default-theme-scrollbar-color)
|
|
117
|
-
);
|
|
118
|
-
background-clip: content-box;
|
|
119
|
-
border: 3px solid transparent;
|
|
120
|
-
}
|
|
121
|
-
.cm-scroller::-webkit-scrollbar-thumb:active,
|
|
122
|
-
.custom-scroll::-webkit-scrollbar-thumb:active {
|
|
123
|
-
background: var(
|
|
124
|
-
--theme-scrollbar-color-active,
|
|
125
|
-
var(--default-theme-scrollbar-color-active)
|
|
126
|
-
);
|
|
127
|
-
background-clip: content-box;
|
|
128
|
-
border: 3px solid transparent;
|
|
129
|
-
}
|
|
130
|
-
.cm-scroller::-webkit-scrollbar-corner,
|
|
131
|
-
.custom-scroll::-webkit-scrollbar-corner {
|
|
132
|
-
background: transparent;
|
|
133
|
-
}
|
|
134
|
-
.cm-scroller::-webkit-scrollbar,
|
|
135
|
-
.custom-scroll::-webkit-scrollbar {
|
|
136
|
-
height: 12px;
|
|
137
|
-
width: 12px;
|
|
138
|
-
}
|
|
139
|
-
.cm-scroller::-webkit-scrollbar-track,
|
|
140
|
-
.custom-scroll::-webkit-scrollbar-track {
|
|
141
|
-
background: transparent;
|
|
142
|
-
}
|
|
143
|
-
.cm-scroller::-webkit-scrollbar-thumb,
|
|
144
|
-
.custom-scroll::-webkit-scrollbar-thumb {
|
|
145
|
-
border-radius: 20px;
|
|
146
|
-
background: transparent;
|
|
147
|
-
background-clip: content-box;
|
|
148
|
-
border: 3px solid transparent;
|
|
149
|
-
}
|
|
150
|
-
@media (pointer: coarse) {
|
|
151
|
-
.cm-scroller,
|
|
152
|
-
.custom-scroll {
|
|
153
|
-
padding-right: 12px;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.codemirror-container[data-v-9f50a430] {
|
|
158
|
-
width: 100%;
|
|
159
|
-
height: 100%;
|
|
160
|
-
padding-top: 4px;
|
|
161
|
-
min-height: 76px;
|
|
162
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
163
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
164
|
-
display: flex;
|
|
165
|
-
align-items: stretch;
|
|
166
|
-
}
|
|
167
|
-
.copy-to-clipboard-button[data-v-9f50a430] {
|
|
168
|
-
background: red;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
.codemirror {
|
|
172
|
-
flex-grow: 1;
|
|
173
|
-
max-width: 100%;
|
|
174
|
-
cursor: text;
|
|
175
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
176
|
-
/* Don't scale wide text on mobile because we let it scroll */
|
|
177
|
-
-webkit-text-size-adjust: 100%;
|
|
178
|
-
}
|
|
179
|
-
.cm-focused {
|
|
180
|
-
outline: none !important;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.modal-layout[data-v-a06b8e92] {
|
|
184
|
-
position: fixed;
|
|
185
|
-
width: 100vw;
|
|
186
|
-
height: 100vh;
|
|
187
|
-
top: 0;
|
|
188
|
-
left: 0;
|
|
189
|
-
z-index: 1001;
|
|
190
|
-
background: rgba(0, 0, 0, 0.44);
|
|
191
|
-
padding: 20px;
|
|
192
|
-
opacity: 0;
|
|
193
|
-
animation: modal-fade-a06b8e92 0.2s forwards;
|
|
194
|
-
}
|
|
195
|
-
.modal-body[data-v-a06b8e92] {
|
|
196
|
-
padding: 24px 24px 18px 24px;
|
|
197
|
-
max-height: calc(100vh - 240px);
|
|
198
|
-
background: var(--theme-background-1, var(--default-theme-background-1));
|
|
199
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
200
|
-
font-family: var(--theme-font, var(--default-theme-font));
|
|
201
|
-
position: relative;
|
|
202
|
-
}
|
|
203
|
-
.modal[data-v-a06b8e92] {
|
|
204
|
-
margin: 80px auto 0;
|
|
205
|
-
position: relative;
|
|
206
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
207
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
208
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
209
|
-
width: 100%;
|
|
210
|
-
text-align: left;
|
|
211
|
-
line-height: 1.4;
|
|
212
|
-
opacity: 0;
|
|
213
|
-
transform: scale(0.98);
|
|
214
|
-
animation: modal-pop-a06b8e92 0.15s 0.15s forwards;
|
|
215
|
-
display: flex;
|
|
216
|
-
flex-direction: column;
|
|
217
|
-
}
|
|
218
|
-
.modal[data-v-a06b8e92]:before {
|
|
219
|
-
content: '';
|
|
220
|
-
display: block;
|
|
221
|
-
width: 100%;
|
|
222
|
-
height: 100%;
|
|
223
|
-
position: absolute;
|
|
224
|
-
z-index: 0;
|
|
225
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
226
|
-
}
|
|
227
|
-
.dark-mode .modal[data-v-a06b8e92]:before {
|
|
228
|
-
background: #1a1a1a;
|
|
229
|
-
}
|
|
230
|
-
.light-mode .modal[data-v-a06b8e92]:before {
|
|
231
|
-
background: #fff;
|
|
232
|
-
}
|
|
233
|
-
.modal-content-history[data-v-a06b8e92] {
|
|
234
|
-
background: var(--theme-background-1, var(--default-theme-background-1));
|
|
235
|
-
}
|
|
236
|
-
.modal-content-history[data-v-a06b8e92],
|
|
237
|
-
.modal-content-large[data-v-a06b8e92] {
|
|
238
|
-
max-width: 800px;
|
|
239
|
-
}
|
|
240
|
-
.modal-content-normal[data-v-a06b8e92] {
|
|
241
|
-
max-width: 640px;
|
|
242
|
-
}
|
|
243
|
-
.modal-content-small[data-v-a06b8e92] {
|
|
244
|
-
max-width: 480px;
|
|
245
|
-
}
|
|
246
|
-
@keyframes modal-fade-a06b8e92 {
|
|
247
|
-
from {
|
|
248
|
-
opacity: 0;
|
|
249
|
-
}
|
|
250
|
-
to {
|
|
251
|
-
opacity: 1;
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
@keyframes modal-pop-a06b8e92 {
|
|
255
|
-
0% {
|
|
256
|
-
opacity: 0;
|
|
257
|
-
}
|
|
258
|
-
100% {
|
|
259
|
-
opacity: 1;
|
|
260
|
-
transform: scale(1);
|
|
261
|
-
}
|
|
262
|
-
}
|
|
263
|
-
.modal-header[data-v-a06b8e92] {
|
|
264
|
-
padding: 12px 24px;
|
|
265
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
266
|
-
font-size: var(--theme-font-size-4, var(--default-theme-font-size-4));
|
|
267
|
-
text-align: left;
|
|
268
|
-
font-weight: 600;
|
|
269
|
-
margin: 0;
|
|
270
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg))
|
|
271
|
-
var(--theme-radius-lg, var(--default-theme-radius-lg)) 0 0;
|
|
272
|
-
z-index: 1;
|
|
273
|
-
}
|
|
274
|
-
.modal-content-history .modal-header[data-v-a06b8e92] {
|
|
275
|
-
padding-bottom: 0;
|
|
276
|
-
padding-top: 24px;
|
|
277
|
-
}
|
|
278
|
-
.modal-content-history .modal-body[data-v-a06b8e92] {
|
|
279
|
-
padding-top: 12px;
|
|
280
|
-
}
|
|
281
|
-
.modal-content-search[data-v-a06b8e92] {
|
|
282
|
-
max-width: 540px;
|
|
283
|
-
}
|
|
284
|
-
.modal-content-search .modal-body[data-v-a06b8e92] {
|
|
285
|
-
padding: 0;
|
|
286
|
-
overflow: hidden;
|
|
287
|
-
display: flex;
|
|
288
|
-
flex-direction: column;
|
|
289
|
-
max-height: 440px;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
.navtable-item-time[data-v-dd49a57f] {
|
|
293
|
-
text-transform: capitalize;
|
|
294
|
-
}
|
|
295
|
-
.navtable-item__active[data-v-dd49a57f] {
|
|
296
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
297
|
-
cursor: default;
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
.navtable-mock {
|
|
301
|
-
background-repeat: repeat;
|
|
302
|
-
width: 100%;
|
|
303
|
-
background-size: 31px 31px;
|
|
304
|
-
background-position: center 1px;
|
|
305
|
-
flex: 1;
|
|
306
|
-
position: relative;
|
|
307
|
-
z-index: 0;
|
|
308
|
-
border-top: 1px solid
|
|
309
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
310
|
-
background: repeating-linear-gradient(
|
|
311
|
-
var(--theme-background-1, var(--default-theme-background-1)),
|
|
312
|
-
var(--theme-background-1, var(--default-theme-background-1)) 34.8px,
|
|
313
|
-
var(--theme-border-color, var(--default-theme-border-color)) 34.8px,
|
|
314
|
-
var(--theme-border-color, var(--default-theme-border-color)) 35.8px
|
|
315
|
-
);
|
|
316
|
-
}
|
|
317
|
-
.navtable-mock .navtable-item {
|
|
318
|
-
position: absolute;
|
|
319
|
-
width: 100%;
|
|
320
|
-
height: 100%;
|
|
321
|
-
left: 0;
|
|
322
|
-
top: 0;
|
|
323
|
-
background: transparent;
|
|
324
|
-
box-shadow: none;
|
|
325
|
-
}
|
|
326
|
-
.radio {
|
|
327
|
-
height: 10px;
|
|
328
|
-
max-width: 10px;
|
|
329
|
-
width: 10px;
|
|
330
|
-
max-height: 10px;
|
|
331
|
-
background: transparent;
|
|
332
|
-
border: var(--border, var(--default-border));
|
|
333
|
-
flex-shrink: 0;
|
|
334
|
-
margin-right: 6px;
|
|
335
|
-
margin-left: 0;
|
|
336
|
-
border-radius: 50%;
|
|
337
|
-
display: flex;
|
|
338
|
-
align-items: center;
|
|
339
|
-
justify-content: center;
|
|
340
|
-
outline: none;
|
|
341
|
-
padding: 0;
|
|
342
|
-
}
|
|
343
|
-
.radio:before {
|
|
344
|
-
content: '';
|
|
345
|
-
position: absolute;
|
|
346
|
-
top: 0;
|
|
347
|
-
left: 0;
|
|
348
|
-
width: 100%;
|
|
349
|
-
height: 100%;
|
|
350
|
-
cursor: pointer;
|
|
351
|
-
}
|
|
352
|
-
.navtable-item__active:before {
|
|
353
|
-
content: '';
|
|
354
|
-
display: block;
|
|
355
|
-
box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1)) !important;
|
|
356
|
-
width: 100%;
|
|
357
|
-
position: absolute;
|
|
358
|
-
top: 0;
|
|
359
|
-
left: 0;
|
|
360
|
-
height: 100%;
|
|
361
|
-
}
|
|
362
|
-
.navtable-item__active + .navtable-item {
|
|
363
|
-
/* box-shadow: none; */
|
|
364
|
-
}
|
|
365
|
-
.radio.post {
|
|
366
|
-
background: var(--theme-color-green, var(--default-theme-color-green));
|
|
367
|
-
}
|
|
368
|
-
.radio.delete {
|
|
369
|
-
background: var(--theme-color-red, var(--default-theme-color-red));
|
|
370
|
-
}
|
|
371
|
-
.radio.patch {
|
|
372
|
-
background: var(--theme-color-yellow, var(--default-theme-color-yellow));
|
|
373
|
-
}
|
|
374
|
-
.radio.get {
|
|
375
|
-
background: var(--theme-color-blue, var(--default-theme-color-blue));
|
|
376
|
-
}
|
|
377
|
-
.radio.put {
|
|
378
|
-
background: var(--theme-color-orange, var(--default-theme-color-orange));
|
|
379
|
-
}
|
|
380
|
-
.navtable-item-request span {
|
|
381
|
-
border: none;
|
|
382
|
-
outline: none;
|
|
383
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
384
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
385
|
-
width: 100%;
|
|
386
|
-
display: block;
|
|
387
|
-
overflow: hidden;
|
|
388
|
-
white-space: nowrap;
|
|
389
|
-
text-overflow: ellipsis;
|
|
390
|
-
}
|
|
391
|
-
.navtable-item-request span em {
|
|
392
|
-
text-transform: uppercase;
|
|
393
|
-
font-style: normal;
|
|
394
|
-
font-family: var(--theme-font-code, var(--default-theme-font-code));
|
|
395
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
396
|
-
margin-right: 6px;
|
|
397
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
398
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
.request-method-select[data-v-8e2122cd] {
|
|
402
|
-
position: relative;
|
|
403
|
-
display: flex;
|
|
404
|
-
}
|
|
405
|
-
.request-method-select select[data-v-8e2122cd] {
|
|
406
|
-
border: none;
|
|
407
|
-
outline: none;
|
|
408
|
-
cursor: pointer;
|
|
409
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
410
|
-
box-shadow: -2px 0 0 0
|
|
411
|
-
var(--theme-background-3, var(--default-theme-background-3));
|
|
412
|
-
position: absolute;
|
|
413
|
-
top: 0;
|
|
414
|
-
left: 0;
|
|
415
|
-
width: 100%;
|
|
416
|
-
height: 100%;
|
|
417
|
-
opacity: 0;
|
|
418
|
-
-moz-appearance: none;
|
|
419
|
-
-webkit-appearance: none;
|
|
420
|
-
appearance: none;
|
|
421
|
-
}
|
|
422
|
-
.request-method-select select[disabled][data-v-8e2122cd] {
|
|
423
|
-
pointer-events: none;
|
|
424
|
-
}
|
|
425
|
-
.request-method[data-v-8e2122cd] {
|
|
426
|
-
display: flex;
|
|
427
|
-
align-items: center;
|
|
428
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
429
|
-
appearance: none;
|
|
430
|
-
-webkit-appearance: none;
|
|
431
|
-
padding: 0 12px;
|
|
432
|
-
border-right: 1px solid
|
|
433
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
434
|
-
position: relative;
|
|
435
|
-
}
|
|
436
|
-
.request-method span[data-v-8e2122cd] {
|
|
437
|
-
font-family: var(--theme-font-code, var(--default-theme-font-code));
|
|
438
|
-
font-size: 500;
|
|
439
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
440
|
-
text-transform: uppercase;
|
|
441
|
-
display: flex;
|
|
442
|
-
align-items: center;
|
|
443
|
-
}
|
|
444
|
-
.request-method:not(.request-method--disabled) span[data-v-8e2122cd]:after {
|
|
445
|
-
content: '';
|
|
446
|
-
width: 7px;
|
|
447
|
-
height: 7px;
|
|
448
|
-
transform: rotate(45deg) translate3d(-2px, -2px, 0);
|
|
449
|
-
display: block;
|
|
450
|
-
margin-left: 6px;
|
|
451
|
-
box-shadow: 1px 1px 0 currentColor;
|
|
452
|
-
}
|
|
453
|
-
.request-method i[data-v-8e2122cd] {
|
|
454
|
-
width: 10px;
|
|
455
|
-
height: 10px;
|
|
456
|
-
border-radius: 50%;
|
|
457
|
-
margin-right: 6px;
|
|
458
|
-
text-align: center;
|
|
459
|
-
line-height: 18px;
|
|
460
|
-
font-style: normal;
|
|
461
|
-
flex-shrink: 0;
|
|
462
|
-
display: inline-block;
|
|
463
|
-
color: var(--theme-color-disabled, var(--default-theme-color-disabled));
|
|
464
|
-
background: var(
|
|
465
|
-
--scalar-api-client-color,
|
|
466
|
-
var(--default-scalar-api-client-color)
|
|
467
|
-
);
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
.api-client-url-variable {
|
|
471
|
-
color: var(--scalar-api-client-color, var(--default-scalar-api-client-color));
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
.loader[data-v-75df9114] {
|
|
475
|
-
position: absolute;
|
|
476
|
-
z-index: 3;
|
|
477
|
-
height: 2px;
|
|
478
|
-
background: var(
|
|
479
|
-
--scalar-api-client-color,
|
|
480
|
-
var(--default-scalar-api-client-color)
|
|
481
|
-
);
|
|
482
|
-
animation: loading-75df9114 5s cubic-bezier(0, 0.5, 0.25, 1);
|
|
483
|
-
}
|
|
484
|
-
@keyframes loading-75df9114 {
|
|
485
|
-
0% {
|
|
486
|
-
width: 0;
|
|
487
|
-
}
|
|
488
|
-
100% {
|
|
489
|
-
width: 100%;
|
|
490
|
-
}
|
|
491
|
-
}
|
|
492
|
-
.address-bar[data-v-75df9114] {
|
|
493
|
-
width: 100%;
|
|
494
|
-
padding: 12px 12px 10px 12px;
|
|
495
|
-
display: flex;
|
|
496
|
-
align-items: center;
|
|
497
|
-
position: relative;
|
|
498
|
-
background: var(--theme-background-1, var(--default-theme-background-1));
|
|
499
|
-
}
|
|
500
|
-
.url-form[data-v-75df9114] {
|
|
501
|
-
display: flex;
|
|
502
|
-
width: 100%;
|
|
503
|
-
align-items: stretch;
|
|
504
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
505
|
-
}
|
|
506
|
-
.url-form[data-v-75df9114] .cm-content {
|
|
507
|
-
display: flex;
|
|
508
|
-
align-items: center;
|
|
509
|
-
}
|
|
510
|
-
.url-form-field[data-v-75df9114] {
|
|
511
|
-
border-right: 0;
|
|
512
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
513
|
-
border-radius: var(--theme-radius, var(--default-theme-radius)) 0 0
|
|
514
|
-
var(--theme-radius, var(--default-theme-radius));
|
|
515
|
-
display: flex;
|
|
516
|
-
align-items: stretch;
|
|
517
|
-
width: 100%;
|
|
518
|
-
overflow: hidden;
|
|
519
|
-
min-height: 31px;
|
|
520
|
-
}
|
|
521
|
-
.url-form-input[data-v-75df9114] {
|
|
522
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
523
|
-
}
|
|
524
|
-
.url-form-input[data-v-75df9114] {
|
|
525
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
526
|
-
min-height: auto;
|
|
527
|
-
padding-top: 0;
|
|
528
|
-
}
|
|
529
|
-
.url-form-input[data-v-75df9114] .cm-scroller {
|
|
530
|
-
overflow-y: hidden;
|
|
531
|
-
}
|
|
532
|
-
.history[data-v-75df9114] {
|
|
533
|
-
appearance: none;
|
|
534
|
-
-webkit-appearance: none;
|
|
535
|
-
background: transparent;
|
|
536
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
537
|
-
display: flex;
|
|
538
|
-
align-items: center;
|
|
539
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
540
|
-
height: 100%;
|
|
541
|
-
}
|
|
542
|
-
.send-button[type='submit'][data-v-75df9114] {
|
|
543
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
544
|
-
letter-spacing: 0.25px;
|
|
545
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
546
|
-
color: white;
|
|
547
|
-
border: none;
|
|
548
|
-
white-space: nowrap;
|
|
549
|
-
padding: 0 12px;
|
|
550
|
-
text-transform: uppercase;
|
|
551
|
-
cursor: pointer;
|
|
552
|
-
outline: none;
|
|
553
|
-
font-family: (--theme-font, var(--default-theme-font));
|
|
554
|
-
border-radius: 0 var(--theme-radius, var(--default-theme-radius))
|
|
555
|
-
var(--theme-radius, var(--default-theme-radius)) 0;
|
|
556
|
-
background: var(
|
|
557
|
-
--scalar-api-client-color,
|
|
558
|
-
var(--default-scalar-api-client-color)
|
|
559
|
-
);
|
|
560
|
-
position: relative;
|
|
561
|
-
/** #087f5b */
|
|
562
|
-
display: flex;
|
|
563
|
-
align-items: center;
|
|
564
|
-
overflow: hidden;
|
|
565
|
-
flex-shrink: 0;
|
|
566
|
-
}
|
|
567
|
-
.send-button[data-v-75df9114]:before {
|
|
568
|
-
content: '';
|
|
569
|
-
position: absolute;
|
|
570
|
-
top: -5%;
|
|
571
|
-
left: -5%;
|
|
572
|
-
width: 110%;
|
|
573
|
-
height: 110%;
|
|
574
|
-
pointer-events: none;
|
|
575
|
-
cursor: pointer;
|
|
576
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
577
|
-
background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
|
|
578
|
-
}
|
|
579
|
-
.send-button[data-v-75df9114]:hover:before {
|
|
580
|
-
background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
|
|
581
|
-
}
|
|
582
|
-
.send-button svg[data-v-75df9114] {
|
|
583
|
-
width: 12px;
|
|
584
|
-
height: 12px;
|
|
585
|
-
flex-shrink: 0;
|
|
586
|
-
margin-right: 6px;
|
|
587
|
-
position: relative;
|
|
588
|
-
}
|
|
589
|
-
.send-button span[data-v-75df9114] {
|
|
590
|
-
position: relative;
|
|
591
|
-
}
|
|
592
|
-
@media screen and (max-width: 720px) {
|
|
593
|
-
.history-toggle span[data-v-75df9114],
|
|
594
|
-
.send-button span[data-v-75df9114] {
|
|
595
|
-
display: none;
|
|
596
|
-
}
|
|
597
|
-
.history-toggle svg[data-v-75df9114],
|
|
598
|
-
.send-button svg[data-v-75df9114] {
|
|
599
|
-
margin-right: 0;
|
|
600
|
-
}
|
|
601
|
-
}
|
|
602
|
-
.send-button[disabled][data-v-75df9114] {
|
|
603
|
-
pointer-events: none;
|
|
604
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
605
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
606
|
-
border: 1px solid var(--default-theme-border-color);
|
|
607
|
-
}
|
|
608
|
-
.history-toggle[data-v-75df9114] {
|
|
609
|
-
padding: 0 12px;
|
|
610
|
-
line-height: 30px;
|
|
611
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
612
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
613
|
-
letter-spacing: 0.125px;
|
|
614
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
615
|
-
text-transform: uppercase;
|
|
616
|
-
height: 100%;
|
|
617
|
-
display: flex;
|
|
618
|
-
align-items: center;
|
|
619
|
-
cursor: pointer;
|
|
620
|
-
white-space: nowrap;
|
|
621
|
-
box-shadow: 0 0 0 1px
|
|
622
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
623
|
-
margin-left: 12px;
|
|
624
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
625
|
-
user-select: none;
|
|
626
|
-
}
|
|
627
|
-
.history-toggle[data-v-75df9114]:hover {
|
|
628
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
629
|
-
}
|
|
630
|
-
.history-toggle svg[data-v-75df9114] {
|
|
631
|
-
height: 13px;
|
|
632
|
-
width: 13px;
|
|
633
|
-
margin-right: 6px;
|
|
634
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
635
|
-
}
|
|
636
|
-
.address-bar-content[data-v-75df9114] {
|
|
637
|
-
width: 640px;
|
|
638
|
-
height: 100%;
|
|
639
|
-
background: var(--theme-background-1, var(--default-theme-background-1));
|
|
640
|
-
position: fixed;
|
|
641
|
-
top: 0;
|
|
642
|
-
right: 0;
|
|
643
|
-
z-index: 1000;
|
|
644
|
-
transform: translate3d(640px, 0, 0);
|
|
645
|
-
opacity: 0;
|
|
646
|
-
transition:
|
|
647
|
-
transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),
|
|
648
|
-
opacity 0.01s ease-in-out 0.5s;
|
|
649
|
-
pointer-events: none;
|
|
650
|
-
}
|
|
651
|
-
.address-bar--with-history[data-v-75df9114] {
|
|
652
|
-
z-index: 100000;
|
|
653
|
-
}
|
|
654
|
-
.address-bar--with-history .address-bar-content[data-v-75df9114] {
|
|
655
|
-
transform: translate3d(0, 0, 0);
|
|
656
|
-
opacity: 1;
|
|
657
|
-
pointer-events: all;
|
|
658
|
-
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
|
|
659
|
-
}
|
|
660
|
-
.address-bar--with-history .address-bar-close[data-v-75df9114] {
|
|
661
|
-
opacity: 1;
|
|
662
|
-
pointer-events: all;
|
|
663
|
-
cursor: pointer;
|
|
664
|
-
}
|
|
665
|
-
.address-bar-close[data-v-75df9114] {
|
|
666
|
-
width: 100%;
|
|
667
|
-
height: 100%;
|
|
668
|
-
position: fixed;
|
|
669
|
-
top: 0;
|
|
670
|
-
left: 0;
|
|
671
|
-
pointer-events: none;
|
|
672
|
-
opacity: 0;
|
|
673
|
-
transition: all 0.1s ease-in-out;
|
|
674
|
-
z-index: 1000;
|
|
675
|
-
}
|
|
676
|
-
|
|
677
|
-
.scalar-api-client__item {
|
|
678
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
679
|
-
margin-bottom: 6px;
|
|
680
|
-
position: relative;
|
|
681
|
-
}
|
|
682
|
-
.scalar-api-client__item button {
|
|
683
|
-
background-color: transparent;
|
|
684
|
-
text-align: left;
|
|
685
|
-
}
|
|
686
|
-
.scalar-api-client__item:hover {
|
|
687
|
-
cursor: pointer;
|
|
688
|
-
}
|
|
689
|
-
.scalar-api-client__toggle:after {
|
|
690
|
-
content: '';
|
|
691
|
-
position: absolute;
|
|
692
|
-
bottom: -6.5px;
|
|
693
|
-
width: 100%;
|
|
694
|
-
height: 6px;
|
|
695
|
-
left: 0;
|
|
696
|
-
}
|
|
697
|
-
.scalar-api-client__item--open .scalar-api-client__toggle:after {
|
|
698
|
-
display: none;
|
|
699
|
-
}
|
|
700
|
-
.scalar-api-client__item:hover,
|
|
701
|
-
.scalar-api-client__item--open {
|
|
702
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
703
|
-
}
|
|
704
|
-
.scalar-api-client__item--open .scalar-api-client__item__content {
|
|
705
|
-
display: flex;
|
|
706
|
-
}
|
|
707
|
-
.scalar-api-client__item--open:hover {
|
|
708
|
-
cursor: default;
|
|
709
|
-
}
|
|
710
|
-
.scalar-api-client__item--open .scalar-api-client__toggle__icon {
|
|
711
|
-
transform: rotate(90deg);
|
|
712
|
-
}
|
|
713
|
-
.scalar-api-client__toggle {
|
|
714
|
-
padding: 6px;
|
|
715
|
-
min-height: 37px;
|
|
716
|
-
display: flex;
|
|
717
|
-
align-items: center;
|
|
718
|
-
justify-content: space-between;
|
|
719
|
-
position: relative;
|
|
720
|
-
width: 100%;
|
|
721
|
-
appearance: none;
|
|
722
|
-
outline: 0;
|
|
723
|
-
border: none;
|
|
724
|
-
font-family: (--theme-font, var(--default-theme-font));
|
|
725
|
-
cursor: pointer;
|
|
726
|
-
}
|
|
727
|
-
.scalar-api-client__item .scalar-api-client__item__title {
|
|
728
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
729
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
730
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
731
|
-
font-family: (--theme-font, var(--default-theme-font));
|
|
732
|
-
user-select: none;
|
|
733
|
-
flex: 1;
|
|
734
|
-
position: relative;
|
|
735
|
-
z-index: 1;
|
|
736
|
-
}
|
|
737
|
-
.scalar-api-client__item .scalar-api-client__toggle__icon {
|
|
738
|
-
width: 10px;
|
|
739
|
-
margin-right: 6px;
|
|
740
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
741
|
-
z-index: 1;
|
|
742
|
-
position: relative;
|
|
743
|
-
}
|
|
744
|
-
.scalar-api-client__toggle:hover .scalar-api-client__toggle__icon {
|
|
745
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
746
|
-
}
|
|
747
|
-
.scalar-api-client__item__options {
|
|
748
|
-
position: relative;
|
|
749
|
-
z-index: 1;
|
|
750
|
-
}
|
|
751
|
-
.scalar-api-client__item__options span {
|
|
752
|
-
background: transparent;
|
|
753
|
-
padding: 2px 0;
|
|
754
|
-
border-radius: 3px;
|
|
755
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
756
|
-
pointer-events: none;
|
|
757
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
758
|
-
display: flex;
|
|
759
|
-
align-items: center;
|
|
760
|
-
justify-content: center;
|
|
761
|
-
}
|
|
762
|
-
.scalar-api-client__item__options:hover span {
|
|
763
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
764
|
-
border-color: currentColor;
|
|
765
|
-
}
|
|
766
|
-
.scalar-api-client__item__options span svg {
|
|
767
|
-
width: 15px;
|
|
768
|
-
height: 15px;
|
|
769
|
-
margin-left: 3px;
|
|
770
|
-
}
|
|
771
|
-
.scalar-api-client__item__options select {
|
|
772
|
-
position: absolute;
|
|
773
|
-
top: 0;
|
|
774
|
-
left: 0;
|
|
775
|
-
width: 100%;
|
|
776
|
-
height: 100%;
|
|
777
|
-
opacity: 0;
|
|
778
|
-
cursor: pointer;
|
|
779
|
-
-moz-appearance: none;
|
|
780
|
-
-webkit-appearance: none;
|
|
781
|
-
appearance: none;
|
|
782
|
-
}
|
|
783
|
-
.scalar-api-client__item__content .scalar-api-client__codemirror__wrapper {
|
|
784
|
-
padding-top: 0;
|
|
785
|
-
}
|
|
786
|
-
|
|
787
|
-
.loader-wrapper[data-v-9c0899b7] {
|
|
788
|
-
position: relative;
|
|
789
|
-
height: var(--389e7704);
|
|
790
|
-
width: var(--389e7704);
|
|
791
|
-
|
|
792
|
-
display: flex;
|
|
793
|
-
align-items: center;
|
|
794
|
-
justify-content: center;
|
|
795
|
-
|
|
796
|
-
--default-loader-size: 50%;
|
|
797
|
-
}
|
|
798
|
-
|
|
799
|
-
/*SVG Positioning for Loader Objects*/
|
|
800
|
-
.svg-loader[data-v-9c0899b7] {
|
|
801
|
-
width: var(--loader-size, var(--default-loader-size));
|
|
802
|
-
height: var(--loader-size, var(--default-loader-size));
|
|
803
|
-
top: 1rem;
|
|
804
|
-
right: 0.9rem;
|
|
805
|
-
overflow: visible;
|
|
806
|
-
|
|
807
|
-
fill: none;
|
|
808
|
-
background-color: transparent;
|
|
809
|
-
stroke: currentColor;
|
|
810
|
-
}
|
|
811
|
-
.svg-path[data-v-9c0899b7] {
|
|
812
|
-
stroke-width: 14;
|
|
813
|
-
fill: none;
|
|
814
|
-
transition: 0.3s;
|
|
815
|
-
}
|
|
816
|
-
.svg-x-mark[data-v-9c0899b7] {
|
|
817
|
-
stroke-dasharray: 57;
|
|
818
|
-
stroke-dashoffset: 57;
|
|
819
|
-
transition-delay: 0s;
|
|
820
|
-
}
|
|
821
|
-
.svg-check-mark[data-v-9c0899b7] {
|
|
822
|
-
stroke-dasharray: 149;
|
|
823
|
-
stroke-dashoffset: 149;
|
|
824
|
-
transition-delay: 0s;
|
|
825
|
-
}
|
|
826
|
-
.icon-is-invalid .svg-x-mark[data-v-9c0899b7] {
|
|
827
|
-
stroke-dashoffset: 0;
|
|
828
|
-
transition-delay: 0.3s;
|
|
829
|
-
}
|
|
830
|
-
.icon-is-valid .svg-check-mark[data-v-9c0899b7] {
|
|
831
|
-
stroke-dashoffset: 0;
|
|
832
|
-
transition-delay: 0.3s;
|
|
833
|
-
}
|
|
834
|
-
.circular-loader[data-v-9c0899b7] {
|
|
835
|
-
animation:
|
|
836
|
-
rotate-9c0899b7 0.7s linear infinite,fade-in-9c0899b7 0.4s;
|
|
837
|
-
|
|
838
|
-
transform-origin: center center;
|
|
839
|
-
transform: scale(5);
|
|
840
|
-
|
|
841
|
-
background: transparent;
|
|
842
|
-
}
|
|
843
|
-
.loader-path[data-v-9c0899b7] {
|
|
844
|
-
stroke-dasharray: 50, 200;
|
|
845
|
-
stroke-dashoffset: -100;
|
|
846
|
-
stroke-linecap: round;
|
|
847
|
-
}
|
|
848
|
-
.loader-path-off[data-v-9c0899b7] {
|
|
849
|
-
stroke-dasharray: 50, 200;
|
|
850
|
-
stroke-dashoffset: -100;
|
|
851
|
-
transition: opacity 0.3s;
|
|
852
|
-
opacity: 0;
|
|
853
|
-
}
|
|
854
|
-
@keyframes fade-in-9c0899b7 {
|
|
855
|
-
0% {
|
|
856
|
-
opacity: 0;
|
|
857
|
-
}
|
|
858
|
-
70% {
|
|
859
|
-
opacity: 0;
|
|
860
|
-
}
|
|
861
|
-
100% {
|
|
862
|
-
opacity: 1;
|
|
863
|
-
}
|
|
864
|
-
}
|
|
865
|
-
@keyframes rotate-9c0899b7 {
|
|
866
|
-
from {
|
|
867
|
-
transform: scale(5) rotate(0deg);
|
|
868
|
-
}
|
|
869
|
-
to {
|
|
870
|
-
transform: scale(5) rotate(360deg);
|
|
871
|
-
}
|
|
872
|
-
}
|
|
873
|
-
pre[class*="language-"].line-numbers {
|
|
874
|
-
position: relative;
|
|
875
|
-
padding-left: 3.8em;
|
|
876
|
-
counter-reset: linenumber;
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
pre[class*="language-"].line-numbers > code {
|
|
880
|
-
position: relative;
|
|
881
|
-
white-space: inherit;
|
|
882
|
-
}
|
|
883
|
-
|
|
884
|
-
.line-numbers .line-numbers-rows {
|
|
885
|
-
position: absolute;
|
|
886
|
-
pointer-events: none;
|
|
887
|
-
top: 0;
|
|
888
|
-
font-size: 100%;
|
|
889
|
-
left: -3.8em;
|
|
890
|
-
width: 3em; /* works for line-numbers below 1000 lines */
|
|
891
|
-
letter-spacing: -1px;
|
|
892
|
-
border-right: 1px solid #999;
|
|
893
|
-
|
|
894
|
-
-webkit-user-select: none;
|
|
895
|
-
-moz-user-select: none;
|
|
896
|
-
-ms-user-select: none;
|
|
897
|
-
user-select: none;
|
|
898
|
-
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
.line-numbers-rows > span {
|
|
902
|
-
display: block;
|
|
903
|
-
counter-increment: linenumber;
|
|
904
|
-
}
|
|
905
|
-
|
|
906
|
-
.line-numbers-rows > span:before {
|
|
907
|
-
content: counter(linenumber);
|
|
908
|
-
color: #999;
|
|
909
|
-
display: block;
|
|
910
|
-
padding-right: 0.8em;
|
|
911
|
-
text-align: right;
|
|
912
|
-
}
|
|
913
|
-
|
|
914
|
-
.scalar-codeblock-code[class*='language-'],
|
|
915
|
-
.scalar-codeblock-pre[class*='language-'] {
|
|
916
|
-
color: var(--theme-color-3, var(--default-theme-color-2));
|
|
917
|
-
background: none;
|
|
918
|
-
font-family: var(--theme-font-code, var(--default-theme-font-code));
|
|
919
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
920
|
-
text-align: left;
|
|
921
|
-
white-space: pre;
|
|
922
|
-
word-spacing: normal;
|
|
923
|
-
word-break: normal;
|
|
924
|
-
word-wrap: normal;
|
|
925
|
-
line-height: 1.4;
|
|
926
|
-
|
|
927
|
-
-moz-tab-size: 4;
|
|
928
|
-
-o-tab-size: 4;
|
|
929
|
-
tab-size: 4;
|
|
930
|
-
|
|
931
|
-
-webkit-hyphens: none;
|
|
932
|
-
-moz-hyphens: none;
|
|
933
|
-
-ms-hyphens: none;
|
|
934
|
-
hyphens: none;
|
|
935
|
-
}
|
|
936
|
-
|
|
937
|
-
/* Code blocks */
|
|
938
|
-
.scalar-codeblock-pre[class*='language-'] {
|
|
939
|
-
margin: 0;
|
|
940
|
-
padding: 0.5rem;
|
|
941
|
-
overflow: auto;
|
|
942
|
-
}
|
|
943
|
-
:not(pre) > code[class*='language-'],
|
|
944
|
-
.scalar-codeblock-pre[class*='language-'] {
|
|
945
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
946
|
-
}
|
|
947
|
-
|
|
948
|
-
/* Line Numbers */
|
|
949
|
-
.scalar-codeblock-pre[class*='language-'].line-numbers {
|
|
950
|
-
padding-left: 2em;
|
|
951
|
-
position: relative;
|
|
952
|
-
counter-reset: linenumber;
|
|
953
|
-
}
|
|
954
|
-
.line-numbers span.line-numbers-rows {
|
|
955
|
-
width: 2em;
|
|
956
|
-
border: none;
|
|
957
|
-
left: -2em;
|
|
958
|
-
}
|
|
959
|
-
.line-numbers code {
|
|
960
|
-
position: relative;
|
|
961
|
-
white-space: inherit;
|
|
962
|
-
}
|
|
963
|
-
|
|
964
|
-
/* Inline code */
|
|
965
|
-
:not(pre) > code[class*='language-'] {
|
|
966
|
-
padding: 0.1em;
|
|
967
|
-
border-radius: 0.3em;
|
|
968
|
-
white-space: normal;
|
|
969
|
-
}
|
|
970
|
-
|
|
971
|
-
/* Code */
|
|
972
|
-
.token.comment,
|
|
973
|
-
.token.block-comment,
|
|
974
|
-
.token.prolog,
|
|
975
|
-
.token.doctype,
|
|
976
|
-
.token.cdata {
|
|
977
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
978
|
-
}
|
|
979
|
-
.token.punctuation {
|
|
980
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
981
|
-
}
|
|
982
|
-
.token.tag,
|
|
983
|
-
.token.attr-name,
|
|
984
|
-
.token.namespace,
|
|
985
|
-
.token.deleted {
|
|
986
|
-
color: var(--theme-color-red, var(--default-theme-color-red));
|
|
987
|
-
}
|
|
988
|
-
.token.function-name {
|
|
989
|
-
color: var(--theme-color-green, var(--default-theme-color-green));
|
|
990
|
-
}
|
|
991
|
-
.token.boolean,
|
|
992
|
-
.token.number,
|
|
993
|
-
.token.function {
|
|
994
|
-
color: var(--theme-color-orange, var(--default-theme-color-orange));
|
|
995
|
-
}
|
|
996
|
-
.token.property,
|
|
997
|
-
.token.class-name,
|
|
998
|
-
.token.constant,
|
|
999
|
-
.token.symbol {
|
|
1000
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1001
|
-
}
|
|
1002
|
-
.token.selector,
|
|
1003
|
-
.token.important,
|
|
1004
|
-
.token.atrule,
|
|
1005
|
-
.token.keyword,
|
|
1006
|
-
.token.builtin {
|
|
1007
|
-
color: var(--theme-color-purple, var(--default-theme-color-purple));
|
|
1008
|
-
}
|
|
1009
|
-
.token.string,
|
|
1010
|
-
.token.char,
|
|
1011
|
-
.token.attr-value,
|
|
1012
|
-
.token.regex,
|
|
1013
|
-
.token.variable {
|
|
1014
|
-
color: var(--theme-color-blue, var(--default-theme-color-blue));
|
|
1015
|
-
}
|
|
1016
|
-
.light-mode .dark-mode .language-shell .token.variable {
|
|
1017
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1018
|
-
}
|
|
1019
|
-
.light-mode .dark-mode .language-shell .token.string {
|
|
1020
|
-
color: var(--theme-color-blue, var(--default-theme-color-blue));
|
|
1021
|
-
}
|
|
1022
|
-
.language-shell .token.string {
|
|
1023
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1024
|
-
}
|
|
1025
|
-
.token.operator,
|
|
1026
|
-
.token.entity,
|
|
1027
|
-
.token.url {
|
|
1028
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
1029
|
-
}
|
|
1030
|
-
.token.important,
|
|
1031
|
-
.token.bold {
|
|
1032
|
-
font-weight: bold;
|
|
1033
|
-
}
|
|
1034
|
-
.token.italic {
|
|
1035
|
-
font-style: italic;
|
|
1036
|
-
}
|
|
1037
|
-
.token.entity {
|
|
1038
|
-
cursor: help;
|
|
1039
|
-
}
|
|
1040
|
-
.token.inserted {
|
|
1041
|
-
color: var(--theme-color-green, var(--default-theme-color-green));
|
|
1042
|
-
}
|
|
1043
|
-
|
|
1044
|
-
/** Hide credentials */
|
|
1045
|
-
.credentials {
|
|
1046
|
-
font-size: 0;
|
|
1047
|
-
color: transparent;
|
|
1048
|
-
}
|
|
1049
|
-
|
|
1050
|
-
/** Show a few dots instead */
|
|
1051
|
-
.credentials::after {
|
|
1052
|
-
content: '·····';
|
|
1053
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
1054
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
1055
|
-
}
|
|
1056
|
-
|
|
1057
|
-
.scalar-modal-layout[data-v-53cbffc0] {
|
|
1058
|
-
animation: modal-fade-53cbffc0 0.2s forwards;
|
|
1059
|
-
}
|
|
1060
|
-
.scalar-modal[data-v-53cbffc0] {
|
|
1061
|
-
transform: scale(0.98);
|
|
1062
|
-
animation: modal-pop-53cbffc0 0.15s 0.15s forwards;
|
|
1063
|
-
}
|
|
1064
|
-
@keyframes modal-fade-53cbffc0 {
|
|
1065
|
-
from {
|
|
1066
|
-
opacity: 0;
|
|
1067
|
-
}
|
|
1068
|
-
to {
|
|
1069
|
-
opacity: 1;
|
|
1070
|
-
}
|
|
1071
|
-
}
|
|
1072
|
-
@keyframes modal-pop-53cbffc0 {
|
|
1073
|
-
0% {
|
|
1074
|
-
opacity: 0;
|
|
1075
|
-
}
|
|
1076
|
-
100% {
|
|
1077
|
-
opacity: 1;
|
|
1078
|
-
transform: scale(1);
|
|
1079
|
-
}
|
|
1080
|
-
}
|
|
1081
|
-
|
|
1082
|
-
.scalar-input[data-v-398eaaae]:not(:placeholder-shown),
|
|
1083
|
-
.scalar-input-wrapper-focus .scalar-input[data-v-398eaaae] {
|
|
1084
|
-
opacity: 1;
|
|
1085
|
-
transition: opacity 0.2s ease-in-out 0.15s;
|
|
1086
|
-
}
|
|
1087
|
-
.scalar-input-wrapper-focus .scalar-input-label[data-v-398eaaae] {
|
|
1088
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1089
|
-
}
|
|
1090
|
-
.scalar-input-wrapper-error .scalar-input-label[data-v-398eaaae] {
|
|
1091
|
-
color: var(--theme-color-error-color, var(--default-theme-color-red));
|
|
1092
|
-
}
|
|
1093
|
-
.scalar-input[data-v-398eaaae]::selection {
|
|
1094
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1095
|
-
background: rgba(255, 165, 88, 0.35);
|
|
1096
|
-
}
|
|
1097
|
-
.scalar-input[data-v-398eaaae]:has(+ .scalar-input-label) {
|
|
1098
|
-
opacity: 0;
|
|
1099
|
-
}
|
|
1100
|
-
.scalar-input[data-v-398eaaae]:not(:placeholder-shown),
|
|
1101
|
-
.scalar-input-wrapper-focus .scalar-input[data-v-398eaaae] {
|
|
1102
|
-
opacity: 1;
|
|
1103
|
-
transition: opacity 0.2s ease-in-out 0.15s;
|
|
1104
|
-
}
|
|
1105
|
-
.scalar-input[data-v-398eaaae]:-webkit-autofill,
|
|
1106
|
-
.scalar-input[data-v-398eaaae]:-webkit-autofill:hover,
|
|
1107
|
-
.scalar-input[data-v-398eaaae]:-webkit-autofill:focus,
|
|
1108
|
-
.scalar-input[data-v-398eaaae]:-webkit-autofill:active,
|
|
1109
|
-
.scalar-input[data-v-398eaaae]:focus-within:-webkit-autofill,
|
|
1110
|
-
.scalar-input[data-v-398eaaae]:focus-within:-webkit-autofill:hover,
|
|
1111
|
-
.scalar-input[data-v-398eaaae]:focus-within:-webkit-autofill:focus,
|
|
1112
|
-
.scalar-input[data-v-398eaaae]:focus-within:-webkit-autofill:active {
|
|
1113
|
-
-webkit-box-shadow: 0 0 0px 1000px
|
|
1114
|
-
var(--theme-background-1, var(--default-theme-background-1)) inset !important;
|
|
1115
|
-
-webkit-text-fill-color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1116
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1117
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
1118
|
-
}
|
|
1119
|
-
.scalar-input-wrapper-focus .scalar-input-label[data-v-398eaaae],
|
|
1120
|
-
.scalar-input:not(:placeholder-shown) + .scalar-input-label[data-v-398eaaae] {
|
|
1121
|
-
transform: translate3d(0, -20px, 0) scale(0.8);
|
|
1122
|
-
transform-origin: top left;
|
|
1123
|
-
}
|
|
1124
|
-
.scalar-input-wrapper-focus .scalar-input-label[data-v-398eaaae],
|
|
1125
|
-
.scalar-input:not(:placeholder-shown) + .scalar-input-label[data-v-398eaaae] {
|
|
1126
|
-
transform: translate3d(0, -20px, 0) scale(0.8);
|
|
1127
|
-
transform-origin: top left;
|
|
1128
|
-
}
|
|
1129
|
-
.scalar-input-wrapper-focus:has(button:active) .scalar-input-label[data-v-398eaaae] {
|
|
1130
|
-
color: var(--theme-color-3, var(--default-theme-color-3)) !important;
|
|
1131
|
-
}
|
|
1132
|
-
@tailwind base;
|
|
1133
|
-
@tailwind components;
|
|
1134
|
-
@tailwind utilities;
|
|
1135
|
-
|
|
1136
|
-
/**
|
|
1137
|
-
* Custom Reset - copied over from the tailwind reset
|
|
1138
|
-
* Auto-magically scoped by postcss (in postcss.config.js)
|
|
1139
|
-
*
|
|
1140
|
-
* @link https://tailwindcss.com/docs/preflight
|
|
1141
|
-
*/
|
|
1142
|
-
@layer base {
|
|
1143
|
-
* {
|
|
1144
|
-
box-sizing: border-box;
|
|
1145
|
-
border-width: unset;
|
|
1146
|
-
border-style: unset;
|
|
1147
|
-
border-color: theme('borderColor.DEFAULT', currentColor);
|
|
1148
|
-
|
|
1149
|
-
font-family: inherit;
|
|
1150
|
-
font-feature-settings: inherit;
|
|
1151
|
-
font-variation-settings: inherit;
|
|
1152
|
-
font-size: unset;
|
|
1153
|
-
font-weight: inherit;
|
|
1154
|
-
line-height: inherit;
|
|
1155
|
-
color: inherit;
|
|
1156
|
-
margin: unset;
|
|
1157
|
-
padding: unset;
|
|
1158
|
-
}
|
|
1159
|
-
}
|
|
1160
|
-
|
|
1161
|
-
@layer utilities {
|
|
1162
|
-
.row {
|
|
1163
|
-
@apply flex flex-row;
|
|
1164
|
-
}
|
|
1165
|
-
.col {
|
|
1166
|
-
@apply flex flex-col;
|
|
1167
|
-
}
|
|
1168
|
-
}
|
|
1169
|
-
|
|
1170
|
-
.table {
|
|
1171
|
-
border: 1px solid var(--theme-border-color, var(--default-theme-border-color));
|
|
1172
|
-
background: transparent;
|
|
1173
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
1174
|
-
width: 100%;
|
|
1175
|
-
}
|
|
1176
|
-
.table-row {
|
|
1177
|
-
border-bottom: 1px solid
|
|
1178
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
1179
|
-
display: flex;
|
|
1180
|
-
position: relative;
|
|
1181
|
-
}
|
|
1182
|
-
.table-row__add {
|
|
1183
|
-
border-radius: 0 0 var(--theme-radius-lg, var(--default-theme-radius-lg))
|
|
1184
|
-
var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
1185
|
-
border-bottom: none;
|
|
1186
|
-
}
|
|
1187
|
-
.table-row.required-parameter .table-row-item:nth-of-type(2):after {
|
|
1188
|
-
content: 'Required';
|
|
1189
|
-
position: absolute;
|
|
1190
|
-
top: 4px;
|
|
1191
|
-
right: 0;
|
|
1192
|
-
padding: 5px 9px 5px 6px;
|
|
1193
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
1194
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1195
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
1196
|
-
box-shadow: -2px 0 4px
|
|
1197
|
-
var(--theme-background-2, var(--default-theme-background-2));
|
|
1198
|
-
}
|
|
1199
|
-
.table-row.required-parameter
|
|
1200
|
-
.table-row-item:nth-of-type(2):focus-within:after {
|
|
1201
|
-
display: none;
|
|
1202
|
-
}
|
|
1203
|
-
.table-row:last-of-type {
|
|
1204
|
-
border-bottom: none;
|
|
1205
|
-
}
|
|
1206
|
-
.table-row__active {
|
|
1207
|
-
border-radius: 0 0 var(--theme-radius-lg, var(--default-theme-radius-lg))
|
|
1208
|
-
var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
1209
|
-
}
|
|
1210
|
-
.table-row-drag {
|
|
1211
|
-
width: 20px;
|
|
1212
|
-
flex-shrink: 0;
|
|
1213
|
-
border-right: 1px solid
|
|
1214
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
1215
|
-
align-items: center;
|
|
1216
|
-
justify-content: center;
|
|
1217
|
-
display: none;
|
|
1218
|
-
}
|
|
1219
|
-
.table-row-drag svg {
|
|
1220
|
-
width: 6px;
|
|
1221
|
-
fill: var(--theme-color-3, var(--default-theme-color-3));
|
|
1222
|
-
}
|
|
1223
|
-
.table-row-drag .table-row-drag-add {
|
|
1224
|
-
width: 8px;
|
|
1225
|
-
}
|
|
1226
|
-
.table-row-item {
|
|
1227
|
-
width: 100%;
|
|
1228
|
-
border-right: 1px solid
|
|
1229
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
1230
|
-
position: relative;
|
|
1231
|
-
}
|
|
1232
|
-
.table-row-item-menu {
|
|
1233
|
-
position: absolute;
|
|
1234
|
-
right: 6px;
|
|
1235
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
1236
|
-
width: 24px;
|
|
1237
|
-
height: 24px;
|
|
1238
|
-
top: 50%;
|
|
1239
|
-
transform: translate3d(0, -50%, 0);
|
|
1240
|
-
border-radius: 50%;
|
|
1241
|
-
display: flex;
|
|
1242
|
-
align-items: center;
|
|
1243
|
-
justify-content: center;
|
|
1244
|
-
opacity: 0;
|
|
1245
|
-
cursor: pointer;
|
|
1246
|
-
}
|
|
1247
|
-
.table-row-item input:focus + .table-row-item-menu,
|
|
1248
|
-
.table-row-item:hover .table-row-item-menu {
|
|
1249
|
-
opacity: 1;
|
|
1250
|
-
}
|
|
1251
|
-
.table-row-item-menu svg {
|
|
1252
|
-
height: 12px;
|
|
1253
|
-
width: initial;
|
|
1254
|
-
fill: var(--theme-color-3, var(--default-theme-color-3));
|
|
1255
|
-
}
|
|
1256
|
-
.table-row-item-menu:hover svg {
|
|
1257
|
-
fill: var(--theme-color-1, var(--default-theme-color-1));
|
|
1258
|
-
}
|
|
1259
|
-
.table-row-item input {
|
|
1260
|
-
border: none;
|
|
1261
|
-
appearance: none;
|
|
1262
|
-
outline: none;
|
|
1263
|
-
padding: 9px;
|
|
1264
|
-
width: 100%;
|
|
1265
|
-
min-height: 100%;
|
|
1266
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1267
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1268
|
-
background: transparent;
|
|
1269
|
-
font-family: var(--theme-font, var(--default-theme-font));
|
|
1270
|
-
}
|
|
1271
|
-
.table-row-item input[disabled] {
|
|
1272
|
-
background: transparent;
|
|
1273
|
-
font-family: var(--theme-font-code, var(--default-theme-font-code));
|
|
1274
|
-
}
|
|
1275
|
-
.table-row-item input:focus {
|
|
1276
|
-
box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));
|
|
1277
|
-
}
|
|
1278
|
-
.table-row-item label {
|
|
1279
|
-
background: transparent;
|
|
1280
|
-
text-transform: uppercase;
|
|
1281
|
-
display: block;
|
|
1282
|
-
padding: 9px;
|
|
1283
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
1284
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
1285
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1286
|
-
}
|
|
1287
|
-
.table-row-meta {
|
|
1288
|
-
overflow: hidden;
|
|
1289
|
-
flex-shrink: 0;
|
|
1290
|
-
transition: all 0.15s ease-in-out;
|
|
1291
|
-
display: flex;
|
|
1292
|
-
align-items: center;
|
|
1293
|
-
justify-content: center;
|
|
1294
|
-
width: 51px;
|
|
1295
|
-
user-select: none;
|
|
1296
|
-
}
|
|
1297
|
-
.table-row-meta-check {
|
|
1298
|
-
width: 18px;
|
|
1299
|
-
height: 18px;
|
|
1300
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
1301
|
-
background: rgba(47, 177, 228, 0.1);
|
|
1302
|
-
}
|
|
1303
|
-
.table-row-meta svg {
|
|
1304
|
-
width: 13px;
|
|
1305
|
-
height: 13px;
|
|
1306
|
-
margin: 0 1px;
|
|
1307
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
1308
|
-
cursor: pointer;
|
|
1309
|
-
}
|
|
1310
|
-
.table-row-meta svg:hover {
|
|
1311
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
1312
|
-
}
|
|
1313
|
-
.meta-check {
|
|
1314
|
-
display: flex;
|
|
1315
|
-
position: relative;
|
|
1316
|
-
cursor: pointer;
|
|
1317
|
-
align-items: center;
|
|
1318
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1319
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
1320
|
-
user-select: none;
|
|
1321
|
-
margin: 0 1px;
|
|
1322
|
-
transition: all 0.15s ease-in-out;
|
|
1323
|
-
}
|
|
1324
|
-
.meta-check input {
|
|
1325
|
-
position: absolute;
|
|
1326
|
-
opacity: 0;
|
|
1327
|
-
cursor: pointer;
|
|
1328
|
-
height: 0;
|
|
1329
|
-
width: 0;
|
|
1330
|
-
}
|
|
1331
|
-
.meta-checkmark {
|
|
1332
|
-
height: 17px;
|
|
1333
|
-
width: 17px;
|
|
1334
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
1335
|
-
border-radius: 3px;
|
|
1336
|
-
display: flex;
|
|
1337
|
-
align-items: center;
|
|
1338
|
-
justify-content: center;
|
|
1339
|
-
position: relative;
|
|
1340
|
-
}
|
|
1341
|
-
.meta-checkmark:hover {
|
|
1342
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
1343
|
-
}
|
|
1344
|
-
.meta-check:focus-within .meta-checkmark {
|
|
1345
|
-
box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));
|
|
1346
|
-
}
|
|
1347
|
-
.meta-check .meta-checkmark:after {
|
|
1348
|
-
content: '';
|
|
1349
|
-
display: none;
|
|
1350
|
-
width: 5px;
|
|
1351
|
-
height: 8px;
|
|
1352
|
-
border: solid var(--theme-color-1, var(--default-theme-color-1));
|
|
1353
|
-
border-width: 0 1.5px 1.5px 0;
|
|
1354
|
-
transform: rotate(45deg) translate3d(0, -1px, 0);
|
|
1355
|
-
}
|
|
1356
|
-
.meta-check input:checked ~ .meta-checkmark:after {
|
|
1357
|
-
display: block;
|
|
1358
|
-
}
|
|
1359
|
-
.meta-check input:checked ~ .meta-checkmark:hover {
|
|
1360
|
-
background: transparent;
|
|
1361
|
-
}
|
|
1362
|
-
|
|
1363
|
-
.navtable {
|
|
1364
|
-
width: 100%;
|
|
1365
|
-
}
|
|
1366
|
-
.navtable-follow {
|
|
1367
|
-
background-color: black;
|
|
1368
|
-
color: white;
|
|
1369
|
-
font-size: 9px;
|
|
1370
|
-
padding: 6px;
|
|
1371
|
-
display: -webkit-box;
|
|
1372
|
-
max-width: 250px;
|
|
1373
|
-
-webkit-line-clamp: 12;
|
|
1374
|
-
border-radius: 3px;
|
|
1375
|
-
-webkit-box-orient: vertical;
|
|
1376
|
-
overflow: hidden;
|
|
1377
|
-
line-height: 1.24;
|
|
1378
|
-
transform: translate3d(10px, 0, 0);
|
|
1379
|
-
}
|
|
1380
|
-
.navtable-follow:after {
|
|
1381
|
-
content: '';
|
|
1382
|
-
position: absolute;
|
|
1383
|
-
bottom: 0;
|
|
1384
|
-
width: 100%;
|
|
1385
|
-
height: 6px;
|
|
1386
|
-
background-color: black;
|
|
1387
|
-
}
|
|
1388
|
-
.navtable-follow * {
|
|
1389
|
-
font-family: var(
|
|
1390
|
-
--theme-font-code,
|
|
1391
|
-
var(--default-theme-font-code)
|
|
1392
|
-
) !important;
|
|
1393
|
-
}
|
|
1394
|
-
.navtable-table {
|
|
1395
|
-
position: relative;
|
|
1396
|
-
display: flex;
|
|
1397
|
-
flex-direction: column;
|
|
1398
|
-
min-height: 389px;
|
|
1399
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
1400
|
-
border: 1px solid var(--theme-border-color, var(--default-theme-border-color));
|
|
1401
|
-
}
|
|
1402
|
-
.navtable-radios {
|
|
1403
|
-
z-index: 1;
|
|
1404
|
-
border-top: 1px solid
|
|
1405
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
1406
|
-
}
|
|
1407
|
-
.navtable-item {
|
|
1408
|
-
display: flex;
|
|
1409
|
-
position: relative;
|
|
1410
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1411
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1412
|
-
border-top: 1px solid
|
|
1413
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
1414
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
1415
|
-
}
|
|
1416
|
-
.navtable-item:first-of-type {
|
|
1417
|
-
border-top: none;
|
|
1418
|
-
}
|
|
1419
|
-
.navtable-item > div {
|
|
1420
|
-
word-wrap: break-word;
|
|
1421
|
-
}
|
|
1422
|
-
.navtable-item > div:not(:first-child) {
|
|
1423
|
-
border-left: 1px solid
|
|
1424
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
1425
|
-
}
|
|
1426
|
-
.navtable-item-action {
|
|
1427
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
1428
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1429
|
-
font-weight: var(--theme-bold, var(--default-theme-bold));
|
|
1430
|
-
background: var(
|
|
1431
|
-
--scalar-api-client-bg3,
|
|
1432
|
-
var(--default-scalar-api-client-bg3)
|
|
1433
|
-
);
|
|
1434
|
-
border: none;
|
|
1435
|
-
border-radius: 30px;
|
|
1436
|
-
appearance: none;
|
|
1437
|
-
max-height: 25px;
|
|
1438
|
-
margin-left: 12px;
|
|
1439
|
-
margin-right: 6px;
|
|
1440
|
-
padding: 4px 8px;
|
|
1441
|
-
outline: none;
|
|
1442
|
-
cursor: pointer;
|
|
1443
|
-
opacity: 0;
|
|
1444
|
-
transition: opacity 0.15s ease-in-out;
|
|
1445
|
-
white-space: nowrap;
|
|
1446
|
-
position: relative;
|
|
1447
|
-
}
|
|
1448
|
-
.navtable-item-action:hover {
|
|
1449
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1450
|
-
background: var(
|
|
1451
|
-
--scalar-api-client-gradient,
|
|
1452
|
-
var(--default-scalar-api-client-gradient)
|
|
1453
|
-
);
|
|
1454
|
-
box-shadow: 0 0 0 1px
|
|
1455
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
1456
|
-
}
|
|
1457
|
-
.navtable-item-action:focus {
|
|
1458
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
1459
|
-
}
|
|
1460
|
-
.navtable-item:hover,
|
|
1461
|
-
.navtable-item:focus-within .navtable-item-action {
|
|
1462
|
-
opacity: 1;
|
|
1463
|
-
}
|
|
1464
|
-
.navtable-item-add {
|
|
1465
|
-
display: flex;
|
|
1466
|
-
align-items: center;
|
|
1467
|
-
padding: 9px;
|
|
1468
|
-
font-weight: var(--theme-bold, var(--default-theme-bold));
|
|
1469
|
-
outline: none;
|
|
1470
|
-
border: none;
|
|
1471
|
-
appearance: none;
|
|
1472
|
-
background: transparent;
|
|
1473
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1474
|
-
}
|
|
1475
|
-
.navtable-item-add:hover {
|
|
1476
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
1477
|
-
cursor: pointer;
|
|
1478
|
-
}
|
|
1479
|
-
.navtable-item-25 {
|
|
1480
|
-
width: 25%;
|
|
1481
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1482
|
-
display: flex;
|
|
1483
|
-
align-items: center;
|
|
1484
|
-
}
|
|
1485
|
-
.navtable-item-33 {
|
|
1486
|
-
width: 33.33333%;
|
|
1487
|
-
display: flex;
|
|
1488
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1489
|
-
align-items: center;
|
|
1490
|
-
}
|
|
1491
|
-
.navtable-item-66 {
|
|
1492
|
-
width: 66.6666%;
|
|
1493
|
-
display: flex;
|
|
1494
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1495
|
-
align-items: center;
|
|
1496
|
-
}
|
|
1497
|
-
.navtable-item-75 {
|
|
1498
|
-
width: 75%;
|
|
1499
|
-
display: flex;
|
|
1500
|
-
align-items: center;
|
|
1501
|
-
}
|
|
1502
|
-
.navtable-item-75:focus-within {
|
|
1503
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
1504
|
-
}
|
|
1505
|
-
.navtable-item-40 {
|
|
1506
|
-
width: 40%;
|
|
1507
|
-
display: flex;
|
|
1508
|
-
align-items: center;
|
|
1509
|
-
padding: 9px;
|
|
1510
|
-
}
|
|
1511
|
-
.navtable-item-20 {
|
|
1512
|
-
width: 20%;
|
|
1513
|
-
display: flex;
|
|
1514
|
-
align-items: center;
|
|
1515
|
-
padding: 9px;
|
|
1516
|
-
}
|
|
1517
|
-
.navtable-item-50 {
|
|
1518
|
-
width: 50%;
|
|
1519
|
-
display: flex;
|
|
1520
|
-
align-items: center;
|
|
1521
|
-
}
|
|
1522
|
-
.navtable-item-50:focus-within {
|
|
1523
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
1524
|
-
}
|
|
1525
|
-
.navtable-item p {
|
|
1526
|
-
padding: 9px;
|
|
1527
|
-
}
|
|
1528
|
-
.navtable-item input {
|
|
1529
|
-
padding: 12px 6px;
|
|
1530
|
-
border: none;
|
|
1531
|
-
outline: none;
|
|
1532
|
-
appearance: none;
|
|
1533
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1534
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1535
|
-
background: transparent;
|
|
1536
|
-
width: 100%;
|
|
1537
|
-
}
|
|
1538
|
-
.navtable-item input:focus {
|
|
1539
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
1540
|
-
}
|
|
1541
|
-
.navtable-item-select {
|
|
1542
|
-
position: relative;
|
|
1543
|
-
}
|
|
1544
|
-
.navtable-item-select select {
|
|
1545
|
-
background: transparent;
|
|
1546
|
-
outline: none;
|
|
1547
|
-
border: none;
|
|
1548
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1549
|
-
-moz-appearance: none;
|
|
1550
|
-
-webkit-appearance: none;
|
|
1551
|
-
appearance: none;
|
|
1552
|
-
width: 100%;
|
|
1553
|
-
padding: 12px 6px;
|
|
1554
|
-
top: 0;
|
|
1555
|
-
position: relative;
|
|
1556
|
-
cursor: pointer;
|
|
1557
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
1558
|
-
}
|
|
1559
|
-
.navtable-item-select svg {
|
|
1560
|
-
position: absolute;
|
|
1561
|
-
right: 6px;
|
|
1562
|
-
color: var(--theme-color-ghost, var(--default-theme-color-ghost));
|
|
1563
|
-
width: 6px;
|
|
1564
|
-
top: 12px;
|
|
1565
|
-
pointer-events: none;
|
|
1566
|
-
}
|
|
1567
|
-
.navtable-item .option {
|
|
1568
|
-
padding: 12px 6px;
|
|
1569
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1570
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1571
|
-
width: 100%;
|
|
1572
|
-
}
|
|
1573
|
-
.navtable-item label {
|
|
1574
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
1575
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1576
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
1577
|
-
text-transform: uppercase;
|
|
1578
|
-
display: block;
|
|
1579
|
-
width: 100%;
|
|
1580
|
-
}
|
|
1581
|
-
.navtable-item-response {
|
|
1582
|
-
padding: 0 9px;
|
|
1583
|
-
}
|
|
1584
|
-
.navtable-item-response span {
|
|
1585
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1586
|
-
display: flex;
|
|
1587
|
-
align-items: center;
|
|
1588
|
-
margin-right: 9px;
|
|
1589
|
-
min-width: 40px;
|
|
1590
|
-
}
|
|
1591
|
-
.scalar-api-client__status--1xx:before,
|
|
1592
|
-
.scalar-api-client__status--2xx:before,
|
|
1593
|
-
.scalar-api-client__status--3xx:before,
|
|
1594
|
-
.scalar-api-client__status--4xx:before,
|
|
1595
|
-
.scalar-api-client__status--5xx:before,
|
|
1596
|
-
.scalar-api-client__status--6xx:before {
|
|
1597
|
-
content: '';
|
|
1598
|
-
width: 10px;
|
|
1599
|
-
height: 10px;
|
|
1600
|
-
border-radius: 50%;
|
|
1601
|
-
margin-right: 4px;
|
|
1602
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
1603
|
-
}
|
|
1604
|
-
.scalar-api-client__status--2xx:before {
|
|
1605
|
-
background: var(--theme-color-green, var(--default-theme-color-green));
|
|
1606
|
-
}
|
|
1607
|
-
.scalar-api-client__status--3xx:before {
|
|
1608
|
-
background: var(--theme-color-orange, var(--default-theme-color-orange));
|
|
1609
|
-
}
|
|
1610
|
-
.scalar-api-client__status--4xx:before {
|
|
1611
|
-
background: var(--theme-color-red, var(--default-theme-color-red));
|
|
1612
|
-
}
|
|
1613
|
-
.navtable-item-response span:empty {
|
|
1614
|
-
display: none;
|
|
1615
|
-
}
|
|
1616
|
-
.simpletable.navtable {
|
|
1617
|
-
padding: 0;
|
|
1618
|
-
}
|
|
1619
|
-
.simpletable.navtable .navtable-item-66,
|
|
1620
|
-
.simpletable.navtable .navtable-item-33 {
|
|
1621
|
-
display: block;
|
|
1622
|
-
}
|
|
1623
|
-
.simpletable.navtable .navtable-table {
|
|
1624
|
-
height: fit-content;
|
|
1625
|
-
}
|
|
1626
|
-
.meta-delete {
|
|
1627
|
-
position: absolute;
|
|
1628
|
-
right: -9px;
|
|
1629
|
-
background: var(
|
|
1630
|
-
--theme-background-3,
|
|
1631
|
-
var(--default-theme-background-3)
|
|
1632
|
-
) !important;
|
|
1633
|
-
height: 20px;
|
|
1634
|
-
width: 20px;
|
|
1635
|
-
border: none;
|
|
1636
|
-
outline: none;
|
|
1637
|
-
border-radius: 50%;
|
|
1638
|
-
opacity: 0;
|
|
1639
|
-
padding: 5px;
|
|
1640
|
-
display: flex;
|
|
1641
|
-
align-items: center;
|
|
1642
|
-
justify-content: center;
|
|
1643
|
-
cursor: pointer;
|
|
1644
|
-
}
|
|
1645
|
-
.meta-delete svg {
|
|
1646
|
-
width: 11px;
|
|
1647
|
-
height: 11px;
|
|
1648
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
1649
|
-
}
|
|
1650
|
-
.meta-delete:hover svg {
|
|
1651
|
-
color: var(--theme-color-red, var(--default-theme-color-red));
|
|
1652
|
-
}
|
|
1653
|
-
.meta-delete:focus svg {
|
|
1654
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1655
|
-
}
|
|
1656
|
-
.meta-delete:focus {
|
|
1657
|
-
border-color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1658
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1659
|
-
}
|
|
1660
|
-
.table-row:hover .meta-delete {
|
|
1661
|
-
opacity: 1;
|
|
1662
|
-
}
|
|
1663
|
-
@media (pointer: coarse) {
|
|
1664
|
-
.table-row:hover .meta-delete {
|
|
1665
|
-
opacity: 1;
|
|
1666
|
-
}
|
|
1667
|
-
}
|
|
1668
|
-
.meta-actions-item {
|
|
1669
|
-
border: none;
|
|
1670
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
1671
|
-
appearance: none;
|
|
1672
|
-
padding: 9px;
|
|
1673
|
-
width: 100%;
|
|
1674
|
-
appearance: none;
|
|
1675
|
-
outline: none;
|
|
1676
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1677
|
-
font-family: var(--theme-font, var(--default-theme-font));
|
|
1678
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
1679
|
-
cursor: pointer;
|
|
1680
|
-
display: flex;
|
|
1681
|
-
align-items: center;
|
|
1682
|
-
gap: 6px;
|
|
1683
|
-
}
|
|
1684
|
-
.meta-actions {
|
|
1685
|
-
width: 100%;
|
|
1686
|
-
display: flex;
|
|
1687
|
-
justify-content: space-between;
|
|
1688
|
-
}
|
|
1689
|
-
.meta-actions-item:nth-of-type(2) {
|
|
1690
|
-
display: flex;
|
|
1691
|
-
justify-content: flex-end;
|
|
1692
|
-
}
|
|
1693
|
-
.meta-actions-item:nth-of-type(2) i {
|
|
1694
|
-
filter: drop-shadow(0 0.125px 0 currentColor)
|
|
1695
|
-
drop-shadow(0 -0.125px 0 currentColor);
|
|
1696
|
-
}
|
|
1697
|
-
.meta-actions-item-icon {
|
|
1698
|
-
width: 12px;
|
|
1699
|
-
height: 12px;
|
|
1700
|
-
}
|
|
1701
|
-
.meta-actions-item:hover,
|
|
1702
|
-
.meta-actions-item:focus {
|
|
1703
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1704
|
-
}
|
|
1705
|
-
|
|
1706
|
-
.scalar-api-client-add {
|
|
1707
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
1708
|
-
padding: 6px;
|
|
1709
|
-
width: fit-content;
|
|
1710
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
1711
|
-
cursor: pointer;
|
|
1712
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1713
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
1714
|
-
text-decoration: none;
|
|
1715
|
-
margin: 0 6px;
|
|
1716
|
-
border: none;
|
|
1717
|
-
font-family: var(--theme-font);
|
|
1718
|
-
appearance: none;
|
|
1719
|
-
display: flex;
|
|
1720
|
-
align-items: center;
|
|
1721
|
-
}
|
|
1722
|
-
.scalar-api-client-add svg {
|
|
1723
|
-
width: 12px;
|
|
1724
|
-
height: 12px;
|
|
1725
|
-
margin-right: 6px;
|
|
1726
|
-
}
|
|
1727
|
-
.scalar-api-client-add:hover {
|
|
1728
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1729
|
-
}
|
|
1730
|
-
.scalar-api-client-add:focus-within {
|
|
1731
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
1732
|
-
}
|
|
1733
|
-
|
|
1734
|
-
.scalar-api-client__main__left {
|
|
1735
|
-
width: 50%;
|
|
1736
|
-
border-right: 1px solid
|
|
1737
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
1738
|
-
padding: 0 18px 12px 18px;
|
|
1739
|
-
}
|
|
1740
|
-
@media screen and (max-width: 820px) {
|
|
1741
|
-
.scalar-api-client__main__left {
|
|
1742
|
-
width: 100%;
|
|
1743
|
-
border-right: none;
|
|
1744
|
-
padding: 0 12px 12px 12px;
|
|
1745
|
-
}
|
|
1746
|
-
}
|
|
1747
|
-
.scalar-api-client__item__content {
|
|
1748
|
-
flex-flow: wrap;
|
|
1749
|
-
padding: 3px 9px 9px 9px;
|
|
1750
|
-
border-radius: 3px;
|
|
1751
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
1752
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1753
|
-
margin-top: -3px;
|
|
1754
|
-
justify-content: space-between;
|
|
1755
|
-
overflow: auto;
|
|
1756
|
-
}
|
|
1757
|
-
.scalar-api-client__item__content .scalar-api-client__codemirror__wrapper {
|
|
1758
|
-
width: 100%;
|
|
1759
|
-
min-height: 63px;
|
|
1760
|
-
}
|
|
1761
|
-
.scalar-api-client__item__content .scalar-codeblock-pre,
|
|
1762
|
-
.scalar-api-client__item__content .cm-s-default {
|
|
1763
|
-
border: 1px solid var(--theme-border-color, var(--default-theme-border-color));
|
|
1764
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
1765
|
-
}
|
|
1766
|
-
.scalar-api-client__item__content .scalar-codeblock-pre,
|
|
1767
|
-
.scalar-api-client__item__content .codemirror-container {
|
|
1768
|
-
width: 100%;
|
|
1769
|
-
max-height: calc(100vh - 300px);
|
|
1770
|
-
overflow: auto;
|
|
1771
|
-
}
|
|
1772
|
-
.scalar-api-client__item__content .cm-scroller {
|
|
1773
|
-
border: 1px solid var(--theme-border-color, var(--default-theme-border-color));
|
|
1774
|
-
border-radius: 3px;
|
|
1775
|
-
}
|
|
1776
|
-
.scalar-api-client__item__content .cm-editor {
|
|
1777
|
-
outline: none !important;
|
|
1778
|
-
}
|
|
1779
|
-
.scalar-api-client__item__content .cm-editor .cm-gutters {
|
|
1780
|
-
background: transparent;
|
|
1781
|
-
}
|
|
1782
|
-
.scalar-api-client__item__content .cm-scroll {
|
|
1783
|
-
background: transparent;
|
|
1784
|
-
}
|
|
1785
|
-
.scalar-api-client__item__content .cm-editor * {
|
|
1786
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1787
|
-
}
|
|
1788
|
-
.scalar-api-client__item__content .cm-editor .cm-line {
|
|
1789
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1790
|
-
}
|
|
1791
|
-
.scalar-api-client__item__content-button {
|
|
1792
|
-
appearance: none;
|
|
1793
|
-
border: none;
|
|
1794
|
-
outline: none;
|
|
1795
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1796
|
-
background: var(
|
|
1797
|
-
--scalar-api-client-color,
|
|
1798
|
-
var(--default-scalar-api-client-color)
|
|
1799
|
-
) !important;
|
|
1800
|
-
text-align: center;
|
|
1801
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
1802
|
-
font-family: var(--theme-font, var(--default-theme-font));
|
|
1803
|
-
padding: 6px;
|
|
1804
|
-
width: fit-content;
|
|
1805
|
-
margin: 3px 3px 3px auto;
|
|
1806
|
-
text-transform: uppercase;
|
|
1807
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
1808
|
-
color: white;
|
|
1809
|
-
cursor: pointer;
|
|
1810
|
-
text-align: center !important;
|
|
1811
|
-
position: relative;
|
|
1812
|
-
}
|
|
1813
|
-
.scalar-api-client__item__content-button span {
|
|
1814
|
-
position: relative;
|
|
1815
|
-
}
|
|
1816
|
-
.scalar-api-client__item__content-button:before {
|
|
1817
|
-
content: '';
|
|
1818
|
-
position: absolute;
|
|
1819
|
-
top: 0;
|
|
1820
|
-
left: 0;
|
|
1821
|
-
width: 100%;
|
|
1822
|
-
height: 100%;
|
|
1823
|
-
pointer-events: none;
|
|
1824
|
-
cursor: pointer;
|
|
1825
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
1826
|
-
background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
|
|
1827
|
-
}
|
|
1828
|
-
.scalar-api-client__item__content-button:hover:before {
|
|
1829
|
-
background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
|
|
1830
|
-
}
|
|
1831
|
-
.scalar-api-client__item__content__split {
|
|
1832
|
-
justify-content: space-between;
|
|
1833
|
-
}
|
|
1834
|
-
.scalar-collapsible-section-flex {
|
|
1835
|
-
width: 100%;
|
|
1836
|
-
}
|
|
1837
|
-
.input {
|
|
1838
|
-
background: transparent;
|
|
1839
|
-
position: relative;
|
|
1840
|
-
width: 100%;
|
|
1841
|
-
text-align: left;
|
|
1842
|
-
display: flex;
|
|
1843
|
-
box-shadow: 0 1px 0
|
|
1844
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
1845
|
-
}
|
|
1846
|
-
.input:focus-within {
|
|
1847
|
-
box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1)) !important;
|
|
1848
|
-
z-index: 10;
|
|
1849
|
-
}
|
|
1850
|
-
.input:first-of-type {
|
|
1851
|
-
border-radius: var(--theme-radius, var(--default-theme-radius))
|
|
1852
|
-
var(--theme-radius, var(--default-theme-radius)) 0 0;
|
|
1853
|
-
}
|
|
1854
|
-
.input:first-child:last-child {
|
|
1855
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
1856
|
-
}
|
|
1857
|
-
.input:last-child {
|
|
1858
|
-
box-shadow: none;
|
|
1859
|
-
border-radius: 0 0 var(--theme-radius, var(--default-theme-radius))
|
|
1860
|
-
var(--theme-radius, var(--default-theme-radius));
|
|
1861
|
-
}
|
|
1862
|
-
.input__half:first-of-type {
|
|
1863
|
-
border-radius: var(--theme-radius, var(--default-theme-radius)) 0 0 0;
|
|
1864
|
-
}
|
|
1865
|
-
.input__half:nth-of-type(2) {
|
|
1866
|
-
border-radius: 0 var(--theme-radius, var(--default-theme-radius)) 0 0;
|
|
1867
|
-
}
|
|
1868
|
-
.authentication-form {
|
|
1869
|
-
box-shadow: 0 0 0 1px
|
|
1870
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
1871
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
1872
|
-
width: 100%;
|
|
1873
|
-
display: flex;
|
|
1874
|
-
flex-flow: wrap;
|
|
1875
|
-
}
|
|
1876
|
-
.input__half {
|
|
1877
|
-
width: 50%;
|
|
1878
|
-
}
|
|
1879
|
-
.input__half + .input__half {
|
|
1880
|
-
border-left: 1px solid
|
|
1881
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
1882
|
-
}
|
|
1883
|
-
.input__half:focus-within {
|
|
1884
|
-
border-color: transparent;
|
|
1885
|
-
}
|
|
1886
|
-
.input label,
|
|
1887
|
-
.input input {
|
|
1888
|
-
padding: 9px;
|
|
1889
|
-
border: 0;
|
|
1890
|
-
outline: none;
|
|
1891
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1892
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
1893
|
-
width: 100%;
|
|
1894
|
-
background: transparent;
|
|
1895
|
-
appearance: none;
|
|
1896
|
-
-webkit-appearance: none;
|
|
1897
|
-
left: 0;
|
|
1898
|
-
}
|
|
1899
|
-
.input label {
|
|
1900
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1901
|
-
width: fit-content;
|
|
1902
|
-
padding-right: 0;
|
|
1903
|
-
white-space: nowrap;
|
|
1904
|
-
cursor: text;
|
|
1905
|
-
}
|
|
1906
|
-
.input input {
|
|
1907
|
-
position: relative;
|
|
1908
|
-
z-index: 99;
|
|
1909
|
-
}
|
|
1910
|
-
.input input:not(:placeholder-shown) + label {
|
|
1911
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
1912
|
-
}
|
|
1913
|
-
.select {
|
|
1914
|
-
background: --theme-background-1;
|
|
1915
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
1916
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1917
|
-
border: 1px solid var(--theme-border-color, var(--default-theme-border-color));
|
|
1918
|
-
width: 100%;
|
|
1919
|
-
position: relative;
|
|
1920
|
-
margin-bottom: 6px;
|
|
1921
|
-
}
|
|
1922
|
-
.select:focus-within {
|
|
1923
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
1924
|
-
}
|
|
1925
|
-
.select:hover {
|
|
1926
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
1927
|
-
}
|
|
1928
|
-
.select svg {
|
|
1929
|
-
position: absolute;
|
|
1930
|
-
right: 9px;
|
|
1931
|
-
pointer-events: none;
|
|
1932
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
1933
|
-
width: 6px;
|
|
1934
|
-
top: 10px;
|
|
1935
|
-
}
|
|
1936
|
-
.select label {
|
|
1937
|
-
display: block;
|
|
1938
|
-
font-size: 10px;
|
|
1939
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
1940
|
-
position: absolute;
|
|
1941
|
-
left: 9px;
|
|
1942
|
-
top: 6px;
|
|
1943
|
-
}
|
|
1944
|
-
.select select {
|
|
1945
|
-
background: transparent;
|
|
1946
|
-
outline: none;
|
|
1947
|
-
border: none;
|
|
1948
|
-
-moz-appearance: none;
|
|
1949
|
-
-webkit-appearance: none;
|
|
1950
|
-
appearance: none;
|
|
1951
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1952
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1953
|
-
width: 100%;
|
|
1954
|
-
padding: 14px 9px 4px 9px;
|
|
1955
|
-
top: 0;
|
|
1956
|
-
position: relative;
|
|
1957
|
-
cursor: pointer;
|
|
1958
|
-
}
|
|
1959
|
-
.check {
|
|
1960
|
-
display: flex;
|
|
1961
|
-
position: relative;
|
|
1962
|
-
cursor: pointer;
|
|
1963
|
-
align-items: center;
|
|
1964
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
1965
|
-
padding: 6px 9px;
|
|
1966
|
-
border-radius: 0 0 var(--theme-radius, var(--default-theme-radius))
|
|
1967
|
-
var(--theme-radius, var(--default-theme-radius));
|
|
1968
|
-
user-select: none;
|
|
1969
|
-
width: 100%;
|
|
1970
|
-
outline: none;
|
|
1971
|
-
}
|
|
1972
|
-
.check:focus-within {
|
|
1973
|
-
box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));
|
|
1974
|
-
}
|
|
1975
|
-
.checkmark:hover {
|
|
1976
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
1977
|
-
}
|
|
1978
|
-
.check:focus-within {
|
|
1979
|
-
border-color: var(--theme-color-1, var(--default-theme-color-1));
|
|
1980
|
-
}
|
|
1981
|
-
.check p {
|
|
1982
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
1983
|
-
}
|
|
1984
|
-
.check input {
|
|
1985
|
-
position: absolute;
|
|
1986
|
-
opacity: 0;
|
|
1987
|
-
cursor: pointer;
|
|
1988
|
-
height: 0;
|
|
1989
|
-
width: 0;
|
|
1990
|
-
}
|
|
1991
|
-
.checkmark {
|
|
1992
|
-
height: 17px;
|
|
1993
|
-
width: 17px;
|
|
1994
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
1995
|
-
margin-right: 10px;
|
|
1996
|
-
border-radius: 3px;
|
|
1997
|
-
display: flex;
|
|
1998
|
-
align-items: center;
|
|
1999
|
-
justify-content: center;
|
|
2000
|
-
position: relative;
|
|
2001
|
-
}
|
|
2002
|
-
.check input:checked ~ p {
|
|
2003
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
2004
|
-
}
|
|
2005
|
-
.check .checkmark:after {
|
|
2006
|
-
content: '';
|
|
2007
|
-
display: none;
|
|
2008
|
-
width: 5px;
|
|
2009
|
-
height: 8px;
|
|
2010
|
-
border: solid var(--theme-color-1, var(--default-theme-color-1));
|
|
2011
|
-
border-width: 0 1.5px 1.5px 0;
|
|
2012
|
-
transform: rotate(45deg) translate3d(0, -1px, 0);
|
|
2013
|
-
}
|
|
2014
|
-
.check input:checked ~ .checkmark:after {
|
|
2015
|
-
display: block;
|
|
2016
|
-
}
|
|
2017
|
-
.scalar-api-client__main__scroll-container {
|
|
2018
|
-
height: calc(100vh - 320px);
|
|
2019
|
-
}
|
|
2020
|
-
.scalar-api-client__request-name {
|
|
2021
|
-
outline: none;
|
|
2022
|
-
border: none;
|
|
2023
|
-
appearance: none;
|
|
2024
|
-
-webkit-appearance: none;
|
|
2025
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
2026
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
2027
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
2028
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
2029
|
-
width: 100%;
|
|
2030
|
-
padding: 0;
|
|
2031
|
-
background: transparent;
|
|
2032
|
-
font-family: var(--theme-font, var(--default-theme-font));
|
|
2033
|
-
}
|
|
2034
|
-
.scalar-api-client__request-name::-webkit-input-placeholder {
|
|
2035
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
2036
|
-
}
|
|
2037
|
-
.scalar-api-client__request-name:-ms-input-placeholder {
|
|
2038
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
2039
|
-
}
|
|
2040
|
-
.scalar-api-client__request-name::placeholder {
|
|
2041
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
2042
|
-
}
|
|
2043
|
-
|
|
2044
|
-
a[data-v-ffc7287f] {
|
|
2045
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
2046
|
-
text-decoration: underline;
|
|
2047
|
-
text-decoration-color: var(
|
|
2048
|
-
--theme-border-color,
|
|
2049
|
-
var(--default-theme-border-color)
|
|
2050
|
-
);
|
|
2051
|
-
text-underline-offset: 2px;
|
|
2052
|
-
cursor: help;
|
|
2053
|
-
}
|
|
2054
|
-
|
|
2055
|
-
.simple-cell[data-v-b99d5e90] {
|
|
2056
|
-
all: unset;
|
|
2057
|
-
display: table-cell;
|
|
2058
|
-
border-right: 1px solid
|
|
2059
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
2060
|
-
position: relative;
|
|
2061
|
-
padding: 9px !important;
|
|
2062
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
2063
|
-
white-space: nowrap;
|
|
2064
|
-
}
|
|
2065
|
-
.simple-cell a[data-v-b99d5e90] {
|
|
2066
|
-
color: var(--theme-color-1, var(--default-theme-color-1)) !important;
|
|
2067
|
-
}
|
|
2068
|
-
.simple-cell[data-v-b99d5e90]:last-of-type {
|
|
2069
|
-
border-right: none;
|
|
2070
|
-
}
|
|
2071
|
-
.simple-cell.wrap[data-v-b99d5e90] {
|
|
2072
|
-
white-space: normal;
|
|
2073
|
-
}
|
|
2074
|
-
.simple-cell.strong[data-v-b99d5e90] {
|
|
2075
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
2076
|
-
}
|
|
2077
|
-
|
|
2078
|
-
.simple-header[data-v-6bd3700b] {
|
|
2079
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
2080
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
2081
|
-
text-transform: uppercase;
|
|
2082
|
-
}
|
|
2083
|
-
|
|
2084
|
-
.simple-row[data-v-e7e681a1] {
|
|
2085
|
-
all: unset;
|
|
2086
|
-
display: table-row;
|
|
2087
|
-
box-shadow: 0 -1px var(--theme-border-color, var(--default-theme-border-color));
|
|
2088
|
-
}
|
|
2089
|
-
.simple-row[data-v-e7e681a1]:first-of-type {
|
|
2090
|
-
box-shadow: none;
|
|
2091
|
-
}
|
|
2092
|
-
|
|
2093
|
-
.simple-table[data-v-8f53a32f] {
|
|
2094
|
-
all: unset;
|
|
2095
|
-
display: table;
|
|
2096
|
-
width: 100%;
|
|
2097
|
-
border-spacing: 0;
|
|
2098
|
-
box-shadow: 0 0 0 1px
|
|
2099
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
2100
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
2101
|
-
}
|
|
2102
|
-
|
|
2103
|
-
.scalar-api-client__main__right {
|
|
2104
|
-
width: 50%;
|
|
2105
|
-
padding: 0 18px 12px 18px;
|
|
2106
|
-
}
|
|
2107
|
-
@media screen and (max-width: 820px) {
|
|
2108
|
-
.scalar-api-client__main__right {
|
|
2109
|
-
width: 100%;
|
|
2110
|
-
border-right: none;
|
|
2111
|
-
padding: 0 12px 12px 12px;
|
|
2112
|
-
}
|
|
2113
|
-
}
|
|
2114
|
-
.scalar-api-client__main__right :deep(.scalar-copilot__header-button) {
|
|
2115
|
-
position: absolute;
|
|
2116
|
-
top: 6px;
|
|
2117
|
-
right: 12px;
|
|
2118
|
-
}
|
|
2119
|
-
|
|
2120
|
-
.scalar-api-client,
|
|
2121
|
-
#headlessui-portal-root {
|
|
2122
|
-
background: var(--theme-background-1, var(--default-theme-background-1));
|
|
2123
|
-
position: relative;
|
|
2124
|
-
height: 100%;
|
|
2125
|
-
overflow: hidden !important;
|
|
2126
|
-
display: flex;
|
|
2127
|
-
flex-direction: column;
|
|
2128
|
-
font-family: var(--theme-font, var(--default-theme-font));
|
|
2129
|
-
|
|
2130
|
-
/** Make sure box-sizing is set properly. */
|
|
2131
|
-
box-sizing: border-box;
|
|
2132
|
-
*,
|
|
2133
|
-
*:before,
|
|
2134
|
-
*:after {
|
|
2135
|
-
box-sizing: inherit;
|
|
2136
|
-
}
|
|
2137
|
-
}
|
|
2138
|
-
.scalar-api-client {
|
|
2139
|
-
flex: 1;
|
|
2140
|
-
max-height: 100vh;
|
|
2141
|
-
}
|
|
2142
|
-
@media screen and (max-width: 1000px) {
|
|
2143
|
-
.scalar-api-client {
|
|
2144
|
-
width: 100%;
|
|
2145
|
-
}
|
|
2146
|
-
}
|
|
2147
|
-
.scalar-api-client pre {
|
|
2148
|
-
font-family: var(--theme-font-code, var(--default-theme-font-code));
|
|
2149
|
-
}
|
|
2150
|
-
.scalar-api-client__mobile-navigation {
|
|
2151
|
-
padding: 12px 12px 0 12px;
|
|
2152
|
-
display: flex;
|
|
2153
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
2154
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
2155
|
-
font-weight: var(--theme-bold, var(--default-theme-bold));
|
|
2156
|
-
}
|
|
2157
|
-
.scalar-api-client__mobile-navigation__toggle {
|
|
2158
|
-
appearance: none;
|
|
2159
|
-
border: none;
|
|
2160
|
-
outline: none;
|
|
2161
|
-
background: transparent;
|
|
2162
|
-
font-size: var(--theme-font-size-2);
|
|
2163
|
-
color: var(--theme-color-2);
|
|
2164
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
2165
|
-
font-family: var(--theme-font, var(--default-theme-font));
|
|
2166
|
-
padding: 0;
|
|
2167
|
-
margin-right: 9px;
|
|
2168
|
-
cursor: pointer;
|
|
2169
|
-
}
|
|
2170
|
-
.scalar-api-client__mobile-navigation--active {
|
|
2171
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
2172
|
-
}
|
|
2173
|
-
.scalar-api-client__mobile-navigation--active:hover {
|
|
2174
|
-
cursor: pointer;
|
|
2175
|
-
}
|
|
2176
|
-
.scalar-api-client__main {
|
|
2177
|
-
display: flex;
|
|
2178
|
-
height: 100%;
|
|
2179
|
-
min-height: 0;
|
|
2180
|
-
background: var(--theme-background-1, var(--default-theme-background-1));
|
|
2181
|
-
border-top: 1px solid
|
|
2182
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
2183
|
-
}
|
|
2184
|
-
@media screen and (max-width: 820px) {
|
|
2185
|
-
.scalar-api-client__main {
|
|
2186
|
-
flex-direction: column;
|
|
2187
|
-
}
|
|
2188
|
-
}
|
|
2189
|
-
|
|
2190
|
-
/** TODO: Consider to make a Column component */
|
|
2191
|
-
.scalar-api-client__main__content {
|
|
2192
|
-
padding: 12px 6px;
|
|
2193
|
-
background: var(--theme-background-1, var(--default-theme-background-1));
|
|
2194
|
-
top: 0;
|
|
2195
|
-
position: sticky;
|
|
2196
|
-
z-index: 100;
|
|
2197
|
-
}
|
|
2198
|
-
.scalar-api-client__main__content label {
|
|
2199
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
2200
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
2201
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
2202
|
-
display: flex;
|
|
2203
|
-
align-items: center;
|
|
2204
|
-
}
|
|
2205
|
-
@media screen and (max-width: 820px) {
|
|
2206
|
-
.scalar-api-client__main__content {
|
|
2207
|
-
padding: 3px 0 12px 0;
|
|
2208
|
-
}
|
|
2209
|
-
.scalar-api-client__main__content label {
|
|
2210
|
-
display: none;
|
|
2211
|
-
}
|
|
2212
|
-
}
|
|
2213
|
-
.meta {
|
|
2214
|
-
display: flex;
|
|
2215
|
-
margin-top: 3px;
|
|
2216
|
-
font-size: var(--theme-font-size-2, var(--default-theme-font-size-2));
|
|
2217
|
-
font-weight: var(--theme-font-size-2, var(--default-theme-font-size-2));
|
|
2218
|
-
color: var(
|
|
2219
|
-
--scalar-api-client-color2,
|
|
2220
|
-
var(--default-scalar-api-client-color2)
|
|
2221
|
-
);
|
|
2222
|
-
}
|
|
2223
|
-
.meta-item svg {
|
|
2224
|
-
fill: var(--theme-color-ghost, var(--default-theme-color-ghost));
|
|
2225
|
-
height: 14px;
|
|
2226
|
-
width: 14px;
|
|
2227
|
-
margin-right: 6px;
|
|
2228
|
-
}
|
|
2229
|
-
.meta-item {
|
|
2230
|
-
display: flex;
|
|
2231
|
-
align-items: center;
|
|
2232
|
-
margin-right: 12px;
|
|
2233
|
-
white-space: nowrap;
|
|
2234
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
2235
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
2236
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
2237
|
-
min-height: 17px;
|
|
2238
|
-
}
|
|
2239
|
-
.meta-item__input {
|
|
2240
|
-
background: transparent;
|
|
2241
|
-
width: 100%;
|
|
2242
|
-
margin-right: 0;
|
|
2243
|
-
}
|
|
2244
|
-
.types {
|
|
2245
|
-
margin: auto;
|
|
2246
|
-
width: 580px;
|
|
2247
|
-
display: flex;
|
|
2248
|
-
align-items: center;
|
|
2249
|
-
justify-content: center;
|
|
2250
|
-
flex-flow: wrap;
|
|
2251
|
-
}
|
|
2252
|
-
.types-heading {
|
|
2253
|
-
width: 100%;
|
|
2254
|
-
text-align: center;
|
|
2255
|
-
}
|
|
2256
|
-
.types-heading b {
|
|
2257
|
-
font-size: 42px;
|
|
2258
|
-
}
|
|
2259
|
-
.types-heading p {
|
|
2260
|
-
margin-bottom: 20px;
|
|
2261
|
-
margin-top: 12px;
|
|
2262
|
-
font-size: 24px;
|
|
2263
|
-
}
|
|
2264
|
-
.scalar-api-client__empty-state {
|
|
2265
|
-
border: 1px dashed
|
|
2266
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
2267
|
-
width: 100%;
|
|
2268
|
-
text-align: center;
|
|
2269
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
2270
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
2271
|
-
min-height: 58px;
|
|
2272
|
-
display: flex;
|
|
2273
|
-
align-items: center;
|
|
2274
|
-
justify-content: center;
|
|
2275
|
-
}`));
|
|
6
|
+
elementStyle.appendChild(document.createTextNode("@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900');@import url('https://fonts.googleapis.com/css?family=JetBrains%20Mono');\n\n:root {\n --default-theme-border-width: 1px;\n --default-theme-radius: 3px;\n --default-theme-radius-lg: 6px;\n --default-theme-radius-xl: 8px;\n\n --default-theme-header-height: 50px;\n --default-theme-sidebar-width: 280px;\n --default-theme-toc-width: 280px;\n\n /* TYPOGRAPHY ------------------------------------ */\n --default-theme-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',\n Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;\n --default-theme-font-code: 'JetBrains Mono', ui-monospace, Menlo, Monaco,\n 'Cascadia Mono', 'Segoe UI Mono', 'Roboto Mono', 'Oxygen Mono',\n 'Ubuntu Monospace', 'Source Code Pro', 'Fira Mono', 'Droid Sans Mono',\n 'Courier New', monospace;\n\n /** Font sizes for rendered text content (editor styles or static content) */\n --default-theme-heading-1: 40px; /* Editor Page heading */\n --default-theme-page-description: 24px;\n --default-theme-heading-2: 24px; /* Editor section headings */\n --default-theme-heading-3: 20px;\n --default-theme-heading-4: 16px;\n --default-theme-heading-5: 16px;\n --default-theme-heading-6: 16px;\n\n --default-theme-paragraph: 16px;\n --default-theme-small: 14px;\n --default-theme-mini: 13px;\n --default-theme-micro: 12px;\n --default-theme-bold: 600;\n --default-theme-semibold: 500;\n --default-theme-regular: 400;\n\n /* Font sizes for interactive applications (not rendered text content) */\n --default-theme-font-size-1: 24px;\n --default-theme-font-size-2: 16px;\n --default-theme-font-size-3: 14px;\n --default-theme-font-size-4: 13px;\n --default-theme-font-size-5: 12px;\n\n --default-theme-line-height-1: 32px;\n --default-theme-line-height-2: 24px;\n --default-theme-line-height-3: 20px;\n --default-theme-line-height-4: 18px;\n --default-theme-line-height-5: 16px;\n\n --default-theme-font-medium: 500;\n --default-theme-font-bold: 700;\n}\n.dark-mode {\n color-scheme: dark;\n --default-theme-scrollbar-color: rgba(255, 255, 255, 0.18);\n --default-theme-scrollbar-color-active: rgba(255, 255, 255, 0.36);\n --default-theme-button-1: rgba(255, 255, 255, 1);\n --default-theme-button-1-hover: rgba(255, 255, 255, 0.9);\n --default-theme-button-1-color: black;\n\n --default-theme-shadow-1: 0 1px 3px 0 rgb(0, 0, 0, 0.1);\n --default-theme-shadow-2: rgba(15, 15, 15, 0.2) 0px 3px 6px,\n rgba(15, 15, 15, 0.4) 0px 9px 24px, 0 0 0 1px rgba(255, 255, 255, 0.1);\n}\n.light-mode {\n color-scheme: light;\n --default-theme-scrollbar-color-active: rgba(0, 0, 0, 0.36);\n --default-theme-scrollbar-color: rgba(0, 0, 0, 0.18);\n --default-theme-button-1: rgba(0, 0, 0, 1);\n --default-theme-button-1-hover: rgba(0, 0, 0, 0.8);\n --default-theme-button-1-color: rgba(255, 255, 255, 0.9);\n\n --default-theme-shadow-1: 0 1px 3px 0 rgba(0, 0, 0, 0.11);\n --default-theme-shadow-2: rgba(0, 0, 0, 0.08) 0px 13px 20px 0px,\n rgba(0, 0, 0, 0.08) 0px 3px 8px 0px, #eeeeed 0px 0 0 1px;\n}\n@media (max-width: 460px) {\n :root {\n --default-theme-font-size-1: 22px;\n --default-theme-font-size-2: 14px;\n --default-theme-font-size-3: 12px;\n }\n}\n@media (max-width: 720px) {\n :root {\n --default-theme-heading-1: 24px;\n --default-theme-page-description: 20px;\n }\n}\n.cm-scroller,\n.custom-scroll {\n overflow-y: auto;\n scrollbar-color: transparent transparent;\n scrollbar-width: thin;\n -webkit-overflow-scrolling: touch;\n}\n.custom-scroll-self-contain-overflow {\n overscroll-behavior: contain;\n}\n@supports (-moz-appearance: none) {\n .cm-scroller,\n .custom-scroll {\n padding-right: 12px;\n }\n}\n.cm-scroller:hover,\n.custom-scroll:hover {\n scrollbar-color: var(\n --theme-scrollbar-color,\n var(--default-theme-scrollbar-color)\n )\n transparent;\n}\n.cm-scroller:hover::-webkit-scrollbar-thumb,\n.custom-scroll:hover::-webkit-scrollbar-thumb {\n background: var(\n --theme-scrollbar-color,\n var(--default-theme-scrollbar-color)\n );\n background-clip: content-box;\n border: 3px solid transparent;\n}\n.cm-scroller::-webkit-scrollbar-thumb:active,\n.custom-scroll::-webkit-scrollbar-thumb:active {\n background: var(\n --theme-scrollbar-color-active,\n var(--default-theme-scrollbar-color-active)\n );\n background-clip: content-box;\n border: 3px solid transparent;\n}\n.cm-scroller::-webkit-scrollbar-corner,\n.custom-scroll::-webkit-scrollbar-corner {\n background: transparent;\n}\n.cm-scroller::-webkit-scrollbar,\n.custom-scroll::-webkit-scrollbar {\n height: 12px;\n width: 12px;\n}\n.cm-scroller::-webkit-scrollbar-track,\n.custom-scroll::-webkit-scrollbar-track {\n background: transparent;\n}\n.cm-scroller::-webkit-scrollbar-thumb,\n.custom-scroll::-webkit-scrollbar-thumb {\n border-radius: 20px;\n background: transparent;\n background-clip: content-box;\n border: 3px solid transparent;\n}\n@media (pointer: coarse) {\n .cm-scroller,\n .custom-scroll {\n padding-right: 12px;\n }\n}\n\n.codemirror-container[data-v-9f50a430] {\n width: 100%;\n height: 100%;\n padding-top: 4px;\n min-height: 76px;\n background: var(--theme-background-2, var(--default-theme-background-2));\n color: var(--theme-color-1, var(--default-theme-color-1));\n display: flex;\n align-items: stretch;\n}\n.copy-to-clipboard-button[data-v-9f50a430] {\n background: red;\n}\n\n.codemirror {\n flex-grow: 1;\n max-width: 100%;\n cursor: text;\n font-size: var(--theme-small, var(--default-theme-small));\n /* Don't scale wide text on mobile because we let it scroll */\n -webkit-text-size-adjust: 100%;\n}\n.cm-focused {\n outline: none !important;\n}\n\n.modal-layout[data-v-a06b8e92] {\n position: fixed;\n width: 100vw;\n height: 100vh;\n top: 0;\n left: 0;\n z-index: 1001;\n background: rgba(0, 0, 0, 0.44);\n padding: 20px;\n opacity: 0;\n animation: modal-fade-a06b8e92 0.2s forwards;\n}\n.modal-body[data-v-a06b8e92] {\n padding: 24px 24px 18px 24px;\n max-height: calc(100vh - 240px);\n background: var(--theme-background-1, var(--default-theme-background-1));\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n font-family: var(--theme-font, var(--default-theme-font));\n position: relative;\n}\n.modal[data-v-a06b8e92] {\n margin: 80px auto 0;\n position: relative;\n background: var(--theme-background-2, var(--default-theme-background-2));\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n color: var(--theme-color-1, var(--default-theme-color-1));\n width: 100%;\n text-align: left;\n line-height: 1.4;\n opacity: 0;\n transform: scale(0.98);\n animation: modal-pop-a06b8e92 0.15s 0.15s forwards;\n display: flex;\n flex-direction: column;\n}\n.modal[data-v-a06b8e92]:before {\n content: '';\n display: block;\n width: 100%;\n height: 100%;\n position: absolute;\n z-index: 0;\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n}\n.dark-mode .modal[data-v-a06b8e92]:before {\n background: #1a1a1a;\n}\n.light-mode .modal[data-v-a06b8e92]:before {\n background: #fff;\n}\n.modal-content-history[data-v-a06b8e92] {\n background: var(--theme-background-1, var(--default-theme-background-1));\n}\n.modal-content-history[data-v-a06b8e92],\n.modal-content-large[data-v-a06b8e92] {\n max-width: 800px;\n}\n.modal-content-normal[data-v-a06b8e92] {\n max-width: 640px;\n}\n.modal-content-small[data-v-a06b8e92] {\n max-width: 480px;\n}\n@keyframes modal-fade-a06b8e92 {\nfrom {\n opacity: 0;\n}\nto {\n opacity: 1;\n}\n}\n@keyframes modal-pop-a06b8e92 {\n0% {\n opacity: 0;\n}\n100% {\n opacity: 1;\n transform: scale(1);\n}\n}\n.modal-header[data-v-a06b8e92] {\n padding: 12px 24px;\n color: var(--theme-color-1, var(--default-theme-color-1));\n font-size: var(--theme-font-size-4, var(--default-theme-font-size-4));\n text-align: left;\n font-weight: 600;\n margin: 0;\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg))\n var(--theme-radius-lg, var(--default-theme-radius-lg)) 0 0;\n z-index: 1;\n}\n.modal-content-history .modal-header[data-v-a06b8e92] {\n padding-bottom: 0;\n padding-top: 24px;\n}\n.modal-content-history .modal-body[data-v-a06b8e92] {\n padding-top: 12px;\n}\n.modal-content-search[data-v-a06b8e92] {\n max-width: 540px;\n}\n.modal-content-search .modal-body[data-v-a06b8e92] {\n padding: 0;\n overflow: hidden;\n display: flex;\n flex-direction: column;\n max-height: 440px;\n}\n\n.navtable-item-time[data-v-dd49a57f] {\n text-transform: capitalize;\n}\n.navtable-item__active[data-v-dd49a57f] {\n background: var(--theme-background-2, var(--default-theme-background-2));\n cursor: default;\n}\n\n.navtable-mock {\n background-repeat: repeat;\n width: 100%;\n background-size: 31px 31px;\n background-position: center 1px;\n flex: 1;\n position: relative;\n z-index: 0;\n border-top: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n background: repeating-linear-gradient(\n var(--theme-background-1, var(--default-theme-background-1)),\n var(--theme-background-1, var(--default-theme-background-1)) 34.8px,\n var(--theme-border-color, var(--default-theme-border-color)) 34.8px,\n var(--theme-border-color, var(--default-theme-border-color)) 35.8px\n );\n}\n.navtable-mock .navtable-item {\n position: absolute;\n width: 100%;\n height: 100%;\n left: 0;\n top: 0;\n background: transparent;\n box-shadow: none;\n}\n.radio {\n height: 10px;\n max-width: 10px;\n width: 10px;\n max-height: 10px;\n background: transparent;\n border: var(--border, var(--default-border));\n flex-shrink: 0;\n margin-right: 6px;\n margin-left: 0;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n outline: none;\n padding: 0;\n}\n.radio:before {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n cursor: pointer;\n}\n.navtable-item__active:before {\n content: '';\n display: block;\n box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1)) !important;\n width: 100%;\n position: absolute;\n top: 0;\n left: 0;\n height: 100%;\n}\n.navtable-item__active + .navtable-item {\n /* box-shadow: none; */\n}\n.radio.post {\n background: var(--theme-color-green, var(--default-theme-color-green));\n}\n.radio.delete {\n background: var(--theme-color-red, var(--default-theme-color-red));\n}\n.radio.patch {\n background: var(--theme-color-yellow, var(--default-theme-color-yellow));\n}\n.radio.get {\n background: var(--theme-color-blue, var(--default-theme-color-blue));\n}\n.radio.put {\n background: var(--theme-color-orange, var(--default-theme-color-orange));\n}\n.navtable-item-request span {\n border: none;\n outline: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n color: var(--theme-color-1, var(--default-theme-color-1));\n width: 100%;\n display: block;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.navtable-item-request span em {\n text-transform: uppercase;\n font-style: normal;\n font-family: var(--theme-font-code, var(--default-theme-font-code));\n font-size: var(--theme-micro, var(--default-theme-micro));\n margin-right: 6px;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n color: var(--theme-color-3, var(--default-theme-color-3));\n}\n\n.request-method-select[data-v-8e2122cd] {\n position: relative;\n display: flex;\n}\n.request-method-select select[data-v-8e2122cd] {\n border: none;\n outline: none;\n cursor: pointer;\n background: var(--theme-background-3, var(--default-theme-background-3));\n box-shadow: -2px 0 0 0\n var(--theme-background-3, var(--default-theme-background-3));\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n -moz-appearance: none;\n -webkit-appearance: none;\n appearance: none;\n}\n.request-method-select select[disabled][data-v-8e2122cd] {\n pointer-events: none;\n}\n.request-method[data-v-8e2122cd] {\n display: flex;\n align-items: center;\n color: var(--theme-color-3, var(--default-theme-color-3));\n appearance: none;\n -webkit-appearance: none;\n padding: 0 12px;\n border-right: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n position: relative;\n}\n.request-method span[data-v-8e2122cd] {\n font-family: var(--theme-font-code, var(--default-theme-font-code));\n font-size: 500;\n font-size: var(--theme-micro, var(--default-theme-micro));\n text-transform: uppercase;\n display: flex;\n align-items: center;\n}\n.request-method:not(.request-method--disabled) span[data-v-8e2122cd]:after {\n content: '';\n width: 7px;\n height: 7px;\n transform: rotate(45deg) translate3d(-2px, -2px, 0);\n display: block;\n margin-left: 6px;\n box-shadow: 1px 1px 0 currentColor;\n}\n.request-method i[data-v-8e2122cd] {\n width: 10px;\n height: 10px;\n border-radius: 50%;\n margin-right: 6px;\n text-align: center;\n line-height: 18px;\n font-style: normal;\n flex-shrink: 0;\n display: inline-block;\n color: var(--theme-color-disabled, var(--default-theme-color-disabled));\n background: var(\n --scalar-api-client-color,\n var(--default-scalar-api-client-color)\n );\n}\n\n.api-client-url-variable {\n color: var(--scalar-api-client-color, var(--default-scalar-api-client-color));\n}\n\n.loader[data-v-75df9114] {\n position: absolute;\n z-index: 3;\n height: 2px;\n background: var(\n --scalar-api-client-color,\n var(--default-scalar-api-client-color)\n );\n animation: loading-75df9114 5s cubic-bezier(0, 0.5, 0.25, 1);\n}\n@keyframes loading-75df9114 {\n0% {\n width: 0;\n}\n100% {\n width: 100%;\n}\n}\n.address-bar[data-v-75df9114] {\n width: 100%;\n padding: 12px 12px 10px 12px;\n display: flex;\n align-items: center;\n position: relative;\n background: var(--theme-background-1, var(--default-theme-background-1));\n}\n.url-form[data-v-75df9114] {\n display: flex;\n width: 100%;\n align-items: stretch;\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n}\n.url-form[data-v-75df9114] .cm-content {\n display: flex;\n align-items: center;\n}\n.url-form-field[data-v-75df9114] {\n border-right: 0;\n background: var(--theme-background-2, var(--default-theme-background-2));\n border-radius: var(--theme-radius, var(--default-theme-radius)) 0 0\n var(--theme-radius, var(--default-theme-radius));\n display: flex;\n align-items: stretch;\n width: 100%;\n overflow: hidden;\n min-height: 31px;\n}\n.url-form-input[data-v-75df9114] {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.url-form-input[data-v-75df9114] {\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n min-height: auto;\n padding-top: 0;\n}\n.url-form-input[data-v-75df9114] .cm-scroller {\n overflow-y: hidden;\n}\n.history[data-v-75df9114] {\n appearance: none;\n -webkit-appearance: none;\n background: transparent;\n color: var(--theme-color-2, var(--default-theme-color-2));\n display: flex;\n align-items: center;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n height: 100%;\n}\n.send-button[type='submit'][data-v-75df9114] {\n font-size: var(--theme-micro, var(--default-theme-micro));\n letter-spacing: 0.25px;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n color: white;\n border: none;\n white-space: nowrap;\n padding: 0 12px;\n text-transform: uppercase;\n cursor: pointer;\n outline: none;\n font-family: (--theme-font, var(--default-theme-font));\n border-radius: 0 var(--theme-radius, var(--default-theme-radius))\n var(--theme-radius, var(--default-theme-radius)) 0;\n background: var(\n --scalar-api-client-color,\n var(--default-scalar-api-client-color)\n );\n position: relative;\n /** #087f5b */\n display: flex;\n align-items: center;\n overflow: hidden;\n flex-shrink: 0;\n}\n.send-button[data-v-75df9114]:before {\n content: '';\n position: absolute;\n top: -5%;\n left: -5%;\n width: 110%;\n height: 110%;\n pointer-events: none;\n cursor: pointer;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));\n}\n.send-button[data-v-75df9114]:hover:before {\n background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));\n}\n.send-button svg[data-v-75df9114] {\n width: 12px;\n height: 12px;\n flex-shrink: 0;\n margin-right: 6px;\n position: relative;\n}\n.send-button span[data-v-75df9114] {\n position: relative;\n}\n@media screen and (max-width: 720px) {\n.history-toggle span[data-v-75df9114],\n .send-button span[data-v-75df9114] {\n display: none;\n}\n.history-toggle svg[data-v-75df9114],\n .send-button svg[data-v-75df9114] {\n margin-right: 0;\n}\n}\n.send-button[disabled][data-v-75df9114] {\n pointer-events: none;\n color: var(--theme-color-2, var(--default-theme-color-2));\n background: var(--theme-background-3, var(--default-theme-background-3));\n border: 1px solid var(--default-theme-border-color);\n}\n.history-toggle[data-v-75df9114] {\n padding: 0 12px;\n line-height: 30px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-size: var(--theme-micro, var(--default-theme-micro));\n letter-spacing: 0.125px;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n text-transform: uppercase;\n height: 100%;\n display: flex;\n align-items: center;\n cursor: pointer;\n white-space: nowrap;\n box-shadow: 0 0 0 1px\n var(--theme-border-color, var(--default-theme-border-color));\n margin-left: 12px;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n user-select: none;\n}\n.history-toggle[data-v-75df9114]:hover {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.history-toggle svg[data-v-75df9114] {\n height: 13px;\n width: 13px;\n margin-right: 6px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n}\n.address-bar-content[data-v-75df9114] {\n width: 640px;\n height: 100%;\n background: var(--theme-background-1, var(--default-theme-background-1));\n position: fixed;\n top: 0;\n right: 0;\n z-index: 1000;\n transform: translate3d(640px, 0, 0);\n opacity: 0;\n transition:\n transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),\n opacity 0.01s ease-in-out 0.5s;\n pointer-events: none;\n}\n.address-bar--with-history[data-v-75df9114] {\n z-index: 100000;\n}\n.address-bar--with-history .address-bar-content[data-v-75df9114] {\n transform: translate3d(0, 0, 0);\n opacity: 1;\n pointer-events: all;\n transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);\n}\n.address-bar--with-history .address-bar-close[data-v-75df9114] {\n opacity: 1;\n pointer-events: all;\n cursor: pointer;\n}\n.address-bar-close[data-v-75df9114] {\n width: 100%;\n height: 100%;\n position: fixed;\n top: 0;\n left: 0;\n pointer-events: none;\n opacity: 0;\n transition: all 0.1s ease-in-out;\n z-index: 1000;\n}\n\n.scalar-api-client__item {\n border-radius: var(--theme-radius, var(--default-theme-radius));\n margin-bottom: 6px;\n position: relative;\n}\n.scalar-api-client__item button {\n background-color: transparent;\n text-align: left;\n}\n.scalar-api-client__item:hover {\n cursor: pointer;\n}\n.scalar-api-client__toggle:after {\n content: '';\n position: absolute;\n bottom: -6.5px;\n width: 100%;\n height: 6px;\n left: 0;\n}\n.scalar-api-client__item--open .scalar-api-client__toggle:after {\n display: none;\n}\n.scalar-api-client__item:hover,\n.scalar-api-client__item--open {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.scalar-api-client__item--open .scalar-api-client__item__content {\n display: flex;\n}\n.scalar-api-client__item--open:hover {\n cursor: default;\n}\n.scalar-api-client__item--open .scalar-api-client__toggle__icon {\n transform: rotate(90deg);\n}\n.scalar-api-client__toggle {\n padding: 6px;\n min-height: 37px;\n display: flex;\n align-items: center;\n justify-content: space-between;\n position: relative;\n width: 100%;\n appearance: none;\n outline: 0;\n border: none;\n font-family: (--theme-font, var(--default-theme-font));\n cursor: pointer;\n}\n.scalar-api-client__item .scalar-api-client__item__title {\n color: var(--theme-color-1, var(--default-theme-color-1));\n font-size: var(--theme-small, var(--default-theme-small));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n font-family: (--theme-font, var(--default-theme-font));\n user-select: none;\n flex: 1;\n position: relative;\n z-index: 1;\n}\n.scalar-api-client__item .scalar-api-client__toggle__icon {\n width: 10px;\n margin-right: 6px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n z-index: 1;\n position: relative;\n}\n.scalar-api-client__toggle:hover .scalar-api-client__toggle__icon {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.scalar-api-client__item__options {\n position: relative;\n z-index: 1;\n}\n.scalar-api-client__item__options span {\n background: transparent;\n padding: 2px 0;\n border-radius: 3px;\n font-size: var(--theme-small, var(--default-theme-small));\n pointer-events: none;\n color: var(--theme-color-2, var(--default-theme-color-2));\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.scalar-api-client__item__options:hover span {\n color: var(--theme-color-1, var(--default-theme-color-1));\n border-color: currentColor;\n}\n.scalar-api-client__item__options span svg {\n width: 15px;\n height: 15px;\n margin-left: 3px;\n}\n.scalar-api-client__item__options select {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n cursor: pointer;\n -moz-appearance: none;\n -webkit-appearance: none;\n appearance: none;\n}\n.scalar-api-client__item__content .scalar-api-client__codemirror__wrapper {\n padding-top: 0;\n}\n\n.table {\n border: 1px solid var(--theme-border-color, var(--default-theme-border-color));\n background: transparent;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n width: 100%;\n}\n.table-row {\n border-bottom: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n display: flex;\n position: relative;\n}\n.table-row__add {\n border-radius: 0 0 var(--theme-radius-lg, var(--default-theme-radius-lg))\n var(--theme-radius-lg, var(--default-theme-radius-lg));\n border-bottom: none;\n}\n.table-row.required-parameter .table-row-item:nth-of-type(2):after {\n content: 'Required';\n position: absolute;\n top: 4px;\n right: 0;\n padding: 5px 9px 5px 6px;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n font-size: var(--theme-micro, var(--default-theme-micro));\n background: var(--theme-background-2, var(--default-theme-background-2));\n box-shadow: -2px 0 4px\n var(--theme-background-2, var(--default-theme-background-2));\n}\n.table-row.required-parameter\n .table-row-item:nth-of-type(2):focus-within:after {\n display: none;\n}\n.table-row:last-of-type {\n border-bottom: none;\n}\n.table-row__active {\n border-radius: 0 0 var(--theme-radius-lg, var(--default-theme-radius-lg))\n var(--theme-radius-lg, var(--default-theme-radius-lg));\n}\n.table-row-drag {\n width: 20px;\n flex-shrink: 0;\n border-right: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n align-items: center;\n justify-content: center;\n display: none;\n}\n.table-row-drag svg {\n width: 6px;\n fill: var(--theme-color-3, var(--default-theme-color-3));\n}\n.table-row-drag .table-row-drag-add {\n width: 8px;\n}\n.table-row-item {\n width: 100%;\n border-right: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n position: relative;\n}\n.table-row-item-menu {\n position: absolute;\n right: 6px;\n background: var(--theme-background-2, var(--default-theme-background-2));\n width: 24px;\n height: 24px;\n top: 50%;\n transform: translate3d(0, -50%, 0);\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n opacity: 0;\n cursor: pointer;\n}\n.table-row-item input:focus + .table-row-item-menu,\n.table-row-item:hover .table-row-item-menu {\n opacity: 1;\n}\n.table-row-item-menu svg {\n height: 12px;\n width: initial;\n fill: var(--theme-color-3, var(--default-theme-color-3));\n}\n.table-row-item-menu:hover svg {\n fill: var(--theme-color-1, var(--default-theme-color-1));\n}\n.table-row-item input {\n border: none;\n appearance: none;\n outline: none;\n padding: 9px;\n width: 100%;\n min-height: 100%;\n color: var(--theme-color-1, var(--default-theme-color-1));\n font-size: var(--theme-micro, var(--default-theme-micro));\n background: transparent;\n font-family: var(--theme-font, var(--default-theme-font));\n}\n.table-row-item input[disabled] {\n background: transparent;\n font-family: var(--theme-font-code, var(--default-theme-font-code));\n}\n.table-row-item input:focus {\n box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));\n}\n.table-row-item label {\n background: transparent;\n text-transform: uppercase;\n display: block;\n padding: 9px;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n color: var(--theme-color-2, var(--default-theme-color-2));\n font-size: var(--theme-micro, var(--default-theme-micro));\n}\n.table-row-meta {\n overflow: hidden;\n flex-shrink: 0;\n transition: all 0.15s ease-in-out;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 51px;\n user-select: none;\n}\n.table-row-meta-check {\n width: 18px;\n height: 18px;\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n background: rgba(47, 177, 228, 0.1);\n}\n.table-row-meta svg {\n width: 13px;\n height: 13px;\n margin: 0 1px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n cursor: pointer;\n}\n.table-row-meta svg:hover {\n color: var(--theme-color-2, var(--default-theme-color-2));\n}\n.meta-check {\n display: flex;\n position: relative;\n cursor: pointer;\n align-items: center;\n font-size: var(--theme-micro, var(--default-theme-micro));\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n user-select: none;\n margin: 0 1px;\n transition: all 0.15s ease-in-out;\n}\n.meta-check input {\n position: absolute;\n opacity: 0;\n cursor: pointer;\n height: 0;\n width: 0;\n}\n.meta-checkmark {\n height: 17px;\n width: 17px;\n background: var(--theme-background-3, var(--default-theme-background-3));\n border-radius: 3px;\n display: flex;\n align-items: center;\n justify-content: center;\n position: relative;\n}\n.meta-checkmark:hover {\n background: var(--theme-background-3, var(--default-theme-background-3));\n}\n.meta-check:focus-within .meta-checkmark {\n box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));\n}\n.meta-check .meta-checkmark:after {\n content: '';\n display: none;\n width: 5px;\n height: 8px;\n border: solid var(--theme-color-1, var(--default-theme-color-1));\n border-width: 0 1.5px 1.5px 0;\n transform: rotate(45deg) translate3d(0, -1px, 0);\n}\n.meta-check input:checked ~ .meta-checkmark:after {\n display: block;\n}\n.meta-check input:checked ~ .meta-checkmark:hover {\n background: transparent;\n}\n\n.navtable {\n width: 100%;\n}\n.navtable-follow {\n background-color: black;\n color: white;\n font-size: 9px;\n padding: 6px;\n display: -webkit-box;\n max-width: 250px;\n -webkit-line-clamp: 12;\n border-radius: 3px;\n -webkit-box-orient: vertical;\n overflow: hidden;\n line-height: 1.24;\n transform: translate3d(10px, 0, 0);\n}\n.navtable-follow:after {\n content: '';\n position: absolute;\n bottom: 0;\n width: 100%;\n height: 6px;\n background-color: black;\n}\n.navtable-follow * {\n font-family: var(\n --theme-font-code,\n var(--default-theme-font-code)\n ) !important;\n}\n.navtable-table {\n position: relative;\n display: flex;\n flex-direction: column;\n min-height: 389px;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n border: 1px solid var(--theme-border-color, var(--default-theme-border-color));\n}\n.navtable-radios {\n z-index: 1;\n border-top: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n}\n.navtable-item {\n display: flex;\n position: relative;\n color: var(--theme-color-1, var(--default-theme-color-1));\n font-size: var(--theme-micro, var(--default-theme-micro));\n border-top: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n}\n.navtable-item:first-of-type {\n border-top: none;\n}\n.navtable-item > div {\n word-wrap: break-word;\n}\n.navtable-item > div:not(:first-child) {\n border-left: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n}\n.navtable-item-action {\n color: var(--theme-color-2, var(--default-theme-color-2));\n font-size: var(--theme-micro, var(--default-theme-micro));\n font-weight: var(--theme-bold, var(--default-theme-bold));\n background: var(\n --scalar-api-client-bg3,\n var(--default-scalar-api-client-bg3)\n );\n border: none;\n border-radius: 30px;\n appearance: none;\n max-height: 25px;\n margin-left: 12px;\n margin-right: 6px;\n padding: 4px 8px;\n outline: none;\n cursor: pointer;\n opacity: 0;\n transition: opacity 0.15s ease-in-out;\n white-space: nowrap;\n position: relative;\n}\n.navtable-item-action:hover {\n color: var(--theme-color-1, var(--default-theme-color-1));\n background: var(\n --scalar-api-client-gradient,\n var(--default-scalar-api-client-gradient)\n );\n box-shadow: 0 0 0 1px\n var(--theme-border-color, var(--default-theme-border-color));\n}\n.navtable-item-action:focus {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.navtable-item:hover,\n.navtable-item:focus-within .navtable-item-action {\n opacity: 1;\n}\n.navtable-item-add {\n display: flex;\n align-items: center;\n padding: 9px;\n font-weight: var(--theme-bold, var(--default-theme-bold));\n outline: none;\n border: none;\n appearance: none;\n background: transparent;\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.navtable-item-add:hover {\n background: var(--theme-background-2, var(--default-theme-background-2));\n cursor: pointer;\n}\n.navtable-item-25 {\n width: 25%;\n font-size: var(--theme-micro, var(--default-theme-micro));\n display: flex;\n align-items: center;\n}\n.navtable-item-33 {\n width: 33.33333%;\n display: flex;\n font-size: var(--theme-micro, var(--default-theme-micro));\n align-items: center;\n}\n.navtable-item-66 {\n width: 66.6666%;\n display: flex;\n font-size: var(--theme-micro, var(--default-theme-micro));\n align-items: center;\n}\n.navtable-item-75 {\n width: 75%;\n display: flex;\n align-items: center;\n}\n.navtable-item-75:focus-within {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.navtable-item-40 {\n width: 40%;\n display: flex;\n align-items: center;\n padding: 9px;\n}\n.navtable-item-20 {\n width: 20%;\n display: flex;\n align-items: center;\n padding: 9px;\n}\n.navtable-item-50 {\n width: 50%;\n display: flex;\n align-items: center;\n}\n.navtable-item-50:focus-within {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.navtable-item p {\n padding: 9px;\n}\n.navtable-item input {\n padding: 12px 6px;\n border: none;\n outline: none;\n appearance: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n color: var(--theme-color-1, var(--default-theme-color-1));\n background: transparent;\n width: 100%;\n}\n.navtable-item input:focus {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.navtable-item-select {\n position: relative;\n}\n.navtable-item-select select {\n background: transparent;\n outline: none;\n border: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n -moz-appearance: none;\n -webkit-appearance: none;\n appearance: none;\n width: 100%;\n padding: 12px 6px;\n top: 0;\n position: relative;\n cursor: pointer;\n color: var(--theme-color-2, var(--default-theme-color-2));\n}\n.navtable-item-select svg {\n position: absolute;\n right: 6px;\n color: var(--theme-color-ghost, var(--default-theme-color-ghost));\n width: 6px;\n top: 12px;\n pointer-events: none;\n}\n.navtable-item .option {\n padding: 12px 6px;\n font-size: var(--theme-micro, var(--default-theme-micro));\n color: var(--theme-color-1, var(--default-theme-color-1));\n width: 100%;\n}\n.navtable-item label {\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-size: var(--theme-micro, var(--default-theme-micro));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n text-transform: uppercase;\n display: block;\n width: 100%;\n}\n.navtable-item-response {\n padding: 0 9px;\n}\n.navtable-item-response span {\n font-size: var(--theme-micro, var(--default-theme-micro));\n display: flex;\n align-items: center;\n margin-right: 9px;\n min-width: 40px;\n}\n.scalar-api-client__status--1xx:before,\n.scalar-api-client__status--2xx:before,\n.scalar-api-client__status--3xx:before,\n.scalar-api-client__status--4xx:before,\n.scalar-api-client__status--5xx:before,\n.scalar-api-client__status--6xx:before {\n content: '';\n width: 10px;\n height: 10px;\n border-radius: 50%;\n margin-right: 4px;\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.scalar-api-client__status--2xx:before {\n background: var(--theme-color-green, var(--default-theme-color-green));\n}\n.scalar-api-client__status--3xx:before {\n background: var(--theme-color-orange, var(--default-theme-color-orange));\n}\n.scalar-api-client__status--4xx:before {\n background: var(--theme-color-red, var(--default-theme-color-red));\n}\n.navtable-item-response span:empty {\n display: none;\n}\n.simpletable.navtable {\n padding: 0;\n}\n.simpletable.navtable .navtable-item-66,\n.simpletable.navtable .navtable-item-33 {\n display: block;\n}\n.simpletable.navtable .navtable-table {\n height: fit-content;\n}\n.meta-delete {\n position: absolute;\n right: -9px;\n background: var(\n --theme-background-3,\n var(--default-theme-background-3)\n ) !important;\n height: 20px;\n width: 20px;\n border: none;\n outline: none;\n border-radius: 50%;\n opacity: 0;\n padding: 5px;\n display: flex;\n align-items: center;\n justify-content: center;\n cursor: pointer;\n}\n.meta-delete svg {\n width: 11px;\n height: 11px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n}\n.meta-delete:hover svg {\n color: var(--theme-color-red, var(--default-theme-color-red));\n}\n.meta-delete:focus svg {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.meta-delete:focus {\n border-color: var(--theme-color-1, var(--default-theme-color-1));\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.table-row:hover .meta-delete {\n opacity: 1;\n}\n@media (pointer: coarse) {\n.table-row:hover .meta-delete {\n opacity: 1;\n}\n}\n.meta-actions-item {\n border: none;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n appearance: none;\n padding: 9px;\n width: 100%;\n appearance: none;\n outline: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n font-family: var(--theme-font, var(--default-theme-font));\n color: var(--theme-color-3, var(--default-theme-color-3));\n cursor: pointer;\n display: flex;\n align-items: center;\n gap: 6px;\n}\n.meta-actions {\n width: 100%;\n display: flex;\n justify-content: space-between;\n}\n.meta-actions-item:nth-of-type(2) {\n display: flex;\n justify-content: flex-end;\n}\n.meta-actions-item:nth-of-type(2) i {\n filter: drop-shadow(0 0.125px 0 currentColor)\n drop-shadow(0 -0.125px 0 currentColor);\n}\n.meta-actions-item-icon {\n width: 12px;\n height: 12px;\n}\n.meta-actions-item:hover,\n.meta-actions-item:focus {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n\n.scalar-api-client-add {\n color: var(--theme-color-2, var(--default-theme-color-2));\n padding: 6px;\n width: fit-content;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n cursor: pointer;\n font-size: var(--theme-micro, var(--default-theme-micro));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n text-decoration: none;\n margin: 0 6px;\n border: none;\n font-family: var(--theme-font);\n appearance: none;\n display: flex;\n align-items: center;\n}\n.scalar-api-client-add svg {\n width: 12px;\n height: 12px;\n margin-right: 6px;\n}\n.scalar-api-client-add:hover {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.scalar-api-client-add:focus-within {\n background: var(--theme-background-3, var(--default-theme-background-3));\n}\n\n.scalar-api-client__main__left {\n width: 50%;\n border-right: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n padding: 0 18px 12px 18px;\n}\n@media screen and (max-width: 820px) {\n.scalar-api-client__main__left {\n width: 100%;\n border-right: none;\n padding: 0 12px 12px 12px;\n}\n}\n.scalar-api-client__item__content {\n flex-flow: wrap;\n padding: 3px 9px 9px 9px;\n border-radius: 3px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-size: var(--theme-micro, var(--default-theme-micro));\n margin-top: -3px;\n justify-content: space-between;\n overflow: auto;\n}\n.scalar-api-client__item__content .scalar-api-client__codemirror__wrapper {\n width: 100%;\n min-height: 63px;\n}\n.scalar-api-client__item__content .scalar-codeblock-pre,\n.scalar-api-client__item__content .cm-s-default {\n border: 1px solid var(--theme-border-color, var(--default-theme-border-color));\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n}\n.scalar-api-client__item__content .scalar-codeblock-pre,\n.scalar-api-client__item__content .codemirror-container {\n width: 100%;\n max-height: calc(100vh - 300px);\n overflow: auto;\n}\n.scalar-api-client__item__content .cm-scroller {\n border: 1px solid var(--theme-border-color, var(--default-theme-border-color));\n border-radius: 3px;\n}\n.scalar-api-client__item__content .cm-editor {\n outline: none !important;\n}\n.scalar-api-client__item__content .cm-editor .cm-gutters {\n background: transparent;\n}\n.scalar-api-client__item__content .cm-scroll {\n background: transparent;\n}\n.scalar-api-client__item__content .cm-editor * {\n font-size: var(--theme-micro, var(--default-theme-micro));\n}\n.scalar-api-client__item__content .cm-editor .cm-line {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.scalar-api-client__item__content-button {\n appearance: none;\n border: none;\n outline: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n background: var(\n --scalar-api-client-color,\n var(--default-scalar-api-client-color)\n ) !important;\n text-align: center;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n font-family: var(--theme-font, var(--default-theme-font));\n padding: 6px;\n width: fit-content;\n margin: 3px 3px 3px auto;\n text-transform: uppercase;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n color: white;\n cursor: pointer;\n text-align: center !important;\n position: relative;\n}\n.scalar-api-client__item__content-button span {\n position: relative;\n}\n.scalar-api-client__item__content-button:before {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n cursor: pointer;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));\n}\n.scalar-api-client__item__content-button:hover:before {\n background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));\n}\n.scalar-api-client__item__content__split {\n justify-content: space-between;\n}\n.scalar-collapsible-section-flex {\n width: 100%;\n}\n.input {\n background: transparent;\n position: relative;\n width: 100%;\n text-align: left;\n display: flex;\n box-shadow: 0 1px 0\n var(--theme-border-color, var(--default-theme-border-color));\n}\n.input:focus-within {\n box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1)) !important;\n z-index: 10;\n}\n.input:first-of-type {\n border-radius: var(--theme-radius, var(--default-theme-radius))\n var(--theme-radius, var(--default-theme-radius)) 0 0;\n}\n.input:first-child:last-child {\n border-radius: var(--theme-radius, var(--default-theme-radius));\n}\n.input:last-child {\n box-shadow: none;\n border-radius: 0 0 var(--theme-radius, var(--default-theme-radius))\n var(--theme-radius, var(--default-theme-radius));\n}\n.input__half:first-of-type {\n border-radius: var(--theme-radius, var(--default-theme-radius)) 0 0 0;\n}\n.input__half:nth-of-type(2) {\n border-radius: 0 var(--theme-radius, var(--default-theme-radius)) 0 0;\n}\n.authentication-form {\n box-shadow: 0 0 0 1px\n var(--theme-border-color, var(--default-theme-border-color));\n border-radius: var(--theme-radius, var(--default-theme-radius));\n width: 100%;\n display: flex;\n flex-flow: wrap;\n}\n.input__half {\n width: 50%;\n}\n.input__half + .input__half {\n border-left: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n}\n.input__half:focus-within {\n border-color: transparent;\n}\n.input label,\n.input input {\n padding: 9px;\n border: 0;\n outline: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n color: var(--theme-color-2, var(--default-theme-color-2));\n width: 100%;\n background: transparent;\n appearance: none;\n -webkit-appearance: none;\n left: 0;\n}\n.input label {\n color: var(--theme-color-1, var(--default-theme-color-1));\n width: fit-content;\n padding-right: 0;\n white-space: nowrap;\n cursor: text;\n}\n.input input {\n position: relative;\n z-index: 99;\n}\n.input input:not(:placeholder-shown) + label {\n color: var(--theme-color-2, var(--default-theme-color-2));\n}\n.select {\n background: --theme-background-1;\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n font-size: var(--theme-micro, var(--default-theme-micro));\n border: 1px solid var(--theme-border-color, var(--default-theme-border-color));\n width: 100%;\n position: relative;\n margin-bottom: 6px;\n}\n.select:focus-within {\n background: var(--theme-background-3, var(--default-theme-background-3));\n}\n.select:hover {\n background: var(--theme-background-3, var(--default-theme-background-3));\n}\n.select svg {\n position: absolute;\n right: 9px;\n pointer-events: none;\n color: var(--theme-color-2, var(--default-theme-color-2));\n width: 6px;\n top: 10px;\n}\n.select label {\n display: block;\n font-size: 10px;\n color: var(--theme-color-2, var(--default-theme-color-2));\n position: absolute;\n left: 9px;\n top: 6px;\n}\n.select select {\n background: transparent;\n outline: none;\n border: none;\n -moz-appearance: none;\n -webkit-appearance: none;\n appearance: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n color: var(--theme-color-1, var(--default-theme-color-1));\n width: 100%;\n padding: 14px 9px 4px 9px;\n top: 0;\n position: relative;\n cursor: pointer;\n}\n.check {\n display: flex;\n position: relative;\n cursor: pointer;\n align-items: center;\n font-size: var(--theme-micro, var(--default-theme-micro));\n padding: 6px 9px;\n border-radius: 0 0 var(--theme-radius, var(--default-theme-radius))\n var(--theme-radius, var(--default-theme-radius));\n user-select: none;\n width: 100%;\n outline: none;\n}\n.check:focus-within {\n box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));\n}\n.checkmark:hover {\n background: var(--theme-background-3, var(--default-theme-background-3));\n}\n.check:focus-within {\n border-color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.check p {\n color: var(--theme-color-3, var(--default-theme-color-3));\n}\n.check input {\n position: absolute;\n opacity: 0;\n cursor: pointer;\n height: 0;\n width: 0;\n}\n.checkmark {\n height: 17px;\n width: 17px;\n background: var(--theme-background-3, var(--default-theme-background-3));\n margin-right: 10px;\n border-radius: 3px;\n display: flex;\n align-items: center;\n justify-content: center;\n position: relative;\n}\n.check input:checked ~ p {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.check .checkmark:after {\n content: '';\n display: none;\n width: 5px;\n height: 8px;\n border: solid var(--theme-color-1, var(--default-theme-color-1));\n border-width: 0 1.5px 1.5px 0;\n transform: rotate(45deg) translate3d(0, -1px, 0);\n}\n.check input:checked ~ .checkmark:after {\n display: block;\n}\n.scalar-api-client__main__scroll-container {\n height: calc(100vh - 320px);\n}\n.scalar-api-client__request-name {\n outline: none;\n border: none;\n appearance: none;\n -webkit-appearance: none;\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-size: var(--theme-small, var(--default-theme-small));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n color: var(--theme-color-3, var(--default-theme-color-3));\n width: 100%;\n padding: 0;\n background: transparent;\n font-family: var(--theme-font, var(--default-theme-font));\n}\n.scalar-api-client__request-name::-webkit-input-placeholder {\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n}\n.scalar-api-client__request-name:-ms-input-placeholder {\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n}\n.scalar-api-client__request-name::placeholder {\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n}\n\na[data-v-ffc7287f] {\n color: var(--theme-color-3, var(--default-theme-color-3));\n text-decoration: underline;\n text-decoration-color: var(\n --theme-border-color,\n var(--default-theme-border-color)\n );\n text-underline-offset: 2px;\n cursor: help;\n}\n\n.simple-cell[data-v-b99d5e90] {\n all: unset;\n display: table-cell;\n border-right: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n position: relative;\n padding: 9px !important;\n color: var(--theme-color-1, var(--default-theme-color-1));\n white-space: nowrap;\n}\n.simple-cell a[data-v-b99d5e90] {\n color: var(--theme-color-1, var(--default-theme-color-1)) !important;\n}\n.simple-cell[data-v-b99d5e90]:last-of-type {\n border-right: none;\n}\n.simple-cell.wrap[data-v-b99d5e90] {\n white-space: normal;\n}\n.simple-cell.strong[data-v-b99d5e90] {\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n}\n\n.simple-header[data-v-6bd3700b] {\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n text-transform: uppercase;\n}\n\n.simple-row[data-v-e7e681a1] {\n all: unset;\n display: table-row;\n box-shadow: 0 -1px var(--theme-border-color, var(--default-theme-border-color));\n}\n.simple-row[data-v-e7e681a1]:first-of-type {\n box-shadow: none;\n}\n\n.simple-table[data-v-8f53a32f] {\n all: unset;\n display: table;\n width: 100%;\n border-spacing: 0;\n box-shadow: 0 0 0 1px\n var(--theme-border-color, var(--default-theme-border-color));\n border-radius: var(--theme-radius, var(--default-theme-radius));\n}\n\n.scalar-api-client__main__right {\n width: 50%;\n padding: 0 18px 12px 18px;\n}\n@media screen and (max-width: 820px) {\n.scalar-api-client__main__right {\n width: 100%;\n border-right: none;\n padding: 0 12px 12px 12px;\n}\n}\n.scalar-api-client__main__right :deep(.scalar-copilot__header-button) {\n position: absolute;\n top: 6px;\n right: 12px;\n}\n\n.scalar-api-client,\n#headlessui-portal-root {\n background: var(--theme-background-1, var(--default-theme-background-1));\n position: relative;\n height: 100%;\n overflow: hidden !important;\n display: flex;\n flex-direction: column;\n font-family: var(--theme-font, var(--default-theme-font));\n\n /** Make sure box-sizing is set properly. */\n box-sizing: border-box;\n*,\n *:before,\n *:after {\n box-sizing: inherit;\n}\n}\n.scalar-api-client {\n flex: 1;\n max-height: 100vh;\n}\n@media screen and (max-width: 1000px) {\n.scalar-api-client {\n width: 100%;\n}\n}\n.scalar-api-client pre {\n font-family: var(--theme-font-code, var(--default-theme-font-code));\n}\n.scalar-api-client__mobile-navigation {\n padding: 12px 12px 0 12px;\n display: flex;\n font-size: var(--theme-small, var(--default-theme-small));\n color: var(--theme-color-2, var(--default-theme-color-2));\n font-weight: var(--theme-bold, var(--default-theme-bold));\n}\n.scalar-api-client__mobile-navigation__toggle {\n appearance: none;\n border: none;\n outline: none;\n background: transparent;\n font-size: var(--theme-font-size-2);\n color: var(--theme-color-2);\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n font-family: var(--theme-font, var(--default-theme-font));\n padding: 0;\n margin-right: 9px;\n cursor: pointer;\n}\n.scalar-api-client__mobile-navigation--active {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.scalar-api-client__mobile-navigation--active:hover {\n cursor: pointer;\n}\n.scalar-api-client__main {\n display: flex;\n height: 100%;\n min-height: 0;\n background: var(--theme-background-1, var(--default-theme-background-1));\n border-top: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n}\n@media screen and (max-width: 820px) {\n.scalar-api-client__main {\n flex-direction: column;\n}\n}\n\n/** TODO: Consider to make a Column component */\n.scalar-api-client__main__content {\n padding: 12px 6px;\n background: var(--theme-background-1, var(--default-theme-background-1));\n top: 0;\n position: sticky;\n z-index: 100;\n}\n.scalar-api-client__main__content label {\n font-size: var(--theme-small, var(--default-theme-small));\n color: var(--theme-color-1, var(--default-theme-color-1));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n display: flex;\n align-items: center;\n}\n@media screen and (max-width: 820px) {\n.scalar-api-client__main__content {\n padding: 3px 0 12px 0;\n}\n.scalar-api-client__main__content label {\n display: none;\n}\n}\n.meta {\n display: flex;\n margin-top: 3px;\n font-size: var(--theme-font-size-2, var(--default-theme-font-size-2));\n font-weight: var(--theme-font-size-2, var(--default-theme-font-size-2));\n color: var(\n --scalar-api-client-color2,\n var(--default-scalar-api-client-color2)\n );\n}\n.meta-item svg {\n fill: var(--theme-color-ghost, var(--default-theme-color-ghost));\n height: 14px;\n width: 14px;\n margin-right: 6px;\n}\n.meta-item {\n display: flex;\n align-items: center;\n margin-right: 12px;\n white-space: nowrap;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n font-size: var(--theme-small, var(--default-theme-small));\n color: var(--theme-color-3, var(--default-theme-color-3));\n min-height: 17px;\n}\n.meta-item__input {\n background: transparent;\n width: 100%;\n margin-right: 0;\n}\n.types {\n margin: auto;\n width: 580px;\n display: flex;\n align-items: center;\n justify-content: center;\n flex-flow: wrap;\n}\n.types-heading {\n width: 100%;\n text-align: center;\n}\n.types-heading b {\n font-size: 42px;\n}\n.types-heading p {\n margin-bottom: 20px;\n margin-top: 12px;\n font-size: 24px;\n}\n.scalar-api-client__empty-state {\n border: 1px dashed\n var(--theme-border-color, var(--default-theme-border-color));\n width: 100%;\n text-align: center;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n font-size: var(--theme-small, var(--default-theme-small));\n min-height: 58px;\n display: flex;\n align-items: center;\n justify-content: center;\n}"));
|
|
2276
7
|
document.head.appendChild(elementStyle);
|
|
2277
8
|
}
|
|
2278
9
|
} catch (e) {
|
|
@@ -2285,7 +16,7 @@ var __publicField = (obj, key, value) => {
|
|
|
2285
16
|
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
2286
17
|
return value;
|
|
2287
18
|
};
|
|
2288
|
-
import { defineComponent, openBlock, createBlock, resolveDynamicComponent, withCtx, createTextVNode, toDisplayString, unref, createCommentVNode, reactive, readonly, ref, computed, normalizeStyle, renderSlot, normalizeProps, guardReactiveProps, watch, onBeforeUnmount, toValue as toValue$1, toRef, createElementBlock, createElementVNode, createVNode, normalizeClass, Fragment, renderList, createStaticVNode, pushScopeId, popScopeId, withDirectives, withModifiers, vModelSelect, vModelText, vModelCheckbox, nextTick, onMounted,
|
|
19
|
+
import { defineComponent, openBlock, createBlock, resolveDynamicComponent, withCtx, createTextVNode, toDisplayString, unref, createCommentVNode, reactive, readonly, ref, computed, normalizeStyle, renderSlot, normalizeProps, guardReactiveProps, watch, onBeforeUnmount, toValue as toValue$1, toRef, createElementBlock, createElementVNode, createVNode, normalizeClass, Fragment, renderList, createStaticVNode, pushScopeId, popScopeId, withDirectives, withModifiers, vModelSelect, vModelText, vModelCheckbox, defineAsyncComponent, nextTick, onMounted, h, vShow, toRaw, withKeys } from "vue";
|
|
2289
20
|
import { Dialog, DialogPanel, DialogTitle, DialogDescription, Disclosure, DisclosureButton, DisclosurePanel, TabGroup, TabList, Tab, TabPanels, TabPanel } from "@headlessui/vue";
|
|
2290
21
|
import { useMagicKeys, whenever, useMediaQuery } from "@vueuse/core";
|
|
2291
22
|
import axios from "axios";
|
|
@@ -2303,7 +34,7 @@ const moonTheme = ".light-mode {\n color-scheme: light;\n --default-theme-colo
|
|
|
2303
34
|
const purpleTheme = "/* basic theme */\n.light-mode {\n --default-theme-background-1: #fff;\n --default-theme-background-2: #f5f6f8;\n --default-theme-background-3: #eceef1;\n\n --default-theme-color-1: #2a2f45;\n --default-theme-color-2: #757575;\n --default-theme-color-3: #8e8e8e;\n\n --default-theme-color-accent: #5469d4;\n --default-theme-background-accent: #5469d41f;\n\n --default-theme-border-color: rgba(215, 215, 206, 0.5);\n}\n.dark-mode {\n --default-theme-background-1: #15171c;\n --default-theme-background-2: #1c1e24;\n --default-theme-background-3: #22252b;\n\n --default-theme-color-1: #fafafa;\n --default-theme-color-2: #c9ced8;\n --default-theme-color-3: #8c99ad;\n\n --default-theme-color-accent: #5469d4;\n --default-theme-background-accent: #5469d41f;\n\n --default-theme-border-color: rgba(255, 255, 255, 0.12);\n}\n/* Document Sidebar */\n.light-mode .t-doc__sidebar,\n.dark-mode .t-doc__sidebar {\n --sidebar-background-1: var(--default-theme-background-1);\n --sidebar-color-1: var(--default-theme-color-1);\n --sidebar-color-2: var(--default-theme-color-2);\n --sidebar-border-color: var(--default-theme-border-color);\n\n /* Sidebar item hover */\n --sidebar-item-hover-color: currentColor;\n --sidebar-item-hover-background: var(--default-theme-background-3);\n\n /* Sidebar Active */\n --sidebar-item-active-background: var(--default-theme-background-accent);\n --sidebar-color-active: var(--default-theme-color-accent);\n\n /* Sidebar Search */\n --sidebar-search-background: var(--default-theme-background-1);\n --sidebar-search-color: var(--default-theme-color-3);\n --sidebar-search-border-color: var(--default-theme-border-color);\n}\n\n/* advanced */\n.light-mode {\n --default-theme-color-green: #17803d;\n --default-theme-color-red: #e10909;\n --default-theme-color-yellow: #edbe20;\n --default-theme-color-blue: #1763a6;\n --default-theme-color-orange: #e25b09;\n --default-theme-color-purple: #5c3993;\n}\n.dark-mode {\n --default-theme-color-green: #30a159;\n --default-theme-color-red: #dc1b19;\n --default-theme-color-yellow: #eec644;\n --default-theme-color-blue: #2b7abf;\n --default-theme-color-orange: #f07528;\n --default-theme-color-purple: #7a59b1;\n}\n";
|
|
2304
35
|
const saturnTheme = "/* basic theme */\n.light-mode {\n --default-theme-background-1: #f3f3ee;\n --default-theme-background-2: #e8e8e3;\n --default-theme-background-3: #e4e4df;\n --default-theme-border-color: rgba(215, 215, 206, 0.5);\n\n --default-theme-color-1: #2a2f45;\n --default-theme-color-2: #757575;\n --default-theme-color-3: #8e8e8e;\n\n --default-theme-color-accent: #1763a6;\n --default-theme-background-accent: #1f648e1f;\n\n --default-theme-code-language-color-supersede: var(--default-theme-color-1);\n --default-theme-code-languages-background-supersede: var(\n --default-theme-background-2\n );\n}\n.dark-mode {\n --default-theme-background-1: #09090b;\n --default-theme-background-2: #18181b;\n --default-theme-background-3: #2c2c30;\n --default-theme-border-color: rgba(255, 255, 255, 0.12);\n\n --default-theme-color-1: #fafafa;\n --default-theme-color-2: rgb(161, 161, 170);\n --default-theme-color-3: rgba(255, 255, 255, 0.533);\n\n --default-theme-color-accent: #4eb3ec;\n --default-theme-background-accent: #8ab4f81f;\n\n --default-theme-code-language-color-supersede: var(--default-theme-color-1);\n --default-theme-code-languages-background-supersede: var(\n --default-theme-background-2\n );\n}\n/* Document Sidebar */\n.light-mode .t-doc__sidebar,\n.dark-mode .t-doc__sidebar {\n --default-sidebar-background-1: var(--default-theme-background-1);\n --default-sidebar-color-1: var(--default-theme-color-1);\n --default-sidebar-color-2: var(--default-theme-color-2);\n --default-sidebar-border-color: var(--default-theme-border-color);\n\n --default-sidebar-item-hover-background: var(--default-theme-background-3);\n --default-sidebar-item-hover-color: currentColor;\n\n --default-sidebar-item-active-background: var(--default-theme-background-3);\n --default-sidebar-color-active: var(--default-theme-color-1);\n\n --default-sidebar-search-background: var(--default-theme-background-1);\n --default-sidebar-search-border-color: var(--default-theme-border-color);\n --default-sidebar-search-color: var(--default-theme-color-3);\n}\n\n/* advanced */\n.light-mode {\n --default-theme-color-green: #17803d;\n --default-theme-color-red: #e10909;\n --default-theme-color-yellow: #edbe20;\n --default-theme-color-blue: #1763a6;\n --default-theme-color-orange: #e25b09;\n --default-theme-color-purple: #5c3993;\n}\n.dark-mode {\n --default-theme-color-green: #30a159;\n --default-theme-color-red: #dc1b19;\n --default-theme-color-yellow: #eec644;\n --default-theme-color-blue: #2b7abf;\n --default-theme-color-orange: #f07528;\n --default-theme-color-purple: #7a59b1;\n}\n.dark-mode h2.t-editor__heading,\n.dark-mode .t-editor__page-title h1,\n.dark-mode h1.section-header,\n.dark-mode .markdown h1,\n.dark-mode .markdown h2,\n.dark-mode .markdown h3,\n.dark-mode .markdown h4,\n.dark-mode .markdown h5,\n.dark-mode .markdown h6 {\n -webkit-text-fill-color: transparent;\n background-image: linear-gradient(\n to right bottom,\n rgb(255, 255, 255) 30%,\n rgba(255, 255, 255, 0.38)\n );\n -webkit-background-clip: text;\n background-clip: text;\n}\n";
|
|
2305
36
|
const solarizedTheme = ".light-mode {\n color-scheme: light;\n --default-theme-color-1: #584c27;\n --default-theme-color-2: #616161;\n --default-theme-color-3: #a89f84;\n --default-theme-color-accent: #b58900;\n --default-theme-background-1: #fdf6e3;\n --default-theme-background-2: #eee8d5;\n --default-theme-background-3: #ddd6c1;\n --default-theme-background-accent: #b589001f;\n\n --default-theme-border-color: #ded8c8;\n --default-theme-scrollbar-color: rgba(0, 0, 0, 0.18);\n --default-theme-scrollbar-color-active: rgba(0, 0, 0, 0.36);\n --default-theme-lifted-brightness: 1;\n --default-theme-backdrop-brightness: 1;\n\n --default-theme-shadow-1: 0 1px 3px 0 rgba(0, 0, 0, 0.11);\n --default-theme-shadow-2: rgba(0, 0, 0, 0.08) 0px 13px 20px 0px,\n rgba(0, 0, 0, 0.08) 0px 3px 8px 0px, #eeeeed 0px 0 0 1px;\n\n --default-theme-button-1: rgb(49 53 56);\n --default-theme-button-1-color: #fff;\n --default-theme-button-1-hover: rgb(28 31 33);\n\n --default-theme-color-red: #b91c1c;\n --default-theme-color-orange: #a16207;\n --default-theme-color-green: #047857;\n --default-theme-color-blue: #1d4ed8;\n --default-theme-color-orange: #c2410c;\n --default-theme-color-purple: #6d28d9;\n}\n\n.dark-mode {\n color-scheme: dark;\n --default-theme-color-1: #fff;\n --default-theme-color-2: #cccccc;\n --default-theme-color-3: #6d8890;\n --default-theme-color-accent: #007acc;\n --default-theme-background-1: #00212b;\n --default-theme-background-2: #012b36;\n --default-theme-background-3: #004052;\n --default-theme-background-accent: #015a6f;\n\n --default-theme-border-color: rgba(255, 255, 255, 0.1);\n --default-theme-scrollbar-color: rgba(255, 255, 255, 0.24);\n --default-theme-scrollbar-color-active: rgba(255, 255, 255, 0.48);\n --default-theme-lifted-brightness: 1.45;\n --default-theme-backdrop-brightness: 0.5;\n\n --default-theme-shadow-1: 0 1px 3px 0 rgb(0, 0, 0, 0.1);\n --default-theme-shadow-2: rgba(15, 15, 15, 0.2) 0px 3px 6px,\n rgba(15, 15, 15, 0.4) 0px 9px 24px, 0 0 0 1px rgba(255, 255, 255, 0.1);\n\n --default-theme-button-1: #f6f6f6;\n --default-theme-button-1-color: #000;\n --default-theme-button-1-hover: #e7e7e7;\n\n --default-theme-color-green: #00b648;\n --default-theme-color-red: #dc1b19;\n --default-theme-color-yellow: #ffc90d;\n --default-theme-color-blue: #4eb3ec;\n --default-theme-color-orange: #ff8d4d;\n --default-theme-color-purple: #b191f9;\n}\n\n/* Sidebar */\n.light-mode .t-doc__sidebar {\n --default-sidebar-background-1: var(--default-theme-background-1);\n --default-sidebar-item-hover-color: currentColor;\n --default-sidebar-item-hover-background: var(--default-theme-background-2);\n --default-sidebar-item-active-background: var(\n --default-theme-background-accent\n );\n --default-sidebar-border-color: var(--default-theme-border-color);\n --default-sidebar-color-1: var(--default-theme-color-1);\n --default-sidebar-color-2: var(--default-theme-color-2);\n --default-sidebar-color-active: var(--default-theme-color-accent);\n --default-sidebar-search-background: var(--default-theme-background-2);\n --default-sidebar-search-border-color: var(--sidebar-search-background);\n --default-sidebar-search--color: var(--default-theme-color-3);\n}\n\n.dark-mode .sidebar {\n --default-sidebar-background-1: var(--default-theme-background-1);\n --default-sidebar-item-hover-color: currentColor;\n --default-sidebar-item-hover-background: var(--default-theme-background-2);\n --default-sidebar-item-active-background: var(\n --default-theme-background-accent\n );\n --default-sidebar-border-color: var(--default-theme-border-color);\n --default-sidebar-color-1: var(--default-theme-color-1);\n --default-sidebar-color-2: var(--default-theme-color-2);\n --default-sidebar-color-active: var(--default-sidebar-color-1);\n --default-sidebar-search-background: var(--default-theme-background-2);\n --default-sidebar-search-border-color: var(--sidebar-search-background);\n --default-sidebar-search--color: var(--default-theme-color-3);\n}\n";
|
|
2306
|
-
const _sfc_main$
|
|
37
|
+
const _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
2307
38
|
__name: "ThemeStyles",
|
|
2308
39
|
props: {
|
|
2309
40
|
id: {}
|
|
@@ -3262,7 +993,7 @@ const httpStatusCodes = {
|
|
|
3262
993
|
url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/511"
|
|
3263
994
|
}
|
|
3264
995
|
};
|
|
3265
|
-
const _sfc_main$
|
|
996
|
+
const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
3266
997
|
__name: "HttpMethod",
|
|
3267
998
|
props: {
|
|
3268
999
|
as: {},
|
|
@@ -14500,8 +12231,8 @@ let _supportsTabSize = null;
|
|
|
14500
12231
|
function supportsTabSize() {
|
|
14501
12232
|
var _a2;
|
|
14502
12233
|
if (_supportsTabSize == null && typeof document != "undefined" && document.body) {
|
|
14503
|
-
let
|
|
14504
|
-
_supportsTabSize = ((_a2 =
|
|
12234
|
+
let styles = document.body.style;
|
|
12235
|
+
_supportsTabSize = ((_a2 = styles.tabSize) !== null && _a2 !== void 0 ? _a2 : styles.MozTabSize) != null;
|
|
14505
12236
|
}
|
|
14506
12237
|
return _supportsTabSize || false;
|
|
14507
12238
|
}
|
|
@@ -15078,25 +12809,25 @@ const gutterView = /* @__PURE__ */ ViewPlugin.fromClass(class {
|
|
|
15078
12809
|
for (let b of line.type) {
|
|
15079
12810
|
if (b.type == BlockType.Text && first) {
|
|
15080
12811
|
advanceCursor(lineClasses, classSet, b.from);
|
|
15081
|
-
for (let
|
|
15082
|
-
|
|
12812
|
+
for (let cx of contexts)
|
|
12813
|
+
cx.line(this.view, b, classSet);
|
|
15083
12814
|
first = false;
|
|
15084
12815
|
} else if (b.widget) {
|
|
15085
|
-
for (let
|
|
15086
|
-
|
|
12816
|
+
for (let cx of contexts)
|
|
12817
|
+
cx.widget(this.view, b);
|
|
15087
12818
|
}
|
|
15088
12819
|
}
|
|
15089
12820
|
} else if (line.type == BlockType.Text) {
|
|
15090
12821
|
advanceCursor(lineClasses, classSet, line.from);
|
|
15091
|
-
for (let
|
|
15092
|
-
|
|
12822
|
+
for (let cx of contexts)
|
|
12823
|
+
cx.line(this.view, line, classSet);
|
|
15093
12824
|
} else if (line.widget) {
|
|
15094
|
-
for (let
|
|
15095
|
-
|
|
12825
|
+
for (let cx of contexts)
|
|
12826
|
+
cx.widget(this.view, line);
|
|
15096
12827
|
}
|
|
15097
12828
|
}
|
|
15098
|
-
for (let
|
|
15099
|
-
|
|
12829
|
+
for (let cx of contexts)
|
|
12830
|
+
cx.finish();
|
|
15100
12831
|
if (detach)
|
|
15101
12832
|
this.view.scrollDOM.insertBefore(this.dom, after);
|
|
15102
12833
|
}
|
|
@@ -18423,12 +16154,12 @@ class ParseContext {
|
|
|
18423
16154
|
let parser2 = {
|
|
18424
16155
|
parsedPos: from,
|
|
18425
16156
|
advance() {
|
|
18426
|
-
let
|
|
18427
|
-
if (
|
|
16157
|
+
let cx = currentContext;
|
|
16158
|
+
if (cx) {
|
|
18428
16159
|
for (let r2 of ranges)
|
|
18429
|
-
|
|
16160
|
+
cx.tempSkipped.push(r2);
|
|
18430
16161
|
if (until)
|
|
18431
|
-
|
|
16162
|
+
cx.scheduleOn = cx.scheduleOn ? Promise.all([cx.scheduleOn, until]) : until;
|
|
18432
16163
|
}
|
|
18433
16164
|
this.parsedPos = to;
|
|
18434
16165
|
return new Tree(NodeType.none, [], [], to - from);
|
|
@@ -18527,15 +16258,15 @@ const parseWorker = /* @__PURE__ */ ViewPlugin.fromClass(class ParseWorker {
|
|
|
18527
16258
|
this.scheduleWork();
|
|
18528
16259
|
}
|
|
18529
16260
|
update(update) {
|
|
18530
|
-
let
|
|
18531
|
-
if (
|
|
16261
|
+
let cx = this.view.state.field(Language.state).context;
|
|
16262
|
+
if (cx.updateViewport(update.view.viewport) || this.view.viewport.to > cx.treeLen)
|
|
18532
16263
|
this.scheduleWork();
|
|
18533
16264
|
if (update.docChanged || update.selectionSet) {
|
|
18534
16265
|
if (this.view.hasFocus)
|
|
18535
16266
|
this.chunkBudget += 50;
|
|
18536
16267
|
this.scheduleWork();
|
|
18537
16268
|
}
|
|
18538
|
-
this.checkAsyncSchedule(
|
|
16269
|
+
this.checkAsyncSchedule(cx);
|
|
18539
16270
|
}
|
|
18540
16271
|
scheduleWork() {
|
|
18541
16272
|
if (this.working)
|
|
@@ -18573,11 +16304,11 @@ const parseWorker = /* @__PURE__ */ ViewPlugin.fromClass(class ParseWorker {
|
|
|
18573
16304
|
this.scheduleWork();
|
|
18574
16305
|
this.checkAsyncSchedule(field.context);
|
|
18575
16306
|
}
|
|
18576
|
-
checkAsyncSchedule(
|
|
18577
|
-
if (
|
|
16307
|
+
checkAsyncSchedule(cx) {
|
|
16308
|
+
if (cx.scheduleOn) {
|
|
18578
16309
|
this.workScheduled++;
|
|
18579
|
-
|
|
18580
|
-
|
|
16310
|
+
cx.scheduleOn.then(() => this.scheduleWork()).catch((err) => logException(this.view.state, err)).then(() => this.workScheduled--);
|
|
16311
|
+
cx.scheduleOn = null;
|
|
18581
16312
|
}
|
|
18582
16313
|
}
|
|
18583
16314
|
destroy() {
|
|
@@ -18735,7 +16466,7 @@ class IndentContext {
|
|
|
18735
16466
|
}
|
|
18736
16467
|
}
|
|
18737
16468
|
const indentNodeProp = /* @__PURE__ */ new NodeProp();
|
|
18738
|
-
function syntaxIndentation(
|
|
16469
|
+
function syntaxIndentation(cx, ast, pos) {
|
|
18739
16470
|
let stack = ast.resolveStack(pos);
|
|
18740
16471
|
let inner = stack.node.enterUnfinishedNodesBefore(pos);
|
|
18741
16472
|
if (inner != stack.node) {
|
|
@@ -18745,18 +16476,18 @@ function syntaxIndentation(cx2, ast, pos) {
|
|
|
18745
16476
|
for (let i = add.length - 1; i >= 0; i--)
|
|
18746
16477
|
stack = { node: add[i], next: stack };
|
|
18747
16478
|
}
|
|
18748
|
-
return indentFor(stack,
|
|
16479
|
+
return indentFor(stack, cx, pos);
|
|
18749
16480
|
}
|
|
18750
|
-
function indentFor(stack,
|
|
16481
|
+
function indentFor(stack, cx, pos) {
|
|
18751
16482
|
for (let cur2 = stack; cur2; cur2 = cur2.next) {
|
|
18752
16483
|
let strategy = indentStrategy(cur2.node);
|
|
18753
16484
|
if (strategy)
|
|
18754
|
-
return strategy(TreeIndentContext.create(
|
|
16485
|
+
return strategy(TreeIndentContext.create(cx, pos, cur2));
|
|
18755
16486
|
}
|
|
18756
16487
|
return 0;
|
|
18757
16488
|
}
|
|
18758
|
-
function ignoreClosed(
|
|
18759
|
-
return
|
|
16489
|
+
function ignoreClosed(cx) {
|
|
16490
|
+
return cx.pos == cx.options.simulateBreak && cx.options.simulateDoubleBreak;
|
|
18760
16491
|
}
|
|
18761
16492
|
function indentStrategy(tree) {
|
|
18762
16493
|
let strategy = tree.type.prop(indentNodeProp);
|
|
@@ -18765,7 +16496,7 @@ function indentStrategy(tree) {
|
|
|
18765
16496
|
let first = tree.firstChild, close;
|
|
18766
16497
|
if (first && (close = first.type.prop(NodeProp.closedBy))) {
|
|
18767
16498
|
let last = tree.lastChild, closed = last && close.indexOf(last.name) > -1;
|
|
18768
|
-
return (
|
|
16499
|
+
return (cx) => delimitedStrategy(cx, true, 1, void 0, closed && !ignoreClosed(cx) ? last.from : void 0);
|
|
18769
16500
|
}
|
|
18770
16501
|
return tree.parent == null ? topIndent : null;
|
|
18771
16502
|
}
|
|
@@ -20313,7 +18044,7 @@ const completionPlugin = /* @__PURE__ */ ViewPlugin.fromClass(class {
|
|
|
20313
18044
|
if (update.transactions.some((tr) => tr.effects.some((e) => e.is(startCompletionEffect))))
|
|
20314
18045
|
this.pendingStart = true;
|
|
20315
18046
|
let delay = this.pendingStart ? 50 : update.state.facet(completionConfig).activateOnTypingDelay;
|
|
20316
|
-
this.debounceUpdate = cState.active.some((a) => a.state == 1 && !this.running.some((
|
|
18047
|
+
this.debounceUpdate = cState.active.some((a) => a.state == 1 && !this.running.some((q2) => q2.active.source == a.source)) ? setTimeout(() => this.startUpdate(), delay) : -1;
|
|
20317
18048
|
if (this.composing != 0)
|
|
20318
18049
|
for (let tr of update.transactions) {
|
|
20319
18050
|
if (getUserEvent(tr) == "input")
|
|
@@ -20347,7 +18078,7 @@ const completionPlugin = /* @__PURE__ */ ViewPlugin.fromClass(class {
|
|
|
20347
18078
|
});
|
|
20348
18079
|
}
|
|
20349
18080
|
scheduleAccept() {
|
|
20350
|
-
if (this.running.every((
|
|
18081
|
+
if (this.running.every((q2) => q2.done !== void 0))
|
|
20351
18082
|
this.accept();
|
|
20352
18083
|
else if (this.debounceAccept < 0)
|
|
20353
18084
|
this.debounceAccept = setTimeout(() => this.accept(), this.view.state.facet(completionConfig).updateSyncTime);
|
|
@@ -21024,8 +18755,8 @@ class Stack {
|
|
|
21024
18755
|
@internal
|
|
21025
18756
|
*/
|
|
21026
18757
|
static start(p, state2, pos = 0) {
|
|
21027
|
-
let
|
|
21028
|
-
return new Stack(p, [], state2, pos, pos, 0, [], 0,
|
|
18758
|
+
let cx = p.parser.context;
|
|
18759
|
+
return new Stack(p, [], state2, pos, pos, 0, [], 0, cx ? new StackContext(cx, cx.start) : null, 0, null);
|
|
21029
18760
|
}
|
|
21030
18761
|
/**
|
|
21031
18762
|
The stack's current [context](#lr.ContextTracker) value, if
|
|
@@ -23868,8 +21599,8 @@ const tagStart = new ExternalTokenizer((input, stack) => {
|
|
|
23868
21599
|
return input.acceptToken(missingCloseTag, -2);
|
|
23869
21600
|
if (stack.dialectEnabled(Dialect_noMatch))
|
|
23870
21601
|
return input.acceptToken(NoMatchStartCloseTag);
|
|
23871
|
-
for (let
|
|
23872
|
-
if (
|
|
21602
|
+
for (let cx = stack.context; cx; cx = cx.parent)
|
|
21603
|
+
if (cx.name == name2)
|
|
23873
21604
|
return;
|
|
23874
21605
|
input.acceptToken(MismatchedStartCloseTag);
|
|
23875
21606
|
} else {
|
|
@@ -24431,7 +22162,7 @@ const javascriptLanguage = /* @__PURE__ */ LRLanguage.define({
|
|
|
24431
22162
|
return context.baseIndent + (closed ? 0 : isCase ? 1 : 2) * context.unit;
|
|
24432
22163
|
},
|
|
24433
22164
|
Block: /* @__PURE__ */ delimitedIndent({ closing: "}" }),
|
|
24434
|
-
ArrowFunction: (
|
|
22165
|
+
ArrowFunction: (cx) => cx.baseIndent + cx.unit,
|
|
24435
22166
|
"TemplateString BlockComment": () => null,
|
|
24436
22167
|
"Statement Property": /* @__PURE__ */ continuedIndent({ except: /^{/ }),
|
|
24437
22168
|
JSXElement(context) {
|
|
@@ -25689,21 +23420,21 @@ const yamlLanguage = /* @__PURE__ */ LRLanguage.define({
|
|
|
25689
23420
|
parser: /* @__PURE__ */ parser.configure({
|
|
25690
23421
|
props: [
|
|
25691
23422
|
/* @__PURE__ */ indentNodeProp.add({
|
|
25692
|
-
Stream: (
|
|
25693
|
-
for (let before =
|
|
23423
|
+
Stream: (cx) => {
|
|
23424
|
+
for (let before = cx.node.resolve(cx.pos, -1); before && before.to >= cx.pos; before = before.parent) {
|
|
25694
23425
|
if (before.name == "BlockLiteralContent" && before.from < before.to)
|
|
25695
|
-
return
|
|
23426
|
+
return cx.baseIndentFor(before);
|
|
25696
23427
|
if (before.name == "BlockLiteral")
|
|
25697
|
-
return
|
|
23428
|
+
return cx.baseIndentFor(before) + cx.unit;
|
|
25698
23429
|
if (before.name == "BlockSequence" || before.name == "BlockMapping")
|
|
25699
|
-
return
|
|
23430
|
+
return cx.column(before.from, 1);
|
|
25700
23431
|
if (before.name == "QuotedLiteral")
|
|
25701
23432
|
return null;
|
|
25702
23433
|
if (before.name == "Literal") {
|
|
25703
|
-
let col =
|
|
25704
|
-
if (col ==
|
|
23434
|
+
let col = cx.column(before.from, 1);
|
|
23435
|
+
if (col == cx.lineIndent(before.from, 1))
|
|
25705
23436
|
return col;
|
|
25706
|
-
if (before.to >
|
|
23437
|
+
if (before.to > cx.pos)
|
|
25707
23438
|
return null;
|
|
25708
23439
|
}
|
|
25709
23440
|
}
|
|
@@ -25730,7 +23461,7 @@ var createTheme = (_ref) => {
|
|
|
25730
23461
|
var {
|
|
25731
23462
|
theme: theme2,
|
|
25732
23463
|
settings = {},
|
|
25733
|
-
styles
|
|
23464
|
+
styles = []
|
|
25734
23465
|
} = _ref;
|
|
25735
23466
|
var themeOptions = {
|
|
25736
23467
|
".cm-gutters": {}
|
|
@@ -25794,7 +23525,7 @@ var createTheme = (_ref) => {
|
|
|
25794
23525
|
var themeExtension = EditorView.theme(themeOptions, {
|
|
25795
23526
|
dark: theme2 === "dark"
|
|
25796
23527
|
});
|
|
25797
|
-
var highlightStyle = HighlightStyle.define(
|
|
23528
|
+
var highlightStyle = HighlightStyle.define(styles);
|
|
25798
23529
|
var extension = [themeExtension, syntaxHighlighting(highlightStyle)];
|
|
25799
23530
|
return extension;
|
|
25800
23531
|
};
|
|
@@ -26135,7 +23866,7 @@ function getCodeMirrorExtensions({
|
|
|
26135
23866
|
}
|
|
26136
23867
|
return extensions;
|
|
26137
23868
|
}
|
|
26138
|
-
const _sfc_main$
|
|
23869
|
+
const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
26139
23870
|
__name: "CodeMirror",
|
|
26140
23871
|
props: {
|
|
26141
23872
|
content: {},
|
|
@@ -26179,9 +23910,9 @@ const _export_sfc = (sfc, props) => {
|
|
|
26179
23910
|
}
|
|
26180
23911
|
return target;
|
|
26181
23912
|
};
|
|
26182
|
-
const CodeMirror = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
23913
|
+
const CodeMirror = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-9f50a430"]]);
|
|
26183
23914
|
const _hoisted_1$m = { class: "scalar-modal-layout modal-layout" };
|
|
26184
|
-
const _sfc_main$
|
|
23915
|
+
const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
26185
23916
|
__name: "FlowModal",
|
|
26186
23917
|
props: {
|
|
26187
23918
|
state: {},
|
|
@@ -26236,7 +23967,7 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
26236
23967
|
};
|
|
26237
23968
|
}
|
|
26238
23969
|
});
|
|
26239
|
-
const FlowModal = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
23970
|
+
const FlowModal = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-a06b8e92"]]);
|
|
26240
23971
|
const useModal = () => reactive({
|
|
26241
23972
|
open: false,
|
|
26242
23973
|
show() {
|
|
@@ -26517,7 +24248,7 @@ async function sendRequest(request, proxyUrl) {
|
|
|
26517
24248
|
const _hoisted_1$l = { class: "navtable-item-40 navtable-item-request" };
|
|
26518
24249
|
const _hoisted_2$f = { class: "navtable-item-40 navtable-item-response" };
|
|
26519
24250
|
const _hoisted_3$a = { class: "navtable-item-20 navtable-item-time" };
|
|
26520
|
-
const _sfc_main$
|
|
24251
|
+
const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
26521
24252
|
__name: "RequestHistoryItem",
|
|
26522
24253
|
props: {
|
|
26523
24254
|
history: {}
|
|
@@ -26564,14 +24295,14 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
26564
24295
|
};
|
|
26565
24296
|
}
|
|
26566
24297
|
});
|
|
26567
|
-
const RequestHistoryItem = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
24298
|
+
const RequestHistoryItem = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-dd49a57f"]]);
|
|
26568
24299
|
const _hoisted_1$k = { class: "navigation-content-item" };
|
|
26569
24300
|
const _hoisted_2$e = { class: "navtable" };
|
|
26570
24301
|
const _hoisted_3$9 = { class: "navtable-table" };
|
|
26571
24302
|
const _hoisted_4$7 = /* @__PURE__ */ createStaticVNode('<div class="navtable-item navtable-item__top"><div class="navtable-item-40"><label for="">Request</label></div><div class="navtable-item-40"><label for="">Response</label></div><div class="navtable-item-20"><label for="">TIME</label></div></div>', 1);
|
|
26572
24303
|
const _hoisted_5$6 = { class: "navtable-radios" };
|
|
26573
24304
|
const _hoisted_6$5 = /* @__PURE__ */ createStaticVNode('<div class="navtable-mock"><div class="navtable-item"><div class="navtable-item-40"></div><div class="navtable-item-40"></div><div class="navtable-item-20"></div></div></div>', 1);
|
|
26574
|
-
const _sfc_main$
|
|
24305
|
+
const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
26575
24306
|
__name: "RequestHistory",
|
|
26576
24307
|
emits: ["toggle"],
|
|
26577
24308
|
setup(__props) {
|
|
@@ -26599,7 +24330,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
26599
24330
|
const _hoisted_1$j = { class: "request-method-select" };
|
|
26600
24331
|
const _hoisted_2$d = ["disabled", "value"];
|
|
26601
24332
|
const _hoisted_3$8 = ["value"];
|
|
26602
|
-
const _sfc_main$
|
|
24333
|
+
const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
26603
24334
|
__name: "RequestMethodSelect",
|
|
26604
24335
|
props: {
|
|
26605
24336
|
requestMethod: {},
|
|
@@ -26644,7 +24375,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
26644
24375
|
};
|
|
26645
24376
|
}
|
|
26646
24377
|
});
|
|
26647
|
-
const RequestMethodSelect = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
24378
|
+
const RequestMethodSelect = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-8e2122cd"]]);
|
|
26648
24379
|
const _withScopeId = (n) => (pushScopeId("data-v-75df9114"), n = n(), popScopeId(), n);
|
|
26649
24380
|
const _hoisted_1$i = {
|
|
26650
24381
|
key: 0,
|
|
@@ -26704,7 +24435,7 @@ const _hoisted_10$2 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createE
|
|
|
26704
24435
|
})
|
|
26705
24436
|
])
|
|
26706
24437
|
], -1));
|
|
26707
|
-
const _sfc_main$
|
|
24438
|
+
const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
26708
24439
|
__name: "AddressBar",
|
|
26709
24440
|
props: {
|
|
26710
24441
|
proxyUrl: {}
|
|
@@ -26808,7 +24539,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
26808
24539
|
variant: "history"
|
|
26809
24540
|
}, {
|
|
26810
24541
|
default: withCtx(() => [
|
|
26811
|
-
createVNode(_sfc_main$
|
|
24542
|
+
createVNode(_sfc_main$m, {
|
|
26812
24543
|
showHistory: showHistory.value,
|
|
26813
24544
|
onToggle: _cache[1] || (_cache[1] = ($event) => showHistory.value = !showHistory.value)
|
|
26814
24545
|
}, null, 8, ["showHistory"])
|
|
@@ -26830,7 +24561,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
26830
24561
|
};
|
|
26831
24562
|
}
|
|
26832
24563
|
});
|
|
26833
|
-
const AddressBar = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
24564
|
+
const AddressBar = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-75df9114"]]);
|
|
26834
24565
|
const _hoisted_1$h = /* @__PURE__ */ createElementVNode("svg", {
|
|
26835
24566
|
class: "scalar-api-client__toggle__icon",
|
|
26836
24567
|
height: "10",
|
|
@@ -26850,7 +24581,7 @@ const _hoisted_3$6 = {
|
|
|
26850
24581
|
class: "scalar-api-client__item__options"
|
|
26851
24582
|
};
|
|
26852
24583
|
const _hoisted_4$5 = { class: "scalar-api-client__item__content" };
|
|
26853
|
-
const _sfc_main$
|
|
24584
|
+
const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
26854
24585
|
__name: "CollapsibleSection",
|
|
26855
24586
|
props: {
|
|
26856
24587
|
title: {},
|
|
@@ -26970,7 +24701,7 @@ const _hoisted_35 = /* @__PURE__ */ createElementVNode("label", { for: "Username
|
|
|
26970
24701
|
const _hoisted_36 = { class: "check" };
|
|
26971
24702
|
const _hoisted_37 = /* @__PURE__ */ createElementVNode("span", { class: "checkmark" }, null, -1);
|
|
26972
24703
|
const _hoisted_38 = /* @__PURE__ */ createElementVNode("p", null, "Enabled", -1);
|
|
26973
|
-
const _sfc_main$
|
|
24704
|
+
const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
26974
24705
|
__name: "RequestAuth",
|
|
26975
24706
|
setup(__props) {
|
|
26976
24707
|
const store = useRequestStore();
|
|
@@ -27006,7 +24737,7 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
|
27006
24737
|
}
|
|
27007
24738
|
];
|
|
27008
24739
|
return (_ctx, _cache) => {
|
|
27009
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
24740
|
+
return openBlock(), createBlock(unref(_sfc_main$j), { title: "Authentication" }, {
|
|
27010
24741
|
options: withCtx(() => [
|
|
27011
24742
|
createElementVNode("div", null, [
|
|
27012
24743
|
createElementVNode("span", null, [
|
|
@@ -29825,56 +27556,6 @@ function mergeConfigProperties(baseObject, mergeObject) {
|
|
|
29825
27556
|
function extendTailwindMerge(configExtension, ...createConfig) {
|
|
29826
27557
|
return typeof configExtension === "function" ? createTailwindMerge(getDefaultConfig, configExtension, ...createConfig) : createTailwindMerge(() => mergeConfigs(getDefaultConfig(), configExtension), ...createConfig);
|
|
29827
27558
|
}
|
|
29828
|
-
const classPrefix = "scalar-component";
|
|
29829
|
-
const tw = extendTailwindMerge({
|
|
29830
|
-
extend: {
|
|
29831
|
-
classGroups: {
|
|
29832
|
-
// Add the scalar class prefix as a custom class to be deduped by tailwind-merge
|
|
29833
|
-
[classPrefix]: [classPrefix]
|
|
29834
|
-
}
|
|
29835
|
-
}
|
|
29836
|
-
});
|
|
29837
|
-
const { cva, cx, compose } = defineConfig({
|
|
29838
|
-
hooks: {
|
|
29839
|
-
onComplete: (className) => `${tw(className, classPrefix)}`
|
|
29840
|
-
}
|
|
29841
|
-
});
|
|
29842
|
-
const styles = {
|
|
29843
|
-
solid: [
|
|
29844
|
-
"scalar-button-solid",
|
|
29845
|
-
"bg-back-btn-1 text-fore-btn-1 shadow-sm active:bg-back-btn-1 active:shadow-none hocus:bg-hover-btn-1"
|
|
29846
|
-
],
|
|
29847
|
-
outlined: [
|
|
29848
|
-
"scalar-button-outlined",
|
|
29849
|
-
"active:bg-btn-1 border border-solid border-border bg-transparent text-fore-1 hocus:bg-back-2"
|
|
29850
|
-
],
|
|
29851
|
-
ghost: [
|
|
29852
|
-
"scalar-button-ghost",
|
|
29853
|
-
"bg-transparent text-fore-3 active:text-fore-2 hocus:text-fore-2"
|
|
29854
|
-
],
|
|
29855
|
-
danger: [
|
|
29856
|
-
"scalar-button-danger",
|
|
29857
|
-
"bg-error text-white active:brightness-90 hocus:brightness-90"
|
|
29858
|
-
]
|
|
29859
|
-
};
|
|
29860
|
-
cva({
|
|
29861
|
-
base: "scalar-button row cursor-pointer items-center justify-center rounded font-medium",
|
|
29862
|
-
variants: {
|
|
29863
|
-
disabled: {
|
|
29864
|
-
true: "bg-background-2 text-color-3 cursor-not-allowed shadow-none"
|
|
29865
|
-
},
|
|
29866
|
-
fullWidth: { true: "w-full" },
|
|
29867
|
-
size: { md: "h-10 px-6 text-sm" },
|
|
29868
|
-
variant: styles
|
|
29869
|
-
},
|
|
29870
|
-
compoundVariants: [
|
|
29871
|
-
{
|
|
29872
|
-
disabled: true,
|
|
29873
|
-
variant: "ghost",
|
|
29874
|
-
class: "bg-transparent text-ghost"
|
|
29875
|
-
}
|
|
29876
|
-
]
|
|
29877
|
-
});
|
|
29878
27559
|
var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
|
|
29879
27560
|
function getDefaultExportFromCjs(x) {
|
|
29880
27561
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|
|
@@ -31334,42 +29015,88 @@ var prism = { exports: {} };
|
|
|
31334
29015
|
})();
|
|
31335
29016
|
})(prism);
|
|
31336
29017
|
var prismExports = prism.exports;
|
|
31337
|
-
const
|
|
31338
|
-
(
|
|
31339
|
-
|
|
31340
|
-
|
|
29018
|
+
const q = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
|
|
29019
|
+
const R = "scalar-component", fe = extendTailwindMerge({
|
|
29020
|
+
extend: {
|
|
29021
|
+
classGroups: {
|
|
29022
|
+
// Add the scalar class prefix as a custom class to be deduped by tailwind-merge
|
|
29023
|
+
[R]: [R]
|
|
29024
|
+
}
|
|
29025
|
+
}
|
|
29026
|
+
}), { cva: N, cx: E, compose: gt } = defineConfig({
|
|
29027
|
+
hooks: {
|
|
29028
|
+
onComplete: (r2) => `${fe(r2, R)}`
|
|
29029
|
+
}
|
|
29030
|
+
});
|
|
29031
|
+
const Y = {
|
|
29032
|
+
solid: [
|
|
29033
|
+
"scalar-button-solid",
|
|
29034
|
+
"bg-back-btn-1 text-fore-btn-1 shadow-sm active:bg-back-btn-1 active:shadow-none hocus:bg-hover-btn-1"
|
|
29035
|
+
],
|
|
29036
|
+
outlined: [
|
|
29037
|
+
"scalar-button-outlined",
|
|
29038
|
+
"active:bg-btn-1 border border-solid border-border bg-transparent text-fore-1 hocus:bg-back-2"
|
|
29039
|
+
],
|
|
29040
|
+
ghost: [
|
|
29041
|
+
"scalar-button-ghost",
|
|
29042
|
+
"bg-transparent text-fore-3 active:text-fore-2 hocus:text-fore-2"
|
|
29043
|
+
],
|
|
29044
|
+
danger: [
|
|
29045
|
+
"scalar-button-danger",
|
|
29046
|
+
"bg-error text-white active:brightness-90 hocus:brightness-90"
|
|
29047
|
+
]
|
|
29048
|
+
};
|
|
29049
|
+
N({
|
|
29050
|
+
base: "scalar-button row cursor-pointer items-center justify-center rounded font-medium",
|
|
29051
|
+
variants: {
|
|
29052
|
+
disabled: {
|
|
29053
|
+
true: "bg-background-2 text-color-3 cursor-not-allowed shadow-none"
|
|
29054
|
+
},
|
|
29055
|
+
fullWidth: { true: "w-full" },
|
|
29056
|
+
size: { md: "h-10 px-6 text-sm" },
|
|
29057
|
+
variant: Y
|
|
29058
|
+
},
|
|
29059
|
+
compoundVariants: [
|
|
29060
|
+
{
|
|
29061
|
+
disabled: true,
|
|
29062
|
+
variant: "ghost",
|
|
29063
|
+
class: "bg-transparent text-ghost"
|
|
29064
|
+
}
|
|
29065
|
+
]
|
|
29066
|
+
});
|
|
29067
|
+
(function(r2) {
|
|
29068
|
+
var t2 = "\\b(?:BASH|BASHOPTS|BASH_ALIASES|BASH_ARGC|BASH_ARGV|BASH_CMDS|BASH_COMPLETION_COMPAT_DIR|BASH_LINENO|BASH_REMATCH|BASH_SOURCE|BASH_VERSINFO|BASH_VERSION|COLORTERM|COLUMNS|COMP_WORDBREAKS|DBUS_SESSION_BUS_ADDRESS|DEFAULTS_PATH|DESKTOP_SESSION|DIRSTACK|DISPLAY|EUID|GDMSESSION|GDM_LANG|GNOME_KEYRING_CONTROL|GNOME_KEYRING_PID|GPG_AGENT_INFO|GROUPS|HISTCONTROL|HISTFILE|HISTFILESIZE|HISTSIZE|HOME|HOSTNAME|HOSTTYPE|IFS|INSTANCE|JOB|LANG|LANGUAGE|LC_ADDRESS|LC_ALL|LC_IDENTIFICATION|LC_MEASUREMENT|LC_MONETARY|LC_NAME|LC_NUMERIC|LC_PAPER|LC_TELEPHONE|LC_TIME|LESSCLOSE|LESSOPEN|LINES|LOGNAME|LS_COLORS|MACHTYPE|MAILCHECK|MANDATORY_PATH|NO_AT_BRIDGE|OLDPWD|OPTERR|OPTIND|ORBIT_SOCKETDIR|OSTYPE|PAPERSIZE|PATH|PIPESTATUS|PPID|PS1|PS2|PS3|PS4|PWD|RANDOM|REPLY|SECONDS|SELINUX_INIT|SESSION|SESSIONTYPE|SESSION_MANAGER|SHELL|SHELLOPTS|SHLVL|SSH_AUTH_SOCK|TERM|UID|UPSTART_EVENTS|UPSTART_INSTANCE|UPSTART_JOB|UPSTART_SESSION|USER|WINDOWID|XAUTHORITY|XDG_CONFIG_DIRS|XDG_CURRENT_DESKTOP|XDG_DATA_DIRS|XDG_GREETER_DATA_DIR|XDG_MENU_PREFIX|XDG_RUNTIME_DIR|XDG_SEAT|XDG_SEAT_PATH|XDG_SESSION_DESKTOP|XDG_SESSION_ID|XDG_SESSION_PATH|XDG_SESSION_TYPE|XDG_VTNR|XMODIFIERS)\\b", e = {
|
|
31341
29069
|
pattern: /(^(["']?)\w+\2)[ \t]+\S.*/,
|
|
31342
29070
|
lookbehind: true,
|
|
31343
29071
|
alias: "punctuation",
|
|
31344
29072
|
// this looks reasonably well in all themes
|
|
31345
29073
|
inside: null
|
|
31346
29074
|
// see below
|
|
31347
|
-
}
|
|
31348
|
-
|
|
31349
|
-
|
|
31350
|
-
|
|
31351
|
-
pattern: RegExp("\\$" + envVars),
|
|
29075
|
+
}, s = {
|
|
29076
|
+
bash: e,
|
|
29077
|
+
environment: {
|
|
29078
|
+
pattern: RegExp("\\$" + t2),
|
|
31352
29079
|
alias: "constant"
|
|
31353
29080
|
},
|
|
31354
|
-
|
|
29081
|
+
variable: [
|
|
31355
29082
|
// [0]: Arithmetic Environment
|
|
31356
29083
|
{
|
|
31357
29084
|
pattern: /\$?\(\([\s\S]+?\)\)/,
|
|
31358
29085
|
greedy: true,
|
|
31359
29086
|
inside: {
|
|
31360
29087
|
// If there is a $ sign at the beginning highlight $(( and )) as variable
|
|
31361
|
-
|
|
29088
|
+
variable: [
|
|
31362
29089
|
{
|
|
31363
29090
|
pattern: /(^\$\(\([\s\S]+)\)\)/,
|
|
31364
29091
|
lookbehind: true
|
|
31365
29092
|
},
|
|
31366
29093
|
/^\$\(\(/
|
|
31367
29094
|
],
|
|
31368
|
-
|
|
29095
|
+
number: /\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee]-?\d+)?/,
|
|
31369
29096
|
// Operators according to https://www.gnu.org/software/bash/manual/bashref.html#Shell-Arithmetic
|
|
31370
|
-
|
|
29097
|
+
operator: /--|\+\+|\*\*=?|<<=?|>>=?|&&|\|\||[=!+\-*/%<>^&|]=?|[?~:]/,
|
|
31371
29098
|
// If there is no $ sign at the beginning highlight (( and )) as punctuation
|
|
31372
|
-
|
|
29099
|
+
punctuation: /\(\(?|\)\)?|,|;/
|
|
31373
29100
|
}
|
|
31374
29101
|
},
|
|
31375
29102
|
// [1]: Command Substitution
|
|
@@ -31377,7 +29104,7 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
|
|
|
31377
29104
|
pattern: /\$\((?:\([^)]+\)|[^()])+\)|`[^`]+`/,
|
|
31378
29105
|
greedy: true,
|
|
31379
29106
|
inside: {
|
|
31380
|
-
|
|
29107
|
+
variable: /^\$\(|^`|\)$|`$/
|
|
31381
29108
|
}
|
|
31382
29109
|
},
|
|
31383
29110
|
// [2]: Brace expansion
|
|
@@ -31385,10 +29112,10 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
|
|
|
31385
29112
|
pattern: /\$\{[^}]+\}/,
|
|
31386
29113
|
greedy: true,
|
|
31387
29114
|
inside: {
|
|
31388
|
-
|
|
31389
|
-
|
|
31390
|
-
|
|
31391
|
-
pattern: RegExp("(\\{)" +
|
|
29115
|
+
operator: /:[-=?+]?|[!\/]|##?|%%?|\^\^?|,,?/,
|
|
29116
|
+
punctuation: /[\[\]]/,
|
|
29117
|
+
environment: {
|
|
29118
|
+
pattern: RegExp("(\\{)" + t2),
|
|
31392
29119
|
lookbehind: true,
|
|
31393
29120
|
alias: "constant"
|
|
31394
29121
|
}
|
|
@@ -31397,14 +29124,14 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
|
|
|
31397
29124
|
/\$(?:\w+|[#?*!@$])/
|
|
31398
29125
|
],
|
|
31399
29126
|
// Escape sequences from echo and printf's manuals, and escaped quotes.
|
|
31400
|
-
|
|
29127
|
+
entity: /\\(?:[abceEfnrtv\\"]|O?[0-7]{1,3}|U[0-9a-fA-F]{8}|u[0-9a-fA-F]{4}|x[0-9a-fA-F]{1,2})/
|
|
31401
29128
|
};
|
|
31402
|
-
|
|
31403
|
-
|
|
29129
|
+
r2.languages.bash = {
|
|
29130
|
+
shebang: {
|
|
31404
29131
|
pattern: /^#!\s*\/.*/,
|
|
31405
29132
|
alias: "important"
|
|
31406
29133
|
},
|
|
31407
|
-
|
|
29134
|
+
comment: {
|
|
31408
29135
|
pattern: /(^|[^"{\\$])#.*/,
|
|
31409
29136
|
lookbehind: true
|
|
31410
29137
|
},
|
|
@@ -31436,8 +29163,8 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
|
|
|
31436
29163
|
"assign-left": {
|
|
31437
29164
|
pattern: /(^|[\s;|&]|[<>]\()\w+(?:\.\w+)*(?=\+?=)/,
|
|
31438
29165
|
inside: {
|
|
31439
|
-
|
|
31440
|
-
pattern: RegExp("(^|[\\s;|&]|[<>]\\()" +
|
|
29166
|
+
environment: {
|
|
29167
|
+
pattern: RegExp("(^|[\\s;|&]|[<>]\\()" + t2),
|
|
31441
29168
|
lookbehind: true,
|
|
31442
29169
|
alias: "constant"
|
|
31443
29170
|
}
|
|
@@ -31446,18 +29173,18 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
|
|
|
31446
29173
|
lookbehind: true
|
|
31447
29174
|
},
|
|
31448
29175
|
// Highlight parameter names as variables
|
|
31449
|
-
|
|
29176
|
+
parameter: {
|
|
31450
29177
|
pattern: /(^|\s)-{1,2}(?:\w+:[+-]?)?\w+(?:\.\w+)*(?=[=\s]|$)/,
|
|
31451
29178
|
alias: "variable",
|
|
31452
29179
|
lookbehind: true
|
|
31453
29180
|
},
|
|
31454
|
-
|
|
29181
|
+
string: [
|
|
31455
29182
|
// Support for Here-documents https://en.wikipedia.org/wiki/Here_document
|
|
31456
29183
|
{
|
|
31457
29184
|
pattern: /((?:^|[^<])<<-?\s*)(\w+)\s[\s\S]*?(?:\r?\n|\r)\2/,
|
|
31458
29185
|
lookbehind: true,
|
|
31459
29186
|
greedy: true,
|
|
31460
|
-
inside:
|
|
29187
|
+
inside: s
|
|
31461
29188
|
},
|
|
31462
29189
|
// Here-document with quotes around the tag
|
|
31463
29190
|
// → No expansion (so no “inside”).
|
|
@@ -31466,7 +29193,7 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
|
|
|
31466
29193
|
lookbehind: true,
|
|
31467
29194
|
greedy: true,
|
|
31468
29195
|
inside: {
|
|
31469
|
-
|
|
29196
|
+
bash: e
|
|
31470
29197
|
}
|
|
31471
29198
|
},
|
|
31472
29199
|
// “Normal” string
|
|
@@ -31475,7 +29202,7 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
|
|
|
31475
29202
|
pattern: /(^|[^\\](?:\\\\)*)"(?:\\[\s\S]|\$\([^)]+\)|\$(?!\()|`[^`]+`|[^"\\`$])*"/,
|
|
31476
29203
|
lookbehind: true,
|
|
31477
29204
|
greedy: true,
|
|
31478
|
-
inside:
|
|
29205
|
+
inside: s
|
|
31479
29206
|
},
|
|
31480
29207
|
{
|
|
31481
29208
|
// https://www.gnu.org/software/bash/manual/html_node/Single-Quotes.html
|
|
@@ -31488,31 +29215,31 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
|
|
|
31488
29215
|
pattern: /\$'(?:[^'\\]|\\[\s\S])*'/,
|
|
31489
29216
|
greedy: true,
|
|
31490
29217
|
inside: {
|
|
31491
|
-
|
|
29218
|
+
entity: s.entity
|
|
31492
29219
|
}
|
|
31493
29220
|
}
|
|
31494
29221
|
],
|
|
31495
|
-
|
|
31496
|
-
pattern: RegExp("\\$?" +
|
|
29222
|
+
environment: {
|
|
29223
|
+
pattern: RegExp("\\$?" + t2),
|
|
31497
29224
|
alias: "constant"
|
|
31498
29225
|
},
|
|
31499
|
-
|
|
31500
|
-
|
|
29226
|
+
variable: s.variable,
|
|
29227
|
+
function: {
|
|
31501
29228
|
pattern: /(^|[\s;|&]|[<>]\()(?:add|apropos|apt|apt-cache|apt-get|aptitude|aspell|automysqlbackup|awk|basename|bash|bc|bconsole|bg|bzip2|cal|cargo|cat|cfdisk|chgrp|chkconfig|chmod|chown|chroot|cksum|clear|cmp|column|comm|composer|cp|cron|crontab|csplit|curl|cut|date|dc|dd|ddrescue|debootstrap|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|docker|docker-compose|du|egrep|eject|env|ethtool|expand|expect|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fuser|gawk|git|gparted|grep|groupadd|groupdel|groupmod|groups|grub-mkconfig|gzip|halt|head|hg|history|host|hostname|htop|iconv|id|ifconfig|ifdown|ifup|import|install|ip|java|jobs|join|kill|killall|less|link|ln|locate|logname|logrotate|look|lpc|lpr|lprint|lprintd|lprintq|lprm|ls|lsof|lynx|make|man|mc|mdadm|mkconfig|mkdir|mke2fs|mkfifo|mkfs|mkisofs|mknod|mkswap|mmv|more|most|mount|mtools|mtr|mutt|mv|nano|nc|netstat|nice|nl|node|nohup|notify-send|npm|nslookup|op|open|parted|passwd|paste|pathchk|ping|pkill|pnpm|podman|podman-compose|popd|pr|printcap|printenv|ps|pushd|pv|quota|quotacheck|quotactl|ram|rar|rcp|reboot|remsync|rename|renice|rev|rm|rmdir|rpm|rsync|scp|screen|sdiff|sed|sendmail|seq|service|sftp|sh|shellcheck|shuf|shutdown|sleep|slocate|sort|split|ssh|stat|strace|su|sudo|sum|suspend|swapon|sync|sysctl|tac|tail|tar|tee|time|timeout|top|touch|tr|traceroute|tsort|tty|umount|uname|unexpand|uniq|units|unrar|unshar|unzip|update-grub|uptime|useradd|userdel|usermod|users|uudecode|uuencode|v|vcpkg|vdir|vi|vim|virsh|vmstat|wait|watch|wc|wget|whereis|which|who|whoami|write|xargs|xdg-open|yarn|yes|zenity|zip|zsh|zypper)(?=$|[)\s;|&])/,
|
|
31502
29229
|
lookbehind: true
|
|
31503
29230
|
},
|
|
31504
|
-
|
|
29231
|
+
keyword: {
|
|
31505
29232
|
pattern: /(^|[\s;|&]|[<>]\()(?:case|do|done|elif|else|esac|fi|for|function|if|in|select|then|until|while)(?=$|[)\s;|&])/,
|
|
31506
29233
|
lookbehind: true
|
|
31507
29234
|
},
|
|
31508
29235
|
// https://www.gnu.org/software/bash/manual/html_node/Shell-Builtin-Commands.html
|
|
31509
|
-
|
|
29236
|
+
builtin: {
|
|
31510
29237
|
pattern: /(^|[\s;|&]|[<>]\()(?:\.|:|alias|bind|break|builtin|caller|cd|command|continue|declare|echo|enable|eval|exec|exit|export|getopts|hash|help|let|local|logout|mapfile|printf|pwd|read|readarray|readonly|return|set|shift|shopt|source|test|times|trap|type|typeset|ulimit|umask|unalias|unset)(?=$|[)\s;|&])/,
|
|
31511
29238
|
lookbehind: true,
|
|
31512
29239
|
// Alias added to make those easier to distinguish from strings.
|
|
31513
29240
|
alias: "class-name"
|
|
31514
29241
|
},
|
|
31515
|
-
|
|
29242
|
+
boolean: {
|
|
31516
29243
|
pattern: /(^|[\s;|&]|[<>]\()(?:false|true)(?=$|[)\s;|&])/,
|
|
31517
29244
|
lookbehind: true
|
|
31518
29245
|
},
|
|
@@ -31520,7 +29247,7 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
|
|
|
31520
29247
|
pattern: /\B&\d\b/,
|
|
31521
29248
|
alias: "important"
|
|
31522
29249
|
},
|
|
31523
|
-
|
|
29250
|
+
operator: {
|
|
31524
29251
|
// Lots of redirections here, but not just that.
|
|
31525
29252
|
pattern: /\d?<>|>\||\+=|=[=~]?|!=?|<<[<-]?|[&\d]?>>|\d[<>]&?|[<>][&=]?|&[>&]?|\|[&|]?/,
|
|
31526
29253
|
inside: {
|
|
@@ -31530,14 +29257,13 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
|
|
|
31530
29257
|
}
|
|
31531
29258
|
}
|
|
31532
29259
|
},
|
|
31533
|
-
|
|
31534
|
-
|
|
29260
|
+
punctuation: /\$?\(\(?|\)\)?|\.\.|[{}[\];\\]/,
|
|
29261
|
+
number: {
|
|
31535
29262
|
pattern: /(^|\s)(?:[1-9]\d*|0)(?:[.,]\d+)?\b/,
|
|
31536
29263
|
lookbehind: true
|
|
31537
29264
|
}
|
|
31538
|
-
};
|
|
31539
|
-
|
|
31540
|
-
var toBeCopied = [
|
|
29265
|
+
}, e.inside = r2.languages.bash;
|
|
29266
|
+
for (var u = [
|
|
31541
29267
|
"comment",
|
|
31542
29268
|
"function-name",
|
|
31543
29269
|
"for-or-select",
|
|
@@ -31553,177 +29279,172 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
|
|
|
31553
29279
|
"operator",
|
|
31554
29280
|
"punctuation",
|
|
31555
29281
|
"number"
|
|
31556
|
-
];
|
|
31557
|
-
|
|
31558
|
-
|
|
31559
|
-
inside2[toBeCopied[i]] = Prism2.languages.bash[toBeCopied[i]];
|
|
31560
|
-
}
|
|
31561
|
-
Prism2.languages.sh = Prism2.languages.bash;
|
|
31562
|
-
Prism2.languages.shell = Prism2.languages.bash;
|
|
29282
|
+
], f = s.variable[1].inside, a = 0; a < u.length; a++)
|
|
29283
|
+
f[u[a]] = r2.languages.bash[u[a]];
|
|
29284
|
+
r2.languages.sh = r2.languages.bash, r2.languages.shell = r2.languages.bash;
|
|
31563
29285
|
})(Prism);
|
|
31564
29286
|
Prism.languages.json = {
|
|
31565
|
-
|
|
29287
|
+
property: {
|
|
31566
29288
|
pattern: /(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?=\s*:)/,
|
|
31567
29289
|
lookbehind: true,
|
|
31568
29290
|
greedy: true
|
|
31569
29291
|
},
|
|
31570
|
-
|
|
29292
|
+
string: {
|
|
31571
29293
|
pattern: /(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?!\s*:)/,
|
|
31572
29294
|
lookbehind: true,
|
|
31573
29295
|
greedy: true
|
|
31574
29296
|
},
|
|
31575
|
-
|
|
29297
|
+
comment: {
|
|
31576
29298
|
pattern: /\/\/.*|\/\*[\s\S]*?(?:\*\/|$)/,
|
|
31577
29299
|
greedy: true
|
|
31578
29300
|
},
|
|
31579
|
-
|
|
31580
|
-
|
|
31581
|
-
|
|
31582
|
-
|
|
31583
|
-
|
|
29301
|
+
number: /-?\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i,
|
|
29302
|
+
punctuation: /[{}[\],]/,
|
|
29303
|
+
operator: /:/,
|
|
29304
|
+
boolean: /\b(?:false|true)\b/,
|
|
29305
|
+
null: {
|
|
31584
29306
|
pattern: /\bnull\b/,
|
|
31585
29307
|
alias: "keyword"
|
|
31586
29308
|
}
|
|
31587
29309
|
};
|
|
31588
29310
|
Prism.languages.webmanifest = Prism.languages.json;
|
|
31589
29311
|
(function() {
|
|
31590
|
-
if (typeof Prism
|
|
29312
|
+
if (typeof Prism > "u" || typeof document > "u")
|
|
31591
29313
|
return;
|
|
31592
|
-
|
|
31593
|
-
var lang_dependencies = (
|
|
29314
|
+
var r2 = (
|
|
31594
29315
|
/*dependencies_placeholder[*/
|
|
31595
29316
|
{
|
|
31596
|
-
|
|
31597
|
-
|
|
31598
|
-
|
|
29317
|
+
javascript: "clike",
|
|
29318
|
+
actionscript: "javascript",
|
|
29319
|
+
apex: [
|
|
31599
29320
|
"clike",
|
|
31600
29321
|
"sql"
|
|
31601
29322
|
],
|
|
31602
|
-
|
|
31603
|
-
|
|
29323
|
+
arduino: "cpp",
|
|
29324
|
+
aspnet: [
|
|
31604
29325
|
"markup",
|
|
31605
29326
|
"csharp"
|
|
31606
29327
|
],
|
|
31607
|
-
|
|
31608
|
-
|
|
31609
|
-
|
|
31610
|
-
|
|
31611
|
-
|
|
31612
|
-
|
|
31613
|
-
|
|
29328
|
+
birb: "clike",
|
|
29329
|
+
bison: "c",
|
|
29330
|
+
c: "clike",
|
|
29331
|
+
csharp: "clike",
|
|
29332
|
+
cpp: "c",
|
|
29333
|
+
cfscript: "clike",
|
|
29334
|
+
chaiscript: [
|
|
31614
29335
|
"clike",
|
|
31615
29336
|
"cpp"
|
|
31616
29337
|
],
|
|
31617
|
-
|
|
31618
|
-
|
|
31619
|
-
|
|
31620
|
-
|
|
29338
|
+
cilkc: "c",
|
|
29339
|
+
cilkcpp: "cpp",
|
|
29340
|
+
coffeescript: "javascript",
|
|
29341
|
+
crystal: "ruby",
|
|
31621
29342
|
"css-extras": "css",
|
|
31622
|
-
|
|
31623
|
-
|
|
31624
|
-
|
|
31625
|
-
|
|
29343
|
+
d: "clike",
|
|
29344
|
+
dart: "clike",
|
|
29345
|
+
django: "markup-templating",
|
|
29346
|
+
ejs: [
|
|
31626
29347
|
"javascript",
|
|
31627
29348
|
"markup-templating"
|
|
31628
29349
|
],
|
|
31629
|
-
|
|
29350
|
+
etlua: [
|
|
31630
29351
|
"lua",
|
|
31631
29352
|
"markup-templating"
|
|
31632
29353
|
],
|
|
31633
|
-
|
|
29354
|
+
erb: [
|
|
31634
29355
|
"ruby",
|
|
31635
29356
|
"markup-templating"
|
|
31636
29357
|
],
|
|
31637
|
-
|
|
29358
|
+
fsharp: "clike",
|
|
31638
29359
|
"firestore-security-rules": "clike",
|
|
31639
|
-
|
|
31640
|
-
|
|
31641
|
-
|
|
31642
|
-
|
|
31643
|
-
|
|
31644
|
-
|
|
31645
|
-
|
|
31646
|
-
|
|
31647
|
-
|
|
31648
|
-
|
|
31649
|
-
|
|
31650
|
-
|
|
31651
|
-
|
|
31652
|
-
|
|
29360
|
+
flow: "javascript",
|
|
29361
|
+
ftl: "markup-templating",
|
|
29362
|
+
gml: "clike",
|
|
29363
|
+
glsl: "c",
|
|
29364
|
+
go: "clike",
|
|
29365
|
+
gradle: "clike",
|
|
29366
|
+
groovy: "clike",
|
|
29367
|
+
haml: "ruby",
|
|
29368
|
+
handlebars: "markup-templating",
|
|
29369
|
+
haxe: "clike",
|
|
29370
|
+
hlsl: "c",
|
|
29371
|
+
idris: "haskell",
|
|
29372
|
+
java: "clike",
|
|
29373
|
+
javadoc: [
|
|
31653
29374
|
"markup",
|
|
31654
29375
|
"java",
|
|
31655
29376
|
"javadoclike"
|
|
31656
29377
|
],
|
|
31657
|
-
|
|
31658
|
-
|
|
29378
|
+
jolie: "clike",
|
|
29379
|
+
jsdoc: [
|
|
31659
29380
|
"javascript",
|
|
31660
29381
|
"javadoclike",
|
|
31661
29382
|
"typescript"
|
|
31662
29383
|
],
|
|
31663
29384
|
"js-extras": "javascript",
|
|
31664
|
-
|
|
31665
|
-
|
|
29385
|
+
json5: "json",
|
|
29386
|
+
jsonp: "json",
|
|
31666
29387
|
"js-templates": "javascript",
|
|
31667
|
-
|
|
31668
|
-
|
|
29388
|
+
kotlin: "clike",
|
|
29389
|
+
latte: [
|
|
31669
29390
|
"clike",
|
|
31670
29391
|
"markup-templating",
|
|
31671
29392
|
"php"
|
|
31672
29393
|
],
|
|
31673
|
-
|
|
31674
|
-
|
|
31675
|
-
|
|
31676
|
-
|
|
29394
|
+
less: "css",
|
|
29395
|
+
lilypond: "scheme",
|
|
29396
|
+
liquid: "markup-templating",
|
|
29397
|
+
markdown: "markup",
|
|
31677
29398
|
"markup-templating": "markup",
|
|
31678
|
-
|
|
31679
|
-
|
|
31680
|
-
|
|
31681
|
-
|
|
31682
|
-
|
|
31683
|
-
|
|
31684
|
-
|
|
29399
|
+
mongodb: "javascript",
|
|
29400
|
+
n4js: "javascript",
|
|
29401
|
+
objectivec: "c",
|
|
29402
|
+
opencl: "c",
|
|
29403
|
+
parser: "markup",
|
|
29404
|
+
php: "markup-templating",
|
|
29405
|
+
phpdoc: [
|
|
31685
29406
|
"php",
|
|
31686
29407
|
"javadoclike"
|
|
31687
29408
|
],
|
|
31688
29409
|
"php-extras": "php",
|
|
31689
|
-
|
|
31690
|
-
|
|
31691
|
-
|
|
31692
|
-
|
|
29410
|
+
plsql: "sql",
|
|
29411
|
+
processing: "clike",
|
|
29412
|
+
protobuf: "clike",
|
|
29413
|
+
pug: [
|
|
31693
29414
|
"markup",
|
|
31694
29415
|
"javascript"
|
|
31695
29416
|
],
|
|
31696
|
-
|
|
31697
|
-
|
|
31698
|
-
|
|
31699
|
-
|
|
31700
|
-
|
|
31701
|
-
|
|
31702
|
-
|
|
29417
|
+
purebasic: "clike",
|
|
29418
|
+
purescript: "haskell",
|
|
29419
|
+
qsharp: "clike",
|
|
29420
|
+
qml: "javascript",
|
|
29421
|
+
qore: "clike",
|
|
29422
|
+
racket: "scheme",
|
|
29423
|
+
cshtml: [
|
|
31703
29424
|
"markup",
|
|
31704
29425
|
"csharp"
|
|
31705
29426
|
],
|
|
31706
|
-
|
|
29427
|
+
jsx: [
|
|
31707
29428
|
"markup",
|
|
31708
29429
|
"javascript"
|
|
31709
29430
|
],
|
|
31710
|
-
|
|
29431
|
+
tsx: [
|
|
31711
29432
|
"jsx",
|
|
31712
29433
|
"typescript"
|
|
31713
29434
|
],
|
|
31714
|
-
|
|
31715
|
-
|
|
31716
|
-
|
|
31717
|
-
|
|
31718
|
-
|
|
29435
|
+
reason: "clike",
|
|
29436
|
+
ruby: "clike",
|
|
29437
|
+
sass: "css",
|
|
29438
|
+
scss: "css",
|
|
29439
|
+
scala: "java",
|
|
31719
29440
|
"shell-session": "bash",
|
|
31720
|
-
|
|
31721
|
-
|
|
31722
|
-
|
|
31723
|
-
|
|
31724
|
-
|
|
31725
|
-
|
|
31726
|
-
|
|
29441
|
+
smarty: "markup-templating",
|
|
29442
|
+
solidity: "clike",
|
|
29443
|
+
soy: "markup-templating",
|
|
29444
|
+
sparql: "turtle",
|
|
29445
|
+
sqf: "clike",
|
|
29446
|
+
squirrel: "clike",
|
|
29447
|
+
stata: [
|
|
31727
29448
|
"mata",
|
|
31728
29449
|
"java",
|
|
31729
29450
|
"python"
|
|
@@ -31736,305 +29457,231 @@ Prism.languages.webmanifest = Prism.languages.json;
|
|
|
31736
29457
|
"t4-templating",
|
|
31737
29458
|
"vbnet"
|
|
31738
29459
|
],
|
|
31739
|
-
|
|
31740
|
-
|
|
29460
|
+
tap: "yaml",
|
|
29461
|
+
tt2: [
|
|
31741
29462
|
"clike",
|
|
31742
29463
|
"markup-templating"
|
|
31743
29464
|
],
|
|
31744
|
-
|
|
31745
|
-
|
|
31746
|
-
|
|
31747
|
-
|
|
31748
|
-
|
|
31749
|
-
|
|
31750
|
-
|
|
31751
|
-
|
|
31752
|
-
|
|
29465
|
+
textile: "markup",
|
|
29466
|
+
twig: "markup-templating",
|
|
29467
|
+
typescript: "javascript",
|
|
29468
|
+
v: "clike",
|
|
29469
|
+
vala: "clike",
|
|
29470
|
+
vbnet: "basic",
|
|
29471
|
+
velocity: "markup",
|
|
29472
|
+
wiki: "markup",
|
|
29473
|
+
xeora: "markup",
|
|
31753
29474
|
"xml-doc": "markup",
|
|
31754
|
-
|
|
29475
|
+
xquery: "markup"
|
|
31755
29476
|
}
|
|
31756
|
-
)
|
|
31757
|
-
var lang_aliases = (
|
|
29477
|
+
), t2 = (
|
|
31758
29478
|
/*aliases_placeholder[*/
|
|
31759
29479
|
{
|
|
31760
|
-
|
|
31761
|
-
|
|
31762
|
-
|
|
31763
|
-
|
|
31764
|
-
|
|
31765
|
-
|
|
31766
|
-
|
|
31767
|
-
|
|
31768
|
-
|
|
31769
|
-
|
|
29480
|
+
html: "markup",
|
|
29481
|
+
xml: "markup",
|
|
29482
|
+
svg: "markup",
|
|
29483
|
+
mathml: "markup",
|
|
29484
|
+
ssml: "markup",
|
|
29485
|
+
atom: "markup",
|
|
29486
|
+
rss: "markup",
|
|
29487
|
+
js: "javascript",
|
|
29488
|
+
g4: "antlr4",
|
|
29489
|
+
ino: "arduino",
|
|
31770
29490
|
"arm-asm": "armasm",
|
|
31771
|
-
|
|
31772
|
-
|
|
31773
|
-
|
|
31774
|
-
|
|
31775
|
-
|
|
31776
|
-
|
|
31777
|
-
|
|
31778
|
-
|
|
31779
|
-
|
|
31780
|
-
|
|
31781
|
-
|
|
31782
|
-
|
|
31783
|
-
|
|
29491
|
+
art: "arturo",
|
|
29492
|
+
adoc: "asciidoc",
|
|
29493
|
+
avs: "avisynth",
|
|
29494
|
+
avdl: "avro-idl",
|
|
29495
|
+
gawk: "awk",
|
|
29496
|
+
sh: "bash",
|
|
29497
|
+
shell: "bash",
|
|
29498
|
+
shortcode: "bbcode",
|
|
29499
|
+
rbnf: "bnf",
|
|
29500
|
+
oscript: "bsl",
|
|
29501
|
+
cs: "csharp",
|
|
29502
|
+
dotnet: "csharp",
|
|
29503
|
+
cfc: "cfscript",
|
|
31784
29504
|
"cilk-c": "cilkc",
|
|
31785
29505
|
"cilk-cpp": "cilkcpp",
|
|
31786
|
-
|
|
31787
|
-
|
|
31788
|
-
|
|
31789
|
-
|
|
29506
|
+
cilk: "cilkcpp",
|
|
29507
|
+
coffee: "coffeescript",
|
|
29508
|
+
conc: "concurnas",
|
|
29509
|
+
jinja2: "django",
|
|
31790
29510
|
"dns-zone": "dns-zone-file",
|
|
31791
|
-
|
|
31792
|
-
|
|
31793
|
-
|
|
31794
|
-
|
|
31795
|
-
|
|
31796
|
-
|
|
31797
|
-
|
|
31798
|
-
|
|
31799
|
-
|
|
29511
|
+
dockerfile: "docker",
|
|
29512
|
+
gv: "dot",
|
|
29513
|
+
eta: "ejs",
|
|
29514
|
+
xlsx: "excel-formula",
|
|
29515
|
+
xls: "excel-formula",
|
|
29516
|
+
gamemakerlanguage: "gml",
|
|
29517
|
+
po: "gettext",
|
|
29518
|
+
gni: "gn",
|
|
29519
|
+
ld: "linker-script",
|
|
31800
29520
|
"go-mod": "go-module",
|
|
31801
|
-
|
|
31802
|
-
|
|
31803
|
-
|
|
31804
|
-
|
|
31805
|
-
|
|
31806
|
-
|
|
31807
|
-
|
|
31808
|
-
|
|
31809
|
-
|
|
31810
|
-
|
|
31811
|
-
|
|
31812
|
-
|
|
31813
|
-
|
|
31814
|
-
|
|
31815
|
-
|
|
31816
|
-
|
|
29521
|
+
hbs: "handlebars",
|
|
29522
|
+
mustache: "handlebars",
|
|
29523
|
+
hs: "haskell",
|
|
29524
|
+
idr: "idris",
|
|
29525
|
+
gitignore: "ignore",
|
|
29526
|
+
hgignore: "ignore",
|
|
29527
|
+
npmignore: "ignore",
|
|
29528
|
+
webmanifest: "json",
|
|
29529
|
+
kt: "kotlin",
|
|
29530
|
+
kts: "kotlin",
|
|
29531
|
+
kum: "kumir",
|
|
29532
|
+
tex: "latex",
|
|
29533
|
+
context: "latex",
|
|
29534
|
+
ly: "lilypond",
|
|
29535
|
+
emacs: "lisp",
|
|
29536
|
+
elisp: "lisp",
|
|
31817
29537
|
"emacs-lisp": "lisp",
|
|
31818
|
-
|
|
31819
|
-
|
|
31820
|
-
|
|
31821
|
-
|
|
31822
|
-
|
|
31823
|
-
|
|
31824
|
-
|
|
31825
|
-
|
|
31826
|
-
|
|
31827
|
-
|
|
31828
|
-
|
|
31829
|
-
|
|
31830
|
-
|
|
31831
|
-
|
|
31832
|
-
|
|
31833
|
-
|
|
31834
|
-
|
|
31835
|
-
|
|
31836
|
-
|
|
31837
|
-
|
|
31838
|
-
|
|
31839
|
-
|
|
29538
|
+
md: "markdown",
|
|
29539
|
+
moon: "moonscript",
|
|
29540
|
+
n4jsd: "n4js",
|
|
29541
|
+
nani: "naniscript",
|
|
29542
|
+
objc: "objectivec",
|
|
29543
|
+
qasm: "openqasm",
|
|
29544
|
+
objectpascal: "pascal",
|
|
29545
|
+
px: "pcaxis",
|
|
29546
|
+
pcode: "peoplecode",
|
|
29547
|
+
plantuml: "plant-uml",
|
|
29548
|
+
pq: "powerquery",
|
|
29549
|
+
mscript: "powerquery",
|
|
29550
|
+
pbfasm: "purebasic",
|
|
29551
|
+
purs: "purescript",
|
|
29552
|
+
py: "python",
|
|
29553
|
+
qs: "qsharp",
|
|
29554
|
+
rkt: "racket",
|
|
29555
|
+
razor: "cshtml",
|
|
29556
|
+
rpy: "renpy",
|
|
29557
|
+
res: "rescript",
|
|
29558
|
+
robot: "robotframework",
|
|
29559
|
+
rb: "ruby",
|
|
31840
29560
|
"sh-session": "shell-session",
|
|
31841
|
-
|
|
31842
|
-
|
|
31843
|
-
|
|
31844
|
-
|
|
31845
|
-
|
|
31846
|
-
|
|
31847
|
-
|
|
31848
|
-
|
|
31849
|
-
|
|
31850
|
-
|
|
31851
|
-
|
|
31852
|
-
|
|
31853
|
-
|
|
31854
|
-
|
|
31855
|
-
|
|
31856
|
-
|
|
31857
|
-
|
|
31858
|
-
|
|
31859
|
-
|
|
31860
|
-
|
|
31861
|
-
|
|
31862
|
-
|
|
31863
|
-
|
|
31864
|
-
}
|
|
31865
|
-
);
|
|
31866
|
-
|
|
31867
|
-
|
|
31868
|
-
|
|
31869
|
-
|
|
31870
|
-
|
|
31871
|
-
|
|
31872
|
-
|
|
31873
|
-
var autoloaderPath = script.getAttribute("data-autoloader-path");
|
|
31874
|
-
if (autoloaderPath != null) {
|
|
31875
|
-
languages_path = autoloaderPath.trim().replace(/\/?$/, "/");
|
|
31876
|
-
} else {
|
|
31877
|
-
var src = script.src;
|
|
31878
|
-
if (autoloaderFile.test(src)) {
|
|
31879
|
-
languages_path = src.replace(autoloaderFile, "components/");
|
|
31880
|
-
} else if (prismFile.test(src)) {
|
|
31881
|
-
languages_path = src.replace(prismFile, "$1components/");
|
|
31882
|
-
}
|
|
29561
|
+
shellsession: "shell-session",
|
|
29562
|
+
smlnj: "sml",
|
|
29563
|
+
sol: "solidity",
|
|
29564
|
+
sln: "solution-file",
|
|
29565
|
+
rq: "sparql",
|
|
29566
|
+
sclang: "supercollider",
|
|
29567
|
+
t4: "t4-cs",
|
|
29568
|
+
trickle: "tremor",
|
|
29569
|
+
troy: "tremor",
|
|
29570
|
+
trig: "turtle",
|
|
29571
|
+
ts: "typescript",
|
|
29572
|
+
tsconfig: "typoscript",
|
|
29573
|
+
uscript: "unrealscript",
|
|
29574
|
+
uc: "unrealscript",
|
|
29575
|
+
url: "uri",
|
|
29576
|
+
vb: "visual-basic",
|
|
29577
|
+
vba: "visual-basic",
|
|
29578
|
+
webidl: "web-idl",
|
|
29579
|
+
mathematica: "wolfram",
|
|
29580
|
+
nb: "wolfram",
|
|
29581
|
+
wl: "wolfram",
|
|
29582
|
+
xeoracube: "xeora",
|
|
29583
|
+
yml: "yaml"
|
|
29584
|
+
}
|
|
29585
|
+
), e = {}, s = "none", u = "components/", f = Prism.util.currentScript();
|
|
29586
|
+
if (f) {
|
|
29587
|
+
var a = /\bplugins\/autoloader\/prism-autoloader\.(?:min\.)?js(?:\?[^\r\n/]*)?$/i, d = /(^|\/)[\w-]+\.(?:min\.)?js(?:\?[^\r\n/]*)?$/i, n = f.getAttribute("data-autoloader-path");
|
|
29588
|
+
if (n != null)
|
|
29589
|
+
u = n.trim().replace(/\/?$/, "/");
|
|
29590
|
+
else {
|
|
29591
|
+
var c = f.src;
|
|
29592
|
+
a.test(c) ? u = c.replace(a, "components/") : d.test(c) && (u = c.replace(d, "$1components/"));
|
|
31883
29593
|
}
|
|
31884
29594
|
}
|
|
31885
|
-
var
|
|
31886
|
-
languages_path,
|
|
29595
|
+
var h2 = Prism.plugins.autoloader = {
|
|
29596
|
+
languages_path: u,
|
|
31887
29597
|
use_minified: true,
|
|
31888
|
-
loadLanguages
|
|
29598
|
+
loadLanguages: y
|
|
31889
29599
|
};
|
|
31890
|
-
function
|
|
31891
|
-
var
|
|
31892
|
-
|
|
31893
|
-
|
|
31894
|
-
|
|
31895
|
-
document.body.removeChild(
|
|
31896
|
-
|
|
31897
|
-
|
|
31898
|
-
|
|
31899
|
-
|
|
31900
|
-
|
|
31901
|
-
|
|
31902
|
-
|
|
31903
|
-
|
|
31904
|
-
|
|
31905
|
-
|
|
31906
|
-
|
|
31907
|
-
|
|
31908
|
-
if (parent && parent.tagName.toLowerCase() === "pre") {
|
|
31909
|
-
deps = (parent.getAttribute("data-dependencies") || "").trim();
|
|
31910
|
-
}
|
|
31911
|
-
}
|
|
31912
|
-
return deps ? deps.split(/\s*,\s*/g) : [];
|
|
31913
|
-
}
|
|
31914
|
-
function isLoaded(lang) {
|
|
31915
|
-
if (lang.indexOf("!") >= 0) {
|
|
29600
|
+
function i(o, p, v) {
|
|
29601
|
+
var m = document.createElement("script");
|
|
29602
|
+
m.src = o, m.async = true, m.onload = function() {
|
|
29603
|
+
document.body.removeChild(m), p && p();
|
|
29604
|
+
}, m.onerror = function() {
|
|
29605
|
+
document.body.removeChild(m), v && v();
|
|
29606
|
+
}, document.body.appendChild(m);
|
|
29607
|
+
}
|
|
29608
|
+
function b(o) {
|
|
29609
|
+
var p = (o.getAttribute("data-dependencies") || "").trim();
|
|
29610
|
+
if (!p) {
|
|
29611
|
+
var v = o.parentElement;
|
|
29612
|
+
v && v.tagName.toLowerCase() === "pre" && (p = (v.getAttribute("data-dependencies") || "").trim());
|
|
29613
|
+
}
|
|
29614
|
+
return p ? p.split(/\s*,\s*/g) : [];
|
|
29615
|
+
}
|
|
29616
|
+
function l(o) {
|
|
29617
|
+
if (o.indexOf("!") >= 0)
|
|
31916
29618
|
return false;
|
|
31917
|
-
|
|
31918
|
-
lang = lang_aliases[lang] || lang;
|
|
31919
|
-
if (lang in Prism.languages) {
|
|
29619
|
+
if (o = t2[o] || o, o in Prism.languages)
|
|
31920
29620
|
return true;
|
|
31921
|
-
|
|
31922
|
-
|
|
31923
|
-
return data && !data.error && data.loading === false;
|
|
29621
|
+
var p = e[o];
|
|
29622
|
+
return p && !p.error && p.loading === false;
|
|
31924
29623
|
}
|
|
31925
|
-
function
|
|
31926
|
-
return
|
|
29624
|
+
function _(o) {
|
|
29625
|
+
return h2.languages_path + "prism-" + o + (h2.use_minified ? ".min" : "") + ".js";
|
|
31927
29626
|
}
|
|
31928
|
-
function
|
|
31929
|
-
|
|
31930
|
-
|
|
31931
|
-
|
|
31932
|
-
|
|
31933
|
-
var completed = 0;
|
|
31934
|
-
var failed = false;
|
|
31935
|
-
if (total === 0) {
|
|
31936
|
-
if (success) {
|
|
31937
|
-
setTimeout(success, 0);
|
|
31938
|
-
}
|
|
29627
|
+
function y(o, p, v) {
|
|
29628
|
+
typeof o == "string" && (o = [o]);
|
|
29629
|
+
var m = o.length, L = 0, x = false;
|
|
29630
|
+
if (m === 0) {
|
|
29631
|
+
p && setTimeout(p, 0);
|
|
31939
29632
|
return;
|
|
31940
29633
|
}
|
|
31941
|
-
function
|
|
31942
|
-
|
|
31943
|
-
return;
|
|
31944
|
-
}
|
|
31945
|
-
completed++;
|
|
31946
|
-
if (completed === total) {
|
|
31947
|
-
success && success(languages);
|
|
31948
|
-
}
|
|
29634
|
+
function S2() {
|
|
29635
|
+
x || (L++, L === m && p && p(o));
|
|
31949
29636
|
}
|
|
31950
|
-
|
|
31951
|
-
|
|
31952
|
-
|
|
31953
|
-
return;
|
|
31954
|
-
}
|
|
31955
|
-
failed = true;
|
|
31956
|
-
error && error(lang);
|
|
29637
|
+
o.forEach(function(G) {
|
|
29638
|
+
Q(G, S2, function() {
|
|
29639
|
+
x || (x = true, v && v(G));
|
|
31957
29640
|
});
|
|
31958
29641
|
});
|
|
31959
29642
|
}
|
|
31960
|
-
function
|
|
31961
|
-
var
|
|
31962
|
-
|
|
31963
|
-
|
|
31964
|
-
|
|
31965
|
-
|
|
31966
|
-
|
|
31967
|
-
|
|
31968
|
-
|
|
31969
|
-
|
|
31970
|
-
}
|
|
31971
|
-
|
|
31972
|
-
|
|
31973
|
-
error
|
|
31974
|
-
});
|
|
31975
|
-
if (!force && isLoaded(lang)) {
|
|
31976
|
-
languageCallback(lang, "success");
|
|
31977
|
-
} else if (!force && data.error) {
|
|
31978
|
-
languageCallback(lang, "error");
|
|
31979
|
-
} else if (force || !data.loading) {
|
|
31980
|
-
data.loading = true;
|
|
31981
|
-
data.error = false;
|
|
31982
|
-
addScript(getLanguagePath(lang), function() {
|
|
31983
|
-
data.loading = false;
|
|
31984
|
-
languageCallback(lang, "success");
|
|
31985
|
-
}, function() {
|
|
31986
|
-
data.loading = false;
|
|
31987
|
-
data.error = true;
|
|
31988
|
-
languageCallback(lang, "error");
|
|
31989
|
-
});
|
|
31990
|
-
}
|
|
31991
|
-
}
|
|
31992
|
-
var dependencies = lang_dependencies[lang];
|
|
31993
|
-
if (dependencies && dependencies.length) {
|
|
31994
|
-
loadLanguages(dependencies, load, error);
|
|
31995
|
-
} else {
|
|
31996
|
-
load();
|
|
29643
|
+
function Q(o, p, v) {
|
|
29644
|
+
var m = o.indexOf("!") >= 0;
|
|
29645
|
+
o = o.replace("!", ""), o = t2[o] || o;
|
|
29646
|
+
function L() {
|
|
29647
|
+
var S2 = e[o];
|
|
29648
|
+
S2 || (S2 = e[o] = {
|
|
29649
|
+
callbacks: []
|
|
29650
|
+
}), S2.callbacks.push({
|
|
29651
|
+
success: p,
|
|
29652
|
+
error: v
|
|
29653
|
+
}), !m && l(o) ? j(o, "success") : !m && S2.error ? j(o, "error") : (m || !S2.loading) && (S2.loading = true, S2.error = false, i(_(o), function() {
|
|
29654
|
+
S2.loading = false, j(o, "success");
|
|
29655
|
+
}, function() {
|
|
29656
|
+
S2.loading = false, S2.error = true, j(o, "error");
|
|
29657
|
+
}));
|
|
31997
29658
|
}
|
|
29659
|
+
var x = r2[o];
|
|
29660
|
+
x && x.length ? y(x, L, v) : L();
|
|
31998
29661
|
}
|
|
31999
|
-
function
|
|
32000
|
-
if (
|
|
32001
|
-
var
|
|
32002
|
-
|
|
32003
|
-
|
|
32004
|
-
if (callback) {
|
|
32005
|
-
setTimeout(callback, 0);
|
|
32006
|
-
}
|
|
29662
|
+
function j(o, p) {
|
|
29663
|
+
if (e[o]) {
|
|
29664
|
+
for (var v = e[o].callbacks, m = 0, L = v.length; m < L; m++) {
|
|
29665
|
+
var x = v[m][p];
|
|
29666
|
+
x && setTimeout(x, 0);
|
|
32007
29667
|
}
|
|
32008
|
-
|
|
29668
|
+
v.length = 0;
|
|
32009
29669
|
}
|
|
32010
29670
|
}
|
|
32011
|
-
Prism.hooks.add("complete", function(
|
|
32012
|
-
var element =
|
|
32013
|
-
|
|
32014
|
-
|
|
32015
|
-
|
|
32016
|
-
|
|
32017
|
-
var deps = getDependencies(element);
|
|
32018
|
-
if (/^diff-./i.test(language2)) {
|
|
32019
|
-
deps.push("diff");
|
|
32020
|
-
deps.push(language2.substr("diff-".length));
|
|
32021
|
-
} else {
|
|
32022
|
-
deps.push(language2);
|
|
32023
|
-
}
|
|
32024
|
-
if (!deps.every(isLoaded)) {
|
|
32025
|
-
loadLanguages(deps, function() {
|
|
32026
|
-
Prism.highlightElement(element);
|
|
29671
|
+
Prism.hooks.add("complete", function(o) {
|
|
29672
|
+
var p = o.element, v = o.language;
|
|
29673
|
+
if (!(!p || !v || v === s)) {
|
|
29674
|
+
var m = b(p);
|
|
29675
|
+
/^diff-./i.test(v) ? (m.push("diff"), m.push(v.substr(5))) : m.push(v), m.every(l) || y(m, function() {
|
|
29676
|
+
Prism.highlightElement(p);
|
|
32027
29677
|
});
|
|
32028
29678
|
}
|
|
32029
29679
|
});
|
|
32030
29680
|
})();
|
|
32031
29681
|
(function() {
|
|
32032
|
-
if (typeof Prism
|
|
29682
|
+
if (typeof Prism > "u" || typeof document > "u")
|
|
32033
29683
|
return;
|
|
32034
|
-
|
|
32035
|
-
var PLUGIN_NAME = "line-numbers";
|
|
32036
|
-
var NEW_LINE_EXP = /\n(?!$)/g;
|
|
32037
|
-
var config2 = Prism.plugins.lineNumbers = {
|
|
29684
|
+
var r2 = "line-numbers", t2 = /\n(?!$)/g, e = Prism.plugins.lineNumbers = {
|
|
32038
29685
|
/**
|
|
32039
29686
|
* Get node for provided line number
|
|
32040
29687
|
*
|
|
@@ -32042,24 +29689,16 @@ Prism.languages.webmanifest = Prism.languages.json;
|
|
|
32042
29689
|
* @param {number} number line number
|
|
32043
29690
|
* @returns {Element|undefined}
|
|
32044
29691
|
*/
|
|
32045
|
-
getLine: function(
|
|
32046
|
-
if (
|
|
32047
|
-
|
|
32048
|
-
|
|
32049
|
-
|
|
32050
|
-
|
|
32051
|
-
|
|
32052
|
-
|
|
32053
|
-
|
|
32054
|
-
var lineNumberEnd = lineNumberStart + (lineNumberRows.children.length - 1);
|
|
32055
|
-
if (number2 < lineNumberStart) {
|
|
32056
|
-
number2 = lineNumberStart;
|
|
32057
|
-
}
|
|
32058
|
-
if (number2 > lineNumberEnd) {
|
|
32059
|
-
number2 = lineNumberEnd;
|
|
29692
|
+
getLine: function(a, d) {
|
|
29693
|
+
if (!(a.tagName !== "PRE" || !a.classList.contains(r2))) {
|
|
29694
|
+
var n = a.querySelector(".line-numbers-rows");
|
|
29695
|
+
if (n) {
|
|
29696
|
+
var c = parseInt(a.getAttribute("data-start"), 10) || 1, h2 = c + (n.children.length - 1);
|
|
29697
|
+
d < c && (d = c), d > h2 && (d = h2);
|
|
29698
|
+
var i = d - c;
|
|
29699
|
+
return n.children[i];
|
|
29700
|
+
}
|
|
32060
29701
|
}
|
|
32061
|
-
var lineIndex = number2 - lineNumberStart;
|
|
32062
|
-
return lineNumberRows.children[lineIndex];
|
|
32063
29702
|
},
|
|
32064
29703
|
/**
|
|
32065
29704
|
* Resizes the line numbers of the given element.
|
|
@@ -32069,8 +29708,8 @@ Prism.languages.webmanifest = Prism.languages.json;
|
|
|
32069
29708
|
* @param {HTMLElement} element A `<pre>` element with line numbers.
|
|
32070
29709
|
* @returns {void}
|
|
32071
29710
|
*/
|
|
32072
|
-
resize: function(
|
|
32073
|
-
|
|
29711
|
+
resize: function(a) {
|
|
29712
|
+
s([a]);
|
|
32074
29713
|
},
|
|
32075
29714
|
/**
|
|
32076
29715
|
* Whether the plugin can assume that the units font sizes and margins are not depended on the size of
|
|
@@ -32084,134 +29723,72 @@ Prism.languages.webmanifest = Prism.languages.json;
|
|
|
32084
29723
|
*/
|
|
32085
29724
|
assumeViewportIndependence: true
|
|
32086
29725
|
};
|
|
32087
|
-
function
|
|
32088
|
-
|
|
32089
|
-
var
|
|
32090
|
-
|
|
32091
|
-
|
|
32092
|
-
|
|
32093
|
-
|
|
32094
|
-
|
|
32095
|
-
|
|
32096
|
-
|
|
32097
|
-
|
|
32098
|
-
|
|
32099
|
-
|
|
32100
|
-
|
|
32101
|
-
|
|
32102
|
-
|
|
32103
|
-
|
|
32104
|
-
|
|
32105
|
-
lineNumberSizer = document.createElement("span");
|
|
32106
|
-
lineNumberSizer.className = "line-numbers-sizer";
|
|
32107
|
-
codeElement.appendChild(lineNumberSizer);
|
|
32108
|
-
}
|
|
32109
|
-
lineNumberSizer.innerHTML = "0";
|
|
32110
|
-
lineNumberSizer.style.display = "block";
|
|
32111
|
-
var oneLinerHeight = lineNumberSizer.getBoundingClientRect().height;
|
|
32112
|
-
lineNumberSizer.innerHTML = "";
|
|
32113
|
-
return {
|
|
32114
|
-
element,
|
|
32115
|
-
lines: codeLines,
|
|
32116
|
-
lineHeights: [],
|
|
32117
|
-
oneLinerHeight,
|
|
32118
|
-
sizer: lineNumberSizer
|
|
32119
|
-
};
|
|
32120
|
-
}).filter(Boolean);
|
|
32121
|
-
infos.forEach(function(info) {
|
|
32122
|
-
var lineNumberSizer = info.sizer;
|
|
32123
|
-
var lines = info.lines;
|
|
32124
|
-
var lineHeights = info.lineHeights;
|
|
32125
|
-
var oneLinerHeight = info.oneLinerHeight;
|
|
32126
|
-
lineHeights[lines.length - 1] = void 0;
|
|
32127
|
-
lines.forEach(function(line, index) {
|
|
32128
|
-
if (line && line.length > 1) {
|
|
32129
|
-
var e = lineNumberSizer.appendChild(document.createElement("span"));
|
|
32130
|
-
e.style.display = "block";
|
|
32131
|
-
e.textContent = line;
|
|
32132
|
-
} else {
|
|
32133
|
-
lineHeights[index] = oneLinerHeight;
|
|
32134
|
-
}
|
|
32135
|
-
});
|
|
32136
|
-
});
|
|
32137
|
-
infos.forEach(function(info) {
|
|
32138
|
-
var lineNumberSizer = info.sizer;
|
|
32139
|
-
var lineHeights = info.lineHeights;
|
|
32140
|
-
var childIndex = 0;
|
|
32141
|
-
for (var i = 0; i < lineHeights.length; i++) {
|
|
32142
|
-
if (lineHeights[i] === void 0) {
|
|
32143
|
-
lineHeights[i] = lineNumberSizer.children[childIndex++].getBoundingClientRect().height;
|
|
29726
|
+
function s(a) {
|
|
29727
|
+
if (a = a.filter(function(n) {
|
|
29728
|
+
var c = u(n), h2 = c["white-space"];
|
|
29729
|
+
return h2 === "pre-wrap" || h2 === "pre-line";
|
|
29730
|
+
}), a.length != 0) {
|
|
29731
|
+
var d = a.map(function(n) {
|
|
29732
|
+
var c = n.querySelector("code"), h2 = n.querySelector(".line-numbers-rows");
|
|
29733
|
+
if (!(!c || !h2)) {
|
|
29734
|
+
var i = n.querySelector(".line-numbers-sizer"), b = c.textContent.split(t2);
|
|
29735
|
+
i || (i = document.createElement("span"), i.className = "line-numbers-sizer", c.appendChild(i)), i.innerHTML = "0", i.style.display = "block";
|
|
29736
|
+
var l = i.getBoundingClientRect().height;
|
|
29737
|
+
return i.innerHTML = "", {
|
|
29738
|
+
element: n,
|
|
29739
|
+
lines: b,
|
|
29740
|
+
lineHeights: [],
|
|
29741
|
+
oneLinerHeight: l,
|
|
29742
|
+
sizer: i
|
|
29743
|
+
};
|
|
32144
29744
|
}
|
|
32145
|
-
}
|
|
32146
|
-
|
|
32147
|
-
|
|
32148
|
-
|
|
32149
|
-
|
|
32150
|
-
|
|
32151
|
-
|
|
32152
|
-
|
|
32153
|
-
|
|
29745
|
+
}).filter(Boolean);
|
|
29746
|
+
d.forEach(function(n) {
|
|
29747
|
+
var c = n.sizer, h2 = n.lines, i = n.lineHeights, b = n.oneLinerHeight;
|
|
29748
|
+
i[h2.length - 1] = void 0, h2.forEach(function(l, _) {
|
|
29749
|
+
if (l && l.length > 1) {
|
|
29750
|
+
var y = c.appendChild(document.createElement("span"));
|
|
29751
|
+
y.style.display = "block", y.textContent = l;
|
|
29752
|
+
} else
|
|
29753
|
+
i[_] = b;
|
|
29754
|
+
});
|
|
29755
|
+
}), d.forEach(function(n) {
|
|
29756
|
+
for (var c = n.sizer, h2 = n.lineHeights, i = 0, b = 0; b < h2.length; b++)
|
|
29757
|
+
h2[b] === void 0 && (h2[b] = c.children[i++].getBoundingClientRect().height);
|
|
29758
|
+
}), d.forEach(function(n) {
|
|
29759
|
+
var c = n.sizer, h2 = n.element.querySelector(".line-numbers-rows");
|
|
29760
|
+
c.style.display = "none", c.innerHTML = "", n.lineHeights.forEach(function(i, b) {
|
|
29761
|
+
h2.children[b].style.height = i + "px";
|
|
29762
|
+
});
|
|
32154
29763
|
});
|
|
32155
|
-
});
|
|
32156
|
-
}
|
|
32157
|
-
function getStyles(element) {
|
|
32158
|
-
if (!element) {
|
|
32159
|
-
return null;
|
|
32160
29764
|
}
|
|
32161
|
-
return window.getComputedStyle ? getComputedStyle(element) : element.currentStyle || null;
|
|
32162
29765
|
}
|
|
32163
|
-
|
|
29766
|
+
function u(a) {
|
|
29767
|
+
return a ? window.getComputedStyle ? getComputedStyle(a) : a.currentStyle || null : null;
|
|
29768
|
+
}
|
|
29769
|
+
var f = void 0;
|
|
32164
29770
|
window.addEventListener("resize", function() {
|
|
32165
|
-
|
|
32166
|
-
|
|
32167
|
-
|
|
32168
|
-
|
|
32169
|
-
|
|
32170
|
-
|
|
32171
|
-
|
|
32172
|
-
|
|
32173
|
-
|
|
32174
|
-
|
|
32175
|
-
|
|
32176
|
-
|
|
32177
|
-
|
|
32178
|
-
|
|
32179
|
-
|
|
32180
|
-
/** @type {HTMLElement} */
|
|
32181
|
-
code.parentNode
|
|
32182
|
-
);
|
|
32183
|
-
if (!pre || !/pre/i.test(pre.nodeName)) {
|
|
32184
|
-
return;
|
|
32185
|
-
}
|
|
32186
|
-
if (code.querySelector(".line-numbers-rows")) {
|
|
32187
|
-
return;
|
|
32188
|
-
}
|
|
32189
|
-
if (!Prism.util.isActive(code, PLUGIN_NAME)) {
|
|
32190
|
-
return;
|
|
29771
|
+
e.assumeViewportIndependence && f === window.innerWidth || (f = window.innerWidth, s(Array.prototype.slice.call(document.querySelectorAll("pre." + r2))));
|
|
29772
|
+
}), Prism.hooks.add("complete", function(a) {
|
|
29773
|
+
if (a.code) {
|
|
29774
|
+
var d = (
|
|
29775
|
+
/** @type {Element} */
|
|
29776
|
+
a.element
|
|
29777
|
+
), n = (
|
|
29778
|
+
/** @type {HTMLElement} */
|
|
29779
|
+
d.parentNode
|
|
29780
|
+
);
|
|
29781
|
+
if (!(!n || !/pre/i.test(n.nodeName)) && !d.querySelector(".line-numbers-rows") && Prism.util.isActive(d, r2)) {
|
|
29782
|
+
d.classList.remove(r2), n.classList.add(r2);
|
|
29783
|
+
var c = a.code.match(t2), h2 = c ? c.length + 1 : 1, i, b = new Array(h2 + 1).join("<span></span>");
|
|
29784
|
+
i = document.createElement("span"), i.setAttribute("aria-hidden", "true"), i.className = "line-numbers-rows", i.innerHTML = b, n.hasAttribute("data-start") && (n.style.counterReset = "linenumber " + (parseInt(n.getAttribute("data-start"), 10) - 1)), a.element.appendChild(i), s([n]), Prism.hooks.run("line-numbers", a);
|
|
29785
|
+
}
|
|
32191
29786
|
}
|
|
32192
|
-
|
|
32193
|
-
|
|
32194
|
-
var match = env.code.match(NEW_LINE_EXP);
|
|
32195
|
-
var linesNum = match ? match.length + 1 : 1;
|
|
32196
|
-
var lineNumbersWrapper;
|
|
32197
|
-
var lines = new Array(linesNum + 1).join("<span></span>");
|
|
32198
|
-
lineNumbersWrapper = document.createElement("span");
|
|
32199
|
-
lineNumbersWrapper.setAttribute("aria-hidden", "true");
|
|
32200
|
-
lineNumbersWrapper.className = "line-numbers-rows";
|
|
32201
|
-
lineNumbersWrapper.innerHTML = lines;
|
|
32202
|
-
if (pre.hasAttribute("data-start")) {
|
|
32203
|
-
pre.style.counterReset = "linenumber " + (parseInt(pre.getAttribute("data-start"), 10) - 1);
|
|
32204
|
-
}
|
|
32205
|
-
env.element.appendChild(lineNumbersWrapper);
|
|
32206
|
-
resizeElements([pre]);
|
|
32207
|
-
Prism.hooks.run("line-numbers", env);
|
|
32208
|
-
});
|
|
32209
|
-
Prism.hooks.add("line-numbers", function(env) {
|
|
32210
|
-
env.plugins = env.plugins || {};
|
|
32211
|
-
env.plugins.lineNumbers = true;
|
|
29787
|
+
}), Prism.hooks.add("line-numbers", function(a) {
|
|
29788
|
+
a.plugins = a.plugins || {}, a.plugins.lineNumbers = true;
|
|
32212
29789
|
});
|
|
32213
29790
|
})();
|
|
32214
|
-
const
|
|
29791
|
+
const ft = /* @__PURE__ */ defineComponent({
|
|
32215
29792
|
__name: "ScalarCodeBlock",
|
|
32216
29793
|
props: {
|
|
32217
29794
|
content: {},
|
|
@@ -32219,133 +29796,161 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
32219
29796
|
lineNumbers: { type: Boolean, default: false },
|
|
32220
29797
|
hideCredentials: {}
|
|
32221
29798
|
},
|
|
32222
|
-
setup(
|
|
32223
|
-
const
|
|
32224
|
-
|
|
32225
|
-
|
|
32226
|
-
|
|
32227
|
-
|
|
32228
|
-
|
|
32229
|
-
|
|
32230
|
-
|
|
32231
|
-
|
|
32232
|
-
|
|
32233
|
-
|
|
32234
|
-
|
|
32235
|
-
|
|
32236
|
-
|
|
32237
|
-
|
|
32238
|
-
|
|
32239
|
-
|
|
32240
|
-
if (showsCredentials) {
|
|
32241
|
-
env.content = env.content.replace(
|
|
32242
|
-
/<span class="credentials">.*?<\/span>/g,
|
|
32243
|
-
(match) => match.replace(/<span class="credentials">|<\/span>/g, "")
|
|
32244
|
-
);
|
|
32245
|
-
env.content = env.content.replace(
|
|
32246
|
-
new RegExp(
|
|
32247
|
-
typeof props.hideCredentials === "string" ? props.hideCredentials : props.hideCredentials.join("|"),
|
|
32248
|
-
"g"
|
|
32249
|
-
),
|
|
32250
|
-
(match) => `<span class="credentials">${match}</span>`
|
|
32251
|
-
);
|
|
32252
|
-
}
|
|
32253
|
-
});
|
|
32254
|
-
}
|
|
32255
|
-
const el = ref(null);
|
|
32256
|
-
const language2 = computed(() => {
|
|
32257
|
-
return props.lang === "node" ? "js" : props.lang;
|
|
29799
|
+
setup(r2) {
|
|
29800
|
+
const t2 = r2, { plugins: e, highlightElement: s } = q;
|
|
29801
|
+
t2.hideCredentials && q.hooks.add("wrap", function(a) {
|
|
29802
|
+
if (!t2.hideCredentials)
|
|
29803
|
+
return;
|
|
29804
|
+
let d = false;
|
|
29805
|
+
typeof t2.hideCredentials == "string" ? a.content.includes(t2.hideCredentials) && (d = true) : Array.isArray(t2.hideCredentials) && (d = t2.hideCredentials.some(
|
|
29806
|
+
(n) => a.content.includes(n)
|
|
29807
|
+
)), d && (a.content = a.content.replace(
|
|
29808
|
+
/<span class="credentials">.*?<\/span>/g,
|
|
29809
|
+
(n) => n.replace(/<span class="credentials">|<\/span>/g, "")
|
|
29810
|
+
), a.content = a.content.replace(
|
|
29811
|
+
new RegExp(
|
|
29812
|
+
typeof t2.hideCredentials == "string" ? t2.hideCredentials : t2.hideCredentials.join("|"),
|
|
29813
|
+
"g"
|
|
29814
|
+
),
|
|
29815
|
+
(n) => `<span class="credentials">${n}</span>`
|
|
29816
|
+
));
|
|
32258
29817
|
});
|
|
32259
|
-
|
|
32260
|
-
watch(
|
|
32261
|
-
() => [
|
|
29818
|
+
const u = ref(null), f = computed(() => t2.lang === "node" ? "js" : t2.lang);
|
|
29819
|
+
return e.autoloader.languages_path = "https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/", watch(
|
|
29820
|
+
() => [t2.lang, t2.content],
|
|
32262
29821
|
() => {
|
|
32263
|
-
|
|
32264
|
-
|
|
32265
|
-
|
|
32266
|
-
|
|
32267
|
-
|
|
32268
|
-
|
|
32269
|
-
|
|
32270
|
-
|
|
32271
|
-
|
|
32272
|
-
|
|
32273
|
-
|
|
32274
|
-
|
|
32275
|
-
}
|
|
32276
|
-
},
|
|
32277
|
-
|
|
32278
|
-
|
|
32279
|
-
|
|
32280
|
-
|
|
32281
|
-
|
|
32282
|
-
|
|
32283
|
-
|
|
32284
|
-
}
|
|
32285
|
-
})
|
|
32286
|
-
const
|
|
32287
|
-
|
|
32288
|
-
const parser2 = new Parser2();
|
|
32289
|
-
const parsed = parser2.parseFromString(raw, "image/svg+xml");
|
|
32290
|
-
if (parsed.getElementsByTagName("parsererror").length) {
|
|
32291
|
-
return void 0;
|
|
32292
|
-
}
|
|
32293
|
-
const svg = parsed.documentElement;
|
|
32294
|
-
const attrs = attrsToObject(svg.attributes);
|
|
32295
|
-
const { width, height, ...rest } = attrs;
|
|
32296
|
-
return h("svg", { ...rest, innerHTML: svg.innerHTML });
|
|
32297
|
-
};
|
|
32298
|
-
const SvgRenderer = defineAsyncComponent(async () => {
|
|
32299
|
-
const Parser2 = typeof DOMParser === "undefined" ? (await import("./index-CpJxdgyL.js").then((n) => n.i)).DOMParser : DOMParser;
|
|
32300
|
-
const Renderer = getRendererComponent(Parser2);
|
|
32301
|
-
Renderer.props = {
|
|
29822
|
+
u.value && nextTick(() => s(u.value));
|
|
29823
|
+
}
|
|
29824
|
+
), onMounted(() => {
|
|
29825
|
+
u.value && s(u.value);
|
|
29826
|
+
}), (a, d) => (openBlock(), createElementBlock("pre", {
|
|
29827
|
+
class: normalizeClass(["scalar-component scalar-codeblock-pre", {
|
|
29828
|
+
"line-numbers": a.lineNumbers
|
|
29829
|
+
}])
|
|
29830
|
+
}, [
|
|
29831
|
+
createElementVNode("code", {
|
|
29832
|
+
ref_key: "el",
|
|
29833
|
+
ref: u,
|
|
29834
|
+
class: normalizeClass(`scalar-codeblock-code lang-${f.value}`)
|
|
29835
|
+
}, toDisplayString(a.content), 3)
|
|
29836
|
+
], 2));
|
|
29837
|
+
}
|
|
29838
|
+
}), Ee = (r2) => Object.fromEntries(Array.from(r2).map((t2) => [t2.name, t2.value])), Le = (r2) => ({ raw: t2 }) => {
|
|
29839
|
+
const s = new r2().parseFromString(t2, "image/svg+xml");
|
|
29840
|
+
if (s.getElementsByTagName("parsererror").length)
|
|
29841
|
+
return;
|
|
29842
|
+
const u = s.documentElement, f = Ee(u.attributes), { width: a, height: d, ...n } = f;
|
|
29843
|
+
return h("svg", { ...n, innerHTML: u.innerHTML });
|
|
29844
|
+
}, Ae = defineAsyncComponent(async () => {
|
|
29845
|
+
const r2 = typeof DOMParser > "u" ? (await import("./index-CpJxdgyL.js").then((n) => n.i)).DOMParser : DOMParser, t2 = Le(r2);
|
|
29846
|
+
return t2.props = {
|
|
32302
29847
|
raw: {
|
|
32303
29848
|
type: String,
|
|
32304
29849
|
required: true
|
|
32305
29850
|
}
|
|
32306
|
-
};
|
|
32307
|
-
|
|
32308
|
-
|
|
32309
|
-
|
|
32310
|
-
|
|
32311
|
-
|
|
32312
|
-
|
|
32313
|
-
|
|
32314
|
-
|
|
32315
|
-
|
|
32316
|
-
|
|
32317
|
-
|
|
32318
|
-
|
|
32319
|
-
|
|
32320
|
-
|
|
32321
|
-
|
|
32322
|
-
|
|
32323
|
-
|
|
32324
|
-
|
|
32325
|
-
|
|
32326
|
-
|
|
32327
|
-
|
|
32328
|
-
|
|
32329
|
-
|
|
32330
|
-
|
|
32331
|
-
|
|
32332
|
-
|
|
32333
|
-
|
|
32334
|
-
|
|
32335
|
-
|
|
32336
|
-
|
|
32337
|
-
|
|
32338
|
-
|
|
32339
|
-
|
|
32340
|
-
|
|
29851
|
+
}, t2;
|
|
29852
|
+
}), Te = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
|
|
29853
|
+
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.429"
|
|
29854
|
+
d="M24 1.714v44.572M1.714 24h44.572" />
|
|
29855
|
+
</svg>`, Ie = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32.5 23.5" fill="currentColor">
|
|
29856
|
+
<path d="M11.2 23.5 0 12.3l2.15-2.15 9.05 9.05L30.4 0l2.15 2.15z" />
|
|
29857
|
+
</svg>`, Me = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
29858
|
+
<path d="M4.5 8.25L12 15.75L19.5 8.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
29859
|
+
</svg>
|
|
29860
|
+
`, Ne = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
29861
|
+
<path d="M15.75 19.5L8.25 12L15.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
29862
|
+
</svg>
|
|
29863
|
+
`, je = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
29864
|
+
<path d="M8.25 19.5L15.75 12L8.25 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
29865
|
+
</svg>`, Oe = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
29866
|
+
<path d="M19.5 15.75L12 8.25L4.5 15.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
29867
|
+
</svg>
|
|
29868
|
+
`, Be = `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16">
|
|
29869
|
+
<path d="M6,5h4c1.7,0,2-1.3,2-3c1.1,0,2,0.9,2,2v10c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V4c0-1.1,0.9-2,2-2C4,3.7,4.3,5,6,5z M6,2V1
|
|
29870
|
+
c0-0.6,0.5-1,1-1h2c0.5,0,1,0.4,1,1v1.3C10,2.9,9.6,3,9,3H7C6.4,3,6,2.6,6,2z" />
|
|
29871
|
+
</svg>`, De = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
|
|
29872
|
+
<path stroke="currentColor" d="m12.5 1.5-11 11m0-11 11 11" />
|
|
29873
|
+
</svg>`, Pe = `<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
|
|
29874
|
+
<path
|
|
29875
|
+
d="M9.557,7.243A.456.456,0,0,0,9.1,6.991C9.023,7,8.951,7,8.877,7A4,4,0,0,1,5.546.781.5.5,0,0,0,5.564.256.476.476,0,0,0,5.1,0,5,5,0,1,0,9.539,7.767.5.5,0,0,0,9.557,7.243Z"
|
|
29876
|
+
fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
29877
|
+
</svg>`, ze = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
|
|
29878
|
+
<path
|
|
29879
|
+
d="M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" />
|
|
29880
|
+
</svg>`, Re = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 9">
|
|
29881
|
+
<g fill="none" fill-rule="evenodd" transform="translate(.67 .67)">
|
|
29882
|
+
<rect transform="rotate(180 4 4)" />
|
|
29883
|
+
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width=".5"
|
|
29884
|
+
d="M2.85 1.73h3.4v3.4m0-3.4L1.74 6.24" />
|
|
29885
|
+
</g>
|
|
29886
|
+
</svg>`, He = `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 1024 1024">
|
|
29887
|
+
<path
|
|
29888
|
+
d="M512 0a512 512 0 0 0-162 998c26 4 35-11 35-25l-1-95c-128 23-161-32-172-60-6-15-31-61-52-73-18-10-44-33-1-33 40-1 69 37 78 52 46 78 120 56 149 43 5-33 18-56 33-69-114-13-234-56-234-253 0-56 20-101 53-137-5-13-23-65 5-136 0 0 43-13 141 53a487 487 0 0 1 256 0c98-66 141-53 141-53 28 71 10 123 5 136 33 36 53 81 53 137 0 197-120 240-234 253 18 16 35 47 35 95l-1 140c0 14 9 30 35 25A512 512 0 0 0 512 0z" />
|
|
29889
|
+
</svg>`, $e = `<svg
|
|
29890
|
+
height="24"
|
|
29891
|
+
viewBox="0 0 24 24"
|
|
29892
|
+
width="24"
|
|
29893
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
29894
|
+
<path
|
|
29895
|
+
d="M24 12a1 1 0 0 0 -1 -1h-3.91a0.51 0.51 0 0 1 -0.49 -0.4 6.83 6.83 0 0 0 -0.94 -2.28 0.5 0.5 0 0 1 0.06 -0.63l2.77 -2.76a1 1 0 1 0 -1.42 -1.42l-2.76 2.77a0.5 0.5 0 0 1 -0.63 0.06 6.83 6.83 0 0 0 -2.28 -0.94 0.5 0.5 0 0 1 -0.4 -0.49V1a1 1 0 0 0 -2 0v3.91a0.51 0.51 0 0 1 -0.4 0.49 6.83 6.83 0 0 0 -2.28 0.94 0.5 0.5 0 0 1 -0.63 -0.06L4.93 3.51a1 1 0 0 0 -1.42 1.42l2.77 2.76a0.5 0.5 0 0 1 0.06 0.63 6.83 6.83 0 0 0 -0.94 2.28 0.5 0.5 0 0 1 -0.49 0.4H1a1 1 0 0 0 0 2h3.91a0.51 0.51 0 0 1 0.49 0.4 6.83 6.83 0 0 0 0.94 2.28 0.5 0.5 0 0 1 -0.06 0.63l-2.77 2.76a1 1 0 1 0 1.42 1.42l2.76 -2.77a0.5 0.5 0 0 1 0.63 -0.06 6.83 6.83 0 0 0 2.28 0.94 0.5 0.5 0 0 1 0.4 0.49V23a1 1 0 0 0 2 0v-3.91a0.51 0.51 0 0 1 0.4 -0.49 6.83 6.83 0 0 0 2.28 -0.94 0.5 0.5 0 0 1 0.63 0.06l2.76 2.77a1 1 0 1 0 1.42 -1.42l-2.77 -2.76a0.5 0.5 0 0 1 -0.06 -0.63 6.83 6.83 0 0 0 0.94 -2.28 0.5 0.5 0 0 1 0.49 -0.4H23a1 1 0 0 0 1 -1Zm-8.74 2.5A5.76 5.76 0 0 1 9.5 8.74a5.66 5.66 0 0 1 0.16 -1.31 0.49 0.49 0 0 1 0.34 -0.36 5.36 5.36 0 0 1 1.8 -0.31 5.47 5.47 0 0 1 5.46 5.46 5.36 5.36 0 0 1 -0.31 1.8 0.49 0.49 0 0 1 -0.35 0.32 5.53 5.53 0 0 1 -1.34 0.16Z"
|
|
29896
|
+
fill="currentColor"
|
|
29897
|
+
stroke-width="1"></path>
|
|
29898
|
+
</svg>`, Ge = `<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
|
|
29899
|
+
<path d="M3.500 5.000 A1.500 1.500 0 1 0 6.500 5.000 A1.500 1.500 0 1 0 3.500 5.000 Z" fill="currentColor"
|
|
29900
|
+
stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
29901
|
+
<path d="M5,2.25a.625.625,0,0,1-.625-.625v-1a.625.625,0,0,1,1.25,0v1A.625.625,0,0,1,5,2.25Z" fill="currentColor"
|
|
29902
|
+
stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
29903
|
+
<path d="M6.945,3.055a.623.623,0,0,1,0-.883l.707-.708a.625.625,0,0,1,.884.884l-.708.707A.623.623,0,0,1,6.945,3.055Z"
|
|
29904
|
+
fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
29905
|
+
<path d="M7.75,5a.625.625,0,0,1,.625-.625h1a.625.625,0,0,1,0,1.25h-1A.625.625,0,0,1,7.75,5Z" fill="currentColor"
|
|
29906
|
+
stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
29907
|
+
<path d="M6.945,6.945a.623.623,0,0,1,.883,0l.708.707a.625.625,0,0,1-.884.884l-.707-.708A.623.623,0,0,1,6.945,6.945Z"
|
|
29908
|
+
fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
29909
|
+
<path d="M5,7.75a.625.625,0,0,1,.625.625v1a.625.625,0,0,1-1.25,0v-1A.625.625,0,0,1,5,7.75Z" fill="currentColor"
|
|
29910
|
+
stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
29911
|
+
<path
|
|
29912
|
+
d="M3.055,6.945a.623.623,0,0,1,0,.883l-.707.708a.625.625,0,0,1-.884-.884l.708-.707A.623.623,0,0,1,3.055,6.945Z"
|
|
29913
|
+
fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
29914
|
+
<path d="M2.25,5a.625.625,0,0,1-.625.625h-1a.625.625,0,0,1,0-1.25h1A.625.625,0,0,1,2.25,5Z" fill="currentColor"
|
|
29915
|
+
stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
29916
|
+
<path
|
|
29917
|
+
d="M3.055,3.055a.623.623,0,0,1-.883,0l-.708-.707a.625.625,0,0,1,.884-.884l.707.708A.623.623,0,0,1,3.055,3.055Z"
|
|
29918
|
+
fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
29919
|
+
</svg>`, qe = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 593 593">
|
|
29920
|
+
<path fill="currentColor" fill-rule="evenodd"
|
|
29921
|
+
d="M347 0c6 0 12 5 12 12v134l94-95c5-5 13-5 17 0l72 72c4 4 5 12 0 16v1l-95 94h134c7 0 12 5 12 12v101c0 7-5 12-12 12H447l95 94c4 5 5 13 0 17l-72 72c-4 4-12 5-16 0h-1l-94-95v134c0 7-5 12-12 12H246c-7 0-12-5-12-12v-70c0-22 9-43 24-59l130-130c14-14 14-37 0-51L259 142a84 84 0 0 1-25-59V12c0-7 5-12 12-12h101ZM138 52h1l219 219c14 14 14 37 0 51L139 542c-4 5-12 5-17 0l-71-70c-4-5-5-12 0-17l95-96H12c-7 0-12-5-12-12V246c0-7 5-12 12-12h134l-95-94c-4-5-4-12 0-17l71-71c4-5 12-5 16 0Z" />
|
|
29922
|
+
</svg>`, Ve = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 662 662">
|
|
29923
|
+
<path fill-rule="evenodd" fill="currentColor"
|
|
29924
|
+
d="M331 0a331 331 0 1 1 0 662 331 331 0 0 1 0-662Zm148.5 109 .6.9a187 187 0 1 1-297.6-.9 267 267 0 1 0 297 0Z" />
|
|
29925
|
+
</svg>`, Fe = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 620 620">
|
|
29926
|
+
<path fill="currentColor"
|
|
29927
|
+
d="M-.653 309.29c-.078 82.272 31.848 159.735 89.739 218.178l.283.283c122.379 121.247 319.824 121.184 440.16-.283 119.967-121.1 119.409-316.933-.998-437.339l-.99-.99C468.681 30.845 390.716-1.017 307.893-.67c-82.83.354-160.443 32.994-218.814 91.79C31.209 149.555-.724 227.025-.653 309.29Zm469.271-160.789.778.778c87.9 87.9 88.325 231.005.707 319.33-77.753 78.46-199.786 87.412-288.959 26.862l198.513-198.513-.007 166.361 83.68-.07v-306.22H157.11l-.008 83.6h160.584L121.994 436.323c-59.347-87.689-50.536-208.59 26.51-286.343C236.34 61.294 379.94 60.67 468.61 148.494Z" />
|
|
29928
|
+
</svg>`, Ue = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 642 642" fill="currentColor">
|
|
29929
|
+
<path
|
|
29930
|
+
d="M321 0a321 321 0 1 1 0 642 321 321 0 0 1 0-642Zm51.3 63L321 189.5 269.7 63l1 136.5-95.8-97.2L228 228l-125.7-53.1 97.2 95.8-136.5-1L189.5 321 63 372.3l136.5-1-97.2 95.8 125.7-53-53.1 125.6 95.8-97.2-1 136.5L321 452.5 372.3 579l-1-136.5 95.8 97.2-53-125.7 125.6 53.1-97.2-95.8 136.5 1L452.5 321 579 269.7l-136.5 1 97.2-95.8L414 228l53.1-125.7-95.8 97.2 1-136.5Z" />
|
|
29931
|
+
</svg>`, Ze = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 620 620" fill="currentColor">
|
|
29932
|
+
<path
|
|
29933
|
+
d="M529.2 90.8A310 310 0 1 0 90.8 529.2 310 310 0 0 0 529.2 90.8M122.4 498.2c-54.9-55-15.4-183.5 88.2-287 103.6-103.7 232.1-143.2 287-88.3 54.9 54.8 15.4 183.4-88.3 287-103.5 103.6-232 143.1-286.9 88.3m261.8-262.7A104.7 104.7 0 1 1 236 383.7a104.7 104.7 0 0 1 148.2-148.2" />
|
|
29934
|
+
</svg>`, We = `<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 14 14">
|
|
29935
|
+
<path fill="none" stroke="currentColor" d="M14 3.4H0m14 7.2H0" />
|
|
29936
|
+
</svg>`, Xe = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
|
|
29937
|
+
<path fill="currentColor" fill-rule="evenodd"
|
|
29938
|
+
d="M11.8214 0.0977942C12.1097 -0.00745677 12.4219 -0.0286524 12.7219 0.0367783C13.0248 0.102864 13.3024 0.254542 13.5216 0.47378C13.7408 0.693018 13.8925 0.970598 13.9586 1.27352C14.024 1.57344 14.0028 1.88572 13.8976 2.17395L10.3236 12.8859L10.3234 12.8866C10.2363 13.1501 10.083 13.3868 9.8781 13.574C9.6738 13.7606 9.42509 13.8918 9.15572 13.9549C8.8863 14.0206 8.60441 14.0151 8.33774 13.9389C8.07131 13.8628 7.82926 13.7187 7.63529 13.5209L5.71795 11.6124L3.70389 12.6538C3.54684 12.7351 3.35857 12.7273 3.20874 12.6334C3.05892 12.5395 2.96981 12.3735 2.9744 12.1967L3.05697 9.013L10.1019 3.8956C10.3812 3.69273 10.4432 3.30188 10.2403 3.02261C10.0374 2.74333 9.64659 2.68139 9.36731 2.88425L2.20283 8.08846L0.473125 6.35875L0.473067 6.3587L0.472941 6.35857C0.285618 6.17138 0.147716 5.9406 0.0716193 5.68694C-0.00393616 5.43509 -0.0162115 5.16853 0.0358379 4.91085C0.0879545 4.62934 0.213796 4.36664 0.400577 4.14957C0.588637 3.93101 0.83165 3.76664 1.1045 3.67345L1.10787 3.6723L1.10787 3.67231L11.8214 0.0977942Z"
|
|
29939
|
+
clip-rule="evenodd"></path>
|
|
29940
|
+
</svg>`, Ke = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor">
|
|
29941
|
+
<path fill-rule="evenodd"
|
|
29942
|
+
d="M12.6 11.2h.1l3 3a1 1 0 1 1-1.4 1.5l-3-3a1 1 0 0 1-.1-.1 7 7 0 1 1 1.4-1.4zM7 12A5 5 0 1 0 7 2a5 5 0 0 0 0 10z" />
|
|
29943
|
+
</svg>`, V = /* @__PURE__ */ Object.assign({ "./Add.svg": Te, "./CheckMark.svg": Ie, "./ChevronDown.svg": Me, "./ChevronLeft.svg": Ne, "./ChevronRight.svg": je, "./ChevronUp.svg": Oe, "./Clipboard.svg": Be, "./Close.svg": De, "./DarkMode.svg": Pe, "./Ellipses.svg": ze, "./ExternalLink.svg": Re, "./GitHub.svg": He, "./LightDarkModeToggle.svg": $e, "./LightMode.svg": Ge, "./Logo.svg": qe, "./LogoAPI.svg": Ve, "./LogoClient.svg": Fe, "./LogoMarket.svg": Ue, "./LogoSwagger.svg": Ze, "./Menu.svg": We, "./PaperAirplane.svg": Xe, "./Search.svg": Ke }), Ye = (r2) => {
|
|
29944
|
+
const t2 = `./${r2}.svg`;
|
|
29945
|
+
return V[t2] === void 0 ? (console.warn(`Could not find icon: ${r2}`), "") : V[t2];
|
|
29946
|
+
}, J = /* @__PURE__ */ defineComponent({
|
|
32341
29947
|
__name: "ScalarIcon",
|
|
32342
29948
|
props: {
|
|
32343
29949
|
icon: {},
|
|
32344
29950
|
size: {}
|
|
32345
29951
|
},
|
|
32346
|
-
setup(
|
|
32347
|
-
const
|
|
32348
|
-
const iconProps = cva({
|
|
29952
|
+
setup(r2) {
|
|
29953
|
+
const t2 = r2, e = N({
|
|
32349
29954
|
variants: {
|
|
32350
29955
|
size: {
|
|
32351
29956
|
xs: "h-3 w-3",
|
|
@@ -32359,15 +29964,12 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
32359
29964
|
defaultVariants: {
|
|
32360
29965
|
size: "full"
|
|
32361
29966
|
}
|
|
32362
|
-
});
|
|
32363
|
-
|
|
32364
|
-
|
|
32365
|
-
|
|
32366
|
-
|
|
32367
|
-
|
|
32368
|
-
raw: data.value
|
|
32369
|
-
}, null, 8, ["class", "raw"])) : createCommentVNode("", true);
|
|
32370
|
-
};
|
|
29967
|
+
}), s = computed(() => Ye(t2.icon));
|
|
29968
|
+
return (u, f) => s.value ? (openBlock(), createBlock(unref(Ae), {
|
|
29969
|
+
key: 0,
|
|
29970
|
+
class: normalizeClass(unref(E)("scalar-icon", unref(e)({ size: u.size }))),
|
|
29971
|
+
raw: s.value
|
|
29972
|
+
}, null, 8, ["class", "raw"])) : createCommentVNode("", true);
|
|
32371
29973
|
}
|
|
32372
29974
|
});
|
|
32373
29975
|
const _hoisted_1$f = { class: "table" };
|
|
@@ -32528,7 +30130,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
32528
30130
|
onClick: addHandler
|
|
32529
30131
|
}, [
|
|
32530
30132
|
createElementVNode("i", _hoisted_24, [
|
|
32531
|
-
createVNode(unref(
|
|
30133
|
+
createVNode(unref(J), { icon: "Add" })
|
|
32532
30134
|
]),
|
|
32533
30135
|
createTextVNode(" " + toDisplayString(_ctx.addLabel), 1)
|
|
32534
30136
|
])) : createCommentVNode("", true),
|
|
@@ -32540,7 +30142,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
32540
30142
|
}, [
|
|
32541
30143
|
createTextVNode(" Show More "),
|
|
32542
30144
|
createElementVNode("i", _hoisted_25, [
|
|
32543
|
-
createVNode(unref(
|
|
30145
|
+
createVNode(unref(J), { icon: "ChevronDown" })
|
|
32544
30146
|
])
|
|
32545
30147
|
])) : createCommentVNode("", true)
|
|
32546
30148
|
])
|
|
@@ -32599,7 +30201,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
32599
30201
|
}
|
|
32600
30202
|
};
|
|
32601
30203
|
return (_ctx, _cache) => {
|
|
32602
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
30204
|
+
return openBlock(), createBlock(unref(_sfc_main$j), { title: "Body" }, {
|
|
32603
30205
|
default: withCtx(() => [
|
|
32604
30206
|
_ctx.body && _ctx.body.length === 0 && _ctx.formData && _ctx.formData.length === 0 ? (openBlock(), createElementBlock("span", _hoisted_1$d, "No Body")) : _ctx.formData && _ctx.formData.length > 0 ? (openBlock(), createBlock(unref(_sfc_main$h), {
|
|
32605
30207
|
key: 1,
|
|
@@ -32657,7 +30259,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
|
32657
30259
|
(_a2 = activeRequest2.cookies) == null ? void 0 : _a2.push({ name: "", value: "", enabled: true });
|
|
32658
30260
|
}
|
|
32659
30261
|
return (_ctx, _cache) => {
|
|
32660
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
30262
|
+
return openBlock(), createBlock(unref(_sfc_main$j), {
|
|
32661
30263
|
defaultOpen: unref(activeRequest2).cookies && unref(activeRequest2).cookies.length > 0,
|
|
32662
30264
|
title: "Cookies"
|
|
32663
30265
|
}, {
|
|
@@ -32724,7 +30326,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
|
32724
30326
|
(_a2 = activeRequest2.headers) == null ? void 0 : _a2.push({ name: "", value: "", enabled: true });
|
|
32725
30327
|
}
|
|
32726
30328
|
return (_ctx, _cache) => {
|
|
32727
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
30329
|
+
return openBlock(), createBlock(unref(_sfc_main$j), {
|
|
32728
30330
|
defaultOpen: unref(activeRequest2).headers && unref(activeRequest2).headers.length > 0,
|
|
32729
30331
|
title: "Headers"
|
|
32730
30332
|
}, {
|
|
@@ -32791,7 +30393,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
|
|
|
32791
30393
|
(_a2 = activeRequest2.query) == null ? void 0 : _a2.push({ name: "", value: "", enabled: true });
|
|
32792
30394
|
}
|
|
32793
30395
|
return (_ctx, _cache) => {
|
|
32794
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
30396
|
+
return openBlock(), createBlock(unref(_sfc_main$j), {
|
|
32795
30397
|
defaultOpen: unref(activeRequest2).query && unref(activeRequest2).query.length > 0,
|
|
32796
30398
|
title: "Query Parameters"
|
|
32797
30399
|
}, {
|
|
@@ -32859,7 +30461,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
32859
30461
|
(_a2 = activeRequest2.variables) == null ? void 0 : _a2.push({ name: "", value: "", enabled: true });
|
|
32860
30462
|
}
|
|
32861
30463
|
return (_ctx, _cache) => {
|
|
32862
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
30464
|
+
return openBlock(), createBlock(unref(_sfc_main$j), {
|
|
32863
30465
|
defaultOpen: unref(activeRequest2).variables && unref(activeRequest2).variables.length > 0,
|
|
32864
30466
|
title: "Variables"
|
|
32865
30467
|
}, {
|
|
@@ -32920,7 +30522,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
32920
30522
|
createVNode(_sfc_main$b, {
|
|
32921
30523
|
variables: unref(activeRequest2).variables
|
|
32922
30524
|
}, null, 8, ["variables"]),
|
|
32923
|
-
createVNode(_sfc_main$
|
|
30525
|
+
createVNode(_sfc_main$i),
|
|
32924
30526
|
createVNode(_sfc_main$e, {
|
|
32925
30527
|
cookies: unref(activeRequest2).cookies
|
|
32926
30528
|
}, null, 8, ["cookies"]),
|
|
@@ -32984,10 +30586,10 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
|
32984
30586
|
return null;
|
|
32985
30587
|
});
|
|
32986
30588
|
return (_ctx, _cache) => {
|
|
32987
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
30589
|
+
return openBlock(), createBlock(unref(_sfc_main$j), { title: "Body" }, {
|
|
32988
30590
|
default: withCtx(() => [
|
|
32989
30591
|
_ctx.active ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
32990
|
-
codeMirrorLanguage.value ? (openBlock(), createBlock(unref(
|
|
30592
|
+
codeMirrorLanguage.value ? (openBlock(), createBlock(unref(ft), {
|
|
32991
30593
|
key: 0,
|
|
32992
30594
|
class: "custom-scroll",
|
|
32993
30595
|
content: _ctx.data,
|
|
@@ -33106,7 +30708,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
33106
30708
|
}).join("-");
|
|
33107
30709
|
};
|
|
33108
30710
|
return (_ctx, _cache) => {
|
|
33109
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
30711
|
+
return openBlock(), createBlock(unref(_sfc_main$j), { title: "Headers" }, {
|
|
33110
30712
|
default: withCtx(() => [
|
|
33111
30713
|
_ctx.headers.length > 0 ? (openBlock(), createBlock(unref(SimpleTable), { key: 0 }, {
|
|
33112
30714
|
default: withCtx(() => [
|
|
@@ -33286,7 +30888,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
33286
30888
|
headers: responseHeaders.value
|
|
33287
30889
|
}, null, 8, ["active", "data", "headers"]),
|
|
33288
30890
|
createVNode(_sfc_main$3, { headers: responseHeaders.value }, null, 8, ["headers"]),
|
|
33289
|
-
createVNode(unref(_sfc_main$
|
|
30891
|
+
createVNode(unref(_sfc_main$j), { title: "Cookies" }, {
|
|
33290
30892
|
default: withCtx(() => [
|
|
33291
30893
|
withDirectives(createVNode(unref(_sfc_main$g), { items: responseCookies.value }, null, 8, ["items"]), [
|
|
33292
30894
|
[vShow, responseCookies.value.length > 0]
|
|
@@ -33334,8 +30936,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
33334
30936
|
);
|
|
33335
30937
|
return (_ctx, _cache) => {
|
|
33336
30938
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
33337
|
-
createVNode(unref(_sfc_main$
|
|
33338
|
-
createVNode(_sfc_main$
|
|
30939
|
+
createVNode(unref(_sfc_main$r), { id: _ctx.theme }, null, 8, ["id"]),
|
|
30940
|
+
createVNode(_sfc_main$q, {
|
|
33339
30941
|
class: "scalar-api-client",
|
|
33340
30942
|
method: unref(activeRequest2).type ?? "get",
|
|
33341
30943
|
property: "--default-scalar-api-client-color",
|
|
@@ -33411,7 +31013,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
33411
31013
|
});
|
|
33412
31014
|
export {
|
|
33413
31015
|
_sfc_main as ApiClient,
|
|
33414
|
-
_sfc_main$
|
|
31016
|
+
_sfc_main$q as HttpMethod,
|
|
33415
31017
|
concatenateUrlAndPath,
|
|
33416
31018
|
createEmptyAuthState,
|
|
33417
31019
|
createPlaceholderRequest,
|