@scalar/api-client 0.12.13 → 0.12.15

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/dist/index.js +685 -3072
  3. package/package.json +5 -5
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\n/* Use :where to lower specificity to 0 */\n:where(._reset_78zw5_3) {\n /** Add some more things which are normally applied to `html`. */\n font-family: var(--theme-font, var(--default-theme-font));\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -moz-tab-size: 4;\n tab-size: 4;\n\n /** Make sure box-sizing is set properly. */\n*,\n *:before,\n *:after {\n box-sizing: border-box;\n}\n\n /** Smooth text rendering */\n* {\n text-rendering: optimizeLegibility;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n /* prettier-ignore */\nh1, h2, h3, h4, h5, h6, i, p, ol, ul, dl, dd, dt, em, strong, button {\n margin: unset;\n padding: unset;\n color: unset;\n font-weight: unset;\n font-style: unset;\n}\nbutton {\n border: unset;\n background: unset;\n appearance: unset;\n font-family: var(--theme-font, var(--default-theme-font));\n}\ninput::placeholder {\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-family: var(--theme-font, var(--default-theme-font));\n}\ninput:-ms-input-placeholder {\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-family: var(--theme-font, var(--default-theme-font));\n}\ninput::-webkit-input-placeholder {\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-family: var(--theme-font, var(--default-theme-font));\n}\n}\n\n/* Use :where to lower specificity to 0 */\n:where(._scrollbars_1wuqs_3) {\n._cm-scroller_1wuqs_4,\n ._custom-scroll_1wuqs_5 {\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_1wuqs_11 {\n overscroll-behavior: contain;\n}\n@supports (-moz-appearance: none) {\n._cm-scroller_1wuqs_4,\n ._custom-scroll_1wuqs_5 {\n padding-right: 12px;\n}\n}\n._cm-scroller_1wuqs_4:hover,\n ._custom-scroll_1wuqs_5:hover {\n scrollbar-color: var(\n --theme-scrollbar-color,\n var(--default-theme-scrollbar-color)\n )\n transparent;\n}\n._cm-scroller_1wuqs_4:hover::-webkit-scrollbar-thumb,\n ._custom-scroll_1wuqs_5: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_1wuqs_4::-webkit-scrollbar-thumb:active,\n ._custom-scroll_1wuqs_5::-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_1wuqs_4::-webkit-scrollbar-corner,\n ._custom-scroll_1wuqs_5::-webkit-scrollbar-corner {\n background: transparent;\n}\n._cm-scroller_1wuqs_4::-webkit-scrollbar,\n ._custom-scroll_1wuqs_5::-webkit-scrollbar {\n height: 12px;\n width: 12px;\n}\n._cm-scroller_1wuqs_4::-webkit-scrollbar-track,\n ._custom-scroll_1wuqs_5::-webkit-scrollbar-track {\n background: transparent;\n}\n._cm-scroller_1wuqs_4::-webkit-scrollbar-thumb,\n ._custom-scroll_1wuqs_5::-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_1wuqs_4,\n ._custom-scroll_1wuqs_5 {\n padding-right: 12px;\n}\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, defineAsyncComponent, h, vShow, toRaw, withKeys } from "vue";
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$t = /* @__PURE__ */ defineComponent({
37
+ const _sfc_main$r = /* @__PURE__ */ defineComponent({
2307
38
  __name: "ThemeStyles",
2308
39
  props: {
2309
40
  id: {}
@@ -2319,6 +50,24 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
2319
50
  };
2320
51
  }
2321
52
  });
53
+ const reset = "_reset_78zw5_3";
54
+ const style0$1 = {
55
+ reset
56
+ };
57
+ const _export_sfc = (sfc, props) => {
58
+ const target = sfc.__vccOpts || sfc;
59
+ for (const [key, val] of props) {
60
+ target[key] = val;
61
+ }
62
+ return target;
63
+ };
64
+ const scrollbars = "_scrollbars_1wuqs_3";
65
+ const style0 = {
66
+ scrollbars,
67
+ "cm-scroller": "_cm-scroller_1wuqs_4",
68
+ "custom-scroll": "_custom-scroll_1wuqs_5",
69
+ "custom-scroll-self-contain-overflow": "_custom-scroll-self-contain-overflow_1wuqs_11"
70
+ };
2322
71
  const presets = {
2323
72
  alternate: alternateTheme,
2324
73
  default: defaultTheme,
@@ -3262,7 +1011,7 @@ const httpStatusCodes = {
3262
1011
  url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/511"
3263
1012
  }
3264
1013
  };
3265
- const _sfc_main$s = /* @__PURE__ */ defineComponent({
1014
+ const _sfc_main$q = /* @__PURE__ */ defineComponent({
3266
1015
  __name: "HttpMethod",
3267
1016
  props: {
3268
1017
  as: {},
@@ -14500,8 +12249,8 @@ let _supportsTabSize = null;
14500
12249
  function supportsTabSize() {
14501
12250
  var _a2;
14502
12251
  if (_supportsTabSize == null && typeof document != "undefined" && document.body) {
14503
- let styles2 = document.body.style;
14504
- _supportsTabSize = ((_a2 = styles2.tabSize) !== null && _a2 !== void 0 ? _a2 : styles2.MozTabSize) != null;
12252
+ let styles = document.body.style;
12253
+ _supportsTabSize = ((_a2 = styles.tabSize) !== null && _a2 !== void 0 ? _a2 : styles.MozTabSize) != null;
14505
12254
  }
14506
12255
  return _supportsTabSize || false;
14507
12256
  }
@@ -15078,25 +12827,25 @@ const gutterView = /* @__PURE__ */ ViewPlugin.fromClass(class {
15078
12827
  for (let b of line.type) {
15079
12828
  if (b.type == BlockType.Text && first) {
15080
12829
  advanceCursor(lineClasses, classSet, b.from);
15081
- for (let cx2 of contexts)
15082
- cx2.line(this.view, b, classSet);
12830
+ for (let cx of contexts)
12831
+ cx.line(this.view, b, classSet);
15083
12832
  first = false;
15084
12833
  } else if (b.widget) {
15085
- for (let cx2 of contexts)
15086
- cx2.widget(this.view, b);
12834
+ for (let cx of contexts)
12835
+ cx.widget(this.view, b);
15087
12836
  }
15088
12837
  }
15089
12838
  } else if (line.type == BlockType.Text) {
15090
12839
  advanceCursor(lineClasses, classSet, line.from);
15091
- for (let cx2 of contexts)
15092
- cx2.line(this.view, line, classSet);
12840
+ for (let cx of contexts)
12841
+ cx.line(this.view, line, classSet);
15093
12842
  } else if (line.widget) {
15094
- for (let cx2 of contexts)
15095
- cx2.widget(this.view, line);
12843
+ for (let cx of contexts)
12844
+ cx.widget(this.view, line);
15096
12845
  }
15097
12846
  }
15098
- for (let cx2 of contexts)
15099
- cx2.finish();
12847
+ for (let cx of contexts)
12848
+ cx.finish();
15100
12849
  if (detach)
15101
12850
  this.view.scrollDOM.insertBefore(this.dom, after);
15102
12851
  }
@@ -18423,12 +16172,12 @@ class ParseContext {
18423
16172
  let parser2 = {
18424
16173
  parsedPos: from,
18425
16174
  advance() {
18426
- let cx2 = currentContext;
18427
- if (cx2) {
16175
+ let cx = currentContext;
16176
+ if (cx) {
18428
16177
  for (let r2 of ranges)
18429
- cx2.tempSkipped.push(r2);
16178
+ cx.tempSkipped.push(r2);
18430
16179
  if (until)
18431
- cx2.scheduleOn = cx2.scheduleOn ? Promise.all([cx2.scheduleOn, until]) : until;
16180
+ cx.scheduleOn = cx.scheduleOn ? Promise.all([cx.scheduleOn, until]) : until;
18432
16181
  }
18433
16182
  this.parsedPos = to;
18434
16183
  return new Tree(NodeType.none, [], [], to - from);
@@ -18527,15 +16276,15 @@ const parseWorker = /* @__PURE__ */ ViewPlugin.fromClass(class ParseWorker {
18527
16276
  this.scheduleWork();
18528
16277
  }
18529
16278
  update(update) {
18530
- let cx2 = this.view.state.field(Language.state).context;
18531
- if (cx2.updateViewport(update.view.viewport) || this.view.viewport.to > cx2.treeLen)
16279
+ let cx = this.view.state.field(Language.state).context;
16280
+ if (cx.updateViewport(update.view.viewport) || this.view.viewport.to > cx.treeLen)
18532
16281
  this.scheduleWork();
18533
16282
  if (update.docChanged || update.selectionSet) {
18534
16283
  if (this.view.hasFocus)
18535
16284
  this.chunkBudget += 50;
18536
16285
  this.scheduleWork();
18537
16286
  }
18538
- this.checkAsyncSchedule(cx2);
16287
+ this.checkAsyncSchedule(cx);
18539
16288
  }
18540
16289
  scheduleWork() {
18541
16290
  if (this.working)
@@ -18573,11 +16322,11 @@ const parseWorker = /* @__PURE__ */ ViewPlugin.fromClass(class ParseWorker {
18573
16322
  this.scheduleWork();
18574
16323
  this.checkAsyncSchedule(field.context);
18575
16324
  }
18576
- checkAsyncSchedule(cx2) {
18577
- if (cx2.scheduleOn) {
16325
+ checkAsyncSchedule(cx) {
16326
+ if (cx.scheduleOn) {
18578
16327
  this.workScheduled++;
18579
- cx2.scheduleOn.then(() => this.scheduleWork()).catch((err) => logException(this.view.state, err)).then(() => this.workScheduled--);
18580
- cx2.scheduleOn = null;
16328
+ cx.scheduleOn.then(() => this.scheduleWork()).catch((err) => logException(this.view.state, err)).then(() => this.workScheduled--);
16329
+ cx.scheduleOn = null;
18581
16330
  }
18582
16331
  }
18583
16332
  destroy() {
@@ -18735,7 +16484,7 @@ class IndentContext {
18735
16484
  }
18736
16485
  }
18737
16486
  const indentNodeProp = /* @__PURE__ */ new NodeProp();
18738
- function syntaxIndentation(cx2, ast, pos) {
16487
+ function syntaxIndentation(cx, ast, pos) {
18739
16488
  let stack = ast.resolveStack(pos);
18740
16489
  let inner = stack.node.enterUnfinishedNodesBefore(pos);
18741
16490
  if (inner != stack.node) {
@@ -18745,18 +16494,18 @@ function syntaxIndentation(cx2, ast, pos) {
18745
16494
  for (let i = add.length - 1; i >= 0; i--)
18746
16495
  stack = { node: add[i], next: stack };
18747
16496
  }
18748
- return indentFor(stack, cx2, pos);
16497
+ return indentFor(stack, cx, pos);
18749
16498
  }
18750
- function indentFor(stack, cx2, pos) {
16499
+ function indentFor(stack, cx, pos) {
18751
16500
  for (let cur2 = stack; cur2; cur2 = cur2.next) {
18752
16501
  let strategy = indentStrategy(cur2.node);
18753
16502
  if (strategy)
18754
- return strategy(TreeIndentContext.create(cx2, pos, cur2));
16503
+ return strategy(TreeIndentContext.create(cx, pos, cur2));
18755
16504
  }
18756
16505
  return 0;
18757
16506
  }
18758
- function ignoreClosed(cx2) {
18759
- return cx2.pos == cx2.options.simulateBreak && cx2.options.simulateDoubleBreak;
16507
+ function ignoreClosed(cx) {
16508
+ return cx.pos == cx.options.simulateBreak && cx.options.simulateDoubleBreak;
18760
16509
  }
18761
16510
  function indentStrategy(tree) {
18762
16511
  let strategy = tree.type.prop(indentNodeProp);
@@ -18765,7 +16514,7 @@ function indentStrategy(tree) {
18765
16514
  let first = tree.firstChild, close;
18766
16515
  if (first && (close = first.type.prop(NodeProp.closedBy))) {
18767
16516
  let last = tree.lastChild, closed = last && close.indexOf(last.name) > -1;
18768
- return (cx2) => delimitedStrategy(cx2, true, 1, void 0, closed && !ignoreClosed(cx2) ? last.from : void 0);
16517
+ return (cx) => delimitedStrategy(cx, true, 1, void 0, closed && !ignoreClosed(cx) ? last.from : void 0);
18769
16518
  }
18770
16519
  return tree.parent == null ? topIndent : null;
18771
16520
  }
@@ -20313,7 +18062,7 @@ const completionPlugin = /* @__PURE__ */ ViewPlugin.fromClass(class {
20313
18062
  if (update.transactions.some((tr) => tr.effects.some((e) => e.is(startCompletionEffect))))
20314
18063
  this.pendingStart = true;
20315
18064
  let delay = this.pendingStart ? 50 : update.state.facet(completionConfig).activateOnTypingDelay;
20316
- this.debounceUpdate = cState.active.some((a) => a.state == 1 && !this.running.some((q) => q.active.source == a.source)) ? setTimeout(() => this.startUpdate(), delay) : -1;
18065
+ this.debounceUpdate = cState.active.some((a) => a.state == 1 && !this.running.some((q2) => q2.active.source == a.source)) ? setTimeout(() => this.startUpdate(), delay) : -1;
20317
18066
  if (this.composing != 0)
20318
18067
  for (let tr of update.transactions) {
20319
18068
  if (getUserEvent(tr) == "input")
@@ -20347,7 +18096,7 @@ const completionPlugin = /* @__PURE__ */ ViewPlugin.fromClass(class {
20347
18096
  });
20348
18097
  }
20349
18098
  scheduleAccept() {
20350
- if (this.running.every((q) => q.done !== void 0))
18099
+ if (this.running.every((q2) => q2.done !== void 0))
20351
18100
  this.accept();
20352
18101
  else if (this.debounceAccept < 0)
20353
18102
  this.debounceAccept = setTimeout(() => this.accept(), this.view.state.facet(completionConfig).updateSyncTime);
@@ -21024,8 +18773,8 @@ class Stack {
21024
18773
  @internal
21025
18774
  */
21026
18775
  static start(p, state2, pos = 0) {
21027
- let cx2 = p.parser.context;
21028
- return new Stack(p, [], state2, pos, pos, 0, [], 0, cx2 ? new StackContext(cx2, cx2.start) : null, 0, null);
18776
+ let cx = p.parser.context;
18777
+ return new Stack(p, [], state2, pos, pos, 0, [], 0, cx ? new StackContext(cx, cx.start) : null, 0, null);
21029
18778
  }
21030
18779
  /**
21031
18780
  The stack's current [context](#lr.ContextTracker) value, if
@@ -23868,8 +21617,8 @@ const tagStart = new ExternalTokenizer((input, stack) => {
23868
21617
  return input.acceptToken(missingCloseTag, -2);
23869
21618
  if (stack.dialectEnabled(Dialect_noMatch))
23870
21619
  return input.acceptToken(NoMatchStartCloseTag);
23871
- for (let cx2 = stack.context; cx2; cx2 = cx2.parent)
23872
- if (cx2.name == name2)
21620
+ for (let cx = stack.context; cx; cx = cx.parent)
21621
+ if (cx.name == name2)
23873
21622
  return;
23874
21623
  input.acceptToken(MismatchedStartCloseTag);
23875
21624
  } else {
@@ -24431,7 +22180,7 @@ const javascriptLanguage = /* @__PURE__ */ LRLanguage.define({
24431
22180
  return context.baseIndent + (closed ? 0 : isCase ? 1 : 2) * context.unit;
24432
22181
  },
24433
22182
  Block: /* @__PURE__ */ delimitedIndent({ closing: "}" }),
24434
- ArrowFunction: (cx2) => cx2.baseIndent + cx2.unit,
22183
+ ArrowFunction: (cx) => cx.baseIndent + cx.unit,
24435
22184
  "TemplateString BlockComment": () => null,
24436
22185
  "Statement Property": /* @__PURE__ */ continuedIndent({ except: /^{/ }),
24437
22186
  JSXElement(context) {
@@ -25689,21 +23438,21 @@ const yamlLanguage = /* @__PURE__ */ LRLanguage.define({
25689
23438
  parser: /* @__PURE__ */ parser.configure({
25690
23439
  props: [
25691
23440
  /* @__PURE__ */ indentNodeProp.add({
25692
- Stream: (cx2) => {
25693
- for (let before = cx2.node.resolve(cx2.pos, -1); before && before.to >= cx2.pos; before = before.parent) {
23441
+ Stream: (cx) => {
23442
+ for (let before = cx.node.resolve(cx.pos, -1); before && before.to >= cx.pos; before = before.parent) {
25694
23443
  if (before.name == "BlockLiteralContent" && before.from < before.to)
25695
- return cx2.baseIndentFor(before);
23444
+ return cx.baseIndentFor(before);
25696
23445
  if (before.name == "BlockLiteral")
25697
- return cx2.baseIndentFor(before) + cx2.unit;
23446
+ return cx.baseIndentFor(before) + cx.unit;
25698
23447
  if (before.name == "BlockSequence" || before.name == "BlockMapping")
25699
- return cx2.column(before.from, 1);
23448
+ return cx.column(before.from, 1);
25700
23449
  if (before.name == "QuotedLiteral")
25701
23450
  return null;
25702
23451
  if (before.name == "Literal") {
25703
- let col = cx2.column(before.from, 1);
25704
- if (col == cx2.lineIndent(before.from, 1))
23452
+ let col = cx.column(before.from, 1);
23453
+ if (col == cx.lineIndent(before.from, 1))
25705
23454
  return col;
25706
- if (before.to > cx2.pos)
23455
+ if (before.to > cx.pos)
25707
23456
  return null;
25708
23457
  }
25709
23458
  }
@@ -25730,7 +23479,7 @@ var createTheme = (_ref) => {
25730
23479
  var {
25731
23480
  theme: theme2,
25732
23481
  settings = {},
25733
- styles: styles2 = []
23482
+ styles = []
25734
23483
  } = _ref;
25735
23484
  var themeOptions = {
25736
23485
  ".cm-gutters": {}
@@ -25794,7 +23543,7 @@ var createTheme = (_ref) => {
25794
23543
  var themeExtension = EditorView.theme(themeOptions, {
25795
23544
  dark: theme2 === "dark"
25796
23545
  });
25797
- var highlightStyle = HighlightStyle.define(styles2);
23546
+ var highlightStyle = HighlightStyle.define(styles);
25798
23547
  var extension = [themeExtension, syntaxHighlighting(highlightStyle)];
25799
23548
  return extension;
25800
23549
  };
@@ -26135,7 +23884,7 @@ function getCodeMirrorExtensions({
26135
23884
  }
26136
23885
  return extensions;
26137
23886
  }
26138
- const _sfc_main$r = /* @__PURE__ */ defineComponent({
23887
+ const _sfc_main$p = /* @__PURE__ */ defineComponent({
26139
23888
  __name: "CodeMirror",
26140
23889
  props: {
26141
23890
  content: {},
@@ -26172,16 +23921,9 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
26172
23921
  };
26173
23922
  }
26174
23923
  });
26175
- const _export_sfc = (sfc, props) => {
26176
- const target = sfc.__vccOpts || sfc;
26177
- for (const [key, val] of props) {
26178
- target[key] = val;
26179
- }
26180
- return target;
26181
- };
26182
- const CodeMirror = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-9f50a430"]]);
23924
+ const CodeMirror = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-9f50a430"]]);
26183
23925
  const _hoisted_1$m = { class: "scalar-modal-layout modal-layout" };
26184
- const _sfc_main$q = /* @__PURE__ */ defineComponent({
23926
+ const _sfc_main$o = /* @__PURE__ */ defineComponent({
26185
23927
  __name: "FlowModal",
26186
23928
  props: {
26187
23929
  state: {},
@@ -26236,7 +23978,7 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
26236
23978
  };
26237
23979
  }
26238
23980
  });
26239
- const FlowModal = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-a06b8e92"]]);
23981
+ const FlowModal = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-a06b8e92"]]);
26240
23982
  const useModal = () => reactive({
26241
23983
  open: false,
26242
23984
  show() {
@@ -26517,7 +24259,7 @@ async function sendRequest(request, proxyUrl) {
26517
24259
  const _hoisted_1$l = { class: "navtable-item-40 navtable-item-request" };
26518
24260
  const _hoisted_2$f = { class: "navtable-item-40 navtable-item-response" };
26519
24261
  const _hoisted_3$a = { class: "navtable-item-20 navtable-item-time" };
26520
- const _sfc_main$p = /* @__PURE__ */ defineComponent({
24262
+ const _sfc_main$n = /* @__PURE__ */ defineComponent({
26521
24263
  __name: "RequestHistoryItem",
26522
24264
  props: {
26523
24265
  history: {}
@@ -26564,14 +24306,14 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
26564
24306
  };
26565
24307
  }
26566
24308
  });
26567
- const RequestHistoryItem = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-dd49a57f"]]);
24309
+ const RequestHistoryItem = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-dd49a57f"]]);
26568
24310
  const _hoisted_1$k = { class: "navigation-content-item" };
26569
24311
  const _hoisted_2$e = { class: "navtable" };
26570
24312
  const _hoisted_3$9 = { class: "navtable-table" };
26571
24313
  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
24314
  const _hoisted_5$6 = { class: "navtable-radios" };
26573
24315
  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$o = /* @__PURE__ */ defineComponent({
24316
+ const _sfc_main$m = /* @__PURE__ */ defineComponent({
26575
24317
  __name: "RequestHistory",
26576
24318
  emits: ["toggle"],
26577
24319
  setup(__props) {
@@ -26599,7 +24341,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
26599
24341
  const _hoisted_1$j = { class: "request-method-select" };
26600
24342
  const _hoisted_2$d = ["disabled", "value"];
26601
24343
  const _hoisted_3$8 = ["value"];
26602
- const _sfc_main$n = /* @__PURE__ */ defineComponent({
24344
+ const _sfc_main$l = /* @__PURE__ */ defineComponent({
26603
24345
  __name: "RequestMethodSelect",
26604
24346
  props: {
26605
24347
  requestMethod: {},
@@ -26644,7 +24386,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
26644
24386
  };
26645
24387
  }
26646
24388
  });
26647
- const RequestMethodSelect = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-8e2122cd"]]);
24389
+ const RequestMethodSelect = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-8e2122cd"]]);
26648
24390
  const _withScopeId = (n) => (pushScopeId("data-v-75df9114"), n = n(), popScopeId(), n);
26649
24391
  const _hoisted_1$i = {
26650
24392
  key: 0,
@@ -26704,7 +24446,7 @@ const _hoisted_10$2 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createE
26704
24446
  })
26705
24447
  ])
26706
24448
  ], -1));
26707
- const _sfc_main$m = /* @__PURE__ */ defineComponent({
24449
+ const _sfc_main$k = /* @__PURE__ */ defineComponent({
26708
24450
  __name: "AddressBar",
26709
24451
  props: {
26710
24452
  proxyUrl: {}
@@ -26808,7 +24550,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
26808
24550
  variant: "history"
26809
24551
  }, {
26810
24552
  default: withCtx(() => [
26811
- createVNode(_sfc_main$o, {
24553
+ createVNode(_sfc_main$m, {
26812
24554
  showHistory: showHistory.value,
26813
24555
  onToggle: _cache[1] || (_cache[1] = ($event) => showHistory.value = !showHistory.value)
26814
24556
  }, null, 8, ["showHistory"])
@@ -26830,7 +24572,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
26830
24572
  };
26831
24573
  }
26832
24574
  });
26833
- const AddressBar = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-75df9114"]]);
24575
+ const AddressBar = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-75df9114"]]);
26834
24576
  const _hoisted_1$h = /* @__PURE__ */ createElementVNode("svg", {
26835
24577
  class: "scalar-api-client__toggle__icon",
26836
24578
  height: "10",
@@ -26850,7 +24592,7 @@ const _hoisted_3$6 = {
26850
24592
  class: "scalar-api-client__item__options"
26851
24593
  };
26852
24594
  const _hoisted_4$5 = { class: "scalar-api-client__item__content" };
26853
- const _sfc_main$l = /* @__PURE__ */ defineComponent({
24595
+ const _sfc_main$j = /* @__PURE__ */ defineComponent({
26854
24596
  __name: "CollapsibleSection",
26855
24597
  props: {
26856
24598
  title: {},
@@ -26970,7 +24712,7 @@ const _hoisted_35 = /* @__PURE__ */ createElementVNode("label", { for: "Username
26970
24712
  const _hoisted_36 = { class: "check" };
26971
24713
  const _hoisted_37 = /* @__PURE__ */ createElementVNode("span", { class: "checkmark" }, null, -1);
26972
24714
  const _hoisted_38 = /* @__PURE__ */ createElementVNode("p", null, "Enabled", -1);
26973
- const _sfc_main$k = /* @__PURE__ */ defineComponent({
24715
+ const _sfc_main$i = /* @__PURE__ */ defineComponent({
26974
24716
  __name: "RequestAuth",
26975
24717
  setup(__props) {
26976
24718
  const store = useRequestStore();
@@ -27006,7 +24748,7 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
27006
24748
  }
27007
24749
  ];
27008
24750
  return (_ctx, _cache) => {
27009
- return openBlock(), createBlock(unref(_sfc_main$l), { title: "Authentication" }, {
24751
+ return openBlock(), createBlock(unref(_sfc_main$j), { title: "Authentication" }, {
27010
24752
  options: withCtx(() => [
27011
24753
  createElementVNode("div", null, [
27012
24754
  createElementVNode("span", null, [
@@ -29825,56 +27567,6 @@ function mergeConfigProperties(baseObject, mergeObject) {
29825
27567
  function extendTailwindMerge(configExtension, ...createConfig) {
29826
27568
  return typeof configExtension === "function" ? createTailwindMerge(getDefaultConfig, configExtension, ...createConfig) : createTailwindMerge(() => mergeConfigs(getDefaultConfig(), configExtension), ...createConfig);
29827
27569
  }
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
27570
  var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
29879
27571
  function getDefaultExportFromCjs(x) {
29880
27572
  return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
@@ -31334,42 +29026,88 @@ var prism = { exports: {} };
31334
29026
  })();
31335
29027
  })(prism);
31336
29028
  var prismExports = prism.exports;
31337
- const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31338
- (function(Prism2) {
31339
- var envVars = "\\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";
31340
- var commandAfterHeredoc = {
29029
+ const q = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
29030
+ const R = "scalar-component", fe = extendTailwindMerge({
29031
+ extend: {
29032
+ classGroups: {
29033
+ // Add the scalar class prefix as a custom class to be deduped by tailwind-merge
29034
+ [R]: [R]
29035
+ }
29036
+ }
29037
+ }), { cva: N, cx: E, compose: gt } = defineConfig({
29038
+ hooks: {
29039
+ onComplete: (r2) => `${fe(r2, R)}`
29040
+ }
29041
+ });
29042
+ const Y = {
29043
+ solid: [
29044
+ "scalar-button-solid",
29045
+ "bg-back-btn-1 text-fore-btn-1 shadow-sm active:bg-back-btn-1 active:shadow-none hocus:bg-hover-btn-1"
29046
+ ],
29047
+ outlined: [
29048
+ "scalar-button-outlined",
29049
+ "active:bg-btn-1 border border-solid border-border bg-transparent text-fore-1 hocus:bg-back-2"
29050
+ ],
29051
+ ghost: [
29052
+ "scalar-button-ghost",
29053
+ "bg-transparent text-fore-3 active:text-fore-2 hocus:text-fore-2"
29054
+ ],
29055
+ danger: [
29056
+ "scalar-button-danger",
29057
+ "bg-error text-white active:brightness-90 hocus:brightness-90"
29058
+ ]
29059
+ };
29060
+ N({
29061
+ base: "scalar-button row cursor-pointer items-center justify-center rounded font-medium",
29062
+ variants: {
29063
+ disabled: {
29064
+ true: "bg-background-2 text-color-3 cursor-not-allowed shadow-none"
29065
+ },
29066
+ fullWidth: { true: "w-full" },
29067
+ size: { md: "h-10 px-6 text-sm" },
29068
+ variant: Y
29069
+ },
29070
+ compoundVariants: [
29071
+ {
29072
+ disabled: true,
29073
+ variant: "ghost",
29074
+ class: "bg-transparent text-ghost"
29075
+ }
29076
+ ]
29077
+ });
29078
+ (function(r2) {
29079
+ 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
29080
  pattern: /(^(["']?)\w+\2)[ \t]+\S.*/,
31342
29081
  lookbehind: true,
31343
29082
  alias: "punctuation",
31344
29083
  // this looks reasonably well in all themes
31345
29084
  inside: null
31346
29085
  // see below
31347
- };
31348
- var insideString = {
31349
- "bash": commandAfterHeredoc,
31350
- "environment": {
31351
- pattern: RegExp("\\$" + envVars),
29086
+ }, s = {
29087
+ bash: e,
29088
+ environment: {
29089
+ pattern: RegExp("\\$" + t2),
31352
29090
  alias: "constant"
31353
29091
  },
31354
- "variable": [
29092
+ variable: [
31355
29093
  // [0]: Arithmetic Environment
31356
29094
  {
31357
29095
  pattern: /\$?\(\([\s\S]+?\)\)/,
31358
29096
  greedy: true,
31359
29097
  inside: {
31360
29098
  // If there is a $ sign at the beginning highlight $(( and )) as variable
31361
- "variable": [
29099
+ variable: [
31362
29100
  {
31363
29101
  pattern: /(^\$\(\([\s\S]+)\)\)/,
31364
29102
  lookbehind: true
31365
29103
  },
31366
29104
  /^\$\(\(/
31367
29105
  ],
31368
- "number": /\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee]-?\d+)?/,
29106
+ number: /\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee]-?\d+)?/,
31369
29107
  // Operators according to https://www.gnu.org/software/bash/manual/bashref.html#Shell-Arithmetic
31370
- "operator": /--|\+\+|\*\*=?|<<=?|>>=?|&&|\|\||[=!+\-*/%<>^&|]=?|[?~:]/,
29108
+ operator: /--|\+\+|\*\*=?|<<=?|>>=?|&&|\|\||[=!+\-*/%<>^&|]=?|[?~:]/,
31371
29109
  // If there is no $ sign at the beginning highlight (( and )) as punctuation
31372
- "punctuation": /\(\(?|\)\)?|,|;/
29110
+ punctuation: /\(\(?|\)\)?|,|;/
31373
29111
  }
31374
29112
  },
31375
29113
  // [1]: Command Substitution
@@ -31377,7 +29115,7 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31377
29115
  pattern: /\$\((?:\([^)]+\)|[^()])+\)|`[^`]+`/,
31378
29116
  greedy: true,
31379
29117
  inside: {
31380
- "variable": /^\$\(|^`|\)$|`$/
29118
+ variable: /^\$\(|^`|\)$|`$/
31381
29119
  }
31382
29120
  },
31383
29121
  // [2]: Brace expansion
@@ -31385,10 +29123,10 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31385
29123
  pattern: /\$\{[^}]+\}/,
31386
29124
  greedy: true,
31387
29125
  inside: {
31388
- "operator": /:[-=?+]?|[!\/]|##?|%%?|\^\^?|,,?/,
31389
- "punctuation": /[\[\]]/,
31390
- "environment": {
31391
- pattern: RegExp("(\\{)" + envVars),
29126
+ operator: /:[-=?+]?|[!\/]|##?|%%?|\^\^?|,,?/,
29127
+ punctuation: /[\[\]]/,
29128
+ environment: {
29129
+ pattern: RegExp("(\\{)" + t2),
31392
29130
  lookbehind: true,
31393
29131
  alias: "constant"
31394
29132
  }
@@ -31397,14 +29135,14 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31397
29135
  /\$(?:\w+|[#?*!@$])/
31398
29136
  ],
31399
29137
  // Escape sequences from echo and printf's manuals, and escaped quotes.
31400
- "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})/
29138
+ 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
29139
  };
31402
- Prism2.languages.bash = {
31403
- "shebang": {
29140
+ r2.languages.bash = {
29141
+ shebang: {
31404
29142
  pattern: /^#!\s*\/.*/,
31405
29143
  alias: "important"
31406
29144
  },
31407
- "comment": {
29145
+ comment: {
31408
29146
  pattern: /(^|[^"{\\$])#.*/,
31409
29147
  lookbehind: true
31410
29148
  },
@@ -31436,8 +29174,8 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31436
29174
  "assign-left": {
31437
29175
  pattern: /(^|[\s;|&]|[<>]\()\w+(?:\.\w+)*(?=\+?=)/,
31438
29176
  inside: {
31439
- "environment": {
31440
- pattern: RegExp("(^|[\\s;|&]|[<>]\\()" + envVars),
29177
+ environment: {
29178
+ pattern: RegExp("(^|[\\s;|&]|[<>]\\()" + t2),
31441
29179
  lookbehind: true,
31442
29180
  alias: "constant"
31443
29181
  }
@@ -31446,18 +29184,18 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31446
29184
  lookbehind: true
31447
29185
  },
31448
29186
  // Highlight parameter names as variables
31449
- "parameter": {
29187
+ parameter: {
31450
29188
  pattern: /(^|\s)-{1,2}(?:\w+:[+-]?)?\w+(?:\.\w+)*(?=[=\s]|$)/,
31451
29189
  alias: "variable",
31452
29190
  lookbehind: true
31453
29191
  },
31454
- "string": [
29192
+ string: [
31455
29193
  // Support for Here-documents https://en.wikipedia.org/wiki/Here_document
31456
29194
  {
31457
29195
  pattern: /((?:^|[^<])<<-?\s*)(\w+)\s[\s\S]*?(?:\r?\n|\r)\2/,
31458
29196
  lookbehind: true,
31459
29197
  greedy: true,
31460
- inside: insideString
29198
+ inside: s
31461
29199
  },
31462
29200
  // Here-document with quotes around the tag
31463
29201
  // → No expansion (so no “inside”).
@@ -31466,7 +29204,7 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31466
29204
  lookbehind: true,
31467
29205
  greedy: true,
31468
29206
  inside: {
31469
- "bash": commandAfterHeredoc
29207
+ bash: e
31470
29208
  }
31471
29209
  },
31472
29210
  // “Normal” string
@@ -31475,7 +29213,7 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31475
29213
  pattern: /(^|[^\\](?:\\\\)*)"(?:\\[\s\S]|\$\([^)]+\)|\$(?!\()|`[^`]+`|[^"\\`$])*"/,
31476
29214
  lookbehind: true,
31477
29215
  greedy: true,
31478
- inside: insideString
29216
+ inside: s
31479
29217
  },
31480
29218
  {
31481
29219
  // https://www.gnu.org/software/bash/manual/html_node/Single-Quotes.html
@@ -31488,31 +29226,31 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31488
29226
  pattern: /\$'(?:[^'\\]|\\[\s\S])*'/,
31489
29227
  greedy: true,
31490
29228
  inside: {
31491
- "entity": insideString.entity
29229
+ entity: s.entity
31492
29230
  }
31493
29231
  }
31494
29232
  ],
31495
- "environment": {
31496
- pattern: RegExp("\\$?" + envVars),
29233
+ environment: {
29234
+ pattern: RegExp("\\$?" + t2),
31497
29235
  alias: "constant"
31498
29236
  },
31499
- "variable": insideString.variable,
31500
- "function": {
29237
+ variable: s.variable,
29238
+ function: {
31501
29239
  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
29240
  lookbehind: true
31503
29241
  },
31504
- "keyword": {
29242
+ keyword: {
31505
29243
  pattern: /(^|[\s;|&]|[<>]\()(?:case|do|done|elif|else|esac|fi|for|function|if|in|select|then|until|while)(?=$|[)\s;|&])/,
31506
29244
  lookbehind: true
31507
29245
  },
31508
29246
  // https://www.gnu.org/software/bash/manual/html_node/Shell-Builtin-Commands.html
31509
- "builtin": {
29247
+ builtin: {
31510
29248
  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
29249
  lookbehind: true,
31512
29250
  // Alias added to make those easier to distinguish from strings.
31513
29251
  alias: "class-name"
31514
29252
  },
31515
- "boolean": {
29253
+ boolean: {
31516
29254
  pattern: /(^|[\s;|&]|[<>]\()(?:false|true)(?=$|[)\s;|&])/,
31517
29255
  lookbehind: true
31518
29256
  },
@@ -31520,7 +29258,7 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31520
29258
  pattern: /\B&\d\b/,
31521
29259
  alias: "important"
31522
29260
  },
31523
- "operator": {
29261
+ operator: {
31524
29262
  // Lots of redirections here, but not just that.
31525
29263
  pattern: /\d?<>|>\||\+=|=[=~]?|!=?|<<[<-]?|[&\d]?>>|\d[<>]&?|[<>][&=]?|&[>&]?|\|[&|]?/,
31526
29264
  inside: {
@@ -31530,14 +29268,13 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31530
29268
  }
31531
29269
  }
31532
29270
  },
31533
- "punctuation": /\$?\(\(?|\)\)?|\.\.|[{}[\];\\]/,
31534
- "number": {
29271
+ punctuation: /\$?\(\(?|\)\)?|\.\.|[{}[\];\\]/,
29272
+ number: {
31535
29273
  pattern: /(^|\s)(?:[1-9]\d*|0)(?:[.,]\d+)?\b/,
31536
29274
  lookbehind: true
31537
29275
  }
31538
- };
31539
- commandAfterHeredoc.inside = Prism2.languages.bash;
31540
- var toBeCopied = [
29276
+ }, e.inside = r2.languages.bash;
29277
+ for (var u = [
31541
29278
  "comment",
31542
29279
  "function-name",
31543
29280
  "for-or-select",
@@ -31553,177 +29290,172 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31553
29290
  "operator",
31554
29291
  "punctuation",
31555
29292
  "number"
31556
- ];
31557
- var inside2 = insideString.variable[1].inside;
31558
- for (var i = 0; i < toBeCopied.length; i++) {
31559
- inside2[toBeCopied[i]] = Prism2.languages.bash[toBeCopied[i]];
31560
- }
31561
- Prism2.languages.sh = Prism2.languages.bash;
31562
- Prism2.languages.shell = Prism2.languages.bash;
29293
+ ], f = s.variable[1].inside, a = 0; a < u.length; a++)
29294
+ f[u[a]] = r2.languages.bash[u[a]];
29295
+ r2.languages.sh = r2.languages.bash, r2.languages.shell = r2.languages.bash;
31563
29296
  })(Prism);
31564
29297
  Prism.languages.json = {
31565
- "property": {
29298
+ property: {
31566
29299
  pattern: /(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?=\s*:)/,
31567
29300
  lookbehind: true,
31568
29301
  greedy: true
31569
29302
  },
31570
- "string": {
29303
+ string: {
31571
29304
  pattern: /(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?!\s*:)/,
31572
29305
  lookbehind: true,
31573
29306
  greedy: true
31574
29307
  },
31575
- "comment": {
29308
+ comment: {
31576
29309
  pattern: /\/\/.*|\/\*[\s\S]*?(?:\*\/|$)/,
31577
29310
  greedy: true
31578
29311
  },
31579
- "number": /-?\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i,
31580
- "punctuation": /[{}[\],]/,
31581
- "operator": /:/,
31582
- "boolean": /\b(?:false|true)\b/,
31583
- "null": {
29312
+ number: /-?\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i,
29313
+ punctuation: /[{}[\],]/,
29314
+ operator: /:/,
29315
+ boolean: /\b(?:false|true)\b/,
29316
+ null: {
31584
29317
  pattern: /\bnull\b/,
31585
29318
  alias: "keyword"
31586
29319
  }
31587
29320
  };
31588
29321
  Prism.languages.webmanifest = Prism.languages.json;
31589
29322
  (function() {
31590
- if (typeof Prism === "undefined" || typeof document === "undefined") {
29323
+ if (typeof Prism > "u" || typeof document > "u")
31591
29324
  return;
31592
- }
31593
- var lang_dependencies = (
29325
+ var r2 = (
31594
29326
  /*dependencies_placeholder[*/
31595
29327
  {
31596
- "javascript": "clike",
31597
- "actionscript": "javascript",
31598
- "apex": [
29328
+ javascript: "clike",
29329
+ actionscript: "javascript",
29330
+ apex: [
31599
29331
  "clike",
31600
29332
  "sql"
31601
29333
  ],
31602
- "arduino": "cpp",
31603
- "aspnet": [
29334
+ arduino: "cpp",
29335
+ aspnet: [
31604
29336
  "markup",
31605
29337
  "csharp"
31606
29338
  ],
31607
- "birb": "clike",
31608
- "bison": "c",
31609
- "c": "clike",
31610
- "csharp": "clike",
31611
- "cpp": "c",
31612
- "cfscript": "clike",
31613
- "chaiscript": [
29339
+ birb: "clike",
29340
+ bison: "c",
29341
+ c: "clike",
29342
+ csharp: "clike",
29343
+ cpp: "c",
29344
+ cfscript: "clike",
29345
+ chaiscript: [
31614
29346
  "clike",
31615
29347
  "cpp"
31616
29348
  ],
31617
- "cilkc": "c",
31618
- "cilkcpp": "cpp",
31619
- "coffeescript": "javascript",
31620
- "crystal": "ruby",
29349
+ cilkc: "c",
29350
+ cilkcpp: "cpp",
29351
+ coffeescript: "javascript",
29352
+ crystal: "ruby",
31621
29353
  "css-extras": "css",
31622
- "d": "clike",
31623
- "dart": "clike",
31624
- "django": "markup-templating",
31625
- "ejs": [
29354
+ d: "clike",
29355
+ dart: "clike",
29356
+ django: "markup-templating",
29357
+ ejs: [
31626
29358
  "javascript",
31627
29359
  "markup-templating"
31628
29360
  ],
31629
- "etlua": [
29361
+ etlua: [
31630
29362
  "lua",
31631
29363
  "markup-templating"
31632
29364
  ],
31633
- "erb": [
29365
+ erb: [
31634
29366
  "ruby",
31635
29367
  "markup-templating"
31636
29368
  ],
31637
- "fsharp": "clike",
29369
+ fsharp: "clike",
31638
29370
  "firestore-security-rules": "clike",
31639
- "flow": "javascript",
31640
- "ftl": "markup-templating",
31641
- "gml": "clike",
31642
- "glsl": "c",
31643
- "go": "clike",
31644
- "gradle": "clike",
31645
- "groovy": "clike",
31646
- "haml": "ruby",
31647
- "handlebars": "markup-templating",
31648
- "haxe": "clike",
31649
- "hlsl": "c",
31650
- "idris": "haskell",
31651
- "java": "clike",
31652
- "javadoc": [
29371
+ flow: "javascript",
29372
+ ftl: "markup-templating",
29373
+ gml: "clike",
29374
+ glsl: "c",
29375
+ go: "clike",
29376
+ gradle: "clike",
29377
+ groovy: "clike",
29378
+ haml: "ruby",
29379
+ handlebars: "markup-templating",
29380
+ haxe: "clike",
29381
+ hlsl: "c",
29382
+ idris: "haskell",
29383
+ java: "clike",
29384
+ javadoc: [
31653
29385
  "markup",
31654
29386
  "java",
31655
29387
  "javadoclike"
31656
29388
  ],
31657
- "jolie": "clike",
31658
- "jsdoc": [
29389
+ jolie: "clike",
29390
+ jsdoc: [
31659
29391
  "javascript",
31660
29392
  "javadoclike",
31661
29393
  "typescript"
31662
29394
  ],
31663
29395
  "js-extras": "javascript",
31664
- "json5": "json",
31665
- "jsonp": "json",
29396
+ json5: "json",
29397
+ jsonp: "json",
31666
29398
  "js-templates": "javascript",
31667
- "kotlin": "clike",
31668
- "latte": [
29399
+ kotlin: "clike",
29400
+ latte: [
31669
29401
  "clike",
31670
29402
  "markup-templating",
31671
29403
  "php"
31672
29404
  ],
31673
- "less": "css",
31674
- "lilypond": "scheme",
31675
- "liquid": "markup-templating",
31676
- "markdown": "markup",
29405
+ less: "css",
29406
+ lilypond: "scheme",
29407
+ liquid: "markup-templating",
29408
+ markdown: "markup",
31677
29409
  "markup-templating": "markup",
31678
- "mongodb": "javascript",
31679
- "n4js": "javascript",
31680
- "objectivec": "c",
31681
- "opencl": "c",
31682
- "parser": "markup",
31683
- "php": "markup-templating",
31684
- "phpdoc": [
29410
+ mongodb: "javascript",
29411
+ n4js: "javascript",
29412
+ objectivec: "c",
29413
+ opencl: "c",
29414
+ parser: "markup",
29415
+ php: "markup-templating",
29416
+ phpdoc: [
31685
29417
  "php",
31686
29418
  "javadoclike"
31687
29419
  ],
31688
29420
  "php-extras": "php",
31689
- "plsql": "sql",
31690
- "processing": "clike",
31691
- "protobuf": "clike",
31692
- "pug": [
29421
+ plsql: "sql",
29422
+ processing: "clike",
29423
+ protobuf: "clike",
29424
+ pug: [
31693
29425
  "markup",
31694
29426
  "javascript"
31695
29427
  ],
31696
- "purebasic": "clike",
31697
- "purescript": "haskell",
31698
- "qsharp": "clike",
31699
- "qml": "javascript",
31700
- "qore": "clike",
31701
- "racket": "scheme",
31702
- "cshtml": [
29428
+ purebasic: "clike",
29429
+ purescript: "haskell",
29430
+ qsharp: "clike",
29431
+ qml: "javascript",
29432
+ qore: "clike",
29433
+ racket: "scheme",
29434
+ cshtml: [
31703
29435
  "markup",
31704
29436
  "csharp"
31705
29437
  ],
31706
- "jsx": [
29438
+ jsx: [
31707
29439
  "markup",
31708
29440
  "javascript"
31709
29441
  ],
31710
- "tsx": [
29442
+ tsx: [
31711
29443
  "jsx",
31712
29444
  "typescript"
31713
29445
  ],
31714
- "reason": "clike",
31715
- "ruby": "clike",
31716
- "sass": "css",
31717
- "scss": "css",
31718
- "scala": "java",
29446
+ reason: "clike",
29447
+ ruby: "clike",
29448
+ sass: "css",
29449
+ scss: "css",
29450
+ scala: "java",
31719
29451
  "shell-session": "bash",
31720
- "smarty": "markup-templating",
31721
- "solidity": "clike",
31722
- "soy": "markup-templating",
31723
- "sparql": "turtle",
31724
- "sqf": "clike",
31725
- "squirrel": "clike",
31726
- "stata": [
29452
+ smarty: "markup-templating",
29453
+ solidity: "clike",
29454
+ soy: "markup-templating",
29455
+ sparql: "turtle",
29456
+ sqf: "clike",
29457
+ squirrel: "clike",
29458
+ stata: [
31727
29459
  "mata",
31728
29460
  "java",
31729
29461
  "python"
@@ -31736,305 +29468,231 @@ Prism.languages.webmanifest = Prism.languages.json;
31736
29468
  "t4-templating",
31737
29469
  "vbnet"
31738
29470
  ],
31739
- "tap": "yaml",
31740
- "tt2": [
29471
+ tap: "yaml",
29472
+ tt2: [
31741
29473
  "clike",
31742
29474
  "markup-templating"
31743
29475
  ],
31744
- "textile": "markup",
31745
- "twig": "markup-templating",
31746
- "typescript": "javascript",
31747
- "v": "clike",
31748
- "vala": "clike",
31749
- "vbnet": "basic",
31750
- "velocity": "markup",
31751
- "wiki": "markup",
31752
- "xeora": "markup",
29476
+ textile: "markup",
29477
+ twig: "markup-templating",
29478
+ typescript: "javascript",
29479
+ v: "clike",
29480
+ vala: "clike",
29481
+ vbnet: "basic",
29482
+ velocity: "markup",
29483
+ wiki: "markup",
29484
+ xeora: "markup",
31753
29485
  "xml-doc": "markup",
31754
- "xquery": "markup"
29486
+ xquery: "markup"
31755
29487
  }
31756
- );
31757
- var lang_aliases = (
29488
+ ), t2 = (
31758
29489
  /*aliases_placeholder[*/
31759
29490
  {
31760
- "html": "markup",
31761
- "xml": "markup",
31762
- "svg": "markup",
31763
- "mathml": "markup",
31764
- "ssml": "markup",
31765
- "atom": "markup",
31766
- "rss": "markup",
31767
- "js": "javascript",
31768
- "g4": "antlr4",
31769
- "ino": "arduino",
29491
+ html: "markup",
29492
+ xml: "markup",
29493
+ svg: "markup",
29494
+ mathml: "markup",
29495
+ ssml: "markup",
29496
+ atom: "markup",
29497
+ rss: "markup",
29498
+ js: "javascript",
29499
+ g4: "antlr4",
29500
+ ino: "arduino",
31770
29501
  "arm-asm": "armasm",
31771
- "art": "arturo",
31772
- "adoc": "asciidoc",
31773
- "avs": "avisynth",
31774
- "avdl": "avro-idl",
31775
- "gawk": "awk",
31776
- "sh": "bash",
31777
- "shell": "bash",
31778
- "shortcode": "bbcode",
31779
- "rbnf": "bnf",
31780
- "oscript": "bsl",
31781
- "cs": "csharp",
31782
- "dotnet": "csharp",
31783
- "cfc": "cfscript",
29502
+ art: "arturo",
29503
+ adoc: "asciidoc",
29504
+ avs: "avisynth",
29505
+ avdl: "avro-idl",
29506
+ gawk: "awk",
29507
+ sh: "bash",
29508
+ shell: "bash",
29509
+ shortcode: "bbcode",
29510
+ rbnf: "bnf",
29511
+ oscript: "bsl",
29512
+ cs: "csharp",
29513
+ dotnet: "csharp",
29514
+ cfc: "cfscript",
31784
29515
  "cilk-c": "cilkc",
31785
29516
  "cilk-cpp": "cilkcpp",
31786
- "cilk": "cilkcpp",
31787
- "coffee": "coffeescript",
31788
- "conc": "concurnas",
31789
- "jinja2": "django",
29517
+ cilk: "cilkcpp",
29518
+ coffee: "coffeescript",
29519
+ conc: "concurnas",
29520
+ jinja2: "django",
31790
29521
  "dns-zone": "dns-zone-file",
31791
- "dockerfile": "docker",
31792
- "gv": "dot",
31793
- "eta": "ejs",
31794
- "xlsx": "excel-formula",
31795
- "xls": "excel-formula",
31796
- "gamemakerlanguage": "gml",
31797
- "po": "gettext",
31798
- "gni": "gn",
31799
- "ld": "linker-script",
29522
+ dockerfile: "docker",
29523
+ gv: "dot",
29524
+ eta: "ejs",
29525
+ xlsx: "excel-formula",
29526
+ xls: "excel-formula",
29527
+ gamemakerlanguage: "gml",
29528
+ po: "gettext",
29529
+ gni: "gn",
29530
+ ld: "linker-script",
31800
29531
  "go-mod": "go-module",
31801
- "hbs": "handlebars",
31802
- "mustache": "handlebars",
31803
- "hs": "haskell",
31804
- "idr": "idris",
31805
- "gitignore": "ignore",
31806
- "hgignore": "ignore",
31807
- "npmignore": "ignore",
31808
- "webmanifest": "json",
31809
- "kt": "kotlin",
31810
- "kts": "kotlin",
31811
- "kum": "kumir",
31812
- "tex": "latex",
31813
- "context": "latex",
31814
- "ly": "lilypond",
31815
- "emacs": "lisp",
31816
- "elisp": "lisp",
29532
+ hbs: "handlebars",
29533
+ mustache: "handlebars",
29534
+ hs: "haskell",
29535
+ idr: "idris",
29536
+ gitignore: "ignore",
29537
+ hgignore: "ignore",
29538
+ npmignore: "ignore",
29539
+ webmanifest: "json",
29540
+ kt: "kotlin",
29541
+ kts: "kotlin",
29542
+ kum: "kumir",
29543
+ tex: "latex",
29544
+ context: "latex",
29545
+ ly: "lilypond",
29546
+ emacs: "lisp",
29547
+ elisp: "lisp",
31817
29548
  "emacs-lisp": "lisp",
31818
- "md": "markdown",
31819
- "moon": "moonscript",
31820
- "n4jsd": "n4js",
31821
- "nani": "naniscript",
31822
- "objc": "objectivec",
31823
- "qasm": "openqasm",
31824
- "objectpascal": "pascal",
31825
- "px": "pcaxis",
31826
- "pcode": "peoplecode",
31827
- "plantuml": "plant-uml",
31828
- "pq": "powerquery",
31829
- "mscript": "powerquery",
31830
- "pbfasm": "purebasic",
31831
- "purs": "purescript",
31832
- "py": "python",
31833
- "qs": "qsharp",
31834
- "rkt": "racket",
31835
- "razor": "cshtml",
31836
- "rpy": "renpy",
31837
- "res": "rescript",
31838
- "robot": "robotframework",
31839
- "rb": "ruby",
29549
+ md: "markdown",
29550
+ moon: "moonscript",
29551
+ n4jsd: "n4js",
29552
+ nani: "naniscript",
29553
+ objc: "objectivec",
29554
+ qasm: "openqasm",
29555
+ objectpascal: "pascal",
29556
+ px: "pcaxis",
29557
+ pcode: "peoplecode",
29558
+ plantuml: "plant-uml",
29559
+ pq: "powerquery",
29560
+ mscript: "powerquery",
29561
+ pbfasm: "purebasic",
29562
+ purs: "purescript",
29563
+ py: "python",
29564
+ qs: "qsharp",
29565
+ rkt: "racket",
29566
+ razor: "cshtml",
29567
+ rpy: "renpy",
29568
+ res: "rescript",
29569
+ robot: "robotframework",
29570
+ rb: "ruby",
31840
29571
  "sh-session": "shell-session",
31841
- "shellsession": "shell-session",
31842
- "smlnj": "sml",
31843
- "sol": "solidity",
31844
- "sln": "solution-file",
31845
- "rq": "sparql",
31846
- "sclang": "supercollider",
31847
- "t4": "t4-cs",
31848
- "trickle": "tremor",
31849
- "troy": "tremor",
31850
- "trig": "turtle",
31851
- "ts": "typescript",
31852
- "tsconfig": "typoscript",
31853
- "uscript": "unrealscript",
31854
- "uc": "unrealscript",
31855
- "url": "uri",
31856
- "vb": "visual-basic",
31857
- "vba": "visual-basic",
31858
- "webidl": "web-idl",
31859
- "mathematica": "wolfram",
31860
- "nb": "wolfram",
31861
- "wl": "wolfram",
31862
- "xeoracube": "xeora",
31863
- "yml": "yaml"
31864
- }
31865
- );
31866
- var lang_data = {};
31867
- var ignored_language = "none";
31868
- var languages_path = "components/";
31869
- var script = Prism.util.currentScript();
31870
- if (script) {
31871
- var autoloaderFile = /\bplugins\/autoloader\/prism-autoloader\.(?:min\.)?js(?:\?[^\r\n/]*)?$/i;
31872
- var prismFile = /(^|\/)[\w-]+\.(?:min\.)?js(?:\?[^\r\n/]*)?$/i;
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
- }
29572
+ shellsession: "shell-session",
29573
+ smlnj: "sml",
29574
+ sol: "solidity",
29575
+ sln: "solution-file",
29576
+ rq: "sparql",
29577
+ sclang: "supercollider",
29578
+ t4: "t4-cs",
29579
+ trickle: "tremor",
29580
+ troy: "tremor",
29581
+ trig: "turtle",
29582
+ ts: "typescript",
29583
+ tsconfig: "typoscript",
29584
+ uscript: "unrealscript",
29585
+ uc: "unrealscript",
29586
+ url: "uri",
29587
+ vb: "visual-basic",
29588
+ vba: "visual-basic",
29589
+ webidl: "web-idl",
29590
+ mathematica: "wolfram",
29591
+ nb: "wolfram",
29592
+ wl: "wolfram",
29593
+ xeoracube: "xeora",
29594
+ yml: "yaml"
29595
+ }
29596
+ ), e = {}, s = "none", u = "components/", f = Prism.util.currentScript();
29597
+ if (f) {
29598
+ var a = /\bplugins\/autoloader\/prism-autoloader\.(?:min\.)?js(?:\?[^\r\n/]*)?$/i, d = /(^|\/)[\w-]+\.(?:min\.)?js(?:\?[^\r\n/]*)?$/i, n = f.getAttribute("data-autoloader-path");
29599
+ if (n != null)
29600
+ u = n.trim().replace(/\/?$/, "/");
29601
+ else {
29602
+ var c = f.src;
29603
+ a.test(c) ? u = c.replace(a, "components/") : d.test(c) && (u = c.replace(d, "$1components/"));
31883
29604
  }
31884
29605
  }
31885
- var config2 = Prism.plugins.autoloader = {
31886
- languages_path,
29606
+ var h2 = Prism.plugins.autoloader = {
29607
+ languages_path: u,
31887
29608
  use_minified: true,
31888
- loadLanguages
29609
+ loadLanguages: y
31889
29610
  };
31890
- function addScript(src2, success, error) {
31891
- var s = document.createElement("script");
31892
- s.src = src2;
31893
- s.async = true;
31894
- s.onload = function() {
31895
- document.body.removeChild(s);
31896
- success && success();
31897
- };
31898
- s.onerror = function() {
31899
- document.body.removeChild(s);
31900
- error && error();
31901
- };
31902
- document.body.appendChild(s);
31903
- }
31904
- function getDependencies(element) {
31905
- var deps = (element.getAttribute("data-dependencies") || "").trim();
31906
- if (!deps) {
31907
- var parent = element.parentElement;
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) {
29611
+ function i(o, p, v) {
29612
+ var m = document.createElement("script");
29613
+ m.src = o, m.async = true, m.onload = function() {
29614
+ document.body.removeChild(m), p && p();
29615
+ }, m.onerror = function() {
29616
+ document.body.removeChild(m), v && v();
29617
+ }, document.body.appendChild(m);
29618
+ }
29619
+ function b(o) {
29620
+ var p = (o.getAttribute("data-dependencies") || "").trim();
29621
+ if (!p) {
29622
+ var v = o.parentElement;
29623
+ v && v.tagName.toLowerCase() === "pre" && (p = (v.getAttribute("data-dependencies") || "").trim());
29624
+ }
29625
+ return p ? p.split(/\s*,\s*/g) : [];
29626
+ }
29627
+ function l(o) {
29628
+ if (o.indexOf("!") >= 0)
31916
29629
  return false;
31917
- }
31918
- lang = lang_aliases[lang] || lang;
31919
- if (lang in Prism.languages) {
29630
+ if (o = t2[o] || o, o in Prism.languages)
31920
29631
  return true;
31921
- }
31922
- var data = lang_data[lang];
31923
- return data && !data.error && data.loading === false;
29632
+ var p = e[o];
29633
+ return p && !p.error && p.loading === false;
31924
29634
  }
31925
- function getLanguagePath(lang) {
31926
- return config2.languages_path + "prism-" + lang + (config2.use_minified ? ".min" : "") + ".js";
29635
+ function _(o) {
29636
+ return h2.languages_path + "prism-" + o + (h2.use_minified ? ".min" : "") + ".js";
31927
29637
  }
31928
- function loadLanguages(languages, success, error) {
31929
- if (typeof languages === "string") {
31930
- languages = [languages];
31931
- }
31932
- var total = languages.length;
31933
- var completed = 0;
31934
- var failed = false;
31935
- if (total === 0) {
31936
- if (success) {
31937
- setTimeout(success, 0);
31938
- }
29638
+ function y(o, p, v) {
29639
+ typeof o == "string" && (o = [o]);
29640
+ var m = o.length, L = 0, x = false;
29641
+ if (m === 0) {
29642
+ p && setTimeout(p, 0);
31939
29643
  return;
31940
29644
  }
31941
- function successCallback() {
31942
- if (failed) {
31943
- return;
31944
- }
31945
- completed++;
31946
- if (completed === total) {
31947
- success && success(languages);
31948
- }
29645
+ function S2() {
29646
+ x || (L++, L === m && p && p(o));
31949
29647
  }
31950
- languages.forEach(function(lang) {
31951
- loadLanguage(lang, successCallback, function() {
31952
- if (failed) {
31953
- return;
31954
- }
31955
- failed = true;
31956
- error && error(lang);
29648
+ o.forEach(function(G) {
29649
+ Q(G, S2, function() {
29650
+ x || (x = true, v && v(G));
31957
29651
  });
31958
29652
  });
31959
29653
  }
31960
- function loadLanguage(lang, success, error) {
31961
- var force = lang.indexOf("!") >= 0;
31962
- lang = lang.replace("!", "");
31963
- lang = lang_aliases[lang] || lang;
31964
- function load() {
31965
- var data = lang_data[lang];
31966
- if (!data) {
31967
- data = lang_data[lang] = {
31968
- callbacks: []
31969
- };
31970
- }
31971
- data.callbacks.push({
31972
- success,
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();
29654
+ function Q(o, p, v) {
29655
+ var m = o.indexOf("!") >= 0;
29656
+ o = o.replace("!", ""), o = t2[o] || o;
29657
+ function L() {
29658
+ var S2 = e[o];
29659
+ S2 || (S2 = e[o] = {
29660
+ callbacks: []
29661
+ }), S2.callbacks.push({
29662
+ success: p,
29663
+ error: v
29664
+ }), !m && l(o) ? j(o, "success") : !m && S2.error ? j(o, "error") : (m || !S2.loading) && (S2.loading = true, S2.error = false, i(_(o), function() {
29665
+ S2.loading = false, j(o, "success");
29666
+ }, function() {
29667
+ S2.loading = false, S2.error = true, j(o, "error");
29668
+ }));
31997
29669
  }
29670
+ var x = r2[o];
29671
+ x && x.length ? y(x, L, v) : L();
31998
29672
  }
31999
- function languageCallback(lang, type) {
32000
- if (lang_data[lang]) {
32001
- var callbacks = lang_data[lang].callbacks;
32002
- for (var i = 0, l = callbacks.length; i < l; i++) {
32003
- var callback = callbacks[i][type];
32004
- if (callback) {
32005
- setTimeout(callback, 0);
32006
- }
29673
+ function j(o, p) {
29674
+ if (e[o]) {
29675
+ for (var v = e[o].callbacks, m = 0, L = v.length; m < L; m++) {
29676
+ var x = v[m][p];
29677
+ x && setTimeout(x, 0);
32007
29678
  }
32008
- callbacks.length = 0;
29679
+ v.length = 0;
32009
29680
  }
32010
29681
  }
32011
- Prism.hooks.add("complete", function(env) {
32012
- var element = env.element;
32013
- var language2 = env.language;
32014
- if (!element || !language2 || language2 === ignored_language) {
32015
- return;
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);
29682
+ Prism.hooks.add("complete", function(o) {
29683
+ var p = o.element, v = o.language;
29684
+ if (!(!p || !v || v === s)) {
29685
+ var m = b(p);
29686
+ /^diff-./i.test(v) ? (m.push("diff"), m.push(v.substr(5))) : m.push(v), m.every(l) || y(m, function() {
29687
+ Prism.highlightElement(p);
32027
29688
  });
32028
29689
  }
32029
29690
  });
32030
29691
  })();
32031
29692
  (function() {
32032
- if (typeof Prism === "undefined" || typeof document === "undefined") {
29693
+ if (typeof Prism > "u" || typeof document > "u")
32033
29694
  return;
32034
- }
32035
- var PLUGIN_NAME = "line-numbers";
32036
- var NEW_LINE_EXP = /\n(?!$)/g;
32037
- var config2 = Prism.plugins.lineNumbers = {
29695
+ var r2 = "line-numbers", t2 = /\n(?!$)/g, e = Prism.plugins.lineNumbers = {
32038
29696
  /**
32039
29697
  * Get node for provided line number
32040
29698
  *
@@ -32042,24 +29700,16 @@ Prism.languages.webmanifest = Prism.languages.json;
32042
29700
  * @param {number} number line number
32043
29701
  * @returns {Element|undefined}
32044
29702
  */
32045
- getLine: function(element, number2) {
32046
- if (element.tagName !== "PRE" || !element.classList.contains(PLUGIN_NAME)) {
32047
- return;
32048
- }
32049
- var lineNumberRows = element.querySelector(".line-numbers-rows");
32050
- if (!lineNumberRows) {
32051
- return;
32052
- }
32053
- var lineNumberStart = parseInt(element.getAttribute("data-start"), 10) || 1;
32054
- var lineNumberEnd = lineNumberStart + (lineNumberRows.children.length - 1);
32055
- if (number2 < lineNumberStart) {
32056
- number2 = lineNumberStart;
32057
- }
32058
- if (number2 > lineNumberEnd) {
32059
- number2 = lineNumberEnd;
29703
+ getLine: function(a, d) {
29704
+ if (!(a.tagName !== "PRE" || !a.classList.contains(r2))) {
29705
+ var n = a.querySelector(".line-numbers-rows");
29706
+ if (n) {
29707
+ var c = parseInt(a.getAttribute("data-start"), 10) || 1, h2 = c + (n.children.length - 1);
29708
+ d < c && (d = c), d > h2 && (d = h2);
29709
+ var i = d - c;
29710
+ return n.children[i];
29711
+ }
32060
29712
  }
32061
- var lineIndex = number2 - lineNumberStart;
32062
- return lineNumberRows.children[lineIndex];
32063
29713
  },
32064
29714
  /**
32065
29715
  * Resizes the line numbers of the given element.
@@ -32069,8 +29719,8 @@ Prism.languages.webmanifest = Prism.languages.json;
32069
29719
  * @param {HTMLElement} element A `<pre>` element with line numbers.
32070
29720
  * @returns {void}
32071
29721
  */
32072
- resize: function(element) {
32073
- resizeElements([element]);
29722
+ resize: function(a) {
29723
+ s([a]);
32074
29724
  },
32075
29725
  /**
32076
29726
  * Whether the plugin can assume that the units font sizes and margins are not depended on the size of
@@ -32084,134 +29734,72 @@ Prism.languages.webmanifest = Prism.languages.json;
32084
29734
  */
32085
29735
  assumeViewportIndependence: true
32086
29736
  };
32087
- function resizeElements(elements) {
32088
- elements = elements.filter(function(e) {
32089
- var codeStyles = getStyles(e);
32090
- var whiteSpace = codeStyles["white-space"];
32091
- return whiteSpace === "pre-wrap" || whiteSpace === "pre-line";
32092
- });
32093
- if (elements.length == 0) {
32094
- return;
32095
- }
32096
- var infos = elements.map(function(element) {
32097
- var codeElement = element.querySelector("code");
32098
- var lineNumbersWrapper = element.querySelector(".line-numbers-rows");
32099
- if (!codeElement || !lineNumbersWrapper) {
32100
- return void 0;
32101
- }
32102
- var lineNumberSizer = element.querySelector(".line-numbers-sizer");
32103
- var codeLines = codeElement.textContent.split(NEW_LINE_EXP);
32104
- if (!lineNumberSizer) {
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;
29737
+ function s(a) {
29738
+ if (a = a.filter(function(n) {
29739
+ var c = u(n), h2 = c["white-space"];
29740
+ return h2 === "pre-wrap" || h2 === "pre-line";
29741
+ }), a.length != 0) {
29742
+ var d = a.map(function(n) {
29743
+ var c = n.querySelector("code"), h2 = n.querySelector(".line-numbers-rows");
29744
+ if (!(!c || !h2)) {
29745
+ var i = n.querySelector(".line-numbers-sizer"), b = c.textContent.split(t2);
29746
+ i || (i = document.createElement("span"), i.className = "line-numbers-sizer", c.appendChild(i)), i.innerHTML = "0", i.style.display = "block";
29747
+ var l = i.getBoundingClientRect().height;
29748
+ return i.innerHTML = "", {
29749
+ element: n,
29750
+ lines: b,
29751
+ lineHeights: [],
29752
+ oneLinerHeight: l,
29753
+ sizer: i
29754
+ };
32144
29755
  }
32145
- }
32146
- });
32147
- infos.forEach(function(info) {
32148
- var lineNumberSizer = info.sizer;
32149
- var wrapper = info.element.querySelector(".line-numbers-rows");
32150
- lineNumberSizer.style.display = "none";
32151
- lineNumberSizer.innerHTML = "";
32152
- info.lineHeights.forEach(function(height, lineNumber) {
32153
- wrapper.children[lineNumber].style.height = height + "px";
29756
+ }).filter(Boolean);
29757
+ d.forEach(function(n) {
29758
+ var c = n.sizer, h2 = n.lines, i = n.lineHeights, b = n.oneLinerHeight;
29759
+ i[h2.length - 1] = void 0, h2.forEach(function(l, _) {
29760
+ if (l && l.length > 1) {
29761
+ var y = c.appendChild(document.createElement("span"));
29762
+ y.style.display = "block", y.textContent = l;
29763
+ } else
29764
+ i[_] = b;
29765
+ });
29766
+ }), d.forEach(function(n) {
29767
+ for (var c = n.sizer, h2 = n.lineHeights, i = 0, b = 0; b < h2.length; b++)
29768
+ h2[b] === void 0 && (h2[b] = c.children[i++].getBoundingClientRect().height);
29769
+ }), d.forEach(function(n) {
29770
+ var c = n.sizer, h2 = n.element.querySelector(".line-numbers-rows");
29771
+ c.style.display = "none", c.innerHTML = "", n.lineHeights.forEach(function(i, b) {
29772
+ h2.children[b].style.height = i + "px";
29773
+ });
32154
29774
  });
32155
- });
32156
- }
32157
- function getStyles(element) {
32158
- if (!element) {
32159
- return null;
32160
29775
  }
32161
- return window.getComputedStyle ? getComputedStyle(element) : element.currentStyle || null;
32162
29776
  }
32163
- var lastWidth = void 0;
29777
+ function u(a) {
29778
+ return a ? window.getComputedStyle ? getComputedStyle(a) : a.currentStyle || null : null;
29779
+ }
29780
+ var f = void 0;
32164
29781
  window.addEventListener("resize", function() {
32165
- if (config2.assumeViewportIndependence && lastWidth === window.innerWidth) {
32166
- return;
32167
- }
32168
- lastWidth = window.innerWidth;
32169
- resizeElements(Array.prototype.slice.call(document.querySelectorAll("pre." + PLUGIN_NAME)));
32170
- });
32171
- Prism.hooks.add("complete", function(env) {
32172
- if (!env.code) {
32173
- return;
32174
- }
32175
- var code = (
32176
- /** @type {Element} */
32177
- env.element
32178
- );
32179
- var pre = (
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;
29782
+ e.assumeViewportIndependence && f === window.innerWidth || (f = window.innerWidth, s(Array.prototype.slice.call(document.querySelectorAll("pre." + r2))));
29783
+ }), Prism.hooks.add("complete", function(a) {
29784
+ if (a.code) {
29785
+ var d = (
29786
+ /** @type {Element} */
29787
+ a.element
29788
+ ), n = (
29789
+ /** @type {HTMLElement} */
29790
+ d.parentNode
29791
+ );
29792
+ if (!(!n || !/pre/i.test(n.nodeName)) && !d.querySelector(".line-numbers-rows") && Prism.util.isActive(d, r2)) {
29793
+ d.classList.remove(r2), n.classList.add(r2);
29794
+ var c = a.code.match(t2), h2 = c ? c.length + 1 : 1, i, b = new Array(h2 + 1).join("<span></span>");
29795
+ 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);
29796
+ }
32191
29797
  }
32192
- code.classList.remove(PLUGIN_NAME);
32193
- pre.classList.add(PLUGIN_NAME);
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;
29798
+ }), Prism.hooks.add("line-numbers", function(a) {
29799
+ a.plugins = a.plugins || {}, a.plugins.lineNumbers = true;
32212
29800
  });
32213
29801
  })();
32214
- const _sfc_main$j = /* @__PURE__ */ defineComponent({
29802
+ const ft = /* @__PURE__ */ defineComponent({
32215
29803
  __name: "ScalarCodeBlock",
32216
29804
  props: {
32217
29805
  content: {},
@@ -32219,133 +29807,161 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
32219
29807
  lineNumbers: { type: Boolean, default: false },
32220
29808
  hideCredentials: {}
32221
29809
  },
32222
- setup(__props) {
32223
- const props = __props;
32224
- const { plugins, highlightElement } = prismjs;
32225
- if (props.hideCredentials) {
32226
- prismjs.hooks.add("wrap", function(env) {
32227
- if (!props.hideCredentials) {
32228
- return;
32229
- }
32230
- let showsCredentials = false;
32231
- if (typeof props.hideCredentials === "string") {
32232
- if (env.content.includes(props.hideCredentials)) {
32233
- showsCredentials = true;
32234
- }
32235
- } else if (Array.isArray(props.hideCredentials)) {
32236
- showsCredentials = props.hideCredentials.some(
32237
- (token) => env.content.includes(token)
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;
29810
+ setup(r2) {
29811
+ const t2 = r2, { plugins: e, highlightElement: s } = q;
29812
+ t2.hideCredentials && q.hooks.add("wrap", function(a) {
29813
+ if (!t2.hideCredentials)
29814
+ return;
29815
+ let d = false;
29816
+ typeof t2.hideCredentials == "string" ? a.content.includes(t2.hideCredentials) && (d = true) : Array.isArray(t2.hideCredentials) && (d = t2.hideCredentials.some(
29817
+ (n) => a.content.includes(n)
29818
+ )), d && (a.content = a.content.replace(
29819
+ /<span class="credentials">.*?<\/span>/g,
29820
+ (n) => n.replace(/<span class="credentials">|<\/span>/g, "")
29821
+ ), a.content = a.content.replace(
29822
+ new RegExp(
29823
+ typeof t2.hideCredentials == "string" ? t2.hideCredentials : t2.hideCredentials.join("|"),
29824
+ "g"
29825
+ ),
29826
+ (n) => `<span class="credentials">${n}</span>`
29827
+ ));
32258
29828
  });
32259
- plugins.autoloader.languages_path = "https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/";
32260
- watch(
32261
- () => [props.lang, props.content],
29829
+ const u = ref(null), f = computed(() => t2.lang === "node" ? "js" : t2.lang);
29830
+ return e.autoloader.languages_path = "https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/", watch(
29831
+ () => [t2.lang, t2.content],
32262
29832
  () => {
32263
- if (el.value)
32264
- nextTick(() => highlightElement(el.value));
32265
- }
32266
- );
32267
- onMounted(() => {
32268
- if (el.value)
32269
- highlightElement(el.value);
32270
- });
32271
- return (_ctx, _cache) => {
32272
- return openBlock(), createElementBlock("pre", {
32273
- class: normalizeClass(["scalar-component scalar-codeblock-pre", {
32274
- "line-numbers": _ctx.lineNumbers
32275
- }])
32276
- }, [
32277
- createElementVNode("code", {
32278
- ref_key: "el",
32279
- ref: el,
32280
- class: normalizeClass(`scalar-codeblock-code lang-${language2.value}`)
32281
- }, toDisplayString(_ctx.content), 3)
32282
- ], 2);
32283
- };
32284
- }
32285
- });
32286
- const attrsToObject = (m) => Object.fromEntries(Array.from(m).map((t2) => [t2.name, t2.value]));
32287
- const getRendererComponent = (Parser2) => ({ raw }) => {
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 = {
29833
+ u.value && nextTick(() => s(u.value));
29834
+ }
29835
+ ), onMounted(() => {
29836
+ u.value && s(u.value);
29837
+ }), (a, d) => (openBlock(), createElementBlock("pre", {
29838
+ class: normalizeClass(["scalar-component scalar-codeblock-pre", {
29839
+ "line-numbers": a.lineNumbers
29840
+ }])
29841
+ }, [
29842
+ createElementVNode("code", {
29843
+ ref_key: "el",
29844
+ ref: u,
29845
+ class: normalizeClass(`scalar-codeblock-code lang-${f.value}`)
29846
+ }, toDisplayString(a.content), 3)
29847
+ ], 2));
29848
+ }
29849
+ }), Ee = (r2) => Object.fromEntries(Array.from(r2).map((t2) => [t2.name, t2.value])), Le = (r2) => ({ raw: t2 }) => {
29850
+ const s = new r2().parseFromString(t2, "image/svg+xml");
29851
+ if (s.getElementsByTagName("parsererror").length)
29852
+ return;
29853
+ const u = s.documentElement, f = Ee(u.attributes), { width: a, height: d, ...n } = f;
29854
+ return h("svg", { ...n, innerHTML: u.innerHTML });
29855
+ }, Ae = defineAsyncComponent(async () => {
29856
+ const r2 = typeof DOMParser > "u" ? (await import("./index-CpJxdgyL.js").then((n) => n.i)).DOMParser : DOMParser, t2 = Le(r2);
29857
+ return t2.props = {
32302
29858
  raw: {
32303
29859
  type: String,
32304
29860
  required: true
32305
29861
  }
32306
- };
32307
- return Renderer;
32308
- });
32309
- const __vite_glob_0_0 = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">\n <path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.429"\n d="M24 1.714v44.572M1.714 24h44.572" />\n</svg>';
32310
- const __vite_glob_0_1 = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32.5 23.5" fill="currentColor">\n <path d="M11.2 23.5 0 12.3l2.15-2.15 9.05 9.05L30.4 0l2.15 2.15z" />\n</svg>';
32311
- const __vite_glob_0_2 = '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M4.5 8.25L12 15.75L19.5 8.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>\n</svg>\n';
32312
- const __vite_glob_0_3 = '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M15.75 19.5L8.25 12L15.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>\n</svg>\n';
32313
- const __vite_glob_0_4 = '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M8.25 19.5L15.75 12L8.25 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>\n</svg>';
32314
- const __vite_glob_0_5 = '<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M19.5 15.75L12 8.25L4.5 15.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>\n</svg>\n';
32315
- const __vite_glob_0_6 = '<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16">\n <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\n 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" />\n</svg>';
32316
- const __vite_glob_0_7 = '<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">\n <path stroke="currentColor" d="m12.5 1.5-11 11m0-11 11 11" />\n</svg>';
32317
- const __vite_glob_0_8 = '<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">\n <path\n 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"\n fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>\n</svg>';
32318
- const __vite_glob_0_9 = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">\n <path\n 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" />\n</svg>';
32319
- const __vite_glob_0_10 = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 9">\n <g fill="none" fill-rule="evenodd" transform="translate(.67 .67)">\n <rect transform="rotate(180 4 4)" />\n <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width=".5"\n d="M2.85 1.73h3.4v3.4m0-3.4L1.74 6.24" />\n </g>\n</svg>';
32320
- const __vite_glob_0_11 = '<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 1024 1024">\n <path\n 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" />\n</svg>';
32321
- const __vite_glob_0_12 = '<svg\n height="24"\n viewBox="0 0 24 24"\n width="24"\n xmlns="http://www.w3.org/2000/svg">\n <path\n 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"\n fill="currentColor"\n stroke-width="1"></path>\n</svg>';
32322
- const __vite_glob_0_13 = '<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">\n <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"\n stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>\n <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"\n stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>\n <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"\n fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>\n <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"\n stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>\n <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"\n fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>\n <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"\n stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>\n <path\n 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"\n fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>\n <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"\n stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>\n <path\n 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"\n fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>\n</svg>';
32323
- const __vite_glob_0_14 = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 593 593">\n <path fill="currentColor" fill-rule="evenodd"\n 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" />\n</svg>';
32324
- const __vite_glob_0_15 = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 662 662">\n <path fill-rule="evenodd" fill="currentColor"\n 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" />\n</svg>';
32325
- const __vite_glob_0_16 = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 620 620">\n <path fill="currentColor"\n 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" />\n</svg>';
32326
- const __vite_glob_0_17 = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 642 642" fill="currentColor">\n <path\n 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" />\n</svg>';
32327
- const __vite_glob_0_18 = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 620 620" fill="currentColor">\n <path\n 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" />\n</svg>';
32328
- const __vite_glob_0_19 = '<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 14 14">\n <path fill="none" stroke="currentColor" d="M14 3.4H0m14 7.2H0" />\n</svg>';
32329
- const __vite_glob_0_20 = '<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">\n <path fill="currentColor" fill-rule="evenodd"\n 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"\n clip-rule="evenodd"></path>\n</svg>';
32330
- const __vite_glob_0_21 = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor">\n <path fill-rule="evenodd"\n 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" />\n</svg>';
32331
- const icons = /* @__PURE__ */ Object.assign({ "./Add.svg": __vite_glob_0_0, "./CheckMark.svg": __vite_glob_0_1, "./ChevronDown.svg": __vite_glob_0_2, "./ChevronLeft.svg": __vite_glob_0_3, "./ChevronRight.svg": __vite_glob_0_4, "./ChevronUp.svg": __vite_glob_0_5, "./Clipboard.svg": __vite_glob_0_6, "./Close.svg": __vite_glob_0_7, "./DarkMode.svg": __vite_glob_0_8, "./Ellipses.svg": __vite_glob_0_9, "./ExternalLink.svg": __vite_glob_0_10, "./GitHub.svg": __vite_glob_0_11, "./LightDarkModeToggle.svg": __vite_glob_0_12, "./LightMode.svg": __vite_glob_0_13, "./Logo.svg": __vite_glob_0_14, "./LogoAPI.svg": __vite_glob_0_15, "./LogoClient.svg": __vite_glob_0_16, "./LogoMarket.svg": __vite_glob_0_17, "./LogoSwagger.svg": __vite_glob_0_18, "./Menu.svg": __vite_glob_0_19, "./PaperAirplane.svg": __vite_glob_0_20, "./Search.svg": __vite_glob_0_21 });
32332
- const getIcon = (name2) => {
32333
- const filename = `./${name2}.svg`;
32334
- if (icons[filename] === void 0) {
32335
- console.warn(`Could not find icon: ${name2}`);
32336
- return "";
32337
- }
32338
- return icons[filename];
32339
- };
32340
- const _sfc_main$i = /* @__PURE__ */ defineComponent({
29862
+ }, t2;
29863
+ }), Te = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
29864
+ <path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.429"
29865
+ d="M24 1.714v44.572M1.714 24h44.572" />
29866
+ </svg>`, Ie = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32.5 23.5" fill="currentColor">
29867
+ <path d="M11.2 23.5 0 12.3l2.15-2.15 9.05 9.05L30.4 0l2.15 2.15z" />
29868
+ </svg>`, Me = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
29869
+ <path d="M4.5 8.25L12 15.75L19.5 8.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
29870
+ </svg>
29871
+ `, Ne = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
29872
+ <path d="M15.75 19.5L8.25 12L15.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
29873
+ </svg>
29874
+ `, je = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
29875
+ <path d="M8.25 19.5L15.75 12L8.25 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
29876
+ </svg>`, Oe = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
29877
+ <path d="M19.5 15.75L12 8.25L4.5 15.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
29878
+ </svg>
29879
+ `, Be = `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16">
29880
+ <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
29881
+ 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" />
29882
+ </svg>`, De = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
29883
+ <path stroke="currentColor" d="m12.5 1.5-11 11m0-11 11 11" />
29884
+ </svg>`, Pe = `<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
29885
+ <path
29886
+ 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"
29887
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29888
+ </svg>`, ze = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
29889
+ <path
29890
+ 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" />
29891
+ </svg>`, Re = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 9">
29892
+ <g fill="none" fill-rule="evenodd" transform="translate(.67 .67)">
29893
+ <rect transform="rotate(180 4 4)" />
29894
+ <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width=".5"
29895
+ d="M2.85 1.73h3.4v3.4m0-3.4L1.74 6.24" />
29896
+ </g>
29897
+ </svg>`, He = `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 1024 1024">
29898
+ <path
29899
+ 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" />
29900
+ </svg>`, $e = `<svg
29901
+ height="24"
29902
+ viewBox="0 0 24 24"
29903
+ width="24"
29904
+ xmlns="http://www.w3.org/2000/svg">
29905
+ <path
29906
+ 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"
29907
+ fill="currentColor"
29908
+ stroke-width="1"></path>
29909
+ </svg>`, Ge = `<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
29910
+ <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"
29911
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29912
+ <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"
29913
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29914
+ <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"
29915
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29916
+ <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"
29917
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29918
+ <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"
29919
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29920
+ <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"
29921
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29922
+ <path
29923
+ 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"
29924
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29925
+ <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"
29926
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29927
+ <path
29928
+ 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"
29929
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29930
+ </svg>`, qe = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 593 593">
29931
+ <path fill="currentColor" fill-rule="evenodd"
29932
+ 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" />
29933
+ </svg>`, Ve = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 662 662">
29934
+ <path fill-rule="evenodd" fill="currentColor"
29935
+ 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" />
29936
+ </svg>`, Fe = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 620 620">
29937
+ <path fill="currentColor"
29938
+ 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" />
29939
+ </svg>`, Ue = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 642 642" fill="currentColor">
29940
+ <path
29941
+ 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" />
29942
+ </svg>`, Ze = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 620 620" fill="currentColor">
29943
+ <path
29944
+ 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" />
29945
+ </svg>`, We = `<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 14 14">
29946
+ <path fill="none" stroke="currentColor" d="M14 3.4H0m14 7.2H0" />
29947
+ </svg>`, Xe = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
29948
+ <path fill="currentColor" fill-rule="evenodd"
29949
+ 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"
29950
+ clip-rule="evenodd"></path>
29951
+ </svg>`, Ke = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor">
29952
+ <path fill-rule="evenodd"
29953
+ 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" />
29954
+ </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) => {
29955
+ const t2 = `./${r2}.svg`;
29956
+ return V[t2] === void 0 ? (console.warn(`Could not find icon: ${r2}`), "") : V[t2];
29957
+ }, J = /* @__PURE__ */ defineComponent({
32341
29958
  __name: "ScalarIcon",
32342
29959
  props: {
32343
29960
  icon: {},
32344
29961
  size: {}
32345
29962
  },
32346
- setup(__props) {
32347
- const props = __props;
32348
- const iconProps = cva({
29963
+ setup(r2) {
29964
+ const t2 = r2, e = N({
32349
29965
  variants: {
32350
29966
  size: {
32351
29967
  xs: "h-3 w-3",
@@ -32359,15 +29975,12 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
32359
29975
  defaultVariants: {
32360
29976
  size: "full"
32361
29977
  }
32362
- });
32363
- const data = computed(() => getIcon(props.icon));
32364
- return (_ctx, _cache) => {
32365
- return data.value ? (openBlock(), createBlock(unref(SvgRenderer), {
32366
- key: 0,
32367
- class: normalizeClass(unref(cx)("scalar-icon", unref(iconProps)({ size: _ctx.size }))),
32368
- raw: data.value
32369
- }, null, 8, ["class", "raw"])) : createCommentVNode("", true);
32370
- };
29978
+ }), s = computed(() => Ye(t2.icon));
29979
+ return (u, f) => s.value ? (openBlock(), createBlock(unref(Ae), {
29980
+ key: 0,
29981
+ class: normalizeClass(unref(E)("scalar-icon", unref(e)({ size: u.size }))),
29982
+ raw: s.value
29983
+ }, null, 8, ["class", "raw"])) : createCommentVNode("", true);
32371
29984
  }
32372
29985
  });
32373
29986
  const _hoisted_1$f = { class: "table" };
@@ -32528,7 +30141,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
32528
30141
  onClick: addHandler
32529
30142
  }, [
32530
30143
  createElementVNode("i", _hoisted_24, [
32531
- createVNode(unref(_sfc_main$i), { icon: "Add" })
30144
+ createVNode(unref(J), { icon: "Add" })
32532
30145
  ]),
32533
30146
  createTextVNode(" " + toDisplayString(_ctx.addLabel), 1)
32534
30147
  ])) : createCommentVNode("", true),
@@ -32540,7 +30153,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
32540
30153
  }, [
32541
30154
  createTextVNode(" Show More "),
32542
30155
  createElementVNode("i", _hoisted_25, [
32543
- createVNode(unref(_sfc_main$i), { icon: "ChevronDown" })
30156
+ createVNode(unref(J), { icon: "ChevronDown" })
32544
30157
  ])
32545
30158
  ])) : createCommentVNode("", true)
32546
30159
  ])
@@ -32599,7 +30212,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
32599
30212
  }
32600
30213
  };
32601
30214
  return (_ctx, _cache) => {
32602
- return openBlock(), createBlock(unref(_sfc_main$l), { title: "Body" }, {
30215
+ return openBlock(), createBlock(unref(_sfc_main$j), { title: "Body" }, {
32603
30216
  default: withCtx(() => [
32604
30217
  _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
30218
  key: 1,
@@ -32657,7 +30270,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
32657
30270
  (_a2 = activeRequest2.cookies) == null ? void 0 : _a2.push({ name: "", value: "", enabled: true });
32658
30271
  }
32659
30272
  return (_ctx, _cache) => {
32660
- return openBlock(), createBlock(unref(_sfc_main$l), {
30273
+ return openBlock(), createBlock(unref(_sfc_main$j), {
32661
30274
  defaultOpen: unref(activeRequest2).cookies && unref(activeRequest2).cookies.length > 0,
32662
30275
  title: "Cookies"
32663
30276
  }, {
@@ -32724,7 +30337,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
32724
30337
  (_a2 = activeRequest2.headers) == null ? void 0 : _a2.push({ name: "", value: "", enabled: true });
32725
30338
  }
32726
30339
  return (_ctx, _cache) => {
32727
- return openBlock(), createBlock(unref(_sfc_main$l), {
30340
+ return openBlock(), createBlock(unref(_sfc_main$j), {
32728
30341
  defaultOpen: unref(activeRequest2).headers && unref(activeRequest2).headers.length > 0,
32729
30342
  title: "Headers"
32730
30343
  }, {
@@ -32791,7 +30404,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
32791
30404
  (_a2 = activeRequest2.query) == null ? void 0 : _a2.push({ name: "", value: "", enabled: true });
32792
30405
  }
32793
30406
  return (_ctx, _cache) => {
32794
- return openBlock(), createBlock(unref(_sfc_main$l), {
30407
+ return openBlock(), createBlock(unref(_sfc_main$j), {
32795
30408
  defaultOpen: unref(activeRequest2).query && unref(activeRequest2).query.length > 0,
32796
30409
  title: "Query Parameters"
32797
30410
  }, {
@@ -32859,7 +30472,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
32859
30472
  (_a2 = activeRequest2.variables) == null ? void 0 : _a2.push({ name: "", value: "", enabled: true });
32860
30473
  }
32861
30474
  return (_ctx, _cache) => {
32862
- return openBlock(), createBlock(unref(_sfc_main$l), {
30475
+ return openBlock(), createBlock(unref(_sfc_main$j), {
32863
30476
  defaultOpen: unref(activeRequest2).variables && unref(activeRequest2).variables.length > 0,
32864
30477
  title: "Variables"
32865
30478
  }, {
@@ -32920,7 +30533,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
32920
30533
  createVNode(_sfc_main$b, {
32921
30534
  variables: unref(activeRequest2).variables
32922
30535
  }, null, 8, ["variables"]),
32923
- createVNode(_sfc_main$k),
30536
+ createVNode(_sfc_main$i),
32924
30537
  createVNode(_sfc_main$e, {
32925
30538
  cookies: unref(activeRequest2).cookies
32926
30539
  }, null, 8, ["cookies"]),
@@ -32984,10 +30597,10 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
32984
30597
  return null;
32985
30598
  });
32986
30599
  return (_ctx, _cache) => {
32987
- return openBlock(), createBlock(unref(_sfc_main$l), { title: "Body" }, {
30600
+ return openBlock(), createBlock(unref(_sfc_main$j), { title: "Body" }, {
32988
30601
  default: withCtx(() => [
32989
30602
  _ctx.active ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
32990
- codeMirrorLanguage.value ? (openBlock(), createBlock(unref(_sfc_main$j), {
30603
+ codeMirrorLanguage.value ? (openBlock(), createBlock(unref(ft), {
32991
30604
  key: 0,
32992
30605
  class: "custom-scroll",
32993
30606
  content: _ctx.data,
@@ -33106,7 +30719,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
33106
30719
  }).join("-");
33107
30720
  };
33108
30721
  return (_ctx, _cache) => {
33109
- return openBlock(), createBlock(unref(_sfc_main$l), { title: "Headers" }, {
30722
+ return openBlock(), createBlock(unref(_sfc_main$j), { title: "Headers" }, {
33110
30723
  default: withCtx(() => [
33111
30724
  _ctx.headers.length > 0 ? (openBlock(), createBlock(unref(SimpleTable), { key: 0 }, {
33112
30725
  default: withCtx(() => [
@@ -33286,7 +30899,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
33286
30899
  headers: responseHeaders.value
33287
30900
  }, null, 8, ["active", "data", "headers"]),
33288
30901
  createVNode(_sfc_main$3, { headers: responseHeaders.value }, null, 8, ["headers"]),
33289
- createVNode(unref(_sfc_main$l), { title: "Cookies" }, {
30902
+ createVNode(unref(_sfc_main$j), { title: "Cookies" }, {
33290
30903
  default: withCtx(() => [
33291
30904
  withDirectives(createVNode(unref(_sfc_main$g), { items: responseCookies.value }, null, 8, ["items"]), [
33292
30905
  [vShow, responseCookies.value.length > 0]
@@ -33334,8 +30947,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
33334
30947
  );
33335
30948
  return (_ctx, _cache) => {
33336
30949
  return openBlock(), createElementBlock(Fragment, null, [
33337
- createVNode(unref(_sfc_main$t), { id: _ctx.theme }, null, 8, ["id"]),
33338
- createVNode(_sfc_main$s, {
30950
+ createVNode(unref(_sfc_main$r), { id: _ctx.theme }, null, 8, ["id"]),
30951
+ createVNode(_sfc_main$q, {
33339
30952
  class: "scalar-api-client",
33340
30953
  method: unref(activeRequest2).type ?? "get",
33341
30954
  property: "--default-scalar-api-client-color",
@@ -33411,7 +31024,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
33411
31024
  });
33412
31025
  export {
33413
31026
  _sfc_main as ApiClient,
33414
- _sfc_main$s as HttpMethod,
31027
+ _sfc_main$q as HttpMethod,
33415
31028
  concatenateUrlAndPath,
33416
31029
  createEmptyAuthState,
33417
31030
  createPlaceholderRequest,