@scalar/api-reference 1.52.3 → 1.52.5
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 +11 -0
- package/dist/browser/standalone.js +88 -89
- package/dist/browser/webpack-stats.json +1 -1
- 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.vue.js.map +1 -1
- package/dist/components/Content/Schema/SchemaProperty.vue.script.js +1 -1
- package/dist/components/Content/Schema/SchemaProperty.vue.script.js.map +1 -1
- package/dist/components/SectionFlare/SectionFlare.vue.d.ts.map +1 -1
- package/dist/components/SectionFlare/SectionFlare.vue.js +2 -2
- package/dist/components/SectionFlare/SectionFlare.vue.js.map +1 -1
- package/dist/features/Operation/components/OperationParameters.vue.d.ts +10 -1
- package/dist/features/Operation/components/OperationParameters.vue.d.ts.map +1 -1
- package/dist/features/Operation/components/OperationParameters.vue.js.map +1 -1
- package/dist/features/Operation/components/OperationParameters.vue.script.js +17 -8
- package/dist/features/Operation/components/OperationParameters.vue.script.js.map +1 -1
- package/dist/features/Operation/components/RequestBody.vue.d.ts +9 -1
- package/dist/features/Operation/components/RequestBody.vue.d.ts.map +1 -1
- package/dist/features/Operation/components/RequestBody.vue.js +1 -1
- package/dist/features/Operation/components/RequestBody.vue.js.map +1 -1
- package/dist/features/Operation/components/RequestBody.vue.script.js +8 -4
- package/dist/features/Operation/components/RequestBody.vue.script.js.map +1 -1
- 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/ClassicLayout.vue.js.map +1 -1
- package/dist/features/Operation/layouts/ClassicLayout.vue.script.js +10 -3
- package/dist/features/Operation/layouts/ClassicLayout.vue.script.js.map +1 -1
- package/dist/features/Operation/layouts/ModernLayout.vue.d.ts.map +1 -1
- package/dist/features/Operation/layouts/ModernLayout.vue.js +1 -1
- package/dist/features/Operation/layouts/ModernLayout.vue.js.map +1 -1
- package/dist/features/Operation/layouts/ModernLayout.vue.script.js +9 -2
- package/dist/features/Operation/layouts/ModernLayout.vue.script.js.map +1 -1
- package/dist/style.css +177 -155
- package/package.json +12 -12
package/dist/style.css
CHANGED
|
@@ -1066,7 +1066,7 @@ code.property-detail-value[data-v-1295f965] {
|
|
|
1066
1066
|
text-decoration: line-through;
|
|
1067
1067
|
}
|
|
1068
1068
|
|
|
1069
|
-
.property[data-v-
|
|
1069
|
+
.property[data-v-ee3d2806] {
|
|
1070
1070
|
color: var(--scalar-color-1);
|
|
1071
1071
|
display: flex;
|
|
1072
1072
|
flex-direction: column;
|
|
@@ -1076,7 +1076,7 @@ code.property-detail-value[data-v-1295f965] {
|
|
|
1076
1076
|
}
|
|
1077
1077
|
|
|
1078
1078
|
/** Remove top padding for top level schema card */
|
|
1079
|
-
.property.property--level-0[data-v-
|
|
1079
|
+
.property.property--level-0[data-v-ee3d2806]:has(
|
|
1080
1080
|
> .property-rule
|
|
1081
1081
|
> .schema-card
|
|
1082
1082
|
> .schema-properties.schema-properties-open
|
|
@@ -1085,25 +1085,25 @@ code.property-detail-value[data-v-1295f965] {
|
|
|
1085
1085
|
) {
|
|
1086
1086
|
padding-top: 0;
|
|
1087
1087
|
}
|
|
1088
|
-
.property--compact.property--level-0[data-v-
|
|
1089
|
-
.property--compact.property--level-1[data-v-
|
|
1088
|
+
.property--compact.property--level-0[data-v-ee3d2806],
|
|
1089
|
+
.property--compact.property--level-1[data-v-ee3d2806] {
|
|
1090
1090
|
padding: 10px 0;
|
|
1091
1091
|
}
|
|
1092
|
-
.composition-panel .property.property.property.property--level-0[data-v-
|
|
1092
|
+
.composition-panel .property.property.property.property--level-0[data-v-ee3d2806] {
|
|
1093
1093
|
padding: 0px;
|
|
1094
1094
|
}
|
|
1095
1095
|
.property--compact.property--level-0
|
|
1096
1096
|
.composition-panel
|
|
1097
|
-
.property--compact.property--level-1[data-v-
|
|
1097
|
+
.property--compact.property--level-1[data-v-ee3d2806] {
|
|
1098
1098
|
padding: 8px;
|
|
1099
1099
|
}
|
|
1100
1100
|
|
|
1101
1101
|
/* if a property doesn't have a heading, remove the top padding */
|
|
1102
|
-
.property[data-v-
|
|
1102
|
+
.property[data-v-ee3d2806]:has(> .property-rule:nth-of-type(1)):not(.property--compact) {
|
|
1103
1103
|
padding-top: 8px;
|
|
1104
1104
|
padding-bottom: 8px;
|
|
1105
1105
|
}
|
|
1106
|
-
.property--deprecated[data-v-
|
|
1106
|
+
.property--deprecated[data-v-ee3d2806] {
|
|
1107
1107
|
background: repeating-linear-gradient(
|
|
1108
1108
|
-45deg,
|
|
1109
1109
|
var(--scalar-background-2) 0,
|
|
@@ -1113,46 +1113,49 @@ code.property-detail-value[data-v-1295f965] {
|
|
|
1113
1113
|
);
|
|
1114
1114
|
background-size: 100%;
|
|
1115
1115
|
}
|
|
1116
|
-
.property--deprecated[data-v-
|
|
1116
|
+
.property--deprecated[data-v-ee3d2806] > * {
|
|
1117
1117
|
opacity: 0.75;
|
|
1118
1118
|
}
|
|
1119
|
-
.property-description[data-v-
|
|
1119
|
+
.property-description[data-v-ee3d2806] {
|
|
1120
1120
|
margin-top: 6px;
|
|
1121
1121
|
line-height: 1.4;
|
|
1122
1122
|
font-size: var(--scalar-small);
|
|
1123
1123
|
}
|
|
1124
|
-
.property-description[data-v-
|
|
1124
|
+
.property-description[data-v-ee3d2806]:has(+ .property-rule) {
|
|
1125
1125
|
margin-bottom: 9px;
|
|
1126
1126
|
}
|
|
1127
|
-
[data-v-
|
|
1127
|
+
[data-v-ee3d2806] .property-description * {
|
|
1128
1128
|
color: var(--scalar-color-2) !important;
|
|
1129
1129
|
}
|
|
1130
|
-
.property[data-v-
|
|
1130
|
+
.property[data-v-ee3d2806]:not(:last-of-type) {
|
|
1131
1131
|
border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
1132
1132
|
}
|
|
1133
|
-
.property-description + .children[data-v-
|
|
1134
|
-
.children + .property-rule[data-v-
|
|
1133
|
+
.property-description + .children[data-v-ee3d2806],
|
|
1134
|
+
.children + .property-rule[data-v-ee3d2806] {
|
|
1135
1135
|
margin-top: 9px;
|
|
1136
1136
|
}
|
|
1137
|
-
.children[data-v-
|
|
1137
|
+
.children[data-v-ee3d2806] {
|
|
1138
1138
|
display: flex;
|
|
1139
1139
|
flex-direction: column;
|
|
1140
1140
|
}
|
|
1141
|
-
.children .property--compact.property--level-1[data-v-
|
|
1141
|
+
.children .property--compact.property--level-1[data-v-ee3d2806] {
|
|
1142
1142
|
padding: 12px;
|
|
1143
1143
|
}
|
|
1144
|
-
.property-example-value[data-v-
|
|
1144
|
+
.property-example-value[data-v-ee3d2806] {
|
|
1145
1145
|
all: unset;
|
|
1146
1146
|
font-family: var(--scalar-font-code);
|
|
1147
1147
|
padding: 6px;
|
|
1148
1148
|
border-top: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
1149
1149
|
}
|
|
1150
|
-
.property-rule[data-v-
|
|
1150
|
+
.property-rule[data-v-ee3d2806] {
|
|
1151
1151
|
border-radius: var(--scalar-radius-lg);
|
|
1152
1152
|
display: flex;
|
|
1153
1153
|
flex-direction: column;
|
|
1154
1154
|
}
|
|
1155
|
-
.property-
|
|
1155
|
+
.property--level-2[data-v-ee3d2806] .relative > button {
|
|
1156
|
+
left: -2rem;
|
|
1157
|
+
}
|
|
1158
|
+
.property-rule[data-v-ee3d2806]
|
|
1156
1159
|
|
|
1157
1160
|
.composition-panel
|
|
1158
1161
|
.schema-card--level-1
|
|
@@ -1160,7 +1163,7 @@ code.property-detail-value[data-v-1295f965] {
|
|
|
1160
1163
|
{
|
|
1161
1164
|
border-radius: 0 0 var(--scalar-radius-lg) var(--scalar-radius-lg);
|
|
1162
1165
|
}
|
|
1163
|
-
.property-rule[data-v-
|
|
1166
|
+
.property-rule[data-v-ee3d2806]
|
|
1164
1167
|
.composition-panel > .schema-card > .schema-card-description {
|
|
1165
1168
|
padding: 10px;
|
|
1166
1169
|
border-left: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
@@ -1169,29 +1172,29 @@ code.property-detail-value[data-v-1295f965] {
|
|
|
1169
1172
|
margin-top: 0;
|
|
1170
1173
|
}
|
|
1171
1174
|
}
|
|
1172
|
-
.property-example[data-v-
|
|
1175
|
+
.property-example[data-v-ee3d2806] {
|
|
1173
1176
|
background: transparent;
|
|
1174
1177
|
border: none;
|
|
1175
1178
|
display: flex;
|
|
1176
1179
|
flex-direction: row;
|
|
1177
1180
|
gap: 8px;
|
|
1178
1181
|
}
|
|
1179
|
-
.property-example-label[data-v-
|
|
1180
|
-
.property-example-value[data-v-
|
|
1182
|
+
.property-example-label[data-v-ee3d2806],
|
|
1183
|
+
.property-example-value[data-v-ee3d2806] {
|
|
1181
1184
|
padding: 3px 0 0 0;
|
|
1182
1185
|
}
|
|
1183
|
-
.property-example-value[data-v-
|
|
1186
|
+
.property-example-value[data-v-ee3d2806] {
|
|
1184
1187
|
background: var(--scalar-background-2);
|
|
1185
1188
|
border-top: 0;
|
|
1186
1189
|
border-radius: var(--scalar-radius);
|
|
1187
1190
|
padding: 3px 4px;
|
|
1188
1191
|
}
|
|
1189
|
-
.property-name[data-v-
|
|
1192
|
+
.property-name[data-v-ee3d2806] {
|
|
1190
1193
|
font-family: var(--scalar-font-code);
|
|
1191
1194
|
font-weight: var(--scalar-semibold);
|
|
1192
1195
|
}
|
|
1193
|
-
.property-name-additional-properties[data-v-
|
|
1194
|
-
.property-name-pattern-properties[data-v-
|
|
1196
|
+
.property-name-additional-properties[data-v-ee3d2806]::before,
|
|
1197
|
+
.property-name-pattern-properties[data-v-ee3d2806]::before {
|
|
1195
1198
|
text-transform: uppercase;
|
|
1196
1199
|
font-size: var(--scalar-micro);
|
|
1197
1200
|
display: inline-block;
|
|
@@ -1202,11 +1205,11 @@ code.property-detail-value[data-v-1295f965] {
|
|
|
1202
1205
|
background-color: var(--scalar-background-2);
|
|
1203
1206
|
margin-right: 4px;
|
|
1204
1207
|
}
|
|
1205
|
-
.property-name-pattern-properties[data-v-
|
|
1208
|
+
.property-name-pattern-properties[data-v-ee3d2806]::before {
|
|
1206
1209
|
content: 'regex';
|
|
1207
1210
|
}
|
|
1208
|
-
.property-name-additional-properties[data-v-
|
|
1209
|
-
.property-name-pattern-properties[data-v-
|
|
1211
|
+
.property-name-additional-properties[data-v-ee3d2806],
|
|
1212
|
+
.property-name-pattern-properties[data-v-ee3d2806] {
|
|
1210
1213
|
border: 1px dashed var(--scalar-border-color);
|
|
1211
1214
|
color: var(--scalar-color-accent);
|
|
1212
1215
|
display: inline-block;
|
|
@@ -1679,10 +1682,10 @@ button.headers-card-title[data-v-ab19704d]:hover {
|
|
|
1679
1682
|
border-radius: var(--scalar-radius);
|
|
1680
1683
|
}
|
|
1681
1684
|
|
|
1682
|
-
.request-body[data-v-
|
|
1685
|
+
.request-body[data-v-86d21430] {
|
|
1683
1686
|
margin-top: 24px;
|
|
1684
1687
|
}
|
|
1685
|
-
.request-body-header[data-v-
|
|
1688
|
+
.request-body-header[data-v-86d21430] {
|
|
1686
1689
|
display: flex;
|
|
1687
1690
|
align-items: center;
|
|
1688
1691
|
justify-content: space-between;
|
|
@@ -1690,7 +1693,7 @@ button.headers-card-title[data-v-ab19704d]:hover {
|
|
|
1690
1693
|
border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
1691
1694
|
flex-flow: wrap;
|
|
1692
1695
|
}
|
|
1693
|
-
.request-body-title[data-v-
|
|
1696
|
+
.request-body-title[data-v-86d21430] {
|
|
1694
1697
|
display: flex;
|
|
1695
1698
|
align-items: center;
|
|
1696
1699
|
gap: 8px;
|
|
@@ -1698,7 +1701,7 @@ button.headers-card-title[data-v-ab19704d]:hover {
|
|
|
1698
1701
|
font-weight: var(--scalar-semibold);
|
|
1699
1702
|
color: var(--scalar-color-1);
|
|
1700
1703
|
}
|
|
1701
|
-
.request-body-required[data-v-
|
|
1704
|
+
.request-body-required[data-v-86d21430] {
|
|
1702
1705
|
font-size: var(--scalar-micro);
|
|
1703
1706
|
color: var(--scalar-color-orange);
|
|
1704
1707
|
font-weight: normal;
|
|
@@ -1707,21 +1710,21 @@ button.headers-card-title[data-v-ab19704d]:hover {
|
|
|
1707
1710
|
padding: 2px 8px;
|
|
1708
1711
|
height: 20px;
|
|
1709
1712
|
}
|
|
1710
|
-
.request-body-description[data-v-
|
|
1713
|
+
.request-body-description[data-v-86d21430] {
|
|
1711
1714
|
margin-top: 6px;
|
|
1712
1715
|
font-size: var(--scalar-small);
|
|
1713
1716
|
width: 100%;
|
|
1714
1717
|
}
|
|
1715
1718
|
.request-body-header
|
|
1716
|
-
+ .request-body-schema[data-v-
|
|
1719
|
+
+ .request-body-schema[data-v-86d21430]:has(> .schema-card > .schema-card-description),
|
|
1717
1720
|
.request-body-header
|
|
1718
|
-
+ .request-body-schema[data-v-
|
|
1721
|
+
+ .request-body-schema[data-v-86d21430]:has(
|
|
1719
1722
|
> .schema-card > .schema-properties > * > .property--level-0
|
|
1720
1723
|
) {
|
|
1721
1724
|
/** Add a bit of space between the heading border and the schema description or properties */
|
|
1722
1725
|
padding-top: 8px;
|
|
1723
1726
|
}
|
|
1724
|
-
.request-body-description[data-v-
|
|
1727
|
+
.request-body-description[data-v-86d21430] .markdown * {
|
|
1725
1728
|
color: var(--scalar-color-2) !important;
|
|
1726
1729
|
}
|
|
1727
1730
|
|
|
@@ -2074,11 +2077,11 @@ button.headers-card-title[data-v-ab19704d]:hover {
|
|
|
2074
2077
|
margin-right: 4px;
|
|
2075
2078
|
}
|
|
2076
2079
|
/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
|
|
2077
|
-
.operation-title[data-v-
|
|
2080
|
+
.operation-title[data-v-85ee673b] {
|
|
2078
2081
|
justify-content: space-between;
|
|
2079
2082
|
display: flex;
|
|
2080
2083
|
}
|
|
2081
|
-
.operation-details[data-v-
|
|
2084
|
+
.operation-details[data-v-85ee673b] {
|
|
2082
2085
|
flex-shrink: 1;
|
|
2083
2086
|
align-items: center;
|
|
2084
2087
|
gap: 9px;
|
|
@@ -2086,11 +2089,11 @@ button.headers-card-title[data-v-ab19704d]:hover {
|
|
|
2086
2089
|
margin-top: 0;
|
|
2087
2090
|
display: flex;
|
|
2088
2091
|
}
|
|
2089
|
-
.operation-details[data-v-
|
|
2092
|
+
.operation-details[data-v-85ee673b] .endpoint-anchor .scalar-button svg {
|
|
2090
2093
|
width: 16px;
|
|
2091
2094
|
height: 16px;
|
|
2092
2095
|
}
|
|
2093
|
-
.endpoint-type[data-v-
|
|
2096
|
+
.endpoint-type[data-v-85ee673b] {
|
|
2094
2097
|
z-index: 0;
|
|
2095
2098
|
width: 60px;
|
|
2096
2099
|
font-size: var(--scalar-small);
|
|
@@ -2105,7 +2108,7 @@ button.headers-card-title[data-v-ab19704d]:hover {
|
|
|
2105
2108
|
display: flex;
|
|
2106
2109
|
position: relative;
|
|
2107
2110
|
}
|
|
2108
|
-
.endpoint-type[data-v-
|
|
2111
|
+
.endpoint-type[data-v-85ee673b]:after {
|
|
2109
2112
|
content: "";
|
|
2110
2113
|
z-index: -1;
|
|
2111
2114
|
opacity: .15;
|
|
@@ -2114,16 +2117,16 @@ button.headers-card-title[data-v-ab19704d]:hover {
|
|
|
2114
2117
|
position: absolute;
|
|
2115
2118
|
inset: 0;
|
|
2116
2119
|
}
|
|
2117
|
-
.endpoint-anchor[data-v-
|
|
2120
|
+
.endpoint-anchor[data-v-85ee673b] {
|
|
2118
2121
|
flex-shrink: 1;
|
|
2119
2122
|
align-items: center;
|
|
2120
2123
|
min-width: 0;
|
|
2121
2124
|
display: flex;
|
|
2122
2125
|
}
|
|
2123
|
-
.endpoint-anchor.label[data-v-
|
|
2126
|
+
.endpoint-anchor.label[data-v-85ee673b] {
|
|
2124
2127
|
display: flex;
|
|
2125
2128
|
}
|
|
2126
|
-
.endpoint-label[data-v-
|
|
2129
|
+
.endpoint-label[data-v-85ee673b] {
|
|
2127
2130
|
min-width: 0;
|
|
2128
2131
|
color: var(--scalar-color-1);
|
|
2129
2132
|
flex-shrink: 1;
|
|
@@ -2131,17 +2134,17 @@ button.headers-card-title[data-v-ab19704d]:hover {
|
|
|
2131
2134
|
gap: 9px;
|
|
2132
2135
|
display: flex;
|
|
2133
2136
|
}
|
|
2134
|
-
.endpoint-label-path[data-v-
|
|
2137
|
+
.endpoint-label-path[data-v-85ee673b] {
|
|
2135
2138
|
font-family: var(--scalar-font-code);
|
|
2136
2139
|
font-size: var(--scalar-mini);
|
|
2137
2140
|
text-overflow: ellipsis;
|
|
2138
2141
|
white-space: nowrap;
|
|
2139
2142
|
overflow: hidden;
|
|
2140
2143
|
}
|
|
2141
|
-
.endpoint-label-path[data-v-
|
|
2144
|
+
.endpoint-label-path[data-v-85ee673b] em {
|
|
2142
2145
|
color: var(--scalar-color-2);
|
|
2143
2146
|
}
|
|
2144
|
-
.endpoint-label-name[data-v-
|
|
2147
|
+
.endpoint-label-name[data-v-85ee673b] {
|
|
2145
2148
|
color: var(--scalar-color-2);
|
|
2146
2149
|
font-size: var(--scalar-small);
|
|
2147
2150
|
text-overflow: ellipsis;
|
|
@@ -2149,17 +2152,17 @@ button.headers-card-title[data-v-ab19704d]:hover {
|
|
|
2149
2152
|
flex-shrink: 1000000000;
|
|
2150
2153
|
overflow: hidden;
|
|
2151
2154
|
}
|
|
2152
|
-
.endpoint-try-hint[data-v-
|
|
2155
|
+
.endpoint-try-hint[data-v-85ee673b] {
|
|
2153
2156
|
flex-shrink: 0;
|
|
2154
2157
|
padding: 2px;
|
|
2155
2158
|
}
|
|
2156
|
-
.endpoint-copy[data-v-
|
|
2159
|
+
.endpoint-copy[data-v-85ee673b] {
|
|
2157
2160
|
color: currentColor;
|
|
2158
2161
|
}
|
|
2159
|
-
.endpoint-copy[data-v-
|
|
2162
|
+
.endpoint-copy[data-v-85ee673b] svg {
|
|
2160
2163
|
stroke-width: 2px;
|
|
2161
2164
|
}
|
|
2162
|
-
.endpoint-content[data-v-
|
|
2165
|
+
.endpoint-content[data-v-85ee673b] {
|
|
2163
2166
|
grid-auto-columns: 1fr;
|
|
2164
2167
|
grid-auto-flow: row;
|
|
2165
2168
|
gap: 9px;
|
|
@@ -2167,52 +2170,52 @@ button.headers-card-title[data-v-ab19704d]:hover {
|
|
|
2167
2170
|
display: grid;
|
|
2168
2171
|
}
|
|
2169
2172
|
@media (min-width: 1000px) {
|
|
2170
|
-
.endpoint-content[data-v-
|
|
2173
|
+
.endpoint-content[data-v-85ee673b] {
|
|
2171
2174
|
grid-auto-flow: column;
|
|
2172
2175
|
}
|
|
2173
2176
|
}
|
|
2174
2177
|
@container (max-width: 900px) {
|
|
2175
|
-
.endpoint-content[data-v-
|
|
2178
|
+
.endpoint-content[data-v-85ee673b] {
|
|
2176
2179
|
grid-template-columns: 1fr;
|
|
2177
2180
|
}
|
|
2178
2181
|
}
|
|
2179
|
-
.endpoint-content[data-v-
|
|
2182
|
+
.endpoint-content[data-v-85ee673b] > * {
|
|
2180
2183
|
min-width: 0;
|
|
2181
2184
|
}
|
|
2182
|
-
.operation-details-card[data-v-
|
|
2185
|
+
.operation-details-card[data-v-85ee673b] {
|
|
2183
2186
|
flex-direction: column;
|
|
2184
2187
|
gap: 12px;
|
|
2185
2188
|
min-width: 0;
|
|
2186
2189
|
display: flex;
|
|
2187
2190
|
}
|
|
2188
|
-
:is(.operation-details-card-item[data-v-
|
|
2191
|
+
:is(.operation-details-card-item[data-v-85ee673b] .parameter-list, .operation-details-card-item[data-v-85ee673b] .callbacks-list) {
|
|
2189
2192
|
border: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
2190
2193
|
border-radius: var(--scalar-radius-lg);
|
|
2191
2194
|
margin-top: 0;
|
|
2192
2195
|
}
|
|
2193
|
-
.operation-details-card-item[data-v-
|
|
2196
|
+
.operation-details-card-item[data-v-85ee673b] {
|
|
2194
2197
|
flex-direction: column;
|
|
2195
2198
|
gap: 12px;
|
|
2196
2199
|
display: flex;
|
|
2197
2200
|
}
|
|
2198
|
-
.operation-details-card-item[data-v-
|
|
2201
|
+
.operation-details-card-item[data-v-85ee673b] .parameter-list-items {
|
|
2199
2202
|
margin-bottom: 0;
|
|
2200
2203
|
}
|
|
2201
|
-
.operation-details-card[data-v-
|
|
2204
|
+
.operation-details-card[data-v-85ee673b] .parameter-item:last-of-type .parameter-schema {
|
|
2202
2205
|
padding-bottom: 12px;
|
|
2203
2206
|
}
|
|
2204
|
-
.operation-details-card[data-v-
|
|
2207
|
+
.operation-details-card[data-v-85ee673b] .parameter-list .parameter-list {
|
|
2205
2208
|
margin-bottom: 12px;
|
|
2206
2209
|
}
|
|
2207
|
-
.operation-details-card[data-v-
|
|
2210
|
+
.operation-details-card[data-v-85ee673b] .parameter-item {
|
|
2208
2211
|
margin: 0;
|
|
2209
2212
|
padding: 0;
|
|
2210
2213
|
}
|
|
2211
|
-
.operation-details-card[data-v-
|
|
2214
|
+
.operation-details-card[data-v-85ee673b] .property {
|
|
2212
2215
|
margin: 0;
|
|
2213
2216
|
padding: 9px;
|
|
2214
2217
|
}
|
|
2215
|
-
:is(.operation-details-card[data-v-
|
|
2218
|
+
:is(.operation-details-card[data-v-85ee673b] .parameter-list-title, .operation-details-card[data-v-85ee673b] .request-body-title, .operation-details-card[data-v-85ee673b] .callbacks-title) {
|
|
2216
2219
|
text-transform: uppercase;
|
|
2217
2220
|
font-weight: var(--scalar-bold);
|
|
2218
2221
|
font-size: var(--scalar-mini);
|
|
@@ -2221,61 +2224,61 @@ button.headers-card-title[data-v-ab19704d]:hover {
|
|
|
2221
2224
|
padding: 9px;
|
|
2222
2225
|
line-height: 1.33;
|
|
2223
2226
|
}
|
|
2224
|
-
.operation-details-card[data-v-
|
|
2227
|
+
.operation-details-card[data-v-85ee673b] .callback-list-item-title {
|
|
2225
2228
|
padding-left: 28px;
|
|
2226
2229
|
padding-right: 12px;
|
|
2227
2230
|
}
|
|
2228
|
-
.operation-details-card[data-v-
|
|
2231
|
+
.operation-details-card[data-v-85ee673b] .callback-list-item-icon {
|
|
2229
2232
|
left: 6px;
|
|
2230
2233
|
}
|
|
2231
|
-
.operation-details-card[data-v-
|
|
2234
|
+
.operation-details-card[data-v-85ee673b] .callback-operation-container {
|
|
2232
2235
|
padding-inline: 9px;
|
|
2233
2236
|
padding-bottom: 9px;
|
|
2234
2237
|
}
|
|
2235
|
-
:is(.operation-details-card[data-v-
|
|
2238
|
+
:is(.operation-details-card[data-v-85ee673b] .callback-operation-container > .request-body, .operation-details-card[data-v-85ee673b] .callback-operation-container > .parameter-list) {
|
|
2236
2239
|
border: none;
|
|
2237
2240
|
}
|
|
2238
|
-
.operation-details-card[data-v-
|
|
2241
|
+
.operation-details-card[data-v-85ee673b] .callback-operation-container > .request-body > .request-body-header {
|
|
2239
2242
|
border-bottom: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
2240
2243
|
padding: 0 0 9px;
|
|
2241
2244
|
}
|
|
2242
|
-
.operation-details-card[data-v-
|
|
2245
|
+
.operation-details-card[data-v-85ee673b] .request-body-description {
|
|
2243
2246
|
border-top: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
2244
2247
|
margin-top: 0;
|
|
2245
2248
|
padding: 9px 9px 0;
|
|
2246
2249
|
}
|
|
2247
|
-
.operation-details-card[data-v-
|
|
2250
|
+
.operation-details-card[data-v-85ee673b] .request-body {
|
|
2248
2251
|
border-radius: var(--scalar-radius-lg);
|
|
2249
2252
|
border: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
2250
2253
|
margin-top: 0;
|
|
2251
2254
|
}
|
|
2252
|
-
.operation-details-card[data-v-
|
|
2255
|
+
.operation-details-card[data-v-85ee673b] .request-body .schema-card--level-0 > .schema-card-description {
|
|
2253
2256
|
padding-inline: 9px;
|
|
2254
2257
|
}
|
|
2255
|
-
.operation-details-card[data-v-
|
|
2258
|
+
.operation-details-card[data-v-85ee673b] .request-body-header {
|
|
2256
2259
|
border-bottom: 0;
|
|
2257
2260
|
padding-bottom: 0;
|
|
2258
2261
|
}
|
|
2259
|
-
.operation-details-card[data-v-
|
|
2262
|
+
.operation-details-card[data-v-85ee673b] .contents button {
|
|
2260
2263
|
margin-right: 9px;
|
|
2261
2264
|
}
|
|
2262
|
-
.operation-details-card[data-v-
|
|
2265
|
+
.operation-details-card[data-v-85ee673b] .schema-card--open + .schema-card:not(.schema-card--open) {
|
|
2263
2266
|
margin-inline: 9px;
|
|
2264
2267
|
margin-bottom: 9px;
|
|
2265
2268
|
}
|
|
2266
|
-
.operation-details-card[data-v-
|
|
2269
|
+
.operation-details-card[data-v-85ee673b] .request-body-schema .property--level-0 {
|
|
2267
2270
|
padding: 0;
|
|
2268
2271
|
}
|
|
2269
|
-
.operation-details-card[data-v-
|
|
2272
|
+
.operation-details-card[data-v-85ee673b] .selected-content-type {
|
|
2270
2273
|
margin-right: 9px;
|
|
2271
2274
|
}
|
|
2272
|
-
.operation-example-card[data-v-
|
|
2275
|
+
.operation-example-card[data-v-85ee673b] {
|
|
2273
2276
|
top: calc(var(--refs-viewport-offset) + 24px);
|
|
2274
2277
|
max-height: calc(var(--refs-viewport-height) - 48px);
|
|
2275
2278
|
position: sticky;
|
|
2276
2279
|
}
|
|
2277
2280
|
@media (max-width: 600px) {
|
|
2278
|
-
.operation-example-card[data-v-
|
|
2281
|
+
.operation-example-card[data-v-85ee673b] {
|
|
2279
2282
|
max-height: unset;
|
|
2280
2283
|
position: static;
|
|
2281
2284
|
}
|
|
@@ -2367,15 +2370,15 @@ button.headers-card-title[data-v-ab19704d]:hover {
|
|
|
2367
2370
|
background: color-mix(in srgb, var(--scalar-color-blue), transparent 10%);
|
|
2368
2371
|
}
|
|
2369
2372
|
|
|
2370
|
-
.examples[data-v-
|
|
2373
|
+
.examples[data-v-e96cd75a] {
|
|
2371
2374
|
position: sticky;
|
|
2372
2375
|
top: calc(var(--refs-viewport-offset) + 24px);
|
|
2373
2376
|
}
|
|
2374
|
-
.examples[data-v-
|
|
2377
|
+
.examples[data-v-e96cd75a] > * {
|
|
2375
2378
|
max-height: calc((var(--refs-viewport-height) - 60px) / 2);
|
|
2376
2379
|
position: relative;
|
|
2377
2380
|
}
|
|
2378
|
-
.examples[data-v-
|
|
2381
|
+
.examples[data-v-e96cd75a] > *:first-of-type:last-of-type {
|
|
2379
2382
|
max-height: calc((var(--refs-viewport-height) - 60px));
|
|
2380
2383
|
}
|
|
2381
2384
|
|
|
@@ -2384,15 +2387,16 @@ button.headers-card-title[data-v-ab19704d]:hover {
|
|
|
2384
2387
|
* (or zoomed in screens)
|
|
2385
2388
|
*/
|
|
2386
2389
|
@media (max-width: 600px) {
|
|
2387
|
-
.examples[data-v-
|
|
2390
|
+
.examples[data-v-e96cd75a] > * {
|
|
2388
2391
|
max-height: unset;
|
|
2389
2392
|
}
|
|
2390
2393
|
}
|
|
2391
|
-
.deprecated[data-v-
|
|
2394
|
+
.deprecated[data-v-e96cd75a] * {
|
|
2392
2395
|
text-decoration: line-through;
|
|
2393
2396
|
}
|
|
2394
2397
|
|
|
2395
|
-
.section-flare[data-v-
|
|
2398
|
+
.section-flare[data-v-5cebff7a] {
|
|
2399
|
+
position: fixed;
|
|
2396
2400
|
top: 0;
|
|
2397
2401
|
right: 0;
|
|
2398
2402
|
pointer-events: none;
|
|
@@ -5820,8 +5824,8 @@ to {
|
|
|
5820
5824
|
.scalar-app .left-2\.5 {
|
|
5821
5825
|
left: 10px;
|
|
5822
5826
|
}
|
|
5823
|
-
.scalar-app .left-
|
|
5824
|
-
left:
|
|
5827
|
+
.scalar-app .left-3 {
|
|
5828
|
+
left: 12px;
|
|
5825
5829
|
}
|
|
5826
5830
|
.scalar-app .left-border {
|
|
5827
5831
|
left: var(--scalar-border-width);
|
|
@@ -6836,6 +6840,9 @@ to {
|
|
|
6836
6840
|
.scalar-app .top-4 {
|
|
6837
6841
|
top: 16px;
|
|
6838
6842
|
}
|
|
6843
|
+
.scalar-app .top-14 {
|
|
6844
|
+
top: 56px;
|
|
6845
|
+
}
|
|
6839
6846
|
.scalar-app .top-\[calc\(100\%\+4px\)\] {
|
|
6840
6847
|
top: calc(100% + 4px);
|
|
6841
6848
|
}
|
|
@@ -6881,8 +6888,8 @@ to {
|
|
|
6881
6888
|
.scalar-app .left-2 {
|
|
6882
6889
|
left: 8px;
|
|
6883
6890
|
}
|
|
6884
|
-
.scalar-app .left-
|
|
6885
|
-
left:
|
|
6891
|
+
.scalar-app .left-4 {
|
|
6892
|
+
left: 16px;
|
|
6886
6893
|
}
|
|
6887
6894
|
.scalar-app .-z-1 {
|
|
6888
6895
|
z-index: calc(1 * -1);
|
|
@@ -6893,21 +6900,18 @@ to {
|
|
|
6893
6900
|
.scalar-app .z-1 {
|
|
6894
6901
|
z-index: 1;
|
|
6895
6902
|
}
|
|
6896
|
-
.scalar-app .z-2 {
|
|
6897
|
-
z-index: 2;
|
|
6898
|
-
}
|
|
6899
6903
|
.scalar-app .z-10 {
|
|
6900
6904
|
z-index: 10;
|
|
6901
6905
|
}
|
|
6902
6906
|
.scalar-app .z-50 {
|
|
6903
6907
|
z-index: 50;
|
|
6904
6908
|
}
|
|
6909
|
+
.scalar-app .z-60 {
|
|
6910
|
+
z-index: 60;
|
|
6911
|
+
}
|
|
6905
6912
|
.scalar-app .z-\[1\] {
|
|
6906
6913
|
z-index: 1;
|
|
6907
6914
|
}
|
|
6908
|
-
.scalar-app .z-\[60\] {
|
|
6909
|
-
z-index: 60;
|
|
6910
|
-
}
|
|
6911
6915
|
.scalar-app .z-context {
|
|
6912
6916
|
z-index: 1000;
|
|
6913
6917
|
}
|
|
@@ -7249,6 +7253,9 @@ to {
|
|
|
7249
7253
|
.scalar-app .h-full {
|
|
7250
7254
|
height: 100%;
|
|
7251
7255
|
}
|
|
7256
|
+
.scalar-app .h-header {
|
|
7257
|
+
height: 48px;
|
|
7258
|
+
}
|
|
7252
7259
|
.scalar-app .h-min {
|
|
7253
7260
|
height: min-content;
|
|
7254
7261
|
}
|
|
@@ -9112,15 +9119,18 @@ to {
|
|
|
9112
9119
|
.scalar-app .max-md\:absolute\! {
|
|
9113
9120
|
position: absolute !important;
|
|
9114
9121
|
}
|
|
9115
|
-
.scalar-app .max-md\:fixed\! {
|
|
9116
|
-
position: fixed !important;
|
|
9117
|
-
}
|
|
9118
9122
|
.scalar-app .max-md\:inset-y-0 {
|
|
9119
9123
|
inset-block: 0;
|
|
9120
9124
|
}
|
|
9125
|
+
.scalar-app .max-md\:top-4 {
|
|
9126
|
+
top: 16px;
|
|
9127
|
+
}
|
|
9121
9128
|
.scalar-app .max-md\:z-2 {
|
|
9122
9129
|
z-index: 2;
|
|
9123
9130
|
}
|
|
9131
|
+
.scalar-app .max-md\:z-5 {
|
|
9132
|
+
z-index: 5;
|
|
9133
|
+
}
|
|
9124
9134
|
.scalar-app .max-md\:flex\! {
|
|
9125
9135
|
display: flex !important;
|
|
9126
9136
|
}
|
|
@@ -9130,9 +9140,21 @@ to {
|
|
|
9130
9140
|
.scalar-app .max-md\:w-full\! {
|
|
9131
9141
|
width: 100% !important;
|
|
9132
9142
|
}
|
|
9143
|
+
.scalar-app .max-md\:pt-2 {
|
|
9144
|
+
padding-top: 8px;
|
|
9145
|
+
}
|
|
9133
9146
|
.scalar-app .max-md\:pt-12 {
|
|
9134
9147
|
padding-top: 48px;
|
|
9135
9148
|
}
|
|
9149
|
+
.scalar-app .max-md\:pl-4\! {
|
|
9150
|
+
padding-left: 16px !important;
|
|
9151
|
+
}
|
|
9152
|
+
.scalar-app .max-md\:pl-10 {
|
|
9153
|
+
padding-left: 40px;
|
|
9154
|
+
}
|
|
9155
|
+
.scalar-app .max-md\:pl-14 {
|
|
9156
|
+
padding-left: 56px;
|
|
9157
|
+
}
|
|
9136
9158
|
}
|
|
9137
9159
|
@media (min-width: 600px) {
|
|
9138
9160
|
.scalar-app .sm\:not-sr-only {
|
|
@@ -9427,22 +9449,22 @@ to {
|
|
|
9427
9449
|
.address-bar-history-button[data-v-2cc840c9]:focus-within {
|
|
9428
9450
|
background: var(--scalar-background-2);
|
|
9429
9451
|
}
|
|
9430
|
-
[data-v-
|
|
9452
|
+
[data-v-6499ec1f] .cm-editor {
|
|
9431
9453
|
background: none;
|
|
9432
9454
|
outline: none;
|
|
9433
9455
|
height: 100%;
|
|
9434
9456
|
padding: 0;
|
|
9435
9457
|
}
|
|
9436
|
-
[data-v-
|
|
9458
|
+
[data-v-6499ec1f] .cm-placeholder {
|
|
9437
9459
|
color: var(--scalar-color-3);
|
|
9438
9460
|
}
|
|
9439
|
-
[data-v-
|
|
9461
|
+
[data-v-6499ec1f] .cm-content {
|
|
9440
9462
|
font-family: var(--scalar-font-code);
|
|
9441
9463
|
font-size: var(--scalar-small);
|
|
9442
9464
|
max-height: 20px;
|
|
9443
9465
|
padding: 8px 0;
|
|
9444
9466
|
}
|
|
9445
|
-
[data-v-
|
|
9467
|
+
[data-v-6499ec1f] .cm-tooltip {
|
|
9446
9468
|
filter: brightness(var(--scalar-lifted-brightness));
|
|
9447
9469
|
border-radius: var(--scalar-radius);
|
|
9448
9470
|
box-shadow: var(--scalar-shadow-2);
|
|
@@ -9451,39 +9473,39 @@ to {
|
|
|
9451
9473
|
outline: none !important;
|
|
9452
9474
|
overflow: hidden !important;
|
|
9453
9475
|
}
|
|
9454
|
-
[data-v-
|
|
9476
|
+
[data-v-6499ec1f] .cm-tooltip-autocomplete ul li {
|
|
9455
9477
|
padding: 3px 6px !important;
|
|
9456
9478
|
}
|
|
9457
|
-
[data-v-
|
|
9479
|
+
[data-v-6499ec1f] .cm-completionIcon-type:after {
|
|
9458
9480
|
color: var(--scalar-color-3) !important;
|
|
9459
9481
|
}
|
|
9460
|
-
[data-v-
|
|
9482
|
+
[data-v-6499ec1f] .cm-tooltip-autocomplete ul li[aria-selected] {
|
|
9461
9483
|
background: var(--scalar-background-2) !important;
|
|
9462
9484
|
color: var(--scalar-color-1) !important;
|
|
9463
9485
|
}
|
|
9464
|
-
[data-v-
|
|
9486
|
+
[data-v-6499ec1f] .cm-tooltip-autocomplete ul {
|
|
9465
9487
|
position: relative;
|
|
9466
9488
|
padding: 6px !important;
|
|
9467
9489
|
}
|
|
9468
|
-
[data-v-
|
|
9490
|
+
[data-v-6499ec1f] .cm-tooltip-autocomplete ul li:hover {
|
|
9469
9491
|
border-radius: 3px;
|
|
9470
9492
|
color: var(--scalar-color-1) !important;
|
|
9471
9493
|
background: var(--scalar-background-3) !important;
|
|
9472
9494
|
}
|
|
9473
|
-
[data-v-
|
|
9495
|
+
[data-v-6499ec1f] .cm-activeLine, [data-v-6499ec1f] .cm-activeLineGutter {
|
|
9474
9496
|
background-color: #0000;
|
|
9475
9497
|
}
|
|
9476
|
-
[data-v-
|
|
9498
|
+
[data-v-6499ec1f] .cm-selectionMatch, [data-v-6499ec1f] .cm-matchingBracket {
|
|
9477
9499
|
border-radius: var(--scalar-radius);
|
|
9478
9500
|
background: var(--scalar-background-4) !important;
|
|
9479
9501
|
}
|
|
9480
|
-
[data-v-
|
|
9502
|
+
[data-v-6499ec1f] .cm-css-color-picker-wrapper {
|
|
9481
9503
|
outline: 1px solid var(--scalar-background-3);
|
|
9482
9504
|
border-radius: 3px;
|
|
9483
9505
|
display: inline-flex;
|
|
9484
9506
|
overflow: hidden;
|
|
9485
9507
|
}
|
|
9486
|
-
[data-v-
|
|
9508
|
+
[data-v-6499ec1f] .cm-gutters {
|
|
9487
9509
|
color: var(--scalar-color-3);
|
|
9488
9510
|
font-size: var(--scalar-small);
|
|
9489
9511
|
background-color: #0000;
|
|
@@ -9491,7 +9513,7 @@ to {
|
|
|
9491
9513
|
border-radius: 0 0 0 3px;
|
|
9492
9514
|
line-height: 22px;
|
|
9493
9515
|
}
|
|
9494
|
-
[data-v-
|
|
9516
|
+
[data-v-6499ec1f] .cm-gutters:before {
|
|
9495
9517
|
content: "";
|
|
9496
9518
|
border-radius: var(--scalar-radius) 0 0 var(--scalar-radius);
|
|
9497
9519
|
background-color: var(--scalar-background-1);
|
|
@@ -9501,7 +9523,7 @@ to {
|
|
|
9501
9523
|
top: 2px;
|
|
9502
9524
|
left: 2px;
|
|
9503
9525
|
}
|
|
9504
|
-
[data-v-
|
|
9526
|
+
[data-v-6499ec1f] .cm-gutterElement {
|
|
9505
9527
|
justify-content: flex-end;
|
|
9506
9528
|
align-items: center;
|
|
9507
9529
|
display: flex;
|
|
@@ -9510,16 +9532,16 @@ to {
|
|
|
9510
9532
|
padding-left: 0 !important;
|
|
9511
9533
|
padding-right: 6px !important;
|
|
9512
9534
|
}
|
|
9513
|
-
[data-v-
|
|
9535
|
+
[data-v-6499ec1f] .cm-lineNumbers .cm-gutterElement {
|
|
9514
9536
|
min-width: fit-content;
|
|
9515
9537
|
}
|
|
9516
|
-
[data-v-
|
|
9538
|
+
[data-v-6499ec1f] .cm-gutter + .cm-gutter :not(.cm-foldGutter) .cm-gutterElement {
|
|
9517
9539
|
padding-left: 0 !important;
|
|
9518
9540
|
}
|
|
9519
|
-
[data-v-
|
|
9541
|
+
[data-v-6499ec1f] .cm-scroller {
|
|
9520
9542
|
overflow: auto;
|
|
9521
9543
|
}
|
|
9522
|
-
.line-wrapping[data-v-
|
|
9544
|
+
.line-wrapping[data-v-6499ec1f]:focus-within .cm-content {
|
|
9523
9545
|
white-space: break-spaces;
|
|
9524
9546
|
word-break: break-all;
|
|
9525
9547
|
min-height: fit-content;
|
|
@@ -9841,7 +9863,7 @@ to {
|
|
|
9841
9863
|
-webkit-mask-image: linear-gradient(to right, transparent 0, var(--scalar-background-2) 20px);
|
|
9842
9864
|
mask-image: linear-gradient(to right, transparent 0, var(--scalar-background-2) 20px);
|
|
9843
9865
|
}
|
|
9844
|
-
[data-v-
|
|
9866
|
+
[data-v-06778e40] .cm-content {
|
|
9845
9867
|
font-size: var(--scalar-small);
|
|
9846
9868
|
}
|
|
9847
9869
|
.form-group[data-v-678c9f4a] {
|
|
@@ -9859,10 +9881,10 @@ to {
|
|
|
9859
9881
|
-ms-overflow-style: none;
|
|
9860
9882
|
scrollbar-width: none;
|
|
9861
9883
|
}
|
|
9862
|
-
[data-v-
|
|
9884
|
+
[data-v-819cea32] .cm-editor {
|
|
9863
9885
|
padding: 0;
|
|
9864
9886
|
}
|
|
9865
|
-
[data-v-
|
|
9887
|
+
[data-v-819cea32] .cm-content {
|
|
9866
9888
|
font-family: var(--scalar-font);
|
|
9867
9889
|
font-size: var(--scalar-small);
|
|
9868
9890
|
background-color: #0000;
|
|
@@ -9871,28 +9893,28 @@ to {
|
|
|
9871
9893
|
padding: 5px 8px;
|
|
9872
9894
|
display: flex;
|
|
9873
9895
|
}
|
|
9874
|
-
[data-v-
|
|
9896
|
+
[data-v-819cea32] .cm-content:has(.cm-pill) {
|
|
9875
9897
|
padding: 5px 8px;
|
|
9876
9898
|
}
|
|
9877
|
-
[data-v-
|
|
9899
|
+
[data-v-819cea32] .cm-content .cm-pill:not(:last-of-type) {
|
|
9878
9900
|
margin-right: .5px;
|
|
9879
9901
|
}
|
|
9880
|
-
[data-v-
|
|
9902
|
+
[data-v-819cea32] .cm-content .cm-pill:not(:first-of-type) {
|
|
9881
9903
|
margin-left: .5px;
|
|
9882
9904
|
}
|
|
9883
|
-
[data-v-
|
|
9905
|
+
[data-v-819cea32] .cm-line {
|
|
9884
9906
|
text-overflow: ellipsis;
|
|
9885
9907
|
word-break: break-word;
|
|
9886
9908
|
padding: 0;
|
|
9887
9909
|
overflow: hidden;
|
|
9888
9910
|
}
|
|
9889
|
-
.required[data-v-
|
|
9911
|
+
.required[data-v-819cea32]:after {
|
|
9890
9912
|
content: "Required";
|
|
9891
9913
|
}
|
|
9892
|
-
input[data-v-
|
|
9914
|
+
input[data-v-819cea32]::placeholder {
|
|
9893
9915
|
color: var(--scalar-color-3);
|
|
9894
9916
|
}
|
|
9895
|
-
.scalar-password-input[data-v-
|
|
9917
|
+
.scalar-password-input[data-v-819cea32] {
|
|
9896
9918
|
text-security: disc;
|
|
9897
9919
|
-webkit-text-security: disc;
|
|
9898
9920
|
-moz-text-security: disc;
|
|
@@ -10039,39 +10061,39 @@ to {
|
|
|
10039
10061
|
transform: translateY(0);
|
|
10040
10062
|
}
|
|
10041
10063
|
}
|
|
10042
|
-
.request-card[data-v-
|
|
10064
|
+
.request-card[data-v-59da314d] {
|
|
10043
10065
|
font-size: var(--scalar-font-size-3);
|
|
10044
10066
|
}
|
|
10045
|
-
.request-method[data-v-
|
|
10067
|
+
.request-method[data-v-59da314d] {
|
|
10046
10068
|
font-family: var(--scalar-font-code);
|
|
10047
10069
|
text-transform: uppercase;
|
|
10048
10070
|
margin-right: 6px;
|
|
10049
10071
|
}
|
|
10050
|
-
.request-card-footer[data-v-
|
|
10072
|
+
.request-card-footer[data-v-59da314d] {
|
|
10051
10073
|
flex-shrink: 0;
|
|
10052
10074
|
justify-content: flex-end;
|
|
10053
10075
|
padding: 6px;
|
|
10054
10076
|
display: flex;
|
|
10055
10077
|
position: relative;
|
|
10056
10078
|
}
|
|
10057
|
-
.request-card-footer-addon[data-v-
|
|
10079
|
+
.request-card-footer-addon[data-v-59da314d] {
|
|
10058
10080
|
flex: 1;
|
|
10059
10081
|
align-items: center;
|
|
10060
10082
|
min-width: 0;
|
|
10061
10083
|
display: flex;
|
|
10062
10084
|
}
|
|
10063
|
-
.request-editor-section[data-v-
|
|
10085
|
+
.request-editor-section[data-v-59da314d] {
|
|
10064
10086
|
flex: 1;
|
|
10065
10087
|
display: flex;
|
|
10066
10088
|
}
|
|
10067
|
-
.request-card-simple[data-v-
|
|
10089
|
+
.request-card-simple[data-v-59da314d] {
|
|
10068
10090
|
font-size: var(--scalar-small);
|
|
10069
10091
|
justify-content: space-between;
|
|
10070
10092
|
align-items: center;
|
|
10071
10093
|
padding: 8px 8px 8px 12px;
|
|
10072
10094
|
display: flex;
|
|
10073
10095
|
}
|
|
10074
|
-
.code-snippet[data-v-
|
|
10096
|
+
.code-snippet[data-v-59da314d] {
|
|
10075
10097
|
flex-direction: column;
|
|
10076
10098
|
width: 100%;
|
|
10077
10099
|
display: flex;
|
|
@@ -10115,27 +10137,27 @@ to {
|
|
|
10115
10137
|
.dark-mode .download-app-button[data-v-9b609275]:hover {
|
|
10116
10138
|
background: linear-gradient(#00000026, #ffffff1a);
|
|
10117
10139
|
}
|
|
10118
|
-
.empty-sidebar-item-content[data-v-
|
|
10140
|
+
.empty-sidebar-item-content[data-v-8269f62b] {
|
|
10119
10141
|
display: none;
|
|
10120
10142
|
}
|
|
10121
|
-
.empty-sidebar-item .empty-sidebar-item-content[data-v-
|
|
10143
|
+
.empty-sidebar-item .empty-sidebar-item-content[data-v-8269f62b] {
|
|
10122
10144
|
display: block;
|
|
10123
10145
|
}
|
|
10124
|
-
.rabbitjump[data-v-
|
|
10146
|
+
.rabbitjump[data-v-8269f62b] {
|
|
10125
10147
|
opacity: 0;
|
|
10126
10148
|
}
|
|
10127
|
-
.empty-sidebar-item:hover .rabbitjump[data-v-
|
|
10149
|
+
.empty-sidebar-item:hover .rabbitjump[data-v-8269f62b] {
|
|
10128
10150
|
opacity: 1;
|
|
10129
|
-
animation: .5s step-end infinite rabbitAnimation-
|
|
10151
|
+
animation: .5s step-end infinite rabbitAnimation-8269f62b;
|
|
10130
10152
|
}
|
|
10131
|
-
.empty-sidebar-item:hover .rabbitsit[data-v-
|
|
10153
|
+
.empty-sidebar-item:hover .rabbitsit[data-v-8269f62b] {
|
|
10132
10154
|
opacity: 0;
|
|
10133
|
-
animation: .5s step-end infinite rabbitAnimation2-
|
|
10155
|
+
animation: .5s step-end infinite rabbitAnimation2-8269f62b;
|
|
10134
10156
|
}
|
|
10135
|
-
.empty-sidebar-item:hover .rabbit-ascii[data-v-
|
|
10136
|
-
animation: 8s linear infinite rabbitRun-
|
|
10157
|
+
.empty-sidebar-item:hover .rabbit-ascii[data-v-8269f62b] {
|
|
10158
|
+
animation: 8s linear infinite rabbitRun-8269f62b;
|
|
10137
10159
|
}
|
|
10138
|
-
@keyframes rabbitRun-
|
|
10160
|
+
@keyframes rabbitRun-8269f62b {
|
|
10139
10161
|
0% {
|
|
10140
10162
|
transform: translate3d(0, 0, 0);
|
|
10141
10163
|
}
|
|
@@ -10155,7 +10177,7 @@ to {
|
|
|
10155
10177
|
transform: translate3d(0, 0, 0);
|
|
10156
10178
|
}
|
|
10157
10179
|
}
|
|
10158
|
-
@keyframes rabbitAnimation-
|
|
10180
|
+
@keyframes rabbitAnimation-8269f62b {
|
|
10159
10181
|
0%, 100% {
|
|
10160
10182
|
opacity: 1;
|
|
10161
10183
|
}
|
|
@@ -10163,7 +10185,7 @@ to {
|
|
|
10163
10185
|
opacity: 0;
|
|
10164
10186
|
}
|
|
10165
10187
|
}
|
|
10166
|
-
@keyframes rabbitAnimation2-
|
|
10188
|
+
@keyframes rabbitAnimation2-8269f62b {
|
|
10167
10189
|
0%, 100% {
|
|
10168
10190
|
opacity: 0;
|
|
10169
10191
|
}
|
|
@@ -10508,15 +10530,15 @@ to {
|
|
|
10508
10530
|
.full-size-styles:has(.sync-conflict-modal-root):after {
|
|
10509
10531
|
display: none;
|
|
10510
10532
|
}
|
|
10511
|
-
.scalar-collection-auth[data-v-
|
|
10533
|
+
.scalar-collection-auth[data-v-d3bc49bd] {
|
|
10512
10534
|
border: var(--scalar-border-width) solid var(--scalar-border-color);
|
|
10513
10535
|
border-radius: var(--scalar-radius-lg);
|
|
10514
10536
|
overflow: hidden;
|
|
10515
10537
|
}
|
|
10516
|
-
[data-v-
|
|
10538
|
+
[data-v-2f13118d] .cm-editor {
|
|
10517
10539
|
padding: 0;
|
|
10518
10540
|
}
|
|
10519
|
-
[data-v-
|
|
10541
|
+
[data-v-2f13118d] .cm-content {
|
|
10520
10542
|
font-family: var(--scalar-font);
|
|
10521
10543
|
font-size: var(--scalar-small);
|
|
10522
10544
|
background-color: #0000;
|
|
@@ -10525,16 +10547,16 @@ to {
|
|
|
10525
10547
|
padding: 5px 8px;
|
|
10526
10548
|
display: flex;
|
|
10527
10549
|
}
|
|
10528
|
-
[data-v-
|
|
10550
|
+
[data-v-2f13118d] .cm-content:has(.cm-pill) {
|
|
10529
10551
|
padding: 5px 8px;
|
|
10530
10552
|
}
|
|
10531
|
-
[data-v-
|
|
10553
|
+
[data-v-2f13118d] .cm-content .cm-pill:not(:last-of-type) {
|
|
10532
10554
|
margin-right: .5px;
|
|
10533
10555
|
}
|
|
10534
|
-
[data-v-
|
|
10556
|
+
[data-v-2f13118d] .cm-content .cm-pill:not(:first-of-type) {
|
|
10535
10557
|
margin-left: .5px;
|
|
10536
10558
|
}
|
|
10537
|
-
[data-v-
|
|
10559
|
+
[data-v-2f13118d] .cm-line {
|
|
10538
10560
|
text-overflow: ellipsis;
|
|
10539
10561
|
padding: 0;
|
|
10540
10562
|
overflow: hidden;
|