chore(root): borders changed, types fixed

This commit is contained in:
Junior Garcia 2023-06-05 23:08:50 -03:00
parent b62ca94458
commit d686129687
136 changed files with 861 additions and 280 deletions

View File

@ -1,7 +1,7 @@
import {FC} from "react";
import {tv, VariantProps} from "tailwind-variants";
const blockquote = tv({
const blockquoteStyles = tv({
base: "border pl-4 bg-default-50 my-6 py-3 rounded-xl [&>p]:m-0",
variants: {
color: {
@ -18,7 +18,7 @@ const blockquote = tv({
},
});
type BlockquoteVariantProps = VariantProps<typeof blockquote>;
type BlockquoteVariantProps = VariantProps<typeof blockquoteStyles>;
export interface BlockquoteProps extends BlockquoteVariantProps {
children?: React.ReactNode;
@ -26,7 +26,7 @@ export interface BlockquoteProps extends BlockquoteVariantProps {
}
export const Blockquote: FC<BlockquoteProps> = ({children, color, className, ...props}) => {
const styles = blockquote({color, className});
const styles = blockquoteStyles({color, className});
return (
<blockquote className={styles} {...props}>

View File

@ -28,8 +28,11 @@ export const DocsToc: FC<DocsTocProps> = ({headings}) => {
},
);
const activeIndex = headings.findIndex(({id}) => id == activeId);
const firstId = headings[0].id;
useEffect(() => {
if (!activeId) return;
if (!activeId || activeIndex < 2) return;
const anchor = tocRef.current?.querySelector(`li > a[href="#${activeId}"]`);
if (anchor) {
@ -41,10 +44,7 @@ export const DocsToc: FC<DocsTocProps> = ({headings}) => {
boundary: tocRef.current,
});
}
}, [activeId]);
const activeIndex = headings.findIndex(({id}) => id == activeId);
const firstId = headings[0].id;
}, [activeId, activeIndex]);
return (
<div

View File

@ -44,12 +44,12 @@ const FloatingComponents: React.FC<{mounted: boolean}> = ({mounted}) => {
base:
"absolute -top-[220px] -right-[40px] animate-[levitate_13s_ease_infinite_1s_reverse]",
wrapper: "shadow-sm",
startIcon: "text-white",
startContent: "text-white",
}}
endIcon={<MoonFilledIcon />}
endContent={<MoonFilledIcon />}
isSelected={isSelected}
size="xl"
startIcon={<SunFilledIcon />}
startContent={<SunFilledIcon />}
onChange={onChange}
/>
@ -71,7 +71,9 @@ const FloatingComponents: React.FC<{mounted: boolean}> = ({mounted}) => {
>
<Image
alt="Professional camera"
className="object-cover -translate-y-12 h-[100%]"
classNames={{
img: "object-cover -translate-y-12 h-[100%]",
}}
src="/images/card-example-6.jpeg"
width={120}
/>

View File

@ -57,15 +57,9 @@ NextUI's primary goal is to streamline the development process, offering a beaut
<p className="text-default-500">
TailwindCSS components libraries such as{" "}
<Link isExternal showAnchorIcon href="https://tailwindui.com/">
TailwindUI
</Link>
, <Link isExternal showAnchorIcon href="https://flowbite.com/">
Flowbite
</Link>, or
<Link isExternal showAnchorIcon href="https://preline.co/">
Preline
</Link>, just to name a few, only offer a curated selection of TailwindCSS classes to style your components.
<Link isExternal showAnchorIcon href="https://tailwindui.com/">TailwindUI</Link>
, <Link isExternal showAnchorIcon href="https://flowbite.com/">Flowbite</Link>, or
<Link isExternal showAnchorIcon href="https://preline.co/">Preline</Link>, just to name a few, only offer a curated selection of TailwindCSS classes to style your components.
They don't provide any React specific components, logic, props, composition, or accessibility features.<br/>
<Spacer y={2}/>
In contrast to these libraries, NextUI is a complete UI library that provides a set of accessible and
@ -76,9 +70,7 @@ NextUI's primary goal is to streamline the development process, offering a beaut
<p className="text-default-500">
We created a TailwindCSS utility library called{" "}
<Link isExternal showAnchorIcon href="https://www.tailwind-variants.org/">
tailwind-variants
</Link>{" "}
<Link isExternal showAnchorIcon href="https://www.tailwind-variants.org/">tailwind-variants</Link>{" "}
that automatically handle TailwindCSS class conflicts. This ensures your custom classes will
consistently override the default ones, eliminating any duplication.
</p>

View File

@ -1,7 +1,6 @@
import {FC} from "react";
import {Link as NextUILink, Image} from "@nextui-org/react";
import Link from "next/link";
import dynamic from "next/dynamic";
import {Head} from "./head";
import {Navbar} from "./navbar";
@ -13,6 +12,7 @@ import {Heading} from "@/libs/docs/utils";
import {FooterNav, DocsToc} from "@/components/docs";
import {GITHUB_URL, REPO_NAME} from "@/libs/github/constants";
import {CONTENT_PATH, TAG} from "@/libs/docs/config";
import {DocsSidebar} from "@/components/docs/sidebar";
export interface DocsLayoutProps {
routes: Route[];
@ -26,11 +26,6 @@ export interface DocsLayoutProps {
children?: React.ReactNode;
}
const DocsSidebar = dynamic(
() => import("@/components/docs/sidebar").then((mod) => mod.DocsSidebar),
{ssr: false},
);
export const DocsLayout: FC<DocsLayoutProps> = ({
children,
routes,

View File

@ -125,7 +125,7 @@ export const Navbar: FC<NavbarProps> = ({children, routes, slug, tag}) => {
<div className="w-[80px]" />
)}
</NavbarBrand>
<div className="hidden lg:flex gap-4 ml-10 justify-start">
<div className="hidden lg:flex gap-4 justify-start">
<NavbarItem>
<NextLink
className={clsx(

View File

@ -56,6 +56,7 @@
"scroll-into-view-if-needed": "2.2.29",
"shelljs": "^0.8.4",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwind-variants": "^0.1.5",
"unified": "^9.2.2"
},
"devDependencies": {

View File

@ -1,5 +1,5 @@
import React from "react";
import {DM_Sans} from "next/font/google";
// import {DM_Sans} from "next/font/google";
import {Analytics} from "@vercel/analytics/react";
import {NextUIProvider} from "@nextui-org/react";
import {ThemeProvider} from "next-themes";
@ -38,34 +38,34 @@ const Application: NextPage<AppProps<{}>> = ({Component, pageProps}) => {
);
};
const sans = DM_Sans({
variable: "--font-sans",
adjustFontFallback: true,
display: "optional",
fallback: [
"ui-sans-serif",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Roboto",
'"Helvetica Neue"',
"Arial",
'"Noto Sans"',
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
preload: true,
style: "normal",
subsets: ["latin"],
weight: ["400", "500", "700"],
});
// const sans = DM_Sans({
// variable: "--font-sans",
// adjustFontFallback: true,
// display: "optional",
// fallback: [
// "ui-sans-serif",
// "system-ui",
// "-apple-system",
// "BlinkMacSystemFont",
// '"Segoe UI"',
// "Roboto",
// '"Helvetica Neue"',
// "Arial",
// '"Noto Sans"',
// "sans-serif",
// '"Apple Color Emoji"',
// '"Segoe UI Emoji"',
// '"Segoe UI Symbol"',
// '"Noto Color Emoji"',
// ],
// preload: true,
// style: "normal",
// subsets: ["latin"],
// weight: ["400", "500", "700"],
// });
export const fonts = {
sans: sans.style.fontFamily,
};
// export const fonts = {
// sans: sans.style.fontFamily,
// };
export default Application;

View File

@ -16,7 +16,7 @@ module.exports = {
"./layouts/**/*.{js,ts,jsx,tsx,mdx}",
"./libs/**/*.{js,ts,jsx,tsx,mdx}",
"./content/**/*.{js,ts,jsx,tsx,mdx}",
"../../packages/core/theme/dist/**/*.{js,ts,jsx,tsx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {

View File

@ -2,7 +2,8 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"paths": {
"@/*": ["./*"]
"@/*": ["./*"],
"tailwind-variants": ["./node_modules/tailwind-variants"]
},
"allowJs": true,
"forceConsistentCasingInFileNames": true,

View File

@ -1,5 +1,20 @@
# @nextui-org/accordion
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/use-aria-accordion-item@0.0.0-dev-v2-20230606020717
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230606020717
- @nextui-org/shared-icons@0.0.0-dev-v2-20230606020717
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/aria-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,17 @@
# @nextui-org/avatar
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/use-image@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/avatar",
"version": "0.0.0-dev-v2-20230605023127",
"version": "0.0.0-dev-v2-20230606020717",
"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,16 @@
# @nextui-org/badge
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -7,7 +7,7 @@ import {useDOMRef} from "@nextui-org/dom-utils";
import {clsx, ReactRef} from "@nextui-org/shared-utils";
import {useMemo} from "react";
export interface UseBadgeProps extends HTMLNextUIProps<"span">, BadgeVariantProps {
export interface Props extends Omit<HTMLNextUIProps<"span">, "content"> {
/**
* Ref to the DOM node.
*/
@ -35,6 +35,8 @@ export interface UseBadgeProps extends HTMLNextUIProps<"span">, BadgeVariantProp
classNames?: SlotsToClasses<BadgeSlots>;
}
export type UseBadgeProps = Props & BadgeVariantProps;
export function useBadge(originalProps: UseBadgeProps) {
const [props, variantProps] = mapPropsVariants(originalProps, badge.variantKeys);

View File

@ -1,5 +1,19 @@
# @nextui-org/button
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/spinner@0.0.0-dev-v2-20230606020717
- @nextui-org/drip@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,18 @@
# @nextui-org/card
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/drip@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,16 @@
# @nextui-org/checkbox
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/checkbox",
"version": "0.0.0-dev-v2-20230605023127",
"version": "0.0.0-dev-v2-20230606020717",
"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,17 @@
# @nextui-org/chip
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230606020717
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,16 @@
# @nextui-org/code
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,16 @@
# @nextui-org/divider
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,16 @@
# @nextui-org/drip
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,19 @@
# @nextui-org/dropdown
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/aria-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/use-is-mobile@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/popover@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,17 @@
# @nextui-org/image
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/use-image@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,18 @@
# @nextui-org/input
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230606020717
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/use-aria-field@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,16 @@
# @nextui-org/kbd
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/kbd",
"version": "0.0.0-dev-v2-20230605023127",
"version": "0.0.0-dev-v2-20230606020717",
"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,17 @@
# @nextui-org/link
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230606020717
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/link",
"version": "0.0.0-dev-v2-20230605023127",
"version": "0.0.0-dev-v2-20230606020717",
"description": "Links allow users to click their way from page to page. This component is styled to resemble a hyperlink and semantically renders an &lt;a&gt;",
"keywords": [
"link"

View File

@ -1,5 +1,20 @@
# @nextui-org/modal
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230606020717
- @nextui-org/shared-icons@0.0.0-dev-v2-20230606020717
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230606020717
- @nextui-org/use-disclosure@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,19 @@
# @nextui-org/navbar
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/use-aria-toggle-button@0.0.0-dev-v2-20230606020717
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230606020717
- @nextui-org/use-scroll-position@0.0.0-dev-v2-20230606020717
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/navbar",
"version": "0.0.0-dev-v2-20230605023127",
"version": "0.0.0-dev-v2-20230606020717",
"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,18 @@
# @nextui-org/pagination
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230606020717
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/use-pagination@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,20 @@
# @nextui-org/popover
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230606020717
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230606020717
- @nextui-org/aria-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/button@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,18 @@
# @nextui-org/progress
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/use-aria-label@0.0.0-dev-v2-20230606020717
- @nextui-org/use-is-mounted@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,16 @@
# @nextui-org/radio
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,16 @@
# @nextui-org/skeleton
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,20 @@
# @nextui-org/snippet
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230606020717
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/use-clipboard@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/tooltip@0.0.0-dev-v2-20230606020717
- @nextui-org/button@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,16 @@
# @nextui-org/spacer
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,16 @@
# @nextui-org/spinner
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,16 @@
# @nextui-org/switch
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,19 @@
# @nextui-org/table
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-icons@0.0.0-dev-v2-20230606020717
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/checkbox@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/spacer@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,19 @@
# @nextui-org/tabs
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230606020717
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/use-is-mounted@0.0.0-dev-v2-20230606020717
- @nextui-org/aria-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,18 @@
# @nextui-org/tooltip
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230606020717
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/aria-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -16,7 +16,7 @@ import {createDOMRef} from "@nextui-org/dom-utils";
import {useMemo, useRef, useCallback} from "react";
import {toReactAriaPlacement, getArrowPlacement} from "@nextui-org/aria-utils";
interface Props extends HTMLNextUIProps<"div"> {
interface Props extends Omit<HTMLNextUIProps<"div">, "content"> {
/**
* Ref to the DOM node.
*/

View File

@ -1,5 +1,17 @@
# @nextui-org/user
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/shared-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/dom-utils@0.0.0-dev-v2-20230606020717
- @nextui-org/avatar@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,44 @@
# @nextui-org/react
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/pagination@0.0.0-dev-v2-20230606020717
- @nextui-org/accordion@0.0.0-dev-v2-20230606020717
- @nextui-org/checkbox@0.0.0-dev-v2-20230606020717
- @nextui-org/dropdown@0.0.0-dev-v2-20230606020717
- @nextui-org/progress@0.0.0-dev-v2-20230606020717
- @nextui-org/skeleton@0.0.0-dev-v2-20230606020717
- @nextui-org/divider@0.0.0-dev-v2-20230606020717
- @nextui-org/popover@0.0.0-dev-v2-20230606020717
- @nextui-org/snippet@0.0.0-dev-v2-20230606020717
- @nextui-org/spinner@0.0.0-dev-v2-20230606020717
- @nextui-org/tooltip@0.0.0-dev-v2-20230606020717
- @nextui-org/avatar@0.0.0-dev-v2-20230606020717
- @nextui-org/button@0.0.0-dev-v2-20230606020717
- @nextui-org/navbar@0.0.0-dev-v2-20230606020717
- @nextui-org/spacer@0.0.0-dev-v2-20230606020717
- @nextui-org/switch@0.0.0-dev-v2-20230606020717
- @nextui-org/badge@0.0.0-dev-v2-20230606020717
- @nextui-org/image@0.0.0-dev-v2-20230606020717
- @nextui-org/input@0.0.0-dev-v2-20230606020717
- @nextui-org/modal@0.0.0-dev-v2-20230606020717
- @nextui-org/radio@0.0.0-dev-v2-20230606020717
- @nextui-org/table@0.0.0-dev-v2-20230606020717
- @nextui-org/card@0.0.0-dev-v2-20230606020717
- @nextui-org/chip@0.0.0-dev-v2-20230606020717
- @nextui-org/code@0.0.0-dev-v2-20230606020717
- @nextui-org/drip@0.0.0-dev-v2-20230606020717
- @nextui-org/link@0.0.0-dev-v2-20230606020717
- @nextui-org/tabs@0.0.0-dev-v2-20230606020717
- @nextui-org/user@0.0.0-dev-v2-20230606020717
- @nextui-org/kbd@0.0.0-dev-v2-20230606020717
- @nextui-org/system@0.0.0-dev-v2-20230606020717
- @nextui-org/theme@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/react",
"version": "0.0.0-dev-v2-20230605023127",
"version": "0.0.0-dev-v2-20230606020717",
"description": "🚀 Beautiful and modern React UI library.",
"author": "Junior Garcia <jrgarciadev@gmail.com>",
"homepage": "https://nextui.org",

View File

@ -1,5 +1,11 @@
# @nextui-org/system
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,11 @@
# @nextui-org/theme
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -43,18 +43,18 @@ const chip = tv({
variant: {
solid: {},
bordered: {
base: "border-2 bg-transparent",
base: "border-1 bg-transparent",
},
light: {
base: "bg-transparent",
},
flat: {},
faded: {
base: "border-2",
base: "border-1",
},
shadow: {},
dot: {
base: "border-2 border-default text-foreground bg-transparent",
base: "border-1 border-default text-foreground bg-transparent",
},
},
color: {

View File

@ -100,13 +100,13 @@ const dropdownItem = tv({
base: "",
},
bordered: {
base: "border-2 border-transparent bg-transparent",
base: "border-1 border-transparent bg-transparent",
},
light: {
base: "bg-transparent",
},
faded: {
base: "border-2 border-transparent hover:border-default data-[hover=true]:bg-default-100",
base: "border-1 border-transparent hover:border-default data-[hover=true]:bg-default-100",
},
flat: {
base: "",

View File

@ -84,7 +84,7 @@ const tabs = tv({
cursor: "h-[2px] w-[80%] bottom-0 shadow-[0_1px_0px_0_rgba(0,0,0,0.05)]",
},
bordered: {
tabList: "bg-transparent border-2 border-default-200 shadow-sm",
tabList: "bg-transparent border-1 border-default-200 shadow-sm",
cursor: "inset-0",
},
},

View File

@ -1,5 +1,11 @@
# @nextui-org/use-aria-accordion-item
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,11 @@
# @nextui-org/use-aria-button
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-aria-button",
"version": "0.0.0-dev-v2-20230605023127",
"version": "0.0.0-dev-v2-20230606020717",
"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,14 @@
# @nextui-org/use-aria-field
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/use-aria-slot-id@0.0.0-dev-v2-20230606020717
- @nextui-org/use-aria-label@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,11 @@
# @nextui-org/use-aria-label
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-aria-label",
"version": "0.0.0-dev-v2-20230605023127",
"version": "0.0.0-dev-v2-20230606020717",
"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,11 @@
# @nextui-org/use-aria-slot-id
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-aria-slot-id",
"version": "0.0.0-dev-v2-20230605023127",
"version": "0.0.0-dev-v2-20230606020717",
"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,13 @@
# @nextui-org/use-aria-toggle-button
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-aria-toggle-button",
"version": "0.0.0-dev-v2-20230605023127",
"version": "0.0.0-dev-v2-20230606020717",
"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,13 @@
# @nextui-org/use-callback-ref
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/use-safe-layout-effect@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-callback-ref",
"version": "0.0.0-dev-v2-20230605023127",
"version": "0.0.0-dev-v2-20230606020717",
"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,11 @@
# @nextui-org/use-clipboard
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,13 @@
# @nextui-org/use-disclosure
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/use-callback-ref@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

View File

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

View File

@ -1,5 +1,13 @@
# @nextui-org/use-image
## 0.0.0-dev-v2-20230606020717
### Patch Changes
- Types fixed, borders changed
- Updated dependencies
- @nextui-org/use-safe-layout-effect@0.0.0-dev-v2-20230606020717
## 0.0.0-dev-v2-20230605023127
### Patch Changes

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