Compare commits

...

4 Commits

Author SHA1 Message Date
github-actions[bot] 87918ac5b4 ci(changesets): version packages (#1360)
Co-authored-by: Junior Garcia <jrgarciadev@gmail.com>
2023-08-10 23:47:40 -03:00
Junior Garcia a30cec4810 chore(root): react-aria packages upgraded (#1359) 2023-08-10 23:25:24 -03:00
github-actions[bot] 1b0653c97a ci(changesets): version packages (#1353)
Co-authored-by: Junior Garcia <jrgarciadev@gmail.com>
2023-08-10 17:35:26 -03:00
Junior Garcia 710395f3a2 Refactor/remove needless exports system (#1350)
* fix(root): filter dom props func, accordion keep content mounted, navbaropen menu callbacks

* refactor(system): needeless exports removed

* refactor(system): needeless exports removed
2023-08-10 17:27:53 -03:00
89 changed files with 2521 additions and 1216 deletions
+11 -11
View File
@@ -32,16 +32,16 @@
"@nextui-org/use-clipboard": "workspace:*",
"@nextui-org/use-infinite-scroll": "workspace:*",
"@nextui-org/use-is-mobile": "workspace:*",
"@react-aria/focus": "^3.13.0",
"@react-aria/interactions": "^3.16.0",
"@react-aria/selection": "^3.15.0",
"@react-aria/ssr": "^3.6.0",
"@react-aria/utils": "^3.18.0",
"@react-aria/virtualizer": "^3.8.0",
"@react-aria/visually-hidden": "^3.8.0",
"@react-stately/data": "^3.10.0",
"@react-stately/layout": "^3.12.0",
"@react-stately/tree": "^3.7.0",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/selection": "^3.16.1",
"@react-aria/ssr": "^3.7.1",
"@react-aria/utils": "^3.19.0",
"@react-aria/virtualizer": "^3.9.1",
"@react-aria/visually-hidden": "^3.8.3",
"@react-stately/data": "^3.10.1",
"@react-stately/layout": "^3.13.0",
"@react-stately/tree": "^3.7.1",
"@rehooks/local-storage": "^2.4.4",
"@vercel/analytics": "^1.0.1",
"canvas-confetti": "^1.4.0",
@@ -49,7 +49,7 @@
"color2k": "^2.0.2",
"contentlayer": "^0.3.4",
"date-fns": "^2.30.0",
"framer-motion": "^10.12.18",
"framer-motion": "^10.15.1",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"hast-util-to-html": "7.1.2",
@@ -1,5 +1,31 @@
# @nextui-org/accordion
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/use-aria-accordion-item@2.0.3
- @nextui-org/framer-transitions@2.0.5
- @nextui-org/aria-utils@2.0.5
- @nextui-org/divider@2.0.7
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
- @nextui-org/aria-utils@2.0.4
- @nextui-org/framer-transitions@2.0.4
## 2.0.6
### Patch Changes
+9 -9
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/accordion",
"version": "2.0.6",
"version": "2.0.8",
"description": "Collapse display a list of high-level options that can expand/collapse to reveal more information.",
"keywords": [
"react",
@@ -53,18 +53,18 @@
"@nextui-org/system": "workspace:*",
"@nextui-org/theme": "workspace:*",
"@nextui-org/divider": "workspace:*",
"@react-aria/accordion": "3.0.0-alpha.19",
"@react-aria/interactions": "^3.16.0",
"@react-aria/focus": "^3.13.0",
"@react-aria/utils": "^3.18.0",
"@react-stately/tree": "^3.7.0"
"@react-aria/accordion": "3.0.0-alpha.20",
"@react-aria/interactions": "^3.17.0",
"@react-aria/focus": "^3.14.0",
"@react-aria/utils": "^3.19.0",
"@react-stately/tree": "^3.7.1"
},
"devDependencies": {
"@nextui-org/avatar": "workspace:*",
"@nextui-org/test-utils": "workspace:*",
"@react-types/accordion": "3.0.0-alpha.14",
"@react-types/shared": "^3.18.1",
"framer-motion": "^10.12.18",
"@react-types/accordion": "3.0.0-alpha.15",
"@react-types/shared": "^3.19.0",
"framer-motion": "^10.15.1",
"clean-package": "2.2.0",
"react": "^18.0.0"
},
@@ -6,7 +6,6 @@ export type {AccordionProps} from "./accordion";
export type {AccordionItemProps} from "./accordion-item";
export type {AccordionItemIndicatorProps} from "./base/accordion-item-base";
export type {AccordionItemBaseProps} from "./base/accordion-item-base";
export type {Selection} from "@react-types/shared";
// export hooks
export {useAccordionItem} from "./use-accordion-item";
+20
View File
@@ -1,5 +1,25 @@
# @nextui-org/avatar
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
## 2.0.6
### Patch Changes
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/avatar",
"version": "2.0.6",
"version": "2.0.8",
"description": "The Avatar component is used to represent a user, and displays the profile picture, initials or fallback icon.",
"keywords": [
"avatar"
@@ -42,9 +42,9 @@
"@nextui-org/shared-utils": "workspace:*",
"@nextui-org/react-utils": "workspace:*",
"@nextui-org/use-image": "workspace:*",
"@react-aria/interactions": "^3.16.0",
"@react-aria/focus": "^3.13.0",
"@react-aria/utils": "^3.18.0"
"@react-aria/interactions": "^3.17.0",
"@react-aria/focus": "^3.14.0",
"@react-aria/utils": "^3.19.0"
},
"devDependencies": {
"@nextui-org/shared-icons": "workspace:*",
+23
View File
@@ -1,5 +1,28 @@
# @nextui-org/button
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/use-aria-button@2.0.3
- @nextui-org/ripple@2.0.8
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
- @nextui-org/ripple@2.0.7
## 2.0.6
### Patch Changes
+7 -7
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/button",
"version": "2.0.6",
"version": "2.0.8",
"description": "Buttons allow users to perform actions and choose with a single tap.",
"keywords": [
"button"
@@ -44,12 +44,12 @@
"@nextui-org/theme": "workspace:*",
"@nextui-org/ripple": "workspace:*",
"@nextui-org/spinner": "workspace:*",
"@react-aria/button": "^3.8.0",
"@react-aria/interactions": "^3.16.0",
"@react-aria/utils": "^3.18.0",
"@react-aria/focus": "^3.13.0",
"@react-types/shared": "^3.18.1",
"@react-types/button": "^3.7.3"
"@react-aria/button": "^3.8.1",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0",
"@react-aria/focus": "^3.14.0",
"@react-types/shared": "^3.19.0",
"@react-types/button": "^3.7.4"
},
"devDependencies": {
"@nextui-org/shared-icons": "workspace:*",
+23
View File
@@ -1,5 +1,28 @@
# @nextui-org/card
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/use-aria-button@2.0.3
- @nextui-org/ripple@2.0.8
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
- @nextui-org/ripple@2.0.7
## 2.0.6
### Patch Changes
+6 -6
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/card",
"version": "2.0.6",
"version": "2.0.8",
"description": "Card is a container for text, photos, and actions in the context of a single subject.",
"keywords": [
"card"
@@ -43,11 +43,11 @@
"@nextui-org/react-utils": "workspace:*",
"@nextui-org/use-aria-button": "workspace:*",
"@nextui-org/ripple": "workspace:*",
"@react-aria/focus": "^3.13.0",
"@react-aria/utils": "^3.18.0",
"@react-aria/interactions": "^3.16.0",
"@react-aria/button": "^3.8.0",
"@react-types/shared": "^3.18.1"
"@react-aria/focus": "^3.14.0",
"@react-aria/utils": "^3.19.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/button": "^3.8.1",
"@react-types/shared": "^3.19.0"
},
"devDependencies": {
"@nextui-org/code": "workspace:*",
+20
View File
@@ -1,5 +1,25 @@
# @nextui-org/checkbox
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
## 2.0.6
### Patch Changes
+10 -10
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/checkbox",
"version": "2.0.6",
"version": "2.0.8",
"description": "Checkboxes allow users to select multiple items from a list of individual items, or to mark one individual item as selected.",
"keywords": [
"checkbox"
@@ -41,15 +41,15 @@
"@nextui-org/shared-utils": "workspace:*",
"@nextui-org/react-utils": "workspace:*",
"@nextui-org/theme": "workspace:*",
"@react-aria/checkbox": "^3.9.2",
"@react-aria/focus": "^3.13.0",
"@react-aria/interactions": "^3.16.0",
"@react-aria/visually-hidden": "^3.8.2",
"@react-stately/checkbox": "^3.4.3",
"@react-stately/toggle": "^3.6.0",
"@react-aria/utils": "^3.18.0",
"@react-types/checkbox": "^3.4.4",
"@react-types/shared": "^3.18.1"
"@react-aria/checkbox": "^3.10.0",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/visually-hidden": "^3.8.3",
"@react-stately/checkbox": "^3.4.4",
"@react-stately/toggle": "^3.6.1",
"@react-aria/utils": "^3.19.0",
"@react-types/checkbox": "^3.5.0",
"@react-types/shared": "^3.19.0"
},
"devDependencies": {
"@nextui-org/shared-icons": "workspace:*",
+20
View File
@@ -1,5 +1,25 @@
# @nextui-org/chip
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
## 2.0.6
### Patch Changes
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/chip",
"version": "2.0.6",
"version": "2.0.8",
"description": "Chips help people enter information, make selections, filter content, or trigger actions.",
"keywords": [
"chip"
@@ -42,10 +42,10 @@
"@nextui-org/react-utils": "workspace:*",
"@nextui-org/system": "workspace:*",
"@nextui-org/theme": "workspace:*",
"@react-aria/focus": "^3.13.0",
"@react-aria/interactions": "^3.16.0",
"@react-aria/utils": "^3.18.0",
"@react-types/checkbox": "^3.4.4"
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0",
"@react-types/checkbox": "^3.5.0"
},
"devDependencies": {
"@nextui-org/avatar": "workspace:*",
+10
View File
@@ -1,5 +1,15 @@
# @nextui-org/divider
## 2.0.7
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
## 2.0.6
### Patch Changes
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/divider",
"version": "2.0.6",
"version": "2.0.7",
"description": ". A separator is a visual divider between two groups of content",
"keywords": [
"divider"
@@ -41,7 +41,7 @@
"@nextui-org/react-rsc-utils": "workspace:*",
"@nextui-org/system-rsc": "workspace:*",
"@nextui-org/theme": "workspace:*",
"@react-types/shared": "^3.18.1"
"@react-types/shared": "^3.19.0"
},
"devDependencies": {
"clean-package": "2.2.0",
+26
View File
@@ -1,5 +1,31 @@
# @nextui-org/dropdown
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/aria-utils@2.0.5
- @nextui-org/use-is-mobile@2.0.3
- @nextui-org/divider@2.0.7
- @nextui-org/popover@2.0.8
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
- @nextui-org/popover@2.0.7
- @nextui-org/aria-utils@2.0.4
## 2.0.6
### Patch Changes
+10 -10
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/dropdown",
"version": "2.0.6",
"version": "2.0.8",
"description": "A dropdown displays a list of actions or options that a user can choose.",
"keywords": [
"dropdown"
@@ -46,21 +46,21 @@
"@nextui-org/theme": "workspace:*",
"@nextui-org/divider": "workspace:*",
"@nextui-org/use-is-mobile": "workspace:*",
"@react-aria/menu": "^3.10.0",
"@react-aria/utils": "^3.18.0",
"@react-stately/menu": "^3.5.3",
"@react-stately/tree": "^3.7.0",
"@react-aria/focus": "^3.13.0",
"@react-aria/interactions": "^3.16.0",
"@react-types/menu": "^3.9.2",
"@react-types/shared": "^3.18.1"
"@react-aria/menu": "^3.10.1",
"@react-aria/utils": "^3.19.0",
"@react-stately/menu": "^3.5.4",
"@react-stately/tree": "^3.7.1",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-types/menu": "^3.9.3",
"@react-types/shared": "^3.19.0"
},
"devDependencies": {
"@nextui-org/button": "workspace:*",
"@nextui-org/avatar": "workspace:*",
"@nextui-org/user": "workspace:*",
"@nextui-org/shared-icons": "workspace:*",
"framer-motion": "^10.12.18",
"framer-motion": "^10.15.1",
"clean-package": "2.2.0",
"react": "^18.0.0"
},
+20
View File
@@ -1,5 +1,25 @@
# @nextui-org/image
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
## 2.0.6
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/image",
"version": "2.0.6",
"version": "2.0.8",
"description": "A simple image component",
"keywords": [
"image"
@@ -47,7 +47,7 @@ export default {
const defaultProps = {
...image.defaultVariants,
src: require("./assets/local-image-1.jpeg"),
src: "./images/local-image-1.jpeg",
alt: "NextUI hero image",
disableSkeleton: true,
};
@@ -82,7 +82,7 @@ export const Blurred = {
...defaultProps,
width: 300,
isBlurred: true,
src: require("./assets/local-image-small.jpg"),
src: "/images/local-image-small.jpg",
// src:
// "https://images.unsplash.com/photo-1519638831568-d9897f54ed69?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80",
},
@@ -105,7 +105,7 @@ export const Shadow = {
isZoomed: true,
radius: "lg",
shadow: "md",
src: require("./assets/local-image-small.jpg"),
src: "/images/local-image-small.jpg",
},
};
@@ -126,7 +126,7 @@ export const Fallback = {
width: 300,
radius: "lg",
src: "https://app.requestly.io/delay/3000/https://images.unsplash.com/photo-1539571696357-5a69c17a67c6",
fallbackSrc: "https://via.placeholder.com/300x450",
fallbackSrc: "/images/placeholder_300x450.png",
},
};
+20
View File
@@ -1,5 +1,25 @@
# @nextui-org/input
## 2.0.9
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/system@2.0.5
## 2.0.8
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
## 2.0.7
### Patch Changes
+8 -8
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/input",
"version": "2.0.7",
"version": "2.0.9",
"description": "The input component is designed for capturing user input within a text field.",
"keywords": [
"input"
@@ -42,14 +42,14 @@
"@nextui-org/shared-utils": "workspace:*",
"@nextui-org/system": "workspace:*",
"@nextui-org/theme": "workspace:*",
"@react-aria/focus": "^3.13.0",
"@react-aria/interactions": "^3.16.0",
"@react-aria/textfield": "^3.10.0",
"@react-aria/utils": "^3.18.0",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/textfield": "^3.11.0",
"@react-aria/utils": "^3.19.0",
"@react-stately/utils": "^3.7.0",
"@react-types/shared": "^3.18.1",
"@react-types/textfield": "^3.7.2",
"react-textarea-autosize": "^8.5.1"
"@react-types/shared": "^3.19.0",
"@react-types/textfield": "^3.7.3",
"react-textarea-autosize": "^8.5.2"
},
"devDependencies": {
"clean-package": "2.2.0",
+10
View File
@@ -1,5 +1,15 @@
# @nextui-org/kbd
## 2.0.7
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
## 2.0.6
### Patch Changes
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/kbd",
"version": "2.0.6",
"version": "2.0.7",
"description": "The keyboard key components indicates which key or set of keys used to execute a specificv action",
"keywords": [
"kbd"
@@ -41,7 +41,7 @@
"@nextui-org/theme": "workspace:*",
"@nextui-org/shared-utils": "workspace:*",
"@nextui-org/react-utils": "workspace:*",
"@react-aria/utils": "^3.18.0"
"@react-aria/utils": "^3.19.0"
},
"devDependencies": {
"clean-package": "2.2.0",
+20
View File
@@ -1,5 +1,25 @@
# @nextui-org/link
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
## 2.0.6
### Patch Changes
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/link",
"version": "2.0.6",
"version": "2.0.8",
"description": "Links allow users to click their way from page to page. This component is styled to resemble a hyperlink and semantically renders an &lt;a&gt;",
"keywords": [
"link"
@@ -42,10 +42,10 @@
"@nextui-org/react-utils": "workspace:*",
"@nextui-org/system": "workspace:*",
"@nextui-org/theme": "workspace:*",
"@react-aria/link": "^3.5.2",
"@react-aria/utils": "^3.18.0",
"@react-aria/focus": "^3.13.0",
"@react-types/link": "^3.4.3"
"@react-aria/link": "^3.5.3",
"@react-aria/utils": "^3.19.0",
"@react-aria/focus": "^3.14.0",
"@react-types/link": "^3.4.4"
},
"devDependencies": {
"clean-package": "2.2.0",
+25
View File
@@ -1,5 +1,30 @@
# @nextui-org/modal
## 2.0.9
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/use-aria-modal-overlay@2.0.3
- @nextui-org/framer-transitions@2.0.5
- @nextui-org/use-aria-button@2.0.3
- @nextui-org/use-disclosure@2.0.3
- @nextui-org/system@2.0.5
## 2.0.8
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
- @nextui-org/framer-transitions@2.0.4
## 2.0.7
### Patch Changes
+9 -9
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/modal",
"version": "2.0.7",
"version": "2.0.9",
"description": "Displays a dialog with a custom content that requires attention or provides additional information.",
"keywords": [
"modal"
@@ -47,13 +47,13 @@
"@nextui-org/react-utils": "workspace:*",
"@nextui-org/shared-icons": "workspace:*",
"@nextui-org/use-aria-modal-overlay": "workspace:*",
"@react-aria/dialog": "^3.5.3",
"@react-aria/interactions": "^3.16.0",
"@react-aria/overlays": "^3.15.0",
"@react-aria/utils": "^3.18.0",
"@react-stately/overlays": "^3.6.0",
"@react-aria/focus": "^3.13.0",
"@react-types/overlays": "^3.8.0",
"@react-aria/dialog": "^3.5.4",
"@react-aria/interactions": "^3.17.0",
"@react-aria/overlays": "^3.16.0",
"@react-aria/utils": "^3.19.0",
"@react-stately/overlays": "^3.6.1",
"@react-aria/focus": "^3.14.0",
"@react-types/overlays": "^3.8.1",
"react-remove-scroll": "^2.5.6"
},
"devDependencies": {
@@ -62,7 +62,7 @@
"@nextui-org/button": "workspace:*",
"@nextui-org/link": "workspace:*",
"react-lorem-component": "0.13.0",
"framer-motion": "^10.12.18",
"framer-motion": "^10.15.1",
"clean-package": "2.2.0",
"react": "^18.0.0"
},
+23
View File
@@ -1,5 +1,28 @@
# @nextui-org/navbar
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/use-aria-toggle-button@2.0.3
- @nextui-org/framer-transitions@2.0.5
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
- @nextui-org/framer-transitions@2.0.4
## 2.0.6
### Patch Changes
+6 -6
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/navbar",
"version": "2.0.6",
"version": "2.0.8",
"description": "A responsive navigation header positioned on top side of your page that includes support for branding, links, navigation, collapse and more.",
"keywords": [
"navbar"
@@ -45,12 +45,12 @@
"@nextui-org/framer-transitions": "workspace:*",
"@nextui-org/use-aria-toggle-button": "workspace:*",
"@nextui-org/use-scroll-position": "workspace:*",
"@react-aria/focus": "^3.13.0",
"@react-aria/interactions": "^3.16.0",
"@react-aria/utils": "^3.18.0",
"@react-stately/toggle": "^3.6.0",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0",
"@react-stately/toggle": "^3.6.1",
"@react-stately/utils": "^3.7.0",
"@react-aria/overlays": "^3.15.0",
"@react-aria/overlays": "^3.16.0",
"react-remove-scroll": "^2.5.6"
},
"devDependencies": {
@@ -1,5 +1,25 @@
# @nextui-org/pagination
## 2.0.9
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/system@2.0.5
## 2.0.8
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
## 2.0.7
### Patch Changes
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/pagination",
"version": "2.0.7",
"version": "2.0.9",
"description": "The Pagination component allows you to display active page and navigate between multiple pages.",
"keywords": [
"pagination"
@@ -43,9 +43,9 @@
"@nextui-org/theme": "workspace:*",
"@nextui-org/shared-icons": "workspace:*",
"@nextui-org/use-pagination": "workspace:*",
"@react-aria/focus": "^3.13.0",
"@react-aria/interactions": "^3.16.0",
"@react-aria/utils": "^3.18.0",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0",
"scroll-into-view-if-needed": "3.0.10"
},
"devDependencies": {
+27
View File
@@ -1,5 +1,32 @@
# @nextui-org/popover
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/framer-transitions@2.0.5
- @nextui-org/use-aria-button@2.0.3
- @nextui-org/aria-utils@2.0.5
- @nextui-org/button@2.0.8
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
- @nextui-org/button@2.0.7
- @nextui-org/aria-utils@2.0.4
- @nextui-org/framer-transitions@2.0.4
## 2.0.6
### Patch Changes
+10 -10
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/popover",
"version": "2.0.6",
"version": "2.0.8",
"description": "A popover is an overlay element positioned relative to a trigger.",
"keywords": [
"popover"
@@ -46,20 +46,20 @@
"@nextui-org/react-utils": "workspace:*",
"@nextui-org/system": "workspace:*",
"@nextui-org/theme": "workspace:*",
"@react-aria/dialog": "^3.5.3",
"@react-aria/interactions": "^3.16.0",
"@react-aria/overlays": "^3.15.0",
"@react-aria/utils": "^3.18.0",
"@react-stately/overlays": "^3.6.0",
"@react-aria/focus": "^3.13.0",
"@react-types/overlays": "^3.8.0",
"@react-types/button": "^3.7.3",
"@react-aria/dialog": "^3.5.4",
"@react-aria/interactions": "^3.17.0",
"@react-aria/overlays": "^3.16.0",
"@react-aria/utils": "^3.19.0",
"@react-stately/overlays": "^3.6.1",
"@react-aria/focus": "^3.14.0",
"@react-types/overlays": "^3.8.1",
"@react-types/button": "^3.7.4",
"react-remove-scroll": "^2.5.6"
},
"devDependencies": {
"@nextui-org/input": "workspace:*",
"@nextui-org/card": "workspace:*",
"framer-motion": "^10.12.18",
"framer-motion": "^10.15.1",
"clean-package": "2.2.0",
"react": "^18.0.0"
},
@@ -243,7 +243,6 @@ export function usePopover(originalProps: UsePopoverProps) {
shouldBlockScroll,
backdrop: originalProps.backdrop ?? "transparent",
motionProps,
focusProps,
getBackdropProps,
getPopoverProps,
getTriggerProps,
+20
View File
@@ -1,5 +1,25 @@
# @nextui-org/progress
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
## 2.0.6
### Patch Changes
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/progress",
"version": "2.0.6",
"version": "2.0.8",
"description": "Progress bars show either determinate or indeterminate progress of an operation over time.",
"keywords": [
"progress"
@@ -42,9 +42,9 @@
"@nextui-org/use-is-mounted": "workspace:*",
"@nextui-org/system": "workspace:*",
"@nextui-org/theme": "workspace:*",
"@react-aria/i18n": "^3.8.0",
"@react-aria/progress": "^3.4.3",
"@react-aria/utils": "^3.18.0",
"@react-aria/i18n": "^3.8.1",
"@react-aria/progress": "^3.4.4",
"@react-aria/utils": "^3.19.0",
"@react-types/progress": "^3.4.1"
},
"devDependencies": {
+20
View File
@@ -1,5 +1,25 @@
# @nextui-org/radio
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
## 2.0.6
### Patch Changes
+9 -9
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/radio",
"version": "2.0.6",
"version": "2.0.8",
"description": "Radios allow users to select a single option from a list of mutually exclusive options.",
"keywords": [
"radio"
@@ -41,14 +41,14 @@
"@nextui-org/shared-utils": "workspace:*",
"@nextui-org/react-utils": "workspace:*",
"@nextui-org/system": "workspace:*",
"@react-aria/focus": "^3.13.0",
"@react-aria/interactions": "^3.16.0",
"@react-aria/radio": "^3.6.2",
"@react-aria/utils": "^3.18.0",
"@react-aria/visually-hidden": "^3.8.2",
"@react-stately/radio": "^3.8.2",
"@react-types/radio": "^3.4.2",
"@react-types/shared": "^3.18.1"
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/radio": "^3.7.0",
"@react-aria/utils": "^3.19.0",
"@react-aria/visually-hidden": "^3.8.3",
"@react-stately/radio": "^3.8.3",
"@react-types/radio": "^3.5.0",
"@react-types/shared": "^3.19.0"
},
"devDependencies": {
"@nextui-org/button": "workspace:*",
+20
View File
@@ -1,5 +1,25 @@
# @nextui-org/ripple
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
## 2.0.6
### Patch Changes
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/ripple",
"version": "2.0.6",
"version": "2.0.8",
"description": "A simple implementation to display a ripple animation when the source component is clicked",
"keywords": [
"ripple"
@@ -45,7 +45,7 @@
},
"devDependencies": {
"clean-package": "2.2.0",
"framer-motion": "^10.12.18",
"framer-motion": "^10.15.1",
"react": "^18.0.0"
},
"clean-package": "../../../clean-package.config.json"
+24
View File
@@ -1,5 +1,29 @@
# @nextui-org/snippet
## 2.0.9
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/tooltip@2.0.9
- @nextui-org/button@2.0.8
- @nextui-org/system@2.0.5
## 2.0.8
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
- @nextui-org/button@2.0.7
- @nextui-org/tooltip@2.0.8
## 2.0.7
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/snippet",
"version": "2.0.7",
"version": "2.0.9",
"description": "Display a snippet of copyable code for the command line.",
"keywords": [
"snippet"
@@ -46,8 +46,8 @@
"@nextui-org/shared-icons": "workspace:*",
"@nextui-org/use-clipboard": "workspace:*",
"@nextui-org/tooltip": "workspace:*",
"@react-aria/focus": "^3.13.0",
"@react-aria/utils": "^3.18.0"
"@react-aria/focus": "^3.14.0",
"@react-aria/utils": "^3.19.0"
},
"devDependencies": {
"clean-package": "2.2.0",
+20
View File
@@ -1,5 +1,25 @@
# @nextui-org/switch
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
## 2.0.6
### Patch Changes
+8 -8
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/switch",
"version": "2.0.6",
"version": "2.0.8",
"description": "A switch is similar to a checkbox, but represents on/off values as opposed to selection.",
"keywords": [
"switch"
@@ -41,13 +41,13 @@
"@nextui-org/react-utils": "workspace:*",
"@nextui-org/system": "workspace:*",
"@nextui-org/theme": "workspace:*",
"@react-aria/focus": "^3.13.0",
"@react-aria/interactions": "^3.16.0",
"@react-aria/switch": "^3.5.2",
"@react-aria/utils": "^3.18.0",
"@react-aria/visually-hidden": "^3.8.2",
"@react-stately/toggle": "^3.6.0",
"@react-types/shared": "^3.18.1"
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/switch": "^3.5.3",
"@react-aria/utils": "^3.19.0",
"@react-aria/visually-hidden": "^3.8.3",
"@react-stately/toggle": "^3.6.1",
"@react-types/shared": "^3.19.0"
},
"devDependencies": {
"clean-package": "2.2.0",
+22
View File
@@ -1,5 +1,27 @@
# @nextui-org/table
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/checkbox@2.0.8
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
- @nextui-org/checkbox@2.0.7
## 2.0.6
### Patch Changes
+10 -10
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/table",
"version": "2.0.6",
"version": "2.0.8",
"description": "Tables are used to display tabular data using rows and columns. ",
"keywords": [
"table"
@@ -44,14 +44,14 @@
"@nextui-org/spacer": "workspace:*",
"@nextui-org/system": "workspace:*",
"@nextui-org/theme": "workspace:*",
"@react-aria/focus": "^3.13.0",
"@react-aria/interactions": "^3.16.0",
"@react-aria/table": "^3.10.0",
"@react-aria/utils": "^3.18.0",
"@react-aria/visually-hidden": "^3.8.2",
"@react-stately/table": "^3.10.0",
"@react-types/grid": "^3.1.8",
"@react-types/table": "^3.7.0"
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/table": "^3.11.0",
"@react-aria/utils": "^3.19.0",
"@react-aria/visually-hidden": "^3.8.3",
"@react-stately/table": "^3.11.0",
"@react-types/grid": "^3.2.0",
"@react-types/table": "^3.8.0"
},
"devDependencies": {
"@nextui-org/chip": "workspace:*",
@@ -61,7 +61,7 @@
"@nextui-org/use-infinite-scroll": "workspace:*",
"@nextui-org/tooltip": "workspace:*",
"@nextui-org/user": "workspace:*",
"@react-stately/data": "^3.10.0",
"@react-stately/data": "^3.10.1",
"clean-package": "2.2.0",
"react": "^18.0.0"
},
@@ -2,7 +2,8 @@ import {HTMLNextUIProps} from "@nextui-org/system";
import {Row} from "@react-stately/table";
import {RowProps} from "@react-types/table";
export type TableRowProps = RowProps & Omit<HTMLNextUIProps<"tr">, keyof RowProps>;
export type TableRowProps<T = object> = RowProps<T> &
Omit<HTMLNextUIProps<"tr">, keyof RowProps<T>>;
const TableRow = Row as (props: TableRowProps) => JSX.Element;
@@ -272,7 +272,6 @@ export function useTable<T extends object>(originalProps: UseTableProps<T>) {
topContent,
bottomContent,
removeWrapper,
selectionMode,
topContentPlacement,
bottomContentPlacement,
getBaseProps,
+24
View File
@@ -1,5 +1,29 @@
# @nextui-org/tabs
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/framer-transitions@2.0.5
- @nextui-org/aria-utils@2.0.5
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
- @nextui-org/aria-utils@2.0.4
- @nextui-org/framer-transitions@2.0.4
## 2.0.6
### Patch Changes
+9 -9
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/tabs",
"version": "2.0.6",
"version": "2.0.8",
"description": "Tabs organize content into multiple sections and allow users to navigate between them.",
"keywords": [
"tabs"
@@ -46,17 +46,17 @@
"@nextui-org/framer-transitions": "workspace:*",
"@nextui-org/use-is-mounted": "workspace:*",
"@nextui-org/use-update-effect": "workspace:*",
"@react-aria/focus": "^3.13.0",
"@react-aria/interactions": "^3.16.0",
"@react-aria/tabs": "^3.6.1",
"@react-aria/utils": "^3.18.0",
"@react-stately/tabs": "^3.5.0",
"@react-types/shared": "^3.18.1",
"@react-types/tabs": "^3.3.0",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/tabs": "^3.6.2",
"@react-aria/utils": "^3.19.0",
"@react-stately/tabs": "^3.5.1",
"@react-types/shared": "^3.19.0",
"@react-types/tabs": "^3.3.1",
"scroll-into-view-if-needed": "3.0.10"
},
"devDependencies": {
"framer-motion": "^10.12.18",
"framer-motion": "^10.15.1",
"react-lorem-component": "0.13.0",
"@nextui-org/card": "workspace:*",
"@nextui-org/input": "workspace:*",
+24
View File
@@ -1,5 +1,29 @@
# @nextui-org/tooltip
## 2.0.9
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/framer-transitions@2.0.5
- @nextui-org/aria-utils@2.0.5
- @nextui-org/system@2.0.5
## 2.0.8
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
- @nextui-org/aria-utils@2.0.4
- @nextui-org/framer-transitions@2.0.4
## 2.0.7
### Patch Changes
+9 -9
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/tooltip",
"version": "2.0.7",
"version": "2.0.9",
"description": "A React Component for rendering dynamically positioned Tooltips",
"keywords": [
"tooltip"
@@ -44,17 +44,17 @@
"@nextui-org/system": "workspace:*",
"@nextui-org/theme": "workspace:*",
"@nextui-org/framer-transitions": "workspace:*",
"@react-aria/overlays": "^3.15.0",
"@react-aria/tooltip": "^3.6.0",
"@react-stately/tooltip": "^3.4.2",
"@react-aria/interactions": "^3.16.0",
"@react-aria/utils": "^3.18.0",
"@react-types/tooltip": "^3.4.2",
"@react-types/overlays": "^3.8.0"
"@react-aria/overlays": "^3.16.0",
"@react-aria/tooltip": "^3.6.1",
"@react-stately/tooltip": "^3.4.3",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0",
"@react-types/tooltip": "^3.4.3",
"@react-types/overlays": "^3.8.1"
},
"devDependencies": {
"@nextui-org/button": "workspace:*",
"framer-motion": "^10.12.18",
"framer-motion": "^10.15.1",
"clean-package": "2.2.0",
"react": "^18.0.0"
},
@@ -249,7 +249,6 @@ export function useTooltip(originalProps: UseTooltipProps) {
children,
isOpen,
triggerRef,
triggerProps,
showArrow,
portalContainer,
placement: placementProp,
+22
View File
@@ -1,5 +1,27 @@
# @nextui-org/user
## 2.0.8
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/avatar@2.0.8
- @nextui-org/system@2.0.5
## 2.0.7
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
- @nextui-org/avatar@2.0.7
## 2.0.6
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/user",
"version": "2.0.6",
"version": "2.0.8",
"description": "Flexible User Profile Component.",
"keywords": [
"user"
@@ -42,8 +42,8 @@
"@nextui-org/theme": "workspace:*",
"@nextui-org/shared-utils": "workspace:*",
"@nextui-org/react-utils": "workspace:*",
"@react-aria/focus": "^3.13.0",
"@react-aria/utils": "^3.18.0"
"@react-aria/focus": "^3.14.0",
"@react-aria/utils": "^3.19.0"
},
"devDependencies": {
"clean-package": "2.2.0",
+11 -4
View File
@@ -6,10 +6,10 @@ import {useFocusRing} from "@react-aria/focus";
import {HTMLNextUIProps, PropGetter} from "@nextui-org/system";
import {user} from "@nextui-org/theme";
import {clsx, dataAttr} from "@nextui-org/shared-utils";
import {ReactRef} from "@nextui-org/react-utils";
import {filterDOMProps, ReactRef} from "@nextui-org/react-utils";
import {useDOMRef} from "@nextui-org/react-utils";
import {mergeProps} from "@react-aria/utils";
export interface UseUserProps extends Omit<HTMLNextUIProps, "children"> {
interface Props {
/**
* Ref to the DOM node.
*/
@@ -49,6 +49,8 @@ export interface UseUserProps extends Omit<HTMLNextUIProps, "children"> {
classNames?: SlotsToClasses<UserSlots>;
}
export type UseUserProps = Props & Omit<HTMLNextUIProps<"div">, "children">;
export function useUser(props: UseUserProps) {
const {
as,
@@ -66,6 +68,7 @@ export function useUser(props: UseUserProps) {
} = props;
const Component = as || "div";
const shouldFilterDOMProps = typeof Component === "string";
const domRef = useDOMRef(ref);
@@ -88,7 +91,12 @@ export function useUser(props: UseUserProps) {
className: slots.base({
class: baseStyles,
}),
...mergeProps(otherProps, canBeFocused ? focusProps : {}),
...mergeProps(
filterDOMProps(otherProps, {
enabled: shouldFilterDOMProps,
}),
canBeFocused ? focusProps : {},
),
}),
[canBeFocused, slots, baseStyles, focusProps, otherProps],
);
@@ -101,7 +109,6 @@ export function useUser(props: UseUserProps) {
description,
classNames,
baseStyles,
focusProps,
avatarProps,
getUserProps,
};
+68
View File
@@ -1,5 +1,73 @@
# @nextui-org/react
## 2.0.12
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/pagination@2.0.9
- @nextui-org/accordion@2.0.8
- @nextui-org/checkbox@2.0.8
- @nextui-org/dropdown@2.0.8
- @nextui-org/progress@2.0.8
- @nextui-org/divider@2.0.7
- @nextui-org/popover@2.0.8
- @nextui-org/snippet@2.0.9
- @nextui-org/tooltip@2.0.9
- @nextui-org/avatar@2.0.8
- @nextui-org/button@2.0.8
- @nextui-org/navbar@2.0.8
- @nextui-org/switch@2.0.8
- @nextui-org/image@2.0.8
- @nextui-org/input@2.0.9
- @nextui-org/modal@2.0.9
- @nextui-org/radio@2.0.8
- @nextui-org/table@2.0.8
- @nextui-org/card@2.0.8
- @nextui-org/chip@2.0.8
- @nextui-org/link@2.0.8
- @nextui-org/tabs@2.0.8
- @nextui-org/user@2.0.8
- @nextui-org/kbd@2.0.7
- @nextui-org/system@2.0.5
- @nextui-org/badge@2.0.6
## 2.0.11
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
- @nextui-org/accordion@2.0.7
- @nextui-org/avatar@2.0.7
- @nextui-org/button@2.0.7
- @nextui-org/card@2.0.7
- @nextui-org/checkbox@2.0.7
- @nextui-org/chip@2.0.7
- @nextui-org/dropdown@2.0.7
- @nextui-org/image@2.0.7
- @nextui-org/input@2.0.8
- @nextui-org/link@2.0.7
- @nextui-org/modal@2.0.8
- @nextui-org/navbar@2.0.7
- @nextui-org/pagination@2.0.8
- @nextui-org/popover@2.0.7
- @nextui-org/progress@2.0.7
- @nextui-org/radio@2.0.7
- @nextui-org/snippet@2.0.8
- @nextui-org/switch@2.0.7
- @nextui-org/table@2.0.7
- @nextui-org/tabs@2.0.7
- @nextui-org/tooltip@2.0.8
- @nextui-org/user@2.0.7
- @nextui-org/badge@2.0.6
## 2.0.10
### Patch Changes
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/react",
"version": "2.0.10",
"version": "2.0.12",
"description": "🚀 Beautiful and modern React UI library.",
"author": "Junior Garcia <jrgarciadev@gmail.com>",
"homepage": "https://nextui.org",
@@ -72,7 +72,7 @@
"@nextui-org/kbd": "workspace:*",
"@nextui-org/tabs": "workspace:*",
"@nextui-org/skeleton": "workspace:*",
"@react-aria/visually-hidden": "^3.8.2"
"@react-aria/visually-hidden": "^3.8.3"
},
"peerDependencies": {
"react": ">=18",
+16
View File
@@ -1,5 +1,21 @@
# @nextui-org/system
## 2.0.5
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
## 2.0.4
### Patch Changes
- [#1350](https://github.com/nextui-org/nextui/pull/1350) [`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Needless exports removed from system pkg
## 2.0.3
### Patch Changes
-1
View File
@@ -1 +0,0 @@
export * from "./dist/extend-variants";
-1
View File
@@ -1 +0,0 @@
module.exports = require("./dist/extend-variants");
+4 -10
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/system",
"version": "2.0.3",
"version": "2.0.5",
"description": "NextUI system primitives",
"keywords": [
"system"
@@ -11,13 +11,7 @@
"main": "src/index.ts",
"sideEffects": false,
"files": [
"dist",
"utils.js",
"utils.d.ts",
"types.js",
"types.d.ts",
"extend-variants.js",
"extend-variants.d.ts"
"dist"
],
"publishConfig": {
"access": "public"
@@ -57,7 +51,7 @@
},
"dependencies": {
"@nextui-org/system-rsc": "workspace:*",
"@react-aria/i18n": "^3.8.0",
"@react-aria/overlays": "^3.15.0"
"@react-aria/i18n": "^3.8.1",
"@react-aria/overlays": "^3.16.0"
}
}
-1
View File
@@ -1 +0,0 @@
export * from "./dist/types";
-1
View File
@@ -1 +0,0 @@
module.exports = require("./dist/types");
-1
View File
@@ -1 +0,0 @@
export * from "./dist/utils";
-1
View File
@@ -1 +0,0 @@
module.exports = require("./dist/utils");
@@ -1,5 +1,15 @@
# @nextui-org/use-aria-accordion-item
## 2.0.3
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
## 2.0.2
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-aria-accordion-item",
"version": "2.0.2",
"version": "2.0.3",
"description": "Internal impl for react aria accordion item",
"keywords": [
"use-aria-accordion-item"
@@ -34,10 +34,10 @@
"postpack": "clean-package restore"
},
"dependencies": {
"@react-aria/focus": "^3.13.0",
"@react-stately/tree": "^3.7.0",
"@react-aria/button": "^3.8.0",
"@react-types/shared": "^3.18.1"
"@react-aria/focus": "^3.14.0",
"@react-stately/tree": "^3.7.1",
"@react-aria/button": "^3.8.1",
"@react-types/shared": "^3.19.0"
},
"peerDependencies": {
"react": ">=18"
@@ -1,5 +1,15 @@
# @nextui-org/use-aria-button
## 2.0.3
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
## 2.0.2
### Patch Changes
+6 -6
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-aria-button",
"version": "2.0.2",
"version": "2.0.3",
"description": "Internal hook to handle button a11y and events, this is based on react-aria button hook but without the onClick warning",
"keywords": [
"use-aria-button"
@@ -37,11 +37,11 @@
"react": ">=18"
},
"dependencies": {
"@react-aria/utils": "^3.18.0",
"@react-aria/focus": "^3.13.0",
"@react-aria/interactions": "^3.16.0",
"@react-types/button": "^3.7.3",
"@react-types/shared": "^3.18.1"
"@react-aria/utils": "^3.19.0",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-types/button": "^3.7.4",
"@react-types/shared": "^3.19.0"
},
"devDependencies": {
"clean-package": "2.2.0",
@@ -1,5 +1,15 @@
# @nextui-org/use-aria-modal-overlay
## 2.0.3
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
## 2.0.2
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-aria-modal-overlay",
"version": "2.0.2",
"version": "2.0.3",
"description": "A custom implementation of react aria modal overlay, this removes the prevent scroll",
"keywords": [
"use-aria-modal-overlay"
@@ -34,10 +34,10 @@
"postpack": "clean-package restore"
},
"dependencies": {
"@react-aria/overlays": "^3.15.0",
"@react-stately/overlays": "^3.6.0",
"@react-types/shared": "^3.18.1",
"@react-aria/utils": "^3.18.0"
"@react-aria/overlays": "^3.16.0",
"@react-stately/overlays": "^3.6.1",
"@react-types/shared": "^3.19.0",
"@react-aria/utils": "^3.19.0"
},
"peerDependencies": {
"react": ">=18"
@@ -1,5 +1,18 @@
# @nextui-org/use-aria-toggle-button
## 2.0.3
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/use-aria-button@2.0.3
## 2.0.2
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-aria-toggle-button",
"version": "2.0.2",
"version": "2.0.3",
"description": "Internal hook to handle button a11y and events, this is based on react-aria button hook but without the onClick warning",
"keywords": [
"use-aria-toggle-button"
@@ -38,10 +38,10 @@
},
"dependencies": {
"@nextui-org/use-aria-button": "workspace:*",
"@react-stately/toggle": "^3.6.0",
"@react-aria/utils": "^3.18.0",
"@react-types/shared": "^3.18.1",
"@react-types/button": "^3.7.3"
"@react-stately/toggle": "^3.6.1",
"@react-aria/utils": "^3.19.0",
"@react-types/shared": "^3.19.0",
"@react-types/button": "^3.7.4"
},
"devDependencies": {
"clean-package": "2.2.0",
@@ -1,5 +1,15 @@
# @nextui-org/use-disclosure
## 2.0.3
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
## 2.0.2
### Patch Changes
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-disclosure",
"version": "2.0.2",
"version": "2.0.3",
"description": "The hook in charge of managing modals",
"keywords": [
"use-disclosure"
@@ -39,7 +39,7 @@
"dependencies": {
"@nextui-org/use-callback-ref": "workspace:*",
"@react-stately/utils": "^3.7.0",
"@react-aria/utils": "^3.18.0"
"@react-aria/utils": "^3.19.0"
},
"devDependencies": {
"clean-package": "2.2.0",
+10
View File
@@ -1,5 +1,15 @@
# @nextui-org/use-is-mobile
## 2.0.3
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
## 2.0.2
### Patch Changes
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-is-mobile",
"version": "2.0.2",
"version": "2.0.3",
"description": "A hook that returns whether the device is mobile or not",
"keywords": [
"use-is-mobile"
@@ -34,7 +34,7 @@
"postpack": "clean-package restore"
},
"dependencies": {
"@react-aria/ssr": "^3.6.0"
"@react-aria/ssr": "^3.7.1"
},
"peerDependencies": {
"react": ">=18"

Before

Width:  |  Height:  |  Size: 328 KiB

After

Width:  |  Height:  |  Size: 328 KiB

Before

Width:  |  Height:  |  Size: 6.8 MiB

After

Width:  |  Height:  |  Size: 6.8 MiB

Before

Width:  |  Height:  |  Size: 102 KiB

After

Width:  |  Height:  |  Size: 102 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

@@ -1,5 +1,25 @@
# @nextui-org/aria-utils
## 2.0.5
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/system@2.0.5
## 2.0.4
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
## 2.0.3
### Patch Changes
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/aria-utils",
"version": "2.0.3",
"version": "2.0.5",
"description": "A package for managing @react-aria nextui utils.",
"keywords": [
"aria-utils"
@@ -38,10 +38,10 @@
},
"dependencies": {
"@nextui-org/system": "workspace:*",
"@react-aria/utils": "^3.18.0",
"@react-stately/collections": "^3.9.0",
"@react-types/shared": "^3.18.1",
"@react-types/overlays": "^3.8.0"
"@react-aria/utils": "^3.19.0",
"@react-stately/collections": "^3.10.0",
"@react-types/shared": "^3.19.0",
"@react-types/overlays": "^3.8.1"
},
"devDependencies": {
"clean-package": "2.2.0",
@@ -1,5 +1,25 @@
# @nextui-org/framer-transitions
## 2.0.5
### Patch Changes
- [#1359](https://github.com/nextui-org/nextui/pull/1359) [`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - \n
- react-aria packages updgraded to the latest version
- image storybooks fixed
- other bug fixes..
- Updated dependencies [[`a30cec48`](https://github.com/nextui-org/nextui/commit/a30cec4810988fb1962f3a61e0fc0362de08b171)]:
- @nextui-org/system@2.0.5
## 2.0.4
### Patch Changes
- Updated dependencies [[`710395f3`](https://github.com/nextui-org/nextui/commit/710395f3a2ca44238332237a49e948c933abe63d)]:
- @nextui-org/system@2.0.4
## 2.0.3
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/framer-transitions",
"version": "2.0.3",
"version": "2.0.5",
"description": "A set of framer motion transitions for react",
"keywords": [
"framer-transitions"
@@ -44,7 +44,7 @@
"devDependencies": {
"react": "^18.0.0",
"clean-package": "2.2.0",
"framer-motion": "^10.12.18"
"framer-motion": "^10.15.1"
},
"clean-package": "../../../clean-package.config.json"
}
+1584 -987
View File
File diff suppressed because it is too large Load Diff