@scalar/api-reference 1.44.9 → 1.44.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +72 -0
- package/dist/browser/standalone.js +13583 -13314
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/ApiReference.vue.d.ts.map +1 -1
- package/dist/components/ApiReference.vue.js +1 -1
- package/dist/components/ApiReference.vue2.js +4 -3
- package/dist/components/Content/Auth/Auth.vue.d.ts +2 -0
- package/dist/components/Content/Auth/Auth.vue.d.ts.map +1 -1
- package/dist/components/Content/Auth/Auth.vue.js +11 -4
- package/dist/components/Content/Content.vue.d.ts +2 -0
- package/dist/components/Content/Content.vue.d.ts.map +1 -1
- package/dist/components/Content/Content.vue.js +10 -5
- package/dist/components/Content/Models/components/ClassicLayout.vue.js +1 -1
- package/dist/components/Content/Models/components/ClassicLayout.vue2.js +2 -2
- package/dist/components/Content/Operations/TraversedEntry.vue.d.ts +3 -0
- package/dist/components/Content/Operations/TraversedEntry.vue.d.ts.map +1 -1
- package/dist/components/Content/Operations/TraversedEntry.vue.js +9 -4
- package/dist/components/Content/Schema/SchemaComposition.vue.d.ts +2 -3
- package/dist/components/Content/Schema/SchemaComposition.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaComposition.vue.js +3 -3
- package/dist/components/Content/Schema/SchemaEnumValues.vue.js +1 -1
- package/dist/components/Content/Schema/SchemaEnumValues.vue2.js +2 -2
- package/dist/components/Content/Schema/SchemaObjectProperties.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaObjectProperties.vue.js +4 -4
- package/dist/components/Content/Schema/SchemaProperty.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaProperty.vue.js +1 -1
- package/dist/components/Content/Schema/SchemaProperty.vue2.js +3 -3
- package/dist/components/Content/Schema/SchemaPropertyHeading.vue.js +1 -1
- package/dist/components/Content/Schema/SchemaPropertyHeading.vue2.js +3 -3
- package/dist/components/Content/Schema/helpers/get-compositions-to-render.js +3 -3
- package/dist/components/Content/Schema/helpers/get-enum-values.js +2 -2
- package/dist/components/Content/Schema/helpers/get-schema-type.d.ts +1 -2
- package/dist/components/Content/Schema/helpers/get-schema-type.d.ts.map +1 -1
- package/dist/components/Content/Schema/helpers/get-schema-type.js +3 -9
- package/dist/components/Content/Schema/helpers/merge-all-of-schemas.d.ts.map +1 -1
- package/dist/components/Content/Schema/helpers/merge-all-of-schemas.js +15 -14
- package/dist/components/Content/Schema/helpers/optimize-value-for-display.d.ts +1 -5
- package/dist/components/Content/Schema/helpers/optimize-value-for-display.d.ts.map +1 -1
- package/dist/components/Content/Schema/helpers/optimize-value-for-display.js +4 -6
- package/dist/components/Content/Schema/helpers/schema-name.d.ts +2 -2
- package/dist/components/Content/Schema/helpers/schema-name.d.ts.map +1 -1
- package/dist/components/Content/Schema/helpers/schema-name.js +4 -4
- package/dist/components/Content/Schema/helpers/sort-property-names.js +2 -2
- package/dist/features/Operation/Operation.vue.d.ts +6 -0
- package/dist/features/Operation/Operation.vue.d.ts.map +1 -1
- package/dist/features/Operation/Operation.vue.js +17 -2
- package/dist/features/Operation/helpers/filter-selected-security.d.ts +4 -3
- package/dist/features/Operation/helpers/filter-selected-security.d.ts.map +1 -1
- package/dist/features/Operation/helpers/filter-selected-security.js +2 -5
- package/dist/features/Operation/layouts/ClassicLayout.vue.d.ts +4 -3
- package/dist/features/Operation/layouts/ClassicLayout.vue.d.ts.map +1 -1
- package/dist/features/Operation/layouts/ClassicLayout.vue.js +1 -1
- package/dist/features/Operation/layouts/ModernLayout.vue.d.ts +4 -3
- package/dist/features/Operation/layouts/ModernLayout.vue.d.ts.map +1 -1
- package/dist/features/Operation/layouts/ModernLayout.vue.js +1 -1
- package/dist/helpers/load-from-perssistance.d.ts +3 -23
- package/dist/helpers/load-from-perssistance.d.ts.map +1 -1
- package/dist/helpers/load-from-perssistance.js +5 -61
- package/dist/helpers/storage.d.ts +39 -278
- package/dist/helpers/storage.d.ts.map +1 -1
- package/dist/helpers/storage.js +9 -28
- package/dist/plugins/persistance-plugin.d.ts.map +1 -1
- package/dist/plugins/persistance-plugin.js +3 -19
- package/dist/style.css +157 -154
- package/package.json +15 -15
package/dist/style.css
CHANGED
|
@@ -292,25 +292,25 @@ button.schema-card-title[data-v-4d81600f]:hover {
|
|
|
292
292
|
color: var(--scalar-color-3);
|
|
293
293
|
}
|
|
294
294
|
|
|
295
|
-
.property-heading:empty + .property-description[data-v-
|
|
296
|
-
.property-description[data-v-
|
|
295
|
+
.property-heading:empty + .property-description[data-v-d5367294]:last-of-type,
|
|
296
|
+
.property-description[data-v-d5367294]:first-of-type:last-of-type {
|
|
297
297
|
margin-top: 0;
|
|
298
298
|
}
|
|
299
|
-
.property-list[data-v-
|
|
299
|
+
.property-list[data-v-d5367294] {
|
|
300
300
|
border: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
301
301
|
border-radius: var(--scalar-radius);
|
|
302
302
|
margin-top: 10px;
|
|
303
303
|
}
|
|
304
|
-
.property-list .property[data-v-
|
|
304
|
+
.property-list .property[data-v-d5367294]:last-of-type {
|
|
305
305
|
padding-bottom: 10px;
|
|
306
306
|
}
|
|
307
|
-
.property-enum-values[data-v-
|
|
307
|
+
.property-enum-values[data-v-d5367294] {
|
|
308
308
|
font-size: var(--scalar-font-size-3);
|
|
309
309
|
list-style: none;
|
|
310
310
|
margin-top: 8px;
|
|
311
311
|
padding-left: 2px;
|
|
312
312
|
}
|
|
313
|
-
.enum-toggle-button[data-v-
|
|
313
|
+
.enum-toggle-button[data-v-d5367294]:hover {
|
|
314
314
|
color: var(--scalar-color-1);
|
|
315
315
|
}
|
|
316
316
|
|
|
@@ -445,27 +445,27 @@ code.property-detail-value[data-v-827ea49d] {
|
|
|
445
445
|
border: transparent;
|
|
446
446
|
}
|
|
447
447
|
|
|
448
|
-
.property-heading[data-v-
|
|
448
|
+
.property-heading[data-v-e94a52f3] {
|
|
449
449
|
display: flex;
|
|
450
450
|
flex-wrap: wrap;
|
|
451
451
|
align-items: baseline;
|
|
452
452
|
row-gap: 9px;
|
|
453
453
|
white-space: nowrap;
|
|
454
454
|
}
|
|
455
|
-
.property-heading[data-v-
|
|
456
|
-
.property-heading[data-v-
|
|
455
|
+
.property-heading[data-v-e94a52f3]:has(+ .children),
|
|
456
|
+
.property-heading[data-v-e94a52f3]:has(+ .property-rule) {
|
|
457
457
|
margin-bottom: 9px;
|
|
458
458
|
}
|
|
459
|
-
.property-heading[data-v-
|
|
459
|
+
.property-heading[data-v-e94a52f3] > * {
|
|
460
460
|
margin-right: 9px;
|
|
461
461
|
}
|
|
462
|
-
.property-heading[data-v-
|
|
462
|
+
.property-heading[data-v-e94a52f3]:last-child {
|
|
463
463
|
margin-right: 0;
|
|
464
464
|
}
|
|
465
|
-
.property-heading > .property-detail[data-v-
|
|
465
|
+
.property-heading > .property-detail[data-v-e94a52f3]:not(:last-of-type) {
|
|
466
466
|
margin-right: 0;
|
|
467
467
|
}
|
|
468
|
-
.property-name[data-v-
|
|
468
|
+
.property-name[data-v-e94a52f3] {
|
|
469
469
|
max-width: 100%;
|
|
470
470
|
font-family: var(--scalar-font-code);
|
|
471
471
|
font-weight: var(--scalar-semibold);
|
|
@@ -473,30 +473,30 @@ code.property-detail-value[data-v-827ea49d] {
|
|
|
473
473
|
white-space: normal;
|
|
474
474
|
overflow-wrap: break-word;
|
|
475
475
|
}
|
|
476
|
-
.property-additional[data-v-
|
|
476
|
+
.property-additional[data-v-e94a52f3] {
|
|
477
477
|
font-family: var(--scalar-font-code);
|
|
478
478
|
}
|
|
479
|
-
.property-required[data-v-
|
|
480
|
-
.property-optional[data-v-
|
|
479
|
+
.property-required[data-v-e94a52f3],
|
|
480
|
+
.property-optional[data-v-e94a52f3] {
|
|
481
481
|
color: var(--scalar-color-2);
|
|
482
482
|
}
|
|
483
|
-
.property-required[data-v-
|
|
483
|
+
.property-required[data-v-e94a52f3] {
|
|
484
484
|
font-size: var(--scalar-mini);
|
|
485
485
|
color: var(--scalar-color-orange);
|
|
486
486
|
}
|
|
487
|
-
.property-read-only[data-v-
|
|
487
|
+
.property-read-only[data-v-e94a52f3] {
|
|
488
488
|
font-size: var(--scalar-mini);
|
|
489
489
|
color: var(--scalar-color-blue);
|
|
490
490
|
}
|
|
491
|
-
.property-write-only[data-v-
|
|
491
|
+
.property-write-only[data-v-e94a52f3] {
|
|
492
492
|
font-size: var(--scalar-mini);
|
|
493
493
|
color: var(--scalar-color-green);
|
|
494
494
|
}
|
|
495
|
-
.property-discriminator[data-v-
|
|
495
|
+
.property-discriminator[data-v-e94a52f3] {
|
|
496
496
|
font-size: var(--scalar-mini);
|
|
497
497
|
color: var(--scalar-color-purple);
|
|
498
498
|
}
|
|
499
|
-
.property-detail[data-v-
|
|
499
|
+
.property-detail[data-v-e94a52f3] {
|
|
500
500
|
font-size: var(--scalar-mini);
|
|
501
501
|
color: var(--scalar-color-2);
|
|
502
502
|
display: flex;
|
|
@@ -504,14 +504,14 @@ code.property-detail-value[data-v-827ea49d] {
|
|
|
504
504
|
|
|
505
505
|
min-width: 0;
|
|
506
506
|
}
|
|
507
|
-
.property-const[data-v-
|
|
507
|
+
.property-const[data-v-e94a52f3] {
|
|
508
508
|
color: var(--scalar-color-1);
|
|
509
509
|
}
|
|
510
|
-
.deprecated[data-v-
|
|
510
|
+
.deprecated[data-v-e94a52f3] {
|
|
511
511
|
text-decoration: line-through;
|
|
512
512
|
}
|
|
513
513
|
|
|
514
|
-
.property[data-v-
|
|
514
|
+
.property[data-v-dfddcb79] {
|
|
515
515
|
color: var(--scalar-color-1);
|
|
516
516
|
display: flex;
|
|
517
517
|
flex-direction: column;
|
|
@@ -521,7 +521,7 @@ code.property-detail-value[data-v-827ea49d] {
|
|
|
521
521
|
}
|
|
522
522
|
|
|
523
523
|
/** Remove top padding for top level schema card */
|
|
524
|
-
.property.property--level-0[data-v-
|
|
524
|
+
.property.property--level-0[data-v-dfddcb79]:has(
|
|
525
525
|
> .property-rule
|
|
526
526
|
> .schema-card
|
|
527
527
|
> .schema-properties.schema-properties-open
|
|
@@ -530,25 +530,25 @@ code.property-detail-value[data-v-827ea49d] {
|
|
|
530
530
|
) {
|
|
531
531
|
padding-top: 0;
|
|
532
532
|
}
|
|
533
|
-
.property--compact.property--level-0[data-v-
|
|
534
|
-
.property--compact.property--level-1[data-v-
|
|
533
|
+
.property--compact.property--level-0[data-v-dfddcb79],
|
|
534
|
+
.property--compact.property--level-1[data-v-dfddcb79] {
|
|
535
535
|
padding: 8px 0;
|
|
536
536
|
}
|
|
537
|
-
.composition-panel .property.property.property.property--level-0[data-v-
|
|
537
|
+
.composition-panel .property.property.property.property--level-0[data-v-dfddcb79] {
|
|
538
538
|
padding: 0px;
|
|
539
539
|
}
|
|
540
540
|
.property--compact.property--level-0
|
|
541
541
|
.composition-panel
|
|
542
|
-
.property--compact.property--level-1[data-v-
|
|
542
|
+
.property--compact.property--level-1[data-v-dfddcb79] {
|
|
543
543
|
padding: 8px;
|
|
544
544
|
}
|
|
545
545
|
|
|
546
546
|
/* if a property doesn't have a heading, remove the top padding */
|
|
547
|
-
.property[data-v-
|
|
547
|
+
.property[data-v-dfddcb79]:has(> .property-rule:nth-of-type(1)):not(.property--compact) {
|
|
548
548
|
padding-top: 8px;
|
|
549
549
|
padding-bottom: 8px;
|
|
550
550
|
}
|
|
551
|
-
.property--deprecated[data-v-
|
|
551
|
+
.property--deprecated[data-v-dfddcb79] {
|
|
552
552
|
background: repeating-linear-gradient(
|
|
553
553
|
-45deg,
|
|
554
554
|
var(--scalar-background-2) 0,
|
|
@@ -558,53 +558,53 @@ code.property-detail-value[data-v-827ea49d] {
|
|
|
558
558
|
);
|
|
559
559
|
background-size: 100%;
|
|
560
560
|
}
|
|
561
|
-
.property--deprecated[data-v-
|
|
561
|
+
.property--deprecated[data-v-dfddcb79] > * {
|
|
562
562
|
opacity: 0.75;
|
|
563
563
|
}
|
|
564
|
-
.property-description[data-v-
|
|
564
|
+
.property-description[data-v-dfddcb79] {
|
|
565
565
|
margin-top: 6px;
|
|
566
566
|
line-height: 1.4;
|
|
567
567
|
font-size: var(--scalar-small);
|
|
568
568
|
}
|
|
569
|
-
.property-description[data-v-
|
|
569
|
+
.property-description[data-v-dfddcb79]:has(+ .property-rule) {
|
|
570
570
|
margin-bottom: 9px;
|
|
571
571
|
}
|
|
572
|
-
[data-v-
|
|
572
|
+
[data-v-dfddcb79] .property-description * {
|
|
573
573
|
color: var(--scalar-color-2) !important;
|
|
574
574
|
}
|
|
575
|
-
.property[data-v-
|
|
575
|
+
.property[data-v-dfddcb79]:not(:last-of-type) {
|
|
576
576
|
border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
577
577
|
}
|
|
578
|
-
.property-description + .children[data-v-
|
|
579
|
-
.children + .property-rule[data-v-
|
|
578
|
+
.property-description + .children[data-v-dfddcb79],
|
|
579
|
+
.children + .property-rule[data-v-dfddcb79] {
|
|
580
580
|
margin-top: 9px;
|
|
581
581
|
}
|
|
582
|
-
.children[data-v-
|
|
582
|
+
.children[data-v-dfddcb79] {
|
|
583
583
|
display: flex;
|
|
584
584
|
flex-direction: column;
|
|
585
585
|
}
|
|
586
|
-
.children .property--compact.property--level-1[data-v-
|
|
586
|
+
.children .property--compact.property--level-1[data-v-dfddcb79] {
|
|
587
587
|
padding: 12px;
|
|
588
588
|
}
|
|
589
|
-
.property-example-value[data-v-
|
|
589
|
+
.property-example-value[data-v-dfddcb79] {
|
|
590
590
|
all: unset;
|
|
591
591
|
font-family: var(--scalar-font-code);
|
|
592
592
|
padding: 6px;
|
|
593
593
|
border-top: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
594
594
|
}
|
|
595
|
-
.property-rule[data-v-
|
|
595
|
+
.property-rule[data-v-dfddcb79] {
|
|
596
596
|
border-radius: var(--scalar-radius-lg);
|
|
597
597
|
display: flex;
|
|
598
598
|
flex-direction: column;
|
|
599
599
|
}
|
|
600
|
-
.property-rule[data-v-
|
|
600
|
+
.property-rule[data-v-dfddcb79]
|
|
601
601
|
|
|
602
602
|
.composition-panel .schema-card .schema-properties.schema-properties-open
|
|
603
603
|
{
|
|
604
604
|
border-top-left-radius: 0;
|
|
605
605
|
border-top-right-radius: 0;
|
|
606
606
|
}
|
|
607
|
-
.property-rule[data-v-
|
|
607
|
+
.property-rule[data-v-dfddcb79]
|
|
608
608
|
.composition-panel > .schema-card > .schema-card-description {
|
|
609
609
|
padding-left: 8px;
|
|
610
610
|
padding-right: 8px;
|
|
@@ -614,29 +614,29 @@ code.property-detail-value[data-v-827ea49d] {
|
|
|
614
614
|
margin-top: 0;
|
|
615
615
|
}
|
|
616
616
|
}
|
|
617
|
-
.property-example[data-v-
|
|
617
|
+
.property-example[data-v-dfddcb79] {
|
|
618
618
|
background: transparent;
|
|
619
619
|
border: none;
|
|
620
620
|
display: flex;
|
|
621
621
|
flex-direction: row;
|
|
622
622
|
gap: 8px;
|
|
623
623
|
}
|
|
624
|
-
.property-example-label[data-v-
|
|
625
|
-
.property-example-value[data-v-
|
|
624
|
+
.property-example-label[data-v-dfddcb79],
|
|
625
|
+
.property-example-value[data-v-dfddcb79] {
|
|
626
626
|
padding: 3px 0 0 0;
|
|
627
627
|
}
|
|
628
|
-
.property-example-value[data-v-
|
|
628
|
+
.property-example-value[data-v-dfddcb79] {
|
|
629
629
|
background: var(--scalar-background-2);
|
|
630
630
|
border-top: 0;
|
|
631
631
|
border-radius: var(--scalar-radius);
|
|
632
632
|
padding: 3px 4px;
|
|
633
633
|
}
|
|
634
|
-
.property-name[data-v-
|
|
634
|
+
.property-name[data-v-dfddcb79] {
|
|
635
635
|
font-family: var(--scalar-font-code);
|
|
636
636
|
font-weight: var(--scalar-semibold);
|
|
637
637
|
}
|
|
638
|
-
.property-name-additional-properties[data-v-
|
|
639
|
-
.property-name-pattern-properties[data-v-
|
|
638
|
+
.property-name-additional-properties[data-v-dfddcb79]::before,
|
|
639
|
+
.property-name-pattern-properties[data-v-dfddcb79]::before {
|
|
640
640
|
text-transform: uppercase;
|
|
641
641
|
font-size: var(--scalar-micro);
|
|
642
642
|
display: inline-block;
|
|
@@ -647,10 +647,10 @@ code.property-detail-value[data-v-827ea49d] {
|
|
|
647
647
|
background-color: var(--scalar-background-2);
|
|
648
648
|
margin-right: 4px;
|
|
649
649
|
}
|
|
650
|
-
.property-name-pattern-properties[data-v-
|
|
650
|
+
.property-name-pattern-properties[data-v-dfddcb79]::before {
|
|
651
651
|
content: 'regex';
|
|
652
652
|
}
|
|
653
|
-
.property-name-additional-properties[data-v-
|
|
653
|
+
.property-name-additional-properties[data-v-dfddcb79]::before {
|
|
654
654
|
content: 'unknown property name';
|
|
655
655
|
}
|
|
656
656
|
|
|
@@ -658,20 +658,20 @@ code.property-detail-value[data-v-827ea49d] {
|
|
|
658
658
|
display: inline;
|
|
659
659
|
}
|
|
660
660
|
|
|
661
|
-
.reference-models-anchor[data-v-
|
|
661
|
+
.reference-models-anchor[data-v-e4ca3c0f] {
|
|
662
662
|
display: flex;
|
|
663
663
|
align-items: center;
|
|
664
664
|
font-size: 20px;
|
|
665
665
|
padding-left: 6px;
|
|
666
666
|
color: var(--scalar-color-1);
|
|
667
667
|
}
|
|
668
|
-
.reference-models-label[data-v-
|
|
668
|
+
.reference-models-label[data-v-e4ca3c0f] {
|
|
669
669
|
display: block;
|
|
670
670
|
font-size: var(--scalar-mini);
|
|
671
671
|
}
|
|
672
672
|
|
|
673
673
|
/* Style the "icon" */
|
|
674
|
-
.reference-models-label[data-v-
|
|
674
|
+
.reference-models-label[data-v-e4ca3c0f] em {
|
|
675
675
|
font-weight: var(--scalar-bold);
|
|
676
676
|
}
|
|
677
677
|
|
|
@@ -1459,11 +1459,11 @@ button.headers-card-title[data-v-6fb09984]:hover {
|
|
|
1459
1459
|
margin-right: 4px;
|
|
1460
1460
|
}
|
|
1461
1461
|
/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
|
|
1462
|
-
.operation-title[data-v-
|
|
1462
|
+
.operation-title[data-v-7a9e67c3] {
|
|
1463
1463
|
justify-content: space-between;
|
|
1464
1464
|
display: flex;
|
|
1465
1465
|
}
|
|
1466
|
-
.operation-details[data-v-
|
|
1466
|
+
.operation-details[data-v-7a9e67c3] {
|
|
1467
1467
|
flex-shrink: 1;
|
|
1468
1468
|
align-items: center;
|
|
1469
1469
|
gap: 9px;
|
|
@@ -1471,11 +1471,11 @@ button.headers-card-title[data-v-6fb09984]:hover {
|
|
|
1471
1471
|
margin-top: 0;
|
|
1472
1472
|
display: flex;
|
|
1473
1473
|
}
|
|
1474
|
-
.operation-details[data-v-
|
|
1474
|
+
.operation-details[data-v-7a9e67c3] .endpoint-anchor .scalar-button svg {
|
|
1475
1475
|
width: 16px;
|
|
1476
1476
|
height: 16px;
|
|
1477
1477
|
}
|
|
1478
|
-
.endpoint-type[data-v-
|
|
1478
|
+
.endpoint-type[data-v-7a9e67c3] {
|
|
1479
1479
|
z-index: 0;
|
|
1480
1480
|
width: 60px;
|
|
1481
1481
|
font-size: var(--scalar-small);
|
|
@@ -1490,7 +1490,7 @@ button.headers-card-title[data-v-6fb09984]:hover {
|
|
|
1490
1490
|
display: flex;
|
|
1491
1491
|
position: relative;
|
|
1492
1492
|
}
|
|
1493
|
-
.endpoint-type[data-v-
|
|
1493
|
+
.endpoint-type[data-v-7a9e67c3]:after {
|
|
1494
1494
|
content: "";
|
|
1495
1495
|
z-index: -1;
|
|
1496
1496
|
opacity: .15;
|
|
@@ -1499,16 +1499,16 @@ button.headers-card-title[data-v-6fb09984]:hover {
|
|
|
1499
1499
|
position: absolute;
|
|
1500
1500
|
inset: 0;
|
|
1501
1501
|
}
|
|
1502
|
-
.endpoint-anchor[data-v-
|
|
1502
|
+
.endpoint-anchor[data-v-7a9e67c3] {
|
|
1503
1503
|
flex-shrink: 1;
|
|
1504
1504
|
align-items: center;
|
|
1505
1505
|
min-width: 0;
|
|
1506
1506
|
display: flex;
|
|
1507
1507
|
}
|
|
1508
|
-
.endpoint-anchor.label[data-v-
|
|
1508
|
+
.endpoint-anchor.label[data-v-7a9e67c3] {
|
|
1509
1509
|
display: flex;
|
|
1510
1510
|
}
|
|
1511
|
-
.endpoint-label[data-v-
|
|
1511
|
+
.endpoint-label[data-v-7a9e67c3] {
|
|
1512
1512
|
min-width: 0;
|
|
1513
1513
|
color: var(--scalar-color-1);
|
|
1514
1514
|
flex-shrink: 1;
|
|
@@ -1516,17 +1516,17 @@ button.headers-card-title[data-v-6fb09984]:hover {
|
|
|
1516
1516
|
gap: 9px;
|
|
1517
1517
|
display: flex;
|
|
1518
1518
|
}
|
|
1519
|
-
.endpoint-label-path[data-v-
|
|
1519
|
+
.endpoint-label-path[data-v-7a9e67c3] {
|
|
1520
1520
|
font-family: var(--scalar-font-code);
|
|
1521
1521
|
font-size: var(--scalar-mini);
|
|
1522
1522
|
text-overflow: ellipsis;
|
|
1523
1523
|
white-space: nowrap;
|
|
1524
1524
|
overflow: hidden;
|
|
1525
1525
|
}
|
|
1526
|
-
.endpoint-label-path[data-v-
|
|
1526
|
+
.endpoint-label-path[data-v-7a9e67c3] em {
|
|
1527
1527
|
color: var(--scalar-color-2);
|
|
1528
1528
|
}
|
|
1529
|
-
.endpoint-label-name[data-v-
|
|
1529
|
+
.endpoint-label-name[data-v-7a9e67c3] {
|
|
1530
1530
|
color: var(--scalar-color-2);
|
|
1531
1531
|
font-size: var(--scalar-small);
|
|
1532
1532
|
text-overflow: ellipsis;
|
|
@@ -1534,17 +1534,17 @@ button.headers-card-title[data-v-6fb09984]:hover {
|
|
|
1534
1534
|
flex-shrink: 1000000000;
|
|
1535
1535
|
overflow: hidden;
|
|
1536
1536
|
}
|
|
1537
|
-
.endpoint-try-hint[data-v-
|
|
1537
|
+
.endpoint-try-hint[data-v-7a9e67c3] {
|
|
1538
1538
|
flex-shrink: 0;
|
|
1539
1539
|
padding: 2px;
|
|
1540
1540
|
}
|
|
1541
|
-
.endpoint-copy[data-v-
|
|
1541
|
+
.endpoint-copy[data-v-7a9e67c3] {
|
|
1542
1542
|
color: currentColor;
|
|
1543
1543
|
}
|
|
1544
|
-
.endpoint-copy[data-v-
|
|
1544
|
+
.endpoint-copy[data-v-7a9e67c3] svg {
|
|
1545
1545
|
stroke-width: 2px;
|
|
1546
1546
|
}
|
|
1547
|
-
.endpoint-content[data-v-
|
|
1547
|
+
.endpoint-content[data-v-7a9e67c3] {
|
|
1548
1548
|
grid-auto-columns: 1fr;
|
|
1549
1549
|
grid-auto-flow: row;
|
|
1550
1550
|
gap: 9px;
|
|
@@ -1552,52 +1552,52 @@ button.headers-card-title[data-v-6fb09984]:hover {
|
|
|
1552
1552
|
display: grid;
|
|
1553
1553
|
}
|
|
1554
1554
|
@media (min-width: 1000px) {
|
|
1555
|
-
.endpoint-content[data-v-
|
|
1555
|
+
.endpoint-content[data-v-7a9e67c3] {
|
|
1556
1556
|
grid-auto-flow: column;
|
|
1557
1557
|
}
|
|
1558
1558
|
}
|
|
1559
1559
|
@container (max-width: 900px) {
|
|
1560
|
-
.endpoint-content[data-v-
|
|
1560
|
+
.endpoint-content[data-v-7a9e67c3] {
|
|
1561
1561
|
grid-template-columns: 1fr;
|
|
1562
1562
|
}
|
|
1563
1563
|
}
|
|
1564
|
-
.endpoint-content[data-v-
|
|
1564
|
+
.endpoint-content[data-v-7a9e67c3] > * {
|
|
1565
1565
|
min-width: 0;
|
|
1566
1566
|
}
|
|
1567
|
-
.operation-details-card[data-v-
|
|
1567
|
+
.operation-details-card[data-v-7a9e67c3] {
|
|
1568
1568
|
flex-direction: column;
|
|
1569
1569
|
gap: 12px;
|
|
1570
1570
|
min-width: 0;
|
|
1571
1571
|
display: flex;
|
|
1572
1572
|
}
|
|
1573
|
-
:is(.operation-details-card-item[data-v-
|
|
1573
|
+
:is(.operation-details-card-item[data-v-7a9e67c3] .parameter-list, .operation-details-card-item[data-v-7a9e67c3] .callbacks-list) {
|
|
1574
1574
|
border: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
1575
1575
|
border-radius: var(--scalar-radius-lg);
|
|
1576
1576
|
margin-top: 0;
|
|
1577
1577
|
}
|
|
1578
|
-
.operation-details-card-item[data-v-
|
|
1578
|
+
.operation-details-card-item[data-v-7a9e67c3] {
|
|
1579
1579
|
flex-direction: column;
|
|
1580
1580
|
gap: 12px;
|
|
1581
1581
|
display: flex;
|
|
1582
1582
|
}
|
|
1583
|
-
.operation-details-card-item[data-v-
|
|
1583
|
+
.operation-details-card-item[data-v-7a9e67c3] .parameter-list-items {
|
|
1584
1584
|
margin-bottom: 0;
|
|
1585
1585
|
}
|
|
1586
|
-
.operation-details-card[data-v-
|
|
1586
|
+
.operation-details-card[data-v-7a9e67c3] .parameter-item:last-of-type .parameter-schema {
|
|
1587
1587
|
padding-bottom: 12px;
|
|
1588
1588
|
}
|
|
1589
|
-
.operation-details-card[data-v-
|
|
1589
|
+
.operation-details-card[data-v-7a9e67c3] .parameter-list .parameter-list {
|
|
1590
1590
|
margin-bottom: 12px;
|
|
1591
1591
|
}
|
|
1592
|
-
.operation-details-card[data-v-
|
|
1592
|
+
.operation-details-card[data-v-7a9e67c3] .parameter-item {
|
|
1593
1593
|
margin: 0;
|
|
1594
1594
|
padding: 0;
|
|
1595
1595
|
}
|
|
1596
|
-
.operation-details-card[data-v-
|
|
1596
|
+
.operation-details-card[data-v-7a9e67c3] .property {
|
|
1597
1597
|
margin: 0;
|
|
1598
1598
|
padding: 9px;
|
|
1599
1599
|
}
|
|
1600
|
-
:is(.operation-details-card[data-v-
|
|
1600
|
+
:is(.operation-details-card[data-v-7a9e67c3] .parameter-list-title, .operation-details-card[data-v-7a9e67c3] .request-body-title, .operation-details-card[data-v-7a9e67c3] .callbacks-title) {
|
|
1601
1601
|
text-transform: uppercase;
|
|
1602
1602
|
font-weight: var(--scalar-bold);
|
|
1603
1603
|
font-size: var(--scalar-mini);
|
|
@@ -1606,61 +1606,61 @@ button.headers-card-title[data-v-6fb09984]:hover {
|
|
|
1606
1606
|
padding: 9px;
|
|
1607
1607
|
line-height: 1.33;
|
|
1608
1608
|
}
|
|
1609
|
-
.operation-details-card[data-v-
|
|
1609
|
+
.operation-details-card[data-v-7a9e67c3] .callback-list-item-title {
|
|
1610
1610
|
padding-left: 28px;
|
|
1611
1611
|
padding-right: 12px;
|
|
1612
1612
|
}
|
|
1613
|
-
.operation-details-card[data-v-
|
|
1613
|
+
.operation-details-card[data-v-7a9e67c3] .callback-list-item-icon {
|
|
1614
1614
|
left: 6px;
|
|
1615
1615
|
}
|
|
1616
|
-
.operation-details-card[data-v-
|
|
1616
|
+
.operation-details-card[data-v-7a9e67c3] .callback-operation-container {
|
|
1617
1617
|
padding-inline: 9px;
|
|
1618
1618
|
padding-bottom: 9px;
|
|
1619
1619
|
}
|
|
1620
|
-
:is(.operation-details-card[data-v-
|
|
1620
|
+
:is(.operation-details-card[data-v-7a9e67c3] .callback-operation-container > .request-body, .operation-details-card[data-v-7a9e67c3] .callback-operation-container > .parameter-list) {
|
|
1621
1621
|
border: none;
|
|
1622
1622
|
}
|
|
1623
|
-
.operation-details-card[data-v-
|
|
1623
|
+
.operation-details-card[data-v-7a9e67c3] .callback-operation-container > .request-body > .request-body-header {
|
|
1624
1624
|
border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
1625
1625
|
padding: 0 0 9px;
|
|
1626
1626
|
}
|
|
1627
|
-
.operation-details-card[data-v-
|
|
1627
|
+
.operation-details-card[data-v-7a9e67c3] .request-body-description {
|
|
1628
1628
|
border-top: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
1629
1629
|
margin-top: 0;
|
|
1630
1630
|
padding: 9px 9px 0;
|
|
1631
1631
|
}
|
|
1632
|
-
.operation-details-card[data-v-
|
|
1632
|
+
.operation-details-card[data-v-7a9e67c3] .request-body {
|
|
1633
1633
|
border-radius: var(--scalar-radius-lg);
|
|
1634
1634
|
border: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
1635
1635
|
margin-top: 0;
|
|
1636
1636
|
}
|
|
1637
|
-
.operation-details-card[data-v-
|
|
1637
|
+
.operation-details-card[data-v-7a9e67c3] .request-body .schema-card--level-0 > .schema-card-description {
|
|
1638
1638
|
padding-inline: 9px;
|
|
1639
1639
|
}
|
|
1640
|
-
.operation-details-card[data-v-
|
|
1640
|
+
.operation-details-card[data-v-7a9e67c3] .request-body-header {
|
|
1641
1641
|
border-bottom: 0;
|
|
1642
1642
|
padding-bottom: 0;
|
|
1643
1643
|
}
|
|
1644
|
-
.operation-details-card[data-v-
|
|
1644
|
+
.operation-details-card[data-v-7a9e67c3] .contents button {
|
|
1645
1645
|
margin-right: 9px;
|
|
1646
1646
|
}
|
|
1647
|
-
.operation-details-card[data-v-
|
|
1647
|
+
.operation-details-card[data-v-7a9e67c3] .schema-card--open + .schema-card:not(.schema-card--open) {
|
|
1648
1648
|
margin-inline: 9px;
|
|
1649
1649
|
margin-bottom: 9px;
|
|
1650
1650
|
}
|
|
1651
|
-
.operation-details-card[data-v-
|
|
1651
|
+
.operation-details-card[data-v-7a9e67c3] .request-body-schema .property--level-0 {
|
|
1652
1652
|
padding: 0;
|
|
1653
1653
|
}
|
|
1654
|
-
.operation-details-card[data-v-
|
|
1654
|
+
.operation-details-card[data-v-7a9e67c3] .selected-content-type {
|
|
1655
1655
|
margin-right: 9px;
|
|
1656
1656
|
}
|
|
1657
|
-
.operation-example-card[data-v-
|
|
1657
|
+
.operation-example-card[data-v-7a9e67c3] {
|
|
1658
1658
|
top: calc(var(--refs-viewport-offset) + 24px);
|
|
1659
1659
|
max-height: calc(var(--refs-viewport-height) - 48px);
|
|
1660
1660
|
position: sticky;
|
|
1661
1661
|
}
|
|
1662
1662
|
@media (max-width: 600px) {
|
|
1663
|
-
.operation-example-card[data-v-
|
|
1663
|
+
.operation-example-card[data-v-7a9e67c3] {
|
|
1664
1664
|
max-height: unset;
|
|
1665
1665
|
position: static;
|
|
1666
1666
|
}
|
|
@@ -1781,11 +1781,11 @@ button.headers-card-title[data-v-6fb09984]:hover {
|
|
|
1781
1781
|
}
|
|
1782
1782
|
}
|
|
1783
1783
|
|
|
1784
|
-
.examples[data-v-
|
|
1784
|
+
.examples[data-v-1464254e] {
|
|
1785
1785
|
position: sticky;
|
|
1786
1786
|
top: calc(var(--refs-viewport-offset) + 24px);
|
|
1787
1787
|
}
|
|
1788
|
-
.examples[data-v-
|
|
1788
|
+
.examples[data-v-1464254e] > * {
|
|
1789
1789
|
max-height: calc((var(--refs-viewport-height) - 60px) / 2);
|
|
1790
1790
|
position: relative;
|
|
1791
1791
|
}
|
|
@@ -1795,11 +1795,11 @@ button.headers-card-title[data-v-6fb09984]:hover {
|
|
|
1795
1795
|
* (or zoomed in screens)
|
|
1796
1796
|
*/
|
|
1797
1797
|
@media (max-width: 600px) {
|
|
1798
|
-
.examples[data-v-
|
|
1798
|
+
.examples[data-v-1464254e] > * {
|
|
1799
1799
|
max-height: unset;
|
|
1800
1800
|
}
|
|
1801
1801
|
}
|
|
1802
|
-
.deprecated[data-v-
|
|
1802
|
+
.deprecated[data-v-1464254e] * {
|
|
1803
1803
|
text-decoration: line-through;
|
|
1804
1804
|
}
|
|
1805
1805
|
|
|
@@ -3600,6 +3600,9 @@ body {
|
|
|
3600
3600
|
.scalar-app .min-w-7 {
|
|
3601
3601
|
min-width: 28px;
|
|
3602
3602
|
}
|
|
3603
|
+
.scalar-app .flex-grow {
|
|
3604
|
+
flex-grow: 1;
|
|
3605
|
+
}
|
|
3603
3606
|
.scalar-app .rotate-45 {
|
|
3604
3607
|
rotate: 45deg;
|
|
3605
3608
|
}
|
|
@@ -7585,7 +7588,7 @@ to {
|
|
|
7585
7588
|
.scalar-app .shrink-0 {
|
|
7586
7589
|
flex-shrink: 0;
|
|
7587
7590
|
}
|
|
7588
|
-
.scalar-app .flex-grow {
|
|
7591
|
+
.scalar-app .flex-grow, .scalar-app .grow {
|
|
7589
7592
|
flex-grow: 1;
|
|
7590
7593
|
}
|
|
7591
7594
|
.scalar-app .-translate-x-1\/2 {
|
|
@@ -10422,31 +10425,31 @@ input[data-v-3157c3c7]::placeholder {
|
|
|
10422
10425
|
-webkit-text-security: disc;
|
|
10423
10426
|
-moz-text-security: disc;
|
|
10424
10427
|
}
|
|
10425
|
-
.request-section-content[data-v-
|
|
10428
|
+
.request-section-content[data-v-fe19bfef] {
|
|
10426
10429
|
--scalar-border-width: .5px;
|
|
10427
10430
|
}
|
|
10428
|
-
.request-section-content-filter[data-v-
|
|
10431
|
+
.request-section-content-filter[data-v-fe19bfef] {
|
|
10429
10432
|
box-shadow: 0 -10px 0 10px var(--scalar-background-1);
|
|
10430
10433
|
}
|
|
10431
|
-
.request-item:focus-within .request-meta-buttons[data-v-
|
|
10434
|
+
.request-item:focus-within .request-meta-buttons[data-v-fe19bfef] {
|
|
10432
10435
|
opacity: 1;
|
|
10433
10436
|
}
|
|
10434
|
-
.group-hover-input[data-v-
|
|
10437
|
+
.group-hover-input[data-v-fe19bfef] {
|
|
10435
10438
|
border-width: var(--scalar-border-width);
|
|
10436
10439
|
border-color: #0000;
|
|
10437
10440
|
}
|
|
10438
|
-
.group:hover .group-hover-input[data-v-
|
|
10441
|
+
.group:hover .group-hover-input[data-v-fe19bfef] {
|
|
10439
10442
|
background: var(--scalar-background-1);
|
|
10440
10443
|
}
|
|
10441
10444
|
@supports (color: color-mix(in lab, red, red)) {
|
|
10442
|
-
.group:hover .group-hover-input[data-v-
|
|
10445
|
+
.group:hover .group-hover-input[data-v-fe19bfef] {
|
|
10443
10446
|
background: color-mix(in srgb, var(--scalar-background-1), var(--scalar-background-2));
|
|
10444
10447
|
}
|
|
10445
10448
|
}
|
|
10446
|
-
.group:hover .group-hover-input[data-v-
|
|
10449
|
+
.group:hover .group-hover-input[data-v-fe19bfef] {
|
|
10447
10450
|
border-color: var(--scalar-border-color);
|
|
10448
10451
|
}
|
|
10449
|
-
.group-hover-input[data-v-
|
|
10452
|
+
.group-hover-input[data-v-fe19bfef]:focus {
|
|
10450
10453
|
border-color: var(--scalar-border-color) !important;
|
|
10451
10454
|
background: none !important;
|
|
10452
10455
|
}
|
|
@@ -10469,7 +10472,7 @@ input[data-v-3157c3c7]::placeholder {
|
|
|
10469
10472
|
min-width: 100%;
|
|
10470
10473
|
overflow: auto;
|
|
10471
10474
|
}
|
|
10472
|
-
.scalar-code-block[data-v-
|
|
10475
|
+
.scalar-code-block[data-v-8ae4f555] .hljs * {
|
|
10473
10476
|
font-size: var(--scalar-small);
|
|
10474
10477
|
}
|
|
10475
10478
|
.ascii-art-animate .ascii-art-line[data-v-69ebd973] {
|
|
@@ -10570,39 +10573,39 @@ to {
|
|
|
10570
10573
|
transform: translateY(0);
|
|
10571
10574
|
}
|
|
10572
10575
|
}
|
|
10573
|
-
.request-card[data-v-
|
|
10576
|
+
.request-card[data-v-8dad5801] {
|
|
10574
10577
|
font-size: var(--scalar-font-size-3);
|
|
10575
10578
|
}
|
|
10576
|
-
.request-method[data-v-
|
|
10579
|
+
.request-method[data-v-8dad5801] {
|
|
10577
10580
|
font-family: var(--scalar-font-code);
|
|
10578
10581
|
text-transform: uppercase;
|
|
10579
10582
|
margin-right: 6px;
|
|
10580
10583
|
}
|
|
10581
|
-
.request-card-footer[data-v-
|
|
10584
|
+
.request-card-footer[data-v-8dad5801] {
|
|
10582
10585
|
flex-shrink: 0;
|
|
10583
10586
|
justify-content: flex-end;
|
|
10584
10587
|
padding: 6px;
|
|
10585
10588
|
display: flex;
|
|
10586
10589
|
position: relative;
|
|
10587
10590
|
}
|
|
10588
|
-
.request-card-footer-addon[data-v-
|
|
10591
|
+
.request-card-footer-addon[data-v-8dad5801] {
|
|
10589
10592
|
flex: 1;
|
|
10590
10593
|
align-items: center;
|
|
10591
10594
|
min-width: 0;
|
|
10592
10595
|
display: flex;
|
|
10593
10596
|
}
|
|
10594
|
-
.request-editor-section[data-v-
|
|
10597
|
+
.request-editor-section[data-v-8dad5801] {
|
|
10595
10598
|
flex: 1;
|
|
10596
10599
|
display: flex;
|
|
10597
10600
|
}
|
|
10598
|
-
.request-card-simple[data-v-
|
|
10601
|
+
.request-card-simple[data-v-8dad5801] {
|
|
10599
10602
|
font-size: var(--scalar-small);
|
|
10600
10603
|
justify-content: space-between;
|
|
10601
10604
|
align-items: center;
|
|
10602
10605
|
padding: 8px 8px 8px 12px;
|
|
10603
10606
|
display: flex;
|
|
10604
10607
|
}
|
|
10605
|
-
.code-snippet[data-v-
|
|
10608
|
+
.code-snippet[data-v-8dad5801] {
|
|
10606
10609
|
flex-direction: column;
|
|
10607
10610
|
width: 100%;
|
|
10608
10611
|
display: flex;
|
|
@@ -10932,7 +10935,7 @@ to {
|
|
|
10932
10935
|
background-color: color-mix(in srgb, var(--scalar-background-1) 65%, black);
|
|
10933
10936
|
}
|
|
10934
10937
|
}
|
|
10935
|
-
.scalar-collection-auth[data-v-
|
|
10938
|
+
.scalar-collection-auth[data-v-1bfafc56] {
|
|
10936
10939
|
border: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
10937
10940
|
border-radius: var(--scalar-radius-lg);
|
|
10938
10941
|
overflow: hidden;
|
|
@@ -11015,7 +11018,7 @@ to {
|
|
|
11015
11018
|
border-color: var(--scalar-border-color) !important;
|
|
11016
11019
|
background: none !important;
|
|
11017
11020
|
}
|
|
11018
|
-
.scalar .scalar-app-layout[data-v-
|
|
11021
|
+
.scalar .scalar-app-layout[data-v-dbc80a57] {
|
|
11019
11022
|
background: var(--scalar-background-1);
|
|
11020
11023
|
opacity: 0;
|
|
11021
11024
|
border: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
@@ -11024,17 +11027,17 @@ to {
|
|
|
11024
11027
|
max-width: 1390px;
|
|
11025
11028
|
height: calc(100% - 120px);
|
|
11026
11029
|
margin: auto;
|
|
11027
|
-
animation: .35s forwards scalarapiclientfadein-
|
|
11030
|
+
animation: .35s forwards scalarapiclientfadein-dbc80a57;
|
|
11028
11031
|
position: relative;
|
|
11029
11032
|
overflow: hidden;
|
|
11030
11033
|
}
|
|
11031
11034
|
@media (max-width: 720px) and (max-height: 480px) {
|
|
11032
|
-
.scalar .scalar-app-layout[data-v-
|
|
11035
|
+
.scalar .scalar-app-layout[data-v-dbc80a57] {
|
|
11033
11036
|
height: 100%;
|
|
11034
11037
|
max-height: 90svh;
|
|
11035
11038
|
}
|
|
11036
11039
|
}
|
|
11037
|
-
@keyframes scalarapiclientfadein-
|
|
11040
|
+
@keyframes scalarapiclientfadein-dbc80a57 {
|
|
11038
11041
|
0% {
|
|
11039
11042
|
opacity: 0;
|
|
11040
11043
|
}
|
|
@@ -11042,22 +11045,22 @@ to {
|
|
|
11042
11045
|
opacity: 1;
|
|
11043
11046
|
}
|
|
11044
11047
|
}
|
|
11045
|
-
.scalar .scalar-app-exit[data-v-
|
|
11048
|
+
.scalar .scalar-app-exit[data-v-dbc80a57] {
|
|
11046
11049
|
cursor: pointer;
|
|
11047
11050
|
z-index: -1;
|
|
11048
11051
|
background: #00000038;
|
|
11049
11052
|
width: 100vw;
|
|
11050
11053
|
height: 100vh;
|
|
11051
11054
|
transition: all .3s ease-in-out;
|
|
11052
|
-
animation: .35s forwards scalardrawerexitfadein-
|
|
11055
|
+
animation: .35s forwards scalardrawerexitfadein-dbc80a57;
|
|
11053
11056
|
position: fixed;
|
|
11054
11057
|
top: 0;
|
|
11055
11058
|
left: 0;
|
|
11056
11059
|
}
|
|
11057
|
-
.dark-mode .scalar .scalar-app-exit[data-v-
|
|
11060
|
+
.dark-mode .scalar .scalar-app-exit[data-v-dbc80a57] {
|
|
11058
11061
|
background: #00000073;
|
|
11059
11062
|
}
|
|
11060
|
-
.scalar .scalar-app-exit[data-v-
|
|
11063
|
+
.scalar .scalar-app-exit[data-v-dbc80a57]:before {
|
|
11061
11064
|
text-align: center;
|
|
11062
11065
|
color: #fff;
|
|
11063
11066
|
opacity: .6;
|
|
@@ -11069,10 +11072,10 @@ to {
|
|
|
11069
11072
|
top: 0;
|
|
11070
11073
|
right: 12px;
|
|
11071
11074
|
}
|
|
11072
|
-
.scalar .scalar-app-exit[data-v-
|
|
11075
|
+
.scalar .scalar-app-exit[data-v-dbc80a57]:hover:before {
|
|
11073
11076
|
opacity: 1;
|
|
11074
11077
|
}
|
|
11075
|
-
@keyframes scalardrawerexitfadein-
|
|
11078
|
+
@keyframes scalardrawerexitfadein-dbc80a57 {
|
|
11076
11079
|
0% {
|
|
11077
11080
|
opacity: 0;
|
|
11078
11081
|
}
|
|
@@ -11080,7 +11083,7 @@ to {
|
|
|
11080
11083
|
opacity: 1;
|
|
11081
11084
|
}
|
|
11082
11085
|
}
|
|
11083
|
-
.scalar-container[data-v-
|
|
11086
|
+
.scalar-container[data-v-dbc80a57] {
|
|
11084
11087
|
visibility: visible;
|
|
11085
11088
|
z-index: 10000;
|
|
11086
11089
|
justify-content: center;
|
|
@@ -11094,22 +11097,22 @@ to {
|
|
|
11094
11097
|
left: 0;
|
|
11095
11098
|
overflow: hidden;
|
|
11096
11099
|
}
|
|
11097
|
-
.scalar .url-form-input[data-v-
|
|
11100
|
+
.scalar .url-form-input[data-v-dbc80a57] {
|
|
11098
11101
|
min-height: auto !important;
|
|
11099
11102
|
}
|
|
11100
|
-
.scalar .scalar-container[data-v-
|
|
11103
|
+
.scalar .scalar-container[data-v-dbc80a57] {
|
|
11101
11104
|
line-height: normal;
|
|
11102
11105
|
}
|
|
11103
|
-
.scalar .scalar-app-header span[data-v-
|
|
11106
|
+
.scalar .scalar-app-header span[data-v-dbc80a57] {
|
|
11104
11107
|
color: var(--scalar-color-3);
|
|
11105
11108
|
}
|
|
11106
|
-
.scalar .scalar-app-header a[data-v-
|
|
11109
|
+
.scalar .scalar-app-header a[data-v-dbc80a57] {
|
|
11107
11110
|
color: var(--scalar-color-1);
|
|
11108
11111
|
}
|
|
11109
|
-
.scalar .scalar-app-header a[data-v-
|
|
11112
|
+
.scalar .scalar-app-header a[data-v-dbc80a57]:hover {
|
|
11110
11113
|
text-decoration: underline;
|
|
11111
11114
|
}
|
|
11112
|
-
.scalar-activate[data-v-
|
|
11115
|
+
.scalar-activate[data-v-dbc80a57] {
|
|
11113
11116
|
cursor: pointer;
|
|
11114
11117
|
align-items: center;
|
|
11115
11118
|
gap: 6px;
|
|
@@ -11120,7 +11123,7 @@ to {
|
|
|
11120
11123
|
line-height: 24px;
|
|
11121
11124
|
display: flex;
|
|
11122
11125
|
}
|
|
11123
|
-
.scalar-activate-button[data-v-
|
|
11126
|
+
.scalar-activate-button[data-v-dbc80a57] {
|
|
11124
11127
|
color: var(--scalar-color-blue);
|
|
11125
11128
|
appearance: none;
|
|
11126
11129
|
background: none;
|
|
@@ -11131,7 +11134,7 @@ to {
|
|
|
11131
11134
|
padding: 0 .5rem;
|
|
11132
11135
|
display: flex;
|
|
11133
11136
|
}
|
|
11134
|
-
.scalar-activate:hover .scalar-activate-button[data-v-
|
|
11137
|
+
.scalar-activate:hover .scalar-activate-button[data-v-dbc80a57] {
|
|
11135
11138
|
background: var(--scalar-background-3);
|
|
11136
11139
|
border-radius: 3px;
|
|
11137
11140
|
}
|
|
@@ -11869,7 +11872,7 @@ to {
|
|
|
11869
11872
|
|
|
11870
11873
|
/* Configurable Layout Variables */
|
|
11871
11874
|
@layer scalar-config {
|
|
11872
|
-
.scalar-api-reference[data-v-
|
|
11875
|
+
.scalar-api-reference[data-v-8a22e3d2] {
|
|
11873
11876
|
/* The header height */
|
|
11874
11877
|
--refs-header-height: calc(
|
|
11875
11878
|
var(--scalar-custom-header-height, 0px) + var(--scalar-header-height, 0px)
|
|
@@ -11891,20 +11894,20 @@ to {
|
|
|
11891
11894
|
/* The maximum width of the content column */
|
|
11892
11895
|
--refs-content-max-width: var(--scalar-content-max-width, 1540px);
|
|
11893
11896
|
}
|
|
11894
|
-
.scalar-api-reference.references-classic[data-v-
|
|
11897
|
+
.scalar-api-reference.references-classic[data-v-8a22e3d2] {
|
|
11895
11898
|
/* Classic layout is wider */
|
|
11896
11899
|
--refs-content-max-width: var(--scalar-content-max-width, 1420px);
|
|
11897
11900
|
min-height: 100dvh;
|
|
11898
11901
|
--refs-sidebar-width: 0;
|
|
11899
11902
|
}
|
|
11900
11903
|
}
|
|
11901
|
-
.t-doc__sidebar[data-v-
|
|
11904
|
+
.t-doc__sidebar[data-v-8a22e3d2] {
|
|
11902
11905
|
z-index: 10;
|
|
11903
11906
|
}
|
|
11904
11907
|
|
|
11905
11908
|
/* ----------------------------------------------------- */
|
|
11906
11909
|
/* References Layout */
|
|
11907
|
-
.references-layout[data-v-
|
|
11910
|
+
.references-layout[data-v-8a22e3d2] {
|
|
11908
11911
|
/* Try to fill the container */
|
|
11909
11912
|
min-height: 100dvh;
|
|
11910
11913
|
min-width: 100%;
|
|
@@ -11928,39 +11931,39 @@ to {
|
|
|
11928
11931
|
|
|
11929
11932
|
background: var(--scalar-background-1);
|
|
11930
11933
|
}
|
|
11931
|
-
.references-editor[data-v-
|
|
11934
|
+
.references-editor[data-v-8a22e3d2] {
|
|
11932
11935
|
grid-area: editor;
|
|
11933
11936
|
display: flex;
|
|
11934
11937
|
min-width: 0;
|
|
11935
11938
|
background: var(--scalar-background-1);
|
|
11936
11939
|
}
|
|
11937
|
-
.references-rendered[data-v-
|
|
11940
|
+
.references-rendered[data-v-8a22e3d2] {
|
|
11938
11941
|
position: relative;
|
|
11939
11942
|
grid-area: rendered;
|
|
11940
11943
|
min-width: 0;
|
|
11941
11944
|
background: var(--scalar-background-1);
|
|
11942
11945
|
}
|
|
11943
|
-
.scalar-api-reference.references-classic[data-v-
|
|
11944
|
-
.references-classic .references-rendered[data-v-
|
|
11946
|
+
.scalar-api-reference.references-classic[data-v-8a22e3d2],
|
|
11947
|
+
.references-classic .references-rendered[data-v-8a22e3d2] {
|
|
11945
11948
|
height: initial !important;
|
|
11946
11949
|
max-height: initial !important;
|
|
11947
11950
|
}
|
|
11948
11951
|
@layer scalar-config {
|
|
11949
|
-
.references-sidebar[data-v-
|
|
11952
|
+
.references-sidebar[data-v-8a22e3d2] {
|
|
11950
11953
|
/* Set a default width if references are enabled */
|
|
11951
11954
|
--refs-sidebar-width: var(--scalar-sidebar-width, 288px);
|
|
11952
11955
|
}
|
|
11953
11956
|
}
|
|
11954
11957
|
|
|
11955
11958
|
/* Footer */
|
|
11956
|
-
.references-footer[data-v-
|
|
11959
|
+
.references-footer[data-v-8a22e3d2] {
|
|
11957
11960
|
grid-area: footer;
|
|
11958
11961
|
}
|
|
11959
11962
|
/* ----------------------------------------------------- */
|
|
11960
11963
|
/* Responsive / Mobile Layout */
|
|
11961
11964
|
@media (max-width: 1000px) {
|
|
11962
11965
|
/* Stack view on mobile */
|
|
11963
|
-
.references-layout[data-v-
|
|
11966
|
+
.references-layout[data-v-8a22e3d2] {
|
|
11964
11967
|
/* Adjust the sidebar height to the viewport height minus the header height */
|
|
11965
11968
|
--refs-sidebar-height: calc(
|
|
11966
11969
|
var(--full-height, 100dvh) - var(--scalar-custom-header-height, 0px)
|
|
@@ -11975,13 +11978,13 @@ to {
|
|
|
11975
11978
|
'rendered'
|
|
11976
11979
|
'footer';
|
|
11977
11980
|
}
|
|
11978
|
-
.references-editable[data-v-
|
|
11981
|
+
.references-editable[data-v-8a22e3d2] {
|
|
11979
11982
|
grid-template-areas:
|
|
11980
11983
|
'header'
|
|
11981
11984
|
'navigation'
|
|
11982
11985
|
'editor';
|
|
11983
11986
|
}
|
|
11984
|
-
.references-rendered[data-v-
|
|
11987
|
+
.references-rendered[data-v-8a22e3d2] {
|
|
11985
11988
|
position: static;
|
|
11986
11989
|
}
|
|
11987
11990
|
}
|
|
@@ -11992,12 +11995,12 @@ to {
|
|
|
11992
11995
|
* when the new elements are available
|
|
11993
11996
|
*/
|
|
11994
11997
|
@media (max-width: 1000px) {
|
|
11995
|
-
.scalar-api-references-standalone-mobile[data-v-
|
|
11998
|
+
.scalar-api-references-standalone-mobile[data-v-8a22e3d2]:not(.references-classic) {
|
|
11996
11999
|
--scalar-header-height: 50px;
|
|
11997
12000
|
}
|
|
11998
12001
|
}
|
|
11999
12002
|
|
|
12000
|
-
.darklight-reference[data-v-
|
|
12003
|
+
.darklight-reference[data-v-8a22e3d2] {
|
|
12001
12004
|
width: 100%;
|
|
12002
12005
|
margin-top: auto;
|
|
12003
12006
|
}
|