Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
f122310c37 | |||
ef2bdbf3e0 | |||
a4da53a890 | |||
90a458268f | |||
fe1a9afeb0 | |||
a6af5622dd | |||
81854841ce | |||
57f9a9b118 | |||
a90cec770c | |||
371453b544 | |||
054568a2ec | |||
4b6724ed90 | |||
8728df1f60 | |||
3ccfa3b519 |
@ -10,5 +10,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"formatter": {
|
||||||
|
"language_server": {
|
||||||
|
"name": "biome"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"format_on_save": "on"
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,20 @@
|
|||||||
import { Slot, type VariantProps, useDocument, vcn } from "@pswui-lib";
|
import {
|
||||||
import React, { type ReactNode, useId, useState } from "react";
|
Slot,
|
||||||
|
type VariantProps,
|
||||||
|
useAnimatedMount,
|
||||||
|
useDocument,
|
||||||
|
vcn,
|
||||||
|
} from "@pswui-lib";
|
||||||
|
import React, { type ReactNode, useId, useRef, useState } from "react";
|
||||||
import ReactDOM from "react-dom";
|
import ReactDOM from "react-dom";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
DialogContext,
|
DialogContext,
|
||||||
type IDialogContext,
|
type IDialogContext,
|
||||||
|
InnerDialogContext,
|
||||||
initialDialogContext,
|
initialDialogContext,
|
||||||
useDialogContext,
|
useDialogContext,
|
||||||
|
useInnerDialogContext,
|
||||||
} from "./Context";
|
} from "./Context";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -81,22 +89,35 @@ interface DialogOverlay
|
|||||||
const DialogOverlay = React.forwardRef<HTMLDivElement, DialogOverlay>(
|
const DialogOverlay = React.forwardRef<HTMLDivElement, DialogOverlay>(
|
||||||
(props, ref) => {
|
(props, ref) => {
|
||||||
const [{ opened, ids }, setContext] = useDialogContext();
|
const [{ opened, ids }, setContext] = useDialogContext();
|
||||||
const [variantProps, otherPropsCompressed] = resolveDialogOverlayVariant({
|
const [variantProps, otherPropsCompressed] =
|
||||||
...props,
|
resolveDialogOverlayVariant(props);
|
||||||
opened,
|
|
||||||
});
|
|
||||||
const { children, closeOnClick, onClick, ...otherPropsExtracted } =
|
const { children, closeOnClick, onClick, ...otherPropsExtracted } =
|
||||||
otherPropsCompressed;
|
otherPropsCompressed;
|
||||||
|
|
||||||
|
const internalRef = useRef<HTMLDivElement | null>(null);
|
||||||
|
|
||||||
|
const { isMounted, isRendered } = useAnimatedMount(opened, internalRef);
|
||||||
|
|
||||||
const document = useDocument();
|
const document = useDocument();
|
||||||
if (!document) return null;
|
if (!document) return null;
|
||||||
|
|
||||||
return ReactDOM.createPortal(
|
return isMounted
|
||||||
|
? ReactDOM.createPortal(
|
||||||
<div
|
<div
|
||||||
{...otherPropsExtracted}
|
{...otherPropsExtracted}
|
||||||
id={ids.dialog}
|
id={ids.dialog}
|
||||||
ref={ref}
|
ref={(el) => {
|
||||||
className={dialogOverlayVariant(variantProps)}
|
internalRef.current = el;
|
||||||
|
if (typeof ref === "function") {
|
||||||
|
ref(el);
|
||||||
|
} else if (ref) {
|
||||||
|
ref.current = el;
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
className={dialogOverlayVariant({
|
||||||
|
...variantProps,
|
||||||
|
opened: isRendered,
|
||||||
|
})}
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
if (closeOnClick) {
|
if (closeOnClick) {
|
||||||
setContext((p) => ({ ...p, opened: false }));
|
setContext((p) => ({ ...p, opened: false }));
|
||||||
@ -104,17 +125,20 @@ const DialogOverlay = React.forwardRef<HTMLDivElement, DialogOverlay>(
|
|||||||
onClick?.(e);
|
onClick?.(e);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
{/* Layer for overflow positioning */}
|
||||||
<div
|
<div
|
||||||
className={
|
className={
|
||||||
"w-screen max-w-full min-h-screen flex flex-col justify-center items-center"
|
"w-screen max-w-full min-h-screen flex flex-col justify-center items-center"
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
{/* Layer for overflow positioning */}
|
<InnerDialogContext.Provider value={{ isMounted, isRendered }}>
|
||||||
{children}
|
{children}
|
||||||
|
</InnerDialogContext.Provider>
|
||||||
</div>
|
</div>
|
||||||
</div>,
|
</div>,
|
||||||
document.body,
|
document.body,
|
||||||
);
|
)
|
||||||
|
: null;
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
DialogOverlay.displayName = "DialogOverlay";
|
DialogOverlay.displayName = "DialogOverlay";
|
||||||
@ -144,11 +168,10 @@ interface DialogContentProps
|
|||||||
|
|
||||||
const DialogContent = React.forwardRef<HTMLDivElement, DialogContentProps>(
|
const DialogContent = React.forwardRef<HTMLDivElement, DialogContentProps>(
|
||||||
(props, ref) => {
|
(props, ref) => {
|
||||||
const [{ opened, ids }] = useDialogContext();
|
const [{ ids }] = useDialogContext();
|
||||||
const [variantProps, otherPropsCompressed] = resolveDialogContentVariant({
|
const [variantProps, otherPropsCompressed] =
|
||||||
...props,
|
resolveDialogContentVariant(props);
|
||||||
opened,
|
const { isRendered } = useInnerDialogContext();
|
||||||
});
|
|
||||||
const { children, onClick, ...otherPropsExtracted } = otherPropsCompressed;
|
const { children, onClick, ...otherPropsExtracted } = otherPropsCompressed;
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
@ -157,7 +180,10 @@ const DialogContent = React.forwardRef<HTMLDivElement, DialogContentProps>(
|
|||||||
role="dialog"
|
role="dialog"
|
||||||
aria-labelledby={ids.title}
|
aria-labelledby={ids.title}
|
||||||
aria-describedby={ids.description}
|
aria-describedby={ids.description}
|
||||||
className={dialogContentVariant(variantProps)}
|
className={dialogContentVariant({
|
||||||
|
...variantProps,
|
||||||
|
opened: isRendered,
|
||||||
|
})}
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
onClick?.(e);
|
onClick?.(e);
|
||||||
|
@ -38,3 +38,23 @@ export const DialogContext = createContext<
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
export const useDialogContext = () => useContext(DialogContext);
|
export const useDialogContext = () => useContext(DialogContext);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ===================
|
||||||
|
* InnerDialogContext
|
||||||
|
* ===================
|
||||||
|
*/
|
||||||
|
|
||||||
|
export interface IInnerDialogContext {
|
||||||
|
isMounted: boolean;
|
||||||
|
isRendered: boolean;
|
||||||
|
}
|
||||||
|
export const initialInnerDialogContext: IInnerDialogContext = {
|
||||||
|
isMounted: false,
|
||||||
|
isRendered: false,
|
||||||
|
};
|
||||||
|
export const InnerDialogContext = createContext<IInnerDialogContext>(
|
||||||
|
initialInnerDialogContext,
|
||||||
|
);
|
||||||
|
|
||||||
|
export const useInnerDialogContext = () => useContext(InnerDialogContext);
|
||||||
|
@ -2,6 +2,7 @@ import {
|
|||||||
type AsChild,
|
type AsChild,
|
||||||
Slot,
|
Slot,
|
||||||
type VariantProps,
|
type VariantProps,
|
||||||
|
useAnimatedMount,
|
||||||
useDocument,
|
useDocument,
|
||||||
vcn,
|
vcn,
|
||||||
} from "@pswui-lib";
|
} from "@pswui-lib";
|
||||||
@ -21,6 +22,8 @@ interface IDrawerContext {
|
|||||||
closeThreshold: number;
|
closeThreshold: number;
|
||||||
movePercentage: number;
|
movePercentage: number;
|
||||||
isDragging: boolean;
|
isDragging: boolean;
|
||||||
|
isMounted: boolean;
|
||||||
|
isRendered: boolean;
|
||||||
leaveWhileDragging: boolean;
|
leaveWhileDragging: boolean;
|
||||||
}
|
}
|
||||||
const DrawerContextInitial: IDrawerContext = {
|
const DrawerContextInitial: IDrawerContext = {
|
||||||
@ -28,6 +31,8 @@ const DrawerContextInitial: IDrawerContext = {
|
|||||||
closeThreshold: 0.3,
|
closeThreshold: 0.3,
|
||||||
movePercentage: 0,
|
movePercentage: 0,
|
||||||
isDragging: false,
|
isDragging: false,
|
||||||
|
isMounted: false,
|
||||||
|
isRendered: false,
|
||||||
leaveWhileDragging: false,
|
leaveWhileDragging: false,
|
||||||
};
|
};
|
||||||
const DrawerContext = React.createContext<
|
const DrawerContext = React.createContext<
|
||||||
@ -102,8 +107,14 @@ interface DrawerOverlayProps
|
|||||||
|
|
||||||
const DrawerOverlay = forwardRef<HTMLDivElement, DrawerOverlayProps>(
|
const DrawerOverlay = forwardRef<HTMLDivElement, DrawerOverlayProps>(
|
||||||
(props, ref) => {
|
(props, ref) => {
|
||||||
|
const internalRef = useRef<HTMLDivElement | null>(null);
|
||||||
const [state, setState] = useContext(DrawerContext);
|
const [state, setState] = useContext(DrawerContext);
|
||||||
|
|
||||||
|
const { isMounted, isRendered } = useAnimatedMount(
|
||||||
|
state.isDragging ? true : state.opened,
|
||||||
|
internalRef,
|
||||||
|
);
|
||||||
|
|
||||||
const [variantProps, restPropsCompressed] =
|
const [variantProps, restPropsCompressed] =
|
||||||
resolveDrawerOverlayVariantProps(props);
|
resolveDrawerOverlayVariantProps(props);
|
||||||
const { asChild, ...restPropsExtracted } = restPropsCompressed;
|
const { asChild, ...restPropsExtracted } = restPropsCompressed;
|
||||||
@ -128,12 +139,18 @@ const DrawerOverlay = forwardRef<HTMLDivElement, DrawerOverlayProps>(
|
|||||||
const document = useDocument();
|
const document = useDocument();
|
||||||
if (!document) return null;
|
if (!document) return null;
|
||||||
|
|
||||||
return createPortal(
|
return (
|
||||||
|
<>
|
||||||
|
<DrawerContext.Provider
|
||||||
|
value={[{ ...state, isMounted, isRendered }, setState]}
|
||||||
|
>
|
||||||
|
{isMounted
|
||||||
|
? createPortal(
|
||||||
<Comp
|
<Comp
|
||||||
{...restPropsExtracted}
|
{...restPropsExtracted}
|
||||||
className={drawerOverlayVariant({
|
className={drawerOverlayVariant({
|
||||||
...variantProps,
|
...variantProps,
|
||||||
opened: state.isDragging ? true : state.opened,
|
opened: isRendered,
|
||||||
})}
|
})}
|
||||||
onClick={onOutsideClick}
|
onClick={onOutsideClick}
|
||||||
style={{
|
style={{
|
||||||
@ -141,9 +158,20 @@ const DrawerOverlay = forwardRef<HTMLDivElement, DrawerOverlayProps>(
|
|||||||
WebkitBackdropFilter: backdropFilter,
|
WebkitBackdropFilter: backdropFilter,
|
||||||
transitionDuration: state.isDragging ? "0s" : undefined,
|
transitionDuration: state.isDragging ? "0s" : undefined,
|
||||||
}}
|
}}
|
||||||
ref={ref}
|
ref={(el: HTMLDivElement) => {
|
||||||
|
internalRef.current = el;
|
||||||
|
if (typeof ref === "function") {
|
||||||
|
ref(el);
|
||||||
|
} else if (ref) {
|
||||||
|
ref.current = el;
|
||||||
|
}
|
||||||
|
}}
|
||||||
/>,
|
/>,
|
||||||
document.body,
|
document.body,
|
||||||
|
)
|
||||||
|
: null}
|
||||||
|
</DrawerContext.Provider>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
@ -158,10 +186,10 @@ const [drawerContentVariant, resolveDrawerContentVariantProps] = vcn({
|
|||||||
base: `fixed ${drawerContentColors.background} ${drawerContentColors.border} transition-all p-4 flex flex-col justify-between gap-8 overflow-auto`,
|
base: `fixed ${drawerContentColors.background} ${drawerContentColors.border} transition-all p-4 flex flex-col justify-between gap-8 overflow-auto`,
|
||||||
variants: {
|
variants: {
|
||||||
position: {
|
position: {
|
||||||
top: "top-0 inset-x-0 w-full max-w-screen rounded-t-lg border-b-2",
|
top: "top-0 w-full max-w-screen rounded-t-lg border-b-2",
|
||||||
bottom: "bottom-0 inset-x-0 w-full max-w-screen rounded-b-lg border-t-2",
|
bottom: "bottom-0 w-full max-w-screen rounded-b-lg border-t-2",
|
||||||
left: "left-0 inset-y-0 h-screen rounded-l-lg border-r-2",
|
left: "left-0 h-screen rounded-l-lg border-r-2",
|
||||||
right: "right-0 inset-y-0 h-screen rounded-r-lg border-l-2",
|
right: "right-0 h-screen rounded-r-lg border-l-2",
|
||||||
},
|
},
|
||||||
maxSize: {
|
maxSize: {
|
||||||
sm: "[&.left-0]:max-w-sm [&.right-0]:max-w-sm",
|
sm: "[&.left-0]:max-w-sm [&.right-0]:max-w-sm",
|
||||||
@ -174,16 +202,36 @@ const [drawerContentVariant, resolveDrawerContentVariantProps] = vcn({
|
|||||||
false:
|
false:
|
||||||
"[&.top-0]:-translate-y-full [&.bottom-0]:translate-y-full [&.left-0]:-translate-x-full [&.right-0]:translate-x-full",
|
"[&.top-0]:-translate-y-full [&.bottom-0]:translate-y-full [&.left-0]:-translate-x-full [&.right-0]:translate-x-full",
|
||||||
},
|
},
|
||||||
|
internal: {
|
||||||
|
true: "relative",
|
||||||
|
false: "fixed",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
defaults: {
|
defaults: {
|
||||||
position: "left",
|
position: "left",
|
||||||
opened: false,
|
opened: false,
|
||||||
maxSize: "sm",
|
maxSize: "sm",
|
||||||
|
internal: false,
|
||||||
},
|
},
|
||||||
|
dynamics: [
|
||||||
|
({ position, internal }) => {
|
||||||
|
if (!internal) {
|
||||||
|
if (["top", "bottom"].includes(position)) {
|
||||||
|
return "inset-x-0";
|
||||||
|
}
|
||||||
|
return "inset-y-0";
|
||||||
|
}
|
||||||
|
|
||||||
|
return "w-fit";
|
||||||
|
},
|
||||||
|
],
|
||||||
});
|
});
|
||||||
|
|
||||||
interface DrawerContentProps
|
interface DrawerContentProps
|
||||||
extends Omit<VariantProps<typeof drawerContentVariant>, "opened">,
|
extends Omit<
|
||||||
|
VariantProps<typeof drawerContentVariant>,
|
||||||
|
"opened" | "internal"
|
||||||
|
>,
|
||||||
AsChild,
|
AsChild,
|
||||||
ComponentPropsWithoutRef<"div"> {}
|
ComponentPropsWithoutRef<"div"> {}
|
||||||
|
|
||||||
@ -324,7 +372,7 @@ const DrawerContent = forwardRef<HTMLDivElement, DrawerContentProps>(
|
|||||||
<div
|
<div
|
||||||
className={drawerContentVariant({
|
className={drawerContentVariant({
|
||||||
...variantProps,
|
...variantProps,
|
||||||
opened: true,
|
opened: state.isRendered,
|
||||||
className: dragState.isDragging
|
className: dragState.isDragging
|
||||||
? "transition-[width] duration-0"
|
? "transition-[width] duration-0"
|
||||||
: variantProps.className,
|
: variantProps.className,
|
||||||
@ -338,6 +386,7 @@ const DrawerContent = forwardRef<HTMLDivElement, DrawerContentProps>(
|
|||||||
0) +
|
0) +
|
||||||
(position === "top" ? dragState.delta : -dragState.delta),
|
(position === "top" ? dragState.delta : -dragState.delta),
|
||||||
padding: 0,
|
padding: 0,
|
||||||
|
[`padding${position.slice(0, 1).toUpperCase()}${position.slice(1)}`]: `${dragState.delta}px`,
|
||||||
}
|
}
|
||||||
: {
|
: {
|
||||||
width:
|
width:
|
||||||
@ -345,6 +394,7 @@ const DrawerContent = forwardRef<HTMLDivElement, DrawerContentProps>(
|
|||||||
0) +
|
0) +
|
||||||
(position === "left" ? dragState.delta : -dragState.delta),
|
(position === "left" ? dragState.delta : -dragState.delta),
|
||||||
padding: 0,
|
padding: 0,
|
||||||
|
[`padding${position.slice(0, 1).toUpperCase()}${position.slice(1)}`]: `${dragState.delta}px`,
|
||||||
}
|
}
|
||||||
: { width: 0, height: 0, padding: 0 }
|
: { width: 0, height: 0, padding: 0 }
|
||||||
}
|
}
|
||||||
@ -353,13 +403,15 @@ const DrawerContent = forwardRef<HTMLDivElement, DrawerContentProps>(
|
|||||||
{...restPropsExtracted}
|
{...restPropsExtracted}
|
||||||
className={drawerContentVariant({
|
className={drawerContentVariant({
|
||||||
...variantProps,
|
...variantProps,
|
||||||
opened: state.opened,
|
opened: state.isRendered,
|
||||||
|
internal: true,
|
||||||
})}
|
})}
|
||||||
style={{
|
style={{
|
||||||
transform: dragState.isDragging
|
transform:
|
||||||
? `translate${["top", "bottom"].includes(position) ? "Y" : "X"}(${
|
dragState.isDragging &&
|
||||||
dragState.delta
|
((["top", "left"].includes(position) && dragState.delta < 0) ||
|
||||||
}px)`
|
(["bottom", "right"].includes(position) && dragState.delta > 0))
|
||||||
|
? `translate${["top", "bottom"].includes(position) ? "Y" : "X"}(${dragState.delta}px)`
|
||||||
: undefined,
|
: undefined,
|
||||||
transitionDuration: dragState.isDragging ? "0s" : undefined,
|
transitionDuration: dragState.isDragging ? "0s" : undefined,
|
||||||
userSelect: dragState.isDragging ? "none" : undefined,
|
userSelect: dragState.isDragging ? "none" : undefined,
|
||||||
@ -439,7 +491,7 @@ const DrawerHeader = forwardRef<HTMLDivElement, DrawerHeaderProps>(
|
|||||||
DrawerHeader.displayName = "DrawerHeader";
|
DrawerHeader.displayName = "DrawerHeader";
|
||||||
|
|
||||||
const [drawerBodyVariant, resolveDrawerBodyVariantProps] = vcn({
|
const [drawerBodyVariant, resolveDrawerBodyVariantProps] = vcn({
|
||||||
base: "flex-grow",
|
base: "grow",
|
||||||
variants: {},
|
variants: {},
|
||||||
defaults: {},
|
defaults: {},
|
||||||
});
|
});
|
||||||
|
@ -7,24 +7,24 @@ const inputColors = {
|
|||||||
hover:
|
hover:
|
||||||
"hover:bg-neutral-100 dark:hover:bg-neutral-800 has-[input:hover]:bg-neutral-100 dark:has-[input:hover]:bg-neutral-800",
|
"hover:bg-neutral-100 dark:hover:bg-neutral-800 has-[input:hover]:bg-neutral-100 dark:has-[input:hover]:bg-neutral-800",
|
||||||
invalid:
|
invalid:
|
||||||
"invalid:bg-red-100 invalid:dark:bg-red-900 has-[input:invalid]:bg-red-100 dark:has-[input:invalid]:bg-red-900",
|
"invalid:bg-red-100 dark:invalid:bg-red-900 has-[input:invalid]:bg-red-100 dark:has-[input:invalid]:bg-red-900",
|
||||||
invalidHover:
|
invalidHover:
|
||||||
"hover:invalid:bg-red-200 dark:hover:invalid:bg-red-800 has-[input:invalid:hover]:bg-red-200 dark:has-[input:invalid:hover]:bg-red-800",
|
"hover:invalid:bg-red-200 dark:hover:invalid:bg-red-800 has-[input:invalid:hover]:bg-red-200 dark:has-[input:invalid:hover]:bg-red-800",
|
||||||
},
|
},
|
||||||
border: {
|
border: {
|
||||||
default: "border-neutral-400 dark:border-neutral-600",
|
default: "border-neutral-400 dark:border-neutral-600",
|
||||||
invalid:
|
invalid:
|
||||||
"invalid:border-red-400 invalid:dark:border-red-600 has-[input:invalid]:border-red-400 dark:has-[input:invalid]:border-red-600",
|
"invalid:border-red-400 dark:invalid:border-red-600 has-[input:invalid]:border-red-400 dark:has-[input:invalid]:border-red-600",
|
||||||
},
|
},
|
||||||
ring: {
|
ring: {
|
||||||
default: "ring-transparent focus-within:ring-current",
|
default: "ring-transparent focus-within:ring-current",
|
||||||
invalid:
|
invalid:
|
||||||
"invalid:focus-within:ring-red-400 invalid:focus-within:dark:ring-red-600 has-[input:invalid]:focus-within:ring-red-400 dark:has-[input:invalid]:focus-within:ring-red-600",
|
"invalid:focus-within:ring-red-400 dark:invalid:focus-within:ring-red-600 has-[input:invalid]:focus-within:ring-red-400 dark:has-[input:invalid]:focus-within:ring-red-600",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const [inputVariant, resolveInputVariantProps] = vcn({
|
const [inputVariant, resolveInputVariantProps] = vcn({
|
||||||
base: `rounded-md p-2 border ring-1 outline-none transition-all duration-200 [appearance:textfield] disabled:brightness-50 disabled:saturate-0 disabled:cursor-not-allowed ${inputColors.background.default} ${inputColors.background.hover} ${inputColors.border.default} ${inputColors.ring.default} ${inputColors.background.invalid} ${inputColors.background.invalidHover} ${inputColors.border.invalid} ${inputColors.ring.invalid} [&:has(input)]:flex`,
|
base: `rounded-md p-2 border ring-1 outline-hidden transition-all duration-200 [appearance:textfield] disabled:brightness-50 disabled:saturate-0 disabled:cursor-not-allowed ${inputColors.background.default} ${inputColors.background.hover} ${inputColors.border.default} ${inputColors.ring.default} ${inputColors.background.invalid} ${inputColors.background.invalidHover} ${inputColors.border.invalid} ${inputColors.ring.invalid} [&:has(input)]:flex`,
|
||||||
variants: {
|
variants: {
|
||||||
unstyled: {
|
unstyled: {
|
||||||
true: "bg-transparent border-none p-0 ring-0 hover:bg-transparent invalid:hover:bg-transparent invalid:focus-within:bg-transparent invalid:focus-within:ring-0",
|
true: "bg-transparent border-none p-0 ring-0 hover:bg-transparent invalid:hover:bg-transparent invalid:focus-within:bg-transparent invalid:focus-within:ring-0",
|
||||||
|
@ -65,7 +65,7 @@ const popoverColors = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const [popoverContentVariant, resolvePopoverContentVariantProps] = vcn({
|
const [popoverContentVariant, resolvePopoverContentVariantProps] = vcn({
|
||||||
base: `absolute transition-all duration-150 border rounded-lg p-0.5 z-10 [&>*]:w-full ${popoverColors.background} ${popoverColors.border}`,
|
base: `absolute transition-all duration-150 border rounded-lg p-0.5 z-10 *:w-full ${popoverColors.background} ${popoverColors.border}`,
|
||||||
variants: {
|
variants: {
|
||||||
direction: {
|
direction: {
|
||||||
row: "",
|
row: "",
|
||||||
|
@ -39,7 +39,7 @@ const TabList = (props: TabListProps) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const [TabTriggerVariant, resolveTabTriggerVariantProps] = vcn({
|
const [TabTriggerVariant, resolveTabTriggerVariantProps] = vcn({
|
||||||
base: "py-1.5 rounded-md flex-grow transition-all text-sm",
|
base: "py-1.5 rounded-md grow transition-all text-sm",
|
||||||
variants: {
|
variants: {
|
||||||
active: {
|
active: {
|
||||||
true: "bg-white/100 dark:bg-black/100 text-black dark:text-white",
|
true: "bg-white/100 dark:bg-black/100 text-black dark:text-white",
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
import { type VariantProps, useDocument, vcn } from "@pswui-lib";
|
import {
|
||||||
import React, { useEffect, useId, useRef } from "react";
|
type VariantProps,
|
||||||
|
getCalculatedTransitionDuration,
|
||||||
|
useDocument,
|
||||||
|
vcn,
|
||||||
|
} from "@pswui-lib";
|
||||||
|
import React, { type MutableRefObject, useEffect, useId, useRef } from "react";
|
||||||
import ReactDOM from "react-dom";
|
import ReactDOM from "react-dom";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
@ -41,9 +46,16 @@ const ToastTemplate = ({
|
|||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
if (toastData.life === "born") {
|
if (toastData.life === "born") {
|
||||||
requestAnimationFrame(() => {
|
requestAnimationFrame(function untilBorn() {
|
||||||
// To make sure that the toast is rendered as "born" state
|
/*
|
||||||
// and then change to "normal" state
|
To confirm that the toast is rendered as "born" state and then change to "normal" state
|
||||||
|
This way will make sure born -> normal stage transition animation will work.
|
||||||
|
*/
|
||||||
|
const elm = document.querySelector(
|
||||||
|
`div[data-toaster-root] > div[data-toast-id="${id}"][data-toast-lifecycle="born"]`,
|
||||||
|
);
|
||||||
|
if (!elm) return requestAnimationFrame(untilBorn);
|
||||||
|
|
||||||
toasts[id] = {
|
toasts[id] = {
|
||||||
...toasts[id],
|
...toasts[id],
|
||||||
life: "normal",
|
life: "normal",
|
||||||
@ -58,42 +70,15 @@ const ToastTemplate = ({
|
|||||||
return () => clearTimeout(timeout);
|
return () => clearTimeout(timeout);
|
||||||
}
|
}
|
||||||
if (toastData.life === "dead") {
|
if (toastData.life === "dead") {
|
||||||
let transitionDuration: {
|
let calculatedTransitionDurationMs = 1;
|
||||||
value: number;
|
if (ref.current)
|
||||||
unit: string;
|
calculatedTransitionDurationMs = getCalculatedTransitionDuration(
|
||||||
} | null;
|
ref as MutableRefObject<HTMLDivElement>,
|
||||||
if (!ref.current) {
|
|
||||||
transitionDuration = null;
|
|
||||||
} else if (ref.current.computedStyleMap !== undefined) {
|
|
||||||
transitionDuration = ref.current
|
|
||||||
.computedStyleMap()
|
|
||||||
.get("transition-duration") as { value: number; unit: string };
|
|
||||||
} else {
|
|
||||||
const style = /(\d+(\.\d+)?)(.+)/.exec(
|
|
||||||
window.getComputedStyle(ref.current).transitionDuration,
|
|
||||||
);
|
);
|
||||||
transitionDuration = style
|
|
||||||
? {
|
|
||||||
value: Number.parseFloat(style[1] ?? "0"),
|
|
||||||
unit: style[3] ?? style[2] ?? "s",
|
|
||||||
}
|
|
||||||
: null;
|
|
||||||
}
|
|
||||||
if (!transitionDuration) {
|
|
||||||
delete toasts[id];
|
|
||||||
notify();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const calculatedTransitionDuration =
|
|
||||||
transitionDuration.value *
|
|
||||||
({
|
|
||||||
s: 1000,
|
|
||||||
ms: 1,
|
|
||||||
}[transitionDuration.unit] ?? 1);
|
|
||||||
const timeout = setTimeout(() => {
|
const timeout = setTimeout(() => {
|
||||||
delete toasts[id];
|
delete toasts[id];
|
||||||
notify();
|
notify();
|
||||||
}, calculatedTransitionDuration);
|
}, calculatedTransitionDurationMs);
|
||||||
return () => clearTimeout(timeout);
|
return () => clearTimeout(timeout);
|
||||||
}
|
}
|
||||||
}, [id, toastData.life, toastData.closeTimeout]);
|
}, [id, toastData.life, toastData.closeTimeout]);
|
||||||
@ -105,6 +90,8 @@ const ToastTemplate = ({
|
|||||||
life: toastData.life,
|
life: toastData.life,
|
||||||
})}
|
})}
|
||||||
ref={ref}
|
ref={ref}
|
||||||
|
data-toast-id={id}
|
||||||
|
data-toast-lifecycle={toastData.life}
|
||||||
>
|
>
|
||||||
{toastData.closeButton && (
|
{toastData.closeButton && (
|
||||||
<button
|
<button
|
||||||
|
@ -85,7 +85,10 @@ export const Slot = React.forwardRef<
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return React.cloneElement(children, {
|
return React.cloneElement(children, {
|
||||||
...mergeReactProps(safeSlotProps, children.props),
|
...mergeReactProps(
|
||||||
|
safeSlotProps,
|
||||||
|
children.props as Record<string, unknown>,
|
||||||
|
),
|
||||||
ref: combinedRef([
|
ref: combinedRef([
|
||||||
ref,
|
ref,
|
||||||
(children as unknown as { ref: React.Ref<HTMLElement> }).ref,
|
(children as unknown as { ref: React.Ref<HTMLElement> }).ref,
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
export * from "./vcn";
|
export * from "./vcn";
|
||||||
export * from "./Slot";
|
export * from "./Slot";
|
||||||
export * from "./useDocument";
|
export * from "./useDocument";
|
||||||
|
export * from "./useAnimatedMount";
|
||||||
|
85
packages/react/lib/useAnimatedMount.ts
Normal file
85
packages/react/lib/useAnimatedMount.ts
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
import { type MutableRefObject, useCallback, useEffect, useState } from "react";
|
||||||
|
|
||||||
|
function getCalculatedTransitionDuration(
|
||||||
|
ref: MutableRefObject<HTMLElement>,
|
||||||
|
): number {
|
||||||
|
let transitionDuration: {
|
||||||
|
value: number;
|
||||||
|
unit: string;
|
||||||
|
} | null;
|
||||||
|
if (ref.current.computedStyleMap !== undefined) {
|
||||||
|
transitionDuration = ref.current
|
||||||
|
.computedStyleMap()
|
||||||
|
.get("transition-duration") as { value: number; unit: string };
|
||||||
|
} else {
|
||||||
|
const style = /(\d+(\.\d+)?)(.+)/.exec(
|
||||||
|
window.getComputedStyle(ref.current).transitionDuration,
|
||||||
|
);
|
||||||
|
if (!style) return 0;
|
||||||
|
transitionDuration = {
|
||||||
|
value: Number.parseFloat(style[1] ?? "0"),
|
||||||
|
unit: style[3] ?? style[2] ?? "s",
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
transitionDuration.value *
|
||||||
|
({
|
||||||
|
s: 1000,
|
||||||
|
ms: 1,
|
||||||
|
}[transitionDuration.unit] ?? 1)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* isMounted: true isRendered: true isRendered: false isMounted: false
|
||||||
|
* Component Mount Component Appear Component Disappear Component Unmount
|
||||||
|
* v v v v
|
||||||
|
* |-|=================|------------------------|======================|-|
|
||||||
|
*/
|
||||||
|
|
||||||
|
function useAnimatedMount(
|
||||||
|
visible: boolean,
|
||||||
|
ref: MutableRefObject<HTMLElement | null>,
|
||||||
|
callbacks?: { onMount: () => void; onUnmount: () => void },
|
||||||
|
) {
|
||||||
|
const [state, setState] = useState<{
|
||||||
|
isMounted: boolean;
|
||||||
|
isRendered: boolean;
|
||||||
|
}>({ isMounted: visible, isRendered: visible });
|
||||||
|
|
||||||
|
const umountCallback = useCallback(() => {
|
||||||
|
setState((p) => ({ ...p, isRendered: false }));
|
||||||
|
|
||||||
|
const calculatedTransitionDuration = ref.current
|
||||||
|
? getCalculatedTransitionDuration(ref as MutableRefObject<HTMLElement>)
|
||||||
|
: 0;
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
setState((p) => ({ ...p, isMounted: false }));
|
||||||
|
callbacks?.onUnmount?.();
|
||||||
|
}, calculatedTransitionDuration);
|
||||||
|
}, [ref, callbacks]);
|
||||||
|
|
||||||
|
const mountCallback = useCallback(() => {
|
||||||
|
setState((p) => ({ ...p, isMounted: true }));
|
||||||
|
callbacks?.onMount?.();
|
||||||
|
requestAnimationFrame(function onMount() {
|
||||||
|
if (!ref.current) return requestAnimationFrame(onMount);
|
||||||
|
setState((p) => ({ ...p, isRendered: true }));
|
||||||
|
});
|
||||||
|
}, [ref.current, callbacks]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
console.log(state);
|
||||||
|
if (!visible && state.isRendered) {
|
||||||
|
umountCallback();
|
||||||
|
} else if (visible && !state.isMounted) {
|
||||||
|
mountCallback();
|
||||||
|
}
|
||||||
|
}, [state, visible, mountCallback, umountCallback]);
|
||||||
|
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
|
||||||
|
export { getCalculatedTransitionDuration, useAnimatedMount };
|
@ -10,18 +10,17 @@
|
|||||||
"preview": "vite preview"
|
"preview": "vite preview"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@tailwindcss/vite": "^4.0.12",
|
||||||
"react": "^18.2.0",
|
"react": "^18.2.0",
|
||||||
"react-dom": "^18.2.0",
|
"react-dom": "^18.2.0",
|
||||||
"tailwind-merge": "^2.3.0"
|
"tailwind-merge": "^2.3.0",
|
||||||
|
"tailwindcss": "^4.0.12"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^20.12.13",
|
"@types/node": "^20.12.13",
|
||||||
"@types/react": "^18.2.66",
|
"@types/react": "^18.2.66",
|
||||||
"@types/react-dom": "^18.2.22",
|
"@types/react-dom": "^18.2.22",
|
||||||
"@vitejs/plugin-react": "^4.2.1",
|
"@vitejs/plugin-react": "^4.2.1",
|
||||||
"autoprefixer": "^10.4.19",
|
|
||||||
"postcss": "^8.4.38",
|
|
||||||
"tailwindcss": "^3.4.3",
|
|
||||||
"typescript": "^5.4.5",
|
"typescript": "^5.4.5",
|
||||||
"vite": "^5.2.0"
|
"vite": "^5.2.0"
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
|
@import tailwindcss;
|
||||||
@import url("https://cdn.jsdelivr.net/gh/wanteddev/wanted-sans@v1.0.3/packages/wanted-sans/fonts/webfonts/variable/split/WantedSansVariable.min.css");
|
@import url("https://cdn.jsdelivr.net/gh/wanteddev/wanted-sans@v1.0.3/packages/wanted-sans/fonts/webfonts/variable/split/WantedSansVariable.min.css");
|
||||||
@tailwind base;
|
|
||||||
@tailwind components;
|
|
||||||
@tailwind utilities;
|
|
||||||
|
|
||||||
@layer base {
|
@layer base {
|
||||||
:root {
|
:root {
|
||||||
@ -34,4 +32,3 @@
|
|||||||
@apply transition-colors;
|
@apply transition-colors;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
/** @type {import('tailwindcss').Config} */
|
|
||||||
module.exports = {
|
|
||||||
content: ["./{components,stories,src}/**/*.{js,jsx,ts,tsx,css,mdx}"],
|
|
||||||
darkMode: "media",
|
|
||||||
theme: {
|
|
||||||
extend: {},
|
|
||||||
},
|
|
||||||
};
|
|
@ -1,16 +1,11 @@
|
|||||||
import { resolve } from "node:path";
|
import { resolve } from "node:path";
|
||||||
|
import tailwindcss from "@tailwindcss/vite";
|
||||||
import react from "@vitejs/plugin-react";
|
import react from "@vitejs/plugin-react";
|
||||||
import tailwindcss from "tailwindcss";
|
|
||||||
import { defineConfig } from "vite";
|
import { defineConfig } from "vite";
|
||||||
|
|
||||||
// https://vitejs.dev/config/
|
// https://vitejs.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [react()],
|
plugins: [react(), tailwindcss()],
|
||||||
css: {
|
|
||||||
postcss: {
|
|
||||||
plugins: [tailwindcss()],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
resolve: {
|
resolve: {
|
||||||
alias: {
|
alias: {
|
||||||
"@components": resolve(__dirname, "./components"),
|
"@components": resolve(__dirname, "./components"),
|
||||||
|
@ -4,7 +4,13 @@
|
|||||||
"components": "/packages/react/components/{componentName}",
|
"components": "/packages/react/components/{componentName}",
|
||||||
"lib": "/packages/react/lib/{libName}"
|
"lib": "/packages/react/lib/{libName}"
|
||||||
},
|
},
|
||||||
"lib": ["index.ts", "Slot.tsx", "vcn.ts", "useDocument.ts"],
|
"lib": [
|
||||||
|
"index.ts",
|
||||||
|
"Slot.tsx",
|
||||||
|
"vcn.ts",
|
||||||
|
"useDocument.ts",
|
||||||
|
"useAnimatedMount.ts"
|
||||||
|
],
|
||||||
"components": {
|
"components": {
|
||||||
"button": { "type": "file", "name": "Button.tsx" },
|
"button": { "type": "file", "name": "Button.tsx" },
|
||||||
"checkbox": { "type": "file", "name": "Checkbox.tsx" },
|
"checkbox": { "type": "file", "name": "Checkbox.tsx" },
|
||||||
|
661
yarn.lock
661
yarn.lock
@ -15,13 +15,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@alloc/quick-lru@npm:^5.2.0":
|
|
||||||
version: 5.2.0
|
|
||||||
resolution: "@alloc/quick-lru@npm:5.2.0"
|
|
||||||
checksum: 10c0/7b878c48b9d25277d0e1a9b8b2f2312a314af806b4129dc902f2bc29ab09b58236e53964689feec187b28c80d2203aff03829754773a707a8a5987f1b7682d92
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@ampproject/remapping@npm:^2.2.0":
|
"@ampproject/remapping@npm:^2.2.0":
|
||||||
version: 2.3.0
|
version: 2.3.0
|
||||||
resolution: "@ampproject/remapping@npm:2.3.0"
|
resolution: "@ampproject/remapping@npm:2.3.0"
|
||||||
@ -1405,7 +1398,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@jridgewell/gen-mapping@npm:^0.3.2, @jridgewell/gen-mapping@npm:^0.3.5":
|
"@jridgewell/gen-mapping@npm:^0.3.5":
|
||||||
version: 0.3.5
|
version: 0.3.5
|
||||||
resolution: "@jridgewell/gen-mapping@npm:0.3.5"
|
resolution: "@jridgewell/gen-mapping@npm:0.3.5"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -2564,6 +2557,150 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@tailwindcss/node@npm:4.0.12":
|
||||||
|
version: 4.0.12
|
||||||
|
resolution: "@tailwindcss/node@npm:4.0.12"
|
||||||
|
dependencies:
|
||||||
|
enhanced-resolve: "npm:^5.18.1"
|
||||||
|
jiti: "npm:^2.4.2"
|
||||||
|
tailwindcss: "npm:4.0.12"
|
||||||
|
checksum: 10c0/69468c6f6a4f2ff88449b13be245b9a9b0372f2d456a59959da0562dfb3f45f64ae8003965fe0c4f8c4f2fef92f88def003489c2e5b16fd912eb69c99bd064ad
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@tailwindcss/oxide-android-arm64@npm:4.0.12":
|
||||||
|
version: 4.0.12
|
||||||
|
resolution: "@tailwindcss/oxide-android-arm64@npm:4.0.12"
|
||||||
|
conditions: os=android & cpu=arm64
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@tailwindcss/oxide-darwin-arm64@npm:4.0.12":
|
||||||
|
version: 4.0.12
|
||||||
|
resolution: "@tailwindcss/oxide-darwin-arm64@npm:4.0.12"
|
||||||
|
conditions: os=darwin & cpu=arm64
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@tailwindcss/oxide-darwin-x64@npm:4.0.12":
|
||||||
|
version: 4.0.12
|
||||||
|
resolution: "@tailwindcss/oxide-darwin-x64@npm:4.0.12"
|
||||||
|
conditions: os=darwin & cpu=x64
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@tailwindcss/oxide-freebsd-x64@npm:4.0.12":
|
||||||
|
version: 4.0.12
|
||||||
|
resolution: "@tailwindcss/oxide-freebsd-x64@npm:4.0.12"
|
||||||
|
conditions: os=freebsd & cpu=x64
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@tailwindcss/oxide-linux-arm-gnueabihf@npm:4.0.12":
|
||||||
|
version: 4.0.12
|
||||||
|
resolution: "@tailwindcss/oxide-linux-arm-gnueabihf@npm:4.0.12"
|
||||||
|
conditions: os=linux & cpu=arm
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@tailwindcss/oxide-linux-arm64-gnu@npm:4.0.12":
|
||||||
|
version: 4.0.12
|
||||||
|
resolution: "@tailwindcss/oxide-linux-arm64-gnu@npm:4.0.12"
|
||||||
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@tailwindcss/oxide-linux-arm64-musl@npm:4.0.12":
|
||||||
|
version: 4.0.12
|
||||||
|
resolution: "@tailwindcss/oxide-linux-arm64-musl@npm:4.0.12"
|
||||||
|
conditions: os=linux & cpu=arm64 & libc=musl
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@tailwindcss/oxide-linux-x64-gnu@npm:4.0.12":
|
||||||
|
version: 4.0.12
|
||||||
|
resolution: "@tailwindcss/oxide-linux-x64-gnu@npm:4.0.12"
|
||||||
|
conditions: os=linux & cpu=x64 & libc=glibc
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@tailwindcss/oxide-linux-x64-musl@npm:4.0.12":
|
||||||
|
version: 4.0.12
|
||||||
|
resolution: "@tailwindcss/oxide-linux-x64-musl@npm:4.0.12"
|
||||||
|
conditions: os=linux & cpu=x64 & libc=musl
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@tailwindcss/oxide-win32-arm64-msvc@npm:4.0.12":
|
||||||
|
version: 4.0.12
|
||||||
|
resolution: "@tailwindcss/oxide-win32-arm64-msvc@npm:4.0.12"
|
||||||
|
conditions: os=win32 & cpu=arm64
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@tailwindcss/oxide-win32-x64-msvc@npm:4.0.12":
|
||||||
|
version: 4.0.12
|
||||||
|
resolution: "@tailwindcss/oxide-win32-x64-msvc@npm:4.0.12"
|
||||||
|
conditions: os=win32 & cpu=x64
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@tailwindcss/oxide@npm:4.0.12":
|
||||||
|
version: 4.0.12
|
||||||
|
resolution: "@tailwindcss/oxide@npm:4.0.12"
|
||||||
|
dependencies:
|
||||||
|
"@tailwindcss/oxide-android-arm64": "npm:4.0.12"
|
||||||
|
"@tailwindcss/oxide-darwin-arm64": "npm:4.0.12"
|
||||||
|
"@tailwindcss/oxide-darwin-x64": "npm:4.0.12"
|
||||||
|
"@tailwindcss/oxide-freebsd-x64": "npm:4.0.12"
|
||||||
|
"@tailwindcss/oxide-linux-arm-gnueabihf": "npm:4.0.12"
|
||||||
|
"@tailwindcss/oxide-linux-arm64-gnu": "npm:4.0.12"
|
||||||
|
"@tailwindcss/oxide-linux-arm64-musl": "npm:4.0.12"
|
||||||
|
"@tailwindcss/oxide-linux-x64-gnu": "npm:4.0.12"
|
||||||
|
"@tailwindcss/oxide-linux-x64-musl": "npm:4.0.12"
|
||||||
|
"@tailwindcss/oxide-win32-arm64-msvc": "npm:4.0.12"
|
||||||
|
"@tailwindcss/oxide-win32-x64-msvc": "npm:4.0.12"
|
||||||
|
dependenciesMeta:
|
||||||
|
"@tailwindcss/oxide-android-arm64":
|
||||||
|
optional: true
|
||||||
|
"@tailwindcss/oxide-darwin-arm64":
|
||||||
|
optional: true
|
||||||
|
"@tailwindcss/oxide-darwin-x64":
|
||||||
|
optional: true
|
||||||
|
"@tailwindcss/oxide-freebsd-x64":
|
||||||
|
optional: true
|
||||||
|
"@tailwindcss/oxide-linux-arm-gnueabihf":
|
||||||
|
optional: true
|
||||||
|
"@tailwindcss/oxide-linux-arm64-gnu":
|
||||||
|
optional: true
|
||||||
|
"@tailwindcss/oxide-linux-arm64-musl":
|
||||||
|
optional: true
|
||||||
|
"@tailwindcss/oxide-linux-x64-gnu":
|
||||||
|
optional: true
|
||||||
|
"@tailwindcss/oxide-linux-x64-musl":
|
||||||
|
optional: true
|
||||||
|
"@tailwindcss/oxide-win32-arm64-msvc":
|
||||||
|
optional: true
|
||||||
|
"@tailwindcss/oxide-win32-x64-msvc":
|
||||||
|
optional: true
|
||||||
|
checksum: 10c0/02483551ebe381e0d23d325f726108f196770eda09118ddd33d052460aec76d492f176c34a9417d8f8c7461530095809993926d7f374673d2e5833bd90c6d316
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@tailwindcss/vite@npm:^4.0.12":
|
||||||
|
version: 4.0.12
|
||||||
|
resolution: "@tailwindcss/vite@npm:4.0.12"
|
||||||
|
dependencies:
|
||||||
|
"@tailwindcss/node": "npm:4.0.12"
|
||||||
|
"@tailwindcss/oxide": "npm:4.0.12"
|
||||||
|
lightningcss: "npm:^1.29.1"
|
||||||
|
tailwindcss: "npm:4.0.12"
|
||||||
|
peerDependencies:
|
||||||
|
vite: ^5.2.0 || ^6
|
||||||
|
checksum: 10c0/5ba921ade4f23c34757895896ac0808c684c9f8f90af512b462754afeab977a5fee80fe784e7263ec086327924f158116c686346a2fe3318f7eb0efad51940a0
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@tsconfig/node10@npm:^1.0.7":
|
"@tsconfig/node10@npm:^1.0.7":
|
||||||
version: 1.0.11
|
version: 1.0.11
|
||||||
resolution: "@tsconfig/node10@npm:1.0.11"
|
resolution: "@tsconfig/node10@npm:1.0.11"
|
||||||
@ -2868,23 +3005,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"any-promise@npm:^1.0.0":
|
|
||||||
version: 1.3.0
|
|
||||||
resolution: "any-promise@npm:1.3.0"
|
|
||||||
checksum: 10c0/60f0298ed34c74fef50daab88e8dab786036ed5a7fad02e012ab57e376e0a0b4b29e83b95ea9b5e7d89df762f5f25119b83e00706ecaccb22cfbacee98d74889
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"anymatch@npm:~3.1.2":
|
|
||||||
version: 3.1.3
|
|
||||||
resolution: "anymatch@npm:3.1.3"
|
|
||||||
dependencies:
|
|
||||||
normalize-path: "npm:^3.0.0"
|
|
||||||
picomatch: "npm:^2.0.4"
|
|
||||||
checksum: 10c0/57b06ae984bc32a0d22592c87384cd88fe4511b1dd7581497831c56d41939c8a001b28e7b853e1450f2bf61992dfcaa8ae2d0d161a0a90c4fb631ef07098fbac
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"aproba@npm:^2.0.0":
|
"aproba@npm:^2.0.0":
|
||||||
version: 2.0.0
|
version: 2.0.0
|
||||||
resolution: "aproba@npm:2.0.0"
|
resolution: "aproba@npm:2.0.0"
|
||||||
@ -2906,13 +3026,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"arg@npm:^5.0.2":
|
|
||||||
version: 5.0.2
|
|
||||||
resolution: "arg@npm:5.0.2"
|
|
||||||
checksum: 10c0/ccaf86f4e05d342af6666c569f844bec426595c567d32a8289715087825c2ca7edd8a3d204e4d2fb2aa4602e09a57d0c13ea8c9eea75aac3dbb4af5514e6800e
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"argparse@npm:^2.0.1":
|
"argparse@npm:^2.0.1":
|
||||||
version: 2.0.1
|
version: 2.0.1
|
||||||
resolution: "argparse@npm:2.0.1"
|
resolution: "argparse@npm:2.0.1"
|
||||||
@ -2957,24 +3070,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"autoprefixer@npm:^10.4.19":
|
|
||||||
version: 10.4.19
|
|
||||||
resolution: "autoprefixer@npm:10.4.19"
|
|
||||||
dependencies:
|
|
||||||
browserslist: "npm:^4.23.0"
|
|
||||||
caniuse-lite: "npm:^1.0.30001599"
|
|
||||||
fraction.js: "npm:^4.3.7"
|
|
||||||
normalize-range: "npm:^0.1.2"
|
|
||||||
picocolors: "npm:^1.0.0"
|
|
||||||
postcss-value-parser: "npm:^4.2.0"
|
|
||||||
peerDependencies:
|
|
||||||
postcss: ^8.1.0
|
|
||||||
bin:
|
|
||||||
autoprefixer: bin/autoprefixer
|
|
||||||
checksum: 10c0/fe0178eb8b1da4f15c6535cd329926609b22d1811e047371dccce50563623f8075dd06fb167daff059e4228da651b0bdff6d9b44281541eaf0ce0b79125bfd19
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"balanced-match@npm:^1.0.0":
|
"balanced-match@npm:^1.0.0":
|
||||||
version: 1.0.2
|
version: 1.0.2
|
||||||
resolution: "balanced-match@npm:1.0.2"
|
resolution: "balanced-match@npm:1.0.2"
|
||||||
@ -2994,7 +3089,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"binary-extensions@npm:^2.0.0, binary-extensions@npm:^2.3.0":
|
"binary-extensions@npm:^2.3.0":
|
||||||
version: 2.3.0
|
version: 2.3.0
|
||||||
resolution: "binary-extensions@npm:2.3.0"
|
resolution: "binary-extensions@npm:2.3.0"
|
||||||
checksum: 10c0/75a59cafc10fb12a11d510e77110c6c7ae3f4ca22463d52487709ca7f18f69d886aa387557cc9864fbdb10153d0bdb4caacabf11541f55e89ed6e18d12ece2b5
|
checksum: 10c0/75a59cafc10fb12a11d510e77110c6c7ae3f4ca22463d52487709ca7f18f69d886aa387557cc9864fbdb10153d0bdb4caacabf11541f55e89ed6e18d12ece2b5
|
||||||
@ -3027,7 +3122,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"braces@npm:^3.0.3, braces@npm:~3.0.2":
|
"braces@npm:^3.0.3":
|
||||||
version: 3.0.3
|
version: 3.0.3
|
||||||
resolution: "braces@npm:3.0.3"
|
resolution: "braces@npm:3.0.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -3036,7 +3131,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"browserslist@npm:^4.22.2, browserslist@npm:^4.23.0":
|
"browserslist@npm:^4.22.2":
|
||||||
version: 4.23.0
|
version: 4.23.0
|
||||||
resolution: "browserslist@npm:4.23.0"
|
resolution: "browserslist@npm:4.23.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -3109,14 +3204,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"camelcase-css@npm:^2.0.1":
|
"caniuse-lite@npm:^1.0.30001587":
|
||||||
version: 2.0.1
|
|
||||||
resolution: "camelcase-css@npm:2.0.1"
|
|
||||||
checksum: 10c0/1a1a3137e8a781e6cbeaeab75634c60ffd8e27850de410c162cce222ea331cd1ba5364e8fb21c95e5ca76f52ac34b81a090925ca00a87221355746d049c6e273
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"caniuse-lite@npm:^1.0.30001587, caniuse-lite@npm:^1.0.30001599":
|
|
||||||
version: 1.0.30001629
|
version: 1.0.30001629
|
||||||
resolution: "caniuse-lite@npm:1.0.30001629"
|
resolution: "caniuse-lite@npm:1.0.30001629"
|
||||||
checksum: 10c0/e95136a423c0c5e7f9d026ef3f9be8d06cadc4c83ad65eedfaeaba6b5eb814489ea186e90bae1085f3be7348577e25f8fe436b384c2f983324ad8dea4a7dfe1d
|
checksum: 10c0/e95136a423c0c5e7f9d026ef3f9be8d06cadc4c83ad65eedfaeaba6b5eb814489ea186e90bae1085f3be7348577e25f8fe436b384c2f983324ad8dea4a7dfe1d
|
||||||
@ -3206,25 +3294,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"chokidar@npm:^3.5.3":
|
|
||||||
version: 3.6.0
|
|
||||||
resolution: "chokidar@npm:3.6.0"
|
|
||||||
dependencies:
|
|
||||||
anymatch: "npm:~3.1.2"
|
|
||||||
braces: "npm:~3.0.2"
|
|
||||||
fsevents: "npm:~2.3.2"
|
|
||||||
glob-parent: "npm:~5.1.2"
|
|
||||||
is-binary-path: "npm:~2.1.0"
|
|
||||||
is-glob: "npm:~4.0.1"
|
|
||||||
normalize-path: "npm:~3.0.0"
|
|
||||||
readdirp: "npm:~3.6.0"
|
|
||||||
dependenciesMeta:
|
|
||||||
fsevents:
|
|
||||||
optional: true
|
|
||||||
checksum: 10c0/8361dcd013f2ddbe260eacb1f3cb2f2c6f2b0ad118708a343a5ed8158941a39cb8fb1d272e0f389712e74ee90ce8ba864eece9e0e62b9705cb468a2f6d917462
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"chownr@npm:^2.0.0":
|
"chownr@npm:^2.0.0":
|
||||||
version: 2.0.0
|
version: 2.0.0
|
||||||
resolution: "chownr@npm:2.0.0"
|
resolution: "chownr@npm:2.0.0"
|
||||||
@ -3362,13 +3431,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"commander@npm:^4.0.0":
|
|
||||||
version: 4.1.1
|
|
||||||
resolution: "commander@npm:4.1.1"
|
|
||||||
checksum: 10c0/84a76c08fe6cc08c9c93f62ac573d2907d8e79138999312c92d4155bc2325d487d64d13f669b2000c9f8caf70493c1be2dac74fec3c51d5a04f8bc3ae1830bab
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"common-ancestor-path@npm:^1.0.1":
|
"common-ancestor-path@npm:^1.0.1":
|
||||||
version: 1.0.1
|
version: 1.0.1
|
||||||
resolution: "common-ancestor-path@npm:1.0.1"
|
resolution: "common-ancestor-path@npm:1.0.1"
|
||||||
@ -3510,6 +3572,13 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"detect-libc@npm:^2.0.3":
|
||||||
|
version: 2.0.3
|
||||||
|
resolution: "detect-libc@npm:2.0.3"
|
||||||
|
checksum: 10c0/88095bda8f90220c95f162bf92cad70bd0e424913e655c20578600e35b91edc261af27531cf160a331e185c0ced93944bc7e09939143225f56312d7fd800fdb7
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"detect-newline@npm:^4.0.0":
|
"detect-newline@npm:^4.0.0":
|
||||||
version: 4.0.1
|
version: 4.0.1
|
||||||
resolution: "detect-newline@npm:4.0.1"
|
resolution: "detect-newline@npm:4.0.1"
|
||||||
@ -3517,13 +3586,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"didyoumean@npm:^1.2.2":
|
|
||||||
version: 1.2.2
|
|
||||||
resolution: "didyoumean@npm:1.2.2"
|
|
||||||
checksum: 10c0/95d0b53d23b851aacff56dfadb7ecfedce49da4232233baecfeecb7710248c4aa03f0aa8995062f0acafaf925adf8536bd7044a2e68316fd7d411477599bc27b
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"diff@npm:^4.0.1":
|
"diff@npm:^4.0.1":
|
||||||
version: 4.0.2
|
version: 4.0.2
|
||||||
resolution: "diff@npm:4.0.2"
|
resolution: "diff@npm:4.0.2"
|
||||||
@ -3547,13 +3609,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"dlv@npm:^1.1.3":
|
|
||||||
version: 1.1.3
|
|
||||||
resolution: "dlv@npm:1.1.3"
|
|
||||||
checksum: 10c0/03eb4e769f19a027fd5b43b59e8a05e3fd2100ac239ebb0bf9a745de35d449e2f25cfaf3aa3934664551d72856f4ae8b7822016ce5c42c2d27c18ae79429ec42
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"dot-case@npm:^3.0.4":
|
"dot-case@npm:^3.0.4":
|
||||||
version: 3.0.4
|
version: 3.0.4
|
||||||
resolution: "dot-case@npm:3.0.4"
|
resolution: "dot-case@npm:3.0.4"
|
||||||
@ -3619,6 +3674,16 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"enhanced-resolve@npm:^5.18.1":
|
||||||
|
version: 5.18.1
|
||||||
|
resolution: "enhanced-resolve@npm:5.18.1"
|
||||||
|
dependencies:
|
||||||
|
graceful-fs: "npm:^4.2.4"
|
||||||
|
tapable: "npm:^2.2.0"
|
||||||
|
checksum: 10c0/4cffd9b125225184e2abed9fdf0ed3dbd2224c873b165d0838fd066cde32e0918626cba2f1f4bf6860762f13a7e2364fd89a82b99566be2873d813573ac71846
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"env-paths@npm:^2.2.0, env-paths@npm:^2.2.1":
|
"env-paths@npm:^2.2.0, env-paths@npm:^2.2.1":
|
||||||
version: 2.2.1
|
version: 2.2.1
|
||||||
resolution: "env-paths@npm:2.2.1"
|
resolution: "env-paths@npm:2.2.1"
|
||||||
@ -3857,13 +3922,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"fraction.js@npm:^4.3.7":
|
|
||||||
version: 4.3.7
|
|
||||||
resolution: "fraction.js@npm:4.3.7"
|
|
||||||
checksum: 10c0/df291391beea9ab4c263487ffd9d17fed162dbb736982dee1379b2a8cc94e4e24e46ed508c6d278aded9080ba51872f1bc5f3a5fd8d7c74e5f105b508ac28711
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"fs-extra@npm:^8.1":
|
"fs-extra@npm:^8.1":
|
||||||
version: 8.1.0
|
version: 8.1.0
|
||||||
resolution: "fs-extra@npm:8.1.0"
|
resolution: "fs-extra@npm:8.1.0"
|
||||||
@ -3982,7 +4040,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"glob-parent@npm:^5.1.2, glob-parent@npm:~5.1.2":
|
"glob-parent@npm:^5.1.2":
|
||||||
version: 5.1.2
|
version: 5.1.2
|
||||||
resolution: "glob-parent@npm:5.1.2"
|
resolution: "glob-parent@npm:5.1.2"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -3991,15 +4049,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"glob-parent@npm:^6.0.2":
|
|
||||||
version: 6.0.2
|
|
||||||
resolution: "glob-parent@npm:6.0.2"
|
|
||||||
dependencies:
|
|
||||||
is-glob: "npm:^4.0.3"
|
|
||||||
checksum: 10c0/317034d88654730230b3f43bb7ad4f7c90257a426e872ea0bf157473ac61c99bf5d205fad8f0185f989be8d2fa6d3c7dce1645d99d545b6ea9089c39f838e7f8
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"glob@npm:^10.2.2, glob@npm:^10.3.10, glob@npm:^10.4.1":
|
"glob@npm:^10.2.2, glob@npm:^10.3.10, glob@npm:^10.4.1":
|
||||||
version: 10.4.1
|
version: 10.4.1
|
||||||
resolution: "glob@npm:10.4.1"
|
resolution: "glob@npm:10.4.1"
|
||||||
@ -4082,7 +4131,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.11, graceful-fs@npm:^4.2.6":
|
"graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.11, graceful-fs@npm:^4.2.4, graceful-fs@npm:^4.2.6":
|
||||||
version: 4.2.11
|
version: 4.2.11
|
||||||
resolution: "graceful-fs@npm:4.2.11"
|
resolution: "graceful-fs@npm:4.2.11"
|
||||||
checksum: 10c0/386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2
|
checksum: 10c0/386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2
|
||||||
@ -4362,15 +4411,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"is-binary-path@npm:~2.1.0":
|
|
||||||
version: 2.1.0
|
|
||||||
resolution: "is-binary-path@npm:2.1.0"
|
|
||||||
dependencies:
|
|
||||||
binary-extensions: "npm:^2.0.0"
|
|
||||||
checksum: 10c0/a16eaee59ae2b315ba36fad5c5dcaf8e49c3e27318f8ab8fa3cdb8772bf559c8d1ba750a589c2ccb096113bb64497084361a25960899cb6172a6925ab6123d38
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"is-cidr@npm:^5.1.0":
|
"is-cidr@npm:^5.1.0":
|
||||||
version: 5.1.0
|
version: 5.1.0
|
||||||
resolution: "is-cidr@npm:5.1.0"
|
resolution: "is-cidr@npm:5.1.0"
|
||||||
@ -4428,7 +4468,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"is-glob@npm:^4.0.1, is-glob@npm:^4.0.3, is-glob@npm:~4.0.1":
|
"is-glob@npm:^4.0.1":
|
||||||
version: 4.0.3
|
version: 4.0.3
|
||||||
resolution: "is-glob@npm:4.0.3"
|
resolution: "is-glob@npm:4.0.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -4552,12 +4592,12 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"jiti@npm:^1.21.0":
|
"jiti@npm:^2.4.2":
|
||||||
version: 1.21.3
|
version: 2.4.2
|
||||||
resolution: "jiti@npm:1.21.3"
|
resolution: "jiti@npm:2.4.2"
|
||||||
bin:
|
bin:
|
||||||
jiti: bin/jiti.js
|
jiti: lib/jiti-cli.mjs
|
||||||
checksum: 10c0/5de8b6a30e02e665ff03a925e43110097082e2e695cbf958ee8b2ba18fa894e3688862bb2ea52356fbefd924050d28b729b0c4efdaf4b05bf24f2c52ad0e778d
|
checksum: 10c0/4ceac133a08c8faff7eac84aabb917e85e8257f5ad659e843004ce76e981c457c390a220881748ac67ba1b940b9b729b30fb85cbaf6e7989f04b6002c94da331
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@ -4905,17 +4945,113 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"lilconfig@npm:^2.1.0":
|
"lightningcss-darwin-arm64@npm:1.29.2":
|
||||||
version: 2.1.0
|
version: 1.29.2
|
||||||
resolution: "lilconfig@npm:2.1.0"
|
resolution: "lightningcss-darwin-arm64@npm:1.29.2"
|
||||||
checksum: 10c0/64645641aa8d274c99338e130554abd6a0190533c0d9eb2ce7ebfaf2e05c7d9961f3ffe2bfa39efd3b60c521ba3dd24fa236fe2775fc38501bf82bf49d4678b8
|
conditions: os=darwin & cpu=arm64
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"lilconfig@npm:^3.0.0":
|
"lightningcss-darwin-x64@npm:1.29.2":
|
||||||
version: 3.1.1
|
version: 1.29.2
|
||||||
resolution: "lilconfig@npm:3.1.1"
|
resolution: "lightningcss-darwin-x64@npm:1.29.2"
|
||||||
checksum: 10c0/311b559794546894e3fe176663427326026c1c644145be9e8041c58e268aa9328799b8dfe7e4dd8c6a4ae305feae95a1c9e007db3569f35b42b6e1bc8274754c
|
conditions: os=darwin & cpu=x64
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"lightningcss-freebsd-x64@npm:1.29.2":
|
||||||
|
version: 1.29.2
|
||||||
|
resolution: "lightningcss-freebsd-x64@npm:1.29.2"
|
||||||
|
conditions: os=freebsd & cpu=x64
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"lightningcss-linux-arm-gnueabihf@npm:1.29.2":
|
||||||
|
version: 1.29.2
|
||||||
|
resolution: "lightningcss-linux-arm-gnueabihf@npm:1.29.2"
|
||||||
|
conditions: os=linux & cpu=arm
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"lightningcss-linux-arm64-gnu@npm:1.29.2":
|
||||||
|
version: 1.29.2
|
||||||
|
resolution: "lightningcss-linux-arm64-gnu@npm:1.29.2"
|
||||||
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"lightningcss-linux-arm64-musl@npm:1.29.2":
|
||||||
|
version: 1.29.2
|
||||||
|
resolution: "lightningcss-linux-arm64-musl@npm:1.29.2"
|
||||||
|
conditions: os=linux & cpu=arm64 & libc=musl
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"lightningcss-linux-x64-gnu@npm:1.29.2":
|
||||||
|
version: 1.29.2
|
||||||
|
resolution: "lightningcss-linux-x64-gnu@npm:1.29.2"
|
||||||
|
conditions: os=linux & cpu=x64 & libc=glibc
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"lightningcss-linux-x64-musl@npm:1.29.2":
|
||||||
|
version: 1.29.2
|
||||||
|
resolution: "lightningcss-linux-x64-musl@npm:1.29.2"
|
||||||
|
conditions: os=linux & cpu=x64 & libc=musl
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"lightningcss-win32-arm64-msvc@npm:1.29.2":
|
||||||
|
version: 1.29.2
|
||||||
|
resolution: "lightningcss-win32-arm64-msvc@npm:1.29.2"
|
||||||
|
conditions: os=win32 & cpu=arm64
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"lightningcss-win32-x64-msvc@npm:1.29.2":
|
||||||
|
version: 1.29.2
|
||||||
|
resolution: "lightningcss-win32-x64-msvc@npm:1.29.2"
|
||||||
|
conditions: os=win32 & cpu=x64
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"lightningcss@npm:^1.29.1":
|
||||||
|
version: 1.29.2
|
||||||
|
resolution: "lightningcss@npm:1.29.2"
|
||||||
|
dependencies:
|
||||||
|
detect-libc: "npm:^2.0.3"
|
||||||
|
lightningcss-darwin-arm64: "npm:1.29.2"
|
||||||
|
lightningcss-darwin-x64: "npm:1.29.2"
|
||||||
|
lightningcss-freebsd-x64: "npm:1.29.2"
|
||||||
|
lightningcss-linux-arm-gnueabihf: "npm:1.29.2"
|
||||||
|
lightningcss-linux-arm64-gnu: "npm:1.29.2"
|
||||||
|
lightningcss-linux-arm64-musl: "npm:1.29.2"
|
||||||
|
lightningcss-linux-x64-gnu: "npm:1.29.2"
|
||||||
|
lightningcss-linux-x64-musl: "npm:1.29.2"
|
||||||
|
lightningcss-win32-arm64-msvc: "npm:1.29.2"
|
||||||
|
lightningcss-win32-x64-msvc: "npm:1.29.2"
|
||||||
|
dependenciesMeta:
|
||||||
|
lightningcss-darwin-arm64:
|
||||||
|
optional: true
|
||||||
|
lightningcss-darwin-x64:
|
||||||
|
optional: true
|
||||||
|
lightningcss-freebsd-x64:
|
||||||
|
optional: true
|
||||||
|
lightningcss-linux-arm-gnueabihf:
|
||||||
|
optional: true
|
||||||
|
lightningcss-linux-arm64-gnu:
|
||||||
|
optional: true
|
||||||
|
lightningcss-linux-arm64-musl:
|
||||||
|
optional: true
|
||||||
|
lightningcss-linux-x64-gnu:
|
||||||
|
optional: true
|
||||||
|
lightningcss-linux-x64-musl:
|
||||||
|
optional: true
|
||||||
|
lightningcss-win32-arm64-msvc:
|
||||||
|
optional: true
|
||||||
|
lightningcss-win32-x64-msvc:
|
||||||
|
optional: true
|
||||||
|
checksum: 10c0/e06bb99c98e9f56cfcf37b5ce0e0198cdeeac2993ef2e5b878b6b0934fff54c7528f38bf8875e7bd71e64c9b20b29c0cada222d1e0089c8f94c1159bbb5d611f
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@ -5029,7 +5165,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"micromatch@npm:^4.0.2, micromatch@npm:^4.0.4, micromatch@npm:^4.0.5":
|
"micromatch@npm:^4.0.2, micromatch@npm:^4.0.4":
|
||||||
version: 4.0.7
|
version: 4.0.7
|
||||||
resolution: "micromatch@npm:4.0.7"
|
resolution: "micromatch@npm:4.0.7"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -5218,17 +5354,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"mz@npm:^2.7.0":
|
|
||||||
version: 2.7.0
|
|
||||||
resolution: "mz@npm:2.7.0"
|
|
||||||
dependencies:
|
|
||||||
any-promise: "npm:^1.0.0"
|
|
||||||
object-assign: "npm:^4.0.1"
|
|
||||||
thenify-all: "npm:^1.0.0"
|
|
||||||
checksum: 10c0/103114e93f87362f0b56ab5b2e7245051ad0276b646e3902c98397d18bb8f4a77f2ea4a2c9d3ad516034ea3a56553b60d3f5f78220001ca4c404bd711bd0af39
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"nanoid@npm:^3.3.7":
|
"nanoid@npm:^3.3.7":
|
||||||
version: 3.3.7
|
version: 3.3.7
|
||||||
resolution: "nanoid@npm:3.3.7"
|
resolution: "nanoid@npm:3.3.7"
|
||||||
@ -5305,20 +5430,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"normalize-path@npm:^3.0.0, normalize-path@npm:~3.0.0":
|
|
||||||
version: 3.0.0
|
|
||||||
resolution: "normalize-path@npm:3.0.0"
|
|
||||||
checksum: 10c0/e008c8142bcc335b5e38cf0d63cfd39d6cf2d97480af9abdbe9a439221fd4d749763bab492a8ee708ce7a194bb00c9da6d0a115018672310850489137b3da046
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"normalize-range@npm:^0.1.2":
|
|
||||||
version: 0.1.2
|
|
||||||
resolution: "normalize-range@npm:0.1.2"
|
|
||||||
checksum: 10c0/bf39b73a63e0a42ad1a48c2bd1bda5a07ede64a7e2567307a407674e595bcff0fa0d57e8e5f1e7fa5e91000797c7615e13613227aaaa4d6d6e87f5bd5cc95de6
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"normalize-url@npm:^8.0.0":
|
"normalize-url@npm:^8.0.0":
|
||||||
version: 8.0.1
|
version: 8.0.1
|
||||||
resolution: "normalize-url@npm:8.0.1"
|
resolution: "normalize-url@npm:8.0.1"
|
||||||
@ -5512,20 +5623,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"object-assign@npm:^4.0.1":
|
|
||||||
version: 4.1.1
|
|
||||||
resolution: "object-assign@npm:4.1.1"
|
|
||||||
checksum: 10c0/1f4df9945120325d041ccf7b86f31e8bcc14e73d29171e37a7903050e96b81323784ec59f93f102ec635bcf6fa8034ba3ea0a8c7e69fa202b87ae3b6cec5a414
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"object-hash@npm:^3.0.0":
|
|
||||||
version: 3.0.0
|
|
||||||
resolution: "object-hash@npm:3.0.0"
|
|
||||||
checksum: 10c0/a06844537107b960c1c8b96cd2ac8592a265186bfa0f6ccafe0d34eabdb526f6fa81da1f37c43df7ed13b12a4ae3457a16071603bcd39d8beddb5f08c37b0f47
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"object-treeify@npm:^4.0.1":
|
"object-treeify@npm:^4.0.1":
|
||||||
version: 4.0.1
|
version: 4.0.1
|
||||||
resolution: "object-treeify@npm:4.0.1"
|
resolution: "object-treeify@npm:4.0.1"
|
||||||
@ -5783,81 +5880,14 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.3.1":
|
"picomatch@npm:^2.3.1":
|
||||||
version: 2.3.1
|
version: 2.3.1
|
||||||
resolution: "picomatch@npm:2.3.1"
|
resolution: "picomatch@npm:2.3.1"
|
||||||
checksum: 10c0/26c02b8d06f03206fc2ab8d16f19960f2ff9e81a658f831ecb656d8f17d9edc799e8364b1f4a7873e89d9702dff96204be0fa26fe4181f6843f040f819dac4be
|
checksum: 10c0/26c02b8d06f03206fc2ab8d16f19960f2ff9e81a658f831ecb656d8f17d9edc799e8364b1f4a7873e89d9702dff96204be0fa26fe4181f6843f040f819dac4be
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"pify@npm:^2.3.0":
|
"postcss-selector-parser@npm:^6.0.10":
|
||||||
version: 2.3.0
|
|
||||||
resolution: "pify@npm:2.3.0"
|
|
||||||
checksum: 10c0/551ff8ab830b1052633f59cb8adc9ae8407a436e06b4a9718bcb27dc5844b83d535c3a8512b388b6062af65a98c49bdc0dd523d8b2617b188f7c8fee457158dc
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"pirates@npm:^4.0.1":
|
|
||||||
version: 4.0.6
|
|
||||||
resolution: "pirates@npm:4.0.6"
|
|
||||||
checksum: 10c0/00d5fa51f8dded94d7429700fb91a0c1ead00ae2c7fd27089f0c5b63e6eca36197fe46384631872690a66f390c5e27198e99006ab77ae472692ab9c2ca903f36
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"postcss-import@npm:^15.1.0":
|
|
||||||
version: 15.1.0
|
|
||||||
resolution: "postcss-import@npm:15.1.0"
|
|
||||||
dependencies:
|
|
||||||
postcss-value-parser: "npm:^4.0.0"
|
|
||||||
read-cache: "npm:^1.0.0"
|
|
||||||
resolve: "npm:^1.1.7"
|
|
||||||
peerDependencies:
|
|
||||||
postcss: ^8.0.0
|
|
||||||
checksum: 10c0/518aee5c83ea6940e890b0be675a2588db68b2582319f48c3b4e06535a50ea6ee45f7e63e4309f8754473245c47a0372632378d1d73d901310f295a92f26f17b
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"postcss-js@npm:^4.0.1":
|
|
||||||
version: 4.0.1
|
|
||||||
resolution: "postcss-js@npm:4.0.1"
|
|
||||||
dependencies:
|
|
||||||
camelcase-css: "npm:^2.0.1"
|
|
||||||
peerDependencies:
|
|
||||||
postcss: ^8.4.21
|
|
||||||
checksum: 10c0/af35d55cb873b0797d3b42529514f5318f447b134541844285c9ac31a17497297eb72296902967911bb737a75163441695737300ce2794e3bd8c70c13a3b106e
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"postcss-load-config@npm:^4.0.1":
|
|
||||||
version: 4.0.2
|
|
||||||
resolution: "postcss-load-config@npm:4.0.2"
|
|
||||||
dependencies:
|
|
||||||
lilconfig: "npm:^3.0.0"
|
|
||||||
yaml: "npm:^2.3.4"
|
|
||||||
peerDependencies:
|
|
||||||
postcss: ">=8.0.9"
|
|
||||||
ts-node: ">=9.0.0"
|
|
||||||
peerDependenciesMeta:
|
|
||||||
postcss:
|
|
||||||
optional: true
|
|
||||||
ts-node:
|
|
||||||
optional: true
|
|
||||||
checksum: 10c0/3d7939acb3570b0e4b4740e483d6e555a3e2de815219cb8a3c8fc03f575a6bde667443aa93369c0be390af845cb84471bf623e24af833260de3a105b78d42519
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"postcss-nested@npm:^6.0.1":
|
|
||||||
version: 6.0.1
|
|
||||||
resolution: "postcss-nested@npm:6.0.1"
|
|
||||||
dependencies:
|
|
||||||
postcss-selector-parser: "npm:^6.0.11"
|
|
||||||
peerDependencies:
|
|
||||||
postcss: ^8.2.14
|
|
||||||
checksum: 10c0/2a50aa36d5d103c2e471954830489f4c024deed94fa066169101db55171368d5f80b32446b584029e0471feee409293d0b6b1d8ede361f6675ba097e477b3cbd
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"postcss-selector-parser@npm:^6.0.10, postcss-selector-parser@npm:^6.0.11":
|
|
||||||
version: 6.1.0
|
version: 6.1.0
|
||||||
resolution: "postcss-selector-parser@npm:6.1.0"
|
resolution: "postcss-selector-parser@npm:6.1.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -5867,14 +5897,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"postcss-value-parser@npm:^4.0.0, postcss-value-parser@npm:^4.2.0":
|
"postcss@npm:^8.4.38":
|
||||||
version: 4.2.0
|
|
||||||
resolution: "postcss-value-parser@npm:4.2.0"
|
|
||||||
checksum: 10c0/f4142a4f56565f77c1831168e04e3effd9ffcc5aebaf0f538eee4b2d465adfd4b85a44257bb48418202a63806a7da7fe9f56c330aebb3cac898e46b4cbf49161
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"postcss@npm:^8.4.23, postcss@npm:^8.4.38":
|
|
||||||
version: 8.4.38
|
version: 8.4.38
|
||||||
resolution: "postcss@npm:8.4.38"
|
resolution: "postcss@npm:8.4.38"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -6013,30 +6036,20 @@ __metadata:
|
|||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "react@workspace:packages/react"
|
resolution: "react@workspace:packages/react"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
"@tailwindcss/vite": "npm:^4.0.12"
|
||||||
"@types/node": "npm:^20.12.13"
|
"@types/node": "npm:^20.12.13"
|
||||||
"@types/react": "npm:^18.2.66"
|
"@types/react": "npm:^18.2.66"
|
||||||
"@types/react-dom": "npm:^18.2.22"
|
"@types/react-dom": "npm:^18.2.22"
|
||||||
"@vitejs/plugin-react": "npm:^4.2.1"
|
"@vitejs/plugin-react": "npm:^4.2.1"
|
||||||
autoprefixer: "npm:^10.4.19"
|
|
||||||
postcss: "npm:^8.4.38"
|
|
||||||
react: "npm:^18.2.0"
|
react: "npm:^18.2.0"
|
||||||
react-dom: "npm:^18.2.0"
|
react-dom: "npm:^18.2.0"
|
||||||
tailwind-merge: "npm:^2.3.0"
|
tailwind-merge: "npm:^2.3.0"
|
||||||
tailwindcss: "npm:^3.4.3"
|
tailwindcss: "npm:^4.0.12"
|
||||||
typescript: "npm:^5.4.5"
|
typescript: "npm:^5.4.5"
|
||||||
vite: "npm:^5.2.0"
|
vite: "npm:^5.2.0"
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
"read-cache@npm:^1.0.0":
|
|
||||||
version: 1.0.0
|
|
||||||
resolution: "read-cache@npm:1.0.0"
|
|
||||||
dependencies:
|
|
||||||
pify: "npm:^2.3.0"
|
|
||||||
checksum: 10c0/90cb2750213c7dd7c80cb420654344a311fdec12944e81eb912cd82f1bc92aea21885fa6ce442e3336d9fccd663b8a7a19c46d9698e6ca55620848ab932da814
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"read-cmd-shim@npm:^4.0.0":
|
"read-cmd-shim@npm:^4.0.0":
|
||||||
version: 4.0.0
|
version: 4.0.0
|
||||||
resolution: "read-cmd-shim@npm:4.0.0"
|
resolution: "read-cmd-shim@npm:4.0.0"
|
||||||
@ -6063,15 +6076,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"readdirp@npm:~3.6.0":
|
|
||||||
version: 3.6.0
|
|
||||||
resolution: "readdirp@npm:3.6.0"
|
|
||||||
dependencies:
|
|
||||||
picomatch: "npm:^2.2.1"
|
|
||||||
checksum: 10c0/6fa848cf63d1b82ab4e985f4cf72bd55b7dcfd8e0a376905804e48c3634b7e749170940ba77b32804d5fe93b3cc521aa95a8d7e7d725f830da6d93f3669ce66b
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"rechoir@npm:^0.6.2":
|
"rechoir@npm:^0.6.2":
|
||||||
version: 0.6.2
|
version: 0.6.2
|
||||||
resolution: "rechoir@npm:0.6.2"
|
resolution: "rechoir@npm:0.6.2"
|
||||||
@ -6102,7 +6106,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"resolve@npm:^1.1.6, resolve@npm:^1.1.7, resolve@npm:^1.22.2":
|
"resolve@npm:^1.1.6":
|
||||||
version: 1.22.8
|
version: 1.22.8
|
||||||
resolution: "resolve@npm:1.22.8"
|
resolution: "resolve@npm:1.22.8"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -6115,7 +6119,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"resolve@patch:resolve@npm%3A^1.1.6#optional!builtin<compat/resolve>, resolve@patch:resolve@npm%3A^1.1.7#optional!builtin<compat/resolve>, resolve@patch:resolve@npm%3A^1.22.2#optional!builtin<compat/resolve>":
|
"resolve@patch:resolve@npm%3A^1.1.6#optional!builtin<compat/resolve>":
|
||||||
version: 1.22.8
|
version: 1.22.8
|
||||||
resolution: "resolve@patch:resolve@npm%3A1.22.8#optional!builtin<compat/resolve>::version=1.22.8&hash=c3c19d"
|
resolution: "resolve@patch:resolve@npm%3A1.22.8#optional!builtin<compat/resolve>::version=1.22.8&hash=c3c19d"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -6599,24 +6603,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"sucrase@npm:^3.32.0":
|
|
||||||
version: 3.35.0
|
|
||||||
resolution: "sucrase@npm:3.35.0"
|
|
||||||
dependencies:
|
|
||||||
"@jridgewell/gen-mapping": "npm:^0.3.2"
|
|
||||||
commander: "npm:^4.0.0"
|
|
||||||
glob: "npm:^10.3.10"
|
|
||||||
lines-and-columns: "npm:^1.1.6"
|
|
||||||
mz: "npm:^2.7.0"
|
|
||||||
pirates: "npm:^4.0.1"
|
|
||||||
ts-interface-checker: "npm:^0.1.9"
|
|
||||||
bin:
|
|
||||||
sucrase: bin/sucrase
|
|
||||||
sucrase-node: bin/sucrase-node
|
|
||||||
checksum: 10c0/ac85f3359d2c2ecbf5febca6a24ae9bf96c931f05fde533c22a94f59c6a74895e5d5f0e871878dfd59c2697a75ebb04e4b2224ef0bfc24ca1210735c2ec191ef
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"supports-color@npm:^5.3.0":
|
"supports-color@npm:^5.3.0":
|
||||||
version: 5.5.0
|
version: 5.5.0
|
||||||
resolution: "supports-color@npm:5.5.0"
|
resolution: "supports-color@npm:5.5.0"
|
||||||
@ -6676,36 +6662,17 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"tailwindcss@npm:^3.4.3":
|
"tailwindcss@npm:4.0.12, tailwindcss@npm:^4.0.12":
|
||||||
version: 3.4.4
|
version: 4.0.12
|
||||||
resolution: "tailwindcss@npm:3.4.4"
|
resolution: "tailwindcss@npm:4.0.12"
|
||||||
dependencies:
|
checksum: 10c0/186e94e49b97e974daf999c350bfc50e727039f22c44baf9144b987b6c9b754bc983e8c9ef5b99a3ca2d399115eb7811967f66cf9e88edc08ac729746d80dc56
|
||||||
"@alloc/quick-lru": "npm:^5.2.0"
|
languageName: node
|
||||||
arg: "npm:^5.0.2"
|
linkType: hard
|
||||||
chokidar: "npm:^3.5.3"
|
|
||||||
didyoumean: "npm:^1.2.2"
|
"tapable@npm:^2.2.0":
|
||||||
dlv: "npm:^1.1.3"
|
version: 2.2.1
|
||||||
fast-glob: "npm:^3.3.0"
|
resolution: "tapable@npm:2.2.1"
|
||||||
glob-parent: "npm:^6.0.2"
|
checksum: 10c0/bc40e6efe1e554d075469cedaba69a30eeb373552aaf41caeaaa45bf56ffacc2674261b106245bd566b35d8f3329b52d838e851ee0a852120acae26e622925c9
|
||||||
is-glob: "npm:^4.0.3"
|
|
||||||
jiti: "npm:^1.21.0"
|
|
||||||
lilconfig: "npm:^2.1.0"
|
|
||||||
micromatch: "npm:^4.0.5"
|
|
||||||
normalize-path: "npm:^3.0.0"
|
|
||||||
object-hash: "npm:^3.0.0"
|
|
||||||
picocolors: "npm:^1.0.0"
|
|
||||||
postcss: "npm:^8.4.23"
|
|
||||||
postcss-import: "npm:^15.1.0"
|
|
||||||
postcss-js: "npm:^4.0.1"
|
|
||||||
postcss-load-config: "npm:^4.0.1"
|
|
||||||
postcss-nested: "npm:^6.0.1"
|
|
||||||
postcss-selector-parser: "npm:^6.0.11"
|
|
||||||
resolve: "npm:^1.22.2"
|
|
||||||
sucrase: "npm:^3.32.0"
|
|
||||||
bin:
|
|
||||||
tailwind: lib/cli.js
|
|
||||||
tailwindcss: lib/cli.js
|
|
||||||
checksum: 10c0/e4f7e1a2e1897871a4744f421ccb5639e8d51012e3644b0c35cf723527fdc8f9cddd3fa3b0fc28c198b0ea6ce44ead21c89cfec549d80bad9b1f3dd9d8bf2d54
|
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@ -6730,24 +6697,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"thenify-all@npm:^1.0.0":
|
|
||||||
version: 1.6.0
|
|
||||||
resolution: "thenify-all@npm:1.6.0"
|
|
||||||
dependencies:
|
|
||||||
thenify: "npm:>= 3.1.0 < 4"
|
|
||||||
checksum: 10c0/9b896a22735e8122754fe70f1d65f7ee691c1d70b1f116fda04fea103d0f9b356e3676cb789506e3909ae0486a79a476e4914b0f92472c2e093d206aed4b7d6b
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"thenify@npm:>= 3.1.0 < 4":
|
|
||||||
version: 3.3.1
|
|
||||||
resolution: "thenify@npm:3.3.1"
|
|
||||||
dependencies:
|
|
||||||
any-promise: "npm:^1.0.0"
|
|
||||||
checksum: 10c0/f375aeb2b05c100a456a30bc3ed07ef03a39cbdefe02e0403fb714b8c7e57eeaad1a2f5c4ecfb9ce554ce3db9c2b024eba144843cd9e344566d9fcee73b04767
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"tiny-jsonc@npm:^1.0.1":
|
"tiny-jsonc@npm:^1.0.1":
|
||||||
version: 1.0.1
|
version: 1.0.1
|
||||||
resolution: "tiny-jsonc@npm:1.0.1"
|
resolution: "tiny-jsonc@npm:1.0.1"
|
||||||
@ -6792,13 +6741,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"ts-interface-checker@npm:^0.1.9":
|
|
||||||
version: 0.1.13
|
|
||||||
resolution: "ts-interface-checker@npm:0.1.13"
|
|
||||||
checksum: 10c0/232509f1b84192d07b81d1e9b9677088e590ac1303436da1e92b296e9be8e31ea042e3e1fd3d29b1742ad2c959e95afe30f63117b8f1bc3a3850070a5142fea7
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"ts-node@npm:^10":
|
"ts-node@npm:^10":
|
||||||
version: 10.9.2
|
version: 10.9.2
|
||||||
resolution: "ts-node@npm:10.9.2"
|
resolution: "ts-node@npm:10.9.2"
|
||||||
@ -7209,15 +7151,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"yaml@npm:^2.3.4":
|
|
||||||
version: 2.4.3
|
|
||||||
resolution: "yaml@npm:2.4.3"
|
|
||||||
bin:
|
|
||||||
yaml: bin.mjs
|
|
||||||
checksum: 10c0/b4a9dea34265f000402c909144ac310be42c4526dfd16dff1aee2b04a0d94051713651c0cd2b0a3d8109266997422120f16a7934629d12f22dc215839ebbeccf
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"yarn@npm:^1.22.22":
|
"yarn@npm:^1.22.22":
|
||||||
version: 1.22.22
|
version: 1.22.22
|
||||||
resolution: "yarn@npm:1.22.22"
|
resolution: "yarn@npm:1.22.22"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user