@scalar/api-client 0.12.12 → 0.12.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist/index.js +669 -3023
  3. package/package.json +6 -6
package/dist/index.js CHANGED
@@ -3,2263 +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
- .scalar-modal-layout[data-v-53cbffc0] {
1045
- animation: modal-fade-53cbffc0 0.2s forwards;
1046
- }
1047
- .scalar-modal[data-v-53cbffc0] {
1048
- transform: scale(0.98);
1049
- animation: modal-pop-53cbffc0 0.15s 0.15s forwards;
1050
- }
1051
- @keyframes modal-fade-53cbffc0 {
1052
- from {
1053
- opacity: 0;
1054
- }
1055
- to {
1056
- opacity: 1;
1057
- }
1058
- }
1059
- @keyframes modal-pop-53cbffc0 {
1060
- 0% {
1061
- opacity: 0;
1062
- }
1063
- 100% {
1064
- opacity: 1;
1065
- transform: scale(1);
1066
- }
1067
- }
1068
-
1069
- .scalar-input[data-v-398eaaae]:not(:placeholder-shown),
1070
- .scalar-input-wrapper-focus .scalar-input[data-v-398eaaae] {
1071
- opacity: 1;
1072
- transition: opacity 0.2s ease-in-out 0.15s;
1073
- }
1074
- .scalar-input-wrapper-focus .scalar-input-label[data-v-398eaaae] {
1075
- color: var(--theme-color-1, var(--default-theme-color-1));
1076
- }
1077
- .scalar-input-wrapper-error .scalar-input-label[data-v-398eaaae] {
1078
- color: var(--theme-color-error-color, var(--default-theme-color-red));
1079
- }
1080
- .scalar-input[data-v-398eaaae]::selection {
1081
- color: var(--theme-color-1, var(--default-theme-color-1));
1082
- background: rgba(255, 165, 88, 0.35);
1083
- }
1084
- .scalar-input[data-v-398eaaae]:has(+ .scalar-input-label) {
1085
- opacity: 0;
1086
- }
1087
- .scalar-input[data-v-398eaaae]:not(:placeholder-shown),
1088
- .scalar-input-wrapper-focus .scalar-input[data-v-398eaaae] {
1089
- opacity: 1;
1090
- transition: opacity 0.2s ease-in-out 0.15s;
1091
- }
1092
- .scalar-input[data-v-398eaaae]:-webkit-autofill,
1093
- .scalar-input[data-v-398eaaae]:-webkit-autofill:hover,
1094
- .scalar-input[data-v-398eaaae]:-webkit-autofill:focus,
1095
- .scalar-input[data-v-398eaaae]:-webkit-autofill:active,
1096
- .scalar-input[data-v-398eaaae]:focus-within:-webkit-autofill,
1097
- .scalar-input[data-v-398eaaae]:focus-within:-webkit-autofill:hover,
1098
- .scalar-input[data-v-398eaaae]:focus-within:-webkit-autofill:focus,
1099
- .scalar-input[data-v-398eaaae]:focus-within:-webkit-autofill:active {
1100
- -webkit-box-shadow: 0 0 0px 1000px
1101
- var(--theme-background-1, var(--default-theme-background-1)) inset !important;
1102
- -webkit-text-fill-color: var(--theme-color-1, var(--default-theme-color-1));
1103
- color: var(--theme-color-1, var(--default-theme-color-1));
1104
- border-radius: var(--theme-radius, var(--default-theme-radius));
1105
- }
1106
- .scalar-input-wrapper-focus .scalar-input-label[data-v-398eaaae],
1107
- .scalar-input:not(:placeholder-shown) + .scalar-input-label[data-v-398eaaae] {
1108
- transform: translate3d(0, -20px, 0) scale(0.8);
1109
- transform-origin: top left;
1110
- }
1111
- .scalar-input-wrapper-focus .scalar-input-label[data-v-398eaaae],
1112
- .scalar-input:not(:placeholder-shown) + .scalar-input-label[data-v-398eaaae] {
1113
- transform: translate3d(0, -20px, 0) scale(0.8);
1114
- transform-origin: top left;
1115
- }
1116
- .scalar-input-wrapper-focus:has(button:active) .scalar-input-label[data-v-398eaaae] {
1117
- color: var(--theme-color-3, var(--default-theme-color-3)) !important;
1118
- }
1119
- @tailwind base;
1120
- @tailwind components;
1121
- @tailwind utilities;
1122
-
1123
- /**
1124
- * Custom Reset - copied over from the tailwind reset
1125
- * Auto-magically scoped by postcss (in postcss.config.js)
1126
- *
1127
- * @link https://tailwindcss.com/docs/preflight
1128
- */
1129
- @layer base {
1130
- * {
1131
- box-sizing: border-box;
1132
- border-width: unset;
1133
- border-style: unset;
1134
- border-color: theme('borderColor.DEFAULT', currentColor);
1135
-
1136
- font-family: inherit;
1137
- font-feature-settings: inherit;
1138
- font-variation-settings: inherit;
1139
- font-size: unset;
1140
- font-weight: inherit;
1141
- line-height: inherit;
1142
- color: inherit;
1143
- margin: unset;
1144
- padding: unset;
1145
- }
1146
- }
1147
-
1148
- @layer utilities {
1149
- .row {
1150
- @apply flex flex-row;
1151
- }
1152
- .col {
1153
- @apply flex flex-col;
1154
- }
1155
- }
1156
-
1157
- .table {
1158
- border: 1px solid var(--theme-border-color, var(--default-theme-border-color));
1159
- background: transparent;
1160
- border-radius: var(--theme-radius, var(--default-theme-radius));
1161
- width: 100%;
1162
- }
1163
- .table-row {
1164
- border-bottom: 1px solid
1165
- var(--theme-border-color, var(--default-theme-border-color));
1166
- display: flex;
1167
- position: relative;
1168
- }
1169
- .table-row__add {
1170
- border-radius: 0 0 var(--theme-radius-lg, var(--default-theme-radius-lg))
1171
- var(--theme-radius-lg, var(--default-theme-radius-lg));
1172
- border-bottom: none;
1173
- }
1174
- .table-row.required-parameter .table-row-item:nth-of-type(2):after {
1175
- content: 'Required';
1176
- position: absolute;
1177
- top: 4px;
1178
- right: 0;
1179
- padding: 5px 9px 5px 6px;
1180
- font-weight: var(--theme-semibold, var(--default-theme-semibold));
1181
- font-size: var(--theme-micro, var(--default-theme-micro));
1182
- background: var(--theme-background-2, var(--default-theme-background-2));
1183
- box-shadow: -2px 0 4px
1184
- var(--theme-background-2, var(--default-theme-background-2));
1185
- }
1186
- .table-row.required-parameter
1187
- .table-row-item:nth-of-type(2):focus-within:after {
1188
- display: none;
1189
- }
1190
- .table-row:last-of-type {
1191
- border-bottom: none;
1192
- }
1193
- .table-row__active {
1194
- border-radius: 0 0 var(--theme-radius-lg, var(--default-theme-radius-lg))
1195
- var(--theme-radius-lg, var(--default-theme-radius-lg));
1196
- }
1197
- .table-row-drag {
1198
- width: 20px;
1199
- flex-shrink: 0;
1200
- border-right: 1px solid
1201
- var(--theme-border-color, var(--default-theme-border-color));
1202
- align-items: center;
1203
- justify-content: center;
1204
- display: none;
1205
- }
1206
- .table-row-drag svg {
1207
- width: 6px;
1208
- fill: var(--theme-color-3, var(--default-theme-color-3));
1209
- }
1210
- .table-row-drag .table-row-drag-add {
1211
- width: 8px;
1212
- }
1213
- .table-row-item {
1214
- width: 100%;
1215
- border-right: 1px solid
1216
- var(--theme-border-color, var(--default-theme-border-color));
1217
- position: relative;
1218
- }
1219
- .table-row-item-menu {
1220
- position: absolute;
1221
- right: 6px;
1222
- background: var(--theme-background-2, var(--default-theme-background-2));
1223
- width: 24px;
1224
- height: 24px;
1225
- top: 50%;
1226
- transform: translate3d(0, -50%, 0);
1227
- border-radius: 50%;
1228
- display: flex;
1229
- align-items: center;
1230
- justify-content: center;
1231
- opacity: 0;
1232
- cursor: pointer;
1233
- }
1234
- .table-row-item input:focus + .table-row-item-menu,
1235
- .table-row-item:hover .table-row-item-menu {
1236
- opacity: 1;
1237
- }
1238
- .table-row-item-menu svg {
1239
- height: 12px;
1240
- width: initial;
1241
- fill: var(--theme-color-3, var(--default-theme-color-3));
1242
- }
1243
- .table-row-item-menu:hover svg {
1244
- fill: var(--theme-color-1, var(--default-theme-color-1));
1245
- }
1246
- .table-row-item input {
1247
- border: none;
1248
- appearance: none;
1249
- outline: none;
1250
- padding: 9px;
1251
- width: 100%;
1252
- min-height: 100%;
1253
- color: var(--theme-color-1, var(--default-theme-color-1));
1254
- font-size: var(--theme-micro, var(--default-theme-micro));
1255
- background: transparent;
1256
- font-family: var(--theme-font, var(--default-theme-font));
1257
- }
1258
- .table-row-item input[disabled] {
1259
- background: transparent;
1260
- font-family: var(--theme-font-code, var(--default-theme-font-code));
1261
- }
1262
- .table-row-item input:focus {
1263
- box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));
1264
- }
1265
- .table-row-item label {
1266
- background: transparent;
1267
- text-transform: uppercase;
1268
- display: block;
1269
- padding: 9px;
1270
- font-weight: var(--theme-semibold, var(--default-theme-semibold));
1271
- color: var(--theme-color-2, var(--default-theme-color-2));
1272
- font-size: var(--theme-micro, var(--default-theme-micro));
1273
- }
1274
- .table-row-meta {
1275
- overflow: hidden;
1276
- flex-shrink: 0;
1277
- transition: all 0.15s ease-in-out;
1278
- display: flex;
1279
- align-items: center;
1280
- justify-content: center;
1281
- width: 51px;
1282
- user-select: none;
1283
- }
1284
- .table-row-meta-check {
1285
- width: 18px;
1286
- height: 18px;
1287
- border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
1288
- background: rgba(47, 177, 228, 0.1);
1289
- }
1290
- .table-row-meta svg {
1291
- width: 13px;
1292
- height: 13px;
1293
- margin: 0 1px;
1294
- color: var(--theme-color-3, var(--default-theme-color-3));
1295
- cursor: pointer;
1296
- }
1297
- .table-row-meta svg:hover {
1298
- color: var(--theme-color-2, var(--default-theme-color-2));
1299
- }
1300
- .meta-check {
1301
- display: flex;
1302
- position: relative;
1303
- cursor: pointer;
1304
- align-items: center;
1305
- font-size: var(--theme-micro, var(--default-theme-micro));
1306
- border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
1307
- user-select: none;
1308
- margin: 0 1px;
1309
- transition: all 0.15s ease-in-out;
1310
- }
1311
- .meta-check input {
1312
- position: absolute;
1313
- opacity: 0;
1314
- cursor: pointer;
1315
- height: 0;
1316
- width: 0;
1317
- }
1318
- .meta-checkmark {
1319
- height: 17px;
1320
- width: 17px;
1321
- background: var(--theme-background-3, var(--default-theme-background-3));
1322
- border-radius: 3px;
1323
- display: flex;
1324
- align-items: center;
1325
- justify-content: center;
1326
- position: relative;
1327
- }
1328
- .meta-checkmark:hover {
1329
- background: var(--theme-background-3, var(--default-theme-background-3));
1330
- }
1331
- .meta-check:focus-within .meta-checkmark {
1332
- box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));
1333
- }
1334
- .meta-check .meta-checkmark:after {
1335
- content: '';
1336
- display: none;
1337
- width: 5px;
1338
- height: 8px;
1339
- border: solid var(--theme-color-1, var(--default-theme-color-1));
1340
- border-width: 0 1.5px 1.5px 0;
1341
- transform: rotate(45deg) translate3d(0, -1px, 0);
1342
- }
1343
- .meta-check input:checked ~ .meta-checkmark:after {
1344
- display: block;
1345
- }
1346
- .meta-check input:checked ~ .meta-checkmark:hover {
1347
- background: transparent;
1348
- }
1349
-
1350
- .navtable {
1351
- width: 100%;
1352
- }
1353
- .navtable-follow {
1354
- background-color: black;
1355
- color: white;
1356
- font-size: 9px;
1357
- padding: 6px;
1358
- display: -webkit-box;
1359
- max-width: 250px;
1360
- -webkit-line-clamp: 12;
1361
- border-radius: 3px;
1362
- -webkit-box-orient: vertical;
1363
- overflow: hidden;
1364
- line-height: 1.24;
1365
- transform: translate3d(10px, 0, 0);
1366
- }
1367
- .navtable-follow:after {
1368
- content: '';
1369
- position: absolute;
1370
- bottom: 0;
1371
- width: 100%;
1372
- height: 6px;
1373
- background-color: black;
1374
- }
1375
- .navtable-follow * {
1376
- font-family: var(
1377
- --theme-font-code,
1378
- var(--default-theme-font-code)
1379
- ) !important;
1380
- }
1381
- .navtable-table {
1382
- position: relative;
1383
- display: flex;
1384
- flex-direction: column;
1385
- min-height: 389px;
1386
- border-radius: var(--theme-radius, var(--default-theme-radius));
1387
- border: 1px solid var(--theme-border-color, var(--default-theme-border-color));
1388
- }
1389
- .navtable-radios {
1390
- z-index: 1;
1391
- border-top: 1px solid
1392
- var(--theme-border-color, var(--default-theme-border-color));
1393
- }
1394
- .navtable-item {
1395
- display: flex;
1396
- position: relative;
1397
- color: var(--theme-color-1, var(--default-theme-color-1));
1398
- font-size: var(--theme-micro, var(--default-theme-micro));
1399
- border-top: 1px solid
1400
- var(--theme-border-color, var(--default-theme-border-color));
1401
- font-weight: var(--theme-semibold, var(--default-theme-semibold));
1402
- }
1403
- .navtable-item:first-of-type {
1404
- border-top: none;
1405
- }
1406
- .navtable-item > div {
1407
- word-wrap: break-word;
1408
- }
1409
- .navtable-item > div:not(:first-child) {
1410
- border-left: 1px solid
1411
- var(--theme-border-color, var(--default-theme-border-color));
1412
- }
1413
- .navtable-item-action {
1414
- color: var(--theme-color-2, var(--default-theme-color-2));
1415
- font-size: var(--theme-micro, var(--default-theme-micro));
1416
- font-weight: var(--theme-bold, var(--default-theme-bold));
1417
- background: var(
1418
- --scalar-api-client-bg3,
1419
- var(--default-scalar-api-client-bg3)
1420
- );
1421
- border: none;
1422
- border-radius: 30px;
1423
- appearance: none;
1424
- max-height: 25px;
1425
- margin-left: 12px;
1426
- margin-right: 6px;
1427
- padding: 4px 8px;
1428
- outline: none;
1429
- cursor: pointer;
1430
- opacity: 0;
1431
- transition: opacity 0.15s ease-in-out;
1432
- white-space: nowrap;
1433
- position: relative;
1434
- }
1435
- .navtable-item-action:hover {
1436
- color: var(--theme-color-1, var(--default-theme-color-1));
1437
- background: var(
1438
- --scalar-api-client-gradient,
1439
- var(--default-scalar-api-client-gradient)
1440
- );
1441
- box-shadow: 0 0 0 1px
1442
- var(--theme-border-color, var(--default-theme-border-color));
1443
- }
1444
- .navtable-item-action:focus {
1445
- background: var(--theme-background-2, var(--default-theme-background-2));
1446
- }
1447
- .navtable-item:hover,
1448
- .navtable-item:focus-within .navtable-item-action {
1449
- opacity: 1;
1450
- }
1451
- .navtable-item-add {
1452
- display: flex;
1453
- align-items: center;
1454
- padding: 9px;
1455
- font-weight: var(--theme-bold, var(--default-theme-bold));
1456
- outline: none;
1457
- border: none;
1458
- appearance: none;
1459
- background: transparent;
1460
- color: var(--theme-color-1, var(--default-theme-color-1));
1461
- }
1462
- .navtable-item-add:hover {
1463
- background: var(--theme-background-2, var(--default-theme-background-2));
1464
- cursor: pointer;
1465
- }
1466
- .navtable-item-25 {
1467
- width: 25%;
1468
- font-size: var(--theme-micro, var(--default-theme-micro));
1469
- display: flex;
1470
- align-items: center;
1471
- }
1472
- .navtable-item-33 {
1473
- width: 33.33333%;
1474
- display: flex;
1475
- font-size: var(--theme-micro, var(--default-theme-micro));
1476
- align-items: center;
1477
- }
1478
- .navtable-item-66 {
1479
- width: 66.6666%;
1480
- display: flex;
1481
- font-size: var(--theme-micro, var(--default-theme-micro));
1482
- align-items: center;
1483
- }
1484
- .navtable-item-75 {
1485
- width: 75%;
1486
- display: flex;
1487
- align-items: center;
1488
- }
1489
- .navtable-item-75:focus-within {
1490
- background: var(--theme-background-2, var(--default-theme-background-2));
1491
- }
1492
- .navtable-item-40 {
1493
- width: 40%;
1494
- display: flex;
1495
- align-items: center;
1496
- padding: 9px;
1497
- }
1498
- .navtable-item-20 {
1499
- width: 20%;
1500
- display: flex;
1501
- align-items: center;
1502
- padding: 9px;
1503
- }
1504
- .navtable-item-50 {
1505
- width: 50%;
1506
- display: flex;
1507
- align-items: center;
1508
- }
1509
- .navtable-item-50:focus-within {
1510
- background: var(--theme-background-2, var(--default-theme-background-2));
1511
- }
1512
- .navtable-item p {
1513
- padding: 9px;
1514
- }
1515
- .navtable-item input {
1516
- padding: 12px 6px;
1517
- border: none;
1518
- outline: none;
1519
- appearance: none;
1520
- font-size: var(--theme-micro, var(--default-theme-micro));
1521
- color: var(--theme-color-1, var(--default-theme-color-1));
1522
- background: transparent;
1523
- width: 100%;
1524
- }
1525
- .navtable-item input:focus {
1526
- background: var(--theme-background-2, var(--default-theme-background-2));
1527
- }
1528
- .navtable-item-select {
1529
- position: relative;
1530
- }
1531
- .navtable-item-select select {
1532
- background: transparent;
1533
- outline: none;
1534
- border: none;
1535
- font-size: var(--theme-micro, var(--default-theme-micro));
1536
- -moz-appearance: none;
1537
- -webkit-appearance: none;
1538
- appearance: none;
1539
- width: 100%;
1540
- padding: 12px 6px;
1541
- top: 0;
1542
- position: relative;
1543
- cursor: pointer;
1544
- color: var(--theme-color-2, var(--default-theme-color-2));
1545
- }
1546
- .navtable-item-select svg {
1547
- position: absolute;
1548
- right: 6px;
1549
- color: var(--theme-color-ghost, var(--default-theme-color-ghost));
1550
- width: 6px;
1551
- top: 12px;
1552
- pointer-events: none;
1553
- }
1554
- .navtable-item .option {
1555
- padding: 12px 6px;
1556
- font-size: var(--theme-micro, var(--default-theme-micro));
1557
- color: var(--theme-color-1, var(--default-theme-color-1));
1558
- width: 100%;
1559
- }
1560
- .navtable-item label {
1561
- color: var(--theme-color-3, var(--default-theme-color-3));
1562
- font-size: var(--theme-micro, var(--default-theme-micro));
1563
- font-weight: var(--theme-semibold, var(--default-theme-semibold));
1564
- text-transform: uppercase;
1565
- display: block;
1566
- width: 100%;
1567
- }
1568
- .navtable-item-response {
1569
- padding: 0 9px;
1570
- }
1571
- .navtable-item-response span {
1572
- font-size: var(--theme-micro, var(--default-theme-micro));
1573
- display: flex;
1574
- align-items: center;
1575
- margin-right: 9px;
1576
- min-width: 40px;
1577
- }
1578
- .scalar-api-client__status--1xx:before,
1579
- .scalar-api-client__status--2xx:before,
1580
- .scalar-api-client__status--3xx:before,
1581
- .scalar-api-client__status--4xx:before,
1582
- .scalar-api-client__status--5xx:before,
1583
- .scalar-api-client__status--6xx:before {
1584
- content: '';
1585
- width: 10px;
1586
- height: 10px;
1587
- border-radius: 50%;
1588
- margin-right: 4px;
1589
- background: var(--theme-background-2, var(--default-theme-background-2));
1590
- }
1591
- .scalar-api-client__status--2xx:before {
1592
- background: var(--theme-color-green, var(--default-theme-color-green));
1593
- }
1594
- .scalar-api-client__status--3xx:before {
1595
- background: var(--theme-color-orange, var(--default-theme-color-orange));
1596
- }
1597
- .scalar-api-client__status--4xx:before {
1598
- background: var(--theme-color-red, var(--default-theme-color-red));
1599
- }
1600
- .navtable-item-response span:empty {
1601
- display: none;
1602
- }
1603
- .simpletable.navtable {
1604
- padding: 0;
1605
- }
1606
- .simpletable.navtable .navtable-item-66,
1607
- .simpletable.navtable .navtable-item-33 {
1608
- display: block;
1609
- }
1610
- .simpletable.navtable .navtable-table {
1611
- height: fit-content;
1612
- }
1613
- .meta-delete {
1614
- position: absolute;
1615
- right: -9px;
1616
- background: var(
1617
- --theme-background-3,
1618
- var(--default-theme-background-3)
1619
- ) !important;
1620
- height: 20px;
1621
- width: 20px;
1622
- border: none;
1623
- outline: none;
1624
- border-radius: 50%;
1625
- opacity: 0;
1626
- padding: 5px;
1627
- display: flex;
1628
- align-items: center;
1629
- justify-content: center;
1630
- cursor: pointer;
1631
- }
1632
- .meta-delete svg {
1633
- width: 11px;
1634
- height: 11px;
1635
- color: var(--theme-color-3, var(--default-theme-color-3));
1636
- }
1637
- .meta-delete:hover svg {
1638
- color: var(--theme-color-red, var(--default-theme-color-red));
1639
- }
1640
- .meta-delete:focus svg {
1641
- color: var(--theme-color-1, var(--default-theme-color-1));
1642
- }
1643
- .meta-delete:focus {
1644
- border-color: var(--theme-color-1, var(--default-theme-color-1));
1645
- color: var(--theme-color-1, var(--default-theme-color-1));
1646
- }
1647
- .table-row:hover .meta-delete {
1648
- opacity: 1;
1649
- }
1650
- @media (pointer: coarse) {
1651
- .table-row:hover .meta-delete {
1652
- opacity: 1;
1653
- }
1654
- }
1655
- .meta-actions-item {
1656
- border: none;
1657
- font-weight: var(--theme-semibold, var(--default-theme-semibold));
1658
- appearance: none;
1659
- padding: 9px;
1660
- width: 100%;
1661
- appearance: none;
1662
- outline: none;
1663
- font-size: var(--theme-micro, var(--default-theme-micro));
1664
- font-family: var(--theme-font, var(--default-theme-font));
1665
- color: var(--theme-color-3, var(--default-theme-color-3));
1666
- cursor: pointer;
1667
- display: flex;
1668
- align-items: center;
1669
- gap: 6px;
1670
- }
1671
- .meta-actions {
1672
- width: 100%;
1673
- display: flex;
1674
- justify-content: space-between;
1675
- }
1676
- .meta-actions-item:nth-of-type(2) {
1677
- display: flex;
1678
- justify-content: flex-end;
1679
- }
1680
- .meta-actions-item:nth-of-type(2) i {
1681
- filter: drop-shadow(0 0.125px 0 currentColor)
1682
- drop-shadow(0 -0.125px 0 currentColor);
1683
- }
1684
- .meta-actions-item-icon {
1685
- width: 12px;
1686
- height: 12px;
1687
- }
1688
- .meta-actions-item:hover,
1689
- .meta-actions-item:focus {
1690
- color: var(--theme-color-1, var(--default-theme-color-1));
1691
- }
1692
-
1693
- .scalar-api-client-add {
1694
- color: var(--theme-color-2, var(--default-theme-color-2));
1695
- padding: 6px;
1696
- width: fit-content;
1697
- border-radius: var(--theme-radius, var(--default-theme-radius));
1698
- cursor: pointer;
1699
- font-size: var(--theme-micro, var(--default-theme-micro));
1700
- font-weight: var(--theme-semibold, var(--default-theme-semibold));
1701
- text-decoration: none;
1702
- margin: 0 6px;
1703
- border: none;
1704
- font-family: var(--theme-font);
1705
- appearance: none;
1706
- display: flex;
1707
- align-items: center;
1708
- }
1709
- .scalar-api-client-add svg {
1710
- width: 12px;
1711
- height: 12px;
1712
- margin-right: 6px;
1713
- }
1714
- .scalar-api-client-add:hover {
1715
- color: var(--theme-color-1, var(--default-theme-color-1));
1716
- }
1717
- .scalar-api-client-add:focus-within {
1718
- background: var(--theme-background-3, var(--default-theme-background-3));
1719
- }
1720
-
1721
- .scalar-api-client__main__left {
1722
- width: 50%;
1723
- border-right: 1px solid
1724
- var(--theme-border-color, var(--default-theme-border-color));
1725
- padding: 0 18px 12px 18px;
1726
- }
1727
- @media screen and (max-width: 820px) {
1728
- .scalar-api-client__main__left {
1729
- width: 100%;
1730
- border-right: none;
1731
- padding: 0 12px 12px 12px;
1732
- }
1733
- }
1734
- .scalar-api-client__item__content {
1735
- flex-flow: wrap;
1736
- padding: 3px 9px 9px 9px;
1737
- border-radius: 3px;
1738
- color: var(--theme-color-3, var(--default-theme-color-3));
1739
- font-size: var(--theme-micro, var(--default-theme-micro));
1740
- margin-top: -3px;
1741
- justify-content: space-between;
1742
- overflow: auto;
1743
- }
1744
- .scalar-api-client__item__content .scalar-api-client__codemirror__wrapper {
1745
- width: 100%;
1746
- min-height: 63px;
1747
- }
1748
- .scalar-api-client__item__content .scalar-codeblock-pre,
1749
- .scalar-api-client__item__content .cm-s-default {
1750
- border: 1px solid var(--theme-border-color, var(--default-theme-border-color));
1751
- border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
1752
- }
1753
- .scalar-api-client__item__content .scalar-codeblock-pre,
1754
- .scalar-api-client__item__content .codemirror-container {
1755
- width: 100%;
1756
- max-height: calc(100vh - 300px);
1757
- overflow: auto;
1758
- }
1759
- .scalar-api-client__item__content .cm-scroller {
1760
- border: 1px solid var(--theme-border-color, var(--default-theme-border-color));
1761
- border-radius: 3px;
1762
- }
1763
- .scalar-api-client__item__content .cm-editor {
1764
- outline: none !important;
1765
- }
1766
- .scalar-api-client__item__content .cm-editor .cm-gutters {
1767
- background: transparent;
1768
- }
1769
- .scalar-api-client__item__content .cm-scroll {
1770
- background: transparent;
1771
- }
1772
- .scalar-api-client__item__content .cm-editor * {
1773
- font-size: var(--theme-micro, var(--default-theme-micro));
1774
- }
1775
- .scalar-api-client__item__content .cm-editor .cm-line {
1776
- color: var(--theme-color-1, var(--default-theme-color-1));
1777
- }
1778
- .scalar-api-client__item__content-button {
1779
- appearance: none;
1780
- border: none;
1781
- outline: none;
1782
- font-size: var(--theme-micro, var(--default-theme-micro));
1783
- background: var(
1784
- --scalar-api-client-color,
1785
- var(--default-scalar-api-client-color)
1786
- ) !important;
1787
- text-align: center;
1788
- font-weight: var(--theme-semibold, var(--default-theme-semibold));
1789
- font-family: var(--theme-font, var(--default-theme-font));
1790
- padding: 6px;
1791
- width: fit-content;
1792
- margin: 3px 3px 3px auto;
1793
- text-transform: uppercase;
1794
- border-radius: var(--theme-radius, var(--default-theme-radius));
1795
- color: white;
1796
- cursor: pointer;
1797
- text-align: center !important;
1798
- position: relative;
1799
- }
1800
- .scalar-api-client__item__content-button span {
1801
- position: relative;
1802
- }
1803
- .scalar-api-client__item__content-button:before {
1804
- content: '';
1805
- position: absolute;
1806
- top: 0;
1807
- left: 0;
1808
- width: 100%;
1809
- height: 100%;
1810
- pointer-events: none;
1811
- cursor: pointer;
1812
- border-radius: var(--theme-radius, var(--default-theme-radius));
1813
- background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
1814
- }
1815
- .scalar-api-client__item__content-button:hover:before {
1816
- background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
1817
- }
1818
- .scalar-api-client__item__content__split {
1819
- justify-content: space-between;
1820
- }
1821
- .scalar-collapsible-section-flex {
1822
- width: 100%;
1823
- }
1824
- .input {
1825
- background: transparent;
1826
- position: relative;
1827
- width: 100%;
1828
- text-align: left;
1829
- display: flex;
1830
- box-shadow: 0 1px 0
1831
- var(--theme-border-color, var(--default-theme-border-color));
1832
- }
1833
- .input:focus-within {
1834
- box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1)) !important;
1835
- z-index: 10;
1836
- }
1837
- .input:first-of-type {
1838
- border-radius: var(--theme-radius, var(--default-theme-radius))
1839
- var(--theme-radius, var(--default-theme-radius)) 0 0;
1840
- }
1841
- .input:first-child:last-child {
1842
- border-radius: var(--theme-radius, var(--default-theme-radius));
1843
- }
1844
- .input:last-child {
1845
- box-shadow: none;
1846
- border-radius: 0 0 var(--theme-radius, var(--default-theme-radius))
1847
- var(--theme-radius, var(--default-theme-radius));
1848
- }
1849
- .input__half:first-of-type {
1850
- border-radius: var(--theme-radius, var(--default-theme-radius)) 0 0 0;
1851
- }
1852
- .input__half:nth-of-type(2) {
1853
- border-radius: 0 var(--theme-radius, var(--default-theme-radius)) 0 0;
1854
- }
1855
- .authentication-form {
1856
- box-shadow: 0 0 0 1px
1857
- var(--theme-border-color, var(--default-theme-border-color));
1858
- border-radius: var(--theme-radius, var(--default-theme-radius));
1859
- width: 100%;
1860
- display: flex;
1861
- flex-flow: wrap;
1862
- }
1863
- .input__half {
1864
- width: 50%;
1865
- }
1866
- .input__half + .input__half {
1867
- border-left: 1px solid
1868
- var(--theme-border-color, var(--default-theme-border-color));
1869
- }
1870
- .input__half:focus-within {
1871
- border-color: transparent;
1872
- }
1873
- .input label,
1874
- .input input {
1875
- padding: 9px;
1876
- border: 0;
1877
- outline: none;
1878
- font-size: var(--theme-micro, var(--default-theme-micro));
1879
- color: var(--theme-color-2, var(--default-theme-color-2));
1880
- width: 100%;
1881
- background: transparent;
1882
- appearance: none;
1883
- -webkit-appearance: none;
1884
- left: 0;
1885
- }
1886
- .input label {
1887
- color: var(--theme-color-1, var(--default-theme-color-1));
1888
- width: fit-content;
1889
- padding-right: 0;
1890
- white-space: nowrap;
1891
- cursor: text;
1892
- }
1893
- .input input {
1894
- position: relative;
1895
- z-index: 99;
1896
- }
1897
- .input input:not(:placeholder-shown) + label {
1898
- color: var(--theme-color-2, var(--default-theme-color-2));
1899
- }
1900
- .select {
1901
- background: --theme-background-1;
1902
- border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
1903
- font-size: var(--theme-micro, var(--default-theme-micro));
1904
- border: 1px solid var(--theme-border-color, var(--default-theme-border-color));
1905
- width: 100%;
1906
- position: relative;
1907
- margin-bottom: 6px;
1908
- }
1909
- .select:focus-within {
1910
- background: var(--theme-background-3, var(--default-theme-background-3));
1911
- }
1912
- .select:hover {
1913
- background: var(--theme-background-3, var(--default-theme-background-3));
1914
- }
1915
- .select svg {
1916
- position: absolute;
1917
- right: 9px;
1918
- pointer-events: none;
1919
- color: var(--theme-color-2, var(--default-theme-color-2));
1920
- width: 6px;
1921
- top: 10px;
1922
- }
1923
- .select label {
1924
- display: block;
1925
- font-size: 10px;
1926
- color: var(--theme-color-2, var(--default-theme-color-2));
1927
- position: absolute;
1928
- left: 9px;
1929
- top: 6px;
1930
- }
1931
- .select select {
1932
- background: transparent;
1933
- outline: none;
1934
- border: none;
1935
- -moz-appearance: none;
1936
- -webkit-appearance: none;
1937
- appearance: none;
1938
- font-size: var(--theme-micro, var(--default-theme-micro));
1939
- color: var(--theme-color-1, var(--default-theme-color-1));
1940
- width: 100%;
1941
- padding: 14px 9px 4px 9px;
1942
- top: 0;
1943
- position: relative;
1944
- cursor: pointer;
1945
- }
1946
- .check {
1947
- display: flex;
1948
- position: relative;
1949
- cursor: pointer;
1950
- align-items: center;
1951
- font-size: var(--theme-micro, var(--default-theme-micro));
1952
- padding: 6px 9px;
1953
- border-radius: 0 0 var(--theme-radius, var(--default-theme-radius))
1954
- var(--theme-radius, var(--default-theme-radius));
1955
- user-select: none;
1956
- width: 100%;
1957
- outline: none;
1958
- }
1959
- .check:focus-within {
1960
- box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));
1961
- }
1962
- .checkmark:hover {
1963
- background: var(--theme-background-3, var(--default-theme-background-3));
1964
- }
1965
- .check:focus-within {
1966
- border-color: var(--theme-color-1, var(--default-theme-color-1));
1967
- }
1968
- .check p {
1969
- color: var(--theme-color-3, var(--default-theme-color-3));
1970
- }
1971
- .check input {
1972
- position: absolute;
1973
- opacity: 0;
1974
- cursor: pointer;
1975
- height: 0;
1976
- width: 0;
1977
- }
1978
- .checkmark {
1979
- height: 17px;
1980
- width: 17px;
1981
- background: var(--theme-background-3, var(--default-theme-background-3));
1982
- margin-right: 10px;
1983
- border-radius: 3px;
1984
- display: flex;
1985
- align-items: center;
1986
- justify-content: center;
1987
- position: relative;
1988
- }
1989
- .check input:checked ~ p {
1990
- color: var(--theme-color-1, var(--default-theme-color-1));
1991
- }
1992
- .check .checkmark:after {
1993
- content: '';
1994
- display: none;
1995
- width: 5px;
1996
- height: 8px;
1997
- border: solid var(--theme-color-1, var(--default-theme-color-1));
1998
- border-width: 0 1.5px 1.5px 0;
1999
- transform: rotate(45deg) translate3d(0, -1px, 0);
2000
- }
2001
- .check input:checked ~ .checkmark:after {
2002
- display: block;
2003
- }
2004
- .scalar-api-client__main__scroll-container {
2005
- height: calc(100vh - 320px);
2006
- }
2007
- .scalar-api-client__request-name {
2008
- outline: none;
2009
- border: none;
2010
- appearance: none;
2011
- -webkit-appearance: none;
2012
- color: var(--theme-color-3, var(--default-theme-color-3));
2013
- font-size: var(--theme-small, var(--default-theme-small));
2014
- font-weight: var(--theme-semibold, var(--default-theme-semibold));
2015
- color: var(--theme-color-3, var(--default-theme-color-3));
2016
- width: 100%;
2017
- padding: 0;
2018
- background: transparent;
2019
- font-family: var(--theme-font, var(--default-theme-font));
2020
- }
2021
- .scalar-api-client__request-name::-webkit-input-placeholder {
2022
- font-weight: var(--theme-semibold, var(--default-theme-semibold));
2023
- }
2024
- .scalar-api-client__request-name:-ms-input-placeholder {
2025
- font-weight: var(--theme-semibold, var(--default-theme-semibold));
2026
- }
2027
- .scalar-api-client__request-name::placeholder {
2028
- font-weight: var(--theme-semibold, var(--default-theme-semibold));
2029
- }
2030
-
2031
- a[data-v-ffc7287f] {
2032
- color: var(--theme-color-3, var(--default-theme-color-3));
2033
- text-decoration: underline;
2034
- text-decoration-color: var(
2035
- --theme-border-color,
2036
- var(--default-theme-border-color)
2037
- );
2038
- text-underline-offset: 2px;
2039
- cursor: help;
2040
- }
2041
-
2042
- .simple-cell[data-v-b99d5e90] {
2043
- all: unset;
2044
- display: table-cell;
2045
- border-right: 1px solid
2046
- var(--theme-border-color, var(--default-theme-border-color));
2047
- position: relative;
2048
- padding: 9px !important;
2049
- color: var(--theme-color-1, var(--default-theme-color-1));
2050
- white-space: nowrap;
2051
- }
2052
- .simple-cell a[data-v-b99d5e90] {
2053
- color: var(--theme-color-1, var(--default-theme-color-1)) !important;
2054
- }
2055
- .simple-cell[data-v-b99d5e90]:last-of-type {
2056
- border-right: none;
2057
- }
2058
- .simple-cell.wrap[data-v-b99d5e90] {
2059
- white-space: normal;
2060
- }
2061
- .simple-cell.strong[data-v-b99d5e90] {
2062
- font-weight: var(--theme-semibold, var(--default-theme-semibold));
2063
- }
2064
-
2065
- .simple-header[data-v-6bd3700b] {
2066
- color: var(--theme-color-3, var(--default-theme-color-3));
2067
- font-weight: var(--theme-semibold, var(--default-theme-semibold));
2068
- text-transform: uppercase;
2069
- }
2070
-
2071
- .simple-row[data-v-e7e681a1] {
2072
- all: unset;
2073
- display: table-row;
2074
- box-shadow: 0 -1px var(--theme-border-color, var(--default-theme-border-color));
2075
- }
2076
- .simple-row[data-v-e7e681a1]:first-of-type {
2077
- box-shadow: none;
2078
- }
2079
-
2080
- .simple-table[data-v-8f53a32f] {
2081
- all: unset;
2082
- display: table;
2083
- width: 100%;
2084
- border-spacing: 0;
2085
- box-shadow: 0 0 0 1px
2086
- var(--theme-border-color, var(--default-theme-border-color));
2087
- border-radius: var(--theme-radius, var(--default-theme-radius));
2088
- }
2089
-
2090
- .scalar-api-client__main__right {
2091
- width: 50%;
2092
- padding: 0 18px 12px 18px;
2093
- }
2094
- @media screen and (max-width: 820px) {
2095
- .scalar-api-client__main__right {
2096
- width: 100%;
2097
- border-right: none;
2098
- padding: 0 12px 12px 12px;
2099
- }
2100
- }
2101
- .scalar-api-client__main__right :deep(.scalar-copilot__header-button) {
2102
- position: absolute;
2103
- top: 6px;
2104
- right: 12px;
2105
- }
2106
-
2107
- .scalar-api-client,
2108
- #headlessui-portal-root {
2109
- background: var(--theme-background-1, var(--default-theme-background-1));
2110
- position: relative;
2111
- height: 100%;
2112
- overflow: hidden !important;
2113
- display: flex;
2114
- flex-direction: column;
2115
- font-family: var(--theme-font, var(--default-theme-font));
2116
-
2117
- /** Make sure box-sizing is set properly. */
2118
- box-sizing: border-box;
2119
- *,
2120
- *:before,
2121
- *:after {
2122
- box-sizing: inherit;
2123
- }
2124
- }
2125
- .scalar-api-client {
2126
- flex: 1;
2127
- max-height: 100vh;
2128
- }
2129
- @media screen and (max-width: 1000px) {
2130
- .scalar-api-client {
2131
- width: 100%;
2132
- }
2133
- }
2134
- .scalar-api-client pre {
2135
- font-family: var(--theme-font-code, var(--default-theme-font-code));
2136
- }
2137
- .scalar-api-client__mobile-navigation {
2138
- padding: 12px 12px 0 12px;
2139
- display: flex;
2140
- font-size: var(--theme-small, var(--default-theme-small));
2141
- color: var(--theme-color-2, var(--default-theme-color-2));
2142
- font-weight: var(--theme-bold, var(--default-theme-bold));
2143
- }
2144
- .scalar-api-client__mobile-navigation__toggle {
2145
- appearance: none;
2146
- border: none;
2147
- outline: none;
2148
- background: transparent;
2149
- font-size: var(--theme-font-size-2);
2150
- color: var(--theme-color-2);
2151
- font-weight: var(--theme-semibold, var(--default-theme-semibold));
2152
- font-family: var(--theme-font, var(--default-theme-font));
2153
- padding: 0;
2154
- margin-right: 9px;
2155
- cursor: pointer;
2156
- }
2157
- .scalar-api-client__mobile-navigation--active {
2158
- color: var(--theme-color-1, var(--default-theme-color-1));
2159
- }
2160
- .scalar-api-client__mobile-navigation--active:hover {
2161
- cursor: pointer;
2162
- }
2163
- .scalar-api-client__main {
2164
- display: flex;
2165
- height: 100%;
2166
- min-height: 0;
2167
- background: var(--theme-background-1, var(--default-theme-background-1));
2168
- border-top: 1px solid
2169
- var(--theme-border-color, var(--default-theme-border-color));
2170
- }
2171
- @media screen and (max-width: 820px) {
2172
- .scalar-api-client__main {
2173
- flex-direction: column;
2174
- }
2175
- }
2176
-
2177
- /** TODO: Consider to make a Column component */
2178
- .scalar-api-client__main__content {
2179
- padding: 12px 6px;
2180
- background: var(--theme-background-1, var(--default-theme-background-1));
2181
- top: 0;
2182
- position: sticky;
2183
- z-index: 100;
2184
- }
2185
- .scalar-api-client__main__content label {
2186
- font-size: var(--theme-small, var(--default-theme-small));
2187
- color: var(--theme-color-1, var(--default-theme-color-1));
2188
- font-weight: var(--theme-semibold, var(--default-theme-semibold));
2189
- display: flex;
2190
- align-items: center;
2191
- }
2192
- @media screen and (max-width: 820px) {
2193
- .scalar-api-client__main__content {
2194
- padding: 3px 0 12px 0;
2195
- }
2196
- .scalar-api-client__main__content label {
2197
- display: none;
2198
- }
2199
- }
2200
- .meta {
2201
- display: flex;
2202
- margin-top: 3px;
2203
- font-size: var(--theme-font-size-2, var(--default-theme-font-size-2));
2204
- font-weight: var(--theme-font-size-2, var(--default-theme-font-size-2));
2205
- color: var(
2206
- --scalar-api-client-color2,
2207
- var(--default-scalar-api-client-color2)
2208
- );
2209
- }
2210
- .meta-item svg {
2211
- fill: var(--theme-color-ghost, var(--default-theme-color-ghost));
2212
- height: 14px;
2213
- width: 14px;
2214
- margin-right: 6px;
2215
- }
2216
- .meta-item {
2217
- display: flex;
2218
- align-items: center;
2219
- margin-right: 12px;
2220
- white-space: nowrap;
2221
- font-weight: var(--theme-semibold, var(--default-theme-semibold));
2222
- font-size: var(--theme-small, var(--default-theme-small));
2223
- color: var(--theme-color-3, var(--default-theme-color-3));
2224
- min-height: 17px;
2225
- }
2226
- .meta-item__input {
2227
- background: transparent;
2228
- width: 100%;
2229
- margin-right: 0;
2230
- }
2231
- .types {
2232
- margin: auto;
2233
- width: 580px;
2234
- display: flex;
2235
- align-items: center;
2236
- justify-content: center;
2237
- flex-flow: wrap;
2238
- }
2239
- .types-heading {
2240
- width: 100%;
2241
- text-align: center;
2242
- }
2243
- .types-heading b {
2244
- font-size: 42px;
2245
- }
2246
- .types-heading p {
2247
- margin-bottom: 20px;
2248
- margin-top: 12px;
2249
- font-size: 24px;
2250
- }
2251
- .scalar-api-client__empty-state {
2252
- border: 1px dashed
2253
- var(--theme-border-color, var(--default-theme-border-color));
2254
- width: 100%;
2255
- text-align: center;
2256
- border-radius: var(--theme-radius, var(--default-theme-radius));
2257
- font-size: var(--theme-small, var(--default-theme-small));
2258
- min-height: 58px;
2259
- display: flex;
2260
- align-items: center;
2261
- justify-content: center;
2262
- }`));
6
+ elementStyle.appendChild(document.createTextNode("@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900');@import url('https://fonts.googleapis.com/css?family=JetBrains%20Mono');\n\n:root {\n --default-theme-border-width: 1px;\n --default-theme-radius: 3px;\n --default-theme-radius-lg: 6px;\n --default-theme-radius-xl: 8px;\n\n --default-theme-header-height: 50px;\n --default-theme-sidebar-width: 280px;\n --default-theme-toc-width: 280px;\n\n /* TYPOGRAPHY ------------------------------------ */\n --default-theme-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',\n Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;\n --default-theme-font-code: 'JetBrains Mono', ui-monospace, Menlo, Monaco,\n 'Cascadia Mono', 'Segoe UI Mono', 'Roboto Mono', 'Oxygen Mono',\n 'Ubuntu Monospace', 'Source Code Pro', 'Fira Mono', 'Droid Sans Mono',\n 'Courier New', monospace;\n\n /** Font sizes for rendered text content (editor styles or static content) */\n --default-theme-heading-1: 40px; /* Editor Page heading */\n --default-theme-page-description: 24px;\n --default-theme-heading-2: 24px; /* Editor section headings */\n --default-theme-heading-3: 20px;\n --default-theme-heading-4: 16px;\n --default-theme-heading-5: 16px;\n --default-theme-heading-6: 16px;\n\n --default-theme-paragraph: 16px;\n --default-theme-small: 14px;\n --default-theme-mini: 13px;\n --default-theme-micro: 12px;\n --default-theme-bold: 600;\n --default-theme-semibold: 500;\n --default-theme-regular: 400;\n\n /* Font sizes for interactive applications (not rendered text content) */\n --default-theme-font-size-1: 24px;\n --default-theme-font-size-2: 16px;\n --default-theme-font-size-3: 14px;\n --default-theme-font-size-4: 13px;\n --default-theme-font-size-5: 12px;\n\n --default-theme-line-height-1: 32px;\n --default-theme-line-height-2: 24px;\n --default-theme-line-height-3: 20px;\n --default-theme-line-height-4: 18px;\n --default-theme-line-height-5: 16px;\n\n --default-theme-font-medium: 500;\n --default-theme-font-bold: 700;\n}\n.dark-mode {\n color-scheme: dark;\n --default-theme-scrollbar-color: rgba(255, 255, 255, 0.18);\n --default-theme-scrollbar-color-active: rgba(255, 255, 255, 0.36);\n --default-theme-button-1: rgba(255, 255, 255, 1);\n --default-theme-button-1-hover: rgba(255, 255, 255, 0.9);\n --default-theme-button-1-color: black;\n\n --default-theme-shadow-1: 0 1px 3px 0 rgb(0, 0, 0, 0.1);\n --default-theme-shadow-2: rgba(15, 15, 15, 0.2) 0px 3px 6px,\n rgba(15, 15, 15, 0.4) 0px 9px 24px, 0 0 0 1px rgba(255, 255, 255, 0.1);\n}\n.light-mode {\n color-scheme: light;\n --default-theme-scrollbar-color-active: rgba(0, 0, 0, 0.36);\n --default-theme-scrollbar-color: rgba(0, 0, 0, 0.18);\n --default-theme-button-1: rgba(0, 0, 0, 1);\n --default-theme-button-1-hover: rgba(0, 0, 0, 0.8);\n --default-theme-button-1-color: rgba(255, 255, 255, 0.9);\n\n --default-theme-shadow-1: 0 1px 3px 0 rgba(0, 0, 0, 0.11);\n --default-theme-shadow-2: rgba(0, 0, 0, 0.08) 0px 13px 20px 0px,\n rgba(0, 0, 0, 0.08) 0px 3px 8px 0px, #eeeeed 0px 0 0 1px;\n}\n@media (max-width: 460px) {\n :root {\n --default-theme-font-size-1: 22px;\n --default-theme-font-size-2: 14px;\n --default-theme-font-size-3: 12px;\n }\n}\n@media (max-width: 720px) {\n :root {\n --default-theme-heading-1: 24px;\n --default-theme-page-description: 20px;\n }\n}\n.cm-scroller,\n.custom-scroll {\n overflow-y: auto;\n scrollbar-color: transparent transparent;\n scrollbar-width: thin;\n -webkit-overflow-scrolling: touch;\n}\n.custom-scroll-self-contain-overflow {\n overscroll-behavior: contain;\n}\n@supports (-moz-appearance: none) {\n .cm-scroller,\n .custom-scroll {\n padding-right: 12px;\n }\n}\n.cm-scroller:hover,\n.custom-scroll:hover {\n scrollbar-color: var(\n --theme-scrollbar-color,\n var(--default-theme-scrollbar-color)\n )\n transparent;\n}\n.cm-scroller:hover::-webkit-scrollbar-thumb,\n.custom-scroll:hover::-webkit-scrollbar-thumb {\n background: var(\n --theme-scrollbar-color,\n var(--default-theme-scrollbar-color)\n );\n background-clip: content-box;\n border: 3px solid transparent;\n}\n.cm-scroller::-webkit-scrollbar-thumb:active,\n.custom-scroll::-webkit-scrollbar-thumb:active {\n background: var(\n --theme-scrollbar-color-active,\n var(--default-theme-scrollbar-color-active)\n );\n background-clip: content-box;\n border: 3px solid transparent;\n}\n.cm-scroller::-webkit-scrollbar-corner,\n.custom-scroll::-webkit-scrollbar-corner {\n background: transparent;\n}\n.cm-scroller::-webkit-scrollbar,\n.custom-scroll::-webkit-scrollbar {\n height: 12px;\n width: 12px;\n}\n.cm-scroller::-webkit-scrollbar-track,\n.custom-scroll::-webkit-scrollbar-track {\n background: transparent;\n}\n.cm-scroller::-webkit-scrollbar-thumb,\n.custom-scroll::-webkit-scrollbar-thumb {\n border-radius: 20px;\n background: transparent;\n background-clip: content-box;\n border: 3px solid transparent;\n}\n@media (pointer: coarse) {\n .cm-scroller,\n .custom-scroll {\n padding-right: 12px;\n }\n}\n\n.codemirror-container[data-v-9f50a430] {\n width: 100%;\n height: 100%;\n padding-top: 4px;\n min-height: 76px;\n background: var(--theme-background-2, var(--default-theme-background-2));\n color: var(--theme-color-1, var(--default-theme-color-1));\n display: flex;\n align-items: stretch;\n}\n.copy-to-clipboard-button[data-v-9f50a430] {\n background: red;\n}\n\n.codemirror {\n flex-grow: 1;\n max-width: 100%;\n cursor: text;\n font-size: var(--theme-small, var(--default-theme-small));\n /* Don't scale wide text on mobile because we let it scroll */\n -webkit-text-size-adjust: 100%;\n}\n.cm-focused {\n outline: none !important;\n}\n\n.modal-layout[data-v-a06b8e92] {\n position: fixed;\n width: 100vw;\n height: 100vh;\n top: 0;\n left: 0;\n z-index: 1001;\n background: rgba(0, 0, 0, 0.44);\n padding: 20px;\n opacity: 0;\n animation: modal-fade-a06b8e92 0.2s forwards;\n}\n.modal-body[data-v-a06b8e92] {\n padding: 24px 24px 18px 24px;\n max-height: calc(100vh - 240px);\n background: var(--theme-background-1, var(--default-theme-background-1));\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n font-family: var(--theme-font, var(--default-theme-font));\n position: relative;\n}\n.modal[data-v-a06b8e92] {\n margin: 80px auto 0;\n position: relative;\n background: var(--theme-background-2, var(--default-theme-background-2));\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n color: var(--theme-color-1, var(--default-theme-color-1));\n width: 100%;\n text-align: left;\n line-height: 1.4;\n opacity: 0;\n transform: scale(0.98);\n animation: modal-pop-a06b8e92 0.15s 0.15s forwards;\n display: flex;\n flex-direction: column;\n}\n.modal[data-v-a06b8e92]:before {\n content: '';\n display: block;\n width: 100%;\n height: 100%;\n position: absolute;\n z-index: 0;\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n}\n.dark-mode .modal[data-v-a06b8e92]:before {\n background: #1a1a1a;\n}\n.light-mode .modal[data-v-a06b8e92]:before {\n background: #fff;\n}\n.modal-content-history[data-v-a06b8e92] {\n background: var(--theme-background-1, var(--default-theme-background-1));\n}\n.modal-content-history[data-v-a06b8e92],\n.modal-content-large[data-v-a06b8e92] {\n max-width: 800px;\n}\n.modal-content-normal[data-v-a06b8e92] {\n max-width: 640px;\n}\n.modal-content-small[data-v-a06b8e92] {\n max-width: 480px;\n}\n@keyframes modal-fade-a06b8e92 {\nfrom {\n opacity: 0;\n}\nto {\n opacity: 1;\n}\n}\n@keyframes modal-pop-a06b8e92 {\n0% {\n opacity: 0;\n}\n100% {\n opacity: 1;\n transform: scale(1);\n}\n}\n.modal-header[data-v-a06b8e92] {\n padding: 12px 24px;\n color: var(--theme-color-1, var(--default-theme-color-1));\n font-size: var(--theme-font-size-4, var(--default-theme-font-size-4));\n text-align: left;\n font-weight: 600;\n margin: 0;\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg))\n var(--theme-radius-lg, var(--default-theme-radius-lg)) 0 0;\n z-index: 1;\n}\n.modal-content-history .modal-header[data-v-a06b8e92] {\n padding-bottom: 0;\n padding-top: 24px;\n}\n.modal-content-history .modal-body[data-v-a06b8e92] {\n padding-top: 12px;\n}\n.modal-content-search[data-v-a06b8e92] {\n max-width: 540px;\n}\n.modal-content-search .modal-body[data-v-a06b8e92] {\n padding: 0;\n overflow: hidden;\n display: flex;\n flex-direction: column;\n max-height: 440px;\n}\n\n.navtable-item-time[data-v-dd49a57f] {\n text-transform: capitalize;\n}\n.navtable-item__active[data-v-dd49a57f] {\n background: var(--theme-background-2, var(--default-theme-background-2));\n cursor: default;\n}\n\n.navtable-mock {\n background-repeat: repeat;\n width: 100%;\n background-size: 31px 31px;\n background-position: center 1px;\n flex: 1;\n position: relative;\n z-index: 0;\n border-top: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n background: repeating-linear-gradient(\n var(--theme-background-1, var(--default-theme-background-1)),\n var(--theme-background-1, var(--default-theme-background-1)) 34.8px,\n var(--theme-border-color, var(--default-theme-border-color)) 34.8px,\n var(--theme-border-color, var(--default-theme-border-color)) 35.8px\n );\n}\n.navtable-mock .navtable-item {\n position: absolute;\n width: 100%;\n height: 100%;\n left: 0;\n top: 0;\n background: transparent;\n box-shadow: none;\n}\n.radio {\n height: 10px;\n max-width: 10px;\n width: 10px;\n max-height: 10px;\n background: transparent;\n border: var(--border, var(--default-border));\n flex-shrink: 0;\n margin-right: 6px;\n margin-left: 0;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n outline: none;\n padding: 0;\n}\n.radio:before {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n cursor: pointer;\n}\n.navtable-item__active:before {\n content: '';\n display: block;\n box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1)) !important;\n width: 100%;\n position: absolute;\n top: 0;\n left: 0;\n height: 100%;\n}\n.navtable-item__active + .navtable-item {\n /* box-shadow: none; */\n}\n.radio.post {\n background: var(--theme-color-green, var(--default-theme-color-green));\n}\n.radio.delete {\n background: var(--theme-color-red, var(--default-theme-color-red));\n}\n.radio.patch {\n background: var(--theme-color-yellow, var(--default-theme-color-yellow));\n}\n.radio.get {\n background: var(--theme-color-blue, var(--default-theme-color-blue));\n}\n.radio.put {\n background: var(--theme-color-orange, var(--default-theme-color-orange));\n}\n.navtable-item-request span {\n border: none;\n outline: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n color: var(--theme-color-1, var(--default-theme-color-1));\n width: 100%;\n display: block;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.navtable-item-request span em {\n text-transform: uppercase;\n font-style: normal;\n font-family: var(--theme-font-code, var(--default-theme-font-code));\n font-size: var(--theme-micro, var(--default-theme-micro));\n margin-right: 6px;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n color: var(--theme-color-3, var(--default-theme-color-3));\n}\n\n.request-method-select[data-v-8e2122cd] {\n position: relative;\n display: flex;\n}\n.request-method-select select[data-v-8e2122cd] {\n border: none;\n outline: none;\n cursor: pointer;\n background: var(--theme-background-3, var(--default-theme-background-3));\n box-shadow: -2px 0 0 0\n var(--theme-background-3, var(--default-theme-background-3));\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n -moz-appearance: none;\n -webkit-appearance: none;\n appearance: none;\n}\n.request-method-select select[disabled][data-v-8e2122cd] {\n pointer-events: none;\n}\n.request-method[data-v-8e2122cd] {\n display: flex;\n align-items: center;\n color: var(--theme-color-3, var(--default-theme-color-3));\n appearance: none;\n -webkit-appearance: none;\n padding: 0 12px;\n border-right: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n position: relative;\n}\n.request-method span[data-v-8e2122cd] {\n font-family: var(--theme-font-code, var(--default-theme-font-code));\n font-size: 500;\n font-size: var(--theme-micro, var(--default-theme-micro));\n text-transform: uppercase;\n display: flex;\n align-items: center;\n}\n.request-method:not(.request-method--disabled) span[data-v-8e2122cd]:after {\n content: '';\n width: 7px;\n height: 7px;\n transform: rotate(45deg) translate3d(-2px, -2px, 0);\n display: block;\n margin-left: 6px;\n box-shadow: 1px 1px 0 currentColor;\n}\n.request-method i[data-v-8e2122cd] {\n width: 10px;\n height: 10px;\n border-radius: 50%;\n margin-right: 6px;\n text-align: center;\n line-height: 18px;\n font-style: normal;\n flex-shrink: 0;\n display: inline-block;\n color: var(--theme-color-disabled, var(--default-theme-color-disabled));\n background: var(\n --scalar-api-client-color,\n var(--default-scalar-api-client-color)\n );\n}\n\n.api-client-url-variable {\n color: var(--scalar-api-client-color, var(--default-scalar-api-client-color));\n}\n\n.loader[data-v-75df9114] {\n position: absolute;\n z-index: 3;\n height: 2px;\n background: var(\n --scalar-api-client-color,\n var(--default-scalar-api-client-color)\n );\n animation: loading-75df9114 5s cubic-bezier(0, 0.5, 0.25, 1);\n}\n@keyframes loading-75df9114 {\n0% {\n width: 0;\n}\n100% {\n width: 100%;\n}\n}\n.address-bar[data-v-75df9114] {\n width: 100%;\n padding: 12px 12px 10px 12px;\n display: flex;\n align-items: center;\n position: relative;\n background: var(--theme-background-1, var(--default-theme-background-1));\n}\n.url-form[data-v-75df9114] {\n display: flex;\n width: 100%;\n align-items: stretch;\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n}\n.url-form[data-v-75df9114] .cm-content {\n display: flex;\n align-items: center;\n}\n.url-form-field[data-v-75df9114] {\n border-right: 0;\n background: var(--theme-background-2, var(--default-theme-background-2));\n border-radius: var(--theme-radius, var(--default-theme-radius)) 0 0\n var(--theme-radius, var(--default-theme-radius));\n display: flex;\n align-items: stretch;\n width: 100%;\n overflow: hidden;\n min-height: 31px;\n}\n.url-form-input[data-v-75df9114] {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.url-form-input[data-v-75df9114] {\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n min-height: auto;\n padding-top: 0;\n}\n.url-form-input[data-v-75df9114] .cm-scroller {\n overflow-y: hidden;\n}\n.history[data-v-75df9114] {\n appearance: none;\n -webkit-appearance: none;\n background: transparent;\n color: var(--theme-color-2, var(--default-theme-color-2));\n display: flex;\n align-items: center;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n height: 100%;\n}\n.send-button[type='submit'][data-v-75df9114] {\n font-size: var(--theme-micro, var(--default-theme-micro));\n letter-spacing: 0.25px;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n color: white;\n border: none;\n white-space: nowrap;\n padding: 0 12px;\n text-transform: uppercase;\n cursor: pointer;\n outline: none;\n font-family: (--theme-font, var(--default-theme-font));\n border-radius: 0 var(--theme-radius, var(--default-theme-radius))\n var(--theme-radius, var(--default-theme-radius)) 0;\n background: var(\n --scalar-api-client-color,\n var(--default-scalar-api-client-color)\n );\n position: relative;\n /** #087f5b */\n display: flex;\n align-items: center;\n overflow: hidden;\n flex-shrink: 0;\n}\n.send-button[data-v-75df9114]:before {\n content: '';\n position: absolute;\n top: -5%;\n left: -5%;\n width: 110%;\n height: 110%;\n pointer-events: none;\n cursor: pointer;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));\n}\n.send-button[data-v-75df9114]:hover:before {\n background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));\n}\n.send-button svg[data-v-75df9114] {\n width: 12px;\n height: 12px;\n flex-shrink: 0;\n margin-right: 6px;\n position: relative;\n}\n.send-button span[data-v-75df9114] {\n position: relative;\n}\n@media screen and (max-width: 720px) {\n.history-toggle span[data-v-75df9114],\n .send-button span[data-v-75df9114] {\n display: none;\n}\n.history-toggle svg[data-v-75df9114],\n .send-button svg[data-v-75df9114] {\n margin-right: 0;\n}\n}\n.send-button[disabled][data-v-75df9114] {\n pointer-events: none;\n color: var(--theme-color-2, var(--default-theme-color-2));\n background: var(--theme-background-3, var(--default-theme-background-3));\n border: 1px solid var(--default-theme-border-color);\n}\n.history-toggle[data-v-75df9114] {\n padding: 0 12px;\n line-height: 30px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-size: var(--theme-micro, var(--default-theme-micro));\n letter-spacing: 0.125px;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n text-transform: uppercase;\n height: 100%;\n display: flex;\n align-items: center;\n cursor: pointer;\n white-space: nowrap;\n box-shadow: 0 0 0 1px\n var(--theme-border-color, var(--default-theme-border-color));\n margin-left: 12px;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n user-select: none;\n}\n.history-toggle[data-v-75df9114]:hover {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.history-toggle svg[data-v-75df9114] {\n height: 13px;\n width: 13px;\n margin-right: 6px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n}\n.address-bar-content[data-v-75df9114] {\n width: 640px;\n height: 100%;\n background: var(--theme-background-1, var(--default-theme-background-1));\n position: fixed;\n top: 0;\n right: 0;\n z-index: 1000;\n transform: translate3d(640px, 0, 0);\n opacity: 0;\n transition:\n transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),\n opacity 0.01s ease-in-out 0.5s;\n pointer-events: none;\n}\n.address-bar--with-history[data-v-75df9114] {\n z-index: 100000;\n}\n.address-bar--with-history .address-bar-content[data-v-75df9114] {\n transform: translate3d(0, 0, 0);\n opacity: 1;\n pointer-events: all;\n transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);\n}\n.address-bar--with-history .address-bar-close[data-v-75df9114] {\n opacity: 1;\n pointer-events: all;\n cursor: pointer;\n}\n.address-bar-close[data-v-75df9114] {\n width: 100%;\n height: 100%;\n position: fixed;\n top: 0;\n left: 0;\n pointer-events: none;\n opacity: 0;\n transition: all 0.1s ease-in-out;\n z-index: 1000;\n}\n\n.scalar-api-client__item {\n border-radius: var(--theme-radius, var(--default-theme-radius));\n margin-bottom: 6px;\n position: relative;\n}\n.scalar-api-client__item button {\n background-color: transparent;\n text-align: left;\n}\n.scalar-api-client__item:hover {\n cursor: pointer;\n}\n.scalar-api-client__toggle:after {\n content: '';\n position: absolute;\n bottom: -6.5px;\n width: 100%;\n height: 6px;\n left: 0;\n}\n.scalar-api-client__item--open .scalar-api-client__toggle:after {\n display: none;\n}\n.scalar-api-client__item:hover,\n.scalar-api-client__item--open {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.scalar-api-client__item--open .scalar-api-client__item__content {\n display: flex;\n}\n.scalar-api-client__item--open:hover {\n cursor: default;\n}\n.scalar-api-client__item--open .scalar-api-client__toggle__icon {\n transform: rotate(90deg);\n}\n.scalar-api-client__toggle {\n padding: 6px;\n min-height: 37px;\n display: flex;\n align-items: center;\n justify-content: space-between;\n position: relative;\n width: 100%;\n appearance: none;\n outline: 0;\n border: none;\n font-family: (--theme-font, var(--default-theme-font));\n cursor: pointer;\n}\n.scalar-api-client__item .scalar-api-client__item__title {\n color: var(--theme-color-1, var(--default-theme-color-1));\n font-size: var(--theme-small, var(--default-theme-small));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n font-family: (--theme-font, var(--default-theme-font));\n user-select: none;\n flex: 1;\n position: relative;\n z-index: 1;\n}\n.scalar-api-client__item .scalar-api-client__toggle__icon {\n width: 10px;\n margin-right: 6px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n z-index: 1;\n position: relative;\n}\n.scalar-api-client__toggle:hover .scalar-api-client__toggle__icon {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.scalar-api-client__item__options {\n position: relative;\n z-index: 1;\n}\n.scalar-api-client__item__options span {\n background: transparent;\n padding: 2px 0;\n border-radius: 3px;\n font-size: var(--theme-small, var(--default-theme-small));\n pointer-events: none;\n color: var(--theme-color-2, var(--default-theme-color-2));\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.scalar-api-client__item__options:hover span {\n color: var(--theme-color-1, var(--default-theme-color-1));\n border-color: currentColor;\n}\n.scalar-api-client__item__options span svg {\n width: 15px;\n height: 15px;\n margin-left: 3px;\n}\n.scalar-api-client__item__options select {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n cursor: pointer;\n -moz-appearance: none;\n -webkit-appearance: none;\n appearance: none;\n}\n.scalar-api-client__item__content .scalar-api-client__codemirror__wrapper {\n padding-top: 0;\n}\n\n.table {\n border: 1px solid var(--theme-border-color, var(--default-theme-border-color));\n background: transparent;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n width: 100%;\n}\n.table-row {\n border-bottom: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n display: flex;\n position: relative;\n}\n.table-row__add {\n border-radius: 0 0 var(--theme-radius-lg, var(--default-theme-radius-lg))\n var(--theme-radius-lg, var(--default-theme-radius-lg));\n border-bottom: none;\n}\n.table-row.required-parameter .table-row-item:nth-of-type(2):after {\n content: 'Required';\n position: absolute;\n top: 4px;\n right: 0;\n padding: 5px 9px 5px 6px;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n font-size: var(--theme-micro, var(--default-theme-micro));\n background: var(--theme-background-2, var(--default-theme-background-2));\n box-shadow: -2px 0 4px\n var(--theme-background-2, var(--default-theme-background-2));\n}\n.table-row.required-parameter\n .table-row-item:nth-of-type(2):focus-within:after {\n display: none;\n}\n.table-row:last-of-type {\n border-bottom: none;\n}\n.table-row__active {\n border-radius: 0 0 var(--theme-radius-lg, var(--default-theme-radius-lg))\n var(--theme-radius-lg, var(--default-theme-radius-lg));\n}\n.table-row-drag {\n width: 20px;\n flex-shrink: 0;\n border-right: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n align-items: center;\n justify-content: center;\n display: none;\n}\n.table-row-drag svg {\n width: 6px;\n fill: var(--theme-color-3, var(--default-theme-color-3));\n}\n.table-row-drag .table-row-drag-add {\n width: 8px;\n}\n.table-row-item {\n width: 100%;\n border-right: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n position: relative;\n}\n.table-row-item-menu {\n position: absolute;\n right: 6px;\n background: var(--theme-background-2, var(--default-theme-background-2));\n width: 24px;\n height: 24px;\n top: 50%;\n transform: translate3d(0, -50%, 0);\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n opacity: 0;\n cursor: pointer;\n}\n.table-row-item input:focus + .table-row-item-menu,\n.table-row-item:hover .table-row-item-menu {\n opacity: 1;\n}\n.table-row-item-menu svg {\n height: 12px;\n width: initial;\n fill: var(--theme-color-3, var(--default-theme-color-3));\n}\n.table-row-item-menu:hover svg {\n fill: var(--theme-color-1, var(--default-theme-color-1));\n}\n.table-row-item input {\n border: none;\n appearance: none;\n outline: none;\n padding: 9px;\n width: 100%;\n min-height: 100%;\n color: var(--theme-color-1, var(--default-theme-color-1));\n font-size: var(--theme-micro, var(--default-theme-micro));\n background: transparent;\n font-family: var(--theme-font, var(--default-theme-font));\n}\n.table-row-item input[disabled] {\n background: transparent;\n font-family: var(--theme-font-code, var(--default-theme-font-code));\n}\n.table-row-item input:focus {\n box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));\n}\n.table-row-item label {\n background: transparent;\n text-transform: uppercase;\n display: block;\n padding: 9px;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n color: var(--theme-color-2, var(--default-theme-color-2));\n font-size: var(--theme-micro, var(--default-theme-micro));\n}\n.table-row-meta {\n overflow: hidden;\n flex-shrink: 0;\n transition: all 0.15s ease-in-out;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 51px;\n user-select: none;\n}\n.table-row-meta-check {\n width: 18px;\n height: 18px;\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n background: rgba(47, 177, 228, 0.1);\n}\n.table-row-meta svg {\n width: 13px;\n height: 13px;\n margin: 0 1px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n cursor: pointer;\n}\n.table-row-meta svg:hover {\n color: var(--theme-color-2, var(--default-theme-color-2));\n}\n.meta-check {\n display: flex;\n position: relative;\n cursor: pointer;\n align-items: center;\n font-size: var(--theme-micro, var(--default-theme-micro));\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n user-select: none;\n margin: 0 1px;\n transition: all 0.15s ease-in-out;\n}\n.meta-check input {\n position: absolute;\n opacity: 0;\n cursor: pointer;\n height: 0;\n width: 0;\n}\n.meta-checkmark {\n height: 17px;\n width: 17px;\n background: var(--theme-background-3, var(--default-theme-background-3));\n border-radius: 3px;\n display: flex;\n align-items: center;\n justify-content: center;\n position: relative;\n}\n.meta-checkmark:hover {\n background: var(--theme-background-3, var(--default-theme-background-3));\n}\n.meta-check:focus-within .meta-checkmark {\n box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));\n}\n.meta-check .meta-checkmark:after {\n content: '';\n display: none;\n width: 5px;\n height: 8px;\n border: solid var(--theme-color-1, var(--default-theme-color-1));\n border-width: 0 1.5px 1.5px 0;\n transform: rotate(45deg) translate3d(0, -1px, 0);\n}\n.meta-check input:checked ~ .meta-checkmark:after {\n display: block;\n}\n.meta-check input:checked ~ .meta-checkmark:hover {\n background: transparent;\n}\n\n.navtable {\n width: 100%;\n}\n.navtable-follow {\n background-color: black;\n color: white;\n font-size: 9px;\n padding: 6px;\n display: -webkit-box;\n max-width: 250px;\n -webkit-line-clamp: 12;\n border-radius: 3px;\n -webkit-box-orient: vertical;\n overflow: hidden;\n line-height: 1.24;\n transform: translate3d(10px, 0, 0);\n}\n.navtable-follow:after {\n content: '';\n position: absolute;\n bottom: 0;\n width: 100%;\n height: 6px;\n background-color: black;\n}\n.navtable-follow * {\n font-family: var(\n --theme-font-code,\n var(--default-theme-font-code)\n ) !important;\n}\n.navtable-table {\n position: relative;\n display: flex;\n flex-direction: column;\n min-height: 389px;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n border: 1px solid var(--theme-border-color, var(--default-theme-border-color));\n}\n.navtable-radios {\n z-index: 1;\n border-top: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n}\n.navtable-item {\n display: flex;\n position: relative;\n color: var(--theme-color-1, var(--default-theme-color-1));\n font-size: var(--theme-micro, var(--default-theme-micro));\n border-top: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n}\n.navtable-item:first-of-type {\n border-top: none;\n}\n.navtable-item > div {\n word-wrap: break-word;\n}\n.navtable-item > div:not(:first-child) {\n border-left: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n}\n.navtable-item-action {\n color: var(--theme-color-2, var(--default-theme-color-2));\n font-size: var(--theme-micro, var(--default-theme-micro));\n font-weight: var(--theme-bold, var(--default-theme-bold));\n background: var(\n --scalar-api-client-bg3,\n var(--default-scalar-api-client-bg3)\n );\n border: none;\n border-radius: 30px;\n appearance: none;\n max-height: 25px;\n margin-left: 12px;\n margin-right: 6px;\n padding: 4px 8px;\n outline: none;\n cursor: pointer;\n opacity: 0;\n transition: opacity 0.15s ease-in-out;\n white-space: nowrap;\n position: relative;\n}\n.navtable-item-action:hover {\n color: var(--theme-color-1, var(--default-theme-color-1));\n background: var(\n --scalar-api-client-gradient,\n var(--default-scalar-api-client-gradient)\n );\n box-shadow: 0 0 0 1px\n var(--theme-border-color, var(--default-theme-border-color));\n}\n.navtable-item-action:focus {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.navtable-item:hover,\n.navtable-item:focus-within .navtable-item-action {\n opacity: 1;\n}\n.navtable-item-add {\n display: flex;\n align-items: center;\n padding: 9px;\n font-weight: var(--theme-bold, var(--default-theme-bold));\n outline: none;\n border: none;\n appearance: none;\n background: transparent;\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.navtable-item-add:hover {\n background: var(--theme-background-2, var(--default-theme-background-2));\n cursor: pointer;\n}\n.navtable-item-25 {\n width: 25%;\n font-size: var(--theme-micro, var(--default-theme-micro));\n display: flex;\n align-items: center;\n}\n.navtable-item-33 {\n width: 33.33333%;\n display: flex;\n font-size: var(--theme-micro, var(--default-theme-micro));\n align-items: center;\n}\n.navtable-item-66 {\n width: 66.6666%;\n display: flex;\n font-size: var(--theme-micro, var(--default-theme-micro));\n align-items: center;\n}\n.navtable-item-75 {\n width: 75%;\n display: flex;\n align-items: center;\n}\n.navtable-item-75:focus-within {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.navtable-item-40 {\n width: 40%;\n display: flex;\n align-items: center;\n padding: 9px;\n}\n.navtable-item-20 {\n width: 20%;\n display: flex;\n align-items: center;\n padding: 9px;\n}\n.navtable-item-50 {\n width: 50%;\n display: flex;\n align-items: center;\n}\n.navtable-item-50:focus-within {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.navtable-item p {\n padding: 9px;\n}\n.navtable-item input {\n padding: 12px 6px;\n border: none;\n outline: none;\n appearance: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n color: var(--theme-color-1, var(--default-theme-color-1));\n background: transparent;\n width: 100%;\n}\n.navtable-item input:focus {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.navtable-item-select {\n position: relative;\n}\n.navtable-item-select select {\n background: transparent;\n outline: none;\n border: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n -moz-appearance: none;\n -webkit-appearance: none;\n appearance: none;\n width: 100%;\n padding: 12px 6px;\n top: 0;\n position: relative;\n cursor: pointer;\n color: var(--theme-color-2, var(--default-theme-color-2));\n}\n.navtable-item-select svg {\n position: absolute;\n right: 6px;\n color: var(--theme-color-ghost, var(--default-theme-color-ghost));\n width: 6px;\n top: 12px;\n pointer-events: none;\n}\n.navtable-item .option {\n padding: 12px 6px;\n font-size: var(--theme-micro, var(--default-theme-micro));\n color: var(--theme-color-1, var(--default-theme-color-1));\n width: 100%;\n}\n.navtable-item label {\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-size: var(--theme-micro, var(--default-theme-micro));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n text-transform: uppercase;\n display: block;\n width: 100%;\n}\n.navtable-item-response {\n padding: 0 9px;\n}\n.navtable-item-response span {\n font-size: var(--theme-micro, var(--default-theme-micro));\n display: flex;\n align-items: center;\n margin-right: 9px;\n min-width: 40px;\n}\n.scalar-api-client__status--1xx:before,\n.scalar-api-client__status--2xx:before,\n.scalar-api-client__status--3xx:before,\n.scalar-api-client__status--4xx:before,\n.scalar-api-client__status--5xx:before,\n.scalar-api-client__status--6xx:before {\n content: '';\n width: 10px;\n height: 10px;\n border-radius: 50%;\n margin-right: 4px;\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.scalar-api-client__status--2xx:before {\n background: var(--theme-color-green, var(--default-theme-color-green));\n}\n.scalar-api-client__status--3xx:before {\n background: var(--theme-color-orange, var(--default-theme-color-orange));\n}\n.scalar-api-client__status--4xx:before {\n background: var(--theme-color-red, var(--default-theme-color-red));\n}\n.navtable-item-response span:empty {\n display: none;\n}\n.simpletable.navtable {\n padding: 0;\n}\n.simpletable.navtable .navtable-item-66,\n.simpletable.navtable .navtable-item-33 {\n display: block;\n}\n.simpletable.navtable .navtable-table {\n height: fit-content;\n}\n.meta-delete {\n position: absolute;\n right: -9px;\n background: var(\n --theme-background-3,\n var(--default-theme-background-3)\n ) !important;\n height: 20px;\n width: 20px;\n border: none;\n outline: none;\n border-radius: 50%;\n opacity: 0;\n padding: 5px;\n display: flex;\n align-items: center;\n justify-content: center;\n cursor: pointer;\n}\n.meta-delete svg {\n width: 11px;\n height: 11px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n}\n.meta-delete:hover svg {\n color: var(--theme-color-red, var(--default-theme-color-red));\n}\n.meta-delete:focus svg {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.meta-delete:focus {\n border-color: var(--theme-color-1, var(--default-theme-color-1));\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.table-row:hover .meta-delete {\n opacity: 1;\n}\n@media (pointer: coarse) {\n.table-row:hover .meta-delete {\n opacity: 1;\n}\n}\n.meta-actions-item {\n border: none;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n appearance: none;\n padding: 9px;\n width: 100%;\n appearance: none;\n outline: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n font-family: var(--theme-font, var(--default-theme-font));\n color: var(--theme-color-3, var(--default-theme-color-3));\n cursor: pointer;\n display: flex;\n align-items: center;\n gap: 6px;\n}\n.meta-actions {\n width: 100%;\n display: flex;\n justify-content: space-between;\n}\n.meta-actions-item:nth-of-type(2) {\n display: flex;\n justify-content: flex-end;\n}\n.meta-actions-item:nth-of-type(2) i {\n filter: drop-shadow(0 0.125px 0 currentColor)\n drop-shadow(0 -0.125px 0 currentColor);\n}\n.meta-actions-item-icon {\n width: 12px;\n height: 12px;\n}\n.meta-actions-item:hover,\n.meta-actions-item:focus {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n\n.scalar-api-client-add {\n color: var(--theme-color-2, var(--default-theme-color-2));\n padding: 6px;\n width: fit-content;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n cursor: pointer;\n font-size: var(--theme-micro, var(--default-theme-micro));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n text-decoration: none;\n margin: 0 6px;\n border: none;\n font-family: var(--theme-font);\n appearance: none;\n display: flex;\n align-items: center;\n}\n.scalar-api-client-add svg {\n width: 12px;\n height: 12px;\n margin-right: 6px;\n}\n.scalar-api-client-add:hover {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.scalar-api-client-add:focus-within {\n background: var(--theme-background-3, var(--default-theme-background-3));\n}\n\n.scalar-api-client__main__left {\n width: 50%;\n border-right: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n padding: 0 18px 12px 18px;\n}\n@media screen and (max-width: 820px) {\n.scalar-api-client__main__left {\n width: 100%;\n border-right: none;\n padding: 0 12px 12px 12px;\n}\n}\n.scalar-api-client__item__content {\n flex-flow: wrap;\n padding: 3px 9px 9px 9px;\n border-radius: 3px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-size: var(--theme-micro, var(--default-theme-micro));\n margin-top: -3px;\n justify-content: space-between;\n overflow: auto;\n}\n.scalar-api-client__item__content .scalar-api-client__codemirror__wrapper {\n width: 100%;\n min-height: 63px;\n}\n.scalar-api-client__item__content .scalar-codeblock-pre,\n.scalar-api-client__item__content .cm-s-default {\n border: 1px solid var(--theme-border-color, var(--default-theme-border-color));\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n}\n.scalar-api-client__item__content .scalar-codeblock-pre,\n.scalar-api-client__item__content .codemirror-container {\n width: 100%;\n max-height: calc(100vh - 300px);\n overflow: auto;\n}\n.scalar-api-client__item__content .cm-scroller {\n border: 1px solid var(--theme-border-color, var(--default-theme-border-color));\n border-radius: 3px;\n}\n.scalar-api-client__item__content .cm-editor {\n outline: none !important;\n}\n.scalar-api-client__item__content .cm-editor .cm-gutters {\n background: transparent;\n}\n.scalar-api-client__item__content .cm-scroll {\n background: transparent;\n}\n.scalar-api-client__item__content .cm-editor * {\n font-size: var(--theme-micro, var(--default-theme-micro));\n}\n.scalar-api-client__item__content .cm-editor .cm-line {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.scalar-api-client__item__content-button {\n appearance: none;\n border: none;\n outline: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n background: var(\n --scalar-api-client-color,\n var(--default-scalar-api-client-color)\n ) !important;\n text-align: center;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n font-family: var(--theme-font, var(--default-theme-font));\n padding: 6px;\n width: fit-content;\n margin: 3px 3px 3px auto;\n text-transform: uppercase;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n color: white;\n cursor: pointer;\n text-align: center !important;\n position: relative;\n}\n.scalar-api-client__item__content-button span {\n position: relative;\n}\n.scalar-api-client__item__content-button:before {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n cursor: pointer;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));\n}\n.scalar-api-client__item__content-button:hover:before {\n background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));\n}\n.scalar-api-client__item__content__split {\n justify-content: space-between;\n}\n.scalar-collapsible-section-flex {\n width: 100%;\n}\n.input {\n background: transparent;\n position: relative;\n width: 100%;\n text-align: left;\n display: flex;\n box-shadow: 0 1px 0\n var(--theme-border-color, var(--default-theme-border-color));\n}\n.input:focus-within {\n box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1)) !important;\n z-index: 10;\n}\n.input:first-of-type {\n border-radius: var(--theme-radius, var(--default-theme-radius))\n var(--theme-radius, var(--default-theme-radius)) 0 0;\n}\n.input:first-child:last-child {\n border-radius: var(--theme-radius, var(--default-theme-radius));\n}\n.input:last-child {\n box-shadow: none;\n border-radius: 0 0 var(--theme-radius, var(--default-theme-radius))\n var(--theme-radius, var(--default-theme-radius));\n}\n.input__half:first-of-type {\n border-radius: var(--theme-radius, var(--default-theme-radius)) 0 0 0;\n}\n.input__half:nth-of-type(2) {\n border-radius: 0 var(--theme-radius, var(--default-theme-radius)) 0 0;\n}\n.authentication-form {\n box-shadow: 0 0 0 1px\n var(--theme-border-color, var(--default-theme-border-color));\n border-radius: var(--theme-radius, var(--default-theme-radius));\n width: 100%;\n display: flex;\n flex-flow: wrap;\n}\n.input__half {\n width: 50%;\n}\n.input__half + .input__half {\n border-left: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n}\n.input__half:focus-within {\n border-color: transparent;\n}\n.input label,\n.input input {\n padding: 9px;\n border: 0;\n outline: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n color: var(--theme-color-2, var(--default-theme-color-2));\n width: 100%;\n background: transparent;\n appearance: none;\n -webkit-appearance: none;\n left: 0;\n}\n.input label {\n color: var(--theme-color-1, var(--default-theme-color-1));\n width: fit-content;\n padding-right: 0;\n white-space: nowrap;\n cursor: text;\n}\n.input input {\n position: relative;\n z-index: 99;\n}\n.input input:not(:placeholder-shown) + label {\n color: var(--theme-color-2, var(--default-theme-color-2));\n}\n.select {\n background: --theme-background-1;\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n font-size: var(--theme-micro, var(--default-theme-micro));\n border: 1px solid var(--theme-border-color, var(--default-theme-border-color));\n width: 100%;\n position: relative;\n margin-bottom: 6px;\n}\n.select:focus-within {\n background: var(--theme-background-3, var(--default-theme-background-3));\n}\n.select:hover {\n background: var(--theme-background-3, var(--default-theme-background-3));\n}\n.select svg {\n position: absolute;\n right: 9px;\n pointer-events: none;\n color: var(--theme-color-2, var(--default-theme-color-2));\n width: 6px;\n top: 10px;\n}\n.select label {\n display: block;\n font-size: 10px;\n color: var(--theme-color-2, var(--default-theme-color-2));\n position: absolute;\n left: 9px;\n top: 6px;\n}\n.select select {\n background: transparent;\n outline: none;\n border: none;\n -moz-appearance: none;\n -webkit-appearance: none;\n appearance: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n color: var(--theme-color-1, var(--default-theme-color-1));\n width: 100%;\n padding: 14px 9px 4px 9px;\n top: 0;\n position: relative;\n cursor: pointer;\n}\n.check {\n display: flex;\n position: relative;\n cursor: pointer;\n align-items: center;\n font-size: var(--theme-micro, var(--default-theme-micro));\n padding: 6px 9px;\n border-radius: 0 0 var(--theme-radius, var(--default-theme-radius))\n var(--theme-radius, var(--default-theme-radius));\n user-select: none;\n width: 100%;\n outline: none;\n}\n.check:focus-within {\n box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));\n}\n.checkmark:hover {\n background: var(--theme-background-3, var(--default-theme-background-3));\n}\n.check:focus-within {\n border-color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.check p {\n color: var(--theme-color-3, var(--default-theme-color-3));\n}\n.check input {\n position: absolute;\n opacity: 0;\n cursor: pointer;\n height: 0;\n width: 0;\n}\n.checkmark {\n height: 17px;\n width: 17px;\n background: var(--theme-background-3, var(--default-theme-background-3));\n margin-right: 10px;\n border-radius: 3px;\n display: flex;\n align-items: center;\n justify-content: center;\n position: relative;\n}\n.check input:checked ~ p {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.check .checkmark:after {\n content: '';\n display: none;\n width: 5px;\n height: 8px;\n border: solid var(--theme-color-1, var(--default-theme-color-1));\n border-width: 0 1.5px 1.5px 0;\n transform: rotate(45deg) translate3d(0, -1px, 0);\n}\n.check input:checked ~ .checkmark:after {\n display: block;\n}\n.scalar-api-client__main__scroll-container {\n height: calc(100vh - 320px);\n}\n.scalar-api-client__request-name {\n outline: none;\n border: none;\n appearance: none;\n -webkit-appearance: none;\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-size: var(--theme-small, var(--default-theme-small));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n color: var(--theme-color-3, var(--default-theme-color-3));\n width: 100%;\n padding: 0;\n background: transparent;\n font-family: var(--theme-font, var(--default-theme-font));\n}\n.scalar-api-client__request-name::-webkit-input-placeholder {\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n}\n.scalar-api-client__request-name:-ms-input-placeholder {\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n}\n.scalar-api-client__request-name::placeholder {\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n}\n\na[data-v-ffc7287f] {\n color: var(--theme-color-3, var(--default-theme-color-3));\n text-decoration: underline;\n text-decoration-color: var(\n --theme-border-color,\n var(--default-theme-border-color)\n );\n text-underline-offset: 2px;\n cursor: help;\n}\n\n.simple-cell[data-v-b99d5e90] {\n all: unset;\n display: table-cell;\n border-right: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n position: relative;\n padding: 9px !important;\n color: var(--theme-color-1, var(--default-theme-color-1));\n white-space: nowrap;\n}\n.simple-cell a[data-v-b99d5e90] {\n color: var(--theme-color-1, var(--default-theme-color-1)) !important;\n}\n.simple-cell[data-v-b99d5e90]:last-of-type {\n border-right: none;\n}\n.simple-cell.wrap[data-v-b99d5e90] {\n white-space: normal;\n}\n.simple-cell.strong[data-v-b99d5e90] {\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n}\n\n.simple-header[data-v-6bd3700b] {\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n text-transform: uppercase;\n}\n\n.simple-row[data-v-e7e681a1] {\n all: unset;\n display: table-row;\n box-shadow: 0 -1px var(--theme-border-color, var(--default-theme-border-color));\n}\n.simple-row[data-v-e7e681a1]:first-of-type {\n box-shadow: none;\n}\n\n.simple-table[data-v-8f53a32f] {\n all: unset;\n display: table;\n width: 100%;\n border-spacing: 0;\n box-shadow: 0 0 0 1px\n var(--theme-border-color, var(--default-theme-border-color));\n border-radius: var(--theme-radius, var(--default-theme-radius));\n}\n\n.scalar-api-client__main__right {\n width: 50%;\n padding: 0 18px 12px 18px;\n}\n@media screen and (max-width: 820px) {\n.scalar-api-client__main__right {\n width: 100%;\n border-right: none;\n padding: 0 12px 12px 12px;\n}\n}\n.scalar-api-client__main__right :deep(.scalar-copilot__header-button) {\n position: absolute;\n top: 6px;\n right: 12px;\n}\n\n.scalar-api-client,\n#headlessui-portal-root {\n background: var(--theme-background-1, var(--default-theme-background-1));\n position: relative;\n height: 100%;\n overflow: hidden !important;\n display: flex;\n flex-direction: column;\n font-family: var(--theme-font, var(--default-theme-font));\n\n /** Make sure box-sizing is set properly. */\n box-sizing: border-box;\n*,\n *:before,\n *:after {\n box-sizing: inherit;\n}\n}\n.scalar-api-client {\n flex: 1;\n max-height: 100vh;\n}\n@media screen and (max-width: 1000px) {\n.scalar-api-client {\n width: 100%;\n}\n}\n.scalar-api-client pre {\n font-family: var(--theme-font-code, var(--default-theme-font-code));\n}\n.scalar-api-client__mobile-navigation {\n padding: 12px 12px 0 12px;\n display: flex;\n font-size: var(--theme-small, var(--default-theme-small));\n color: var(--theme-color-2, var(--default-theme-color-2));\n font-weight: var(--theme-bold, var(--default-theme-bold));\n}\n.scalar-api-client__mobile-navigation__toggle {\n appearance: none;\n border: none;\n outline: none;\n background: transparent;\n font-size: var(--theme-font-size-2);\n color: var(--theme-color-2);\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n font-family: var(--theme-font, var(--default-theme-font));\n padding: 0;\n margin-right: 9px;\n cursor: pointer;\n}\n.scalar-api-client__mobile-navigation--active {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.scalar-api-client__mobile-navigation--active:hover {\n cursor: pointer;\n}\n.scalar-api-client__main {\n display: flex;\n height: 100%;\n min-height: 0;\n background: var(--theme-background-1, var(--default-theme-background-1));\n border-top: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n}\n@media screen and (max-width: 820px) {\n.scalar-api-client__main {\n flex-direction: column;\n}\n}\n\n/** TODO: Consider to make a Column component */\n.scalar-api-client__main__content {\n padding: 12px 6px;\n background: var(--theme-background-1, var(--default-theme-background-1));\n top: 0;\n position: sticky;\n z-index: 100;\n}\n.scalar-api-client__main__content label {\n font-size: var(--theme-small, var(--default-theme-small));\n color: var(--theme-color-1, var(--default-theme-color-1));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n display: flex;\n align-items: center;\n}\n@media screen and (max-width: 820px) {\n.scalar-api-client__main__content {\n padding: 3px 0 12px 0;\n}\n.scalar-api-client__main__content label {\n display: none;\n}\n}\n.meta {\n display: flex;\n margin-top: 3px;\n font-size: var(--theme-font-size-2, var(--default-theme-font-size-2));\n font-weight: var(--theme-font-size-2, var(--default-theme-font-size-2));\n color: var(\n --scalar-api-client-color2,\n var(--default-scalar-api-client-color2)\n );\n}\n.meta-item svg {\n fill: var(--theme-color-ghost, var(--default-theme-color-ghost));\n height: 14px;\n width: 14px;\n margin-right: 6px;\n}\n.meta-item {\n display: flex;\n align-items: center;\n margin-right: 12px;\n white-space: nowrap;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n font-size: var(--theme-small, var(--default-theme-small));\n color: var(--theme-color-3, var(--default-theme-color-3));\n min-height: 17px;\n}\n.meta-item__input {\n background: transparent;\n width: 100%;\n margin-right: 0;\n}\n.types {\n margin: auto;\n width: 580px;\n display: flex;\n align-items: center;\n justify-content: center;\n flex-flow: wrap;\n}\n.types-heading {\n width: 100%;\n text-align: center;\n}\n.types-heading b {\n font-size: 42px;\n}\n.types-heading p {\n margin-bottom: 20px;\n margin-top: 12px;\n font-size: 24px;\n}\n.scalar-api-client__empty-state {\n border: 1px dashed\n var(--theme-border-color, var(--default-theme-border-color));\n width: 100%;\n text-align: center;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n font-size: var(--theme-small, var(--default-theme-small));\n min-height: 58px;\n display: flex;\n align-items: center;\n justify-content: center;\n}"));
2263
7
  document.head.appendChild(elementStyle);
2264
8
  }
2265
9
  } catch (e) {
@@ -2272,7 +16,7 @@ var __publicField = (obj, key, value) => {
2272
16
  __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
2273
17
  return value;
2274
18
  };
2275
- 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";
2276
20
  import { Dialog, DialogPanel, DialogTitle, DialogDescription, Disclosure, DisclosureButton, DisclosurePanel, TabGroup, TabList, Tab, TabPanels, TabPanel } from "@headlessui/vue";
2277
21
  import { useMagicKeys, whenever, useMediaQuery } from "@vueuse/core";
2278
22
  import axios from "axios";
@@ -2290,7 +34,7 @@ const moonTheme = ".light-mode {\n color-scheme: light;\n --default-theme-colo
2290
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";
2291
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";
2292
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";
2293
- const _sfc_main$t = /* @__PURE__ */ defineComponent({
37
+ const _sfc_main$r = /* @__PURE__ */ defineComponent({
2294
38
  __name: "ThemeStyles",
2295
39
  props: {
2296
40
  id: {}
@@ -3249,7 +993,7 @@ const httpStatusCodes = {
3249
993
  url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/511"
3250
994
  }
3251
995
  };
3252
- const _sfc_main$s = /* @__PURE__ */ defineComponent({
996
+ const _sfc_main$q = /* @__PURE__ */ defineComponent({
3253
997
  __name: "HttpMethod",
3254
998
  props: {
3255
999
  as: {},
@@ -14487,8 +12231,8 @@ let _supportsTabSize = null;
14487
12231
  function supportsTabSize() {
14488
12232
  var _a2;
14489
12233
  if (_supportsTabSize == null && typeof document != "undefined" && document.body) {
14490
- let styles2 = document.body.style;
14491
- _supportsTabSize = ((_a2 = styles2.tabSize) !== null && _a2 !== void 0 ? _a2 : styles2.MozTabSize) != null;
12234
+ let styles = document.body.style;
12235
+ _supportsTabSize = ((_a2 = styles.tabSize) !== null && _a2 !== void 0 ? _a2 : styles.MozTabSize) != null;
14492
12236
  }
14493
12237
  return _supportsTabSize || false;
14494
12238
  }
@@ -15065,25 +12809,25 @@ const gutterView = /* @__PURE__ */ ViewPlugin.fromClass(class {
15065
12809
  for (let b of line.type) {
15066
12810
  if (b.type == BlockType.Text && first) {
15067
12811
  advanceCursor(lineClasses, classSet, b.from);
15068
- for (let cx2 of contexts)
15069
- cx2.line(this.view, b, classSet);
12812
+ for (let cx of contexts)
12813
+ cx.line(this.view, b, classSet);
15070
12814
  first = false;
15071
12815
  } else if (b.widget) {
15072
- for (let cx2 of contexts)
15073
- cx2.widget(this.view, b);
12816
+ for (let cx of contexts)
12817
+ cx.widget(this.view, b);
15074
12818
  }
15075
12819
  }
15076
12820
  } else if (line.type == BlockType.Text) {
15077
12821
  advanceCursor(lineClasses, classSet, line.from);
15078
- for (let cx2 of contexts)
15079
- cx2.line(this.view, line, classSet);
12822
+ for (let cx of contexts)
12823
+ cx.line(this.view, line, classSet);
15080
12824
  } else if (line.widget) {
15081
- for (let cx2 of contexts)
15082
- cx2.widget(this.view, line);
12825
+ for (let cx of contexts)
12826
+ cx.widget(this.view, line);
15083
12827
  }
15084
12828
  }
15085
- for (let cx2 of contexts)
15086
- cx2.finish();
12829
+ for (let cx of contexts)
12830
+ cx.finish();
15087
12831
  if (detach)
15088
12832
  this.view.scrollDOM.insertBefore(this.dom, after);
15089
12833
  }
@@ -18410,12 +16154,12 @@ class ParseContext {
18410
16154
  let parser2 = {
18411
16155
  parsedPos: from,
18412
16156
  advance() {
18413
- let cx2 = currentContext;
18414
- if (cx2) {
16157
+ let cx = currentContext;
16158
+ if (cx) {
18415
16159
  for (let r2 of ranges)
18416
- cx2.tempSkipped.push(r2);
16160
+ cx.tempSkipped.push(r2);
18417
16161
  if (until)
18418
- cx2.scheduleOn = cx2.scheduleOn ? Promise.all([cx2.scheduleOn, until]) : until;
16162
+ cx.scheduleOn = cx.scheduleOn ? Promise.all([cx.scheduleOn, until]) : until;
18419
16163
  }
18420
16164
  this.parsedPos = to;
18421
16165
  return new Tree(NodeType.none, [], [], to - from);
@@ -18514,15 +16258,15 @@ const parseWorker = /* @__PURE__ */ ViewPlugin.fromClass(class ParseWorker {
18514
16258
  this.scheduleWork();
18515
16259
  }
18516
16260
  update(update) {
18517
- let cx2 = this.view.state.field(Language.state).context;
18518
- if (cx2.updateViewport(update.view.viewport) || this.view.viewport.to > cx2.treeLen)
16261
+ let cx = this.view.state.field(Language.state).context;
16262
+ if (cx.updateViewport(update.view.viewport) || this.view.viewport.to > cx.treeLen)
18519
16263
  this.scheduleWork();
18520
16264
  if (update.docChanged || update.selectionSet) {
18521
16265
  if (this.view.hasFocus)
18522
16266
  this.chunkBudget += 50;
18523
16267
  this.scheduleWork();
18524
16268
  }
18525
- this.checkAsyncSchedule(cx2);
16269
+ this.checkAsyncSchedule(cx);
18526
16270
  }
18527
16271
  scheduleWork() {
18528
16272
  if (this.working)
@@ -18560,11 +16304,11 @@ const parseWorker = /* @__PURE__ */ ViewPlugin.fromClass(class ParseWorker {
18560
16304
  this.scheduleWork();
18561
16305
  this.checkAsyncSchedule(field.context);
18562
16306
  }
18563
- checkAsyncSchedule(cx2) {
18564
- if (cx2.scheduleOn) {
16307
+ checkAsyncSchedule(cx) {
16308
+ if (cx.scheduleOn) {
18565
16309
  this.workScheduled++;
18566
- cx2.scheduleOn.then(() => this.scheduleWork()).catch((err) => logException(this.view.state, err)).then(() => this.workScheduled--);
18567
- cx2.scheduleOn = null;
16310
+ cx.scheduleOn.then(() => this.scheduleWork()).catch((err) => logException(this.view.state, err)).then(() => this.workScheduled--);
16311
+ cx.scheduleOn = null;
18568
16312
  }
18569
16313
  }
18570
16314
  destroy() {
@@ -18722,7 +16466,7 @@ class IndentContext {
18722
16466
  }
18723
16467
  }
18724
16468
  const indentNodeProp = /* @__PURE__ */ new NodeProp();
18725
- function syntaxIndentation(cx2, ast, pos) {
16469
+ function syntaxIndentation(cx, ast, pos) {
18726
16470
  let stack = ast.resolveStack(pos);
18727
16471
  let inner = stack.node.enterUnfinishedNodesBefore(pos);
18728
16472
  if (inner != stack.node) {
@@ -18732,18 +16476,18 @@ function syntaxIndentation(cx2, ast, pos) {
18732
16476
  for (let i = add.length - 1; i >= 0; i--)
18733
16477
  stack = { node: add[i], next: stack };
18734
16478
  }
18735
- return indentFor(stack, cx2, pos);
16479
+ return indentFor(stack, cx, pos);
18736
16480
  }
18737
- function indentFor(stack, cx2, pos) {
16481
+ function indentFor(stack, cx, pos) {
18738
16482
  for (let cur2 = stack; cur2; cur2 = cur2.next) {
18739
16483
  let strategy = indentStrategy(cur2.node);
18740
16484
  if (strategy)
18741
- return strategy(TreeIndentContext.create(cx2, pos, cur2));
16485
+ return strategy(TreeIndentContext.create(cx, pos, cur2));
18742
16486
  }
18743
16487
  return 0;
18744
16488
  }
18745
- function ignoreClosed(cx2) {
18746
- return cx2.pos == cx2.options.simulateBreak && cx2.options.simulateDoubleBreak;
16489
+ function ignoreClosed(cx) {
16490
+ return cx.pos == cx.options.simulateBreak && cx.options.simulateDoubleBreak;
18747
16491
  }
18748
16492
  function indentStrategy(tree) {
18749
16493
  let strategy = tree.type.prop(indentNodeProp);
@@ -18752,7 +16496,7 @@ function indentStrategy(tree) {
18752
16496
  let first = tree.firstChild, close;
18753
16497
  if (first && (close = first.type.prop(NodeProp.closedBy))) {
18754
16498
  let last = tree.lastChild, closed = last && close.indexOf(last.name) > -1;
18755
- return (cx2) => delimitedStrategy(cx2, true, 1, void 0, closed && !ignoreClosed(cx2) ? last.from : void 0);
16499
+ return (cx) => delimitedStrategy(cx, true, 1, void 0, closed && !ignoreClosed(cx) ? last.from : void 0);
18756
16500
  }
18757
16501
  return tree.parent == null ? topIndent : null;
18758
16502
  }
@@ -20300,7 +18044,7 @@ const completionPlugin = /* @__PURE__ */ ViewPlugin.fromClass(class {
20300
18044
  if (update.transactions.some((tr) => tr.effects.some((e) => e.is(startCompletionEffect))))
20301
18045
  this.pendingStart = true;
20302
18046
  let delay = this.pendingStart ? 50 : update.state.facet(completionConfig).activateOnTypingDelay;
20303
- this.debounceUpdate = cState.active.some((a) => a.state == 1 && !this.running.some((q) => q.active.source == a.source)) ? setTimeout(() => this.startUpdate(), delay) : -1;
18047
+ this.debounceUpdate = cState.active.some((a) => a.state == 1 && !this.running.some((q2) => q2.active.source == a.source)) ? setTimeout(() => this.startUpdate(), delay) : -1;
20304
18048
  if (this.composing != 0)
20305
18049
  for (let tr of update.transactions) {
20306
18050
  if (getUserEvent(tr) == "input")
@@ -20334,7 +18078,7 @@ const completionPlugin = /* @__PURE__ */ ViewPlugin.fromClass(class {
20334
18078
  });
20335
18079
  }
20336
18080
  scheduleAccept() {
20337
- if (this.running.every((q) => q.done !== void 0))
18081
+ if (this.running.every((q2) => q2.done !== void 0))
20338
18082
  this.accept();
20339
18083
  else if (this.debounceAccept < 0)
20340
18084
  this.debounceAccept = setTimeout(() => this.accept(), this.view.state.facet(completionConfig).updateSyncTime);
@@ -21011,8 +18755,8 @@ class Stack {
21011
18755
  @internal
21012
18756
  */
21013
18757
  static start(p, state2, pos = 0) {
21014
- let cx2 = p.parser.context;
21015
- return new Stack(p, [], state2, pos, pos, 0, [], 0, cx2 ? new StackContext(cx2, cx2.start) : null, 0, null);
18758
+ let cx = p.parser.context;
18759
+ return new Stack(p, [], state2, pos, pos, 0, [], 0, cx ? new StackContext(cx, cx.start) : null, 0, null);
21016
18760
  }
21017
18761
  /**
21018
18762
  The stack's current [context](#lr.ContextTracker) value, if
@@ -23855,8 +21599,8 @@ const tagStart = new ExternalTokenizer((input, stack) => {
23855
21599
  return input.acceptToken(missingCloseTag, -2);
23856
21600
  if (stack.dialectEnabled(Dialect_noMatch))
23857
21601
  return input.acceptToken(NoMatchStartCloseTag);
23858
- for (let cx2 = stack.context; cx2; cx2 = cx2.parent)
23859
- if (cx2.name == name2)
21602
+ for (let cx = stack.context; cx; cx = cx.parent)
21603
+ if (cx.name == name2)
23860
21604
  return;
23861
21605
  input.acceptToken(MismatchedStartCloseTag);
23862
21606
  } else {
@@ -24418,7 +22162,7 @@ const javascriptLanguage = /* @__PURE__ */ LRLanguage.define({
24418
22162
  return context.baseIndent + (closed ? 0 : isCase ? 1 : 2) * context.unit;
24419
22163
  },
24420
22164
  Block: /* @__PURE__ */ delimitedIndent({ closing: "}" }),
24421
- ArrowFunction: (cx2) => cx2.baseIndent + cx2.unit,
22165
+ ArrowFunction: (cx) => cx.baseIndent + cx.unit,
24422
22166
  "TemplateString BlockComment": () => null,
24423
22167
  "Statement Property": /* @__PURE__ */ continuedIndent({ except: /^{/ }),
24424
22168
  JSXElement(context) {
@@ -25676,21 +23420,21 @@ const yamlLanguage = /* @__PURE__ */ LRLanguage.define({
25676
23420
  parser: /* @__PURE__ */ parser.configure({
25677
23421
  props: [
25678
23422
  /* @__PURE__ */ indentNodeProp.add({
25679
- Stream: (cx2) => {
25680
- for (let before = cx2.node.resolve(cx2.pos, -1); before && before.to >= cx2.pos; before = before.parent) {
23423
+ Stream: (cx) => {
23424
+ for (let before = cx.node.resolve(cx.pos, -1); before && before.to >= cx.pos; before = before.parent) {
25681
23425
  if (before.name == "BlockLiteralContent" && before.from < before.to)
25682
- return cx2.baseIndentFor(before);
23426
+ return cx.baseIndentFor(before);
25683
23427
  if (before.name == "BlockLiteral")
25684
- return cx2.baseIndentFor(before) + cx2.unit;
23428
+ return cx.baseIndentFor(before) + cx.unit;
25685
23429
  if (before.name == "BlockSequence" || before.name == "BlockMapping")
25686
- return cx2.column(before.from, 1);
23430
+ return cx.column(before.from, 1);
25687
23431
  if (before.name == "QuotedLiteral")
25688
23432
  return null;
25689
23433
  if (before.name == "Literal") {
25690
- let col = cx2.column(before.from, 1);
25691
- if (col == cx2.lineIndent(before.from, 1))
23434
+ let col = cx.column(before.from, 1);
23435
+ if (col == cx.lineIndent(before.from, 1))
25692
23436
  return col;
25693
- if (before.to > cx2.pos)
23437
+ if (before.to > cx.pos)
25694
23438
  return null;
25695
23439
  }
25696
23440
  }
@@ -25717,7 +23461,7 @@ var createTheme = (_ref) => {
25717
23461
  var {
25718
23462
  theme: theme2,
25719
23463
  settings = {},
25720
- styles: styles2 = []
23464
+ styles = []
25721
23465
  } = _ref;
25722
23466
  var themeOptions = {
25723
23467
  ".cm-gutters": {}
@@ -25781,7 +23525,7 @@ var createTheme = (_ref) => {
25781
23525
  var themeExtension = EditorView.theme(themeOptions, {
25782
23526
  dark: theme2 === "dark"
25783
23527
  });
25784
- var highlightStyle = HighlightStyle.define(styles2);
23528
+ var highlightStyle = HighlightStyle.define(styles);
25785
23529
  var extension = [themeExtension, syntaxHighlighting(highlightStyle)];
25786
23530
  return extension;
25787
23531
  };
@@ -26122,7 +23866,7 @@ function getCodeMirrorExtensions({
26122
23866
  }
26123
23867
  return extensions;
26124
23868
  }
26125
- const _sfc_main$r = /* @__PURE__ */ defineComponent({
23869
+ const _sfc_main$p = /* @__PURE__ */ defineComponent({
26126
23870
  __name: "CodeMirror",
26127
23871
  props: {
26128
23872
  content: {},
@@ -26166,9 +23910,9 @@ const _export_sfc = (sfc, props) => {
26166
23910
  }
26167
23911
  return target;
26168
23912
  };
26169
- const CodeMirror = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-9f50a430"]]);
23913
+ const CodeMirror = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-9f50a430"]]);
26170
23914
  const _hoisted_1$m = { class: "scalar-modal-layout modal-layout" };
26171
- const _sfc_main$q = /* @__PURE__ */ defineComponent({
23915
+ const _sfc_main$o = /* @__PURE__ */ defineComponent({
26172
23916
  __name: "FlowModal",
26173
23917
  props: {
26174
23918
  state: {},
@@ -26223,7 +23967,7 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
26223
23967
  };
26224
23968
  }
26225
23969
  });
26226
- const FlowModal = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-a06b8e92"]]);
23970
+ const FlowModal = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-a06b8e92"]]);
26227
23971
  const useModal = () => reactive({
26228
23972
  open: false,
26229
23973
  show() {
@@ -26504,7 +24248,7 @@ async function sendRequest(request, proxyUrl) {
26504
24248
  const _hoisted_1$l = { class: "navtable-item-40 navtable-item-request" };
26505
24249
  const _hoisted_2$f = { class: "navtable-item-40 navtable-item-response" };
26506
24250
  const _hoisted_3$a = { class: "navtable-item-20 navtable-item-time" };
26507
- const _sfc_main$p = /* @__PURE__ */ defineComponent({
24251
+ const _sfc_main$n = /* @__PURE__ */ defineComponent({
26508
24252
  __name: "RequestHistoryItem",
26509
24253
  props: {
26510
24254
  history: {}
@@ -26551,14 +24295,14 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
26551
24295
  };
26552
24296
  }
26553
24297
  });
26554
- const RequestHistoryItem = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-dd49a57f"]]);
24298
+ const RequestHistoryItem = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-dd49a57f"]]);
26555
24299
  const _hoisted_1$k = { class: "navigation-content-item" };
26556
24300
  const _hoisted_2$e = { class: "navtable" };
26557
24301
  const _hoisted_3$9 = { class: "navtable-table" };
26558
24302
  const _hoisted_4$7 = /* @__PURE__ */ createStaticVNode('<div class="navtable-item navtable-item__top"><div class="navtable-item-40"><label for="">Request</label></div><div class="navtable-item-40"><label for="">Response</label></div><div class="navtable-item-20"><label for="">TIME</label></div></div>', 1);
26559
24303
  const _hoisted_5$6 = { class: "navtable-radios" };
26560
24304
  const _hoisted_6$5 = /* @__PURE__ */ createStaticVNode('<div class="navtable-mock"><div class="navtable-item"><div class="navtable-item-40"></div><div class="navtable-item-40"></div><div class="navtable-item-20"></div></div></div>', 1);
26561
- const _sfc_main$o = /* @__PURE__ */ defineComponent({
24305
+ const _sfc_main$m = /* @__PURE__ */ defineComponent({
26562
24306
  __name: "RequestHistory",
26563
24307
  emits: ["toggle"],
26564
24308
  setup(__props) {
@@ -26586,7 +24330,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
26586
24330
  const _hoisted_1$j = { class: "request-method-select" };
26587
24331
  const _hoisted_2$d = ["disabled", "value"];
26588
24332
  const _hoisted_3$8 = ["value"];
26589
- const _sfc_main$n = /* @__PURE__ */ defineComponent({
24333
+ const _sfc_main$l = /* @__PURE__ */ defineComponent({
26590
24334
  __name: "RequestMethodSelect",
26591
24335
  props: {
26592
24336
  requestMethod: {},
@@ -26631,7 +24375,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
26631
24375
  };
26632
24376
  }
26633
24377
  });
26634
- const RequestMethodSelect = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-8e2122cd"]]);
24378
+ const RequestMethodSelect = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-8e2122cd"]]);
26635
24379
  const _withScopeId = (n) => (pushScopeId("data-v-75df9114"), n = n(), popScopeId(), n);
26636
24380
  const _hoisted_1$i = {
26637
24381
  key: 0,
@@ -26691,7 +24435,7 @@ const _hoisted_10$2 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createE
26691
24435
  })
26692
24436
  ])
26693
24437
  ], -1));
26694
- const _sfc_main$m = /* @__PURE__ */ defineComponent({
24438
+ const _sfc_main$k = /* @__PURE__ */ defineComponent({
26695
24439
  __name: "AddressBar",
26696
24440
  props: {
26697
24441
  proxyUrl: {}
@@ -26795,7 +24539,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
26795
24539
  variant: "history"
26796
24540
  }, {
26797
24541
  default: withCtx(() => [
26798
- createVNode(_sfc_main$o, {
24542
+ createVNode(_sfc_main$m, {
26799
24543
  showHistory: showHistory.value,
26800
24544
  onToggle: _cache[1] || (_cache[1] = ($event) => showHistory.value = !showHistory.value)
26801
24545
  }, null, 8, ["showHistory"])
@@ -26817,7 +24561,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
26817
24561
  };
26818
24562
  }
26819
24563
  });
26820
- const AddressBar = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-75df9114"]]);
24564
+ const AddressBar = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-75df9114"]]);
26821
24565
  const _hoisted_1$h = /* @__PURE__ */ createElementVNode("svg", {
26822
24566
  class: "scalar-api-client__toggle__icon",
26823
24567
  height: "10",
@@ -26837,7 +24581,7 @@ const _hoisted_3$6 = {
26837
24581
  class: "scalar-api-client__item__options"
26838
24582
  };
26839
24583
  const _hoisted_4$5 = { class: "scalar-api-client__item__content" };
26840
- const _sfc_main$l = /* @__PURE__ */ defineComponent({
24584
+ const _sfc_main$j = /* @__PURE__ */ defineComponent({
26841
24585
  __name: "CollapsibleSection",
26842
24586
  props: {
26843
24587
  title: {},
@@ -26957,7 +24701,7 @@ const _hoisted_35 = /* @__PURE__ */ createElementVNode("label", { for: "Username
26957
24701
  const _hoisted_36 = { class: "check" };
26958
24702
  const _hoisted_37 = /* @__PURE__ */ createElementVNode("span", { class: "checkmark" }, null, -1);
26959
24703
  const _hoisted_38 = /* @__PURE__ */ createElementVNode("p", null, "Enabled", -1);
26960
- const _sfc_main$k = /* @__PURE__ */ defineComponent({
24704
+ const _sfc_main$i = /* @__PURE__ */ defineComponent({
26961
24705
  __name: "RequestAuth",
26962
24706
  setup(__props) {
26963
24707
  const store = useRequestStore();
@@ -26993,7 +24737,7 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
26993
24737
  }
26994
24738
  ];
26995
24739
  return (_ctx, _cache) => {
26996
- return openBlock(), createBlock(unref(_sfc_main$l), { title: "Authentication" }, {
24740
+ return openBlock(), createBlock(unref(_sfc_main$j), { title: "Authentication" }, {
26997
24741
  options: withCtx(() => [
26998
24742
  createElementVNode("div", null, [
26999
24743
  createElementVNode("span", null, [
@@ -29812,56 +27556,6 @@ function mergeConfigProperties(baseObject, mergeObject) {
29812
27556
  function extendTailwindMerge(configExtension, ...createConfig) {
29813
27557
  return typeof configExtension === "function" ? createTailwindMerge(getDefaultConfig, configExtension, ...createConfig) : createTailwindMerge(() => mergeConfigs(getDefaultConfig(), configExtension), ...createConfig);
29814
27558
  }
29815
- const classPrefix = "scalar-component";
29816
- const tw = extendTailwindMerge({
29817
- extend: {
29818
- classGroups: {
29819
- // Add the scalar class prefix as a custom class to be deduped by tailwind-merge
29820
- [classPrefix]: [classPrefix]
29821
- }
29822
- }
29823
- });
29824
- const { cva, cx, compose } = defineConfig({
29825
- hooks: {
29826
- onComplete: (className) => `${tw(className, classPrefix)}`
29827
- }
29828
- });
29829
- const styles = {
29830
- solid: [
29831
- "scalar-button-solid",
29832
- "bg-back-btn-1 text-fore-btn-1 shadow-sm active:bg-back-btn-1 active:shadow-none hocus:bg-hover-btn-1"
29833
- ],
29834
- outlined: [
29835
- "scalar-button-outlined",
29836
- "active:bg-btn-1 border border-solid border-border bg-transparent text-fore-1 hocus:bg-back-2"
29837
- ],
29838
- ghost: [
29839
- "scalar-button-ghost",
29840
- "bg-transparent text-fore-3 active:text-fore-2 hocus:text-fore-2"
29841
- ],
29842
- danger: [
29843
- "scalar-button-danger",
29844
- "bg-error text-white active:brightness-90 hocus:brightness-90"
29845
- ]
29846
- };
29847
- cva({
29848
- base: "scalar-button row cursor-pointer items-center justify-center rounded font-medium",
29849
- variants: {
29850
- disabled: {
29851
- true: "bg-background-2 text-color-3 cursor-not-allowed shadow-none"
29852
- },
29853
- fullWidth: { true: "w-full" },
29854
- size: { md: "h-10 px-6 text-sm" },
29855
- variant: styles
29856
- },
29857
- compoundVariants: [
29858
- {
29859
- disabled: true,
29860
- variant: "ghost",
29861
- class: "bg-transparent text-ghost"
29862
- }
29863
- ]
29864
- });
29865
27559
  var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
29866
27560
  function getDefaultExportFromCjs(x) {
29867
27561
  return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
@@ -31321,42 +29015,88 @@ var prism = { exports: {} };
31321
29015
  })();
31322
29016
  })(prism);
31323
29017
  var prismExports = prism.exports;
31324
- const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31325
- (function(Prism2) {
31326
- 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";
31327
- var commandAfterHeredoc = {
29018
+ const q = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
29019
+ const R = "scalar-component", fe = extendTailwindMerge({
29020
+ extend: {
29021
+ classGroups: {
29022
+ // Add the scalar class prefix as a custom class to be deduped by tailwind-merge
29023
+ [R]: [R]
29024
+ }
29025
+ }
29026
+ }), { cva: N, cx: E, compose: gt } = defineConfig({
29027
+ hooks: {
29028
+ onComplete: (r2) => `${fe(r2, R)}`
29029
+ }
29030
+ });
29031
+ const Y = {
29032
+ solid: [
29033
+ "scalar-button-solid",
29034
+ "bg-back-btn-1 text-fore-btn-1 shadow-sm active:bg-back-btn-1 active:shadow-none hocus:bg-hover-btn-1"
29035
+ ],
29036
+ outlined: [
29037
+ "scalar-button-outlined",
29038
+ "active:bg-btn-1 border border-solid border-border bg-transparent text-fore-1 hocus:bg-back-2"
29039
+ ],
29040
+ ghost: [
29041
+ "scalar-button-ghost",
29042
+ "bg-transparent text-fore-3 active:text-fore-2 hocus:text-fore-2"
29043
+ ],
29044
+ danger: [
29045
+ "scalar-button-danger",
29046
+ "bg-error text-white active:brightness-90 hocus:brightness-90"
29047
+ ]
29048
+ };
29049
+ N({
29050
+ base: "scalar-button row cursor-pointer items-center justify-center rounded font-medium",
29051
+ variants: {
29052
+ disabled: {
29053
+ true: "bg-background-2 text-color-3 cursor-not-allowed shadow-none"
29054
+ },
29055
+ fullWidth: { true: "w-full" },
29056
+ size: { md: "h-10 px-6 text-sm" },
29057
+ variant: Y
29058
+ },
29059
+ compoundVariants: [
29060
+ {
29061
+ disabled: true,
29062
+ variant: "ghost",
29063
+ class: "bg-transparent text-ghost"
29064
+ }
29065
+ ]
29066
+ });
29067
+ (function(r2) {
29068
+ var t2 = "\\b(?:BASH|BASHOPTS|BASH_ALIASES|BASH_ARGC|BASH_ARGV|BASH_CMDS|BASH_COMPLETION_COMPAT_DIR|BASH_LINENO|BASH_REMATCH|BASH_SOURCE|BASH_VERSINFO|BASH_VERSION|COLORTERM|COLUMNS|COMP_WORDBREAKS|DBUS_SESSION_BUS_ADDRESS|DEFAULTS_PATH|DESKTOP_SESSION|DIRSTACK|DISPLAY|EUID|GDMSESSION|GDM_LANG|GNOME_KEYRING_CONTROL|GNOME_KEYRING_PID|GPG_AGENT_INFO|GROUPS|HISTCONTROL|HISTFILE|HISTFILESIZE|HISTSIZE|HOME|HOSTNAME|HOSTTYPE|IFS|INSTANCE|JOB|LANG|LANGUAGE|LC_ADDRESS|LC_ALL|LC_IDENTIFICATION|LC_MEASUREMENT|LC_MONETARY|LC_NAME|LC_NUMERIC|LC_PAPER|LC_TELEPHONE|LC_TIME|LESSCLOSE|LESSOPEN|LINES|LOGNAME|LS_COLORS|MACHTYPE|MAILCHECK|MANDATORY_PATH|NO_AT_BRIDGE|OLDPWD|OPTERR|OPTIND|ORBIT_SOCKETDIR|OSTYPE|PAPERSIZE|PATH|PIPESTATUS|PPID|PS1|PS2|PS3|PS4|PWD|RANDOM|REPLY|SECONDS|SELINUX_INIT|SESSION|SESSIONTYPE|SESSION_MANAGER|SHELL|SHELLOPTS|SHLVL|SSH_AUTH_SOCK|TERM|UID|UPSTART_EVENTS|UPSTART_INSTANCE|UPSTART_JOB|UPSTART_SESSION|USER|WINDOWID|XAUTHORITY|XDG_CONFIG_DIRS|XDG_CURRENT_DESKTOP|XDG_DATA_DIRS|XDG_GREETER_DATA_DIR|XDG_MENU_PREFIX|XDG_RUNTIME_DIR|XDG_SEAT|XDG_SEAT_PATH|XDG_SESSION_DESKTOP|XDG_SESSION_ID|XDG_SESSION_PATH|XDG_SESSION_TYPE|XDG_VTNR|XMODIFIERS)\\b", e = {
31328
29069
  pattern: /(^(["']?)\w+\2)[ \t]+\S.*/,
31329
29070
  lookbehind: true,
31330
29071
  alias: "punctuation",
31331
29072
  // this looks reasonably well in all themes
31332
29073
  inside: null
31333
29074
  // see below
31334
- };
31335
- var insideString = {
31336
- "bash": commandAfterHeredoc,
31337
- "environment": {
31338
- pattern: RegExp("\\$" + envVars),
29075
+ }, s = {
29076
+ bash: e,
29077
+ environment: {
29078
+ pattern: RegExp("\\$" + t2),
31339
29079
  alias: "constant"
31340
29080
  },
31341
- "variable": [
29081
+ variable: [
31342
29082
  // [0]: Arithmetic Environment
31343
29083
  {
31344
29084
  pattern: /\$?\(\([\s\S]+?\)\)/,
31345
29085
  greedy: true,
31346
29086
  inside: {
31347
29087
  // If there is a $ sign at the beginning highlight $(( and )) as variable
31348
- "variable": [
29088
+ variable: [
31349
29089
  {
31350
29090
  pattern: /(^\$\(\([\s\S]+)\)\)/,
31351
29091
  lookbehind: true
31352
29092
  },
31353
29093
  /^\$\(\(/
31354
29094
  ],
31355
- "number": /\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee]-?\d+)?/,
29095
+ number: /\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee]-?\d+)?/,
31356
29096
  // Operators according to https://www.gnu.org/software/bash/manual/bashref.html#Shell-Arithmetic
31357
- "operator": /--|\+\+|\*\*=?|<<=?|>>=?|&&|\|\||[=!+\-*/%<>^&|]=?|[?~:]/,
29097
+ operator: /--|\+\+|\*\*=?|<<=?|>>=?|&&|\|\||[=!+\-*/%<>^&|]=?|[?~:]/,
31358
29098
  // If there is no $ sign at the beginning highlight (( and )) as punctuation
31359
- "punctuation": /\(\(?|\)\)?|,|;/
29099
+ punctuation: /\(\(?|\)\)?|,|;/
31360
29100
  }
31361
29101
  },
31362
29102
  // [1]: Command Substitution
@@ -31364,7 +29104,7 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31364
29104
  pattern: /\$\((?:\([^)]+\)|[^()])+\)|`[^`]+`/,
31365
29105
  greedy: true,
31366
29106
  inside: {
31367
- "variable": /^\$\(|^`|\)$|`$/
29107
+ variable: /^\$\(|^`|\)$|`$/
31368
29108
  }
31369
29109
  },
31370
29110
  // [2]: Brace expansion
@@ -31372,10 +29112,10 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31372
29112
  pattern: /\$\{[^}]+\}/,
31373
29113
  greedy: true,
31374
29114
  inside: {
31375
- "operator": /:[-=?+]?|[!\/]|##?|%%?|\^\^?|,,?/,
31376
- "punctuation": /[\[\]]/,
31377
- "environment": {
31378
- pattern: RegExp("(\\{)" + envVars),
29115
+ operator: /:[-=?+]?|[!\/]|##?|%%?|\^\^?|,,?/,
29116
+ punctuation: /[\[\]]/,
29117
+ environment: {
29118
+ pattern: RegExp("(\\{)" + t2),
31379
29119
  lookbehind: true,
31380
29120
  alias: "constant"
31381
29121
  }
@@ -31384,14 +29124,14 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31384
29124
  /\$(?:\w+|[#?*!@$])/
31385
29125
  ],
31386
29126
  // Escape sequences from echo and printf's manuals, and escaped quotes.
31387
- "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})/
29127
+ entity: /\\(?:[abceEfnrtv\\"]|O?[0-7]{1,3}|U[0-9a-fA-F]{8}|u[0-9a-fA-F]{4}|x[0-9a-fA-F]{1,2})/
31388
29128
  };
31389
- Prism2.languages.bash = {
31390
- "shebang": {
29129
+ r2.languages.bash = {
29130
+ shebang: {
31391
29131
  pattern: /^#!\s*\/.*/,
31392
29132
  alias: "important"
31393
29133
  },
31394
- "comment": {
29134
+ comment: {
31395
29135
  pattern: /(^|[^"{\\$])#.*/,
31396
29136
  lookbehind: true
31397
29137
  },
@@ -31423,8 +29163,8 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31423
29163
  "assign-left": {
31424
29164
  pattern: /(^|[\s;|&]|[<>]\()\w+(?:\.\w+)*(?=\+?=)/,
31425
29165
  inside: {
31426
- "environment": {
31427
- pattern: RegExp("(^|[\\s;|&]|[<>]\\()" + envVars),
29166
+ environment: {
29167
+ pattern: RegExp("(^|[\\s;|&]|[<>]\\()" + t2),
31428
29168
  lookbehind: true,
31429
29169
  alias: "constant"
31430
29170
  }
@@ -31433,18 +29173,18 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31433
29173
  lookbehind: true
31434
29174
  },
31435
29175
  // Highlight parameter names as variables
31436
- "parameter": {
29176
+ parameter: {
31437
29177
  pattern: /(^|\s)-{1,2}(?:\w+:[+-]?)?\w+(?:\.\w+)*(?=[=\s]|$)/,
31438
29178
  alias: "variable",
31439
29179
  lookbehind: true
31440
29180
  },
31441
- "string": [
29181
+ string: [
31442
29182
  // Support for Here-documents https://en.wikipedia.org/wiki/Here_document
31443
29183
  {
31444
29184
  pattern: /((?:^|[^<])<<-?\s*)(\w+)\s[\s\S]*?(?:\r?\n|\r)\2/,
31445
29185
  lookbehind: true,
31446
29186
  greedy: true,
31447
- inside: insideString
29187
+ inside: s
31448
29188
  },
31449
29189
  // Here-document with quotes around the tag
31450
29190
  // → No expansion (so no “inside”).
@@ -31453,7 +29193,7 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31453
29193
  lookbehind: true,
31454
29194
  greedy: true,
31455
29195
  inside: {
31456
- "bash": commandAfterHeredoc
29196
+ bash: e
31457
29197
  }
31458
29198
  },
31459
29199
  // “Normal” string
@@ -31462,7 +29202,7 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31462
29202
  pattern: /(^|[^\\](?:\\\\)*)"(?:\\[\s\S]|\$\([^)]+\)|\$(?!\()|`[^`]+`|[^"\\`$])*"/,
31463
29203
  lookbehind: true,
31464
29204
  greedy: true,
31465
- inside: insideString
29205
+ inside: s
31466
29206
  },
31467
29207
  {
31468
29208
  // https://www.gnu.org/software/bash/manual/html_node/Single-Quotes.html
@@ -31475,31 +29215,31 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31475
29215
  pattern: /\$'(?:[^'\\]|\\[\s\S])*'/,
31476
29216
  greedy: true,
31477
29217
  inside: {
31478
- "entity": insideString.entity
29218
+ entity: s.entity
31479
29219
  }
31480
29220
  }
31481
29221
  ],
31482
- "environment": {
31483
- pattern: RegExp("\\$?" + envVars),
29222
+ environment: {
29223
+ pattern: RegExp("\\$?" + t2),
31484
29224
  alias: "constant"
31485
29225
  },
31486
- "variable": insideString.variable,
31487
- "function": {
29226
+ variable: s.variable,
29227
+ function: {
31488
29228
  pattern: /(^|[\s;|&]|[<>]\()(?:add|apropos|apt|apt-cache|apt-get|aptitude|aspell|automysqlbackup|awk|basename|bash|bc|bconsole|bg|bzip2|cal|cargo|cat|cfdisk|chgrp|chkconfig|chmod|chown|chroot|cksum|clear|cmp|column|comm|composer|cp|cron|crontab|csplit|curl|cut|date|dc|dd|ddrescue|debootstrap|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|docker|docker-compose|du|egrep|eject|env|ethtool|expand|expect|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fuser|gawk|git|gparted|grep|groupadd|groupdel|groupmod|groups|grub-mkconfig|gzip|halt|head|hg|history|host|hostname|htop|iconv|id|ifconfig|ifdown|ifup|import|install|ip|java|jobs|join|kill|killall|less|link|ln|locate|logname|logrotate|look|lpc|lpr|lprint|lprintd|lprintq|lprm|ls|lsof|lynx|make|man|mc|mdadm|mkconfig|mkdir|mke2fs|mkfifo|mkfs|mkisofs|mknod|mkswap|mmv|more|most|mount|mtools|mtr|mutt|mv|nano|nc|netstat|nice|nl|node|nohup|notify-send|npm|nslookup|op|open|parted|passwd|paste|pathchk|ping|pkill|pnpm|podman|podman-compose|popd|pr|printcap|printenv|ps|pushd|pv|quota|quotacheck|quotactl|ram|rar|rcp|reboot|remsync|rename|renice|rev|rm|rmdir|rpm|rsync|scp|screen|sdiff|sed|sendmail|seq|service|sftp|sh|shellcheck|shuf|shutdown|sleep|slocate|sort|split|ssh|stat|strace|su|sudo|sum|suspend|swapon|sync|sysctl|tac|tail|tar|tee|time|timeout|top|touch|tr|traceroute|tsort|tty|umount|uname|unexpand|uniq|units|unrar|unshar|unzip|update-grub|uptime|useradd|userdel|usermod|users|uudecode|uuencode|v|vcpkg|vdir|vi|vim|virsh|vmstat|wait|watch|wc|wget|whereis|which|who|whoami|write|xargs|xdg-open|yarn|yes|zenity|zip|zsh|zypper)(?=$|[)\s;|&])/,
31489
29229
  lookbehind: true
31490
29230
  },
31491
- "keyword": {
29231
+ keyword: {
31492
29232
  pattern: /(^|[\s;|&]|[<>]\()(?:case|do|done|elif|else|esac|fi|for|function|if|in|select|then|until|while)(?=$|[)\s;|&])/,
31493
29233
  lookbehind: true
31494
29234
  },
31495
29235
  // https://www.gnu.org/software/bash/manual/html_node/Shell-Builtin-Commands.html
31496
- "builtin": {
29236
+ builtin: {
31497
29237
  pattern: /(^|[\s;|&]|[<>]\()(?:\.|:|alias|bind|break|builtin|caller|cd|command|continue|declare|echo|enable|eval|exec|exit|export|getopts|hash|help|let|local|logout|mapfile|printf|pwd|read|readarray|readonly|return|set|shift|shopt|source|test|times|trap|type|typeset|ulimit|umask|unalias|unset)(?=$|[)\s;|&])/,
31498
29238
  lookbehind: true,
31499
29239
  // Alias added to make those easier to distinguish from strings.
31500
29240
  alias: "class-name"
31501
29241
  },
31502
- "boolean": {
29242
+ boolean: {
31503
29243
  pattern: /(^|[\s;|&]|[<>]\()(?:false|true)(?=$|[)\s;|&])/,
31504
29244
  lookbehind: true
31505
29245
  },
@@ -31507,7 +29247,7 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31507
29247
  pattern: /\B&\d\b/,
31508
29248
  alias: "important"
31509
29249
  },
31510
- "operator": {
29250
+ operator: {
31511
29251
  // Lots of redirections here, but not just that.
31512
29252
  pattern: /\d?<>|>\||\+=|=[=~]?|!=?|<<[<-]?|[&\d]?>>|\d[<>]&?|[<>][&=]?|&[>&]?|\|[&|]?/,
31513
29253
  inside: {
@@ -31517,14 +29257,13 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31517
29257
  }
31518
29258
  }
31519
29259
  },
31520
- "punctuation": /\$?\(\(?|\)\)?|\.\.|[{}[\];\\]/,
31521
- "number": {
29260
+ punctuation: /\$?\(\(?|\)\)?|\.\.|[{}[\];\\]/,
29261
+ number: {
31522
29262
  pattern: /(^|\s)(?:[1-9]\d*|0)(?:[.,]\d+)?\b/,
31523
29263
  lookbehind: true
31524
29264
  }
31525
- };
31526
- commandAfterHeredoc.inside = Prism2.languages.bash;
31527
- var toBeCopied = [
29265
+ }, e.inside = r2.languages.bash;
29266
+ for (var u = [
31528
29267
  "comment",
31529
29268
  "function-name",
31530
29269
  "for-or-select",
@@ -31540,177 +29279,172 @@ const prismjs = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
31540
29279
  "operator",
31541
29280
  "punctuation",
31542
29281
  "number"
31543
- ];
31544
- var inside2 = insideString.variable[1].inside;
31545
- for (var i = 0; i < toBeCopied.length; i++) {
31546
- inside2[toBeCopied[i]] = Prism2.languages.bash[toBeCopied[i]];
31547
- }
31548
- Prism2.languages.sh = Prism2.languages.bash;
31549
- Prism2.languages.shell = Prism2.languages.bash;
29282
+ ], f = s.variable[1].inside, a = 0; a < u.length; a++)
29283
+ f[u[a]] = r2.languages.bash[u[a]];
29284
+ r2.languages.sh = r2.languages.bash, r2.languages.shell = r2.languages.bash;
31550
29285
  })(Prism);
31551
29286
  Prism.languages.json = {
31552
- "property": {
29287
+ property: {
31553
29288
  pattern: /(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?=\s*:)/,
31554
29289
  lookbehind: true,
31555
29290
  greedy: true
31556
29291
  },
31557
- "string": {
29292
+ string: {
31558
29293
  pattern: /(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?!\s*:)/,
31559
29294
  lookbehind: true,
31560
29295
  greedy: true
31561
29296
  },
31562
- "comment": {
29297
+ comment: {
31563
29298
  pattern: /\/\/.*|\/\*[\s\S]*?(?:\*\/|$)/,
31564
29299
  greedy: true
31565
29300
  },
31566
- "number": /-?\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i,
31567
- "punctuation": /[{}[\],]/,
31568
- "operator": /:/,
31569
- "boolean": /\b(?:false|true)\b/,
31570
- "null": {
29301
+ number: /-?\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i,
29302
+ punctuation: /[{}[\],]/,
29303
+ operator: /:/,
29304
+ boolean: /\b(?:false|true)\b/,
29305
+ null: {
31571
29306
  pattern: /\bnull\b/,
31572
29307
  alias: "keyword"
31573
29308
  }
31574
29309
  };
31575
29310
  Prism.languages.webmanifest = Prism.languages.json;
31576
29311
  (function() {
31577
- if (typeof Prism === "undefined" || typeof document === "undefined") {
29312
+ if (typeof Prism > "u" || typeof document > "u")
31578
29313
  return;
31579
- }
31580
- var lang_dependencies = (
29314
+ var r2 = (
31581
29315
  /*dependencies_placeholder[*/
31582
29316
  {
31583
- "javascript": "clike",
31584
- "actionscript": "javascript",
31585
- "apex": [
29317
+ javascript: "clike",
29318
+ actionscript: "javascript",
29319
+ apex: [
31586
29320
  "clike",
31587
29321
  "sql"
31588
29322
  ],
31589
- "arduino": "cpp",
31590
- "aspnet": [
29323
+ arduino: "cpp",
29324
+ aspnet: [
31591
29325
  "markup",
31592
29326
  "csharp"
31593
29327
  ],
31594
- "birb": "clike",
31595
- "bison": "c",
31596
- "c": "clike",
31597
- "csharp": "clike",
31598
- "cpp": "c",
31599
- "cfscript": "clike",
31600
- "chaiscript": [
29328
+ birb: "clike",
29329
+ bison: "c",
29330
+ c: "clike",
29331
+ csharp: "clike",
29332
+ cpp: "c",
29333
+ cfscript: "clike",
29334
+ chaiscript: [
31601
29335
  "clike",
31602
29336
  "cpp"
31603
29337
  ],
31604
- "cilkc": "c",
31605
- "cilkcpp": "cpp",
31606
- "coffeescript": "javascript",
31607
- "crystal": "ruby",
29338
+ cilkc: "c",
29339
+ cilkcpp: "cpp",
29340
+ coffeescript: "javascript",
29341
+ crystal: "ruby",
31608
29342
  "css-extras": "css",
31609
- "d": "clike",
31610
- "dart": "clike",
31611
- "django": "markup-templating",
31612
- "ejs": [
29343
+ d: "clike",
29344
+ dart: "clike",
29345
+ django: "markup-templating",
29346
+ ejs: [
31613
29347
  "javascript",
31614
29348
  "markup-templating"
31615
29349
  ],
31616
- "etlua": [
29350
+ etlua: [
31617
29351
  "lua",
31618
29352
  "markup-templating"
31619
29353
  ],
31620
- "erb": [
29354
+ erb: [
31621
29355
  "ruby",
31622
29356
  "markup-templating"
31623
29357
  ],
31624
- "fsharp": "clike",
29358
+ fsharp: "clike",
31625
29359
  "firestore-security-rules": "clike",
31626
- "flow": "javascript",
31627
- "ftl": "markup-templating",
31628
- "gml": "clike",
31629
- "glsl": "c",
31630
- "go": "clike",
31631
- "gradle": "clike",
31632
- "groovy": "clike",
31633
- "haml": "ruby",
31634
- "handlebars": "markup-templating",
31635
- "haxe": "clike",
31636
- "hlsl": "c",
31637
- "idris": "haskell",
31638
- "java": "clike",
31639
- "javadoc": [
29360
+ flow: "javascript",
29361
+ ftl: "markup-templating",
29362
+ gml: "clike",
29363
+ glsl: "c",
29364
+ go: "clike",
29365
+ gradle: "clike",
29366
+ groovy: "clike",
29367
+ haml: "ruby",
29368
+ handlebars: "markup-templating",
29369
+ haxe: "clike",
29370
+ hlsl: "c",
29371
+ idris: "haskell",
29372
+ java: "clike",
29373
+ javadoc: [
31640
29374
  "markup",
31641
29375
  "java",
31642
29376
  "javadoclike"
31643
29377
  ],
31644
- "jolie": "clike",
31645
- "jsdoc": [
29378
+ jolie: "clike",
29379
+ jsdoc: [
31646
29380
  "javascript",
31647
29381
  "javadoclike",
31648
29382
  "typescript"
31649
29383
  ],
31650
29384
  "js-extras": "javascript",
31651
- "json5": "json",
31652
- "jsonp": "json",
29385
+ json5: "json",
29386
+ jsonp: "json",
31653
29387
  "js-templates": "javascript",
31654
- "kotlin": "clike",
31655
- "latte": [
29388
+ kotlin: "clike",
29389
+ latte: [
31656
29390
  "clike",
31657
29391
  "markup-templating",
31658
29392
  "php"
31659
29393
  ],
31660
- "less": "css",
31661
- "lilypond": "scheme",
31662
- "liquid": "markup-templating",
31663
- "markdown": "markup",
29394
+ less: "css",
29395
+ lilypond: "scheme",
29396
+ liquid: "markup-templating",
29397
+ markdown: "markup",
31664
29398
  "markup-templating": "markup",
31665
- "mongodb": "javascript",
31666
- "n4js": "javascript",
31667
- "objectivec": "c",
31668
- "opencl": "c",
31669
- "parser": "markup",
31670
- "php": "markup-templating",
31671
- "phpdoc": [
29399
+ mongodb: "javascript",
29400
+ n4js: "javascript",
29401
+ objectivec: "c",
29402
+ opencl: "c",
29403
+ parser: "markup",
29404
+ php: "markup-templating",
29405
+ phpdoc: [
31672
29406
  "php",
31673
29407
  "javadoclike"
31674
29408
  ],
31675
29409
  "php-extras": "php",
31676
- "plsql": "sql",
31677
- "processing": "clike",
31678
- "protobuf": "clike",
31679
- "pug": [
29410
+ plsql: "sql",
29411
+ processing: "clike",
29412
+ protobuf: "clike",
29413
+ pug: [
31680
29414
  "markup",
31681
29415
  "javascript"
31682
29416
  ],
31683
- "purebasic": "clike",
31684
- "purescript": "haskell",
31685
- "qsharp": "clike",
31686
- "qml": "javascript",
31687
- "qore": "clike",
31688
- "racket": "scheme",
31689
- "cshtml": [
29417
+ purebasic: "clike",
29418
+ purescript: "haskell",
29419
+ qsharp: "clike",
29420
+ qml: "javascript",
29421
+ qore: "clike",
29422
+ racket: "scheme",
29423
+ cshtml: [
31690
29424
  "markup",
31691
29425
  "csharp"
31692
29426
  ],
31693
- "jsx": [
29427
+ jsx: [
31694
29428
  "markup",
31695
29429
  "javascript"
31696
29430
  ],
31697
- "tsx": [
29431
+ tsx: [
31698
29432
  "jsx",
31699
29433
  "typescript"
31700
29434
  ],
31701
- "reason": "clike",
31702
- "ruby": "clike",
31703
- "sass": "css",
31704
- "scss": "css",
31705
- "scala": "java",
29435
+ reason: "clike",
29436
+ ruby: "clike",
29437
+ sass: "css",
29438
+ scss: "css",
29439
+ scala: "java",
31706
29440
  "shell-session": "bash",
31707
- "smarty": "markup-templating",
31708
- "solidity": "clike",
31709
- "soy": "markup-templating",
31710
- "sparql": "turtle",
31711
- "sqf": "clike",
31712
- "squirrel": "clike",
31713
- "stata": [
29441
+ smarty: "markup-templating",
29442
+ solidity: "clike",
29443
+ soy: "markup-templating",
29444
+ sparql: "turtle",
29445
+ sqf: "clike",
29446
+ squirrel: "clike",
29447
+ stata: [
31714
29448
  "mata",
31715
29449
  "java",
31716
29450
  "python"
@@ -31723,305 +29457,231 @@ Prism.languages.webmanifest = Prism.languages.json;
31723
29457
  "t4-templating",
31724
29458
  "vbnet"
31725
29459
  ],
31726
- "tap": "yaml",
31727
- "tt2": [
29460
+ tap: "yaml",
29461
+ tt2: [
31728
29462
  "clike",
31729
29463
  "markup-templating"
31730
29464
  ],
31731
- "textile": "markup",
31732
- "twig": "markup-templating",
31733
- "typescript": "javascript",
31734
- "v": "clike",
31735
- "vala": "clike",
31736
- "vbnet": "basic",
31737
- "velocity": "markup",
31738
- "wiki": "markup",
31739
- "xeora": "markup",
29465
+ textile: "markup",
29466
+ twig: "markup-templating",
29467
+ typescript: "javascript",
29468
+ v: "clike",
29469
+ vala: "clike",
29470
+ vbnet: "basic",
29471
+ velocity: "markup",
29472
+ wiki: "markup",
29473
+ xeora: "markup",
31740
29474
  "xml-doc": "markup",
31741
- "xquery": "markup"
29475
+ xquery: "markup"
31742
29476
  }
31743
- );
31744
- var lang_aliases = (
29477
+ ), t2 = (
31745
29478
  /*aliases_placeholder[*/
31746
29479
  {
31747
- "html": "markup",
31748
- "xml": "markup",
31749
- "svg": "markup",
31750
- "mathml": "markup",
31751
- "ssml": "markup",
31752
- "atom": "markup",
31753
- "rss": "markup",
31754
- "js": "javascript",
31755
- "g4": "antlr4",
31756
- "ino": "arduino",
29480
+ html: "markup",
29481
+ xml: "markup",
29482
+ svg: "markup",
29483
+ mathml: "markup",
29484
+ ssml: "markup",
29485
+ atom: "markup",
29486
+ rss: "markup",
29487
+ js: "javascript",
29488
+ g4: "antlr4",
29489
+ ino: "arduino",
31757
29490
  "arm-asm": "armasm",
31758
- "art": "arturo",
31759
- "adoc": "asciidoc",
31760
- "avs": "avisynth",
31761
- "avdl": "avro-idl",
31762
- "gawk": "awk",
31763
- "sh": "bash",
31764
- "shell": "bash",
31765
- "shortcode": "bbcode",
31766
- "rbnf": "bnf",
31767
- "oscript": "bsl",
31768
- "cs": "csharp",
31769
- "dotnet": "csharp",
31770
- "cfc": "cfscript",
29491
+ art: "arturo",
29492
+ adoc: "asciidoc",
29493
+ avs: "avisynth",
29494
+ avdl: "avro-idl",
29495
+ gawk: "awk",
29496
+ sh: "bash",
29497
+ shell: "bash",
29498
+ shortcode: "bbcode",
29499
+ rbnf: "bnf",
29500
+ oscript: "bsl",
29501
+ cs: "csharp",
29502
+ dotnet: "csharp",
29503
+ cfc: "cfscript",
31771
29504
  "cilk-c": "cilkc",
31772
29505
  "cilk-cpp": "cilkcpp",
31773
- "cilk": "cilkcpp",
31774
- "coffee": "coffeescript",
31775
- "conc": "concurnas",
31776
- "jinja2": "django",
29506
+ cilk: "cilkcpp",
29507
+ coffee: "coffeescript",
29508
+ conc: "concurnas",
29509
+ jinja2: "django",
31777
29510
  "dns-zone": "dns-zone-file",
31778
- "dockerfile": "docker",
31779
- "gv": "dot",
31780
- "eta": "ejs",
31781
- "xlsx": "excel-formula",
31782
- "xls": "excel-formula",
31783
- "gamemakerlanguage": "gml",
31784
- "po": "gettext",
31785
- "gni": "gn",
31786
- "ld": "linker-script",
29511
+ dockerfile: "docker",
29512
+ gv: "dot",
29513
+ eta: "ejs",
29514
+ xlsx: "excel-formula",
29515
+ xls: "excel-formula",
29516
+ gamemakerlanguage: "gml",
29517
+ po: "gettext",
29518
+ gni: "gn",
29519
+ ld: "linker-script",
31787
29520
  "go-mod": "go-module",
31788
- "hbs": "handlebars",
31789
- "mustache": "handlebars",
31790
- "hs": "haskell",
31791
- "idr": "idris",
31792
- "gitignore": "ignore",
31793
- "hgignore": "ignore",
31794
- "npmignore": "ignore",
31795
- "webmanifest": "json",
31796
- "kt": "kotlin",
31797
- "kts": "kotlin",
31798
- "kum": "kumir",
31799
- "tex": "latex",
31800
- "context": "latex",
31801
- "ly": "lilypond",
31802
- "emacs": "lisp",
31803
- "elisp": "lisp",
29521
+ hbs: "handlebars",
29522
+ mustache: "handlebars",
29523
+ hs: "haskell",
29524
+ idr: "idris",
29525
+ gitignore: "ignore",
29526
+ hgignore: "ignore",
29527
+ npmignore: "ignore",
29528
+ webmanifest: "json",
29529
+ kt: "kotlin",
29530
+ kts: "kotlin",
29531
+ kum: "kumir",
29532
+ tex: "latex",
29533
+ context: "latex",
29534
+ ly: "lilypond",
29535
+ emacs: "lisp",
29536
+ elisp: "lisp",
31804
29537
  "emacs-lisp": "lisp",
31805
- "md": "markdown",
31806
- "moon": "moonscript",
31807
- "n4jsd": "n4js",
31808
- "nani": "naniscript",
31809
- "objc": "objectivec",
31810
- "qasm": "openqasm",
31811
- "objectpascal": "pascal",
31812
- "px": "pcaxis",
31813
- "pcode": "peoplecode",
31814
- "plantuml": "plant-uml",
31815
- "pq": "powerquery",
31816
- "mscript": "powerquery",
31817
- "pbfasm": "purebasic",
31818
- "purs": "purescript",
31819
- "py": "python",
31820
- "qs": "qsharp",
31821
- "rkt": "racket",
31822
- "razor": "cshtml",
31823
- "rpy": "renpy",
31824
- "res": "rescript",
31825
- "robot": "robotframework",
31826
- "rb": "ruby",
29538
+ md: "markdown",
29539
+ moon: "moonscript",
29540
+ n4jsd: "n4js",
29541
+ nani: "naniscript",
29542
+ objc: "objectivec",
29543
+ qasm: "openqasm",
29544
+ objectpascal: "pascal",
29545
+ px: "pcaxis",
29546
+ pcode: "peoplecode",
29547
+ plantuml: "plant-uml",
29548
+ pq: "powerquery",
29549
+ mscript: "powerquery",
29550
+ pbfasm: "purebasic",
29551
+ purs: "purescript",
29552
+ py: "python",
29553
+ qs: "qsharp",
29554
+ rkt: "racket",
29555
+ razor: "cshtml",
29556
+ rpy: "renpy",
29557
+ res: "rescript",
29558
+ robot: "robotframework",
29559
+ rb: "ruby",
31827
29560
  "sh-session": "shell-session",
31828
- "shellsession": "shell-session",
31829
- "smlnj": "sml",
31830
- "sol": "solidity",
31831
- "sln": "solution-file",
31832
- "rq": "sparql",
31833
- "sclang": "supercollider",
31834
- "t4": "t4-cs",
31835
- "trickle": "tremor",
31836
- "troy": "tremor",
31837
- "trig": "turtle",
31838
- "ts": "typescript",
31839
- "tsconfig": "typoscript",
31840
- "uscript": "unrealscript",
31841
- "uc": "unrealscript",
31842
- "url": "uri",
31843
- "vb": "visual-basic",
31844
- "vba": "visual-basic",
31845
- "webidl": "web-idl",
31846
- "mathematica": "wolfram",
31847
- "nb": "wolfram",
31848
- "wl": "wolfram",
31849
- "xeoracube": "xeora",
31850
- "yml": "yaml"
31851
- }
31852
- );
31853
- var lang_data = {};
31854
- var ignored_language = "none";
31855
- var languages_path = "components/";
31856
- var script = Prism.util.currentScript();
31857
- if (script) {
31858
- var autoloaderFile = /\bplugins\/autoloader\/prism-autoloader\.(?:min\.)?js(?:\?[^\r\n/]*)?$/i;
31859
- var prismFile = /(^|\/)[\w-]+\.(?:min\.)?js(?:\?[^\r\n/]*)?$/i;
31860
- var autoloaderPath = script.getAttribute("data-autoloader-path");
31861
- if (autoloaderPath != null) {
31862
- languages_path = autoloaderPath.trim().replace(/\/?$/, "/");
31863
- } else {
31864
- var src = script.src;
31865
- if (autoloaderFile.test(src)) {
31866
- languages_path = src.replace(autoloaderFile, "components/");
31867
- } else if (prismFile.test(src)) {
31868
- languages_path = src.replace(prismFile, "$1components/");
31869
- }
29561
+ shellsession: "shell-session",
29562
+ smlnj: "sml",
29563
+ sol: "solidity",
29564
+ sln: "solution-file",
29565
+ rq: "sparql",
29566
+ sclang: "supercollider",
29567
+ t4: "t4-cs",
29568
+ trickle: "tremor",
29569
+ troy: "tremor",
29570
+ trig: "turtle",
29571
+ ts: "typescript",
29572
+ tsconfig: "typoscript",
29573
+ uscript: "unrealscript",
29574
+ uc: "unrealscript",
29575
+ url: "uri",
29576
+ vb: "visual-basic",
29577
+ vba: "visual-basic",
29578
+ webidl: "web-idl",
29579
+ mathematica: "wolfram",
29580
+ nb: "wolfram",
29581
+ wl: "wolfram",
29582
+ xeoracube: "xeora",
29583
+ yml: "yaml"
29584
+ }
29585
+ ), e = {}, s = "none", u = "components/", f = Prism.util.currentScript();
29586
+ if (f) {
29587
+ var a = /\bplugins\/autoloader\/prism-autoloader\.(?:min\.)?js(?:\?[^\r\n/]*)?$/i, d = /(^|\/)[\w-]+\.(?:min\.)?js(?:\?[^\r\n/]*)?$/i, n = f.getAttribute("data-autoloader-path");
29588
+ if (n != null)
29589
+ u = n.trim().replace(/\/?$/, "/");
29590
+ else {
29591
+ var c = f.src;
29592
+ a.test(c) ? u = c.replace(a, "components/") : d.test(c) && (u = c.replace(d, "$1components/"));
31870
29593
  }
31871
29594
  }
31872
- var config2 = Prism.plugins.autoloader = {
31873
- languages_path,
29595
+ var h2 = Prism.plugins.autoloader = {
29596
+ languages_path: u,
31874
29597
  use_minified: true,
31875
- loadLanguages
29598
+ loadLanguages: y
31876
29599
  };
31877
- function addScript(src2, success, error) {
31878
- var s = document.createElement("script");
31879
- s.src = src2;
31880
- s.async = true;
31881
- s.onload = function() {
31882
- document.body.removeChild(s);
31883
- success && success();
31884
- };
31885
- s.onerror = function() {
31886
- document.body.removeChild(s);
31887
- error && error();
31888
- };
31889
- document.body.appendChild(s);
31890
- }
31891
- function getDependencies(element) {
31892
- var deps = (element.getAttribute("data-dependencies") || "").trim();
31893
- if (!deps) {
31894
- var parent = element.parentElement;
31895
- if (parent && parent.tagName.toLowerCase() === "pre") {
31896
- deps = (parent.getAttribute("data-dependencies") || "").trim();
31897
- }
31898
- }
31899
- return deps ? deps.split(/\s*,\s*/g) : [];
31900
- }
31901
- function isLoaded(lang) {
31902
- if (lang.indexOf("!") >= 0) {
29600
+ function i(o, p, v) {
29601
+ var m = document.createElement("script");
29602
+ m.src = o, m.async = true, m.onload = function() {
29603
+ document.body.removeChild(m), p && p();
29604
+ }, m.onerror = function() {
29605
+ document.body.removeChild(m), v && v();
29606
+ }, document.body.appendChild(m);
29607
+ }
29608
+ function b(o) {
29609
+ var p = (o.getAttribute("data-dependencies") || "").trim();
29610
+ if (!p) {
29611
+ var v = o.parentElement;
29612
+ v && v.tagName.toLowerCase() === "pre" && (p = (v.getAttribute("data-dependencies") || "").trim());
29613
+ }
29614
+ return p ? p.split(/\s*,\s*/g) : [];
29615
+ }
29616
+ function l(o) {
29617
+ if (o.indexOf("!") >= 0)
31903
29618
  return false;
31904
- }
31905
- lang = lang_aliases[lang] || lang;
31906
- if (lang in Prism.languages) {
29619
+ if (o = t2[o] || o, o in Prism.languages)
31907
29620
  return true;
31908
- }
31909
- var data = lang_data[lang];
31910
- return data && !data.error && data.loading === false;
29621
+ var p = e[o];
29622
+ return p && !p.error && p.loading === false;
31911
29623
  }
31912
- function getLanguagePath(lang) {
31913
- return config2.languages_path + "prism-" + lang + (config2.use_minified ? ".min" : "") + ".js";
29624
+ function _(o) {
29625
+ return h2.languages_path + "prism-" + o + (h2.use_minified ? ".min" : "") + ".js";
31914
29626
  }
31915
- function loadLanguages(languages, success, error) {
31916
- if (typeof languages === "string") {
31917
- languages = [languages];
31918
- }
31919
- var total = languages.length;
31920
- var completed = 0;
31921
- var failed = false;
31922
- if (total === 0) {
31923
- if (success) {
31924
- setTimeout(success, 0);
31925
- }
29627
+ function y(o, p, v) {
29628
+ typeof o == "string" && (o = [o]);
29629
+ var m = o.length, L = 0, x = false;
29630
+ if (m === 0) {
29631
+ p && setTimeout(p, 0);
31926
29632
  return;
31927
29633
  }
31928
- function successCallback() {
31929
- if (failed) {
31930
- return;
31931
- }
31932
- completed++;
31933
- if (completed === total) {
31934
- success && success(languages);
31935
- }
29634
+ function S2() {
29635
+ x || (L++, L === m && p && p(o));
31936
29636
  }
31937
- languages.forEach(function(lang) {
31938
- loadLanguage(lang, successCallback, function() {
31939
- if (failed) {
31940
- return;
31941
- }
31942
- failed = true;
31943
- error && error(lang);
29637
+ o.forEach(function(G) {
29638
+ Q(G, S2, function() {
29639
+ x || (x = true, v && v(G));
31944
29640
  });
31945
29641
  });
31946
29642
  }
31947
- function loadLanguage(lang, success, error) {
31948
- var force = lang.indexOf("!") >= 0;
31949
- lang = lang.replace("!", "");
31950
- lang = lang_aliases[lang] || lang;
31951
- function load() {
31952
- var data = lang_data[lang];
31953
- if (!data) {
31954
- data = lang_data[lang] = {
31955
- callbacks: []
31956
- };
31957
- }
31958
- data.callbacks.push({
31959
- success,
31960
- error
31961
- });
31962
- if (!force && isLoaded(lang)) {
31963
- languageCallback(lang, "success");
31964
- } else if (!force && data.error) {
31965
- languageCallback(lang, "error");
31966
- } else if (force || !data.loading) {
31967
- data.loading = true;
31968
- data.error = false;
31969
- addScript(getLanguagePath(lang), function() {
31970
- data.loading = false;
31971
- languageCallback(lang, "success");
31972
- }, function() {
31973
- data.loading = false;
31974
- data.error = true;
31975
- languageCallback(lang, "error");
31976
- });
31977
- }
31978
- }
31979
- var dependencies = lang_dependencies[lang];
31980
- if (dependencies && dependencies.length) {
31981
- loadLanguages(dependencies, load, error);
31982
- } else {
31983
- load();
29643
+ function Q(o, p, v) {
29644
+ var m = o.indexOf("!") >= 0;
29645
+ o = o.replace("!", ""), o = t2[o] || o;
29646
+ function L() {
29647
+ var S2 = e[o];
29648
+ S2 || (S2 = e[o] = {
29649
+ callbacks: []
29650
+ }), S2.callbacks.push({
29651
+ success: p,
29652
+ error: v
29653
+ }), !m && l(o) ? j(o, "success") : !m && S2.error ? j(o, "error") : (m || !S2.loading) && (S2.loading = true, S2.error = false, i(_(o), function() {
29654
+ S2.loading = false, j(o, "success");
29655
+ }, function() {
29656
+ S2.loading = false, S2.error = true, j(o, "error");
29657
+ }));
31984
29658
  }
29659
+ var x = r2[o];
29660
+ x && x.length ? y(x, L, v) : L();
31985
29661
  }
31986
- function languageCallback(lang, type) {
31987
- if (lang_data[lang]) {
31988
- var callbacks = lang_data[lang].callbacks;
31989
- for (var i = 0, l = callbacks.length; i < l; i++) {
31990
- var callback = callbacks[i][type];
31991
- if (callback) {
31992
- setTimeout(callback, 0);
31993
- }
29662
+ function j(o, p) {
29663
+ if (e[o]) {
29664
+ for (var v = e[o].callbacks, m = 0, L = v.length; m < L; m++) {
29665
+ var x = v[m][p];
29666
+ x && setTimeout(x, 0);
31994
29667
  }
31995
- callbacks.length = 0;
29668
+ v.length = 0;
31996
29669
  }
31997
29670
  }
31998
- Prism.hooks.add("complete", function(env) {
31999
- var element = env.element;
32000
- var language2 = env.language;
32001
- if (!element || !language2 || language2 === ignored_language) {
32002
- return;
32003
- }
32004
- var deps = getDependencies(element);
32005
- if (/^diff-./i.test(language2)) {
32006
- deps.push("diff");
32007
- deps.push(language2.substr("diff-".length));
32008
- } else {
32009
- deps.push(language2);
32010
- }
32011
- if (!deps.every(isLoaded)) {
32012
- loadLanguages(deps, function() {
32013
- Prism.highlightElement(element);
29671
+ Prism.hooks.add("complete", function(o) {
29672
+ var p = o.element, v = o.language;
29673
+ if (!(!p || !v || v === s)) {
29674
+ var m = b(p);
29675
+ /^diff-./i.test(v) ? (m.push("diff"), m.push(v.substr(5))) : m.push(v), m.every(l) || y(m, function() {
29676
+ Prism.highlightElement(p);
32014
29677
  });
32015
29678
  }
32016
29679
  });
32017
29680
  })();
32018
29681
  (function() {
32019
- if (typeof Prism === "undefined" || typeof document === "undefined") {
29682
+ if (typeof Prism > "u" || typeof document > "u")
32020
29683
  return;
32021
- }
32022
- var PLUGIN_NAME = "line-numbers";
32023
- var NEW_LINE_EXP = /\n(?!$)/g;
32024
- var config2 = Prism.plugins.lineNumbers = {
29684
+ var r2 = "line-numbers", t2 = /\n(?!$)/g, e = Prism.plugins.lineNumbers = {
32025
29685
  /**
32026
29686
  * Get node for provided line number
32027
29687
  *
@@ -32029,24 +29689,16 @@ Prism.languages.webmanifest = Prism.languages.json;
32029
29689
  * @param {number} number line number
32030
29690
  * @returns {Element|undefined}
32031
29691
  */
32032
- getLine: function(element, number2) {
32033
- if (element.tagName !== "PRE" || !element.classList.contains(PLUGIN_NAME)) {
32034
- return;
32035
- }
32036
- var lineNumberRows = element.querySelector(".line-numbers-rows");
32037
- if (!lineNumberRows) {
32038
- return;
32039
- }
32040
- var lineNumberStart = parseInt(element.getAttribute("data-start"), 10) || 1;
32041
- var lineNumberEnd = lineNumberStart + (lineNumberRows.children.length - 1);
32042
- if (number2 < lineNumberStart) {
32043
- number2 = lineNumberStart;
32044
- }
32045
- if (number2 > lineNumberEnd) {
32046
- number2 = lineNumberEnd;
29692
+ getLine: function(a, d) {
29693
+ if (!(a.tagName !== "PRE" || !a.classList.contains(r2))) {
29694
+ var n = a.querySelector(".line-numbers-rows");
29695
+ if (n) {
29696
+ var c = parseInt(a.getAttribute("data-start"), 10) || 1, h2 = c + (n.children.length - 1);
29697
+ d < c && (d = c), d > h2 && (d = h2);
29698
+ var i = d - c;
29699
+ return n.children[i];
29700
+ }
32047
29701
  }
32048
- var lineIndex = number2 - lineNumberStart;
32049
- return lineNumberRows.children[lineIndex];
32050
29702
  },
32051
29703
  /**
32052
29704
  * Resizes the line numbers of the given element.
@@ -32056,8 +29708,8 @@ Prism.languages.webmanifest = Prism.languages.json;
32056
29708
  * @param {HTMLElement} element A `<pre>` element with line numbers.
32057
29709
  * @returns {void}
32058
29710
  */
32059
- resize: function(element) {
32060
- resizeElements([element]);
29711
+ resize: function(a) {
29712
+ s([a]);
32061
29713
  },
32062
29714
  /**
32063
29715
  * Whether the plugin can assume that the units font sizes and margins are not depended on the size of
@@ -32071,237 +29723,234 @@ Prism.languages.webmanifest = Prism.languages.json;
32071
29723
  */
32072
29724
  assumeViewportIndependence: true
32073
29725
  };
32074
- function resizeElements(elements) {
32075
- elements = elements.filter(function(e) {
32076
- var codeStyles = getStyles(e);
32077
- var whiteSpace = codeStyles["white-space"];
32078
- return whiteSpace === "pre-wrap" || whiteSpace === "pre-line";
32079
- });
32080
- if (elements.length == 0) {
32081
- return;
32082
- }
32083
- var infos = elements.map(function(element) {
32084
- var codeElement = element.querySelector("code");
32085
- var lineNumbersWrapper = element.querySelector(".line-numbers-rows");
32086
- if (!codeElement || !lineNumbersWrapper) {
32087
- return void 0;
32088
- }
32089
- var lineNumberSizer = element.querySelector(".line-numbers-sizer");
32090
- var codeLines = codeElement.textContent.split(NEW_LINE_EXP);
32091
- if (!lineNumberSizer) {
32092
- lineNumberSizer = document.createElement("span");
32093
- lineNumberSizer.className = "line-numbers-sizer";
32094
- codeElement.appendChild(lineNumberSizer);
32095
- }
32096
- lineNumberSizer.innerHTML = "0";
32097
- lineNumberSizer.style.display = "block";
32098
- var oneLinerHeight = lineNumberSizer.getBoundingClientRect().height;
32099
- lineNumberSizer.innerHTML = "";
32100
- return {
32101
- element,
32102
- lines: codeLines,
32103
- lineHeights: [],
32104
- oneLinerHeight,
32105
- sizer: lineNumberSizer
32106
- };
32107
- }).filter(Boolean);
32108
- infos.forEach(function(info) {
32109
- var lineNumberSizer = info.sizer;
32110
- var lines = info.lines;
32111
- var lineHeights = info.lineHeights;
32112
- var oneLinerHeight = info.oneLinerHeight;
32113
- lineHeights[lines.length - 1] = void 0;
32114
- lines.forEach(function(line, index) {
32115
- if (line && line.length > 1) {
32116
- var e = lineNumberSizer.appendChild(document.createElement("span"));
32117
- e.style.display = "block";
32118
- e.textContent = line;
32119
- } else {
32120
- lineHeights[index] = oneLinerHeight;
32121
- }
32122
- });
32123
- });
32124
- infos.forEach(function(info) {
32125
- var lineNumberSizer = info.sizer;
32126
- var lineHeights = info.lineHeights;
32127
- var childIndex = 0;
32128
- for (var i = 0; i < lineHeights.length; i++) {
32129
- if (lineHeights[i] === void 0) {
32130
- lineHeights[i] = lineNumberSizer.children[childIndex++].getBoundingClientRect().height;
29726
+ function s(a) {
29727
+ if (a = a.filter(function(n) {
29728
+ var c = u(n), h2 = c["white-space"];
29729
+ return h2 === "pre-wrap" || h2 === "pre-line";
29730
+ }), a.length != 0) {
29731
+ var d = a.map(function(n) {
29732
+ var c = n.querySelector("code"), h2 = n.querySelector(".line-numbers-rows");
29733
+ if (!(!c || !h2)) {
29734
+ var i = n.querySelector(".line-numbers-sizer"), b = c.textContent.split(t2);
29735
+ i || (i = document.createElement("span"), i.className = "line-numbers-sizer", c.appendChild(i)), i.innerHTML = "0", i.style.display = "block";
29736
+ var l = i.getBoundingClientRect().height;
29737
+ return i.innerHTML = "", {
29738
+ element: n,
29739
+ lines: b,
29740
+ lineHeights: [],
29741
+ oneLinerHeight: l,
29742
+ sizer: i
29743
+ };
32131
29744
  }
32132
- }
32133
- });
32134
- infos.forEach(function(info) {
32135
- var lineNumberSizer = info.sizer;
32136
- var wrapper = info.element.querySelector(".line-numbers-rows");
32137
- lineNumberSizer.style.display = "none";
32138
- lineNumberSizer.innerHTML = "";
32139
- info.lineHeights.forEach(function(height, lineNumber) {
32140
- wrapper.children[lineNumber].style.height = height + "px";
29745
+ }).filter(Boolean);
29746
+ d.forEach(function(n) {
29747
+ var c = n.sizer, h2 = n.lines, i = n.lineHeights, b = n.oneLinerHeight;
29748
+ i[h2.length - 1] = void 0, h2.forEach(function(l, _) {
29749
+ if (l && l.length > 1) {
29750
+ var y = c.appendChild(document.createElement("span"));
29751
+ y.style.display = "block", y.textContent = l;
29752
+ } else
29753
+ i[_] = b;
29754
+ });
29755
+ }), d.forEach(function(n) {
29756
+ for (var c = n.sizer, h2 = n.lineHeights, i = 0, b = 0; b < h2.length; b++)
29757
+ h2[b] === void 0 && (h2[b] = c.children[i++].getBoundingClientRect().height);
29758
+ }), d.forEach(function(n) {
29759
+ var c = n.sizer, h2 = n.element.querySelector(".line-numbers-rows");
29760
+ c.style.display = "none", c.innerHTML = "", n.lineHeights.forEach(function(i, b) {
29761
+ h2.children[b].style.height = i + "px";
29762
+ });
32141
29763
  });
32142
- });
32143
- }
32144
- function getStyles(element) {
32145
- if (!element) {
32146
- return null;
32147
29764
  }
32148
- return window.getComputedStyle ? getComputedStyle(element) : element.currentStyle || null;
32149
29765
  }
32150
- var lastWidth = void 0;
29766
+ function u(a) {
29767
+ return a ? window.getComputedStyle ? getComputedStyle(a) : a.currentStyle || null : null;
29768
+ }
29769
+ var f = void 0;
32151
29770
  window.addEventListener("resize", function() {
32152
- if (config2.assumeViewportIndependence && lastWidth === window.innerWidth) {
32153
- return;
32154
- }
32155
- lastWidth = window.innerWidth;
32156
- resizeElements(Array.prototype.slice.call(document.querySelectorAll("pre." + PLUGIN_NAME)));
32157
- });
32158
- Prism.hooks.add("complete", function(env) {
32159
- if (!env.code) {
32160
- return;
32161
- }
32162
- var code = (
32163
- /** @type {Element} */
32164
- env.element
32165
- );
32166
- var pre = (
32167
- /** @type {HTMLElement} */
32168
- code.parentNode
32169
- );
32170
- if (!pre || !/pre/i.test(pre.nodeName)) {
32171
- return;
32172
- }
32173
- if (code.querySelector(".line-numbers-rows")) {
32174
- return;
32175
- }
32176
- if (!Prism.util.isActive(code, PLUGIN_NAME)) {
32177
- return;
29771
+ e.assumeViewportIndependence && f === window.innerWidth || (f = window.innerWidth, s(Array.prototype.slice.call(document.querySelectorAll("pre." + r2))));
29772
+ }), Prism.hooks.add("complete", function(a) {
29773
+ if (a.code) {
29774
+ var d = (
29775
+ /** @type {Element} */
29776
+ a.element
29777
+ ), n = (
29778
+ /** @type {HTMLElement} */
29779
+ d.parentNode
29780
+ );
29781
+ if (!(!n || !/pre/i.test(n.nodeName)) && !d.querySelector(".line-numbers-rows") && Prism.util.isActive(d, r2)) {
29782
+ d.classList.remove(r2), n.classList.add(r2);
29783
+ var c = a.code.match(t2), h2 = c ? c.length + 1 : 1, i, b = new Array(h2 + 1).join("<span></span>");
29784
+ i = document.createElement("span"), i.setAttribute("aria-hidden", "true"), i.className = "line-numbers-rows", i.innerHTML = b, n.hasAttribute("data-start") && (n.style.counterReset = "linenumber " + (parseInt(n.getAttribute("data-start"), 10) - 1)), a.element.appendChild(i), s([n]), Prism.hooks.run("line-numbers", a);
29785
+ }
32178
29786
  }
32179
- code.classList.remove(PLUGIN_NAME);
32180
- pre.classList.add(PLUGIN_NAME);
32181
- var match = env.code.match(NEW_LINE_EXP);
32182
- var linesNum = match ? match.length + 1 : 1;
32183
- var lineNumbersWrapper;
32184
- var lines = new Array(linesNum + 1).join("<span></span>");
32185
- lineNumbersWrapper = document.createElement("span");
32186
- lineNumbersWrapper.setAttribute("aria-hidden", "true");
32187
- lineNumbersWrapper.className = "line-numbers-rows";
32188
- lineNumbersWrapper.innerHTML = lines;
32189
- if (pre.hasAttribute("data-start")) {
32190
- pre.style.counterReset = "linenumber " + (parseInt(pre.getAttribute("data-start"), 10) - 1);
32191
- }
32192
- env.element.appendChild(lineNumbersWrapper);
32193
- resizeElements([pre]);
32194
- Prism.hooks.run("line-numbers", env);
32195
- });
32196
- Prism.hooks.add("line-numbers", function(env) {
32197
- env.plugins = env.plugins || {};
32198
- env.plugins.lineNumbers = true;
29787
+ }), Prism.hooks.add("line-numbers", function(a) {
29788
+ a.plugins = a.plugins || {}, a.plugins.lineNumbers = true;
32199
29789
  });
32200
29790
  })();
32201
- const _sfc_main$j = /* @__PURE__ */ defineComponent({
29791
+ const ft = /* @__PURE__ */ defineComponent({
32202
29792
  __name: "ScalarCodeBlock",
32203
29793
  props: {
32204
29794
  content: {},
32205
29795
  lang: { default: "js" },
32206
- lineNumbers: { type: Boolean, default: false }
29796
+ lineNumbers: { type: Boolean, default: false },
29797
+ hideCredentials: {}
32207
29798
  },
32208
- setup(__props) {
32209
- const props = __props;
32210
- const { plugins, highlightElement } = prismjs;
32211
- const el = ref(null);
32212
- const language2 = computed(() => {
32213
- return props.lang === "node" ? "js" : props.lang;
29799
+ setup(r2) {
29800
+ const t2 = r2, { plugins: e, highlightElement: s } = q;
29801
+ t2.hideCredentials && q.hooks.add("wrap", function(a) {
29802
+ if (!t2.hideCredentials)
29803
+ return;
29804
+ let d = false;
29805
+ typeof t2.hideCredentials == "string" ? a.content.includes(t2.hideCredentials) && (d = true) : Array.isArray(t2.hideCredentials) && (d = t2.hideCredentials.some(
29806
+ (n) => a.content.includes(n)
29807
+ )), d && (a.content = a.content.replace(
29808
+ /<span class="credentials">.*?<\/span>/g,
29809
+ (n) => n.replace(/<span class="credentials">|<\/span>/g, "")
29810
+ ), a.content = a.content.replace(
29811
+ new RegExp(
29812
+ typeof t2.hideCredentials == "string" ? t2.hideCredentials : t2.hideCredentials.join("|"),
29813
+ "g"
29814
+ ),
29815
+ (n) => `<span class="credentials">${n}</span>`
29816
+ ));
32214
29817
  });
32215
- plugins.autoloader.languages_path = "https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/";
32216
- watch(
32217
- () => [props.lang, props.content],
29818
+ const u = ref(null), f = computed(() => t2.lang === "node" ? "js" : t2.lang);
29819
+ return e.autoloader.languages_path = "https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/", watch(
29820
+ () => [t2.lang, t2.content],
32218
29821
  () => {
32219
- if (el.value)
32220
- nextTick(() => highlightElement(el.value));
32221
- }
32222
- );
32223
- onMounted(() => {
32224
- if (el.value)
32225
- highlightElement(el.value);
32226
- });
32227
- return (_ctx, _cache) => {
32228
- return openBlock(), createElementBlock("pre", {
32229
- class: normalizeClass(["scalar-component scalar-codeblock-pre", {
32230
- "line-numbers": _ctx.lineNumbers
32231
- }])
32232
- }, [
32233
- createElementVNode("code", {
32234
- ref_key: "el",
32235
- ref: el,
32236
- class: normalizeClass(`scalar-codeblock-code lang-${language2.value}`)
32237
- }, toDisplayString(_ctx.content), 3)
32238
- ], 2);
32239
- };
32240
- }
32241
- });
32242
- const attrsToObject = (m) => Object.fromEntries(Array.from(m).map((t2) => [t2.name, t2.value]));
32243
- const getRendererComponent = (Parser2) => ({ raw }) => {
32244
- const parser2 = new Parser2();
32245
- const parsed = parser2.parseFromString(raw, "image/svg+xml");
32246
- if (parsed.getElementsByTagName("parsererror").length) {
32247
- return void 0;
32248
- }
32249
- const svg = parsed.documentElement;
32250
- const attrs = attrsToObject(svg.attributes);
32251
- const { width, height, ...rest } = attrs;
32252
- return h("svg", { ...rest, innerHTML: svg.innerHTML });
32253
- };
32254
- const SvgRenderer = defineAsyncComponent(async () => {
32255
- const Parser2 = typeof DOMParser === "undefined" ? (await import("./index-CpJxdgyL.js").then((n) => n.i)).DOMParser : DOMParser;
32256
- const Renderer = getRendererComponent(Parser2);
32257
- Renderer.props = {
29822
+ u.value && nextTick(() => s(u.value));
29823
+ }
29824
+ ), onMounted(() => {
29825
+ u.value && s(u.value);
29826
+ }), (a, d) => (openBlock(), createElementBlock("pre", {
29827
+ class: normalizeClass(["scalar-component scalar-codeblock-pre", {
29828
+ "line-numbers": a.lineNumbers
29829
+ }])
29830
+ }, [
29831
+ createElementVNode("code", {
29832
+ ref_key: "el",
29833
+ ref: u,
29834
+ class: normalizeClass(`scalar-codeblock-code lang-${f.value}`)
29835
+ }, toDisplayString(a.content), 3)
29836
+ ], 2));
29837
+ }
29838
+ }), Ee = (r2) => Object.fromEntries(Array.from(r2).map((t2) => [t2.name, t2.value])), Le = (r2) => ({ raw: t2 }) => {
29839
+ const s = new r2().parseFromString(t2, "image/svg+xml");
29840
+ if (s.getElementsByTagName("parsererror").length)
29841
+ return;
29842
+ const u = s.documentElement, f = Ee(u.attributes), { width: a, height: d, ...n } = f;
29843
+ return h("svg", { ...n, innerHTML: u.innerHTML });
29844
+ }, Ae = defineAsyncComponent(async () => {
29845
+ const r2 = typeof DOMParser > "u" ? (await import("./index-CpJxdgyL.js").then((n) => n.i)).DOMParser : DOMParser, t2 = Le(r2);
29846
+ return t2.props = {
32258
29847
  raw: {
32259
29848
  type: String,
32260
29849
  required: true
32261
29850
  }
32262
- };
32263
- return Renderer;
32264
- });
32265
- 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>';
32266
- 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>';
32267
- 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';
32268
- 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';
32269
- 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>';
32270
- 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';
32271
- 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>';
32272
- 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>';
32273
- 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>';
32274
- 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>';
32275
- 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>';
32276
- 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>';
32277
- 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>';
32278
- 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>';
32279
- 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>';
32280
- 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>';
32281
- 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>';
32282
- 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>';
32283
- 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>';
32284
- 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>';
32285
- 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>';
32286
- 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>';
32287
- 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 });
32288
- const getIcon = (name2) => {
32289
- const filename = `./${name2}.svg`;
32290
- if (icons[filename] === void 0) {
32291
- console.warn(`Could not find icon: ${name2}`);
32292
- return "";
32293
- }
32294
- return icons[filename];
32295
- };
32296
- const _sfc_main$i = /* @__PURE__ */ defineComponent({
29851
+ }, t2;
29852
+ }), Te = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
29853
+ <path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.429"
29854
+ d="M24 1.714v44.572M1.714 24h44.572" />
29855
+ </svg>`, Ie = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32.5 23.5" fill="currentColor">
29856
+ <path d="M11.2 23.5 0 12.3l2.15-2.15 9.05 9.05L30.4 0l2.15 2.15z" />
29857
+ </svg>`, Me = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
29858
+ <path d="M4.5 8.25L12 15.75L19.5 8.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
29859
+ </svg>
29860
+ `, Ne = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
29861
+ <path d="M15.75 19.5L8.25 12L15.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
29862
+ </svg>
29863
+ `, je = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
29864
+ <path d="M8.25 19.5L15.75 12L8.25 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
29865
+ </svg>`, Oe = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
29866
+ <path d="M19.5 15.75L12 8.25L4.5 15.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
29867
+ </svg>
29868
+ `, Be = `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16">
29869
+ <path d="M6,5h4c1.7,0,2-1.3,2-3c1.1,0,2,0.9,2,2v10c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V4c0-1.1,0.9-2,2-2C4,3.7,4.3,5,6,5z M6,2V1
29870
+ c0-0.6,0.5-1,1-1h2c0.5,0,1,0.4,1,1v1.3C10,2.9,9.6,3,9,3H7C6.4,3,6,2.6,6,2z" />
29871
+ </svg>`, De = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
29872
+ <path stroke="currentColor" d="m12.5 1.5-11 11m0-11 11 11" />
29873
+ </svg>`, Pe = `<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
29874
+ <path
29875
+ d="M9.557,7.243A.456.456,0,0,0,9.1,6.991C9.023,7,8.951,7,8.877,7A4,4,0,0,1,5.546.781.5.5,0,0,0,5.564.256.476.476,0,0,0,5.1,0,5,5,0,1,0,9.539,7.767.5.5,0,0,0,9.557,7.243Z"
29876
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29877
+ </svg>`, ze = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
29878
+ <path
29879
+ d="M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" />
29880
+ </svg>`, Re = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 9">
29881
+ <g fill="none" fill-rule="evenodd" transform="translate(.67 .67)">
29882
+ <rect transform="rotate(180 4 4)" />
29883
+ <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width=".5"
29884
+ d="M2.85 1.73h3.4v3.4m0-3.4L1.74 6.24" />
29885
+ </g>
29886
+ </svg>`, He = `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 1024 1024">
29887
+ <path
29888
+ d="M512 0a512 512 0 0 0-162 998c26 4 35-11 35-25l-1-95c-128 23-161-32-172-60-6-15-31-61-52-73-18-10-44-33-1-33 40-1 69 37 78 52 46 78 120 56 149 43 5-33 18-56 33-69-114-13-234-56-234-253 0-56 20-101 53-137-5-13-23-65 5-136 0 0 43-13 141 53a487 487 0 0 1 256 0c98-66 141-53 141-53 28 71 10 123 5 136 33 36 53 81 53 137 0 197-120 240-234 253 18 16 35 47 35 95l-1 140c0 14 9 30 35 25A512 512 0 0 0 512 0z" />
29889
+ </svg>`, $e = `<svg
29890
+ height="24"
29891
+ viewBox="0 0 24 24"
29892
+ width="24"
29893
+ xmlns="http://www.w3.org/2000/svg">
29894
+ <path
29895
+ d="M24 12a1 1 0 0 0 -1 -1h-3.91a0.51 0.51 0 0 1 -0.49 -0.4 6.83 6.83 0 0 0 -0.94 -2.28 0.5 0.5 0 0 1 0.06 -0.63l2.77 -2.76a1 1 0 1 0 -1.42 -1.42l-2.76 2.77a0.5 0.5 0 0 1 -0.63 0.06 6.83 6.83 0 0 0 -2.28 -0.94 0.5 0.5 0 0 1 -0.4 -0.49V1a1 1 0 0 0 -2 0v3.91a0.51 0.51 0 0 1 -0.4 0.49 6.83 6.83 0 0 0 -2.28 0.94 0.5 0.5 0 0 1 -0.63 -0.06L4.93 3.51a1 1 0 0 0 -1.42 1.42l2.77 2.76a0.5 0.5 0 0 1 0.06 0.63 6.83 6.83 0 0 0 -0.94 2.28 0.5 0.5 0 0 1 -0.49 0.4H1a1 1 0 0 0 0 2h3.91a0.51 0.51 0 0 1 0.49 0.4 6.83 6.83 0 0 0 0.94 2.28 0.5 0.5 0 0 1 -0.06 0.63l-2.77 2.76a1 1 0 1 0 1.42 1.42l2.76 -2.77a0.5 0.5 0 0 1 0.63 -0.06 6.83 6.83 0 0 0 2.28 0.94 0.5 0.5 0 0 1 0.4 0.49V23a1 1 0 0 0 2 0v-3.91a0.51 0.51 0 0 1 0.4 -0.49 6.83 6.83 0 0 0 2.28 -0.94 0.5 0.5 0 0 1 0.63 0.06l2.76 2.77a1 1 0 1 0 1.42 -1.42l-2.77 -2.76a0.5 0.5 0 0 1 -0.06 -0.63 6.83 6.83 0 0 0 0.94 -2.28 0.5 0.5 0 0 1 0.49 -0.4H23a1 1 0 0 0 1 -1Zm-8.74 2.5A5.76 5.76 0 0 1 9.5 8.74a5.66 5.66 0 0 1 0.16 -1.31 0.49 0.49 0 0 1 0.34 -0.36 5.36 5.36 0 0 1 1.8 -0.31 5.47 5.47 0 0 1 5.46 5.46 5.36 5.36 0 0 1 -0.31 1.8 0.49 0.49 0 0 1 -0.35 0.32 5.53 5.53 0 0 1 -1.34 0.16Z"
29896
+ fill="currentColor"
29897
+ stroke-width="1"></path>
29898
+ </svg>`, Ge = `<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
29899
+ <path d="M3.500 5.000 A1.500 1.500 0 1 0 6.500 5.000 A1.500 1.500 0 1 0 3.500 5.000 Z" fill="currentColor"
29900
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29901
+ <path d="M5,2.25a.625.625,0,0,1-.625-.625v-1a.625.625,0,0,1,1.25,0v1A.625.625,0,0,1,5,2.25Z" fill="currentColor"
29902
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29903
+ <path d="M6.945,3.055a.623.623,0,0,1,0-.883l.707-.708a.625.625,0,0,1,.884.884l-.708.707A.623.623,0,0,1,6.945,3.055Z"
29904
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29905
+ <path d="M7.75,5a.625.625,0,0,1,.625-.625h1a.625.625,0,0,1,0,1.25h-1A.625.625,0,0,1,7.75,5Z" fill="currentColor"
29906
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29907
+ <path d="M6.945,6.945a.623.623,0,0,1,.883,0l.708.707a.625.625,0,0,1-.884.884l-.707-.708A.623.623,0,0,1,6.945,6.945Z"
29908
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29909
+ <path d="M5,7.75a.625.625,0,0,1,.625.625v1a.625.625,0,0,1-1.25,0v-1A.625.625,0,0,1,5,7.75Z" fill="currentColor"
29910
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29911
+ <path
29912
+ d="M3.055,6.945a.623.623,0,0,1,0,.883l-.707.708a.625.625,0,0,1-.884-.884l.708-.707A.623.623,0,0,1,3.055,6.945Z"
29913
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29914
+ <path d="M2.25,5a.625.625,0,0,1-.625.625h-1a.625.625,0,0,1,0-1.25h1A.625.625,0,0,1,2.25,5Z" fill="currentColor"
29915
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29916
+ <path
29917
+ d="M3.055,3.055a.623.623,0,0,1-.883,0l-.708-.707a.625.625,0,0,1,.884-.884l.707.708A.623.623,0,0,1,3.055,3.055Z"
29918
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
29919
+ </svg>`, qe = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 593 593">
29920
+ <path fill="currentColor" fill-rule="evenodd"
29921
+ d="M347 0c6 0 12 5 12 12v134l94-95c5-5 13-5 17 0l72 72c4 4 5 12 0 16v1l-95 94h134c7 0 12 5 12 12v101c0 7-5 12-12 12H447l95 94c4 5 5 13 0 17l-72 72c-4 4-12 5-16 0h-1l-94-95v134c0 7-5 12-12 12H246c-7 0-12-5-12-12v-70c0-22 9-43 24-59l130-130c14-14 14-37 0-51L259 142a84 84 0 0 1-25-59V12c0-7 5-12 12-12h101ZM138 52h1l219 219c14 14 14 37 0 51L139 542c-4 5-12 5-17 0l-71-70c-4-5-5-12 0-17l95-96H12c-7 0-12-5-12-12V246c0-7 5-12 12-12h134l-95-94c-4-5-4-12 0-17l71-71c4-5 12-5 16 0Z" />
29922
+ </svg>`, Ve = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 662 662">
29923
+ <path fill-rule="evenodd" fill="currentColor"
29924
+ d="M331 0a331 331 0 1 1 0 662 331 331 0 0 1 0-662Zm148.5 109 .6.9a187 187 0 1 1-297.6-.9 267 267 0 1 0 297 0Z" />
29925
+ </svg>`, Fe = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 620 620">
29926
+ <path fill="currentColor"
29927
+ d="M-.653 309.29c-.078 82.272 31.848 159.735 89.739 218.178l.283.283c122.379 121.247 319.824 121.184 440.16-.283 119.967-121.1 119.409-316.933-.998-437.339l-.99-.99C468.681 30.845 390.716-1.017 307.893-.67c-82.83.354-160.443 32.994-218.814 91.79C31.209 149.555-.724 227.025-.653 309.29Zm469.271-160.789.778.778c87.9 87.9 88.325 231.005.707 319.33-77.753 78.46-199.786 87.412-288.959 26.862l198.513-198.513-.007 166.361 83.68-.07v-306.22H157.11l-.008 83.6h160.584L121.994 436.323c-59.347-87.689-50.536-208.59 26.51-286.343C236.34 61.294 379.94 60.67 468.61 148.494Z" />
29928
+ </svg>`, Ue = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 642 642" fill="currentColor">
29929
+ <path
29930
+ d="M321 0a321 321 0 1 1 0 642 321 321 0 0 1 0-642Zm51.3 63L321 189.5 269.7 63l1 136.5-95.8-97.2L228 228l-125.7-53.1 97.2 95.8-136.5-1L189.5 321 63 372.3l136.5-1-97.2 95.8 125.7-53-53.1 125.6 95.8-97.2-1 136.5L321 452.5 372.3 579l-1-136.5 95.8 97.2-53-125.7 125.6 53.1-97.2-95.8 136.5 1L452.5 321 579 269.7l-136.5 1 97.2-95.8L414 228l53.1-125.7-95.8 97.2 1-136.5Z" />
29931
+ </svg>`, Ze = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 620 620" fill="currentColor">
29932
+ <path
29933
+ d="M529.2 90.8A310 310 0 1 0 90.8 529.2 310 310 0 0 0 529.2 90.8M122.4 498.2c-54.9-55-15.4-183.5 88.2-287 103.6-103.7 232.1-143.2 287-88.3 54.9 54.8 15.4 183.4-88.3 287-103.5 103.6-232 143.1-286.9 88.3m261.8-262.7A104.7 104.7 0 1 1 236 383.7a104.7 104.7 0 0 1 148.2-148.2" />
29934
+ </svg>`, We = `<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 14 14">
29935
+ <path fill="none" stroke="currentColor" d="M14 3.4H0m14 7.2H0" />
29936
+ </svg>`, Xe = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
29937
+ <path fill="currentColor" fill-rule="evenodd"
29938
+ d="M11.8214 0.0977942C12.1097 -0.00745677 12.4219 -0.0286524 12.7219 0.0367783C13.0248 0.102864 13.3024 0.254542 13.5216 0.47378C13.7408 0.693018 13.8925 0.970598 13.9586 1.27352C14.024 1.57344 14.0028 1.88572 13.8976 2.17395L10.3236 12.8859L10.3234 12.8866C10.2363 13.1501 10.083 13.3868 9.8781 13.574C9.6738 13.7606 9.42509 13.8918 9.15572 13.9549C8.8863 14.0206 8.60441 14.0151 8.33774 13.9389C8.07131 13.8628 7.82926 13.7187 7.63529 13.5209L5.71795 11.6124L3.70389 12.6538C3.54684 12.7351 3.35857 12.7273 3.20874 12.6334C3.05892 12.5395 2.96981 12.3735 2.9744 12.1967L3.05697 9.013L10.1019 3.8956C10.3812 3.69273 10.4432 3.30188 10.2403 3.02261C10.0374 2.74333 9.64659 2.68139 9.36731 2.88425L2.20283 8.08846L0.473125 6.35875L0.473067 6.3587L0.472941 6.35857C0.285618 6.17138 0.147716 5.9406 0.0716193 5.68694C-0.00393616 5.43509 -0.0162115 5.16853 0.0358379 4.91085C0.0879545 4.62934 0.213796 4.36664 0.400577 4.14957C0.588637 3.93101 0.83165 3.76664 1.1045 3.67345L1.10787 3.6723L1.10787 3.67231L11.8214 0.0977942Z"
29939
+ clip-rule="evenodd"></path>
29940
+ </svg>`, Ke = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor">
29941
+ <path fill-rule="evenodd"
29942
+ d="M12.6 11.2h.1l3 3a1 1 0 1 1-1.4 1.5l-3-3a1 1 0 0 1-.1-.1 7 7 0 1 1 1.4-1.4zM7 12A5 5 0 1 0 7 2a5 5 0 0 0 0 10z" />
29943
+ </svg>`, V = /* @__PURE__ */ Object.assign({ "./Add.svg": Te, "./CheckMark.svg": Ie, "./ChevronDown.svg": Me, "./ChevronLeft.svg": Ne, "./ChevronRight.svg": je, "./ChevronUp.svg": Oe, "./Clipboard.svg": Be, "./Close.svg": De, "./DarkMode.svg": Pe, "./Ellipses.svg": ze, "./ExternalLink.svg": Re, "./GitHub.svg": He, "./LightDarkModeToggle.svg": $e, "./LightMode.svg": Ge, "./Logo.svg": qe, "./LogoAPI.svg": Ve, "./LogoClient.svg": Fe, "./LogoMarket.svg": Ue, "./LogoSwagger.svg": Ze, "./Menu.svg": We, "./PaperAirplane.svg": Xe, "./Search.svg": Ke }), Ye = (r2) => {
29944
+ const t2 = `./${r2}.svg`;
29945
+ return V[t2] === void 0 ? (console.warn(`Could not find icon: ${r2}`), "") : V[t2];
29946
+ }, J = /* @__PURE__ */ defineComponent({
32297
29947
  __name: "ScalarIcon",
32298
29948
  props: {
32299
29949
  icon: {},
32300
29950
  size: {}
32301
29951
  },
32302
- setup(__props) {
32303
- const props = __props;
32304
- const iconProps = cva({
29952
+ setup(r2) {
29953
+ const t2 = r2, e = N({
32305
29954
  variants: {
32306
29955
  size: {
32307
29956
  xs: "h-3 w-3",
@@ -32315,15 +29964,12 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
32315
29964
  defaultVariants: {
32316
29965
  size: "full"
32317
29966
  }
32318
- });
32319
- const data = computed(() => getIcon(props.icon));
32320
- return (_ctx, _cache) => {
32321
- return data.value ? (openBlock(), createBlock(unref(SvgRenderer), {
32322
- key: 0,
32323
- class: normalizeClass(unref(cx)("scalar-icon", unref(iconProps)({ size: _ctx.size }))),
32324
- raw: data.value
32325
- }, null, 8, ["class", "raw"])) : createCommentVNode("", true);
32326
- };
29967
+ }), s = computed(() => Ye(t2.icon));
29968
+ return (u, f) => s.value ? (openBlock(), createBlock(unref(Ae), {
29969
+ key: 0,
29970
+ class: normalizeClass(unref(E)("scalar-icon", unref(e)({ size: u.size }))),
29971
+ raw: s.value
29972
+ }, null, 8, ["class", "raw"])) : createCommentVNode("", true);
32327
29973
  }
32328
29974
  });
32329
29975
  const _hoisted_1$f = { class: "table" };
@@ -32484,7 +30130,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
32484
30130
  onClick: addHandler
32485
30131
  }, [
32486
30132
  createElementVNode("i", _hoisted_24, [
32487
- createVNode(unref(_sfc_main$i), { icon: "Add" })
30133
+ createVNode(unref(J), { icon: "Add" })
32488
30134
  ]),
32489
30135
  createTextVNode(" " + toDisplayString(_ctx.addLabel), 1)
32490
30136
  ])) : createCommentVNode("", true),
@@ -32496,7 +30142,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
32496
30142
  }, [
32497
30143
  createTextVNode(" Show More "),
32498
30144
  createElementVNode("i", _hoisted_25, [
32499
- createVNode(unref(_sfc_main$i), { icon: "ChevronDown" })
30145
+ createVNode(unref(J), { icon: "ChevronDown" })
32500
30146
  ])
32501
30147
  ])) : createCommentVNode("", true)
32502
30148
  ])
@@ -32555,7 +30201,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
32555
30201
  }
32556
30202
  };
32557
30203
  return (_ctx, _cache) => {
32558
- return openBlock(), createBlock(unref(_sfc_main$l), { title: "Body" }, {
30204
+ return openBlock(), createBlock(unref(_sfc_main$j), { title: "Body" }, {
32559
30205
  default: withCtx(() => [
32560
30206
  _ctx.body && _ctx.body.length === 0 && _ctx.formData && _ctx.formData.length === 0 ? (openBlock(), createElementBlock("span", _hoisted_1$d, "No Body")) : _ctx.formData && _ctx.formData.length > 0 ? (openBlock(), createBlock(unref(_sfc_main$h), {
32561
30207
  key: 1,
@@ -32613,7 +30259,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
32613
30259
  (_a2 = activeRequest2.cookies) == null ? void 0 : _a2.push({ name: "", value: "", enabled: true });
32614
30260
  }
32615
30261
  return (_ctx, _cache) => {
32616
- return openBlock(), createBlock(unref(_sfc_main$l), {
30262
+ return openBlock(), createBlock(unref(_sfc_main$j), {
32617
30263
  defaultOpen: unref(activeRequest2).cookies && unref(activeRequest2).cookies.length > 0,
32618
30264
  title: "Cookies"
32619
30265
  }, {
@@ -32680,7 +30326,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
32680
30326
  (_a2 = activeRequest2.headers) == null ? void 0 : _a2.push({ name: "", value: "", enabled: true });
32681
30327
  }
32682
30328
  return (_ctx, _cache) => {
32683
- return openBlock(), createBlock(unref(_sfc_main$l), {
30329
+ return openBlock(), createBlock(unref(_sfc_main$j), {
32684
30330
  defaultOpen: unref(activeRequest2).headers && unref(activeRequest2).headers.length > 0,
32685
30331
  title: "Headers"
32686
30332
  }, {
@@ -32747,7 +30393,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
32747
30393
  (_a2 = activeRequest2.query) == null ? void 0 : _a2.push({ name: "", value: "", enabled: true });
32748
30394
  }
32749
30395
  return (_ctx, _cache) => {
32750
- return openBlock(), createBlock(unref(_sfc_main$l), {
30396
+ return openBlock(), createBlock(unref(_sfc_main$j), {
32751
30397
  defaultOpen: unref(activeRequest2).query && unref(activeRequest2).query.length > 0,
32752
30398
  title: "Query Parameters"
32753
30399
  }, {
@@ -32815,7 +30461,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
32815
30461
  (_a2 = activeRequest2.variables) == null ? void 0 : _a2.push({ name: "", value: "", enabled: true });
32816
30462
  }
32817
30463
  return (_ctx, _cache) => {
32818
- return openBlock(), createBlock(unref(_sfc_main$l), {
30464
+ return openBlock(), createBlock(unref(_sfc_main$j), {
32819
30465
  defaultOpen: unref(activeRequest2).variables && unref(activeRequest2).variables.length > 0,
32820
30466
  title: "Variables"
32821
30467
  }, {
@@ -32876,7 +30522,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
32876
30522
  createVNode(_sfc_main$b, {
32877
30523
  variables: unref(activeRequest2).variables
32878
30524
  }, null, 8, ["variables"]),
32879
- createVNode(_sfc_main$k),
30525
+ createVNode(_sfc_main$i),
32880
30526
  createVNode(_sfc_main$e, {
32881
30527
  cookies: unref(activeRequest2).cookies
32882
30528
  }, null, 8, ["cookies"]),
@@ -32940,10 +30586,10 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
32940
30586
  return null;
32941
30587
  });
32942
30588
  return (_ctx, _cache) => {
32943
- return openBlock(), createBlock(unref(_sfc_main$l), { title: "Body" }, {
30589
+ return openBlock(), createBlock(unref(_sfc_main$j), { title: "Body" }, {
32944
30590
  default: withCtx(() => [
32945
30591
  _ctx.active ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
32946
- codeMirrorLanguage.value ? (openBlock(), createBlock(unref(_sfc_main$j), {
30592
+ codeMirrorLanguage.value ? (openBlock(), createBlock(unref(ft), {
32947
30593
  key: 0,
32948
30594
  class: "custom-scroll",
32949
30595
  content: _ctx.data,
@@ -33062,7 +30708,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
33062
30708
  }).join("-");
33063
30709
  };
33064
30710
  return (_ctx, _cache) => {
33065
- return openBlock(), createBlock(unref(_sfc_main$l), { title: "Headers" }, {
30711
+ return openBlock(), createBlock(unref(_sfc_main$j), { title: "Headers" }, {
33066
30712
  default: withCtx(() => [
33067
30713
  _ctx.headers.length > 0 ? (openBlock(), createBlock(unref(SimpleTable), { key: 0 }, {
33068
30714
  default: withCtx(() => [
@@ -33242,7 +30888,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
33242
30888
  headers: responseHeaders.value
33243
30889
  }, null, 8, ["active", "data", "headers"]),
33244
30890
  createVNode(_sfc_main$3, { headers: responseHeaders.value }, null, 8, ["headers"]),
33245
- createVNode(unref(_sfc_main$l), { title: "Cookies" }, {
30891
+ createVNode(unref(_sfc_main$j), { title: "Cookies" }, {
33246
30892
  default: withCtx(() => [
33247
30893
  withDirectives(createVNode(unref(_sfc_main$g), { items: responseCookies.value }, null, 8, ["items"]), [
33248
30894
  [vShow, responseCookies.value.length > 0]
@@ -33290,8 +30936,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
33290
30936
  );
33291
30937
  return (_ctx, _cache) => {
33292
30938
  return openBlock(), createElementBlock(Fragment, null, [
33293
- createVNode(unref(_sfc_main$t), { id: _ctx.theme }, null, 8, ["id"]),
33294
- createVNode(_sfc_main$s, {
30939
+ createVNode(unref(_sfc_main$r), { id: _ctx.theme }, null, 8, ["id"]),
30940
+ createVNode(_sfc_main$q, {
33295
30941
  class: "scalar-api-client",
33296
30942
  method: unref(activeRequest2).type ?? "get",
33297
30943
  property: "--default-scalar-api-client-color",
@@ -33367,7 +31013,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
33367
31013
  });
33368
31014
  export {
33369
31015
  _sfc_main as ApiClient,
33370
- _sfc_main$s as HttpMethod,
31016
+ _sfc_main$q as HttpMethod,
33371
31017
  concatenateUrlAndPath,
33372
31018
  createEmptyAuthState,
33373
31019
  createPlaceholderRequest,