Skip to content

Commit

Permalink
feat(repo): upgrade esbuild and ariakit
Browse files Browse the repository at this point in the history
  • Loading branch information
w0ofy committed Jan 29, 2024
1 parent 028fa56 commit 0f9c32b
Show file tree
Hide file tree
Showing 16 changed files with 129 additions and 143 deletions.
6 changes: 6 additions & 0 deletions .changeset/kind-suits-serve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@real-system/ariakit-library": patch
"@real-system/styled-library": patch
---

bump build tools and ariakit
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.8",
"@types/node": "^20.11.10",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react-test-renderer": "^18.0.7",
Expand All @@ -122,7 +122,7 @@
"clean-package": "^2.2.0",
"commitizen": "^4.3.0",
"concurrently": "^8.2.2",
"esbuild": "0.19.12",
"esbuild": "0.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.3",
Expand Down
9 changes: 2 additions & 7 deletions packages/components/alert/stories/Alert.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,8 @@ export const DismissableAlert = (args) => (
export const InlineAlert = (args) => (
<Box width="40rem">
<Text.Heading as="h4">Short text</Text.Heading>
<RealInlineAlert {...args} marginBottom={8}>
There are over 5000 integrations available
</RealInlineAlert>
<RealInlineAlert {...args} marginBottom={8} />
<Text.Heading as="h4">Long text</Text.Heading>
<RealInlineAlert {...args}>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed dod eiusmod
tempor incididunt ut labore et dolore magna aliqua
</RealInlineAlert>
<RealInlineAlert {...args} />
</Box>
);
2 changes: 1 addition & 1 deletion packages/libraries/ariakit-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"typescript": "^5.3.3"
},
"dependencies": {
"@ariakit/react": "^0.4.0"
"@ariakit/react": "^0.4.1"
},
"files": [
"lib"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ const TokenSearch = ({ scale }: { scale: ThemeScales }) => {
<Box display="block" marginBottom={10} width="25rem">
<Input
type="text"
// @ts-ignore
prefix={<Icon icon="search" />}
placeholder="filter by name"
onChange={debouncedSearchHandler}
Expand Down
Loading

0 comments on commit 0f9c32b

Please sign in to comment.