Skip to content

Commit

Permalink
0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
lerte committed Nov 24, 2024
1 parent f6d025c commit 43cbacb
Show file tree
Hide file tree
Showing 4 changed files with 1,264 additions and 2,006 deletions.
13 changes: 6 additions & 7 deletions packages/actify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "actify",
"version": "0.3.5",
"version": "0.3.6",
"license": "MIT",
"author": "Lerte Smith",
"keywords": [
Expand Down Expand Up @@ -38,13 +38,12 @@
"@types/react-dom": "catalog:",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"react": "catalog:",
"react-aria": "^3.35.0",
"react-aria-components": "^1.4.1",
"react-aria": "^3.36.0",
"react-aria-components": "^1.5.0",
"react-dom": "catalog:",
"react-stately": "^3.33.0",
"react-stately": "^3.34.0",
"rollup": "^3.29.4",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
Expand All @@ -67,8 +66,8 @@
"popmotion": "^11.0.5"
},
"peerDependencies": {
"react": "rc",
"react-dom": "rc"
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106"
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ const Autocomplete = <T extends object>(props: AutocompleteProps<T>) => {
state={state}
triggerRef={ref}
popoverRef={popoverRef}
placement="bottom start"
referenceWidth={referenceWidth}
>
<ListBox
Expand Down
2 changes: 1 addition & 1 deletion packages/actify/src/components/TextFields/TextField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const TextField = ({
isInvalid,
validationErrors
} = useTextField(
{ ...props, inputElementType: type == 'textarea' ? 'textarea' : 'input' },
{ inputElementType: type == 'textarea' ? 'textarea' : 'input' },
_inputRef
)

Expand Down
Loading

0 comments on commit 43cbacb

Please sign in to comment.