Skip to content

Commit

Permalink
downgrade version
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham-kaushal committed May 18, 2023
1 parent 04a8da6 commit f3dc0eb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"@react-aria/slider": "3.2.4",
"@react-aria/ssr": "3.4.1",
"@react-aria/switch": "3.3.1",
"@react-aria/table": "^3.9.0",
"@react-aria/table": "^3.5.0",
"@react-aria/textfield": "3.8.1",
"@react-aria/tooltip": "3.3.4",
"@react-aria/utils": "3.14.2",
Expand All @@ -100,7 +100,7 @@
"@react-stately/checkbox": "3.3.2",
"@react-stately/collections": "3.5.1",
"@react-stately/combobox": "3.3.1",
"@react-stately/data": "^3.9.1",
"@react-stately/data": "^3.7.0",
"@react-stately/list": "3.6.1",
"@react-stately/menu": "3.4.4",
"@react-stately/numberfield": "3.3.1",
Expand All @@ -110,7 +110,7 @@
"@react-stately/select": "3.3.4",
"@react-stately/selection": "3.11.2",
"@react-stately/slider": "3.2.4",
"@react-stately/table": "^3.9.0",
"@react-stately/table": "^3.5.0",
"@react-stately/toggle": "3.4.4",
"@react-stately/tooltip": "3.2.4",
"@react-stately/tree": "3.4.1",
Expand All @@ -119,7 +119,7 @@
"@react-types/checkbox": "3.4.1",
"@react-types/combobox": "3.5.5",
"@react-types/dialog": "3.4.5",
"@react-types/grid": "^3.1.7",
"@react-types/grid": "^3.1.4",
"@react-types/menu": "3.7.3",
"@react-types/numberfield": "3.3.5",
"@react-types/overlays": "3.6.5",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions src/components/actions/Button/Button.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CaretDown, CurrencyCircleDollar } from '@jengaicons/react';
import { CaretDownFill, CurrencyCircleDollar } from '@jengaicons/react';

import { baseProps } from '../../../stories/lists/baseProps';
import { Space } from '../../layout/Space';
Expand Down Expand Up @@ -44,7 +44,7 @@ const Template = ({ icon, rightIcon, label, onClick, ...props }) => (
>
<Button
icon={icon ? <CurrencyCircleDollar /> : undefined}
rightIcon={rightIcon ? <CaretDown /> : undefined}
rightIcon={rightIcon ? <CaretDownFill /> : undefined}
{...props}
onPress={(e) => console.log('Press', e)}
>
Expand All @@ -57,23 +57,23 @@ const TemplateSizes = ({ label, icon, rightIcon, size, ...props }) => (
<Space>
<Button
icon={icon ? <CurrencyCircleDollar /> : undefined}
rightIcon={rightIcon ? <CaretDown /> : undefined}
rightIcon={rightIcon ? <CaretDownFill /> : undefined}
{...props}
size="small"
>
{label}
</Button>
<Button
icon={icon ? <CurrencyCircleDollar /> : undefined}
rightIcon={rightIcon ? <CaretDown /> : undefined}
rightIcon={rightIcon ? <CaretDownFill /> : undefined}
{...props}
size="medium"
>
{label}
</Button>
<Button
icon={icon ? <CurrencyCircleDollar /> : undefined}
rightIcon={rightIcon ? <CaretDown /> : undefined}
rightIcon={rightIcon ? <CaretDownFill /> : undefined}
{...props}
size="large"
>
Expand Down

0 comments on commit f3dc0eb

Please sign in to comment.