Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
interface
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LuckySwap
interface
Commits
0e047b55
Commit
0e047b55
authored
Nov 21, 2024
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
77509223
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
13 deletions
+22
-13
RELEASE
RELEASE
+7
-7
VERSION
VERSION
+1
-1
NavDropdown.tsx
apps/web/src/components/NavBar/NavDropdown/NavDropdown.tsx
+13
-4
index.tsx
apps/web/src/components/NavBar/PreferencesMenu/index.tsx
+1
-1
No files found.
RELEASE
View file @
0e047b55
IPFS hash of the deployment:
IPFS hash of the deployment:
- CIDv0: `Qm
e3taNpEsZnMw9J6veC7Zy2mC3qpe7otuikyy6AN9j4ED
`
- CIDv0: `Qm
RCrXbMR4EUz9dAJvL4pBfVtVGkj6sB7zNZo6H8V65jDb
`
- CIDv1: `bafybei
hjn7f5lga2wsadipjb5bi7vuwcqnlpltcr54enkvhak2lr6hbml
i`
- CIDv1: `bafybei
bkspdr2mrrvuxfqo2kh7aaasnzbjlxixfic2dpqtbnsq4qw25o6
i`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
...
@@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
...
@@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs.
Your Uniswap settings are never remembered across different URLs.
IPFS gateways:
IPFS gateways:
- https://bafybei
hjn7f5lga2wsadipjb5bi7vuwcqnlpltcr54enkvhak2lr6hbml
i.ipfs.dweb.link/
- https://bafybei
bkspdr2mrrvuxfqo2kh7aaasnzbjlxixfic2dpqtbnsq4qw25o6
i.ipfs.dweb.link/
- https://bafybei
hjn7f5lga2wsadipjb5bi7vuwcqnlpltcr54enkvhak2lr6hbml
i.ipfs.cf-ipfs.com/
- https://bafybei
bkspdr2mrrvuxfqo2kh7aaasnzbjlxixfic2dpqtbnsq4qw25o6
i.ipfs.cf-ipfs.com/
- [ipfs://Qm
e3taNpEsZnMw9J6veC7Zy2mC3qpe7otuikyy6AN9j4ED/](ipfs://Qme3taNpEsZnMw9J6veC7Zy2mC3qpe7otuikyy6AN9j4ED
/)
- [ipfs://Qm
RCrXbMR4EUz9dAJvL4pBfVtVGkj6sB7zNZo6H8V65jDb/](ipfs://QmRCrXbMR4EUz9dAJvL4pBfVtVGkj6sB7zNZo6H8V65jDb
/)
### 5.59.
2
(2024-11-21)
### 5.59.
3
(2024-11-21)
### Bug Fixes
### Bug Fixes
* **web:**
round rect bug prod (#13972) 8ff327e
* **web:**
only pad preference menu instead of all nav [prod] (#13994) 1809d8c
VERSION
View file @
0e047b55
web/5.59.2
web/5.59.3
\ No newline at end of file
\ No newline at end of file
apps/web/src/components/NavBar/NavDropdown/NavDropdown.tsx
View file @
0e047b55
...
@@ -9,9 +9,6 @@ const NavDropdownContent = styled(Flex, {
...
@@ -9,9 +9,6 @@ const NavDropdownContent = styled(Flex, {
borderColor
:
'
$surface2
'
,
borderColor
:
'
$surface2
'
,
backgroundColor
:
'
$surface1
'
,
backgroundColor
:
'
$surface1
'
,
maxHeight
:
`calc(100dvh -
${
INTERFACE_NAV_HEIGHT
*
2
}
px)`
,
maxHeight
:
`calc(100dvh -
${
INTERFACE_NAV_HEIGHT
*
2
}
px)`
,
py
:
'
12px
'
,
pl
:
'
16px
'
,
pr
:
'
4px
'
,
// Smaller right padding allows scrollbar to be closer to container edge
$sm
:
{
$sm
:
{
width
:
'
100%
'
,
width
:
'
100%
'
,
borderRadius
:
'
$none
'
,
borderRadius
:
'
$none
'
,
...
@@ -23,6 +20,16 @@ const NavDropdownContent = styled(Flex, {
...
@@ -23,6 +20,16 @@ const NavDropdownContent = styled(Flex, {
overflowY
:
'
auto
'
,
overflowY
:
'
auto
'
,
overflowX
:
'
hidden
'
,
overflowX
:
'
hidden
'
,
},
},
variants
:
{
padded
:
{
true
:
{
py
:
'
12px
'
,
pl
:
'
16px
'
,
pr
:
'
4px
'
,
// Smaller right padding allows scrollbar to be closer to container edge
},
false
:
{},
},
},
})
})
interface
NavDropdownProps
{
interface
NavDropdownProps
{
...
@@ -31,9 +38,10 @@ interface NavDropdownProps {
...
@@ -31,9 +38,10 @@ interface NavDropdownProps {
width
?:
number
width
?:
number
dropdownRef
?:
RefObject
<
HTMLDivElement
>
dropdownRef
?:
RefObject
<
HTMLDivElement
>
dataTestId
?:
string
dataTestId
?:
string
padded
?:
boolean
}
}
export
function
NavDropdown
({
children
,
width
,
dropdownRef
,
isOpen
,
dataTestId
}:
NavDropdownProps
)
{
export
function
NavDropdown
({
children
,
width
,
dropdownRef
,
isOpen
,
padded
,
dataTestId
}:
NavDropdownProps
)
{
const
shadowProps
=
useShadowPropsMedium
()
const
shadowProps
=
useShadowPropsMedium
()
const
scrollbarStyles
=
useScrollbarStyles
()
const
scrollbarStyles
=
useScrollbarStyles
()
...
@@ -60,6 +68,7 @@ export function NavDropdown({ children, width, dropdownRef, isOpen, dataTestId }
...
@@ -60,6 +68,7 @@ export function NavDropdown({ children, width, dropdownRef, isOpen, dataTestId }
data
-
testid=
{
dataTestId
}
data
-
testid=
{
dataTestId
}
ref=
{
dropdownRef
}
ref=
{
dropdownRef
}
width=
{
width
}
width=
{
width
}
padded=
{
padded
}
{
...
shadowProps
}
{
...
shadowProps
}
style=
{
scrollbarStyles
}
style=
{
scrollbarStyles
}
>
>
...
...
apps/web/src/components/NavBar/PreferencesMenu/index.tsx
View file @
0e047b55
...
@@ -39,7 +39,7 @@ export function PreferenceMenu() {
...
@@ -39,7 +39,7 @@ export function PreferenceMenu() {
<
Global
size=
{
20
}
color=
"$neutral2"
cursor=
"pointer"
/>
<
Global
size=
{
20
}
color=
"$neutral2"
cursor=
"pointer"
/>
</
NavIcon
>
</
NavIcon
>
</
Popover
.
Trigger
>
</
Popover
.
Trigger
>
<
NavDropdown
width=
{
325
}
isOpen=
{
isOpen
}
>
<
NavDropdown
width=
{
325
}
isOpen=
{
isOpen
}
padded
>
<
NavDropdownDefaultWrapper
>
<
NavDropdownDefaultWrapper
>
<
AnimateTransition
<
AnimateTransition
currentIndex=
{
getSettingsViewIndex
(
settingsView
)
}
currentIndex=
{
getSettingsViewIndex
(
settingsView
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment