Skip to content

Commit

Permalink
feat: support react-aria-components renderProps
Browse files Browse the repository at this point in the history
Fix #11
  • Loading branch information
gregberge committed Dec 24, 2023
1 parent e40914b commit 61637d2
Show file tree
Hide file tree
Showing 9 changed files with 1,656 additions and 86 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/ban-types": "off"
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-explicit-any": "off"
}
}
9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"./react-aria-components": {
"import": "./dist/react-aria-components.mjs",
"types": "./dist/react-aria-components.d.ts",
"default": "./dist/react-aria-components.mjs"
}
},
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -49,6 +55,7 @@
"happy-dom": "^12.10.3",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-aria-components": "^1.0.0",
"rollup": "^4.9.1",
"rollup-plugin-swc3": "^0.11.0",
"rollup-plugin-ts": "^3.4.5",
Expand Down
Loading

0 comments on commit 61637d2

Please sign in to comment.