@scalar/api-reference-react 0.9.58 → 0.9.60
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 +4 -0
- package/README.md +1 -1
- package/dist/style.css +372 -337
- package/package.json +3 -3
package/dist/style.css
CHANGED
|
@@ -6,15 +6,7 @@
|
|
|
6
6
|
@supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
|
|
7
7
|
*, :before, :after, ::backdrop {
|
|
8
8
|
--tw-font-weight: initial;
|
|
9
|
-
--tw-
|
|
10
|
-
--tw-backdrop-brightness: initial;
|
|
11
|
-
--tw-backdrop-contrast: initial;
|
|
12
|
-
--tw-backdrop-grayscale: initial;
|
|
13
|
-
--tw-backdrop-hue-rotate: initial;
|
|
14
|
-
--tw-backdrop-invert: initial;
|
|
15
|
-
--tw-backdrop-opacity: initial;
|
|
16
|
-
--tw-backdrop-saturate: initial;
|
|
17
|
-
--tw-backdrop-sepia: initial;
|
|
9
|
+
--tw-border-style: solid;
|
|
18
10
|
--tw-shadow: 0 0 #0000;
|
|
19
11
|
--tw-shadow-color: initial;
|
|
20
12
|
--tw-shadow-alpha: 100%;
|
|
@@ -29,6 +21,15 @@
|
|
|
29
21
|
--tw-ring-offset-width: 0;
|
|
30
22
|
--tw-ring-offset-color: #fff;
|
|
31
23
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
24
|
+
--tw-backdrop-blur: initial;
|
|
25
|
+
--tw-backdrop-brightness: initial;
|
|
26
|
+
--tw-backdrop-contrast: initial;
|
|
27
|
+
--tw-backdrop-grayscale: initial;
|
|
28
|
+
--tw-backdrop-hue-rotate: initial;
|
|
29
|
+
--tw-backdrop-invert: initial;
|
|
30
|
+
--tw-backdrop-opacity: initial;
|
|
31
|
+
--tw-backdrop-saturate: initial;
|
|
32
|
+
--tw-backdrop-sepia: initial;
|
|
32
33
|
--tw-translate-x: 0;
|
|
33
34
|
--tw-translate-y: 0;
|
|
34
35
|
--tw-translate-z: 0;
|
|
@@ -42,7 +43,6 @@
|
|
|
42
43
|
--tw-skew-y: initial;
|
|
43
44
|
--tw-space-x-reverse: 0;
|
|
44
45
|
--tw-divide-y-reverse: 0;
|
|
45
|
-
--tw-border-style: solid;
|
|
46
46
|
--tw-gradient-position: initial;
|
|
47
47
|
--tw-gradient-from: #0000;
|
|
48
48
|
--tw-gradient-via: #0000;
|
|
@@ -197,6 +197,14 @@
|
|
|
197
197
|
}
|
|
198
198
|
}
|
|
199
199
|
|
|
200
|
+
@media (max-resolution: 1.5x) {
|
|
201
|
+
@supports ((-moz-appearance: none)) {
|
|
202
|
+
:root {
|
|
203
|
+
--scalar-border-width: 1px;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
200
208
|
:root {
|
|
201
209
|
--scalar-text-decoration: underline;
|
|
202
210
|
--scalar-text-decoration-hover: underline;
|
|
@@ -264,8 +272,17 @@
|
|
|
264
272
|
--scalar-button-1: #000;
|
|
265
273
|
--scalar-button-1-hover: #000c;
|
|
266
274
|
--scalar-button-1-color: #fff;
|
|
267
|
-
--scalar-tooltip-background:
|
|
268
|
-
|
|
275
|
+
--scalar-tooltip-background: var(--scalar-background-1);
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
279
|
+
.light-mode {
|
|
280
|
+
--scalar-tooltip-background: color-mix(in srgb, var(--scalar-background-1), transparent 10%);
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.light-mode {
|
|
285
|
+
--scalar-tooltip-color: var(--scalar-color-1);
|
|
269
286
|
--scalar-color-alert: var(--scalar-color-orange);
|
|
270
287
|
}
|
|
271
288
|
|
|
@@ -1442,34 +1459,39 @@
|
|
|
1442
1459
|
margin-bottom: -1px;
|
|
1443
1460
|
}
|
|
1444
1461
|
:where(body) > .scalar-tooltip {
|
|
1445
|
-
--scalar-tooltip-padding: 8px;
|
|
1446
|
-
|
|
1462
|
+
--scalar-tooltip-padding-x: 8px;
|
|
1463
|
+
--scalar-tooltip-padding-y: 6px;
|
|
1464
|
+
padding: var(--scalar-tooltip-padding-y) var(--scalar-tooltip-padding-x);
|
|
1447
1465
|
z-index: 99999;
|
|
1448
1466
|
max-width: 320px;
|
|
1449
1467
|
font-size: var(--scalar-font-size-5);
|
|
1450
|
-
--tw-font-weight: var(--scalar-
|
|
1468
|
+
--tw-font-weight: var(--scalar-regular);
|
|
1451
1469
|
line-height: 16px;
|
|
1452
|
-
font-weight: var(--scalar-
|
|
1470
|
+
font-weight: var(--scalar-regular);
|
|
1453
1471
|
overflow-wrap: break-word;
|
|
1454
1472
|
color: var(--scalar-tooltip-color);
|
|
1455
1473
|
}
|
|
1456
1474
|
:where(body) > .scalar-tooltip[data-side="top"] {
|
|
1457
|
-
padding-bottom: calc(var(--scalar-tooltip-padding) + var(--scalar-tooltip-offset));
|
|
1475
|
+
padding-bottom: calc(var(--scalar-tooltip-padding-y) + var(--scalar-tooltip-offset));
|
|
1458
1476
|
}
|
|
1459
1477
|
:where(body) > .scalar-tooltip[data-side="bottom"] {
|
|
1460
|
-
padding-top: calc(var(--scalar-tooltip-padding) + var(--scalar-tooltip-offset));
|
|
1478
|
+
padding-top: calc(var(--scalar-tooltip-padding-y) + var(--scalar-tooltip-offset));
|
|
1461
1479
|
}
|
|
1462
1480
|
:where(body) > .scalar-tooltip[data-side="left"] {
|
|
1463
|
-
padding-right: calc(var(--scalar-tooltip-padding) + var(--scalar-tooltip-offset));
|
|
1481
|
+
padding-right: calc(var(--scalar-tooltip-padding-x) + var(--scalar-tooltip-offset));
|
|
1464
1482
|
}
|
|
1465
1483
|
:where(body) > .scalar-tooltip[data-side="right"] {
|
|
1466
|
-
padding-left: calc(var(--scalar-tooltip-padding) + var(--scalar-tooltip-offset));
|
|
1484
|
+
padding-left: calc(var(--scalar-tooltip-padding-x) + var(--scalar-tooltip-offset));
|
|
1467
1485
|
}
|
|
1468
1486
|
:where(body) > .scalar-tooltip:before {
|
|
1469
1487
|
content: "";
|
|
1470
1488
|
z-index: calc(1 * -1);
|
|
1471
|
-
border-radius: var(--scalar-radius-
|
|
1489
|
+
border-radius: var(--scalar-radius-lg);
|
|
1490
|
+
border-style: var(--tw-border-style);
|
|
1491
|
+
border-width: var(--scalar-border-width);
|
|
1472
1492
|
background-color: var(--scalar-tooltip-background);
|
|
1493
|
+
--tw-shadow: var(--scalar-shadow-1);
|
|
1494
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1473
1495
|
--tw-backdrop-blur: blur(8px);
|
|
1474
1496
|
-webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
|
|
1475
1497
|
backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
|
|
@@ -1488,49 +1510,14 @@
|
|
|
1488
1510
|
:where(body) > .scalar-tooltip[data-side="right"]:before {
|
|
1489
1511
|
left: var(--scalar-tooltip-offset);
|
|
1490
1512
|
}
|
|
1491
|
-
:where(body.dark-mode) > .scalar-tooltip:before {
|
|
1492
|
-
--tw-shadow: inset 0 0 0 var(--tw-shadow-color, var(--scalar-border-width)) var(--scalar-border-color);
|
|
1493
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1494
|
-
}
|
|
1495
1513
|
@property --tw-font-weight {
|
|
1496
1514
|
syntax: "*";
|
|
1497
1515
|
inherits: false
|
|
1498
1516
|
}
|
|
1499
|
-
@property --tw-
|
|
1500
|
-
syntax: "*";
|
|
1501
|
-
inherits: false
|
|
1502
|
-
}
|
|
1503
|
-
@property --tw-backdrop-brightness {
|
|
1504
|
-
syntax: "*";
|
|
1505
|
-
inherits: false
|
|
1506
|
-
}
|
|
1507
|
-
@property --tw-backdrop-contrast {
|
|
1508
|
-
syntax: "*";
|
|
1509
|
-
inherits: false
|
|
1510
|
-
}
|
|
1511
|
-
@property --tw-backdrop-grayscale {
|
|
1512
|
-
syntax: "*";
|
|
1513
|
-
inherits: false
|
|
1514
|
-
}
|
|
1515
|
-
@property --tw-backdrop-hue-rotate {
|
|
1516
|
-
syntax: "*";
|
|
1517
|
-
inherits: false
|
|
1518
|
-
}
|
|
1519
|
-
@property --tw-backdrop-invert {
|
|
1520
|
-
syntax: "*";
|
|
1521
|
-
inherits: false
|
|
1522
|
-
}
|
|
1523
|
-
@property --tw-backdrop-opacity {
|
|
1524
|
-
syntax: "*";
|
|
1525
|
-
inherits: false
|
|
1526
|
-
}
|
|
1527
|
-
@property --tw-backdrop-saturate {
|
|
1528
|
-
syntax: "*";
|
|
1529
|
-
inherits: false
|
|
1530
|
-
}
|
|
1531
|
-
@property --tw-backdrop-sepia {
|
|
1517
|
+
@property --tw-border-style {
|
|
1532
1518
|
syntax: "*";
|
|
1533
|
-
inherits: false
|
|
1519
|
+
inherits: false;
|
|
1520
|
+
initial-value: solid;
|
|
1534
1521
|
}
|
|
1535
1522
|
@property --tw-shadow {
|
|
1536
1523
|
syntax: "*";
|
|
@@ -1597,6 +1584,42 @@
|
|
|
1597
1584
|
inherits: false;
|
|
1598
1585
|
initial-value: 0 0 #0000;
|
|
1599
1586
|
}
|
|
1587
|
+
@property --tw-backdrop-blur {
|
|
1588
|
+
syntax: "*";
|
|
1589
|
+
inherits: false
|
|
1590
|
+
}
|
|
1591
|
+
@property --tw-backdrop-brightness {
|
|
1592
|
+
syntax: "*";
|
|
1593
|
+
inherits: false
|
|
1594
|
+
}
|
|
1595
|
+
@property --tw-backdrop-contrast {
|
|
1596
|
+
syntax: "*";
|
|
1597
|
+
inherits: false
|
|
1598
|
+
}
|
|
1599
|
+
@property --tw-backdrop-grayscale {
|
|
1600
|
+
syntax: "*";
|
|
1601
|
+
inherits: false
|
|
1602
|
+
}
|
|
1603
|
+
@property --tw-backdrop-hue-rotate {
|
|
1604
|
+
syntax: "*";
|
|
1605
|
+
inherits: false
|
|
1606
|
+
}
|
|
1607
|
+
@property --tw-backdrop-invert {
|
|
1608
|
+
syntax: "*";
|
|
1609
|
+
inherits: false
|
|
1610
|
+
}
|
|
1611
|
+
@property --tw-backdrop-opacity {
|
|
1612
|
+
syntax: "*";
|
|
1613
|
+
inherits: false
|
|
1614
|
+
}
|
|
1615
|
+
@property --tw-backdrop-saturate {
|
|
1616
|
+
syntax: "*";
|
|
1617
|
+
inherits: false
|
|
1618
|
+
}
|
|
1619
|
+
@property --tw-backdrop-sepia {
|
|
1620
|
+
syntax: "*";
|
|
1621
|
+
inherits: false
|
|
1622
|
+
}
|
|
1600
1623
|
.scalar-virtual-text-search-input[data-v-95edadbb]::-webkit-search-cancel-button {
|
|
1601
1624
|
display: none;
|
|
1602
1625
|
}
|
|
@@ -2133,7 +2156,7 @@
|
|
|
2133
2156
|
-webkit-mask-image: linear-gradient(to right, transparent 0, var(--scalar-background-2) 20px);
|
|
2134
2157
|
mask-image: linear-gradient(to right, transparent 0, var(--scalar-background-2) 20px);
|
|
2135
2158
|
}
|
|
2136
|
-
[data-v-
|
|
2159
|
+
[data-v-dcc3af8c] .cm-content {
|
|
2137
2160
|
font-size: var(--scalar-small);
|
|
2138
2161
|
}
|
|
2139
2162
|
.oauth-scope-row-action-rail {
|
|
@@ -3800,6 +3823,45 @@ div + .userMessage[data-v-6573ec87] {
|
|
|
3800
3823
|
color: var(--scalar-color-2);
|
|
3801
3824
|
margin-bottom: 10px;
|
|
3802
3825
|
}
|
|
3826
|
+
@media print {
|
|
3827
|
+
.scalar-app {
|
|
3828
|
+
--full-height: 100% !important;
|
|
3829
|
+
--refs-header-height: 0px !important;
|
|
3830
|
+
--refs-viewport-offset: 0px !important;
|
|
3831
|
+
--refs-sidebar-width: 0px !important;
|
|
3832
|
+
}
|
|
3833
|
+
|
|
3834
|
+
.references-layout {
|
|
3835
|
+
min-height: 0 !important;
|
|
3836
|
+
display: block !important;
|
|
3837
|
+
}
|
|
3838
|
+
|
|
3839
|
+
.t-doc__sidebar, .t-doc__header, .references-footer, .section-flare, .agent-scalar, .agent-scalar-overlay {
|
|
3840
|
+
display: none !important;
|
|
3841
|
+
}
|
|
3842
|
+
|
|
3843
|
+
.scalar-app .sticky, .scalar-app .examples, .scalar-app .operation-example-card, .scalar-app .endpoints-card, .scalar-app .channels-card, .scalar-app .sticky-cards, .scalar-app .callback-list-item-title {
|
|
3844
|
+
z-index: auto !important;
|
|
3845
|
+
position: static !important;
|
|
3846
|
+
top: auto !important;
|
|
3847
|
+
}
|
|
3848
|
+
|
|
3849
|
+
.scalar-app .examples > *, .scalar-app .operation-example-card {
|
|
3850
|
+
max-height: none !important;
|
|
3851
|
+
}
|
|
3852
|
+
|
|
3853
|
+
.scalar-app .endpoints, .scalar-app .channels, .scalar-app .scalar-card-content {
|
|
3854
|
+
overflow: visible !important;
|
|
3855
|
+
}
|
|
3856
|
+
|
|
3857
|
+
.scalar-app .property, .scalar-app .parameter-item, .scalar-app .scalar-card {
|
|
3858
|
+
break-inside: avoid;
|
|
3859
|
+
}
|
|
3860
|
+
|
|
3861
|
+
.scalar-app h1, .scalar-app h2, .scalar-app h3 {
|
|
3862
|
+
break-after: avoid;
|
|
3863
|
+
}
|
|
3864
|
+
}
|
|
3803
3865
|
.scalar-app .\@container {
|
|
3804
3866
|
container-type: inline-size;
|
|
3805
3867
|
}
|
|
@@ -4290,6 +4352,9 @@ div + .userMessage[data-v-6573ec87] {
|
|
|
4290
4352
|
.scalar-app .mr-\[calc\(20px-var\(--scalar-sidebar-indent\)\)\] {
|
|
4291
4353
|
margin-right: calc(20px - var(--scalar-sidebar-indent));
|
|
4292
4354
|
}
|
|
4355
|
+
.scalar-app .mr-auto {
|
|
4356
|
+
margin-right: auto;
|
|
4357
|
+
}
|
|
4293
4358
|
.scalar-app .-mb-1 {
|
|
4294
4359
|
margin-bottom: -4px;
|
|
4295
4360
|
}
|
|
@@ -4302,6 +4367,9 @@ div + .userMessage[data-v-6573ec87] {
|
|
|
4302
4367
|
.scalar-app .mb-1 {
|
|
4303
4368
|
margin-bottom: 4px;
|
|
4304
4369
|
}
|
|
4370
|
+
.scalar-app .mb-1\.5 {
|
|
4371
|
+
margin-bottom: 6px;
|
|
4372
|
+
}
|
|
4305
4373
|
.scalar-app .mb-2 {
|
|
4306
4374
|
margin-bottom: 8px;
|
|
4307
4375
|
}
|
|
@@ -4976,9 +5044,6 @@ div + .userMessage[data-v-6573ec87] {
|
|
|
4976
5044
|
.scalar-app .auto-rows-auto {
|
|
4977
5045
|
grid-auto-rows: auto;
|
|
4978
5046
|
}
|
|
4979
|
-
.scalar-app .grid-cols-1 {
|
|
4980
|
-
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
4981
|
-
}
|
|
4982
5047
|
.scalar-app .grid-cols-2 {
|
|
4983
5048
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
4984
5049
|
}
|
|
@@ -5997,6 +6062,10 @@ div + .userMessage[data-v-6573ec87] {
|
|
|
5997
6062
|
.scalar-app .italic {
|
|
5998
6063
|
font-style: italic;
|
|
5999
6064
|
}
|
|
6065
|
+
.scalar-app .ordinal {
|
|
6066
|
+
--tw-ordinal: ordinal;
|
|
6067
|
+
font-variant-numeric: var(--tw-ordinal, ) var(--tw-slashed-zero, ) var(--tw-numeric-figure, ) var(--tw-numeric-spacing, ) var(--tw-numeric-fraction, );
|
|
6068
|
+
}
|
|
6000
6069
|
.scalar-app .tabular-nums {
|
|
6001
6070
|
--tw-numeric-spacing: tabular-nums;
|
|
6002
6071
|
font-variant-numeric: var(--tw-ordinal, ) var(--tw-slashed-zero, ) var(--tw-numeric-figure, ) var(--tw-numeric-spacing, ) var(--tw-numeric-fraction, );
|
|
@@ -6282,13 +6351,8 @@ div + .userMessage[data-v-6573ec87] {
|
|
|
6282
6351
|
border-top-style: var(--tw-border-style);
|
|
6283
6352
|
border-top-width: var(--scalar-border-width);
|
|
6284
6353
|
}
|
|
6285
|
-
:is(.scalar-app .\*\:border-border
|
|
6286
|
-
border-color: var(--scalar-
|
|
6287
|
-
}
|
|
6288
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
6289
|
-
:is(.scalar-app .\*\:border-border-tooltip > *) {
|
|
6290
|
-
border-color: color-mix(in srgb, var(--scalar-tooltip-color), var(--scalar-tooltip-background));
|
|
6291
|
-
}
|
|
6354
|
+
:is(.scalar-app .\*\:border-border > *) {
|
|
6355
|
+
border-color: var(--scalar-border-color);
|
|
6292
6356
|
}
|
|
6293
6357
|
:is(.scalar-app .\*\:px-1 > *) {
|
|
6294
6358
|
padding-inline: 4px;
|
|
@@ -6551,6 +6615,9 @@ div + .userMessage[data-v-6573ec87] {
|
|
|
6551
6615
|
--tw-content: ":";
|
|
6552
6616
|
content: var(--tw-content);
|
|
6553
6617
|
}
|
|
6618
|
+
.scalar-app .first\:ml-auto:first-child {
|
|
6619
|
+
margin-left: auto;
|
|
6620
|
+
}
|
|
6554
6621
|
.scalar-app .first\:rounded-t-\[inherit\]:first-child {
|
|
6555
6622
|
border-top-left-radius: inherit;
|
|
6556
6623
|
border-top-right-radius: inherit;
|
|
@@ -6825,15 +6892,6 @@ div + .userMessage[data-v-6573ec87] {
|
|
|
6825
6892
|
padding-left: 56px;
|
|
6826
6893
|
}
|
|
6827
6894
|
}
|
|
6828
|
-
@media (min-width: 600px) {
|
|
6829
|
-
.scalar-app .sm\:flex-row {
|
|
6830
|
-
flex-direction: row;
|
|
6831
|
-
}
|
|
6832
|
-
|
|
6833
|
-
.scalar-app .sm\:gap-6 {
|
|
6834
|
-
gap: 24px;
|
|
6835
|
-
}
|
|
6836
|
-
}
|
|
6837
6895
|
@media (min-width: 800px) {
|
|
6838
6896
|
.scalar-app .md\:pointer-events-none {
|
|
6839
6897
|
pointer-events: none;
|
|
@@ -6929,10 +6987,6 @@ div + .userMessage[data-v-6573ec87] {
|
|
|
6929
6987
|
}
|
|
6930
6988
|
}
|
|
6931
6989
|
@media (min-width: 1200px) {
|
|
6932
|
-
.scalar-app .xl\:mb-1\.5 {
|
|
6933
|
-
margin-bottom: 6px;
|
|
6934
|
-
}
|
|
6935
|
-
|
|
6936
6990
|
.scalar-app .xl\:flex {
|
|
6937
6991
|
display: flex;
|
|
6938
6992
|
}
|
|
@@ -6945,22 +6999,10 @@ div + .userMessage[data-v-6573ec87] {
|
|
|
6945
6999
|
min-width: 0;
|
|
6946
7000
|
}
|
|
6947
7001
|
|
|
6948
|
-
.scalar-app .xl\:grid-cols-2 {
|
|
6949
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
6950
|
-
}
|
|
6951
|
-
|
|
6952
7002
|
.scalar-app .xl\:flex-row {
|
|
6953
7003
|
flex-direction: row;
|
|
6954
7004
|
}
|
|
6955
7005
|
|
|
6956
|
-
.scalar-app .xl\:justify-end {
|
|
6957
|
-
justify-content: flex-end;
|
|
6958
|
-
}
|
|
6959
|
-
|
|
6960
|
-
.scalar-app .xl\:gap-12 {
|
|
6961
|
-
gap: 48px;
|
|
6962
|
-
}
|
|
6963
|
-
|
|
6964
7006
|
.scalar-app .xl\:overflow-hidden {
|
|
6965
7007
|
overflow: hidden;
|
|
6966
7008
|
}
|
|
@@ -6969,16 +7011,6 @@ div + .userMessage[data-v-6573ec87] {
|
|
|
6969
7011
|
border-radius: 0;
|
|
6970
7012
|
}
|
|
6971
7013
|
|
|
6972
|
-
.scalar-app .xl\:border-r {
|
|
6973
|
-
border-right-style: var(--tw-border-style);
|
|
6974
|
-
border-right-width: var(--scalar-border-width);
|
|
6975
|
-
}
|
|
6976
|
-
|
|
6977
|
-
.scalar-app .xl\:border-none {
|
|
6978
|
-
--tw-border-style: none;
|
|
6979
|
-
border-style: none;
|
|
6980
|
-
}
|
|
6981
|
-
|
|
6982
7014
|
.scalar-app .xl\:pr-0\.5 {
|
|
6983
7015
|
padding-right: 2px;
|
|
6984
7016
|
}
|
|
@@ -6997,10 +7029,6 @@ div + .userMessage[data-v-6573ec87] {
|
|
|
6997
7029
|
border-left-width: var(--scalar-border-width);
|
|
6998
7030
|
}
|
|
6999
7031
|
|
|
7000
|
-
.scalar-app .xl\:first\:ml-auto:first-child {
|
|
7001
|
-
margin-left: auto;
|
|
7002
|
-
}
|
|
7003
|
-
|
|
7004
7032
|
:is(.scalar-app .\*\:first\:xl\:border-l-0 > *):first-child {
|
|
7005
7033
|
border-left-style: var(--tw-border-style);
|
|
7006
7034
|
border-left-width: 0;
|
|
@@ -7126,6 +7154,45 @@ div + .userMessage[data-v-6573ec87] {
|
|
|
7126
7154
|
-webkit-app-region: drag;
|
|
7127
7155
|
-webkit-app-region: drag;
|
|
7128
7156
|
}
|
|
7157
|
+
@container narrow-references-container (max-width: 900px) {
|
|
7158
|
+
.scalar-app .narrow\:mb-3 {
|
|
7159
|
+
margin-bottom: 12px;
|
|
7160
|
+
}
|
|
7161
|
+
|
|
7162
|
+
.scalar-app .narrow\:grid-cols-1 {
|
|
7163
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
7164
|
+
}
|
|
7165
|
+
|
|
7166
|
+
.scalar-app .narrow\:flex-col {
|
|
7167
|
+
flex-direction: column;
|
|
7168
|
+
}
|
|
7169
|
+
|
|
7170
|
+
.scalar-app .narrow\:justify-start {
|
|
7171
|
+
justify-content: flex-start;
|
|
7172
|
+
}
|
|
7173
|
+
|
|
7174
|
+
.scalar-app .narrow\:gap-0 {
|
|
7175
|
+
gap: 0;
|
|
7176
|
+
}
|
|
7177
|
+
|
|
7178
|
+
.scalar-app .narrow\:gap-3 {
|
|
7179
|
+
gap: 12px;
|
|
7180
|
+
}
|
|
7181
|
+
|
|
7182
|
+
.scalar-app .narrow\:border {
|
|
7183
|
+
border-style: var(--tw-border-style);
|
|
7184
|
+
border-width: var(--scalar-border-width);
|
|
7185
|
+
}
|
|
7186
|
+
|
|
7187
|
+
.scalar-app .narrow\:border-r-0 {
|
|
7188
|
+
border-right-style: var(--tw-border-style);
|
|
7189
|
+
border-right-width: 0;
|
|
7190
|
+
}
|
|
7191
|
+
|
|
7192
|
+
.scalar-app .narrow\:first\:ml-0:first-child {
|
|
7193
|
+
margin-left: 0;
|
|
7194
|
+
}
|
|
7195
|
+
}
|
|
7129
7196
|
.scalar-app .\[\&_a\]\:underline a {
|
|
7130
7197
|
text-decoration-line: underline;
|
|
7131
7198
|
}
|
|
@@ -7201,11 +7268,6 @@ div + .userMessage[data-v-6573ec87] {
|
|
|
7201
7268
|
inherits: false;
|
|
7202
7269
|
initial-value: 0;
|
|
7203
7270
|
}
|
|
7204
|
-
@property --tw-border-style {
|
|
7205
|
-
syntax: "*";
|
|
7206
|
-
inherits: false;
|
|
7207
|
-
initial-value: solid;
|
|
7208
|
-
}
|
|
7209
7271
|
@property --tw-gradient-position {
|
|
7210
7272
|
syntax: "*";
|
|
7211
7273
|
inherits: false
|
|
@@ -7561,45 +7623,36 @@ to {
|
|
|
7561
7623
|
border-top-left-radius: var(--scalar-radius-xl);
|
|
7562
7624
|
border-top-right-radius: var(--scalar-radius-xl);
|
|
7563
7625
|
}
|
|
7564
|
-
|
|
7565
|
-
|
|
7566
|
-
font-size: var(--scalar-mini);
|
|
7567
|
-
background: var(--badge-background-color, var(--scalar-background-2));
|
|
7568
|
-
border: var(--scalar-border-width) solid
|
|
7569
|
-
var(--badge-border-color, var(--scalar-border-color));
|
|
7570
|
-
padding: 2px 6px;
|
|
7571
|
-
border-radius: 12px;
|
|
7572
|
-
display: inline-block;
|
|
7573
|
-
}
|
|
7574
|
-
:where(.badge).text-orange[data-v-fb946bb8] {
|
|
7626
|
+
/* Colour variants are keyed on the `text-*` class a consumer passes in. */
|
|
7627
|
+
.badge.text-orange[data-v-3f3e4ac3] {
|
|
7575
7628
|
background: color-mix(in srgb, var(--scalar-color-orange), transparent 90%);
|
|
7576
7629
|
border: transparent;
|
|
7577
7630
|
}
|
|
7578
|
-
|
|
7631
|
+
.badge.text-yellow[data-v-3f3e4ac3] {
|
|
7579
7632
|
background: color-mix(in srgb, var(--scalar-color-yellow), transparent 90%);
|
|
7580
7633
|
border: transparent;
|
|
7581
7634
|
}
|
|
7582
|
-
|
|
7635
|
+
.badge.text-red[data-v-3f3e4ac3] {
|
|
7583
7636
|
background: color-mix(in srgb, var(--scalar-color-red), transparent 90%);
|
|
7584
7637
|
border: transparent;
|
|
7585
7638
|
}
|
|
7586
|
-
|
|
7639
|
+
.badge.text-purple[data-v-3f3e4ac3] {
|
|
7587
7640
|
background: color-mix(in srgb, var(--scalar-color-purple), transparent 90%);
|
|
7588
7641
|
border: transparent;
|
|
7589
7642
|
}
|
|
7590
|
-
|
|
7643
|
+
.badge.text-green[data-v-3f3e4ac3] {
|
|
7591
7644
|
background: color-mix(in srgb, var(--scalar-color-green), transparent 90%);
|
|
7592
7645
|
border: transparent;
|
|
7593
7646
|
}
|
|
7594
7647
|
/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
|
|
7595
7648
|
@layer properties {
|
|
7596
7649
|
@supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
|
|
7597
|
-
[data-v-
|
|
7650
|
+
[data-v-eface7e0],[data-v-eface7e0]:before,[data-v-eface7e0]:after,[data-v-eface7e0]::backdrop {
|
|
7598
7651
|
--tw-outline-style: solid;
|
|
7599
7652
|
}
|
|
7600
7653
|
}
|
|
7601
7654
|
}
|
|
7602
|
-
.download-container[data-v-
|
|
7655
|
+
.download-container[data-v-eface7e0] {
|
|
7603
7656
|
z-index: 1;
|
|
7604
7657
|
flex-direction: column;
|
|
7605
7658
|
gap: 16px;
|
|
@@ -7608,7 +7661,7 @@ to {
|
|
|
7608
7661
|
display: flex;
|
|
7609
7662
|
position: relative;
|
|
7610
7663
|
}
|
|
7611
|
-
.download-container[data-v-
|
|
7664
|
+
.download-container[data-v-eface7e0]:has(:focus-visible):before, .download-container.download-both[data-v-eface7e0]:hover:before {
|
|
7612
7665
|
content: "";
|
|
7613
7666
|
border-radius: var(--scalar-radius-lg);
|
|
7614
7667
|
width: calc(100% + 24px);
|
|
@@ -7620,7 +7673,7 @@ to {
|
|
|
7620
7673
|
top: -11px;
|
|
7621
7674
|
left: -12px;
|
|
7622
7675
|
}
|
|
7623
|
-
.download-button[data-v-
|
|
7676
|
+
.download-button[data-v-eface7e0] {
|
|
7624
7677
|
color: var(--scalar-link-color);
|
|
7625
7678
|
cursor: pointer;
|
|
7626
7679
|
outline: none;
|
|
@@ -7633,7 +7686,7 @@ to {
|
|
|
7633
7686
|
position: relative;
|
|
7634
7687
|
white-space: nowrap !important;
|
|
7635
7688
|
}
|
|
7636
|
-
.download-button[data-v-
|
|
7689
|
+
.download-button[data-v-eface7e0]:before {
|
|
7637
7690
|
border-radius: var(--scalar-radius);
|
|
7638
7691
|
content: "";
|
|
7639
7692
|
width: calc(100% + 18px);
|
|
@@ -7642,20 +7695,20 @@ to {
|
|
|
7642
7695
|
top: -8px;
|
|
7643
7696
|
left: -9px;
|
|
7644
7697
|
}
|
|
7645
|
-
.download-button[data-v-
|
|
7698
|
+
.download-button[data-v-eface7e0]:last-of-type:before {
|
|
7646
7699
|
width: calc(100% + 15px);
|
|
7647
7700
|
}
|
|
7648
|
-
.download-button[data-v-
|
|
7701
|
+
.download-button[data-v-eface7e0]:hover:before {
|
|
7649
7702
|
background: var(--scalar-background-2);
|
|
7650
7703
|
border: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
7651
7704
|
}
|
|
7652
|
-
.download-button[data-v-
|
|
7705
|
+
.download-button[data-v-eface7e0]:focus-visible:before {
|
|
7653
7706
|
background: var(--scalar-background-2);
|
|
7654
7707
|
border: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
7655
7708
|
outline-style: var(--tw-outline-style);
|
|
7656
7709
|
outline-width: 1px;
|
|
7657
7710
|
}
|
|
7658
|
-
.download-button span[data-v-
|
|
7711
|
+
.download-button span[data-v-eface7e0] {
|
|
7659
7712
|
--font-color: var(--scalar-link-color, var(--scalar-color-accent));
|
|
7660
7713
|
--font-visited: var(--scalar-link-color-visited, var(--scalar-color-2));
|
|
7661
7714
|
-webkit-text-decoration: var(--scalar-text-decoration);
|
|
@@ -7670,20 +7723,20 @@ to {
|
|
|
7670
7723
|
text-decoration-color: var(--font-color);
|
|
7671
7724
|
}
|
|
7672
7725
|
@supports (color: color-mix(in lab, red, red)) {
|
|
7673
|
-
.download-button span[data-v-
|
|
7726
|
+
.download-button span[data-v-eface7e0] {
|
|
7674
7727
|
-webkit-text-decoration-color: color-mix(in srgb, var(--font-color) 30%, transparent);
|
|
7675
7728
|
-webkit-text-decoration-color: color-mix(in srgb, var(--font-color) 30%, transparent);
|
|
7676
7729
|
text-decoration-color: color-mix(in srgb, var(--font-color) 30%, transparent);
|
|
7677
7730
|
}
|
|
7678
7731
|
}
|
|
7679
|
-
.download-button span[data-v-
|
|
7732
|
+
.download-button span[data-v-eface7e0] {
|
|
7680
7733
|
z-index: 1;
|
|
7681
7734
|
align-items: center;
|
|
7682
7735
|
gap: 6px;
|
|
7683
7736
|
line-height: 1.625;
|
|
7684
7737
|
display: flex;
|
|
7685
7738
|
}
|
|
7686
|
-
.download-button:hover span[data-v-
|
|
7739
|
+
.download-button:hover span[data-v-eface7e0] {
|
|
7687
7740
|
-webkit-text-decoration-color: var(--scalar-color-1, currentColor);
|
|
7688
7741
|
-webkit-text-decoration-color: var(--scalar-color-1, currentColor);
|
|
7689
7742
|
text-decoration-color: var(--scalar-color-1, currentColor);
|
|
@@ -7693,7 +7746,7 @@ to {
|
|
|
7693
7746
|
-webkit-text-decoration: var(--scalar-text-decoration-hover);
|
|
7694
7747
|
text-decoration: var(--scalar-text-decoration-hover);
|
|
7695
7748
|
}
|
|
7696
|
-
.download-button[data-v-
|
|
7749
|
+
.download-button[data-v-eface7e0]:nth-of-type(2) {
|
|
7697
7750
|
clip-path: inset(50%);
|
|
7698
7751
|
white-space: nowrap;
|
|
7699
7752
|
border-width: 0;
|
|
@@ -7704,7 +7757,7 @@ to {
|
|
|
7704
7757
|
position: absolute;
|
|
7705
7758
|
overflow: hidden;
|
|
7706
7759
|
}
|
|
7707
|
-
.download-container:has(:focus-visible) .download-button[data-v-
|
|
7760
|
+
.download-container:has(:focus-visible) .download-button[data-v-eface7e0]:nth-of-type(2), .download-container:hover .download-button[data-v-eface7e0]:nth-of-type(2) {
|
|
7708
7761
|
clip-path: none;
|
|
7709
7762
|
white-space: normal;
|
|
7710
7763
|
width: auto;
|
|
@@ -7715,15 +7768,15 @@ to {
|
|
|
7715
7768
|
top: 42px;
|
|
7716
7769
|
overflow: visible;
|
|
7717
7770
|
}
|
|
7718
|
-
.extension[data-v-
|
|
7771
|
+
.badge.extension[data-v-eface7e0] {
|
|
7719
7772
|
z-index: 1;
|
|
7720
7773
|
background: var(--scalar-link-color, var(--scalar-color-accent));
|
|
7721
7774
|
color: var(--scalar-background-1);
|
|
7722
7775
|
}
|
|
7723
|
-
.download-container:has(:focus-visible) .extension[data-v-
|
|
7776
|
+
.download-container:has(:focus-visible) .extension[data-v-eface7e0], .download-container:hover .extension[data-v-eface7e0] {
|
|
7724
7777
|
opacity: 1;
|
|
7725
7778
|
}
|
|
7726
|
-
.download-link[data-v-
|
|
7779
|
+
.download-link[data-v-eface7e0] {
|
|
7727
7780
|
--font-color: var(--scalar-link-color, var(--scalar-color-accent));
|
|
7728
7781
|
--font-visited: var(--scalar-link-color-visited, var(--scalar-color-2));
|
|
7729
7782
|
-webkit-text-decoration: var(--scalar-text-decoration);
|
|
@@ -7738,13 +7791,13 @@ to {
|
|
|
7738
7791
|
text-decoration-color: var(--font-color);
|
|
7739
7792
|
}
|
|
7740
7793
|
@supports (color: color-mix(in lab, red, red)) {
|
|
7741
|
-
.download-link[data-v-
|
|
7794
|
+
.download-link[data-v-eface7e0] {
|
|
7742
7795
|
-webkit-text-decoration-color: color-mix(in srgb, var(--font-color) 30%, transparent);
|
|
7743
7796
|
-webkit-text-decoration-color: color-mix(in srgb, var(--font-color) 30%, transparent);
|
|
7744
7797
|
text-decoration-color: color-mix(in srgb, var(--font-color) 30%, transparent);
|
|
7745
7798
|
}
|
|
7746
7799
|
}
|
|
7747
|
-
.download-link[data-v-
|
|
7800
|
+
.download-link[data-v-eface7e0]:hover {
|
|
7748
7801
|
--font-color: var(--scalar-link-color, var(--scalar-color-accent));
|
|
7749
7802
|
-webkit-text-decoration-color: var(--font-color);
|
|
7750
7803
|
-webkit-text-decoration-color: var(--font-color);
|
|
@@ -7756,51 +7809,45 @@ to {
|
|
|
7756
7809
|
initial-value: solid;
|
|
7757
7810
|
}
|
|
7758
7811
|
/* Modern layout */
|
|
7759
|
-
.introduction-card[data-v-
|
|
7812
|
+
.introduction-card[data-v-e60166e1] {
|
|
7760
7813
|
display: flex;
|
|
7761
7814
|
flex-direction: column;
|
|
7762
7815
|
gap: 12px;
|
|
7763
7816
|
}
|
|
7764
|
-
.introduction-card-row[data-v-
|
|
7817
|
+
.introduction-card-row[data-v-e60166e1] {
|
|
7765
7818
|
gap: 24px;
|
|
7766
7819
|
}
|
|
7767
|
-
/*
|
|
7768
|
-
|
|
7769
|
-
|
|
7770
|
-
|
|
7771
|
-
|
|
7820
|
+
/*
|
|
7821
|
+
* Classic layout: a row of cards that stacks when the reference is narrow.
|
|
7822
|
+
* The reference is an embeddable widget, so the cards adapt to its rendered
|
|
7823
|
+
* width (see Content.vue), not to the viewport.
|
|
7824
|
+
*/
|
|
7825
|
+
.introduction-card-row[data-v-e60166e1] {
|
|
7826
|
+
flex-flow: row wrap;
|
|
7772
7827
|
}
|
|
7773
|
-
.introduction-card-row[data-v-
|
|
7828
|
+
.introduction-card-row[data-v-e60166e1] > * {
|
|
7774
7829
|
flex: 1;
|
|
7830
|
+
min-width: min-content;
|
|
7775
7831
|
}
|
|
7776
|
-
@
|
|
7777
|
-
.introduction-card-row[data-v-
|
|
7778
|
-
min-width: min-content;
|
|
7779
|
-
}
|
|
7780
|
-
}
|
|
7781
|
-
@media (max-width: 600px) {
|
|
7782
|
-
.introduction-card-row[data-v-5764c94a] > * {
|
|
7783
|
-
max-width: 100%;
|
|
7784
|
-
}
|
|
7785
|
-
}
|
|
7786
|
-
@container (max-width: 900px) {
|
|
7787
|
-
.introduction-card-row[data-v-5764c94a] {
|
|
7832
|
+
@container narrow-references-container (max-width: 900px) {
|
|
7833
|
+
.introduction-card-row[data-v-e60166e1] {
|
|
7788
7834
|
flex-direction: column;
|
|
7789
7835
|
align-items: stretch;
|
|
7790
|
-
gap:
|
|
7836
|
+
gap: 0;
|
|
7837
|
+
}
|
|
7838
|
+
.introduction-card-row[data-v-e60166e1] > * {
|
|
7839
|
+
min-width: auto;
|
|
7840
|
+
max-width: 100%;
|
|
7791
7841
|
}
|
|
7792
7842
|
}
|
|
7793
|
-
.introduction-card[data-v-
|
|
7843
|
+
.introduction-card[data-v-e60166e1] .security-scheme-label {
|
|
7794
7844
|
text-transform: uppercase;
|
|
7795
7845
|
font-weight: var(--scalar-semibold);
|
|
7796
7846
|
}
|
|
7797
|
-
.introduction-card-row[data-v-
|
|
7798
|
-
display: none;
|
|
7799
|
-
}
|
|
7800
|
-
.introduction-card-row[data-v-5764c94a] .scalar-card:nth-of-type(2) .scalar-card-header {
|
|
7847
|
+
.introduction-card-row[data-v-e60166e1] .scalar-card:nth-of-type(2) .scalar-card-header {
|
|
7801
7848
|
display: none;
|
|
7802
7849
|
}
|
|
7803
|
-
.introduction-card-row[data-v-
|
|
7850
|
+
.introduction-card-row[data-v-e60166e1]
|
|
7804
7851
|
|
|
7805
7852
|
.scalar-card:nth-of-type(2)
|
|
7806
7853
|
.scalar-card-header.scalar-card--borderless
|
|
@@ -7811,7 +7858,7 @@ to {
|
|
|
7811
7858
|
.references-classic .introduction-description[data-v-0370764f] img {
|
|
7812
7859
|
max-width: 720px;
|
|
7813
7860
|
}
|
|
7814
|
-
.icons-only[data-v-
|
|
7861
|
+
.icons-only[data-v-dc833d99] span {
|
|
7815
7862
|
display: none;
|
|
7816
7863
|
}
|
|
7817
7864
|
.section-column[data-v-699c28e3] {
|
|
@@ -7833,18 +7880,18 @@ to {
|
|
|
7833
7880
|
gap: 24px;
|
|
7834
7881
|
}
|
|
7835
7882
|
}
|
|
7836
|
-
.sticky-cards[data-v-
|
|
7883
|
+
.sticky-cards[data-v-41a61989] {
|
|
7837
7884
|
display: flex;
|
|
7838
7885
|
flex-direction: column;
|
|
7839
7886
|
position: sticky;
|
|
7840
7887
|
top: calc(var(--refs-viewport-offset) + 24px);
|
|
7841
7888
|
}
|
|
7842
7889
|
/* Pulsing placeholder, matching the look of the rest of the loading states. */
|
|
7843
|
-
.introduction-skeleton[data-v-
|
|
7890
|
+
.introduction-skeleton[data-v-41a61989] {
|
|
7844
7891
|
background: var(--scalar-background-3);
|
|
7845
|
-
animation: introduction-skeleton-pulse-
|
|
7892
|
+
animation: introduction-skeleton-pulse-41a61989 1.5s infinite alternate;
|
|
7846
7893
|
}
|
|
7847
|
-
@keyframes introduction-skeleton-pulse-
|
|
7894
|
+
@keyframes introduction-skeleton-pulse-41a61989 {
|
|
7848
7895
|
from {
|
|
7849
7896
|
opacity: 1;
|
|
7850
7897
|
}
|
|
@@ -7901,25 +7948,16 @@ to {
|
|
|
7901
7948
|
gap: 24px;
|
|
7902
7949
|
}
|
|
7903
7950
|
}
|
|
7904
|
-
|
|
7905
|
-
.section-header-wrapper[data-v-09a18ec6] {
|
|
7906
|
-
grid-template-columns: 1fr;
|
|
7907
|
-
display: grid;
|
|
7908
|
-
}
|
|
7909
|
-
@media (min-width: 1200px) {
|
|
7910
|
-
.section-header-wrapper[data-v-09a18ec6] {
|
|
7911
|
-
grid-template-columns: repeat(2, 1fr);
|
|
7912
|
-
}
|
|
7913
|
-
}
|
|
7914
|
-
.section-header[data-v-09a18ec6] {
|
|
7951
|
+
.section-header[data-v-7607c44e] {
|
|
7915
7952
|
font-size: var(--font-size, var(--scalar-heading-1));
|
|
7916
7953
|
font-weight: var(--font-weight, var(--scalar-bold));
|
|
7954
|
+
/* prettier-ignore */
|
|
7917
7955
|
color: var(--scalar-color-1);
|
|
7918
7956
|
word-wrap: break-word;
|
|
7919
|
-
margin-top: 0;
|
|
7920
7957
|
line-height: 1.45;
|
|
7958
|
+
margin-top: 0;
|
|
7921
7959
|
}
|
|
7922
|
-
.section-header.tight[data-v-
|
|
7960
|
+
.section-header.tight[data-v-7607c44e] {
|
|
7923
7961
|
margin-bottom: 6px;
|
|
7924
7962
|
}
|
|
7925
7963
|
.section-header-label[data-v-f1ac6c38] {
|
|
@@ -7946,36 +7984,6 @@ to {
|
|
|
7946
7984
|
.introduction-card-item[data-v-dfab866f] .request-item {
|
|
7947
7985
|
border-bottom: 0;
|
|
7948
7986
|
}
|
|
7949
|
-
.references-classic-header[data-v-8a3822ca] {
|
|
7950
|
-
display: flex;
|
|
7951
|
-
align-items: center;
|
|
7952
|
-
gap: 12px;
|
|
7953
|
-
|
|
7954
|
-
max-width: var(--refs-content-max-width);
|
|
7955
|
-
margin: auto;
|
|
7956
|
-
padding: 12px 0;
|
|
7957
|
-
}
|
|
7958
|
-
.references-classic-header-content[data-v-8a3822ca] {
|
|
7959
|
-
display: flex;
|
|
7960
|
-
gap: 12px;
|
|
7961
|
-
flex-grow: 1;
|
|
7962
|
-
}
|
|
7963
|
-
.references-classic-header-container[data-v-8a3822ca] {
|
|
7964
|
-
position: relative;
|
|
7965
|
-
padding: 0 60px;
|
|
7966
|
-
}
|
|
7967
|
-
@container narrow-references-container (max-width: 900px) {
|
|
7968
|
-
.references-classic-header[data-v-8a3822ca] {
|
|
7969
|
-
padding: 12px 24px;
|
|
7970
|
-
}
|
|
7971
|
-
.references-classic-header-container[data-v-8a3822ca] {
|
|
7972
|
-
padding: 0;
|
|
7973
|
-
}
|
|
7974
|
-
}
|
|
7975
|
-
.references-classic-header-icon[data-v-8a3822ca] {
|
|
7976
|
-
height: 24px;
|
|
7977
|
-
color: var(--scalar-color-1);
|
|
7978
|
-
}
|
|
7979
7987
|
/* One panel holds the Markdown installation instructions */
|
|
7980
7988
|
.selected-client[data-v-9cbb007b] {
|
|
7981
7989
|
display: flex;
|
|
@@ -8108,6 +8116,36 @@ to {
|
|
|
8108
8116
|
color: var(--scalar-color-1);
|
|
8109
8117
|
font-weight: var(--scalar-semibold);
|
|
8110
8118
|
}
|
|
8119
|
+
.references-classic-header[data-v-8a3822ca] {
|
|
8120
|
+
display: flex;
|
|
8121
|
+
align-items: center;
|
|
8122
|
+
gap: 12px;
|
|
8123
|
+
|
|
8124
|
+
max-width: var(--refs-content-max-width);
|
|
8125
|
+
margin: auto;
|
|
8126
|
+
padding: 12px 0;
|
|
8127
|
+
}
|
|
8128
|
+
.references-classic-header-content[data-v-8a3822ca] {
|
|
8129
|
+
display: flex;
|
|
8130
|
+
gap: 12px;
|
|
8131
|
+
flex-grow: 1;
|
|
8132
|
+
}
|
|
8133
|
+
.references-classic-header-container[data-v-8a3822ca] {
|
|
8134
|
+
position: relative;
|
|
8135
|
+
padding: 0 60px;
|
|
8136
|
+
}
|
|
8137
|
+
@container narrow-references-container (max-width: 900px) {
|
|
8138
|
+
.references-classic-header[data-v-8a3822ca] {
|
|
8139
|
+
padding: 12px 24px;
|
|
8140
|
+
}
|
|
8141
|
+
.references-classic-header-container[data-v-8a3822ca] {
|
|
8142
|
+
padding: 0;
|
|
8143
|
+
}
|
|
8144
|
+
}
|
|
8145
|
+
.references-classic-header-icon[data-v-8a3822ca] {
|
|
8146
|
+
height: 24px;
|
|
8147
|
+
color: var(--scalar-color-1);
|
|
8148
|
+
}
|
|
8111
8149
|
.screenreader-only[data-v-df2e1026] {
|
|
8112
8150
|
position: absolute;
|
|
8113
8151
|
width: 1px;
|
|
@@ -8197,28 +8235,28 @@ to {
|
|
|
8197
8235
|
.property-enum-value-description[data-v-4375ecfd] {
|
|
8198
8236
|
color: var(--scalar-color-3);
|
|
8199
8237
|
}
|
|
8200
|
-
.property-heading:empty + .property-description[data-v-
|
|
8201
|
-
.property-description[data-v-
|
|
8238
|
+
.property-heading:empty + .property-description[data-v-602e2e26]:last-of-type,
|
|
8239
|
+
.property-description[data-v-602e2e26]:first-of-type:last-of-type {
|
|
8202
8240
|
margin-top: 0;
|
|
8203
8241
|
}
|
|
8204
|
-
.property-list[data-v-
|
|
8242
|
+
.property-list[data-v-602e2e26] {
|
|
8205
8243
|
border: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
8206
8244
|
border-radius: var(--scalar-radius);
|
|
8207
8245
|
margin-top: 10px;
|
|
8208
8246
|
}
|
|
8209
|
-
.property-list .property[data-v-
|
|
8247
|
+
.property-list .property[data-v-602e2e26]:last-of-type {
|
|
8210
8248
|
padding-bottom: 10px;
|
|
8211
8249
|
}
|
|
8212
|
-
.property-enum-values[data-v-
|
|
8250
|
+
.property-enum-values[data-v-602e2e26] {
|
|
8213
8251
|
font-size: var(--scalar-font-size-3);
|
|
8214
8252
|
list-style: none;
|
|
8215
8253
|
margin-top: 8px;
|
|
8216
8254
|
padding-left: 2px;
|
|
8217
8255
|
}
|
|
8218
|
-
.enum-toggle-button[data-v-
|
|
8256
|
+
.enum-toggle-button[data-v-602e2e26]:hover {
|
|
8219
8257
|
color: var(--scalar-color-1);
|
|
8220
8258
|
}
|
|
8221
|
-
.property-enum-property-names[data-v-
|
|
8259
|
+
.property-enum-property-names[data-v-602e2e26] {
|
|
8222
8260
|
font-size: var(--scalar-font-size-4);
|
|
8223
8261
|
color: var(--scalar-color-2);
|
|
8224
8262
|
display: inline-block;
|
|
@@ -8389,27 +8427,27 @@ code.property-detail-value[data-v-1295f965] {
|
|
|
8389
8427
|
.property-example:hover .property-example-value-list[data-v-370db0bd], .property-example:focus-within .property-example-value-list[data-v-370db0bd] {
|
|
8390
8428
|
display: flex;
|
|
8391
8429
|
}
|
|
8392
|
-
.property-heading[data-v-
|
|
8430
|
+
.property-heading[data-v-74d321d3] {
|
|
8393
8431
|
display: flex;
|
|
8394
8432
|
flex-wrap: wrap;
|
|
8395
8433
|
align-items: baseline;
|
|
8396
8434
|
row-gap: 9px;
|
|
8397
8435
|
white-space: nowrap;
|
|
8398
8436
|
}
|
|
8399
|
-
.property-heading[data-v-
|
|
8400
|
-
.property-heading[data-v-
|
|
8437
|
+
.property-heading[data-v-74d321d3]:has(+ .children),
|
|
8438
|
+
.property-heading[data-v-74d321d3]:has(+ .property-rule) {
|
|
8401
8439
|
margin-bottom: 9px;
|
|
8402
8440
|
}
|
|
8403
|
-
.property-heading[data-v-
|
|
8441
|
+
.property-heading[data-v-74d321d3] > * {
|
|
8404
8442
|
margin-right: 9px;
|
|
8405
8443
|
}
|
|
8406
|
-
.property-heading[data-v-
|
|
8444
|
+
.property-heading[data-v-74d321d3]:last-child {
|
|
8407
8445
|
margin-right: 0;
|
|
8408
8446
|
}
|
|
8409
|
-
.property-heading > .property-detail[data-v-
|
|
8447
|
+
.property-heading > .property-detail[data-v-74d321d3]:not(:last-of-type) {
|
|
8410
8448
|
margin-right: 0;
|
|
8411
8449
|
}
|
|
8412
|
-
.property-name[data-v-
|
|
8450
|
+
.property-name[data-v-74d321d3] {
|
|
8413
8451
|
max-width: 100%;
|
|
8414
8452
|
font-family: var(--scalar-font-code);
|
|
8415
8453
|
font-weight: var(--scalar-bold);
|
|
@@ -8417,30 +8455,30 @@ code.property-detail-value[data-v-1295f965] {
|
|
|
8417
8455
|
white-space: normal;
|
|
8418
8456
|
overflow-wrap: break-word;
|
|
8419
8457
|
}
|
|
8420
|
-
.property-additional[data-v-
|
|
8458
|
+
.property-additional[data-v-74d321d3] {
|
|
8421
8459
|
font-family: var(--scalar-font-code);
|
|
8422
8460
|
}
|
|
8423
|
-
.property-required[data-v-
|
|
8424
|
-
.property-optional[data-v-
|
|
8461
|
+
.property-required[data-v-74d321d3],
|
|
8462
|
+
.property-optional[data-v-74d321d3] {
|
|
8425
8463
|
color: var(--scalar-color-2);
|
|
8426
8464
|
}
|
|
8427
|
-
.property-required[data-v-
|
|
8465
|
+
.property-required[data-v-74d321d3] {
|
|
8428
8466
|
font-size: var(--scalar-mini);
|
|
8429
8467
|
color: var(--scalar-color-orange);
|
|
8430
8468
|
}
|
|
8431
|
-
.property-read-only[data-v-
|
|
8469
|
+
.property-read-only[data-v-74d321d3] {
|
|
8432
8470
|
font-size: var(--scalar-mini);
|
|
8433
8471
|
color: var(--scalar-color-blue);
|
|
8434
8472
|
}
|
|
8435
|
-
.property-write-only[data-v-
|
|
8473
|
+
.property-write-only[data-v-74d321d3] {
|
|
8436
8474
|
font-size: var(--scalar-mini);
|
|
8437
8475
|
color: var(--scalar-color-green);
|
|
8438
8476
|
}
|
|
8439
|
-
.property-discriminator[data-v-
|
|
8477
|
+
.property-discriminator[data-v-74d321d3] {
|
|
8440
8478
|
font-size: var(--scalar-mini);
|
|
8441
8479
|
color: var(--scalar-color-purple);
|
|
8442
8480
|
}
|
|
8443
|
-
.property-detail[data-v-
|
|
8481
|
+
.property-detail[data-v-74d321d3] {
|
|
8444
8482
|
font-size: var(--scalar-mini);
|
|
8445
8483
|
color: var(--scalar-color-2);
|
|
8446
8484
|
display: flex;
|
|
@@ -8448,10 +8486,10 @@ code.property-detail-value[data-v-1295f965] {
|
|
|
8448
8486
|
|
|
8449
8487
|
min-width: 0;
|
|
8450
8488
|
}
|
|
8451
|
-
.property-const[data-v-
|
|
8489
|
+
.property-const[data-v-74d321d3] {
|
|
8452
8490
|
color: var(--scalar-color-1);
|
|
8453
8491
|
}
|
|
8454
|
-
.deprecated[data-v-
|
|
8492
|
+
.deprecated[data-v-74d321d3] {
|
|
8455
8493
|
text-decoration: line-through;
|
|
8456
8494
|
}
|
|
8457
8495
|
.property[data-v-df25c065] {
|
|
@@ -8834,22 +8872,22 @@ button.schema-card-title[data-v-e811e294]:hover {
|
|
|
8834
8872
|
border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
8835
8873
|
margin-bottom: 8px;
|
|
8836
8874
|
}
|
|
8837
|
-
.operation[data-v-
|
|
8875
|
+
.operation[data-v-91a717db] {
|
|
8838
8876
|
margin-top: 32px;
|
|
8839
8877
|
scroll-margin-top: var(--refs-viewport-offset);
|
|
8840
8878
|
}
|
|
8841
|
-
.operation-header[data-v-
|
|
8879
|
+
.operation-header[data-v-91a717db] {
|
|
8842
8880
|
display: flex;
|
|
8843
8881
|
align-items: center;
|
|
8844
8882
|
gap: 8px;
|
|
8845
8883
|
}
|
|
8846
|
-
.operation-title[data-v-
|
|
8884
|
+
.operation-title[data-v-91a717db] {
|
|
8847
8885
|
font-size: var(--scalar-heading-3);
|
|
8848
8886
|
font-weight: var(--scalar-semibold);
|
|
8849
8887
|
color: var(--scalar-color-1);
|
|
8850
8888
|
}
|
|
8851
8889
|
/* Filled, color-coded pill carries the primary send/receive signal. */
|
|
8852
|
-
.operation-action[data-v-
|
|
8890
|
+
.operation-action[data-v-91a717db] {
|
|
8853
8891
|
text-transform: uppercase;
|
|
8854
8892
|
font-size: var(--scalar-mini);
|
|
8855
8893
|
font-weight: var(--scalar-semibold);
|
|
@@ -8859,20 +8897,20 @@ button.schema-card-title[data-v-e811e294]:hover {
|
|
|
8859
8897
|
display: inline-flex;
|
|
8860
8898
|
align-items: center;
|
|
8861
8899
|
}
|
|
8862
|
-
.operation-action--send[data-v-
|
|
8900
|
+
.operation-action--send[data-v-91a717db] {
|
|
8863
8901
|
color: var(--scalar-color-blue);
|
|
8864
8902
|
background: color-mix(in srgb, var(--scalar-color-blue), transparent 88%);
|
|
8865
8903
|
}
|
|
8866
|
-
.operation-action--receive[data-v-
|
|
8904
|
+
.operation-action--receive[data-v-91a717db] {
|
|
8867
8905
|
color: var(--scalar-color-green);
|
|
8868
8906
|
background: color-mix(in srgb, var(--scalar-color-green), transparent 88%);
|
|
8869
8907
|
}
|
|
8870
|
-
.operation-description[data-v-
|
|
8908
|
+
.operation-description[data-v-91a717db] {
|
|
8871
8909
|
text-align: left;
|
|
8872
8910
|
margin-top: 4px;
|
|
8873
8911
|
}
|
|
8874
8912
|
/* Space the first message accordion away from the operation header/description. */
|
|
8875
|
-
.operation[data-v-
|
|
8913
|
+
.operation[data-v-91a717db] > .message {
|
|
8876
8914
|
margin-top: 12px;
|
|
8877
8915
|
}
|
|
8878
8916
|
.section-accordion-wrapper[data-v-9419dd23] {
|
|
@@ -9114,14 +9152,14 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
9114
9152
|
.reference-models-label[data-v-f3ae088e] em {
|
|
9115
9153
|
font-weight: var(--scalar-bold);
|
|
9116
9154
|
}
|
|
9117
|
-
.collapsible-section[data-v-
|
|
9155
|
+
.collapsible-section[data-v-ea5f870d] {
|
|
9118
9156
|
border-top: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
9119
9157
|
position: relative;
|
|
9120
9158
|
}
|
|
9121
|
-
.collapsible-section-header[data-v-
|
|
9159
|
+
.collapsible-section-header[data-v-ea5f870d] {
|
|
9122
9160
|
color: var(--scalar-color-1);
|
|
9123
9161
|
}
|
|
9124
|
-
.collapsible-section .collapsible-section-trigger[data-v-
|
|
9162
|
+
.collapsible-section .collapsible-section-trigger[data-v-ea5f870d] {
|
|
9125
9163
|
display: flex;
|
|
9126
9164
|
align-items: center;
|
|
9127
9165
|
cursor: pointer;
|
|
@@ -9130,18 +9168,18 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
9130
9168
|
z-index: 1;
|
|
9131
9169
|
position: relative;
|
|
9132
9170
|
}
|
|
9133
|
-
.collapsible-section-trigger svg[data-v-
|
|
9171
|
+
.collapsible-section-trigger svg[data-v-ea5f870d] {
|
|
9134
9172
|
color: var(--scalar-color-3);
|
|
9135
9173
|
position: absolute;
|
|
9136
9174
|
left: -19px;
|
|
9137
9175
|
}
|
|
9138
|
-
.collapsible-section:hover .collapsible-section-trigger svg[data-v-
|
|
9176
|
+
.collapsible-section:hover .collapsible-section-trigger svg[data-v-ea5f870d] {
|
|
9139
9177
|
color: var(--scalar-color-1);
|
|
9140
9178
|
}
|
|
9141
|
-
.collapsible-section .collapsible-section-trigger[data-v-
|
|
9179
|
+
.collapsible-section .collapsible-section-trigger[data-v-ea5f870d] .anchor-copy {
|
|
9142
9180
|
line-height: 18.5px;
|
|
9143
9181
|
}
|
|
9144
|
-
.collapsible-section-content[data-v-
|
|
9182
|
+
.collapsible-section-content[data-v-ea5f870d] {
|
|
9145
9183
|
padding: 0;
|
|
9146
9184
|
margin: 0;
|
|
9147
9185
|
margin-bottom: 10px;
|
|
@@ -9686,11 +9724,11 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
9686
9724
|
margin-right: 4px;
|
|
9687
9725
|
}
|
|
9688
9726
|
/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
|
|
9689
|
-
.operation-title[data-v-
|
|
9727
|
+
.operation-title[data-v-ae829610] {
|
|
9690
9728
|
justify-content: space-between;
|
|
9691
9729
|
display: flex;
|
|
9692
9730
|
}
|
|
9693
|
-
.operation-details[data-v-
|
|
9731
|
+
.operation-details[data-v-ae829610] {
|
|
9694
9732
|
flex-shrink: 1;
|
|
9695
9733
|
align-items: center;
|
|
9696
9734
|
gap: 9px;
|
|
@@ -9698,11 +9736,11 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
9698
9736
|
margin-top: 0;
|
|
9699
9737
|
display: flex;
|
|
9700
9738
|
}
|
|
9701
|
-
.operation-details[data-v-
|
|
9739
|
+
.operation-details[data-v-ae829610] .endpoint-anchor .scalar-button svg {
|
|
9702
9740
|
width: 16px;
|
|
9703
9741
|
height: 16px;
|
|
9704
9742
|
}
|
|
9705
|
-
.endpoint-type[data-v-
|
|
9743
|
+
.endpoint-type[data-v-ae829610] {
|
|
9706
9744
|
z-index: 0;
|
|
9707
9745
|
width: 60px;
|
|
9708
9746
|
font-size: var(--scalar-small);
|
|
@@ -9717,7 +9755,7 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
9717
9755
|
display: flex;
|
|
9718
9756
|
position: relative;
|
|
9719
9757
|
}
|
|
9720
|
-
.endpoint-type[data-v-
|
|
9758
|
+
.endpoint-type[data-v-ae829610]:after {
|
|
9721
9759
|
content: "";
|
|
9722
9760
|
z-index: -1;
|
|
9723
9761
|
opacity: .15;
|
|
@@ -9726,16 +9764,16 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
9726
9764
|
position: absolute;
|
|
9727
9765
|
inset: 0;
|
|
9728
9766
|
}
|
|
9729
|
-
.endpoint-anchor[data-v-
|
|
9767
|
+
.endpoint-anchor[data-v-ae829610] {
|
|
9730
9768
|
flex-shrink: 1;
|
|
9731
9769
|
align-items: center;
|
|
9732
9770
|
min-width: 0;
|
|
9733
9771
|
display: flex;
|
|
9734
9772
|
}
|
|
9735
|
-
.endpoint-anchor.label[data-v-
|
|
9773
|
+
.endpoint-anchor.label[data-v-ae829610] {
|
|
9736
9774
|
display: flex;
|
|
9737
9775
|
}
|
|
9738
|
-
.endpoint-label[data-v-
|
|
9776
|
+
.endpoint-label[data-v-ae829610] {
|
|
9739
9777
|
min-width: 0;
|
|
9740
9778
|
color: var(--scalar-color-1);
|
|
9741
9779
|
flex-shrink: 1;
|
|
@@ -9743,17 +9781,17 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
9743
9781
|
gap: 9px;
|
|
9744
9782
|
display: flex;
|
|
9745
9783
|
}
|
|
9746
|
-
.endpoint-label-path[data-v-
|
|
9784
|
+
.endpoint-label-path[data-v-ae829610] {
|
|
9747
9785
|
font-family: var(--scalar-font-code);
|
|
9748
9786
|
font-size: var(--scalar-mini);
|
|
9749
9787
|
text-overflow: ellipsis;
|
|
9750
9788
|
white-space: nowrap;
|
|
9751
9789
|
overflow: hidden;
|
|
9752
9790
|
}
|
|
9753
|
-
.endpoint-label-path[data-v-
|
|
9791
|
+
.endpoint-label-path[data-v-ae829610] em {
|
|
9754
9792
|
color: var(--scalar-color-2);
|
|
9755
9793
|
}
|
|
9756
|
-
.endpoint-label-name[data-v-
|
|
9794
|
+
.endpoint-label-name[data-v-ae829610] {
|
|
9757
9795
|
color: var(--scalar-color-2);
|
|
9758
9796
|
font-size: var(--scalar-small);
|
|
9759
9797
|
text-overflow: ellipsis;
|
|
@@ -9761,17 +9799,17 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
9761
9799
|
flex-shrink: 1000000000;
|
|
9762
9800
|
overflow: hidden;
|
|
9763
9801
|
}
|
|
9764
|
-
.endpoint-try-hint[data-v-
|
|
9802
|
+
.endpoint-try-hint[data-v-ae829610] {
|
|
9765
9803
|
flex-shrink: 0;
|
|
9766
9804
|
padding: 2px;
|
|
9767
9805
|
}
|
|
9768
|
-
.endpoint-copy[data-v-
|
|
9806
|
+
.endpoint-copy[data-v-ae829610] {
|
|
9769
9807
|
color: currentColor;
|
|
9770
9808
|
}
|
|
9771
|
-
.endpoint-copy[data-v-
|
|
9809
|
+
.endpoint-copy[data-v-ae829610] svg {
|
|
9772
9810
|
stroke-width: 2px;
|
|
9773
9811
|
}
|
|
9774
|
-
.endpoint-content[data-v-
|
|
9812
|
+
.endpoint-content[data-v-ae829610] {
|
|
9775
9813
|
grid-auto-columns: 1fr;
|
|
9776
9814
|
grid-auto-flow: row;
|
|
9777
9815
|
gap: 9px;
|
|
@@ -9779,52 +9817,52 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
9779
9817
|
display: grid;
|
|
9780
9818
|
}
|
|
9781
9819
|
@media (min-width: 1000px) {
|
|
9782
|
-
.endpoint-content[data-v-
|
|
9820
|
+
.endpoint-content[data-v-ae829610] {
|
|
9783
9821
|
grid-auto-flow: column;
|
|
9784
9822
|
}
|
|
9785
9823
|
}
|
|
9786
9824
|
@container (max-width: 900px) {
|
|
9787
|
-
.endpoint-content[data-v-
|
|
9825
|
+
.endpoint-content[data-v-ae829610] {
|
|
9788
9826
|
grid-template-columns: 1fr;
|
|
9789
9827
|
}
|
|
9790
9828
|
}
|
|
9791
|
-
.endpoint-content[data-v-
|
|
9829
|
+
.endpoint-content[data-v-ae829610] > * {
|
|
9792
9830
|
min-width: 0;
|
|
9793
9831
|
}
|
|
9794
|
-
.operation-details-card[data-v-
|
|
9832
|
+
.operation-details-card[data-v-ae829610] {
|
|
9795
9833
|
flex-direction: column;
|
|
9796
9834
|
gap: 12px;
|
|
9797
9835
|
min-width: 0;
|
|
9798
9836
|
display: flex;
|
|
9799
9837
|
}
|
|
9800
|
-
:is(.operation-details-card-item[data-v-
|
|
9838
|
+
:is(.operation-details-card-item[data-v-ae829610] .parameter-list, .operation-details-card-item[data-v-ae829610] .callbacks-list) {
|
|
9801
9839
|
border: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
9802
9840
|
border-radius: var(--scalar-radius-lg);
|
|
9803
9841
|
margin-top: 0;
|
|
9804
9842
|
}
|
|
9805
|
-
.operation-details-card-item[data-v-
|
|
9843
|
+
.operation-details-card-item[data-v-ae829610] {
|
|
9806
9844
|
flex-direction: column;
|
|
9807
9845
|
gap: 12px;
|
|
9808
9846
|
display: flex;
|
|
9809
9847
|
}
|
|
9810
|
-
.operation-details-card-item[data-v-
|
|
9848
|
+
.operation-details-card-item[data-v-ae829610] .parameter-list-items {
|
|
9811
9849
|
margin-bottom: 0;
|
|
9812
9850
|
}
|
|
9813
|
-
.operation-details-card[data-v-
|
|
9851
|
+
.operation-details-card[data-v-ae829610] .parameter-item:last-of-type .parameter-schema {
|
|
9814
9852
|
padding-bottom: 12px;
|
|
9815
9853
|
}
|
|
9816
|
-
.operation-details-card[data-v-
|
|
9854
|
+
.operation-details-card[data-v-ae829610] .parameter-list .parameter-list {
|
|
9817
9855
|
margin-bottom: 12px;
|
|
9818
9856
|
}
|
|
9819
|
-
.operation-details-card[data-v-
|
|
9857
|
+
.operation-details-card[data-v-ae829610] .parameter-item {
|
|
9820
9858
|
margin: 0;
|
|
9821
9859
|
padding: 0;
|
|
9822
9860
|
}
|
|
9823
|
-
.operation-details-card[data-v-
|
|
9861
|
+
.operation-details-card[data-v-ae829610] .property {
|
|
9824
9862
|
margin: 0;
|
|
9825
9863
|
padding: 9px;
|
|
9826
9864
|
}
|
|
9827
|
-
:is(.operation-details-card[data-v-
|
|
9865
|
+
:is(.operation-details-card[data-v-ae829610] .parameter-list-title, .operation-details-card[data-v-ae829610] .request-body-title, .operation-details-card[data-v-ae829610] .callbacks-title) {
|
|
9828
9866
|
text-transform: uppercase;
|
|
9829
9867
|
font-weight: var(--scalar-bold);
|
|
9830
9868
|
font-size: var(--scalar-mini);
|
|
@@ -9833,61 +9871,61 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
9833
9871
|
padding: 9px;
|
|
9834
9872
|
line-height: 1.33;
|
|
9835
9873
|
}
|
|
9836
|
-
.operation-details-card[data-v-
|
|
9874
|
+
.operation-details-card[data-v-ae829610] .callback-list-item-title {
|
|
9837
9875
|
padding-left: 28px;
|
|
9838
9876
|
padding-right: 12px;
|
|
9839
9877
|
}
|
|
9840
|
-
.operation-details-card[data-v-
|
|
9878
|
+
.operation-details-card[data-v-ae829610] .callback-list-item-icon {
|
|
9841
9879
|
left: 6px;
|
|
9842
9880
|
}
|
|
9843
|
-
.operation-details-card[data-v-
|
|
9881
|
+
.operation-details-card[data-v-ae829610] .callback-operation-container {
|
|
9844
9882
|
padding-inline: 9px;
|
|
9845
9883
|
padding-bottom: 9px;
|
|
9846
9884
|
}
|
|
9847
|
-
:is(.operation-details-card[data-v-
|
|
9885
|
+
:is(.operation-details-card[data-v-ae829610] .callback-operation-container > .request-body, .operation-details-card[data-v-ae829610] .callback-operation-container > .parameter-list) {
|
|
9848
9886
|
border: none;
|
|
9849
9887
|
}
|
|
9850
|
-
.operation-details-card[data-v-
|
|
9888
|
+
.operation-details-card[data-v-ae829610] .callback-operation-container > .request-body > .request-body-header {
|
|
9851
9889
|
border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
9852
9890
|
padding: 0 0 9px;
|
|
9853
9891
|
}
|
|
9854
|
-
.operation-details-card[data-v-
|
|
9892
|
+
.operation-details-card[data-v-ae829610] .request-body-description {
|
|
9855
9893
|
border-top: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
9856
9894
|
margin-top: 0;
|
|
9857
9895
|
padding: 9px 9px 0;
|
|
9858
9896
|
}
|
|
9859
|
-
.operation-details-card[data-v-
|
|
9897
|
+
.operation-details-card[data-v-ae829610] .request-body {
|
|
9860
9898
|
border-radius: var(--scalar-radius-lg);
|
|
9861
9899
|
border: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
9862
9900
|
margin-top: 0;
|
|
9863
9901
|
}
|
|
9864
|
-
.operation-details-card[data-v-
|
|
9902
|
+
.operation-details-card[data-v-ae829610] .request-body .schema-card--level-0 > .schema-card-description {
|
|
9865
9903
|
padding-inline: 9px;
|
|
9866
9904
|
}
|
|
9867
|
-
.operation-details-card[data-v-
|
|
9905
|
+
.operation-details-card[data-v-ae829610] .request-body-header {
|
|
9868
9906
|
border-bottom: 0;
|
|
9869
9907
|
padding-bottom: 0;
|
|
9870
9908
|
}
|
|
9871
|
-
.operation-details-card[data-v-
|
|
9909
|
+
.operation-details-card[data-v-ae829610] .contents button {
|
|
9872
9910
|
margin-right: 9px;
|
|
9873
9911
|
}
|
|
9874
|
-
.operation-details-card[data-v-
|
|
9912
|
+
.operation-details-card[data-v-ae829610] .schema-card--open + .schema-card:not(.schema-card--open) {
|
|
9875
9913
|
margin-inline: 9px;
|
|
9876
9914
|
margin-bottom: 9px;
|
|
9877
9915
|
}
|
|
9878
|
-
.operation-details-card[data-v-
|
|
9916
|
+
.operation-details-card[data-v-ae829610] .request-body-schema .property--level-0 {
|
|
9879
9917
|
padding: 0;
|
|
9880
9918
|
}
|
|
9881
|
-
.operation-details-card[data-v-
|
|
9919
|
+
.operation-details-card[data-v-ae829610] .selected-content-type {
|
|
9882
9920
|
margin-right: 9px;
|
|
9883
9921
|
}
|
|
9884
|
-
.operation-example-card[data-v-
|
|
9922
|
+
.operation-example-card[data-v-ae829610] {
|
|
9885
9923
|
top: calc(var(--refs-viewport-offset) + 24px);
|
|
9886
9924
|
max-height: calc(var(--refs-viewport-height) - 48px);
|
|
9887
9925
|
position: sticky;
|
|
9888
9926
|
}
|
|
9889
9927
|
@media (max-width: 600px) {
|
|
9890
|
-
.operation-example-card[data-v-
|
|
9928
|
+
.operation-example-card[data-v-ae829610] {
|
|
9891
9929
|
max-height: unset;
|
|
9892
9930
|
position: static;
|
|
9893
9931
|
}
|
|
@@ -9985,7 +10023,7 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
9985
10023
|
* its own leading margin (mt-6) that already spaces it from whatever precedes
|
|
9986
10024
|
* it — a row-gap would double that gap.
|
|
9987
10025
|
*/
|
|
9988
|
-
.operation-layout[data-v-
|
|
10026
|
+
.operation-layout[data-v-2382aa8f] {
|
|
9989
10027
|
display: grid;
|
|
9990
10028
|
grid-template-columns: 1fr 1fr;
|
|
9991
10029
|
grid-template-rows: auto auto 1fr;
|
|
@@ -9996,7 +10034,7 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
9996
10034
|
column-gap: 48px;
|
|
9997
10035
|
row-gap: 0;
|
|
9998
10036
|
}
|
|
9999
|
-
.operation-title[data-v-
|
|
10037
|
+
.operation-title[data-v-2382aa8f] {
|
|
10000
10038
|
grid-area: heading;
|
|
10001
10039
|
margin-bottom: 12px;
|
|
10002
10040
|
|
|
@@ -10006,20 +10044,20 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
10006
10044
|
color: var(--scalar-color-1);
|
|
10007
10045
|
line-height: 1.45;
|
|
10008
10046
|
}
|
|
10009
|
-
.operation-auth[data-v-
|
|
10047
|
+
.operation-auth[data-v-2382aa8f] {
|
|
10010
10048
|
grid-area: badge;
|
|
10011
10049
|
justify-self: end;
|
|
10012
10050
|
align-self: start;
|
|
10013
10051
|
}
|
|
10014
|
-
.operation-description[data-v-
|
|
10052
|
+
.operation-description[data-v-2382aa8f] {
|
|
10015
10053
|
grid-area: description;
|
|
10016
10054
|
min-width: 0;
|
|
10017
10055
|
}
|
|
10018
|
-
.operation-details[data-v-
|
|
10056
|
+
.operation-details[data-v-2382aa8f] {
|
|
10019
10057
|
grid-area: details;
|
|
10020
10058
|
min-width: 0;
|
|
10021
10059
|
}
|
|
10022
|
-
.examples[data-v-
|
|
10060
|
+
.examples[data-v-2382aa8f] {
|
|
10023
10061
|
grid-area: examples;
|
|
10024
10062
|
align-self: start;
|
|
10025
10063
|
min-width: 0;
|
|
@@ -10027,11 +10065,11 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
10027
10065
|
position: sticky;
|
|
10028
10066
|
top: calc(var(--refs-viewport-offset) + 24px);
|
|
10029
10067
|
}
|
|
10030
|
-
.examples[data-v-
|
|
10068
|
+
.examples[data-v-2382aa8f] > * {
|
|
10031
10069
|
max-height: calc((var(--refs-viewport-height) - 60px) / 2);
|
|
10032
10070
|
position: relative;
|
|
10033
10071
|
}
|
|
10034
|
-
.examples[data-v-
|
|
10072
|
+
.examples[data-v-2382aa8f] > *:first-of-type:last-of-type {
|
|
10035
10073
|
max-height: calc((var(--refs-viewport-height) - 60px));
|
|
10036
10074
|
}
|
|
10037
10075
|
/*
|
|
@@ -10039,11 +10077,11 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
10039
10077
|
* (or zoomed in screens)
|
|
10040
10078
|
*/
|
|
10041
10079
|
@media (max-width: 600px) {
|
|
10042
|
-
.examples[data-v-
|
|
10080
|
+
.examples[data-v-2382aa8f] > * {
|
|
10043
10081
|
max-height: unset;
|
|
10044
10082
|
}
|
|
10045
10083
|
}
|
|
10046
|
-
.deprecated[data-v-
|
|
10084
|
+
.deprecated[data-v-2382aa8f] * {
|
|
10047
10085
|
text-decoration: line-through;
|
|
10048
10086
|
}
|
|
10049
10087
|
/*
|
|
@@ -10052,7 +10090,7 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
10052
10090
|
* an eyebrow above the title.
|
|
10053
10091
|
*/
|
|
10054
10092
|
@container narrow-references-container (max-width: 900px) {
|
|
10055
|
-
.operation-layout[data-v-
|
|
10093
|
+
.operation-layout[data-v-2382aa8f] {
|
|
10056
10094
|
grid-template-columns: 1fr;
|
|
10057
10095
|
grid-template-areas:
|
|
10058
10096
|
'badge'
|
|
@@ -10062,19 +10100,16 @@ button.headers-card-title[data-v-b7ba0e6f]:hover {
|
|
|
10062
10100
|
'details';
|
|
10063
10101
|
column-gap: 0;
|
|
10064
10102
|
}
|
|
10065
|
-
.operation-auth[data-v-
|
|
10103
|
+
.operation-auth[data-v-2382aa8f] {
|
|
10066
10104
|
justify-self: start;
|
|
10067
10105
|
margin-bottom: 4px;
|
|
10068
10106
|
}
|
|
10069
|
-
.operation-
|
|
10070
|
-
margin-bottom: 24px;
|
|
10071
|
-
}
|
|
10072
|
-
.operation-description[data-v-eb0b9f7e] {
|
|
10107
|
+
.operation-description[data-v-2382aa8f] {
|
|
10073
10108
|
margin-bottom: 24px;
|
|
10074
10109
|
}
|
|
10075
10110
|
|
|
10076
10111
|
/* Don't make the examples sticky on narrow viewports */
|
|
10077
|
-
.examples[data-v-
|
|
10112
|
+
.examples[data-v-2382aa8f] {
|
|
10078
10113
|
position: static;
|
|
10079
10114
|
}
|
|
10080
10115
|
}
|
|
@@ -10220,7 +10255,7 @@ body {
|
|
|
10220
10255
|
}
|
|
10221
10256
|
/* Configurable Layout Variables */
|
|
10222
10257
|
@layer scalar-config {
|
|
10223
|
-
.scalar-api-reference[data-v-
|
|
10258
|
+
.scalar-api-reference[data-v-e9d9c6ec] {
|
|
10224
10259
|
/* The header height */
|
|
10225
10260
|
--refs-header-height: calc(
|
|
10226
10261
|
var(--scalar-custom-header-height, 0px) + var(--scalar-header-height, 0px)
|
|
@@ -10242,19 +10277,19 @@ body {
|
|
|
10242
10277
|
/* The maximum width of the content column */
|
|
10243
10278
|
--refs-content-max-width: var(--scalar-content-max-width, 1540px);
|
|
10244
10279
|
}
|
|
10245
|
-
.scalar-api-reference.references-classic[data-v-
|
|
10280
|
+
.scalar-api-reference.references-classic[data-v-e9d9c6ec] {
|
|
10246
10281
|
/* Classic layout is wider */
|
|
10247
10282
|
--refs-content-max-width: var(--scalar-content-max-width, 1420px);
|
|
10248
10283
|
min-height: 100dvh;
|
|
10249
10284
|
--refs-sidebar-width: 0;
|
|
10250
10285
|
}
|
|
10251
10286
|
}
|
|
10252
|
-
.t-doc__sidebar[data-v-
|
|
10287
|
+
.t-doc__sidebar[data-v-e9d9c6ec] {
|
|
10253
10288
|
z-index: 10;
|
|
10254
10289
|
}
|
|
10255
10290
|
/* ----------------------------------------------------- */
|
|
10256
10291
|
/* References Layout */
|
|
10257
|
-
.references-layout[data-v-
|
|
10292
|
+
.references-layout[data-v-e9d9c6ec] {
|
|
10258
10293
|
/* Try to fill the container */
|
|
10259
10294
|
min-height: 100dvh;
|
|
10260
10295
|
min-width: 100%;
|
|
@@ -10278,31 +10313,31 @@ body {
|
|
|
10278
10313
|
|
|
10279
10314
|
background: var(--scalar-background-1);
|
|
10280
10315
|
}
|
|
10281
|
-
.references-editor[data-v-
|
|
10316
|
+
.references-editor[data-v-e9d9c6ec] {
|
|
10282
10317
|
grid-area: editor;
|
|
10283
10318
|
display: flex;
|
|
10284
10319
|
min-width: 0;
|
|
10285
10320
|
background: var(--scalar-background-1);
|
|
10286
10321
|
}
|
|
10287
|
-
.references-rendered[data-v-
|
|
10322
|
+
.references-rendered[data-v-e9d9c6ec] {
|
|
10288
10323
|
position: relative;
|
|
10289
10324
|
grid-area: rendered;
|
|
10290
10325
|
min-width: 0;
|
|
10291
10326
|
background: var(--scalar-background-1);
|
|
10292
10327
|
}
|
|
10293
|
-
.scalar-api-reference.references-classic[data-v-
|
|
10294
|
-
.references-classic .references-rendered[data-v-
|
|
10328
|
+
.scalar-api-reference.references-classic[data-v-e9d9c6ec],
|
|
10329
|
+
.references-classic .references-rendered[data-v-e9d9c6ec] {
|
|
10295
10330
|
height: initial !important;
|
|
10296
10331
|
max-height: initial !important;
|
|
10297
10332
|
}
|
|
10298
10333
|
@layer scalar-config {
|
|
10299
|
-
.references-sidebar[data-v-
|
|
10334
|
+
.references-sidebar[data-v-e9d9c6ec] {
|
|
10300
10335
|
/* Set a default width if references are enabled */
|
|
10301
10336
|
--refs-sidebar-width: var(--scalar-sidebar-width, 288px);
|
|
10302
10337
|
}
|
|
10303
10338
|
}
|
|
10304
10339
|
/* Footer */
|
|
10305
|
-
.references-footer[data-v-
|
|
10340
|
+
.references-footer[data-v-e9d9c6ec] {
|
|
10306
10341
|
grid-area: footer;
|
|
10307
10342
|
}
|
|
10308
10343
|
/* ----------------------------------------------------- */
|
|
@@ -10317,12 +10352,12 @@ body {
|
|
|
10317
10352
|
*/
|
|
10318
10353
|
@media (width < 1000px) {
|
|
10319
10354
|
/* Keep toolbar hidden on mobile without forcing desktop display mode. */
|
|
10320
|
-
.references-developer-tools[data-v-
|
|
10355
|
+
.references-developer-tools[data-v-e9d9c6ec] {
|
|
10321
10356
|
display: none;
|
|
10322
10357
|
}
|
|
10323
10358
|
|
|
10324
10359
|
/* Stack view on mobile */
|
|
10325
|
-
.references-layout[data-v-
|
|
10360
|
+
.references-layout[data-v-e9d9c6ec] {
|
|
10326
10361
|
/* Adjust the sidebar height to the viewport height minus the header height */
|
|
10327
10362
|
--refs-sidebar-height: calc(
|
|
10328
10363
|
var(--full-height, 100dvh) - var(--scalar-custom-header-height, 0px)
|
|
@@ -10337,13 +10372,13 @@ body {
|
|
|
10337
10372
|
'rendered'
|
|
10338
10373
|
'footer';
|
|
10339
10374
|
}
|
|
10340
|
-
.references-editable[data-v-
|
|
10375
|
+
.references-editable[data-v-e9d9c6ec] {
|
|
10341
10376
|
grid-template-areas:
|
|
10342
10377
|
'header'
|
|
10343
10378
|
'navigation'
|
|
10344
10379
|
'editor';
|
|
10345
10380
|
}
|
|
10346
|
-
.references-rendered[data-v-
|
|
10381
|
+
.references-rendered[data-v-e9d9c6ec] {
|
|
10347
10382
|
position: static;
|
|
10348
10383
|
}
|
|
10349
10384
|
}
|
|
@@ -10354,11 +10389,11 @@ body {
|
|
|
10354
10389
|
*/
|
|
10355
10390
|
/* Match the layout breakpoint above so the mobile header height is only applied below `lg`. */
|
|
10356
10391
|
@media (width < 1000px) {
|
|
10357
|
-
.scalar-api-references-standalone-mobile[data-v-
|
|
10392
|
+
.scalar-api-references-standalone-mobile[data-v-e9d9c6ec]:not(.references-classic) {
|
|
10358
10393
|
--scalar-header-height: 50px;
|
|
10359
10394
|
}
|
|
10360
10395
|
}
|
|
10361
|
-
.darklight-reference[data-v-
|
|
10396
|
+
.darklight-reference[data-v-e9d9c6ec] {
|
|
10362
10397
|
width: 100%;
|
|
10363
10398
|
margin-top: auto;
|
|
10364
10399
|
}
|