Compare commits

...

9 Commits

Author SHA1 Message Date
Junior Garcia db0e26a003 ci(changesets): version packages 2023-11-05 10:02:18 -03:00
Junior Garcia 38af48faf5 fix(core): update peer dependencies for several packages 2023-11-05 09:53:57 -03:00
Junior Garcia 5b60840751 chore(root): main conflicts merge fixed 2023-11-05 09:28:58 -03:00
Junior Garcia 4c56839db0 fix(root): changeset message 2023-11-05 09:27:56 -03:00
Junior Garcia ef61a3fe09 Revert "fix(root): peer dependecies update only when out of range"
This reverts commit bc4927c901.
2023-11-05 09:25:52 -03:00
Junior Garcia bc4927c901 fix(root): peer dependecies update only when out of range 2023-11-05 09:23:28 -03:00
Junior Garcia 4191feab2a fix(docs): update hoverOpacity in layout theme 2023-11-05 09:03:39 -03:00
Junior Garcia fe8647bd1d fix(docs): router import added to the routing next.js app docs 2023-11-05 08:59:16 -03:00
Junior Garcia 23992572ea fix(select): add button component and update select component 2023-11-05 08:52:33 -03:00
89 changed files with 564 additions and 119 deletions
@@ -39,6 +39,7 @@ export default function App() {
label="Favorite Animal"
placeholder="Select an animal"
defaultSelectedKeys={["cat"]}
onOpenChange={(open) => open !== isOpen && setIsOpen(open)}
className="max-w-xs"
>
{animals.map((animal) => (
@@ -74,8 +74,8 @@ module.exports = {
},
themes: {
light: {
hoverOpacity: 0.8, // this value is applied as opacity-[value] when the component is hovered
layout: {
hoverOpacity: 0.8, // this value is applied as opacity-[value] when the component is hovered
boxShadow: {
// shadow-small
small:
+2 -1
View File
@@ -59,6 +59,7 @@ Go to your `app/providers.tsx` or `app/providers.jsx` (create it if it doesn't e
'use client'
import {NextUIProvider} from '@nextui-org/react';
import {useRouter} from 'next/navigation'
export function Providers({children}: { children: React.ReactNode }) {
const router = useRouter();
@@ -105,8 +106,8 @@ from `next/router`, it returns a router object that can be used to perform navig
```tsx
// pages/_app.tsx
import type { AppProps } from 'next/app';
import {useRouter} from 'next/router';
import {NextUIProvider} from '@nextui-org/react';
import {useRouter} from 'next/router';
function MyApp({ Component, pageProps }: AppProps) {
const router = useRouter();
@@ -1,5 +1,17 @@
# @nextui-org/accordion
## 2.0.25
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/divider@2.0.22
- @nextui-org/system@2.0.12
- @nextui-org/aria-utils@2.0.12
- @nextui-org/framer-transitions@2.0.12
## 2.0.24
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/accordion",
"version": "2.0.24",
"version": "2.0.25",
"description": "Collapse display a list of high-level options that can expand/collapse to reveal more information.",
"keywords": [
"react",
@@ -43,8 +43,8 @@
"react": ">=18",
"react-dom": ">=18",
"framer-motion": ">=4.0.0",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/aria-utils": "workspace:*",
@@ -1,5 +1,21 @@
# @nextui-org/autocomplete
## 2.0.3
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/scroll-shadow@2.1.11
- @nextui-org/listbox@2.1.12
- @nextui-org/popover@2.1.11
- @nextui-org/spinner@2.0.21
- @nextui-org/button@2.0.23
- @nextui-org/input@2.1.12
- @nextui-org/system@2.0.12
- @nextui-org/aria-utils@2.0.12
## 2.0.2
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/autocomplete",
"version": "2.0.2",
"version": "2.0.3",
"description": "An autocomplete combines a text input with a listbox, allowing users to filter a list of options to items matching a query.",
"keywords": [
"autocomplete"
@@ -37,8 +37,8 @@
"react": ">=18",
"react-dom": ">=18",
"framer-motion": ">=4.0.0",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/aria-utils": "workspace:*",
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/avatar
## 2.0.23
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
## 2.0.22
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/avatar",
"version": "2.0.22",
"version": "2.0.23",
"description": "The Avatar component is used to represent a user, and displays the profile picture, initials or fallback icon.",
"keywords": [
"avatar"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/badge
## 2.0.21
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/system-rsc@2.0.8
## 2.0.20
### Patch Changes
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/badge",
"version": "2.0.20",
"version": "2.0.21",
"description": "Badges are used as a small numerical value or status descriptor for UI elements.",
"keywords": [
"badge"
@@ -36,7 +36,7 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12"
"@nextui-org/theme": ">=2.1.0"
},
"dependencies": {
"@nextui-org/system-rsc": "workspace:*",
@@ -1,5 +1,14 @@
# @nextui-org/breadcrumbs
## 2.0.2
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
## 2.0.1
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/breadcrumbs",
"version": "2.0.1",
"version": "2.0.2",
"description": "Breadcrumbs display a hierarchy of links to the current page or resource in an application.",
"keywords": [
"breadcrumbs"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/react-utils": "workspace:*",
+11
View File
@@ -1,5 +1,16 @@
# @nextui-org/button
## 2.0.23
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/spinner@2.0.21
- @nextui-org/ripple@2.0.23
- @nextui-org/system@2.0.12
## 2.0.22
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/button",
"version": "2.0.22",
"version": "2.0.23",
"description": "Buttons allow users to perform actions and choose with a single tap.",
"keywords": [
"button"
@@ -37,8 +37,8 @@
"react": ">=18",
"react-dom": ">=18",
"framer-motion": ">=4.0.0",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
+10
View File
@@ -1,5 +1,15 @@
# @nextui-org/card
## 2.0.23
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/ripple@2.0.23
- @nextui-org/system@2.0.12
## 2.0.22
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/card",
"version": "2.0.22",
"version": "2.0.23",
"description": "Card is a container for text, photos, and actions in the context of a single subject.",
"keywords": [
"card"
@@ -37,8 +37,8 @@
"react": ">=18",
"react-dom": ">=18",
"framer-motion": ">=4.0.0",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
@@ -1,5 +1,14 @@
# @nextui-org/checkbox
## 2.0.24
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
## 2.0.23
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/checkbox",
"version": "2.0.23",
"version": "2.0.24",
"description": "Checkboxes allow users to select multiple items from a list of individual items, or to mark one individual item as selected.",
"keywords": [
"checkbox"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/chip
## 2.0.23
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
## 2.0.22
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/chip",
"version": "2.0.22",
"version": "2.0.23",
"description": "Chips help people enter information, make selections, filter content, or trigger actions.",
"keywords": [
"chip"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-icons": "workspace:*",
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/code
## 2.0.21
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/system-rsc@2.0.8
## 2.0.20
### Patch Changes
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/code",
"version": "2.0.20",
"version": "2.0.21",
"description": "Code is a component used to display inline code.",
"keywords": [
"code"
@@ -36,7 +36,7 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12"
"@nextui-org/theme": ">=2.1.0"
},
"dependencies": {
"@nextui-org/system-rsc": "workspace:*",
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/divider
## 2.0.22
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/system-rsc@2.0.8
## 2.0.21
### Patch Changes
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/divider",
"version": "2.0.21",
"version": "2.0.22",
"description": ". A separator is a visual divider between two groups of content",
"keywords": [
"divider"
@@ -36,7 +36,7 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12"
"@nextui-org/theme": ">=2.1.0"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
+11
View File
@@ -1,5 +1,16 @@
# @nextui-org/dropdown
## 2.1.12
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/popover@2.1.11
- @nextui-org/menu@2.0.13
- @nextui-org/system@2.0.12
## 2.1.11
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/dropdown",
"version": "2.1.11",
"version": "2.1.12",
"description": "A dropdown displays a list of actions or options that a user can choose.",
"keywords": [
"dropdown"
@@ -37,8 +37,8 @@
"react": ">=18",
"react-dom": ">=18",
"framer-motion": ">=4.0.0",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/menu": "workspace:*",
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/image
## 2.0.23
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
## 2.0.22
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/image",
"version": "2.0.22",
"version": "2.0.23",
"description": "A simple image component",
"keywords": [
"image"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/input
## 2.1.12
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
## 2.1.11
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/input",
"version": "2.1.11",
"version": "2.1.12",
"description": "The input component is designed for capturing user input within a text field.",
"keywords": [
"input"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/react-utils": "workspace:*",
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/kbd
## 2.0.22
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/system-rsc@2.0.8
## 2.0.21
### Patch Changes
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/kbd",
"version": "2.0.21",
"version": "2.0.22",
"description": "The keyboard key components indicates which key or set of keys used to execute a specificv action",
"keywords": [
"kbd"
@@ -36,7 +36,7 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12"
"@nextui-org/theme": ">=2.1.0"
},
"dependencies": {
"@nextui-org/system-rsc": "workspace:*",
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/link
## 2.0.24
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
## 2.0.23
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/link",
"version": "2.0.23",
"version": "2.0.24",
"description": "Links allow users to click their way from page to page. This component is styled to resemble a hyperlink and semantically renders an <a>",
"keywords": [
"link"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
+11
View File
@@ -1,5 +1,16 @@
# @nextui-org/listbox
## 2.1.12
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/divider@2.0.22
- @nextui-org/system@2.0.12
- @nextui-org/aria-utils@2.0.12
## 2.1.11
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/listbox",
"version": "2.1.11",
"version": "2.1.12",
"description": "A listbox displays a list of options and allows a user to select one or more of them.",
"keywords": [
"listbox"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/react-utils": "workspace:*",
+11
View File
@@ -1,5 +1,16 @@
# @nextui-org/menu
## 2.0.13
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/divider@2.0.22
- @nextui-org/system@2.0.12
- @nextui-org/aria-utils@2.0.12
## 2.0.12
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/menu",
"version": "2.0.12",
"version": "2.0.13",
"description": "A menu displays a list of options and allows a user to select one or more of them.",
"keywords": [
"menu"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/divider": "workspace:*",
+10
View File
@@ -1,5 +1,15 @@
# @nextui-org/modal
## 2.0.25
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
- @nextui-org/framer-transitions@2.0.12
## 2.0.24
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/modal",
"version": "2.0.24",
"version": "2.0.25",
"description": "Displays a dialog with a custom content that requires attention or provides additional information.",
"keywords": [
"modal"
@@ -37,8 +37,8 @@
"react": ">=18",
"react-dom": ">=18",
"framer-motion": ">=4.0.0",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/use-disclosure": "workspace:*",
+10
View File
@@ -1,5 +1,15 @@
# @nextui-org/navbar
## 2.0.24
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
- @nextui-org/framer-transitions@2.0.12
## 2.0.23
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/navbar",
"version": "2.0.23",
"version": "2.0.24",
"description": "A responsive navigation header positioned on top side of your page that includes support for branding, links, navigation, collapse and more.",
"keywords": [
"navbar"
@@ -37,8 +37,8 @@
"react": ">=18",
"react-dom": ">=18",
"framer-motion": ">=4.0.0",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
@@ -1,5 +1,14 @@
# @nextui-org/pagination
## 2.0.24
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
## 2.0.23
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/pagination",
"version": "2.0.23",
"version": "2.0.24",
"description": "The Pagination component allows you to display active page and navigate between multiple pages.",
"keywords": [
"pagination"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
+12
View File
@@ -1,5 +1,17 @@
# @nextui-org/popover
## 2.1.11
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/button@2.0.23
- @nextui-org/system@2.0.12
- @nextui-org/aria-utils@2.0.12
- @nextui-org/framer-transitions@2.0.12
## 2.1.10
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/popover",
"version": "2.1.10",
"version": "2.1.11",
"description": "A popover is an overlay element positioned relative to a trigger.",
"keywords": [
"popover"
@@ -37,8 +37,8 @@
"react": ">=18",
"react-dom": ">=18",
"framer-motion": ">=4.0.0",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/aria-utils": "workspace:*",
@@ -1,5 +1,14 @@
# @nextui-org/progress
## 2.0.23
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
## 2.0.22
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/progress",
"version": "2.0.22",
"version": "2.0.23",
"description": "Progress bars show either determinate or indeterminate progress of an operation over time.",
"keywords": [
"progress"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/radio
## 2.0.24
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
## 2.0.23
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/radio",
"version": "2.0.23",
"version": "2.0.24",
"description": "Radios allow users to select a single option from a list of mutually exclusive options.",
"keywords": [
"radio"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/ripple
## 2.0.23
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
## 2.0.22
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/ripple",
"version": "2.0.22",
"version": "2.0.23",
"description": "A simple implementation to display a ripple animation when the source component is clicked",
"keywords": [
"ripple"
@@ -37,8 +37,8 @@
"react": ">=18",
"react-dom": ">=18",
"framer-motion": ">=4.0.0",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
@@ -1,5 +1,14 @@
# @nextui-org/scroll-shadow
## 2.1.11
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
## 2.1.10
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/scroll-shadow",
"version": "2.1.10",
"version": "2.1.11",
"description": "A component that applies top and bottom shadows when content overflows on scroll.",
"keywords": [
"scroll-shadow"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
+14
View File
@@ -1,5 +1,19 @@
# @nextui-org/select
## 2.1.15
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/scroll-shadow@2.1.11
- @nextui-org/listbox@2.1.12
- @nextui-org/popover@2.1.11
- @nextui-org/spinner@2.0.21
- @nextui-org/system@2.0.12
- @nextui-org/aria-utils@2.0.12
## 2.1.14
### Patch Changes
+4 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/select",
"version": "2.1.14",
"version": "2.1.15",
"description": "A select displays a collapsible list of options and allows a user to select one of them.",
"keywords": [
"select"
@@ -37,8 +37,8 @@
"react": ">=18",
"react-dom": ">=18",
"framer-motion": ">=4.0.0",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/aria-utils": "workspace:*",
@@ -60,6 +60,7 @@
"devDependencies": {
"@nextui-org/theme": "workspace:*",
"@nextui-org/system": "workspace:*",
"@nextui-org/button": "workspace:*",
"@nextui-org/avatar": "workspace:*",
"@nextui-org/input": "workspace:*",
"@nextui-org/chip": "workspace:*",
@@ -5,6 +5,7 @@ import {select, button} from "@nextui-org/theme";
import {PetBoldIcon, SelectorIcon} from "@nextui-org/shared-icons";
import {Avatar} from "@nextui-org/avatar";
import {Chip} from "@nextui-org/chip";
import {Button} from "@nextui-org/button";
import {Selection} from "@react-types/shared";
import {useInfiniteScroll} from "@nextui-org/use-infinite-scroll";
import {
@@ -211,17 +212,12 @@ const ControlledOpenTemplate = ({color, variant, ...args}: SelectProps<Animal>)
isOpen={isOpen}
label="Favorite Animal"
variant={variant}
onOpenChange={(open) => open !== isOpen && setIsOpen(open)}
{...args}
>
{items}
</Select>
<button
className={button({className: "max-w-fit"})}
type="button"
onClick={() => setIsOpen(!isOpen)}
>
{isOpen ? "Close" : "Open"}
</button>
<Button onPress={() => setIsOpen(!isOpen)}>{isOpen ? "Close" : "Open"}</Button>
</div>
);
};
@@ -1,5 +1,14 @@
# @nextui-org/skeleton
## 2.0.21
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/system-rsc@2.0.8
## 2.0.20
### Patch Changes
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/skeleton",
"version": "2.0.20",
"version": "2.0.21",
"description": "Skeleton is used to display the loading state of some component.",
"keywords": [
"skeleton"
@@ -36,7 +36,7 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12"
"@nextui-org/theme": ">=2.1.0"
},
"dependencies": {
"@nextui-org/system-rsc": "workspace:*",
+10
View File
@@ -1,5 +1,15 @@
# @nextui-org/slider
## 2.2.2
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/tooltip@2.0.26
- @nextui-org/system@2.0.12
## 2.2.1
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/slider",
"version": "2.2.1",
"version": "2.2.2",
"description": "A slider allows a user to select one or more values within a range.",
"keywords": [
"slider"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
+11
View File
@@ -1,5 +1,16 @@
# @nextui-org/snippet
## 2.0.27
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/tooltip@2.0.26
- @nextui-org/button@2.0.23
- @nextui-org/system@2.0.12
## 2.0.26
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/snippet",
"version": "2.0.26",
"version": "2.0.27",
"description": "Display a snippet of copyable code for the command line.",
"keywords": [
"snippet"
@@ -37,8 +37,8 @@
"react": ">=18",
"react-dom": ">=18",
"framer-motion": ">=4.0.0",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/button": "workspace:*",
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/spacer
## 2.0.21
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/system-rsc@2.0.8
## 2.0.20
### Patch Changes
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/spacer",
"version": "2.0.20",
"version": "2.0.21",
"description": "A flexible spacer component designed to create consistent spacing and maintain alignment in your layout.",
"keywords": [
"spacer"
@@ -36,7 +36,7 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12"
"@nextui-org/theme": ">=2.1.0"
},
"dependencies": {
"@nextui-org/system-rsc": "workspace:*",
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/spinner
## 2.0.21
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/system-rsc@2.0.8
## 2.0.20
### Patch Changes
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/spinner",
"version": "2.0.20",
"version": "2.0.21",
"description": "Loaders express an unspecified wait time or display the length of a process.",
"keywords": [
"loading",
@@ -38,7 +38,7 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12"
"@nextui-org/theme": ">=2.1.0"
},
"dependencies": {
"@nextui-org/system-rsc": "workspace:*",
+9
View File
@@ -1,5 +1,14 @@
# @nextui-org/switch
## 2.0.23
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
## 2.0.22
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/switch",
"version": "2.0.22",
"version": "2.0.23",
"description": "A switch is similar to a checkbox, but represents on/off values as opposed to selection.",
"keywords": [
"switch"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
+11
View File
@@ -1,5 +1,16 @@
# @nextui-org/table
## 2.0.25
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/checkbox@2.0.24
- @nextui-org/spacer@2.0.21
- @nextui-org/system@2.0.12
## 2.0.24
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/table",
"version": "2.0.24",
"version": "2.0.25",
"description": "Tables are used to display tabular data using rows and columns. ",
"keywords": [
"table"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/checkbox": "workspace:*",
+11
View File
@@ -1,5 +1,16 @@
# @nextui-org/tabs
## 2.0.23
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
- @nextui-org/aria-utils@2.0.12
- @nextui-org/framer-transitions@2.0.12
## 2.0.22
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/tabs",
"version": "2.0.22",
"version": "2.0.23",
"description": "Tabs organize content into multiple sections and allow users to navigate between them.",
"keywords": [
"tabs"
@@ -37,8 +37,8 @@
"react": ">=18",
"react-dom": ">=18",
"framer-motion": ">=4.0.0",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
+11
View File
@@ -1,5 +1,16 @@
# @nextui-org/tooltip
## 2.0.26
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies []:
- @nextui-org/system@2.0.12
- @nextui-org/aria-utils@2.0.12
- @nextui-org/framer-transitions@2.0.12
## 2.0.25
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/tooltip",
"version": "2.0.25",
"version": "2.0.26",
"description": "A React Component for rendering dynamically positioned Tooltips",
"keywords": [
"tooltip"
@@ -37,8 +37,8 @@
"react": ">=18",
"react-dom": ">=18",
"framer-motion": ">=4.0.0",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/shared-utils": "workspace:*",
+10
View File
@@ -1,5 +1,15 @@
# @nextui-org/user
## 2.0.24
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/avatar@2.0.23
- @nextui-org/system@2.0.12
## 2.0.23
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/user",
"version": "2.0.23",
"version": "2.0.24",
"description": "Flexible User Profile Component.",
"keywords": [
"user"
@@ -36,8 +36,8 @@
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/system": ">=2.0.11"
"@nextui-org/theme": ">=2.1.0",
"@nextui-org/system": ">=2.0.12"
},
"dependencies": {
"@nextui-org/avatar": "workspace:*",
+44
View File
@@ -1,5 +1,49 @@
# @nextui-org/react
## 2.2.3
### Patch Changes
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/scroll-shadow@2.1.11
- @nextui-org/autocomplete@2.0.3
- @nextui-org/breadcrumbs@2.0.2
- @nextui-org/pagination@2.0.24
- @nextui-org/accordion@2.0.25
- @nextui-org/checkbox@2.0.24
- @nextui-org/dropdown@2.1.12
- @nextui-org/progress@2.0.23
- @nextui-org/skeleton@2.0.21
- @nextui-org/divider@2.0.22
- @nextui-org/listbox@2.1.12
- @nextui-org/popover@2.1.11
- @nextui-org/snippet@2.0.27
- @nextui-org/spinner@2.0.21
- @nextui-org/tooltip@2.0.26
- @nextui-org/avatar@2.0.23
- @nextui-org/button@2.0.23
- @nextui-org/navbar@2.0.24
- @nextui-org/ripple@2.0.23
- @nextui-org/select@2.1.15
- @nextui-org/slider@2.2.2
- @nextui-org/spacer@2.0.21
- @nextui-org/switch@2.0.23
- @nextui-org/badge@2.0.21
- @nextui-org/image@2.0.23
- @nextui-org/input@2.1.12
- @nextui-org/modal@2.0.25
- @nextui-org/radio@2.0.24
- @nextui-org/table@2.0.25
- @nextui-org/card@2.0.23
- @nextui-org/chip@2.0.23
- @nextui-org/code@2.0.21
- @nextui-org/link@2.0.24
- @nextui-org/menu@2.0.13
- @nextui-org/tabs@2.0.23
- @nextui-org/user@2.0.24
- @nextui-org/kbd@2.0.22
- @nextui-org/system@2.0.12
## 2.2.2
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/react",
"version": "2.2.2",
"version": "2.2.3",
"description": "🚀 Beautiful and modern React UI library.",
"author": "Junior Garcia <jrgarciadev@gmail.com>",
"homepage": "https://nextui.org",
+6
View File
@@ -1,5 +1,11 @@
# @nextui-org/system-rsc
## 2.0.8
### Patch Changes
- [#1874](https://github.com/nextui-org/nextui/pull/1874) [`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Peer dependencies updated to avoid the peer conflicts issue.
## 2.0.7
### Patch Changes
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/system-rsc",
"version": "2.0.7",
"version": "2.0.8",
"description": "NextUI system primitives compatibles with RSC imports",
"keywords": [
"system-rsc"
@@ -35,7 +35,7 @@
},
"peerDependencies": {
"react": ">=18",
"@nextui-org/theme": ">=2.1.12",
"@nextui-org/theme": ">=2.1.0",
"tailwind-variants": ">=0.1.13"
},
"devDependencies": {
+7
View File
@@ -1,5 +1,12 @@
# @nextui-org/system
## 2.0.12
### Patch Changes
- Updated dependencies [[`38af48faf`](https://github.com/nextui-org/nextui/commit/38af48faf5b62d2f81f2402f3d83d78991eb46e0)]:
- @nextui-org/system-rsc@2.0.8
## 2.0.11
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/system",
"version": "2.0.11",
"version": "2.0.12",
"description": "NextUI system primitives",
"keywords": [
"system"
@@ -1,5 +1,12 @@
# @nextui-org/aria-utils
## 2.0.12
### Patch Changes
- Updated dependencies []:
- @nextui-org/system@2.0.12
## 2.0.11
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/aria-utils",
"version": "2.0.11",
"version": "2.0.12",
"description": "A package for managing @react-aria nextui utils.",
"keywords": [
"aria-utils"
@@ -1,5 +1,12 @@
# @nextui-org/framer-transitions
## 2.0.12
### Patch Changes
- Updated dependencies []:
- @nextui-org/system@2.0.12
## 2.0.11
### Patch Changes
@@ -1,6 +1,6 @@
{
"name": "@nextui-org/framer-transitions",
"version": "2.0.11",
"version": "2.0.12",
"description": "A set of framer motion transitions for react",
"keywords": [
"framer-transitions"
+3
View File
@@ -2032,6 +2032,9 @@ importers:
'@nextui-org/avatar':
specifier: workspace:*
version: link:../avatar
'@nextui-org/button':
specifier: workspace:*
version: link:../button
'@nextui-org/chip':
specifier: workspace:*
version: link:../chip