feat(docs): a11y and responsive improved
@ -1,6 +1,7 @@
|
||||
/* eslint-disable react/display-name */
|
||||
import {
|
||||
Button,
|
||||
Image,
|
||||
Link as NextUILink,
|
||||
Dropdown,
|
||||
DropdownSection,
|
||||
@ -8,7 +9,7 @@ import {
|
||||
DropdownMenu,
|
||||
DropdownItem,
|
||||
} from "@nextui-org/react";
|
||||
import {motion, useInView} from "framer-motion";
|
||||
import {useInView} from "framer-motion";
|
||||
import {clsx} from "@nextui-org/shared-utils";
|
||||
import {
|
||||
AddNoteBulkIcon,
|
||||
@ -21,70 +22,44 @@ import {useRef} from "react";
|
||||
|
||||
import {FeaturesGrid} from "../features-grid";
|
||||
|
||||
import {TRANSITION_EASINGS} from "@/utils/transitions";
|
||||
import {
|
||||
KeyboardBoldIcon,
|
||||
MouseCircleBoldIcon,
|
||||
SquaresBoldIcon,
|
||||
FatrowsBoldIcon,
|
||||
EyeBoldIcon,
|
||||
KeyboardOpenBoldIcon,
|
||||
} from "@/components/icons";
|
||||
import {title, subtitle, titleWrapper, sectionWrapper} from "@/components/primitives";
|
||||
import {IconSvgProps} from "@/types";
|
||||
import {useIsMobile} from "@/hooks/use-media-query";
|
||||
|
||||
const a11yItems = [
|
||||
"Keyboard navigation",
|
||||
"Managed focus",
|
||||
"Collision aware",
|
||||
"Alignment control",
|
||||
"Screen reader support",
|
||||
"Typehead support",
|
||||
{
|
||||
title: "Keyboard navigation",
|
||||
icon: <KeyboardBoldIcon />,
|
||||
},
|
||||
{
|
||||
title: "Managed focus",
|
||||
icon: <MouseCircleBoldIcon />,
|
||||
},
|
||||
{
|
||||
title: "Collision aware",
|
||||
icon: <SquaresBoldIcon />,
|
||||
},
|
||||
{
|
||||
title: "Alignment control",
|
||||
icon: <FatrowsBoldIcon />,
|
||||
},
|
||||
{
|
||||
title: "Screen reader support",
|
||||
icon: <EyeBoldIcon />,
|
||||
},
|
||||
{
|
||||
title: "Typehead support",
|
||||
icon: <KeyboardOpenBoldIcon />,
|
||||
},
|
||||
];
|
||||
|
||||
const MotionTickBoldIcon = ({
|
||||
size = 24,
|
||||
delay = 0,
|
||||
width,
|
||||
height,
|
||||
}: IconSvgProps & {
|
||||
delay?: number;
|
||||
}) => {
|
||||
const ref = useRef<any>(null);
|
||||
const isInView = useInView(ref, {
|
||||
margin: "10px",
|
||||
once: true,
|
||||
});
|
||||
|
||||
const variants = {
|
||||
visible: {
|
||||
scale: 1,
|
||||
opacity: 1,
|
||||
transition: {
|
||||
duration: delay,
|
||||
easing: TRANSITION_EASINGS.spring,
|
||||
},
|
||||
},
|
||||
hidden: {
|
||||
scale: 0,
|
||||
opacity: 0,
|
||||
},
|
||||
};
|
||||
|
||||
return (
|
||||
<motion.svg
|
||||
ref={ref as any}
|
||||
animate={isInView ? "visible" : "hidden"}
|
||||
aria-hidden="true"
|
||||
fill="none"
|
||||
focusable="false"
|
||||
height={size || height}
|
||||
initial={false}
|
||||
role="presentation"
|
||||
variants={variants}
|
||||
viewBox="0 0 24 24"
|
||||
width={size || width}
|
||||
>
|
||||
<path
|
||||
d="M12 2C6.49 2 2 6.49 2 12C2 17.51 6.49 22 12 22C17.51 22 22 17.51 22 12C22 6.49 17.51 2 12 2ZM16.78 9.7L11.11 15.37C10.97 15.51 10.78 15.59 10.58 15.59C10.38 15.59 10.19 15.51 10.05 15.37L7.22 12.54C6.93 12.25 6.93 11.77 7.22 11.48C7.51 11.19 7.99 11.19 8.28 11.48L10.58 13.78L15.72 8.64C16.01 8.35 16.49 8.35 16.78 8.64C17.07 8.93 17.07 9.4 16.78 9.7Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
</motion.svg>
|
||||
);
|
||||
};
|
||||
|
||||
const iconClasses = "text-2xl text-neutral-500 pointer-events-none flex-shrink-0";
|
||||
|
||||
export const A11yOtb = () => {
|
||||
@ -93,6 +68,8 @@ export const A11yOtb = () => {
|
||||
margin: "-10px",
|
||||
});
|
||||
|
||||
const isMobile = useIsMobile();
|
||||
|
||||
return (
|
||||
<section className={sectionWrapper({class: "pb-56"})}>
|
||||
<div className="flex flex-col gap-8">
|
||||
@ -118,21 +95,18 @@ export const A11yOtb = () => {
|
||||
</p>
|
||||
</div>
|
||||
<div className="grid grid-cols-1 lg:grid-cols-2 gap-4">
|
||||
<div className="flex flex-col mt-8 gap-6">
|
||||
<div className="flex flex-col mt-20 gap-6">
|
||||
<FeaturesGrid
|
||||
classNames={{
|
||||
base: "grid-cols-1 md:grid-cols-2 lg:grid-cols-2 gap-4",
|
||||
header: "pb-3",
|
||||
iconWrapper: "bg-neutral-100 text-neutral-400",
|
||||
iconWrapper: "bg-neutral-100 dark:bg-transparent text-neutral-500/50",
|
||||
}}
|
||||
features={a11yItems.map((item, index) => ({
|
||||
title: item,
|
||||
icon: <MotionTickBoldIcon delay={index * 0.2} />,
|
||||
}))}
|
||||
features={a11yItems}
|
||||
/>
|
||||
<Button
|
||||
as={Link}
|
||||
className="max-w-fit text-neutral-600"
|
||||
className="max-w-fit text-neutral-400 bg-neutral-100/50"
|
||||
color="neutral"
|
||||
href="/docs/theme/customize-theme"
|
||||
radius="full"
|
||||
@ -144,18 +118,24 @@ export const A11yOtb = () => {
|
||||
</div>
|
||||
<div
|
||||
ref={ref}
|
||||
className="w-full h-full min-h-[390px] bg-gradient-to-r rounded-xl flex pt-8 items-start justify-center from-[#4ADE80] to-[#06B6D4]"
|
||||
className="relative w-full h-full min-h-[200px] lg:min-h-[390px] bg-gradient-to-r rounded-xl flex lg:pt-8 items-center lg:items-start justify-center from-[#4ADE80] to-[#06B6D4]"
|
||||
>
|
||||
{isInView && (
|
||||
<Dropdown isOpen className="shadow-xl" placement="bottom" shouldFlip={false}>
|
||||
<Dropdown
|
||||
defaultOpen
|
||||
className="shadow-xl"
|
||||
placement="bottom"
|
||||
shouldBlockScroll={isMobile}
|
||||
shouldFlip={isMobile}
|
||||
>
|
||||
<DropdownTrigger>
|
||||
<Button color="success" variant="flat">
|
||||
Actions
|
||||
{isMobile ? "Click me" : "Actions"}
|
||||
</Button>
|
||||
</DropdownTrigger>
|
||||
<DropdownMenu
|
||||
aria-label="Actions"
|
||||
closeOnSelect={false}
|
||||
closeOnSelect={true}
|
||||
color="neutral"
|
||||
variant="flat"
|
||||
>
|
||||
@ -205,6 +185,9 @@ export const A11yOtb = () => {
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="absolute hidden dark:block dark:opacity-80 -bottom-[10%] -left-[0%] -z-[1]">
|
||||
<Image removeWrapper alt="a11y background" className="h-full" src="/gradients/green.svg" />
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
@ -42,26 +42,8 @@ export const shopCartStyles = tv({
|
||||
"!duration-300",
|
||||
],
|
||||
contentWrapper: "flex flex-col justify-center transition-all h-full h-[200px]",
|
||||
title: [
|
||||
"relative",
|
||||
"w-full",
|
||||
"flex-none",
|
||||
"text-xl",
|
||||
"font-semibold",
|
||||
"text-foreground",
|
||||
"transition-all",
|
||||
"will-change-auto",
|
||||
"!duration-500",
|
||||
],
|
||||
description: [
|
||||
"my-2",
|
||||
"w-full",
|
||||
"text-base",
|
||||
"text-neutral-500",
|
||||
"transition-all",
|
||||
"will-change-auto",
|
||||
"!duration-500",
|
||||
],
|
||||
title: ["relative", "w-full", "flex-none", "text-xl", "font-semibold", "text-foreground"],
|
||||
description: ["my-2", "w-full", "text-base", "text-neutral-500"],
|
||||
price: "relative text-lg font-semibold text-foreground",
|
||||
previousPrice: "relative line-through font-semibold text-neutral-400 ml-3",
|
||||
percentOff: "relative font-normal text-success ml-3",
|
||||
@ -82,6 +64,7 @@ export const shopCartStyles = tv({
|
||||
variants: {
|
||||
theme: {
|
||||
nextui: {
|
||||
card: "py-5",
|
||||
imageWrapper: ["before:rounded-2xl", "before:from-[#010187] before:to-[#18000E]"],
|
||||
sizeOption: [
|
||||
"group-data-[checked=true]:bg-primary",
|
||||
|
||||
@ -13,9 +13,9 @@ import {
|
||||
Tabs,
|
||||
TabItem,
|
||||
} from "@nextui-org/react";
|
||||
import {clsx} from "@nextui-org/shared-utils";
|
||||
import {ArrowRightIcon, MoonFilledIcon, SunFilledIcon} from "@nextui-org/shared-icons";
|
||||
import {useTheme} from "next-themes";
|
||||
import dynamic from "next/dynamic";
|
||||
|
||||
import {useMediaQuery} from "@/hooks/use-media-query";
|
||||
import {title, subtitle} from "@/components/primitives";
|
||||
@ -23,10 +23,6 @@ import {NextUILogo} from "@/components";
|
||||
import {GithubIcon} from "@/components/icons";
|
||||
import {UserTwitterCard} from "@/components/demos";
|
||||
|
||||
const DynamicLopperBG = dynamic(() => import("./looper-bg").then((mod) => mod.LooperBg), {
|
||||
ssr: false,
|
||||
});
|
||||
|
||||
const FloatingComponents: React.FC<{mounted: boolean}> = ({mounted}) => {
|
||||
const {theme, setTheme} = useTheme();
|
||||
|
||||
@ -168,7 +164,7 @@ export const Hero = () => {
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<section className="flex relative w-full flex-nowrap justify-between items-center h-[calc(100vh_-_64px)] 2xl:h-[calc(84vh_-_64px)]">
|
||||
<section className="flex relative w-full flex-nowrap justify-between items-center h-[calc(100dvh_-_64px)] 2xl:h-[calc(84vh_-_64px)]">
|
||||
<div className="flex flex-col gap-6 w-full lg:w-1/2 xl:mt-10">
|
||||
<div>
|
||||
<h1 className={title()}>Make </h1>
|
||||
@ -200,8 +196,16 @@ export const Hero = () => {
|
||||
|
||||
{!isTablet && <FloatingComponents mounted={mounted} />}
|
||||
|
||||
<DynamicLopperBG
|
||||
className="absolute translate-y-[5%] -translate-x-[10%] md:translate-x-0 md:translate-y-[10%] -z-50 opacity-0 data-[mounted=true]:opacity-100 transition-opacity"
|
||||
<div
|
||||
className={clsx(
|
||||
"absolute -top-20 lg:top-10 w-screen h-screen -z-50 opacity-0",
|
||||
"data-[mounted=true]:opacity-100 transition-opacity",
|
||||
"bg-left bg-no-repeat bg-[url('/gradients/looper-pattern.svg')]",
|
||||
"after:content-[''] after:absolute after:top-0 after:left-0 after:w-full after:h-full after:z-[-1]",
|
||||
isTablet
|
||||
? "after:bg-gradient-to-l after:from-transparent after:to-white dark:after:to-black"
|
||||
: "after:bg-gradient-to-r after:from-transparent after:to-white dark:after:to-black after:z-[-1]",
|
||||
)}
|
||||
data-mounted={mounted}
|
||||
/>
|
||||
</section>
|
||||
|
||||
23
apps/docs/components/icons/bold/eye.tsx
Normal file
@ -0,0 +1,23 @@
|
||||
import {IconSvgProps} from "@/types";
|
||||
|
||||
export const EyeBoldIcon = ({size = 24, width, height, ...props}: IconSvgProps) => (
|
||||
<svg
|
||||
aria-hidden="true"
|
||||
fill="none"
|
||||
focusable="false"
|
||||
height={size || height}
|
||||
role="presentation"
|
||||
viewBox="0 0 24 24"
|
||||
width={size || width}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
d="M21.25 9.14969C18.94 5.51969 15.56 3.42969 12 3.42969C10.22 3.42969 8.49 3.94969 6.91 4.91969C5.33 5.89969 3.91 7.32969 2.75 9.14969C1.75 10.7197 1.75 13.2697 2.75 14.8397C5.06 18.4797 8.44 20.5597 12 20.5597C13.78 20.5597 15.51 20.0397 17.09 19.0697C18.67 18.0897 20.09 16.6597 21.25 14.8397C22.25 13.2797 22.25 10.7197 21.25 9.14969ZM12 16.0397C9.76 16.0397 7.96 14.2297 7.96 11.9997C7.96 9.76969 9.76 7.95969 12 7.95969C14.24 7.95969 16.04 9.76969 16.04 11.9997C16.04 14.2297 14.24 16.0397 12 16.0397Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
<path
|
||||
d="M11.9984 9.14062C10.4284 9.14062 9.14844 10.4206 9.14844 12.0006C9.14844 13.5706 10.4284 14.8506 11.9984 14.8506C13.5684 14.8506 14.8584 13.5706 14.8584 12.0006C14.8584 10.4306 13.5684 9.14062 11.9984 9.14062Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
23
apps/docs/components/icons/bold/fatrows.tsx
Normal file
@ -0,0 +1,23 @@
|
||||
import {IconSvgProps} from "@/types";
|
||||
|
||||
export const FatrowsBoldIcon = ({size = 24, width, height, ...props}: IconSvgProps) => (
|
||||
<svg
|
||||
aria-hidden="true"
|
||||
fill="none"
|
||||
focusable="false"
|
||||
height={size || height}
|
||||
role="presentation"
|
||||
viewBox="0 0 24 24"
|
||||
width={size || width}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
d="M19.9 13.5H4.1C2.6 13.5 2 14.14 2 15.73V19.77C2 21.36 2.6 22 4.1 22H19.9C21.4 22 22 21.36 22 19.77V15.73C22 14.14 21.4 13.5 19.9 13.5Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
<path
|
||||
d="M12.9 2H4.1C2.6 2 2 2.64 2 4.23V8.27C2 9.86 2.6 10.5 4.1 10.5H12.9C14.4 10.5 15 9.86 15 8.27V4.23C15 2.64 14.4 2 12.9 2Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
6
apps/docs/components/icons/bold/index.ts
Normal file
@ -0,0 +1,6 @@
|
||||
export * from "./keyboard";
|
||||
export * from "./mouse-circle";
|
||||
export * from "./squares";
|
||||
export * from "./fatrows";
|
||||
export * from "./eye";
|
||||
export * from "./keyboard-open";
|
||||
23
apps/docs/components/icons/bold/keyboard-open.tsx
Normal file
@ -0,0 +1,23 @@
|
||||
import {IconSvgProps} from "@/types";
|
||||
|
||||
export const KeyboardOpenBoldIcon = ({size = 24, width, height, ...props}: IconSvgProps) => (
|
||||
<svg
|
||||
aria-hidden="true"
|
||||
fill="none"
|
||||
focusable="false"
|
||||
height={size || height}
|
||||
role="presentation"
|
||||
viewBox="0 0 24 24"
|
||||
width={size || width}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
d="M17 22.75H7C6.59 22.75 6.25 22.41 6.25 22C6.25 21.59 6.59 21.25 7 21.25H17C17.41 21.25 17.75 21.59 17.75 22C17.75 22.41 17.41 22.75 17 22.75Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
<path
|
||||
d="M18 2H6C3.79 2 2 3.79 2 6V15C2 17.21 3.79 19 6 19H18C20.21 19 22 17.21 22 15V6C22 3.79 20.21 2 18 2ZM9.99 7.32C10.55 7.32 11 7.77 11 8.32C11 8.87 10.55 9.32 10 9.32C9.45 9.32 9 8.87 9 8.32C9 7.77 9.44 7.32 9.99 7.32ZM6.84 7.32C7.4 7.32 7.85 7.77 7.85 8.32C7.85 8.87 7.4 9.32 6.85 9.32C6.3 9.32 5.85 8.87 5.85 8.32C5.85 7.77 6.28 7.32 6.84 7.32ZM17.26 14.86H6.76C6.34 14.86 6 14.52 6 14.11C6 13.7 6.33 13.36 6.74 13.36H17.27C17.68 13.36 18.02 13.7 18.02 14.11C18.02 14.52 17.68 14.86 17.26 14.86ZM17.26 9.07H13.58C13.17 9.07 12.83 8.73 12.83 8.32C12.83 7.91 13.17 7.57 13.58 7.57H17.26C17.67 7.57 18.01 7.91 18.01 8.32C18.01 8.73 17.68 9.07 17.26 9.07Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
19
apps/docs/components/icons/bold/keyboard.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
import {IconSvgProps} from "@/types";
|
||||
|
||||
export const KeyboardBoldIcon = ({size = 24, width, height, ...props}: IconSvgProps) => (
|
||||
<svg
|
||||
aria-hidden="true"
|
||||
fill="none"
|
||||
focusable="false"
|
||||
height={size || height}
|
||||
role="presentation"
|
||||
viewBox="0 0 24 24"
|
||||
width={size || width}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
d="M18.27 3.35C17.8 3.28 17.26 3.25 16.5 3.25H7.5C6.75 3.25 6.2 3.28 5.76 3.34C2.41 3.71 1.75 5.7 1.75 9V15C1.75 18.3 2.41 20.29 5.73 20.65C6.2 20.72 6.74 20.75 7.5 20.75H16.5C17.25 20.75 17.8 20.72 18.24 20.66C21.59 20.29 22.25 18.31 22.25 15V9C22.25 5.7 21.59 3.71 18.27 3.35ZM10.09 9C10.65 9 11.1 9.45 11.1 10C11.1 10.55 10.65 11 10.1 11C9.55 11 9.1 10.55 9.1 10C9.1 9.45 9.54 9 10.09 9ZM7.09 9C7.66 9 8.1 9.45 8.1 10C8.1 10.55 7.65 11 7.1 11C6.55 11 6.1 10.55 6.1 10C6.1 9.45 6.54 9 7.09 9ZM17 16.25H7.02C6.61 16.25 6.26 15.91 6.26 15.5C6.26 15.09 6.59 14.75 7 14.75H17C17.41 14.75 17.75 15.09 17.75 15.5C17.75 15.91 17.41 16.25 17 16.25ZM17 10.75H13.5C13.09 10.75 12.75 10.41 12.75 10C12.75 9.59 13.09 9.25 13.5 9.25H17C17.41 9.25 17.75 9.59 17.75 10C17.75 10.41 17.41 10.75 17 10.75Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
23
apps/docs/components/icons/bold/mouse-circle.tsx
Normal file
@ -0,0 +1,23 @@
|
||||
import {IconSvgProps} from "@/types";
|
||||
|
||||
export const MouseCircleBoldIcon = ({size = 24, width, height, ...props}: IconSvgProps) => (
|
||||
<svg
|
||||
aria-hidden="true"
|
||||
fill="none"
|
||||
focusable="false"
|
||||
height={size || height}
|
||||
role="presentation"
|
||||
viewBox="0 0 24 24"
|
||||
width={size || width}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
d="M20.9597 17.8385L19.3297 18.3885C18.8797 18.5385 18.5197 18.8885 18.3697 19.3485L17.8197 20.9785C17.3497 22.3885 15.3697 22.3585 14.9297 20.9485L13.0797 14.9985C12.7197 13.8185 13.8097 12.7185 14.9797 13.0885L20.9397 14.9385C22.3397 15.3785 22.3597 17.3685 20.9597 17.8385Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
<path
|
||||
d="M20.9994 11.4994C20.9994 11.9294 20.9694 12.3594 20.9194 12.7794C20.8794 13.0794 20.5694 13.2594 20.2794 13.1694L15.4294 11.6594C14.3494 11.3294 13.1994 11.6094 12.3994 12.3994C11.5994 13.1994 11.3094 14.3694 11.6494 15.4494L13.1494 20.2794C13.2394 20.5694 13.0494 20.8794 12.7494 20.9194C12.3294 20.9694 11.9194 20.9994 11.4994 20.9994C6.15942 20.9994 1.85942 16.6094 1.99942 11.2294C2.13942 6.26942 6.26942 2.13942 11.2294 1.99942C16.6094 1.85942 20.9994 6.15942 20.9994 11.4994Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
27
apps/docs/components/icons/bold/squares.tsx
Normal file
@ -0,0 +1,27 @@
|
||||
import {IconSvgProps} from "@/types";
|
||||
|
||||
export const SquaresBoldIcon = ({size = 24, width, height, ...props}: IconSvgProps) => (
|
||||
<svg
|
||||
aria-hidden="true"
|
||||
fill="none"
|
||||
focusable="false"
|
||||
height={size || height}
|
||||
role="presentation"
|
||||
viewBox="0 0 24 24"
|
||||
width={size || width}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
d="M12 18.5V19.38C12 21.25 11.25 22 9.37 22H4.62C3.17 22 2 20.83 2 19.38V14.63C2 12.75 2.75 12 4.62 12H5.5V15.5C5.5 17.16 6.84 18.5 8.5 18.5H12Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
<path
|
||||
d="M17 13.5V14.37C17 15.82 15.82 17 14.37 17H9.62C7.75 17 7 16.25 7 14.37V9.62C7 8.17 8.17 7 9.62 7H10.5V10.5C10.5 12.16 11.84 13.5 13.5 13.5H17Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
<path
|
||||
d="M22 4.62V9.37C22 11.25 21.25 12 19.37 12H14.62C12.75 12 12 11.25 12 9.37V4.62C12 2.75 12.75 2 14.62 2H19.37C21.25 2 22 2.75 22 4.62Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
@ -9,3 +9,5 @@ export * from "./devices";
|
||||
export * from "./palette";
|
||||
export * from "./gaming-console";
|
||||
export * from "./star";
|
||||
export * from "./two-tone";
|
||||
export * from "./bold";
|
||||
|
||||
1
apps/docs/components/icons/two-tone/index.ts
Normal file
@ -0,0 +1 @@
|
||||
export * from "./keyboard";
|
||||
54
apps/docs/components/icons/two-tone/keyboard.tsx
Normal file
@ -0,0 +1,54 @@
|
||||
import {IconSvgProps} from "@/types";
|
||||
|
||||
export const KeyboardTwoToneIcon = ({size = 24, width, height, ...props}: IconSvgProps) => (
|
||||
<svg
|
||||
aria-hidden="true"
|
||||
fill="none"
|
||||
focusable="false"
|
||||
height={size || height}
|
||||
role="presentation"
|
||||
viewBox="0 0 24 24"
|
||||
width={size || width}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
d="M7.5 4H16.5C17.12 4 17.67 4.02 18.16 4.09C20.79 4.38 21.5 5.62 21.5 9V15C21.5 18.38 20.79 19.62 18.16 19.91C17.67 19.98 17.12 20 16.5 20H7.5C6.88 20 6.33 19.98 5.84 19.91C3.21 19.62 2.5 18.38 2.5 15V9C2.5 5.62 3.21 4.38 5.84 4.09C6.33 4.02 6.88 4 7.5 4Z"
|
||||
stroke="currentColor"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth="1.5"
|
||||
/>
|
||||
<path
|
||||
d="M13.5 10H17"
|
||||
opacity="0.4"
|
||||
stroke="currentColor"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth="1.5"
|
||||
/>
|
||||
<path
|
||||
d="M7 15.5H7.02H17"
|
||||
opacity="0.4"
|
||||
stroke="currentColor"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth="1.5"
|
||||
/>
|
||||
<path
|
||||
d="M10.0941 10H10.1031"
|
||||
opacity="0.4"
|
||||
stroke="currentColor"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth="2"
|
||||
/>
|
||||
<path
|
||||
d="M7.09412 10H7.1031"
|
||||
opacity="0.4"
|
||||
stroke="currentColor"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth="2"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
@ -1,5 +1,4 @@
|
||||
export * from "./nextui-logo";
|
||||
export * from "./docs-navbar";
|
||||
export * from "./theme-switch";
|
||||
export * from "./hero";
|
||||
export * from "./looper-bg";
|
||||
|
||||
@ -17,8 +17,8 @@ export const title = tv({
|
||||
},
|
||||
size: {
|
||||
sm: "text-2xl lg:text-3xl",
|
||||
md: "text-4xl lg:text-5xl",
|
||||
lg: "text-5xl lg:text-6xl",
|
||||
md: "text-3xl lg:text-5xl",
|
||||
lg: "text-4xl lg:text-6xl",
|
||||
},
|
||||
fullWidth: {
|
||||
true: "w-full block",
|
||||
@ -36,7 +36,7 @@ export const title = tv({
|
||||
});
|
||||
|
||||
export const subtitle = tv({
|
||||
base: "w-full md:w-1/2 my-2 text-xl font-light text-neutral-500 block max-w-full",
|
||||
base: "w-full md:w-1/2 my-2 text-lg lg:text-xl font-light text-neutral-500 block max-w-full",
|
||||
variants: {
|
||||
fullWidth: {
|
||||
true: "!w-full",
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
import {ReactNode, FC} from "react";
|
||||
|
||||
import {DocsNavbar} from "@/components";
|
||||
import {Head} from "./head";
|
||||
import {Navbar} from "./navbar";
|
||||
|
||||
export interface DefaultLayoutProps {
|
||||
children: ReactNode;
|
||||
@ -8,11 +9,10 @@ export interface DefaultLayoutProps {
|
||||
|
||||
export const DefaultLayout: FC<DefaultLayoutProps> = ({children}) => {
|
||||
return (
|
||||
<>
|
||||
<DocsNavbar />
|
||||
<main className="container mx-auto max-w-7xl px-6 overflow-x-hidden lg:overflow-x-visible overflow-y-scroll">
|
||||
{children}
|
||||
</main>
|
||||
</>
|
||||
<div id="app-container">
|
||||
<Head />
|
||||
<Navbar />
|
||||
<main className="container mx-auto max-w-7xl px-6">{children}</main>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
67
apps/docs/layouts/head.tsx
Normal file
@ -0,0 +1,67 @@
|
||||
import React from "react";
|
||||
import NextHead from "next/head";
|
||||
import {useTheme} from "next-themes";
|
||||
import capitalize from "lodash/capitalize";
|
||||
|
||||
import {TWITTER_USER_NAME, SITE_URL} from "@/libs/constants";
|
||||
|
||||
export interface HeaderProps {
|
||||
title?: string;
|
||||
description?: string;
|
||||
image?: string;
|
||||
url?: string;
|
||||
}
|
||||
|
||||
if (global.document) {
|
||||
const info = [`Let's make the Web prettier 🚀`];
|
||||
|
||||
for (const message of info) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(message);
|
||||
}
|
||||
}
|
||||
|
||||
export const Head: React.FC<HeaderProps> = ({
|
||||
title,
|
||||
description = "Make beautiful websites regardless of your design experience.",
|
||||
image = "/twitter-cards/nextui.jpeg",
|
||||
url,
|
||||
}) => {
|
||||
const {theme} = useTheme();
|
||||
|
||||
const isDark = theme === "dark";
|
||||
let pageTitle = title ? `${capitalize(title)} | ` : "";
|
||||
|
||||
pageTitle += "NextUI - Beautiful, fast and modern React UI Library";
|
||||
|
||||
return (
|
||||
<NextHead>
|
||||
<title>{pageTitle}</title>
|
||||
<meta content={`@${TWITTER_USER_NAME}`} name="twitter:site" />
|
||||
<meta content={image ? "summary_large_image" : "summary"} name="twitter:card" />
|
||||
{image && (
|
||||
<meta
|
||||
content={image.startsWith("https://") ? image : `${SITE_URL}${image}`}
|
||||
property="og:image"
|
||||
/>
|
||||
)}
|
||||
<meta key="title" content={pageTitle} property="og:title" />
|
||||
{url && <meta content={url} property="og:url" />}
|
||||
<meta content={description} property="og:description" />
|
||||
<meta content={description} name="description" />
|
||||
<meta content={isDark ? "#000000" : "#FFFFFF"} name="msapplication-TileColor" />
|
||||
<meta content={isDark ? "#000000" : "#FFFFFF"} name="theme-color" />
|
||||
<meta
|
||||
key="viewport"
|
||||
content="width=device-width, initial-scale=1.0, maximum-scale=5.0"
|
||||
name="viewport"
|
||||
/>
|
||||
<link href="/favicon.ico" rel="icon" />
|
||||
<link href="/manifest.json" rel="manifest" />
|
||||
<link href="/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180" />
|
||||
<link href="/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png" />
|
||||
<link href="/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png" />
|
||||
<link color={isDark ? "#000000" : "#FFFFFF"} href="/safari-pinned-tab.svg" rel="mask-icon" />
|
||||
</NextHead>
|
||||
);
|
||||
};
|
||||
@ -1,6 +1,6 @@
|
||||
import {useState} from "react";
|
||||
import {
|
||||
Navbar,
|
||||
Navbar as NextUINavbar,
|
||||
NavbarContent,
|
||||
NavbarMenu,
|
||||
NavbarMenuItem,
|
||||
@ -21,7 +21,7 @@ import {ChevronDownIcon} from "@nextui-org/shared-icons";
|
||||
import {NextUILogo, ThemeSwitch} from "@/components";
|
||||
import {TwitterIcon, GithubIcon, DiscordIcon, HeartFilledIcon} from "@/components/icons";
|
||||
|
||||
export const DocsNavbar = () => {
|
||||
export const Navbar = () => {
|
||||
const [isMenuOpen, setIsMenuOpen] = useState<boolean | undefined>(false);
|
||||
|
||||
const menuItems = [
|
||||
@ -55,7 +55,7 @@ export const DocsNavbar = () => {
|
||||
);
|
||||
|
||||
return (
|
||||
<Navbar maxWidth="xl" position="sticky" onMenuOpenChange={setIsMenuOpen}>
|
||||
<NextUINavbar maxWidth="xl" position="sticky" onMenuOpenChange={setIsMenuOpen}>
|
||||
<NavbarContent className="basis-1/5 sm:basis-full" justify="start">
|
||||
<NavbarBrand className="gap-3">
|
||||
<NextUILogo auto />
|
||||
@ -144,6 +144,6 @@ export const DocsNavbar = () => {
|
||||
</NavbarMenuItem>
|
||||
))}
|
||||
</NavbarMenu>
|
||||
</Navbar>
|
||||
</NextUINavbar>
|
||||
);
|
||||
};
|
||||
2
apps/docs/libs/constants.ts
Normal file
@ -0,0 +1,2 @@
|
||||
export const TWITTER_USER_NAME = "getnextui";
|
||||
export const SITE_URL = "https://nextui.org";
|
||||
13
apps/docs/pages/_document.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
import {Html, Head, Main, NextScript} from "next/document";
|
||||
|
||||
export default function Document() {
|
||||
return (
|
||||
<Html lang="en">
|
||||
<Head />
|
||||
<body>
|
||||
<Main />
|
||||
<NextScript />
|
||||
</body>
|
||||
</Html>
|
||||
);
|
||||
}
|
||||
BIN
apps/docs/public/android-chrome-192x192.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
apps/docs/public/android-chrome-512x512.png
Normal file
|
After Width: | Height: | Size: 7.5 KiB |
BIN
apps/docs/public/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
20
apps/docs/public/gradients/green.svg
Normal file
@ -0,0 +1,20 @@
|
||||
<svg width="1265" height="1210" viewBox="0 0 1265 1210" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.3" filter="url(#filter0_f_580_962)">
|
||||
<path opacity="0.5" d="M800.033 564.678C806.943 588.507 833.793 599.979 837.953 625.588C838.543 632.478 846.073 645.428 871.463 642.111C895.933 656.336 971.693 628.697 990.193 652.471C1003.81 669.973 1018.8 691.802 1013.51 723.272C1009.43 747.536 995.853 771.454 982.093 792.105C962.153 822.018 938.623 849.223 913.203 870.762C830.363 940.978 735.513 959.256 653.433 959.506C553.423 959.816 466.783 921.193 393.853 859.425C363.773 833.952 336.833 804.466 316.123 766.932C297.063 732.375 281.553 693.738 269.583 652.834C254.333 600.763 245.743 542.381 252.133 479.216C256.983 431.174 277.593 385.361 306.133 343.538C345.133 286.361 397.563 253.896 448.333 250.237C479.653 247.981 514.423 261.548 515.873 303.898C516.973 336.205 502.053 372.514 492.373 405.683C485.913 427.849 477.103 459.242 491.873 470.803C516.853 490.36 551.643 495.977 583.143 499.938C623.383 504.998 666.463 494.109 708.343 491.446C732.463 489.912 752.003 501.741 769.163 516.208C782.953 527.841 794.103 544.249 800.033 564.678Z" fill="#17C964" fill-opacity="0.6"/>
|
||||
</g>
|
||||
<g opacity="0.3" filter="url(#filter1_f_580_962)">
|
||||
<path opacity="0.5" d="M464.569 564.678C457.659 588.507 430.809 599.979 426.649 625.588C426.059 632.478 418.529 645.428 393.139 642.111C368.669 656.336 292.909 628.697 274.409 652.471C260.789 669.973 245.799 691.802 251.089 723.272C255.169 747.536 268.749 771.454 282.509 792.105C302.449 822.018 325.979 849.223 351.399 870.762C434.239 940.978 529.089 959.256 611.169 959.506C711.179 959.816 797.819 921.193 870.749 859.425C900.829 833.952 927.769 804.466 948.479 766.932C967.539 732.375 983.049 693.738 995.019 652.834C1010.27 600.763 1018.86 542.381 1012.47 479.216C1007.62 431.174 987.009 385.361 958.469 343.538C919.469 286.361 867.039 253.896 816.269 250.237C784.949 247.981 750.179 261.548 748.729 303.898C747.629 336.205 762.549 372.514 772.229 405.683C778.689 427.849 787.499 459.242 772.729 470.803C747.749 490.36 712.959 495.977 681.459 499.938C641.219 504.998 598.139 494.109 556.259 491.446C532.139 489.912 512.599 501.741 495.439 516.208C481.649 527.841 470.499 544.249 464.569 564.678Z" fill="#00F0FF" fill-opacity="0.6"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_580_962" x="0" y="0" width="1264.6" height="1209.51" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="125" result="effect1_foregroundBlur_580_962"/>
|
||||
</filter>
|
||||
<filter id="filter1_f_580_962" x="0" y="0" width="1264.6" height="1209.51" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="125" result="effect1_foregroundBlur_580_962"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
349
apps/docs/public/gradients/looper-pattern.svg
Normal file
@ -0,0 +1,349 @@
|
||||
<svg width="2260" height="1397" viewBox="0 0 2260 1397" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.0144928" d="M1870.09 1001.17L1830.89 398.94C1827.68 349.619 1776.32 318.586 1731.17 338.689L1349.04 508.821C1303.89 528.924 1292.58 587.861 1327.09 623.249L1748.4 1055.34C1794.44 1102.56 1874.37 1066.97 1870.09 1001.17Z" stroke="url(#paint0_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.0289855" d="M1830.45 1013.99L1823.57 417.633C1822.99 368.178 1773.3 334.444 1727.13 352.169L1340.08 500.74C1293.91 518.464 1279.55 576.786 1312.22 613.92L1706.15 1061.71C1749.65 1111.17 1831.21 1079.86 1830.45 1013.99Z" stroke="url(#paint1_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.0434783" d="M1790.69 1025.77L1815.39 436.978C1817.46 387.53 1769.58 351.184 1722.51 366.478L1331.76 493.443C1284.69 508.737 1267.31 566.286 1298.05 605.071L1664.12 1066.9C1704.98 1118.46 1787.94 1091.5 1790.69 1025.77Z" stroke="url(#paint2_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.057971" d="M1750.88 1036.5L1806.34 456.922C1811.06 407.622 1765.12 368.76 1717.29 381.578L1324.01 486.957C1276.17 499.775 1255.82 556.397 1284.56 596.733L1622.38 1070.93C1660.51 1124.45 1744.62 1101.91 1750.88 1036.5Z" stroke="url(#paint3_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.0724638" d="M1711.06 1046.19L1796.39 477.41C1803.74 428.398 1759.89 387.124 1711.41 397.428L1316.8 481.306C1268.32 491.61 1245.05 547.152 1271.7 588.936L1580.99 1073.84C1616.28 1129.17 1701.33 1111.09 1711.06 1046.19Z" stroke="url(#paint4_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.0869565" d="M1671.3 1054.85L1785.51 498.385C1795.48 449.802 1753.83 406.226 1704.85 413.985L1310.07 476.512C1261.08 484.271 1234.94 538.583 1259.44 581.706L1540.01 1075.65C1572.39 1132.65 1658.12 1119.07 1671.3 1054.85Z" stroke="url(#paint5_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.101449" d="M1631.64 1062.51L1773.68 519.79C1786.25 471.777 1746.93 426.015 1697.57 431.203L1303.77 472.594C1254.41 477.782 1225.47 530.717 1247.74 575.069L1499.51 1076.4C1528.89 1134.91 1615.07 1125.85 1631.64 1062.51Z" stroke="url(#paint6_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.115942" d="M1592.15 1069.18L1760.89 541.567C1776.02 494.261 1739.15 446.438 1689.55 449.037L1297.85 469.565C1248.25 472.165 1216.58 523.58 1236.57 569.046L1459.53 1076.13C1485.85 1135.99 1572.23 1131.46 1592.15 1069.18Z" stroke="url(#paint7_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.130435" d="M1552.87 1074.88L1747.12 563.658C1764.77 517.195 1730.45 467.44 1680.75 467.44L1292.25 467.44C1242.55 467.44 1208.23 517.195 1225.88 563.658L1420.13 1074.88C1443.32 1135.93 1529.68 1135.93 1552.87 1074.88Z" stroke="url(#paint8_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.144928" d="M1513.85 1079.64L1732.36 586.004C1752.49 540.519 1720.83 488.966 1671.15 486.362L1286.93 466.226C1237.26 463.623 1200.37 511.584 1215.64 558.924L1381.36 1072.7C1401.37 1134.76 1487.46 1139.27 1513.85 1079.64Z" stroke="url(#paint9_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.15942" d="M1475.14 1083.49L1716.61 608.545C1739.17 564.171 1710.25 510.96 1660.74 505.756L1281.83 465.931C1232.32 460.728 1192.97 506.763 1205.81 554.858L1343.26 1069.62C1360.06 1132.54 1445.63 1141.54 1475.14 1083.49Z" stroke="url(#paint10_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.173913" d="M1436.79 1086.44L1699.86 631.222C1724.79 588.087 1698.7 533.364 1649.49 525.57L1276.9 466.557C1227.69 458.764 1185.97 502.747 1196.35 551.473L1305.87 1065.7C1319.42 1129.31 1404.25 1142.75 1436.79 1086.44Z" stroke="url(#paint11_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.188406" d="M1398.83 1088.54L1682.11 653.976C1709.34 612.208 1686.16 556.121 1637.39 545.755L1272.08 468.105C1223.31 457.739 1179.33 499.551 1187.21 548.782L1269.25 1060.99C1279.52 1125.12 1363.37 1142.94 1398.83 1088.54Z" stroke="url(#paint12_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.202899" d="M1361.32 1089.81L1663.37 676.748C1692.82 636.469 1672.63 579.174 1624.43 566.259L1267.33 470.572C1219.13 457.657 1173 497.182 1178.36 546.792L1233.42 1055.54C1240.39 1120.01 1323.04 1142.16 1361.32 1089.81Z" stroke="url(#paint13_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.217391" d="M1324.28 1090.3L1643.64 699.482C1675.24 660.811 1658.1 602.463 1610.6 587.031L1262.59 473.954C1215.09 458.521 1166.93 495.649 1169.76 545.509L1198.41 1049.4C1202.09 1114.05 1283.3 1140.44 1324.28 1090.3Z" stroke="url(#paint14_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.231884" d="M1287.75 1090.03L1622.94 722.119C1656.6 685.17 1642.56 625.932 1595.9 608.019L1257.81 478.24C1211.14 460.327 1161.07 494.956 1161.36 544.938L1164.27 1042.63C1164.65 1107.29 1244.21 1137.83 1287.75 1090.03Z" stroke="url(#paint15_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.246377" d="M1251.78 1089.06L1601.27 744.604C1636.9 709.488 1626.01 649.522 1580.31 629.174L1252.94 483.42C1207.24 463.072 1155.39 495.105 1153.13 545.081L1131.01 1035.29C1128.1 1099.78 1205.8 1134.37 1251.78 1089.06Z" stroke="url(#paint16_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.26087" d="M1216.38 1087.41L1578.66 766.881C1616.16 733.703 1608.46 673.175 1563.84 650.444L1247.94 489.48C1203.32 466.749 1149.83 496.096 1145.03 545.936L1098.66 1027.43C1092.48 1091.59 1168.11 1130.12 1216.38 1087.41Z" stroke="url(#paint17_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.275362" d="M1181.59 1085.12L1555.12 788.896C1594.39 757.756 1589.9 696.835 1546.5 671.778L1242.75 496.405C1199.35 471.347 1144.35 497.925 1137.01 547.501L1067.24 1019.1C1057.82 1082.76 1131.17 1125.11 1181.59 1085.12Z" stroke="url(#paint18_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.289855" d="M1147.43 1082.25L1530.68 810.597C1571.6 781.591 1570.36 720.447 1528.29 693.127L1237.33 504.173C1195.26 476.854 1138.9 500.588 1129.04 549.771L1036.76 1010.38C1024.13 1073.38 1095.01 1119.41 1147.43 1082.25Z" stroke="url(#paint19_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.304348" d="M1113.93 1078.83L1505.36 831.936C1547.83 805.151 1549.84 743.954 1509.22 714.443L1231.63 512.766C1191.02 483.255 1133.43 504.075 1121.08 552.74L1007.23 1001.31C991.451 1063.49 1059.67 1113.05 1113.93 1078.83Z" stroke="url(#paint20_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.318841" d="M1081.1 1074.91L1479.2 852.861C1523.09 828.381 1528.35 767.303 1489.29 735.677L1225.62 522.158C1186.56 490.532 1127.92 508.378 1113.1 556.398L978.67 991.964C959.786 1053.15 1025.17 1106.1 1081.1 1074.91Z" stroke="url(#paint21_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.333333" d="M1048.96 1070.53L1452.22 873.327C1497.41 851.229 1505.92 790.442 1468.53 756.782L1219.25 532.325C1181.87 498.665 1122.3 513.483 1105.05 560.735L951.08 982.391C929.154 1042.44 991.537 1098.61 1048.96 1070.53Z" stroke="url(#paint22_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.347826" d="M1017.54 1065.73L1424.45 893.29C1470.81 873.643 1482.56 813.318 1446.95 777.713L1212.48 543.236C1176.87 507.631 1116.55 519.376 1096.9 565.738L924.461 972.654C899.562 1031.41 958.782 1090.63 1017.54 1065.73Z" stroke="url(#paint23_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.362319" d="M986.827 1060.56L1395.94 912.707C1443.35 895.576 1458.3 835.883 1424.57 798.426L1205.27 554.863C1171.54 517.406 1110.61 526.039 1088.62 571.392L898.81 962.81C871.017 1020.12 926.922 1082.21 986.827 1060.56Z" stroke="url(#paint24_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.376812" d="M956.848 1055.07L1366.72 931.539C1415.03 916.979 1433.17 858.089 1401.41 818.877L1197.59 567.174C1165.84 527.963 1104.46 533.455 1080.18 577.682L874.125 952.917C843.522 1008.65 895.972 1073.42 956.848 1055.07Z" stroke="url(#paint25_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.391304" d="M927.603 1049.3L1336.84 949.748C1385.92 937.809 1407.19 879.889 1377.5 839.027L1189.4 580.135C1159.71 539.273 1098.06 541.602 1071.54 584.589L850.395 943.032C817.074 997.041 865.941 1064.3 927.603 1049.3Z" stroke="url(#paint26_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.405797" d="M899.098 1043.29L1306.33 967.299C1356.04 958.024 1380.39 901.241 1352.85 858.835L1180.68 593.711C1153.14 551.306 1091.36 550.459 1062.67 592.094L827.61 933.211C791.67 985.366 836.834 1054.91 899.098 1043.29Z" stroke="url(#paint27_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.42029" d="M871.332 1037.09L1275.24 984.162C1325.43 977.585 1352.81 922.101 1327.51 878.264L1171.39 607.865C1146.08 564.029 1084.34 560 1053.55 600.177L805.752 923.508C767.3 973.682 808.654 1045.31 871.332 1037.09Z" stroke="url(#paint28_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.434783" d="M844.305 1030.75L1243.62 1000.31C1294.15 996.455 1324.49 942.43 1301.49 897.279L1161.51 622.56C1138.5 577.408 1076.96 570.201 1044.15 608.815L784.806 913.976C743.952 962.047 781.401 1035.54 844.305 1030.75Z" stroke="url(#paint29_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.449275" d="M818.013 1024.3L1211.51 1015.71C1262.23 1014.6 1295.46 962.192 1274.83 915.845L1151.01 637.755C1130.38 591.408 1069.2 581.033 1034.44 617.985L764.75 904.665C721.613 950.52 755.072 1025.67 818.013 1024.3Z" stroke="url(#paint30_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.463768" d="M792.45 1017.78L1178.97 1030.34C1229.73 1031.99 1265.76 981.352 1247.56 933.933L1139.88 653.411C1121.67 605.992 1061.02 592.468 1024.4 627.663L745.559 895.626C700.261 939.158 729.659 1015.74 792.45 1017.78Z" stroke="url(#paint31_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.478261" d="M767.607 1011.24L1146.04 1044.19C1196.7 1048.6 1235.43 999.877 1219.72 951.513L1128.08 669.487C1112.37 621.123 1052.39 604.477 1014 637.822L727.207 886.907C679.878 928.014 705.155 1005.81 767.607 1011.24Z" stroke="url(#paint32_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.492754" d="M743.474 1004.72L1112.77 1057.23C1163.18 1064.39 1204.52 1017.74 1191.34 968.558L1115.61 685.94C1102.44 636.76 1043.3 617.027 1003.23 648.438L709.666 878.553C660.438 917.141 681.547 995.921 743.474 1004.72Z" stroke="url(#paint33_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.507246" d="M720.037 998.262L1079.21 1069.45C1129.22 1079.36 1173.06 1034.91 1162.47 985.045L1102.46 702.729C1091.86 652.865 1033.72 630.088 992.071 659.482L692.903 870.607C641.913 906.591 658.82 986.128 720.037 998.262Z" stroke="url(#paint34_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.521739" d="M697.282 991.892L1045.43 1080.85C1094.88 1093.48 1141.11 1051.37 1133.13 1000.95L1088.6 719.811C1080.62 669.396 1023.63 643.626 980.501 670.926L676.885 863.11C624.275 896.411 636.957 976.478 697.282 991.892Z" stroke="url(#paint35_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.536232" d="M675.192 985.651L1011.46 1091.41C1060.21 1106.74 1108.71 1067.09 1103.37 1016.26L1074.03 737.142C1068.69 686.312 1013.01 657.607 968.506 682.743L661.576 856.101C607.491 886.649 615.938 967.016 675.192 985.651Z" stroke="url(#paint36_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.550725" d="M653.748 979.574L977.363 1101.13C1025.27 1119.12 1075.91 1082.05 1073.23 1030.94L1058.75 754.679C1056.07 703.571 1001.84 671.998 956.073 694.903L646.937 849.615C591.525 877.347 595.74 957.786 653.748 979.574Z" stroke="url(#paint37_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.565217" d="M632.929 973.693L943.192 1110C990.112 1130.62 1042.75 1096.25 1042.75 1045V772.38C1042.75 721.131 990.112 686.763 943.192 707.376L632.929 843.686C576.341 868.548 576.341 948.831 632.929 973.693Z" stroke="url(#paint38_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.57971" d="M612.715 968.039L908.997 1118.04C954.784 1141.22 1009.28 1109.66 1011.97 1058.41L1026.03 790.2C1028.71 738.949 977.81 701.866 929.851 720.134L619.512 838.345C561.899 860.29 557.712 940.192 612.715 968.039Z" stroke="url(#paint39_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.594203" d="M593.081 962.641L874.831 1125.25C919.345 1150.94 975.56 1122.29 980.932 1071.17L1008.58 808.097C1013.95 756.984 964.925 717.273 916.043 733.147L606.642 833.619C548.159 852.61 539.825 931.906 593.081 962.641Z" stroke="url(#paint40_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.608696" d="M574.002 957.528L840.745 1131.63C883.847 1159.76 941.626 1134.11 949.677 1083.28L990.421 826.029C998.473 775.192 951.447 732.948 901.762 746.384L594.275 829.533C535.078 845.54 522.65 924.011 574.002 957.528Z" stroke="url(#paint41_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.623188" d="M555.454 952.723L806.79 1137.19C848.346 1167.69 907.531 1145.14 918.248 1094.71L971.549 843.954C982.266 793.533 937.373 748.855 887.003 759.816L582.366 826.108C522.612 839.112 506.154 916.539 555.454 952.723Z" stroke="url(#paint42_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.637681" d="M537.408 948.25L773.014 1141.96C812.894 1174.74 873.323 1155.36 886.686 1105.49L951.974 861.831C965.336 811.962 922.696 764.958 871.765 773.413L570.871 823.364C510.715 833.351 490.305 909.524 537.408 948.25Z" stroke="url(#paint43_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.652174" d="M519.837 944.131L739.468 1145.94C777.544 1180.93 839.052 1164.78 855.031 1115.6L931.706 879.619C947.685 830.44 907.416 781.222 856.047 787.146L559.742 821.317C499.342 828.283 475.067 902.993 519.837 944.131Z" stroke="url(#paint44_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.666667" d="M502.712 940.385L706.196 1149.16C742.347 1186.25 804.764 1173.4 823.325 1125.05L910.758 897.28C929.319 848.926 891.532 797.612 839.848 800.987L548.931 819.98C488.443 823.929 460.403 896.976 502.712 940.385Z" stroke="url(#paint45_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.681159" d="M486.005 937.03L673.247 1151.64C707.354 1190.74 770.507 1181.24 791.609 1133.84L889.145 914.775C910.247 867.38 875.046 814.094 823.172 814.905L538.394 819.362C477.972 820.307 446.277 891.495 486.005 937.03Z" stroke="url(#paint46_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.695652" d="M469.685 934.08L640.663 1153.41C672.614 1194.4 736.327 1188.3 759.921 1141.99L866.884 932.067C890.478 885.762 857.963 830.631 806.024 828.874L528.082 819.47C467.879 817.433 432.65 886.573 469.685 934.08Z" stroke="url(#paint47_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.710145" d="M453.721 931.55L608.487 1154.5C638.175 1197.26 702.269 1194.6 728.299 1149.51L843.994 949.12C870.024 904.034 840.288 847.193 788.407 842.866L517.947 820.308C458.115 815.318 419.483 882.229 453.721 931.55Z" stroke="url(#paint48_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.724638" d="M438.084 929.45L576.76 1154.93C604.082 1199.35 668.377 1200.14 696.783 1156.4L820.495 965.901C848.901 922.16 822.029 863.745 770.331 856.854L507.943 821.878C448.63 813.971 406.737 878.481 438.084 929.45Z" stroke="url(#paint49_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.73913" d="M422.744 927.791L545.519 1154.74C570.382 1200.7 634.694 1204.96 665.407 1162.69L796.411 982.376C827.124 940.103 803.194 880.256 751.803 870.812L498.024 824.176C439.377 813.399 394.371 875.344 422.744 927.791Z" stroke="url(#paint50_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.753623" d="M407.669 926.577L514.802 1153.96C537.115 1201.32 601.262 1209.07 634.208 1168.38L771.765 998.514C804.711 957.829 783.796 896.695 732.833 884.716L488.144 827.2C430.304 813.604 382.345 872.828 407.669 926.577Z" stroke="url(#paint51_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.768116" d="M392.83 925.816L484.642 1152.64C504.324 1201.26 568.12 1212.49 603.219 1173.51L746.583 1014.28C781.682 975.303 763.847 913.031 713.434 898.54L478.257 830.939C421.364 814.586 370.619 870.944 392.83 925.816Z" stroke="url(#paint52_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.782609" d="M378.196 925.51L455.072 1150.81C472.045 1200.55 535.306 1215.25 572.472 1178.08L720.892 1029.66C758.058 992.496 743.361 929.235 693.616 912.261L468.32 835.386C412.509 816.341 359.152 869.698 378.196 925.51Z" stroke="url(#paint53_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.797101" d="M363.738 925.661L426.119 1148.51C440.317 1199.23 502.858 1217.37 541.999 1182.13L694.722 1044.62C733.864 1009.38 722.353 945.28 673.395 925.858L458.291 840.525C403.69 818.865 347.904 869.096 363.738 925.661Z" stroke="url(#paint54_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.811594" d="M349.426 926.269L397.81 1145.78C409.171 1197.33 470.808 1218.9 511.827 1185.68L668.102 1059.13C709.122 1025.91 700.841 961.14 652.784 939.31L448.126 846.343C394.862 822.148 336.833 869.138 349.426 926.269Z" stroke="url(#paint55_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.826087" d="M335.232 927.33L370.17 1142.68C378.641 1194.9 439.19 1219.84 481.986 1188.75L641.063 1073.18C683.859 1042.08 678.844 976.788 631.801 952.595L437.786 852.82C385.979 826.177 325.903 869.826 335.232 927.33Z" stroke="url(#paint56_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.84058" d="M321.129 928.843L343.219 1139.25C348.755 1191.97 408.034 1220.25 452.5 1191.38L613.637 1086.73C658.103 1057.86 656.38 992.201 610.461 965.696L427.234 859.937C376.997 830.941 315.072 871.155 321.129 928.843Z" stroke="url(#paint57_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.855072" d="M307.089 930.8L316.975 1135.52C319.538 1188.6 377.369 1220.16 423.392 1193.59L585.857 1099.79C631.881 1073.21 633.47 1007.36 588.782 978.594L416.43 867.671C367.873 836.42 304.303 873.122 307.089 930.8Z" stroke="url(#paint58_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.869565" d="M293.086 933.196L291.454 1131.56C291.016 1184.83 347.219 1219.59 394.685 1195.41L557.758 1112.32C605.223 1088.13 610.137 1022.23 566.783 991.274L405.342 875.998C358.566 842.597 293.559 875.72 293.086 933.196Z" stroke="url(#paint59_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.884058" d="M279.096 936.021L266.668 1127.41C263.207 1180.7 317.609 1218.59 366.397 1196.87L529.372 1124.31C578.16 1102.59 586.403 1036.81 544.483 1003.72L393.936 884.891C349.036 849.45 282.803 878.939 279.096 936.021Z" stroke="url(#paint60_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.898551" d="M265.095 939.266L242.625 1123.12C236.13 1176.27 288.559 1217.21 338.545 1198.02L500.735 1135.76C550.721 1116.57 562.29 1051.07 521.901 1015.92L382.181 894.321C339.245 856.955 271.999 882.769 265.095 939.266Z" stroke="url(#paint61_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.913043" d="M251.058 942.92L219.333 1118.74C209.8 1171.57 260.088 1215.46 311.145 1198.87L471.881 1146.65C522.938 1130.06 537.824 1064.99 499.058 1027.85L370.047 904.259C329.158 865.086 261.113 887.195 251.058 942.92Z" stroke="url(#paint62_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.927536" d="M236.967 946.971L196.795 1114.32C184.23 1166.67 232.212 1213.41 284.21 1199.48L442.848 1156.97C494.846 1143.04 513.029 1078.57 475.975 1039.52L357.509 914.672C318.74 873.816 250.114 892.204 236.967 946.971Z" stroke="url(#paint63_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.942029" d="M222.799 951.406L175.01 1109.92C159.427 1161.6 204.944 1211.09 257.749 1199.86L413.67 1166.72C466.475 1155.5 487.931 1091.78 452.673 1050.9L344.542 925.529C307.96 883.115 238.967 897.779 222.799 951.406Z" stroke="url(#paint64_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.956522" d="M208.537 956.211L153.975 1105.58C135.397 1156.43 178.295 1208.53 231.771 1200.06L384.381 1175.89C437.858 1167.42 462.556 1104.62 429.172 1061.99L331.124 936.795C296.788 892.951 227.644 903.903 208.537 956.211Z" stroke="url(#paint65_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.971014" d="M194.162 961.37L133.684 1101.35C112.145 1151.2 152.273 1205.8 206.283 1200.12L355.019 1184.49C409.029 1178.81 436.93 1117.07 405.496 1072.78L317.237 948.434C285.197 903.293 216.117 910.554 194.162 961.37Z" stroke="url(#paint66_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path opacity="0.985507" d="M179.659 966.868L114.13 1097.29C89.6707 1145.97 126.884 1202.92 181.287 1200.07L325.619 1192.5C380.023 1189.65 411.079 1129.12 381.666 1083.27L302.863 960.412C273.162 914.107 204.357 917.713 179.659 966.868Z" stroke="url(#paint67_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<path d="M165.012 972.69L95.2971 1093.44C67.9692 1140.77 102.129 1199.94 156.785 1199.94H296.215C350.871 1199.94 385.031 1140.77 357.703 1093.44L287.988 972.69C260.66 925.356 192.34 925.356 165.012 972.69Z" stroke="url(#paint68_linear_1836_4810)" stroke-opacity="0.2" stroke-width="4"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1836_4810" x1="1884.92" y1="1198.21" x2="1406.8" y2="124.352" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1836_4810" x1="1834.72" y1="1210.9" x2="1417.18" y2="123.169" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1836_4810" x1="1784.47" y1="1221.95" x2="1427.63" y2="123.732" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1836_4810" x1="1734.24" y1="1231.4" x2="1438.06" y2="126.029" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1836_4810" x1="1684.12" y1="1239.25" x2="1448.35" y2="130.04" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1836_4810" x1="1634.21" y1="1245.52" x2="1458.44" y2="135.744" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1836_4810" x1="1584.58" y1="1250.25" x2="1468.21" y2="143.112" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_1836_4810" x1="1535.32" y1="1253.46" x2="1477.6" y2="152.11" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_1836_4810" x1="1486.5" y1="1255.19" x2="1486.5" y2="162.702" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_1836_4810" x1="1438.21" y1="1255.48" x2="1494.84" y2="174.846" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_1836_4810" x1="1390.51" y1="1254.36" x2="1502.54" y2="188.494" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear_1836_4810" x1="1343.48" y1="1251.89" x2="1509.52" y2="203.597" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear_1836_4810" x1="1297.19" y1="1248.12" x2="1515.71" y2="220.101" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear_1836_4810" x1="1251.7" y1="1243.1" x2="1521.03" y2="237.947" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint14_linear_1836_4810" x1="1207.07" y1="1236.89" x2="1525.43" y2="257.075" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint15_linear_1836_4810" x1="1163.36" y1="1229.54" x2="1528.85" y2="277.421" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint16_linear_1836_4810" x1="1120.62" y1="1221.13" x2="1531.22" y2="298.917" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint17_linear_1836_4810" x1="1078.9" y1="1211.71" x2="1532.49" y2="321.494" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint18_linear_1836_4810" x1="1038.25" y1="1201.35" x2="1532.62" y2="345.079" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint19_linear_1836_4810" x1="998.702" y1="1190.12" x2="1531.56" y2="369.599" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint20_linear_1836_4810" x1="960.299" y1="1178.1" x2="1529.27" y2="394.978" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint21_linear_1836_4810" x1="923.068" y1="1165.34" x2="1525.71" y2="421.138" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint22_linear_1836_4810" x1="887.042" y1="1151.94" x2="1520.87" y2="448.001" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint23_linear_1836_4810" x1="852.242" y1="1137.95" x2="1514.7" y2="475.487" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint24_linear_1836_4810" x1="818.686" y1="1123.46" x2="1507.2" y2="503.515" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint25_linear_1836_4810" x1="786.39" y1="1108.53" x2="1498.34" y2="532.006" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint26_linear_1836_4810" x1="755.364" y1="1093.26" x2="1488.12" y2="560.879" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint27_linear_1836_4810" x1="725.614" y1="1077.7" x2="1476.53" y2="590.052" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint28_linear_1836_4810" x1="697.14" y1="1061.94" x2="1463.56" y2="619.446" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint29_linear_1836_4810" x1="669.941" y1="1046.05" x2="1449.23" y2="648.981" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint30_linear_1836_4810" x1="644.009" y1="1030.1" x2="1433.53" y2="678.579" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint31_linear_1836_4810" x1="619.332" y1="1014.16" x2="1416.48" y2="708.161" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint32_linear_1836_4810" x1="595.895" y1="998.305" x2="1398.1" y2="737.653" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint33_linear_1836_4810" x1="573.681" y1="982.606" x2="1378.41" y2="766.98" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint34_linear_1836_4810" x1="552.665" y1="967.127" x2="1357.42" y2="796.07" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint35_linear_1836_4810" x1="532.82" y1="951.934" x2="1335.18" y2="824.852" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint36_linear_1836_4810" x1="514.117" y1="937.09" x2="1311.71" y2="853.26" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint37_linear_1836_4810" x1="496.523" y1="922.656" x2="1287.05" y2="881.226" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint38_linear_1836_4810" x1="480" y1="908.69" x2="1261.24" y2="908.69" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint39_linear_1836_4810" x1="464.509" y1="895.247" x2="1234.32" y2="935.591" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint40_linear_1836_4810" x1="450.008" y1="882.38" x2="1206.33" y2="961.873" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint41_linear_1836_4810" x1="436.451" y1="870.139" x2="1177.33" y2="987.482" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint42_linear_1836_4810" x1="423.79" y1="858.569" x2="1147.36" y2="1012.37" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint43_linear_1836_4810" x1="411.977" y1="847.715" x2="1116.49" y2="1036.49" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint44_linear_1836_4810" x1="400.959" y1="837.615" x2="1084.76" y2="1059.79" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint45_linear_1836_4810" x1="390.682" y1="828.307" x2="1052.23" y2="1082.25" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint46_linear_1836_4810" x1="381.092" y1="819.823" x2="1018.96" y2="1103.82" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint47_linear_1836_4810" x1="372.131" y1="812.192" x2="985.021" y2="1124.47" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint48_linear_1836_4810" x1="363.743" y1="805.44" x2="950.464" y2="1144.18" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint49_linear_1836_4810" x1="355.867" y1="799.588" x2="915.355" y2="1162.92" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint50_linear_1836_4810" x1="348.446" y1="794.656" x2="879.758" y2="1180.68" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint51_linear_1836_4810" x1="341.419" y1="790.656" x2="843.737" y2="1197.43" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint52_linear_1836_4810" x1="334.726" y1="787.601" x2="807.357" y2="1213.16" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint53_linear_1836_4810" x1="328.307" y1="785.497" x2="770.682" y2="1227.87" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint54_linear_1836_4810" x1="322.103" y1="784.347" x2="733.777" y2="1241.56" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint55_linear_1836_4810" x1="316.053" y1="784.152" x2="696.705" y2="1254.22" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint56_linear_1836_4810" x1="310.1" y1="784.906" x2="659.531" y2="1265.86" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint57_linear_1836_4810" x1="304.184" y1="786.604" x2="622.315" y2="1276.48" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint58_linear_1836_4810" x1="298.25" y1="789.234" x2="585.119" y2="1286.1" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint59_linear_1836_4810" x1="292.242" y1="792.781" x2="548.003" y2="1294.74" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint60_linear_1836_4810" x1="286.105" y1="797.23" x2="511.025" y2="1302.41" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint61_linear_1836_4810" x1="279.787" y1="802.559" x2="474.242" y2="1309.13" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint62_linear_1836_4810" x1="273.237" y1="808.744" x2="437.707" y2="1314.93" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint63_linear_1836_4810" x1="266.407" y1="815.759" x2="401.475" y2="1319.84" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint64_linear_1836_4810" x1="259.25" y1="823.576" x2="365.594" y2="1323.89" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint65_linear_1836_4810" x1="251.721" y1="832.163" x2="330.112" y2="1327.11" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint66_linear_1836_4810" x1="243.779" y1="841.485" x2="295.075" y2="1329.53" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint67_linear_1836_4810" x1="235.384" y1="851.507" x2="260.525" y2="1331.21" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint68_linear_1836_4810" x1="226.5" y1="862.19" x2="226.5" y2="1332.18" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF1CF7"/>
|
||||
<stop offset="1" stop-color="#00B0FF" stop-opacity="0.1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 37 KiB |
BIN
apps/docs/public/twitter-cards/nextui.jpeg
Normal file
|
After Width: | Height: | Size: 122 KiB |
BIN
apps/docs/public/twitter-cards/nextui_old.png
Normal file
|
After Width: | Height: | Size: 391 KiB |
@ -1,70 +0,0 @@
|
||||
<div class="_">
|
||||
<div class="_">
|
||||
<img src="__content__" alt="" class="_" loading="lazy" />
|
||||
</div>
|
||||
<form class="_">
|
||||
<div class="_">
|
||||
<h1 class="_">
|
||||
__content__
|
||||
</h1>
|
||||
<div class="_">
|
||||
__content__
|
||||
</div>
|
||||
<div class="_">
|
||||
In stock
|
||||
</div>
|
||||
</div>
|
||||
<div class="_">
|
||||
<div class="_">
|
||||
<label>
|
||||
<input class="_" name="size" type="radio" value="xs" checked />
|
||||
<div class="_">
|
||||
XS
|
||||
</div>
|
||||
</label>
|
||||
<label>
|
||||
<input class="_" name="size" type="radio" value="s" />
|
||||
<div class="_">
|
||||
S
|
||||
</div>
|
||||
</label>
|
||||
<label>
|
||||
<input class="_" name="size" type="radio" value="m" />
|
||||
<div class="_">
|
||||
M
|
||||
</div>
|
||||
</label>
|
||||
<label>
|
||||
<input class="_" name="size" type="radio" value="l" />
|
||||
<div class="_">
|
||||
L
|
||||
</div>
|
||||
</label>
|
||||
<label>
|
||||
<input class="_" name="size" type="radio" value="xl" />
|
||||
<div class="_">
|
||||
XL
|
||||
</div>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="_">
|
||||
<div class="_">
|
||||
<button class="_" type="submit">
|
||||
Buy now
|
||||
</button>
|
||||
<button class="_" type="button">
|
||||
Add to bag
|
||||
</button>
|
||||
</div>
|
||||
<button class="_" type="button" aria-label="Like">
|
||||
<svg width="20" height="20" fill="currentColor" aria-hidden="true">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.172 5.172a4 4 0 015.656 0L10 6.343l1.172-1.171a4 4 0 115.656 5.656L10 17.657l-6.828-6.829a4 4 0 010-5.656z" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<p class="_">
|
||||
Free shipping on all continental US orders.
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
@ -3,15 +3,22 @@
|
||||
@tailwind utilities;
|
||||
|
||||
html {
|
||||
overflow-y: scroll !important;
|
||||
height: 100vh;
|
||||
padding: 0px !important;
|
||||
scroll-padding-top: 64px;
|
||||
}
|
||||
|
||||
body,
|
||||
#__next {
|
||||
body, #__next {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 640px) {
|
||||
#app-container {
|
||||
height: 100dvh;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* ----------------------------------------
|
||||
* Code block styles
|
||||
@ -113,7 +120,7 @@ body,
|
||||
}
|
||||
|
||||
.code-block .token.deleted .highlight-word {
|
||||
@apply text-code-highlighted-word2-text bg-code-highlighted-word2-bg
|
||||
@apply text-code-highlighted-word2-text bg-code-highlighted-word2-bg;
|
||||
}
|
||||
|
||||
.code-block .token.deleted .highlight-word.on {
|
||||
@ -147,11 +154,11 @@ body,
|
||||
}
|
||||
|
||||
.code-block .highlight-line[data-highlighted="false"] {
|
||||
@apply text-code-faded-line
|
||||
@apply text-code-faded-line;
|
||||
}
|
||||
|
||||
.code-block .highlight-line[data-highlighted="false"] * {
|
||||
@apply text-code-faded-line
|
||||
@apply text-code-faded-line;
|
||||
}
|
||||
|
||||
/* Typewriter styles */
|
||||
|
||||
@ -1,5 +1,20 @@
|
||||
# @nextui-org/accordion
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/use-aria-accordion-item@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/shared-icons@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/aria-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/accordion",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Collapse display a list of high-level options that can expand/collapse to reveal more information.",
|
||||
"keywords": [
|
||||
"react",
|
||||
|
||||
@ -1,5 +1,17 @@
|
||||
# @nextui-org/avatar
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/use-image@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/avatar",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "The Avatar component is used to represent a user, and displays the profile picture, initials or fallback icon.",
|
||||
"keywords": [
|
||||
"avatar"
|
||||
|
||||
@ -1,5 +1,16 @@
|
||||
# @nextui-org/badge
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/badge",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Badges are used as a small numerical value or status descriptor for UI elements.",
|
||||
"keywords": [
|
||||
"badge"
|
||||
|
||||
@ -1,5 +1,19 @@
|
||||
# @nextui-org/button
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/spinner@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/drip@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/button",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Buttons allow users to perform actions and choose with a single tap.",
|
||||
"keywords": [
|
||||
"button"
|
||||
|
||||
@ -1,5 +1,18 @@
|
||||
# @nextui-org/card
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/drip@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/card",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Card is a container for text, photos, and actions in the context of a single subject.",
|
||||
"keywords": [
|
||||
"card"
|
||||
|
||||
@ -1,5 +1,16 @@
|
||||
# @nextui-org/checkbox
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/checkbox",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Checkboxes allow users to select multiple items from a list of individual items, or to mark one individual item as selected.",
|
||||
"keywords": [
|
||||
"checkbox"
|
||||
|
||||
@ -1,5 +1,17 @@
|
||||
# @nextui-org/chip
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-icons@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/chip",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Chips help people enter information, make selections, filter content, or trigger actions.",
|
||||
"keywords": [
|
||||
"chip"
|
||||
|
||||
@ -1,5 +1,16 @@
|
||||
# @nextui-org/code
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/code",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Code is a component used to display inline code.",
|
||||
"keywords": [
|
||||
"code"
|
||||
|
||||
@ -1,5 +1,16 @@
|
||||
# @nextui-org/divider
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/divider",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": ". A separator is a visual divider between two groups of content",
|
||||
"keywords": [
|
||||
"divider"
|
||||
|
||||
@ -1,5 +1,16 @@
|
||||
# @nextui-org/drip
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/drip",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "A ripple effect for ensuring that the user fells the system is reacting instantaneously",
|
||||
"keywords": [
|
||||
"drip"
|
||||
|
||||
@ -1,5 +1,19 @@
|
||||
# @nextui-org/dropdown
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/aria-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/use-is-mobile@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/popover@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/dropdown",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "A dropdown displays a list of actions or options that a user can choose.",
|
||||
"keywords": [
|
||||
"dropdown"
|
||||
|
||||
@ -1,5 +1,17 @@
|
||||
# @nextui-org/image
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/use-image@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/image",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "A simple image component",
|
||||
"keywords": [
|
||||
"image"
|
||||
|
||||
@ -1,5 +1,18 @@
|
||||
# @nextui-org/input
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-icons@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/use-aria-field@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/input",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "The input component is designed for capturing user input within a text field.",
|
||||
"keywords": [
|
||||
"input"
|
||||
|
||||
@ -1,5 +1,16 @@
|
||||
# @nextui-org/kbd
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/kbd",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "The keyboard key components indicates which key or set of keys used to execute a specificv action",
|
||||
"keywords": [
|
||||
"kbd"
|
||||
|
||||
@ -1,5 +1,17 @@
|
||||
# @nextui-org/link
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-icons@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/link",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"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"
|
||||
|
||||
@ -1,5 +1,20 @@
|
||||
# @nextui-org/modal
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/shared-icons@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/use-disclosure@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/modal",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Displays a dialog with a custom content that requires attention or provides additional information.",
|
||||
"keywords": [
|
||||
"modal"
|
||||
|
||||
@ -1,5 +1,19 @@
|
||||
# @nextui-org/navbar
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/use-aria-toggle-button@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/use-scroll-position@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/navbar",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "A responsive navigation header positioned on top side of your page that includes support for branding, links, navigation, collapse and more.",
|
||||
"keywords": [
|
||||
"navbar"
|
||||
|
||||
@ -1,5 +1,18 @@
|
||||
# @nextui-org/pagination
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-icons@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/use-pagination@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/pagination",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "The Pagination component allows you to display active page and navigate between multiple pages.",
|
||||
"keywords": [
|
||||
"pagination"
|
||||
|
||||
@ -1,5 +1,20 @@
|
||||
# @nextui-org/popover
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/use-aria-button@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/aria-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/button@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/popover",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "A popover is an overlay element positioned relative to a trigger.",
|
||||
"keywords": [
|
||||
"popover"
|
||||
|
||||
@ -156,6 +156,7 @@ export function usePopover(originalProps: UsePopoverProps) {
|
||||
{
|
||||
triggerRef,
|
||||
popoverRef,
|
||||
isNonModal: true,
|
||||
placement: toReactAriaPlacement(placementProp),
|
||||
offset: showArrow ? offset + 3 : offset,
|
||||
scrollRef,
|
||||
|
||||
@ -1,5 +1,18 @@
|
||||
# @nextui-org/progress
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/use-aria-label@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/use-is-mounted@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/progress",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Progress bars show either determinate or indeterminate progress of an operation over time.",
|
||||
"keywords": [
|
||||
"progress"
|
||||
|
||||
@ -1,5 +1,16 @@
|
||||
# @nextui-org/radio
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/radio",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Radios allow users to select a single option from a list of mutually exclusive options.",
|
||||
"keywords": [
|
||||
"radio"
|
||||
|
||||
@ -1,5 +1,18 @@
|
||||
# @nextui-org/snippet
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/use-clipboard@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/tooltip@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/snippet",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Display a snippet of copyable code for the command line.",
|
||||
"keywords": [
|
||||
"snippet"
|
||||
|
||||
@ -1,5 +1,16 @@
|
||||
# @nextui-org/spacer
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/spacer",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "A flexible spacer component designed to create consistent spacing and maintain alignment in your layout.",
|
||||
"keywords": [
|
||||
"spacer"
|
||||
|
||||
@ -1,5 +1,16 @@
|
||||
# @nextui-org/spinner
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/spinner",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Loaders express an unspecified wait time or display the length of a process.",
|
||||
"keywords": [
|
||||
"loading",
|
||||
|
||||
@ -1,5 +1,16 @@
|
||||
# @nextui-org/switch
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/switch",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "A switch is similar to a checkbox, but represents on/off values as opposed to selection.",
|
||||
"keywords": [
|
||||
"switch"
|
||||
|
||||
@ -1,5 +1,19 @@
|
||||
# @nextui-org/table
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-icons@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/checkbox@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/spacer@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/table",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Tables are used to display tabular data using rows and columns. ",
|
||||
"keywords": [
|
||||
"table"
|
||||
|
||||
@ -1,5 +1,18 @@
|
||||
# @nextui-org/tabs
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/aria-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/tabs",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Tabs organize content into multiple sections and allow users to navigate between them.",
|
||||
"keywords": [
|
||||
"tabs"
|
||||
|
||||
@ -1,5 +1,18 @@
|
||||
# @nextui-org/tooltip
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/framer-transitions@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/aria-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/tooltip",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "A React Component for rendering dynamically positioned Tooltips",
|
||||
"keywords": [
|
||||
"tooltip"
|
||||
|
||||
@ -1,5 +1,17 @@
|
||||
# @nextui-org/user
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/shared-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dom-utils@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/avatar@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/user",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Flexible User Profile Component.",
|
||||
"keywords": [
|
||||
"user"
|
||||
|
||||
@ -1,5 +1,43 @@
|
||||
# @nextui-org/react
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/pagination@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/accordion@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/checkbox@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/dropdown@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/progress@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/divider@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/popover@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/snippet@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/spinner@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/tooltip@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/avatar@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/button@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/navbar@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/spacer@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/switch@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/badge@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/image@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/input@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/modal@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/radio@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/table@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/card@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/chip@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/code@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/drip@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/link@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/tabs@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/user@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/kbd@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/system@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/theme@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/react",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "🚀 Beautiful and modern React UI library.",
|
||||
"author": "Junior Garcia <jrgarciadev@gmail.com>",
|
||||
"homepage": "https://nextui.org",
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# @nextui-org/system
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/system",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "NextUI system primitives",
|
||||
"keywords": [
|
||||
"system"
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# @nextui-org/theme
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/theme",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "The default theme for NextUI components",
|
||||
"keywords": [
|
||||
"theme",
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# @nextui-org/use-aria-accordion-item
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/use-aria-accordion-item",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Internal impl for react aria accordion item",
|
||||
"keywords": [
|
||||
"use-aria-accordion-item"
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# @nextui-org/use-aria-button
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/use-aria-button",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"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"
|
||||
|
||||
@ -1,5 +1,14 @@
|
||||
# @nextui-org/use-aria-field
|
||||
|
||||
## 0.0.0-dev-v2-20230501173002
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Popover overflow fixed
|
||||
- Updated dependencies
|
||||
- @nextui-org/use-aria-slot-id@0.0.0-dev-v2-20230501173002
|
||||
- @nextui-org/use-aria-label@0.0.0-dev-v2-20230501173002
|
||||
|
||||
## 0.0.0-dev-v2-20230429213333
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nextui-org/use-aria-field",
|
||||
"version": "0.0.0-dev-v2-20230429213333",
|
||||
"version": "0.0.0-dev-v2-20230501173002",
|
||||
"description": "Based on react-aria useField hook, provides the accessibility implementation for input fields",
|
||||
"keywords": [
|
||||
"use-aria-field"
|
||||
|
||||