feat(root): packages updated

This commit is contained in:
Junior Garcia 2023-06-14 01:48:42 -03:00
parent 1ec784b3a5
commit 3406c29911
127 changed files with 2547 additions and 78 deletions

2
.gitignore vendored
View File

@ -48,6 +48,8 @@ esm
examples/**/yarn.lock
examples/**/out
examples/**/.next
packages/**/*.backup
packages/**/*.backup.ts
.vercel

View File

@ -32,7 +32,7 @@ If you are starting a new project, you can run one of the following command to c
commands={{
npm: 'npx create-next-app -e https://github.com/nextui-org/next-app-template',
yarn: 'yarn create next-app -e https://github.com/nextui-org/next-app-template',
pnpm: 'pnpx create next-app -e https://github.com/nextui-org/next-app-template'
pnpm: 'pnpm create next-app -e https://github.com/nextui-org/next-app-template'
}}
/>
@ -128,7 +128,7 @@ the `use client;` directive:
```jsx {2}
// app/page.tsx
import {Button} from '@nextui-org/button'
import {Button} from '@nextui-org/button';
export default function Page() {
return (
@ -138,7 +138,6 @@ export default function Page() {
)
}
```
> **Important 🚨**: Note that you need to import the component from the individual package, not the from `@nextui-org/react`.
### Setup pnpm (optional)
@ -168,7 +167,7 @@ If you are starting a new project, you can run one of the following command to c
commands={{
npm: 'npx create-next-app -e https://github.com/nextui-org/next-pages-template',
yarn: 'yarn create next-app -e https://github.com/nextui-org/next-pages-template',
pnpm: 'pnpx create next-app -e https://github.com/nextui-org/next-pages-template'
pnpm: 'pnpm create next-app -e https://github.com/nextui-org/next-pages-template'
}}
/>

View File

@ -325,7 +325,7 @@ module.exports = {
"code-mdx": "#ff4ecd",
},
dark: {
"code-background": "#0B0B0B",
"code-background": "#0D0B0B",
"code-mdx": "#06B7DB",
},
},

View File

@ -1,5 +1,65 @@
# @nextui-org/accordion
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/use-aria-accordion-item@0.0.0-dev-v2-20230614044324
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614044324
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614044324
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/use-aria-accordion-item@0.0.0-dev-v2-20230614043419
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614043419
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614043419
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/use-aria-accordion-item@0.0.0-dev-v2-20230614042446
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614042446
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614042446
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/use-aria-accordion-item@0.0.0-dev-v2-20230614033154
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614033154
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614033154
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/accordion",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Collapse display a list of high-level options that can expand/collapse to reveal more information.",
"keywords": [
"react",

View File

@ -1,5 +1,53 @@
# @nextui-org/avatar
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/use-image@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/use-image@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/use-image@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/use-image@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/avatar",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "The Avatar component is used to represent a user, and displays the profile picture, initials or fallback icon.",
"keywords": [
"avatar"

View File

@ -1,5 +1,49 @@
# @nextui-org/badge
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/badge",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Badges are used as a small numerical value or status descriptor for UI elements.",
"keywords": [
"badge"

View File

@ -1,5 +1,61 @@
# @nextui-org/button
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/spinner@0.0.0-dev-v2-20230614044324
- @nextui-org/drip@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/spinner@0.0.0-dev-v2-20230614043419
- @nextui-org/drip@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/spinner@0.0.0-dev-v2-20230614042446
- @nextui-org/drip@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/spinner@0.0.0-dev-v2-20230614033154
- @nextui-org/drip@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/button",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Buttons allow users to perform actions and choose with a single tap.",
"keywords": [
"button"

View File

@ -1,5 +1,3 @@
"use client";
import Button from "./button";
import ButtonGroup from "./button-group";

View File

@ -1,5 +1,57 @@
# @nextui-org/card
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/drip@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/drip@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/drip@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/drip@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/card",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Card is a container for text, photos, and actions in the context of a single subject.",
"keywords": [
"card"

View File

@ -1,5 +1,49 @@
# @nextui-org/checkbox
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/checkbox",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Checkboxes allow users to select multiple items from a list of individual items, or to mark one individual item as selected.",
"keywords": [
"checkbox"

View File

@ -1,5 +1,53 @@
# @nextui-org/chip
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614044324
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614043419
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614042446
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614033154
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/chip",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Chips help people enter information, make selections, filter content, or trigger actions.",
"keywords": [
"chip"

View File

@ -1,5 +1,49 @@
# @nextui-org/code
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/code",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Code is a component used to display inline code.",
"keywords": [
"code"

View File

@ -1,5 +1,49 @@
# @nextui-org/divider
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/divider",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": ". A separator is a visual divider between two groups of content",
"keywords": [
"divider"

View File

@ -1,5 +1,45 @@
# @nextui-org/drip
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/drip",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "A ripple effect for ensuring that the user fells the system is reacting instantaneously",
"keywords": [
"drip"

View File

@ -1,5 +1,61 @@
# @nextui-org/dropdown
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/use-is-mobile@0.0.0-dev-v2-20230614044324
- @nextui-org/popover@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/use-is-mobile@0.0.0-dev-v2-20230614043419
- @nextui-org/popover@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/use-is-mobile@0.0.0-dev-v2-20230614042446
- @nextui-org/popover@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/use-is-mobile@0.0.0-dev-v2-20230614033154
- @nextui-org/popover@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/dropdown",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "A dropdown displays a list of actions or options that a user can choose.",
"keywords": [
"dropdown"

View File

@ -1,5 +1,53 @@
# @nextui-org/image
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/use-image@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/use-image@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/use-image@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/use-image@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/image",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "A simple image component",
"keywords": [
"image"

View File

@ -1,5 +1,57 @@
# @nextui-org/input
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614044324
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/use-aria-field@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614043419
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/use-aria-field@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614042446
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/use-aria-field@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614033154
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/use-aria-field@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/input",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "The input component is designed for capturing user input within a text field.",
"keywords": [
"input"

View File

@ -1,5 +1,49 @@
# @nextui-org/kbd
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/kbd",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "The keyboard key components indicates which key or set of keys used to execute a specificv action",
"keywords": [
"kbd"

View File

@ -1,5 +1,53 @@
# @nextui-org/link
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614044324
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614043419
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614042446
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614033154
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/link",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"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"

View File

@ -1,5 +1,65 @@
# @nextui-org/modal
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614044324
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614044324
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/use-disclosure@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614043419
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614043419
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/use-disclosure@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614042446
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614042446
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/use-disclosure@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614033154
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614033154
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/use-disclosure@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/modal",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Displays a dialog with a custom content that requires attention or provides additional information.",
"keywords": [
"modal"

View File

@ -1,5 +1,61 @@
# @nextui-org/navbar
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/use-aria-toggle-button@0.0.0-dev-v2-20230614044324
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614044324
- @nextui-org/use-scroll-position@0.0.0-dev-v2-20230614044324
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/use-aria-toggle-button@0.0.0-dev-v2-20230614043419
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614043419
- @nextui-org/use-scroll-position@0.0.0-dev-v2-20230614043419
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/use-aria-toggle-button@0.0.0-dev-v2-20230614042446
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614042446
- @nextui-org/use-scroll-position@0.0.0-dev-v2-20230614042446
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/use-aria-toggle-button@0.0.0-dev-v2-20230614033154
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614033154
- @nextui-org/use-scroll-position@0.0.0-dev-v2-20230614033154
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/navbar",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "A responsive navigation header positioned on top side of your page that includes support for branding, links, navigation, collapse and more.",
"keywords": [
"navbar"

View File

@ -1,5 +1,57 @@
# @nextui-org/pagination
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614044324
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/use-pagination@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614043419
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/use-pagination@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614042446
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/use-pagination@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614033154
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/use-pagination@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/pagination",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "The Pagination component allows you to display active page and navigate between multiple pages.",
"keywords": [
"pagination"

View File

@ -1,5 +1,65 @@
# @nextui-org/popover
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614044324
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/button@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614043419
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/button@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614042446
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/button@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614033154
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/button@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/popover",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "A popover is an overlay element positioned relative to a trigger.",
"keywords": [
"popover"

View File

@ -1,5 +1,57 @@
# @nextui-org/progress
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/use-aria-label@0.0.0-dev-v2-20230614044324
- @nextui-org/use-is-mounted@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/use-aria-label@0.0.0-dev-v2-20230614043419
- @nextui-org/use-is-mounted@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/use-aria-label@0.0.0-dev-v2-20230614042446
- @nextui-org/use-is-mounted@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/use-aria-label@0.0.0-dev-v2-20230614033154
- @nextui-org/use-is-mounted@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/progress",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Progress bars show either determinate or indeterminate progress of an operation over time.",
"keywords": [
"progress"

View File

@ -1,5 +1,49 @@
# @nextui-org/radio
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/radio",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Radios allow users to select a single option from a list of mutually exclusive options.",
"keywords": [
"radio"

View File

@ -1,5 +1,49 @@
# @nextui-org/skeleton
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/skeleton",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Skeleton is used to display the loading state of some component.",
"keywords": [
"skeleton"

View File

@ -1,5 +1,65 @@
# @nextui-org/snippet
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614044324
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/use-clipboard@0.0.0-dev-v2-20230614044324
- @nextui-org/tooltip@0.0.0-dev-v2-20230614044324
- @nextui-org/button@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614043419
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/use-clipboard@0.0.0-dev-v2-20230614043419
- @nextui-org/tooltip@0.0.0-dev-v2-20230614043419
- @nextui-org/button@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614042446
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/use-clipboard@0.0.0-dev-v2-20230614042446
- @nextui-org/tooltip@0.0.0-dev-v2-20230614042446
- @nextui-org/button@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614033154
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/use-clipboard@0.0.0-dev-v2-20230614033154
- @nextui-org/tooltip@0.0.0-dev-v2-20230614033154
- @nextui-org/button@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/snippet",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Display a snippet of copyable code for the command line.",
"keywords": [
"snippet"

View File

@ -1,5 +1,49 @@
# @nextui-org/spacer
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/spacer",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "A flexible spacer component designed to create consistent spacing and maintain alignment in your layout.",
"keywords": [
"spacer"

View File

@ -1,5 +1,49 @@
# @nextui-org/spinner
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/spinner",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Loaders express an unspecified wait time or display the length of a process.",
"keywords": [
"loading",

View File

@ -1,5 +1,49 @@
# @nextui-org/switch
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/switch",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "A switch is similar to a checkbox, but represents on/off values as opposed to selection.",
"keywords": [
"switch"

View File

@ -1,5 +1,61 @@
# @nextui-org/table
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614044324
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/checkbox@0.0.0-dev-v2-20230614044324
- @nextui-org/spacer@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614043419
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/checkbox@0.0.0-dev-v2-20230614043419
- @nextui-org/spacer@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614042446
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/checkbox@0.0.0-dev-v2-20230614042446
- @nextui-org/spacer@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230614033154
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/checkbox@0.0.0-dev-v2-20230614033154
- @nextui-org/spacer@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/table",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Tables are used to display tabular data using rows and columns. ",
"keywords": [
"table"

View File

@ -1,5 +1,61 @@
# @nextui-org/tabs
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614044324
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/use-is-mounted@0.0.0-dev-v2-20230614044324
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614043419
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/use-is-mounted@0.0.0-dev-v2-20230614043419
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614042446
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/use-is-mounted@0.0.0-dev-v2-20230614042446
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614033154
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/use-is-mounted@0.0.0-dev-v2-20230614033154
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/tabs",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Tabs organize content into multiple sections and allow users to navigate between them.",
"keywords": [
"tabs"

View File

@ -1,5 +1,57 @@
# @nextui-org/tooltip
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614044324
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614043419
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614042446
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230614033154
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/aria-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/tooltip",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "A React Component for rendering dynamically positioned Tooltips",
"keywords": [
"tooltip"

View File

@ -1,5 +1,53 @@
# @nextui-org/user
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/react-utils@0.0.0-dev-v2-20230614044324
- @nextui-org/avatar@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/react-utils@0.0.0-dev-v2-20230614043419
- @nextui-org/avatar@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/react-utils@0.0.0-dev-v2-20230614042446
- @nextui-org/avatar@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/react-utils@0.0.0-dev-v2-20230614033154
- @nextui-org/avatar@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/user",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Flexible User Profile Component.",
"keywords": [
"user"

View File

@ -1,5 +1,161 @@
# @nextui-org/react
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/pagination@0.0.0-dev-v2-20230614044324
- @nextui-org/accordion@0.0.0-dev-v2-20230614044324
- @nextui-org/checkbox@0.0.0-dev-v2-20230614044324
- @nextui-org/dropdown@0.0.0-dev-v2-20230614044324
- @nextui-org/progress@0.0.0-dev-v2-20230614044324
- @nextui-org/skeleton@0.0.0-dev-v2-20230614044324
- @nextui-org/divider@0.0.0-dev-v2-20230614044324
- @nextui-org/popover@0.0.0-dev-v2-20230614044324
- @nextui-org/snippet@0.0.0-dev-v2-20230614044324
- @nextui-org/spinner@0.0.0-dev-v2-20230614044324
- @nextui-org/tooltip@0.0.0-dev-v2-20230614044324
- @nextui-org/avatar@0.0.0-dev-v2-20230614044324
- @nextui-org/button@0.0.0-dev-v2-20230614044324
- @nextui-org/navbar@0.0.0-dev-v2-20230614044324
- @nextui-org/spacer@0.0.0-dev-v2-20230614044324
- @nextui-org/switch@0.0.0-dev-v2-20230614044324
- @nextui-org/badge@0.0.0-dev-v2-20230614044324
- @nextui-org/image@0.0.0-dev-v2-20230614044324
- @nextui-org/input@0.0.0-dev-v2-20230614044324
- @nextui-org/modal@0.0.0-dev-v2-20230614044324
- @nextui-org/radio@0.0.0-dev-v2-20230614044324
- @nextui-org/table@0.0.0-dev-v2-20230614044324
- @nextui-org/card@0.0.0-dev-v2-20230614044324
- @nextui-org/chip@0.0.0-dev-v2-20230614044324
- @nextui-org/code@0.0.0-dev-v2-20230614044324
- @nextui-org/drip@0.0.0-dev-v2-20230614044324
- @nextui-org/link@0.0.0-dev-v2-20230614044324
- @nextui-org/tabs@0.0.0-dev-v2-20230614044324
- @nextui-org/user@0.0.0-dev-v2-20230614044324
- @nextui-org/kbd@0.0.0-dev-v2-20230614044324
- @nextui-org/system@0.0.0-dev-v2-20230614044324
- @nextui-org/theme@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/pagination@0.0.0-dev-v2-20230614043419
- @nextui-org/accordion@0.0.0-dev-v2-20230614043419
- @nextui-org/checkbox@0.0.0-dev-v2-20230614043419
- @nextui-org/dropdown@0.0.0-dev-v2-20230614043419
- @nextui-org/progress@0.0.0-dev-v2-20230614043419
- @nextui-org/skeleton@0.0.0-dev-v2-20230614043419
- @nextui-org/divider@0.0.0-dev-v2-20230614043419
- @nextui-org/popover@0.0.0-dev-v2-20230614043419
- @nextui-org/snippet@0.0.0-dev-v2-20230614043419
- @nextui-org/spinner@0.0.0-dev-v2-20230614043419
- @nextui-org/tooltip@0.0.0-dev-v2-20230614043419
- @nextui-org/avatar@0.0.0-dev-v2-20230614043419
- @nextui-org/button@0.0.0-dev-v2-20230614043419
- @nextui-org/navbar@0.0.0-dev-v2-20230614043419
- @nextui-org/spacer@0.0.0-dev-v2-20230614043419
- @nextui-org/switch@0.0.0-dev-v2-20230614043419
- @nextui-org/badge@0.0.0-dev-v2-20230614043419
- @nextui-org/image@0.0.0-dev-v2-20230614043419
- @nextui-org/input@0.0.0-dev-v2-20230614043419
- @nextui-org/modal@0.0.0-dev-v2-20230614043419
- @nextui-org/radio@0.0.0-dev-v2-20230614043419
- @nextui-org/table@0.0.0-dev-v2-20230614043419
- @nextui-org/card@0.0.0-dev-v2-20230614043419
- @nextui-org/chip@0.0.0-dev-v2-20230614043419
- @nextui-org/code@0.0.0-dev-v2-20230614043419
- @nextui-org/drip@0.0.0-dev-v2-20230614043419
- @nextui-org/link@0.0.0-dev-v2-20230614043419
- @nextui-org/tabs@0.0.0-dev-v2-20230614043419
- @nextui-org/user@0.0.0-dev-v2-20230614043419
- @nextui-org/kbd@0.0.0-dev-v2-20230614043419
- @nextui-org/system@0.0.0-dev-v2-20230614043419
- @nextui-org/theme@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/pagination@0.0.0-dev-v2-20230614042446
- @nextui-org/accordion@0.0.0-dev-v2-20230614042446
- @nextui-org/checkbox@0.0.0-dev-v2-20230614042446
- @nextui-org/dropdown@0.0.0-dev-v2-20230614042446
- @nextui-org/progress@0.0.0-dev-v2-20230614042446
- @nextui-org/skeleton@0.0.0-dev-v2-20230614042446
- @nextui-org/divider@0.0.0-dev-v2-20230614042446
- @nextui-org/popover@0.0.0-dev-v2-20230614042446
- @nextui-org/snippet@0.0.0-dev-v2-20230614042446
- @nextui-org/spinner@0.0.0-dev-v2-20230614042446
- @nextui-org/tooltip@0.0.0-dev-v2-20230614042446
- @nextui-org/avatar@0.0.0-dev-v2-20230614042446
- @nextui-org/button@0.0.0-dev-v2-20230614042446
- @nextui-org/navbar@0.0.0-dev-v2-20230614042446
- @nextui-org/spacer@0.0.0-dev-v2-20230614042446
- @nextui-org/switch@0.0.0-dev-v2-20230614042446
- @nextui-org/badge@0.0.0-dev-v2-20230614042446
- @nextui-org/image@0.0.0-dev-v2-20230614042446
- @nextui-org/input@0.0.0-dev-v2-20230614042446
- @nextui-org/modal@0.0.0-dev-v2-20230614042446
- @nextui-org/radio@0.0.0-dev-v2-20230614042446
- @nextui-org/table@0.0.0-dev-v2-20230614042446
- @nextui-org/card@0.0.0-dev-v2-20230614042446
- @nextui-org/chip@0.0.0-dev-v2-20230614042446
- @nextui-org/code@0.0.0-dev-v2-20230614042446
- @nextui-org/drip@0.0.0-dev-v2-20230614042446
- @nextui-org/link@0.0.0-dev-v2-20230614042446
- @nextui-org/tabs@0.0.0-dev-v2-20230614042446
- @nextui-org/user@0.0.0-dev-v2-20230614042446
- @nextui-org/kbd@0.0.0-dev-v2-20230614042446
- @nextui-org/system@0.0.0-dev-v2-20230614042446
- @nextui-org/theme@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/pagination@0.0.0-dev-v2-20230614033154
- @nextui-org/accordion@0.0.0-dev-v2-20230614033154
- @nextui-org/checkbox@0.0.0-dev-v2-20230614033154
- @nextui-org/dropdown@0.0.0-dev-v2-20230614033154
- @nextui-org/progress@0.0.0-dev-v2-20230614033154
- @nextui-org/skeleton@0.0.0-dev-v2-20230614033154
- @nextui-org/divider@0.0.0-dev-v2-20230614033154
- @nextui-org/popover@0.0.0-dev-v2-20230614033154
- @nextui-org/snippet@0.0.0-dev-v2-20230614033154
- @nextui-org/spinner@0.0.0-dev-v2-20230614033154
- @nextui-org/tooltip@0.0.0-dev-v2-20230614033154
- @nextui-org/avatar@0.0.0-dev-v2-20230614033154
- @nextui-org/button@0.0.0-dev-v2-20230614033154
- @nextui-org/navbar@0.0.0-dev-v2-20230614033154
- @nextui-org/spacer@0.0.0-dev-v2-20230614033154
- @nextui-org/switch@0.0.0-dev-v2-20230614033154
- @nextui-org/badge@0.0.0-dev-v2-20230614033154
- @nextui-org/image@0.0.0-dev-v2-20230614033154
- @nextui-org/input@0.0.0-dev-v2-20230614033154
- @nextui-org/modal@0.0.0-dev-v2-20230614033154
- @nextui-org/radio@0.0.0-dev-v2-20230614033154
- @nextui-org/table@0.0.0-dev-v2-20230614033154
- @nextui-org/card@0.0.0-dev-v2-20230614033154
- @nextui-org/chip@0.0.0-dev-v2-20230614033154
- @nextui-org/code@0.0.0-dev-v2-20230614033154
- @nextui-org/drip@0.0.0-dev-v2-20230614033154
- @nextui-org/link@0.0.0-dev-v2-20230614033154
- @nextui-org/tabs@0.0.0-dev-v2-20230614033154
- @nextui-org/user@0.0.0-dev-v2-20230614033154
- @nextui-org/kbd@0.0.0-dev-v2-20230614033154
- @nextui-org/system@0.0.0-dev-v2-20230614033154
- @nextui-org/theme@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/react",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "🚀 Beautiful and modern React UI library.",
"author": "Junior Garcia <jrgarciadev@gmail.com>",
"homepage": "https://nextui.org",
@ -30,11 +30,13 @@
"url": "https://github.com/nextui-org/nextui/issues"
},
"scripts": {
"build": "tsup src --dts",
"prebuild": "node src/scripts/prebuild.js",
"build": "tsup --dts",
"postbuild": "node src/scripts/postbuild.js",
"dev": "yarn build:fast -- --watch",
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit",
"build:fast": "tsup src",
"build:fast": "tsup",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
@ -81,13 +83,5 @@
"react": "^18.0.0",
"clean-package": "2.2.0"
},
"clean-package": "../../../clean-package.config.json",
"tsup": {
"clean": true,
"target": "es2019",
"format": [
"cjs",
"esm"
]
}
"clean-package": "../../../clean-package.config.json"
}

View File

@ -1,5 +1,7 @@
"use client";
// only for developments, client directive this is removed in production builds
export * from "@nextui-org/system";
export * from "@nextui-org/theme";
export * from "@nextui-org/accordion";

View File

@ -0,0 +1,21 @@
/* eslint-disable no-console */
const fs = require('fs');
const filePath = './src/index.ts'; // Updated file path
const backupFilePath = filePath + '.backup.ts'; // Backup file
// Restore the original file from the backup
fs.copyFile(backupFilePath, filePath, (err) => {
if (err) {
return console.log(err);
}
console.log('The original file has been restored.');
// Delete the backup file
fs.unlink(backupFilePath, (err) => {
if (err) {
return console.log(err);
}
console.log('The backup file has been deleted.');
});
});

View File

@ -0,0 +1,27 @@
/* eslint-disable no-console */
const fs = require('fs');
const filePath = './src/index.ts'; // Updated file path
const backupFilePath = filePath + '.backup.ts'; // Backup file
// Create a backup of the original file
fs.copyFile(filePath, backupFilePath, (err) => {
if (err) {
return console.log(err);
}
// Read the original file and remove the "use client" directive
fs.readFile(filePath, 'utf8', function(err, data) {
if (err) {
return console.log(err);
}
const result = data.replace('"use client";\n', '');
fs.writeFile(filePath, result, 'utf8', function(err) {
if (err) {
return console.log(err);
}
console.log('The "use client" directive was removed.');
});
});
});

View File

@ -2,10 +2,12 @@
"extends": "../../../tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"allowJs": true,
"paths": {
"tailwind-variants": ["../../../node_modules/tailwind-variants"],
"@react-aria/interactions": ["../../../node_modules/@react-aria/interactions"]
}
},
"include": ["src", "index.ts"]
"include": ["src", "index.ts"],
"exclude": ["src/scripts/**", "src/index.ts.backup"]
}

View File

@ -0,0 +1,8 @@
import {defineConfig} from "tsup";
export default defineConfig({
clean: true,
target: "es2019",
entry: ["src/index.ts", "!src/scripts"],
format: ["cjs", "esm"],
});

View File

@ -1,5 +1,29 @@
# @nextui-org/system
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/system",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "NextUI system primitives",
"keywords": [
"system"

View File

@ -1,5 +1,29 @@
# @nextui-org/theme
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/theme",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "The default theme for NextUI components",
"keywords": [
"theme",

View File

@ -1,5 +1,29 @@
# @nextui-org/use-aria-accordion-item
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-aria-accordion-item",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Internal impl for react aria accordion item",
"keywords": [
"use-aria-accordion-item"

View File

@ -1,5 +1,29 @@
# @nextui-org/use-aria-button
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-aria-button",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"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"

View File

@ -1,5 +1,41 @@
# @nextui-org/use-aria-field
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/use-aria-slot-id@0.0.0-dev-v2-20230614044324
- @nextui-org/use-aria-label@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/use-aria-slot-id@0.0.0-dev-v2-20230614043419
- @nextui-org/use-aria-label@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/use-aria-slot-id@0.0.0-dev-v2-20230614042446
- @nextui-org/use-aria-label@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/use-aria-slot-id@0.0.0-dev-v2-20230614033154
- @nextui-org/use-aria-label@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-aria-field",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Based on react-aria useField hook, provides the accessibility implementation for input fields",
"keywords": [
"use-aria-field"

View File

@ -1,5 +1,29 @@
# @nextui-org/use-aria-label
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-aria-label",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Based on react-aria label hook, it provides the accessibility implementation for labels and their associated elements. Labels provide context for user inputs.",
"keywords": [
"use-aria-label"

View File

@ -1,5 +1,29 @@
# @nextui-org/use-aria-slot-id
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-aria-slot-id",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Based on react-aria useSlotId, used to generate an id, and after render check if that id is rendered",
"keywords": [
"use-aria-slot-id"

View File

@ -1,5 +1,37 @@
# @nextui-org/use-aria-toggle-button
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-aria-toggle-button",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"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"

View File

@ -1,5 +1,37 @@
# @nextui-org/use-callback-ref
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/use-safe-layout-effect@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/use-safe-layout-effect@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/use-safe-layout-effect@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/use-safe-layout-effect@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-callback-ref",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "React hook to persist any value between renders, but keeps it up-to-date if it changes.",
"keywords": [
"use-callback-ref"

View File

@ -1,5 +1,29 @@
# @nextui-org/use-clipboard
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-clipboard",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "Wrapper around navigator.clipboard with feedback timeout",
"keywords": [
"use-clipboard"

View File

@ -1,5 +1,37 @@
# @nextui-org/use-disclosure
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/use-callback-ref@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/use-callback-ref@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/use-callback-ref@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/use-callback-ref@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-disclosure",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "The hook in charge of managing modals",
"keywords": [
"use-disclosure"

View File

@ -1,5 +1,37 @@
# @nextui-org/use-image
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
- Updated dependencies
- @nextui-org/use-safe-layout-effect@0.0.0-dev-v2-20230614044324
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
- Updated dependencies
- @nextui-org/use-safe-layout-effect@0.0.0-dev-v2-20230614043419
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
- Updated dependencies
- @nextui-org/use-safe-layout-effect@0.0.0-dev-v2-20230614042446
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
- Updated dependencies
- @nextui-org/use-safe-layout-effect@0.0.0-dev-v2-20230614033154
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-image",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "React hook for progressing image loading",
"keywords": [
"use-image"

View File

@ -1,5 +1,29 @@
# @nextui-org/use-infinite-scroll
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-infinite-scroll",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "A hook for handling infinity scroll based on the IntersectionObserver API",
"keywords": [
"use-infinite-scroll"

View File

@ -1,5 +1,29 @@
# @nextui-org/use-is-mobile
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
## 0.0.0-dev-v2-20230613214509
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-is-mobile",
"version": "0.0.0-dev-v2-20230613214509",
"version": "0.0.0-dev-v2-20230614044324",
"description": "A hook that returns whether the device is mobile or not",
"keywords": [
"use-is-mobile"

View File

@ -1,5 +1,29 @@
# @nextui-org/use-is-mounted
## 0.0.0-dev-v2-20230614044324
### Patch Changes
- Client directive removed from button entry file
## 0.0.0-dev-v2-20230614043419
### Patch Changes
- Main package fixed
## 0.0.0-dev-v2-20230614042446
### Patch Changes
- Main package build adapted to support workspace and build files
## 0.0.0-dev-v2-20230614033154
### Patch Changes
- Main package client directive added
## 0.0.0-dev-v2-20230613214509
### Patch Changes

Some files were not shown because too many files have changed in this diff Show More