Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ui): #1773, #1774: ValueInput and SwapInput #1775

Merged
merged 24 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
3f44e9b
fix: storybook asset metadata
vacekj Aug 29, 2024
e1393b4
fix: make tailwind work in storybook, add icon to assetSelector
vacekj Aug 29, 2024
46c0a2b
Merge remote-tracking branch 'origin/main' into 1714-finish-the-asset…
VanishMax Sep 5, 2024
63562dc
feat(ui): #1714: update AssetSelectorTrigger to the latest designs
VanishMax Sep 5, 2024
7655762
feat(ui): #1714: implement `ListItem` nested component
VanishMax Sep 6, 2024
88912d5
feat(ui): #1714: finish the implementation of the AssetSelector
VanishMax Sep 7, 2024
de15c8d
fix(ui): #1714: fix selected state of the AssetSelector
VanishMax Sep 9, 2024
10da3f1
feat(ui): #1714: separate `AssetSelector` from `AssetSelector.Custom`
VanishMax Sep 9, 2024
2fb2146
Merge remote-tracking branch 'origin/main' into 1714-finish-the-asset…
VanishMax Sep 9, 2024
5a76fdd
chore: changeset
VanishMax Sep 9, 2024
b8db9a8
refactor(ui): #1714: rename `AssetSelectorValue`, export types
VanishMax Sep 9, 2024
c487673
feat(ui): #1773: add `ValueInput` UI component
VanishMax Sep 9, 2024
bec64aa
feat(ui): #1773: add `SwapInput` UI component
VanishMax Sep 9, 2024
045f850
Merge branch '1714-finish-the-assetselector-ui-component' into feat/#…
VanishMax Sep 9, 2024
cc43998
docs(ui): #1773: add docs for new components
VanishMax Sep 9, 2024
ec117a5
chore: changeset
VanishMax Sep 9, 2024
4d41815
feat(ui): #1714: implement sticky header and the correct height in th…
VanishMax Sep 11, 2024
bf2face
Merge branch '1714-finish-the-assetselector-ui-component' into feat/#…
VanishMax Sep 11, 2024
4000c5f
fix(ui): #1776: update TextInput and Button styles to match the design
VanishMax Sep 11, 2024
1fe52e1
fix(ui): tests
VanishMax Sep 11, 2024
ad39e9b
fix(ui): #1773: hide the arrows in the number input
VanishMax Sep 12, 2024
122abf2
fix(ui): #1714: update default filtering of the balances and fix List…
VanishMax Sep 12, 2024
b0d7666
Merge branch '1714-finish-the-assetselector-ui-component' into feat/#…
VanishMax Sep 12, 2024
5173bcb
Merge branch 'main' into feat/#1773-value-input
VanishMax Sep 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/happy-mayflies-destroy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@penumbra-zone/ui': minor
---

Add `AssetSelector` UI component
5 changes: 5 additions & 0 deletions .changeset/quick-buckets-deny.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@penumbra-zone/ui': minor
---

Add `SwapInput` and `ValueInput` UI components
10 changes: 9 additions & 1 deletion packages/ui/.storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,15 @@ const config = {
getAbsolutePath('@storybook/addon-links'),
getAbsolutePath('@storybook/addon-essentials'),
getAbsolutePath('@storybook/addon-interactions'),
'@storybook/addon-postcss',
{
name: '@storybook/addon-postcss',
options: {
postcssLoaderOptions: {
// When using postCSS 8
implementation: require('postcss'),
},
},
},
'@storybook/preview-api',
],
framework: {
Expand Down
1 change: 1 addition & 0 deletions packages/ui/.storybook/preview.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { PenumbraUIProvider } from '../src/PenumbraUIProvider';
import { Density } from '../src/Density';
import { Tabs } from '../src/Tabs';
import styled from 'styled-components';
import '../styles/globals.css';

const Column = styled.div`
display: flex;
Expand Down

This file was deleted.

This file was deleted.

100 changes: 0 additions & 100 deletions packages/ui/src/AssetSelector/AssetSelectorDialogContent/index.tsx

This file was deleted.

Loading
Loading