Skip to content

Commit

Permalink
Merge pull request #24 from buildo/3113732-implement_form_components
Browse files Browse the repository at this point in the history
#3113732: Implement Form components
  • Loading branch information
veej authored Feb 16, 2022
2 parents 62e8bf3 + d3b67f5 commit 599976d
Show file tree
Hide file tree
Showing 22 changed files with 946 additions and 41 deletions.
14 changes: 13 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,25 @@
"@react-aria/dialog": "^3.1.4",
"@react-aria/focus": "^3.5.0",
"@react-aria/overlays": "^3.7.3",
"@react-aria/checkbox": "^3.2.3",
"@react-aria/i18n": "^3.3.4",
"@react-aria/label": "^3.2.1",
"@react-aria/numberfield": "^3.1.1",
"@react-aria/radio": "^3.1.6",
"@react-aria/separator": "^3.1.3",
"@react-aria/textfield": "^3.5.0",
"@react-aria/utils": "^3.11.0",
"@react-aria/visually-hidden": "^3.2.3",
"@react-stately/numberfield": "^3.0.2",
"@react-stately/radio": "^3.3.2",
"@react-stately/toggle": "^3.2.3",
"@react-types/radio": "^3.1.2",
"@vanilla-extract/recipes": "^0.2.3",
"@vanilla-extract/sprinkles": "^1.3.3",
"clsx": "^1.1.1",
"react-keyed-flatten-children": "^1.3.0",
"react-use": "^17.3.2"
"react-use": "^17.3.2",
"react-cool-dimensions": "^2.0.7"
},
"devDependencies": {
"@babel/core": "^7.16.0",
Expand Down
194 changes: 194 additions & 0 deletions pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion src/Button/createButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { ComponentProps, useRef } from "react";
import { AriaButtonProps } from "@react-types/button";
import { useButton } from "@react-aria/button";
import { Label } from "../Typography/Label/Label";
import { BentoSprinkles } from "src/internal";
import { BentoSprinkles } from "../internal";

type Size = "small" | "medium";
export type ButtonProps = {
Expand Down
Loading

0 comments on commit 599976d

Please sign in to comment.