Skip to content

Commit 0e9dfe1

Browse files
committed
Merge branch 'main' of github.com:scalar/scalar
2 parents 3531e00 + 3eb8171 commit 0e9dfe1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+583
-1302
lines changed

.changeset/bright-numbers-report.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@scalar/api-reference': patch
3+
---
4+
5+
fix: value in request example code

.changeset/gold-moles-fail.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@scalar/api-reference': patch
3+
'@scalar/api-client': patch
4+
'@scalar/components': patch
5+
---
6+
7+
fix: updates auth description overflowing line clamp

.changeset/healthy-snakes-jump.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@scalar/api-reference': patch
3+
---
4+
5+
refactor: new request example block

.changeset/seven-onions-compete.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@scalar/galaxy': patch
3+
---
4+
5+
fix: broken internal link

.changeset/soft-pots-shake.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@scalar/api-client': patch
3+
'@scalar/components': patch
4+
---
5+
6+
fix: sets missing line height contraint and transform reset

.changeset/spicy-humans-travel.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@scalar/api-reference': patch
3+
---
4+
5+
fix: prevents introduction card dropdown stacking issue

.changeset/stupid-years-sparkle.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@scalar/openapi-parser': patch
3+
---
4+
5+
feat: add application and accessCode to swagger 2 upgrader

.changeset/wise-trainers-wonder.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@scalar/api-reference': patch
3+
'@scalar/api-client': patch
4+
---
5+
6+
fix: updates request auth border radius

.changeset/young-singers-unite.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@scalar/api-reference': patch
3+
---
4+
5+
fix: increases server variables label input font size

packages/api-client/src/components/SectionFilter.vue

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const navigateSection = (direction: 'next' | 'prev') => {
4444
@keydown.left="navigateSection('prev')"
4545
@keydown.right="navigateSection('next')">
4646
<div
47-
class="request-section-content request-section-content-filter fade-request-section-content text-c-3 pointer-events-auto relative hidden w-full justify-end gap-[1.5px] rounded py-2 text-xs xl:flex">
47+
class="request-section-content request-section-content-filter fade-request-section-content text-c-3 pointer-events-auto relative hidden w-full justify-end gap-[1.5px] rounded py-1.75 text-xs xl:flex">
4848
<SectionFilterButton
4949
v-for="filter in filters"
5050
:key="filter"
@@ -56,7 +56,7 @@ const navigateSection = (direction: 'next' | 'prev') => {
5656
{{ filter }}
5757
</SectionFilterButton>
5858
<div
59-
class="context-bar-group-hover:text-c-1 absolute top-1/2 -right-[30px] flex -translate-y-1/2 items-center">
59+
class="filter-button context-bar-group-hover:text-c-1 absolute -right-[30px] flex items-center">
6060
<span class="context-bar-group-hover:hidden mr-1.5">{{ model }}</span>
6161
<ScalarIcon
6262
icon="FilterList"
@@ -94,7 +94,7 @@ const navigateSection = (direction: 'next' | 'prev') => {
9494
top: 0;
9595
left: 0;
9696
width: 100%;
97-
height: 100%;
97+
height: fit-content;
9898
background-color: var(--scalar-background-1);
9999
opacity: 0;
100100
transition: all 0.3s ease-in-out;
@@ -142,6 +142,10 @@ const navigateSection = (direction: 'next' | 'prev') => {
142142
opacity: 0.9;
143143
backdrop-filter: blur(10px);
144144
}
145+
.filter-button {
146+
top: 50%;
147+
transform: translateY(-50%);
148+
}
145149
.context-bar-group:hover .context-bar-group-hover\:text-c-1,
146150
.context-bar-group:has(:focus-visible) .context-bar-group-hover\:text-c-1 {
147151
--tw-text-opacity: 1;

0 commit comments

Comments
 (0)